body {
	background-color: #E6E6E6;
	font-family: "";
}

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

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

html {
	font-size: 16px;
}

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

/* ホバー */

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

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

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

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

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

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

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

ul,
ol {
	list-style: none;
}

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

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

/* Make images easier to work with */

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

/* Natural flow and rhythm in articles by default */

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

/* Inherit fonts for inputs and buttons */

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

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

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

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

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

textarea {
	resize: vertical;
}

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

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

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

.c-btn {
	background-color: black;
	color: yellow;
	padding: 0.625rem 2.5rem;
}

.c-pagination {
	align-items: center;
	display: flex;
	gap: 1rem;
	margin-top: 5rem;
}

.c-pagination a,
.c-pagination span {
	align-items: center;
	display: flex;
	justify-content: center;
}

.c-pagination .page-numbers {
	background: #d9d9d9;
	color: #0B1D13;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1;
	min-width: 2.5rem;
	padding: 0.5625rem 0.25rem 0.8125rem;
	transition: background 0.3s, color 0.3s;
}

.c-pagination a.page-numbers:not(.prev):not(.next):hover {
	background: #1A422C;
	color: #fff;
}

.c-pagination .page-numbers.current {
	background: #1A422C;
	color: #fff;
}

.c-pagination .page-numbers.dots {
	background: transparent;
	font-size: 0.875rem;
	min-width: auto;
	padding: 0.4375rem 0 0.625rem;
}

.c-pagination .page-numbers.prev {
	background: transparent;
	margin-right: 1rem;
	min-width: auto;
	padding: 0.9375rem 0.25rem 1.0625rem;
}

.c-pagination .page-numbers.next {
	background: transparent;
	margin-left: 1rem;
	min-width: auto;
	padding: 0.9375rem 0.25rem 1.0625rem;
}

.c-pagination__prev,
.c-pagination__next {
	background: no-repeat center/contain;
	display: block;
	height: 0.5rem;
	transition: transform 0.3s;
	width: 2rem;
}

.c-pagination__prev {
	background-image: url("../images/common/icon-pagination-prev.svg");
}

.c-pagination__next {
	background-image: url("../images/common/icon-pagination-next.svg");
}

.c-pagination a.prev:hover .c-pagination__prev {
	transform: translateX(-0.375rem);
}

.c-pagination a.next:hover .c-pagination__next {
	transform: translateX(0.375rem);
}

.c-title {
	font-size: 10px;
}

.l-footer {
	overflow: hidden;
	position: relative;
}

.l-header {
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

.l-inner {
	height: inherit;
	margin: 0 auto;
	max-width: 1150px;
	padding-left: 25px;
	padding-right: 25px;
	width: 100%;
}

.p-404 {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 100vh;
	padding: 12.5rem 0 7.5rem;
}

.p-404__inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.p-404__num {
	color: #1A422C;
	font-family: "Cormorant Garamond", serif;
	font-size: 12.5rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1;
}

.p-404__title {
	color: #1A422C;
	font-family: "Cormorant Garamond", serif;
	font-size: 2.5rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1;
	margin-top: 1rem;
}

.p-404__text {
	color: #0B1D13;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 2;
	margin-top: 2.5rem;
}

.p-404__btn {
	align-items: center;
	background-color: #1A422C;
	color: #fff;
	display: inline-flex;
	gap: 1rem;
	margin-top: 3.5rem;
	padding: 1.25rem 3rem;
	transition: opacity 0.3s;
}

.p-404__btn:hover {
	opacity: 0.8;
}

.p-404__btn-text {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.25rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1;
}

.p-404__btn-icon {
	height: auto;
	width: 1.5rem;
}

.p-access {
	margin-top: 10rem;
	padding-bottom: 12.5rem;
}

.p-access__heading-inner {
	align-items: flex-start;
	display: flex;
	gap: 2rem;
}

.p-access__heading-line {
	background: #0B1D13;
	display: block;
	height: 5.375rem;
	width: 1px;
}

.p-access__heading-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.p-access__heading-en {
	color: #1A422C;
	font-family: "Cormorant Garamond", serif;
	font-size: 3rem;
	font-weight: 400;
	line-height: 1;
}

.p-access__heading-ja {
	color: #1A422C;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
}

.p-access__info {
	margin-top: 2.5rem;
}

.p-access__list {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.p-access__item {
	align-items: center;
	display: flex;
	gap: 0.5rem;
}

.p-access__item-label {
	align-items: center;
	color: #0B1D13;
	display: flex;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 400;
	gap: 0.5rem;
	line-height: 1.5;
}

.p-access__item-label::before {
	background: #1A422C;
	content: "";
	display: block;
	height: 0.4375rem;
	width: 0.4375rem;
}

.p-access__item-label::after {
	background: #0B1D13;
	content: "";
	display: block;
	height: 1px;
	width: 0.875rem;
}

.p-access__item-text {
	color: #0B1D13;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
}

.p-access__map {
	margin-top: 5rem;
}

.p-access__map img {
	height: auto;
	width: 100%;
}

.p-company-profile {
	padding: 10rem 0 0;
}

.p-company-profile__inner {
	display: flex;
	gap: 5.5rem;
}

.p-company-profile__left {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	gap: 3rem;
	width: 25rem;
}

.p-company-profile__heading {
	align-items: flex-start;
	display: flex;
	gap: 2rem;
}

.p-company-profile__heading-line {
	background: #0B1D13;
	display: block;
	height: 5.375rem;
	width: 1px;
}

.p-company-profile__heading-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.p-company-profile__heading-en {
	color: #1A422C;
	font-family: "Cormorant Garamond", serif;
	font-size: 3rem;
	font-weight: 400;
	line-height: 1;
}

.p-company-profile__heading-ja {
	color: #1A422C;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
}

.p-company-profile__image img {
	height: auto;
	width: 100%;
}

.p-company-profile__list-wrap {
	flex: 1;
}

.p-company-profile__item {
	border-bottom: 1px solid #a5a5a5;
	display: flex;
}

.p-company-profile__item-label {
	border-bottom: 1px solid #1A422C;
	color: #0B1D13;
	flex-shrink: 0;
	font-family: "Shippori Mincho B1", serif;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5;
	padding: 1.4375rem 0.5rem 1.5rem;
	width: 15rem;
}

.p-company-profile__item-value {
	align-items: center;
	color: #0B1D13;
	display: flex;
	flex: 1;
	font-family: "Shippori Mincho B1", serif;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.5;
	padding: 1.4375rem 0.5rem 1.5rem;
}

.p-drawer {
	background: #e6e6e6;
	height: 100%;
	left: 0;
	opacity: 0;
	overflow-y: auto;
	padding-top: 5.5rem;
	position: fixed;
	top: 0;
	transition: opacity 0.3s, visibility 0.3s;
	visibility: hidden;
	width: 100%;
	z-index: 99;
}

.p-drawer.is-open {
	opacity: 1;
	visibility: visible;
}

.p-drawer__nav {
	padding: 1.5rem 1.25rem;
}

.p-drawer__nav-list {
	display: flex;
	flex-direction: column;
}

.p-drawer__nav-item {
	border-bottom: 1px solid #c9c9c9;
}

.p-drawer__nav-item a {
	align-items: center;
	color: #0b1d13;
	display: flex;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.25rem;
	font-weight: 400;
	justify-content: space-between;
	line-height: 1;
	padding: 1rem;
	transition: opacity 0.3s;
}

.p-drawer__nav-item a:hover {
	opacity: 0.7;
}

.p-drawer__nav-item a img {
	height: auto;
	width: 2.75rem;
}

.p-drawer__btn {
	align-items: center;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid #0b1d13;
	border-radius: 1.5rem;
	color: #0b1d13;
	display: flex;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.25rem;
	font-weight: 400;
	gap: 0.5rem;
	justify-content: center;
	line-height: 1;
	margin: 0 auto;
	margin-top: 2rem;
	padding: 0.75rem 1.5rem;
	transition: opacity 0.3s;
	width: 90.447761194%;
}

.p-drawer__btn:hover {
	opacity: 0.7;
}

.p-drawer__btn img {
	filter: brightness(0);
	height: 1.5rem;
	width: 1.5rem;
}

.p-faq {
	padding: 12.5rem 0;
}

.p-faq__heading {
	align-items: flex-start;
	display: flex;
	gap: 2rem;
}

.p-faq__heading-line {
	background: #0B1D13;
	display: block;
	height: 5.375rem;
	width: 1px;
}

.p-faq__heading-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.p-faq__heading-en {
	color: #1A422C;
	font-family: "Cormorant Garamond", serif;
	font-size: 3rem;
	font-weight: 400;
	line-height: 1;
}

.p-faq__heading-ja {
	color: #1A422C;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
}

.p-faq__list {
	border-top: 1px solid #0B1D13;
	margin-top: 3rem;
}

.p-faq__item {
	border-bottom: 1px solid #0B1D13;
}

.p-faq__question {
	align-items: center;
	background: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	gap: 1rem;
	padding: 2rem;
	transition: opacity 0.3s;
	width: 100%;
}

.p-faq__question:hover {
	opacity: 0.7;
}

.p-faq__question-num {
	color: #1A422C;
	flex-shrink: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1;
	text-align: left;
	width: 4rem;
}

.p-faq__question-text {
	color: #1A422C;
	flex: 1;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 2;
	text-align: left;
}

.p-faq__question-icon {
	background-image: url("../images/common/icon-tire.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	flex-shrink: 0;
	height: 2rem;
	position: relative;
	transition: transform 0.5s;
	width: 2rem;
}

.p-faq__question-icon::before,
.p-faq__question-icon::after {
	background: #0B1D13;
	content: "";
	left: 50%;
	position: absolute;
	top: 50%;
	transition: transform 0.3s, opacity 0.3s;
}

.p-faq__question-icon::before {
	height: 1px;
	transform: translate(-50%, -50%);
	width: 0.5625rem;
}

.p-faq__question-icon::after {
	height: 0.5625rem;
	transform: translate(-50%, -50%);
	width: 1px;
}

.p-faq__item.is-open .p-faq__question-icon {
	transform: rotate(360deg);
}

.p-faq__item.is-open .p-faq__question-icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(90deg);
}

.p-faq__answer-wrapper {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s ease-out;
}

.p-faq__item.is-open .p-faq__answer-wrapper {
	grid-template-rows: 1fr;
}

.p-faq__answer {
	display: flex;
	gap: 1rem;
	overflow: hidden;
	padding: 0 2rem;
}

.p-faq__item.is-open .p-faq__answer {
	padding-bottom: 2rem;
}

.p-faq__answer-num {
	color: #1A422C;
	flex-shrink: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1;
	width: 4rem;
}

.p-faq__answer-text {
	color: #0B1D13;
	flex: 1;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
}

.p-faq__note {
	color: #0B1D13;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
	margin-top: 3.5rem;
	text-align: center;
}

.p-footer {
	background: #0B1D13;
	padding: 7.5rem 0 8.75rem;
}

.p-footer__info-wrapper {
	display: flex;
	gap: 5rem;
	justify-content: space-between;
}

.p-footer__info {
	display: flex;
	flex-direction: column;
}

.p-footer__logo {
	height: 5rem;
	width: 5rem;
}

.p-footer__logo img {
	height: auto;
	width: 100%;
}

.p-footer__info-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1.875rem;
}

.p-footer__info-name {
	color: #fff;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.3;
}

.p-footer__sns {
	align-items: center;
	display: flex;
	gap: 1rem;
}

.p-footer__sns-link {
	display: block;
	transition: opacity 0.3s;
}

.p-footer__sns-link:hover {
	opacity: 0.7;
}

.p-footer__sns-link img {
	height: 2rem;
	width: 2rem;
}

.p-footer__address {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 2.5rem;
}

.p-footer__address p {
	color: #fff;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.3;
}

.p-footer__cta {
	display: flex;
	flex-direction: column;
	width: 39.4375rem;
}

.p-footer__cta-item {
	border-bottom: 1px solid #c9c9c9;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1.75rem 2rem 2rem;
}

.p-footer__cta-item--contact {
	padding-right: 0.625rem;
}

.p-footer__cta-header {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
}

.p-footer__cta-header > img {
	height: auto;
	transition: transform 0.3s;
	width: 2.75rem;
}

a.p-footer__cta-item:hover .p-footer__cta-header > img {
	transform: translateX(0.375rem);
}

.p-footer__cta-heading {
	align-items: center;
	display: flex;
	gap: 1rem;
}

.p-footer__cta-heading-en {
	color: #fff;
	font-family: "Cormorant Garamond", serif;
	font-size: 2.5rem;
	font-weight: 400;
	line-height: 1;
}

.p-footer__cta-heading-sub {
	align-items: center;
	display: flex;
	gap: 0.5rem;
}

.p-footer__cta-heading-line {
	background: #fff;
	display: block;
	height: 1px;
	width: 0.875rem;
}

.p-footer__cta-heading-ja {
	color: #fff;
	font-family: "Shippori Mincho B1", serif;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1;
}

.p-footer__cta-text {
	color: #fff;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
}

.p-footer__cta-tel {
	align-items: center;
	display: flex;
	gap: 1rem;
}

.p-footer__cta-tel > img {
	height: 2.625rem;
	width: 2.625rem;
}

.p-footer__cta-tel-content {
	align-items: baseline;
	display: flex;
}

.p-footer__cta-tel-num {
	color: #fff;
	font-family: "Shippori Mincho B1", serif;
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 1.3;
}

.p-footer__cta-tel-time {
	color: #fff;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.3;
}

.p-footer__bottom {
	align-items: flex-end;
	display: flex;
	gap: 2.5rem;
	justify-content: space-between;
	margin: 3.5rem auto 0;
	max-width: 68.75rem;
}

.p-footer__copyright {
	color: #a5a5a5;
	font-family: "Shippori Mincho B1", serif;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.3;
}

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

.p-footer__nav-item a {
	color: #fff;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1;
	position: relative;
}

.p-footer__nav-item a::after {
	background: #fff;
	bottom: -0.25rem;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transition: width 0.3s ease;
	width: 0;
}

.p-footer__nav-item a:hover::after {
	width: 100%;
}

.p-footer__bg {
	background: radial-gradient(35.51% 35.51% at 50.09% 47.56%, #1A422C 0%, #0B1D13 100%);
	border-radius: 50%;
	bottom: -28.125rem;
	height: 62.5rem;
	mix-blend-mode: lighten;
	pointer-events: none;
	position: absolute;
	right: -21.875rem;
	width: 62.5rem;
}

.p-fv {
	height: 55rem;
	position: relative;
	width: 100%;
}

.p-fv__bg {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

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

.p-fv__content {
	bottom: 18.4375rem;
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
	position: absolute;
	right: 4.5625rem;
}

.p-fv__title {
	color: #fff;
	font-family: "Shippori Mincho B1", serif;
	font-size: 3rem;
	font-weight: 400;
	line-height: 1.3;
}

.p-fv__text {
	color: #fff;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1.625rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1;
	margin-top: 0;
	padding-left: 0.375rem;
}

.p-header {
	left: 0;
	position: fixed;
	top: 0;
	transition: background-color 0.3s;
	width: 100%;
	z-index: 100;
}

.p-header.is-scrolled {
	background-color: rgba(11, 29, 19, 0.5);
}

.p-header--dark.is-scrolled {
	background-color: rgba(233, 233, 233, 0.8);
}

.p-header__inner {
	display: flex;
	justify-content: space-between;
	padding: 1.5rem 2.5rem;
}

.p-header__logo {
	height: 4.5rem;
	width: 4.5rem;
}

.p-header__logo a {
	display: block;
}

.p-header__logo img {
	height: auto;
	width: 100%;
}

.p-header__nav-list {
	display: flex;
	gap: 2.5rem;
}

.p-header__nav-item:not(:last-child) {
	padding-top: 0.375rem;
}

.p-header__nav-item a:not(.p-header__btn) {
	color: #fff;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1;
	position: relative;
}

.p-header--dark .p-header__nav-item a:not(.p-header__btn) {
	color: #0B1D13;
}

.p-header__nav-item a:not(.p-header__btn)::after {
	background: currentColor;
	bottom: -0.25rem;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transition: width 0.3s ease;
	width: 0;
}

.p-header__nav-item a:not(.p-header__btn):hover::after {
	width: 100%;
}

.p-header__btn {
	align-items: center;
	background-color: rgba(255, 255, 255, 0.15);
	border: 1px solid #fff;
	border-radius: 1.25rem;
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	padding: 0.5rem 1.5rem;
	transition: background-color 0.3s;
}

.p-header--dark .p-header__btn {
	background-color: transparent;
	border-color: #0B1D13;
}

.p-header__btn:hover {
	background-color: rgba(255, 255, 255, 0.3);
}

.p-header--dark .p-header__btn:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

.p-header__btn-icon {
	-webkit-mask-image: url("../images/common/icon-car.svg");
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: #fff;
	display: block;
	height: 1.25rem;
	mask-image: url("../images/common/icon-car.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 1.25rem;
}

.p-header--dark .p-header__btn-icon {
	background-color: #0B1D13;
}

.p-header__btn span {
	color: #fff;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1;
}

.p-header--dark .p-header__btn span {
	color: #0B1D13;
}

.p-header__hamburger {
	background: transparent;
	border: none;
	cursor: pointer;
	display: none;
	height: 2.1875rem;
	position: relative;
	width: 2.1875rem;
}

.p-header__hamburger-line {
	background: #fff;
	height: 1px;
	left: 0;
	position: absolute;
	transition: transform 0.3s, opacity 0.3s;
	width: 100%;
}

.p-header--dark .p-header__hamburger-line {
	background: #0B1D13;
}

.p-header__hamburger-line:nth-child(1) {
	top: 0;
}

.p-header__hamburger-line:nth-child(2) {
	top: 0.5625rem;
}

.p-header__hamburger-line:nth-child(3) {
	top: 1.125rem;
}

.p-header__hamburger-text {
	bottom: 0;
	color: #fff;
	font-family: "Cormorant Garamond", serif;
	font-size: 0.625rem;
	font-weight: 400;
	left: 0.25rem;
	line-height: 1;
	position: absolute;
	transition: color 0.3s;
}

.p-header--dark .p-header__hamburger-text {
	color: #0B1D13;
}

.is-drawer-open .p-header__hamburger-line {
	background: #0B1D13;
}

.is-drawer-open .p-header__hamburger-line:nth-child(1) {
	top: 0.5rem;
	transform: rotate(45deg);
	transform-origin: center;
}

.is-drawer-open .p-header__hamburger-line:nth-child(2) {
	opacity: 0;
}

.is-drawer-open .p-header__hamburger-line:nth-child(3) {
	top: 0.5rem;
	transform: rotate(-45deg);
	transform-origin: center;
}

.is-drawer-open .p-header__hamburger-text {
	color: #0B1D13;
}

.is-drawer-open .p-header__hamburger-text::after {
	content: "CLOSE";
}

.is-drawer-open .p-header__hamburger-text {
	font-size: 0;
}

.is-drawer-open .p-header__hamburger-text::after {
	font-size: 0.625rem;
}

.p-intro {
	padding: 12.5rem 0;
	position: relative;
}

.p-intro__bg {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

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

.p-intro__inner {
	display: flex;
	justify-content: space-between;
}

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

.p-intro__heading-en {
	color: #e6e6e6;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1;
}

.p-intro__heading-ja {
	font-feature-settings: "palt";
	color: #fff;
	font-family: "Shippori Mincho B1", serif;
	font-size: 2.5rem;
	font-weight: 400;
	line-height: 1.4;
	white-space: nowrap;
}

.p-intro__texts {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 14.375rem;
}

.p-intro__text {
	color: #fff;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 2;
}

.p-news-heading {
	height: 25rem;
	position: relative;
}

.p-news-heading__inner {
	align-items: flex-end;
	display: flex;
	height: 100%;
	justify-content: space-between;
	padding-bottom: 1.625rem;
}

.p-news-heading__content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.p-news-heading__date {
	color: #a5a5a5;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.4;
}

.p-news-heading__title {
	color: #1A422C;
	font-family: "Shippori Mincho B1", serif;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.4;
	max-width: 53.125rem;
}

.p-news-heading__breadcrumbs {
	align-items: center;
	display: flex;
	gap: 0.5rem;
}

.p-news-heading__breadcrumbs-item {
	color: #c9c9c9;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1;
	transition: opacity 0.3s;
}

.p-news-heading__breadcrumbs-item:last-child {
	color: #1A422C;
}

.p-news-heading__breadcrumbs-item:hover {
	opacity: 0.7;
}

.p-news-heading__breadcrumbs-separator {
	background: #c9c9c9;
	display: block;
	height: 1px;
	width: 0.875rem;
}

.p-news-heading__line {
	background: #1A422C;
	bottom: 0;
	height: 2px;
	left: 0;
	position: absolute;
	width: 100%;
}

.p-news-detail {
	padding: 7.5rem 0 12.5rem;
}

.p-news-detail__inner {
	margin: 0 auto;
	max-width: 59.375rem;
}

.p-news-detail__content {
	color: #0B1D13;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
}

.p-news-detail__content p {
	margin-bottom: 2rem;
}

.p-news-detail__content p:last-child {
	margin-bottom: 0;
}

.p-news-detail__content h2 {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.5;
	margin: 3rem 0 1.5rem;
}

.p-news-detail__content h3 {
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5;
	margin: 2rem 0 1rem;
}

.p-news-detail__content ul,
.p-news-detail__content ol {
	margin-bottom: 1.5rem;
	padding-left: 1.5rem;
}

.p-news-detail__content li {
	margin-bottom: 0.5rem;
}

.p-news-detail__content a {
	-webkit-text-decoration: underline;
	color: #1A422C;
	text-decoration: underline;
}

.p-news-detail__content a:hover {
	-webkit-text-decoration: none;
	text-decoration: none;
}

.p-news-detail__content img {
	height: auto;
	margin: 1.5rem 0;
	max-width: 100%;
}

.p-news-detail__content blockquote {
	background: #f5f5f5;
	border-left: 4px solid #1A422C;
	margin: 1.5rem 0;
	padding: 1.5rem;
}

.p-news-detail__back {
	display: flex;
	justify-content: center;
	margin-top: 6.25rem;
}

.p-news-detail__back-link {
	align-items: center;
	border: 1px solid #1A422C;
	border-radius: 1.5rem;
	display: inline-flex;
	gap: 0.5rem;
	padding: 0.5rem 1.5rem 0.5rem 0.875rem;
}

.p-news-detail__back-link:hover .p-news-detail__back-icon {
	transform: translateX(-0.375rem);
}

.p-news-detail__back-icon {
	height: 0.375rem;
	transition: transform 0.3s;
	width: 1.5rem;
}

.p-news-detail__back-text {
	color: #1A422C;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1;
}

.p-news-img {
	width: 100%;
}

.p-news-img img {
	-o-object-fit: cover;
	aspect-ratio: 1440/350;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.p-news-list {
	padding: 10rem 0 12.5rem;
}

.p-news-list__inner {
	align-items: center;
	display: flex;
	flex-direction: column;
}

.p-news-list__list {
	border-top: 1px solid #c9c9c9;
	width: 100%;
}

.p-news-list__item {
	border-bottom: 1px solid #c9c9c9;
}

.p-news-list__link {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
	padding: 1.5rem 2rem;
}

.p-news-list__date {
	color: #a5a5a5;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
}

.p-news-list__content {
	align-items: center;
	display: flex;
	flex: 1;
	gap: 1.5rem;
}

.p-news-list__title {
	color: #0B1D13;
	flex: 1;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
}

.p-news-list__arrow {
	background: url("../images/common/icon-arrow.svg") no-repeat center/contain;
	flex-shrink: 0;
	height: 0.6875rem;
	transition: transform 0.3s;
	width: 2.75rem;
}

.p-news-list__link:hover .p-news-list__arrow {
	transform: translateX(0.375rem);
}

.p-news-list__empty {
	color: #0B1D13;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
}

.p-news {
	padding: 10rem 0 12.5rem;
}

.p-news__inner {
	display: flex;
	gap: 6.25rem;
}

.p-news__header {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

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

.p-news__heading-en {
	color: #1A422C;
	font-family: "Cormorant Garamond", serif;
	font-size: 5.5rem;
	font-weight: 400;
	line-height: 1;
}

.p-news__heading-sub {
	align-items: center;
	display: flex;
	gap: 0.5rem;
}

.p-news__heading-line {
	background: #1A422C;
	display: block;
	height: 1px;
	width: 0.875rem;
}

.p-news__heading-ja {
	color: #1A422C;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
}

.p-news__btn {
	align-items: center;
	border: 1px solid #1A422C;
	border-radius: 1.5rem;
	display: flex;
	gap: 0.5rem;
	max-width: 10rem;
	padding: 0.5rem 0.875rem 0.5rem 1.5rem;
}

.p-news__btn span {
	color: #1A422C;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1;
}

.p-news__btn img {
	height: auto;
	transition: transform 0.3s;
	width: 1.5rem;
}

.p-news__btn:hover img {
	transform: translateX(0.375rem);
}

.p-news__list {
	border-top: 1px solid #c9c9c9;
	flex: 1;
}

.p-news__item {
	border-bottom: 1px solid #c9c9c9;
}

.p-news__item a {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
	padding: 1.5rem 2.625rem;
	padding-right: 2.0625rem;
}

.p-news__item-date {
	color: #a5a5a5;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
}

.p-news__item-content {
	align-items: center;
	display: flex;
	flex: 1;
	gap: 1.5rem;
}

.p-news__item-title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: #0B1D13;
	display: -webkit-box;
	flex: 1;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	overflow: hidden;
}

.p-news__item-content img {
	height: auto;
	transition: transform 0.3s;
	width: 2.75rem;
}

.p-news__item a:hover .p-news__item-content img {
	transform: translateX(0.375rem);
}

.p-page-heading {
	border-bottom: 1px solid #1A422C;
}

.p-page-heading__inner {
	align-items: flex-end;
	display: flex;
	justify-content: space-between;
	padding-top: 17.125rem;
}

.p-page-heading__title {
	color: #1A422C;
	font-family: "Cormorant Garamond", serif;
	font-size: 9.5rem;
	font-weight: 400;
	line-height: 1;
	margin-bottom: -1.625rem;
}

.p-page-heading__breadcrumbs {
	align-items: center;
	display: flex;
	gap: 0.5rem;
	padding-bottom: 0.9375rem;
}

.p-page-heading__breadcrumbs-item {
	color: #C9C9C9;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1;
	transition: opacity 0.3s;
}

.p-page-heading__breadcrumbs-item:hover {
	opacity: 0.7;
}

.p-page-heading__breadcrumbs-item--current {
	color: #1A422C;
}

.p-page-heading__breadcrumbs-item--current:hover {
	opacity: 1;
}

.p-page-heading__breadcrumbs-separator {
	background-color: #C9C9C9;
	display: block;
	height: 1px;
	width: 0.875rem;
}

.p-service-page {
	padding: 10rem 0 0;
}

.p-service-page__heading {
	align-items: flex-start;
	display: flex;
	gap: 2rem;
}

.p-service-page__heading-line {
	background: #0B1D13;
	display: block;
	height: 5.375rem;
	width: 1px;
}

.p-service-page__heading-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.p-service-page__heading-en {
	color: #1A422C;
	font-family: "Cormorant Garamond", serif;
	font-size: 3rem;
	font-weight: 400;
	line-height: 1;
}

.p-service-page__heading-ja {
	color: #1A422C;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
}

.p-service-page__list {
	margin-top: 3rem;
}

.p-service-page__item {
	align-items: center;
	border-bottom: 1px solid #C9C9C9;
	display: flex;
	gap: 3.5rem;
	padding: 2.5rem 0;
	position: relative;
	scroll-margin-top: 7.5rem;
}

.p-service-page__item:first-child {
	border-top: 1px solid #C9C9C9;
}

.p-service-page__item-img {
	flex-shrink: 0;
	height: 18.75rem;
	width: 25rem;
}

.p-service-page__item-img img {
	-o-object-fit: cover;
	aspect-ratio: 400/300;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-service-page__item-texts {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
	width: 30rem;
}

.p-service-page__item-title {
	color: #0B1D13;
	font-family: "Shippori Mincho B1", serif;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.5;
}

.p-service-page__item-text {
	color: #0B1D13;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
}

.p-service-page__item-num {
	color: #1A422C;
	font-family: "Cormorant Garamond", serif;
	font-size: 7.5rem;
	font-weight: 400;
	line-height: 1;
	position: absolute;
	right: 2.0625rem;
	top: -1rem;
}

.p-service {
	padding: 10rem 0 12.5rem;
}

.p-service__inner {
	position: relative;
}

.p-service__header {
	align-items: flex-end;
	display: flex;
	gap: 1.125rem;
	justify-content: space-between;
}

.p-service__header-content {
	align-items: flex-end;
	display: flex;
	flex: 1;
	gap: 2.5rem;
}

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

.p-service__heading-en {
	color: #1A422C;
	font-family: "Cormorant Garamond", serif;
	font-size: 5.5rem;
	font-weight: 400;
	line-height: 1;
}

.p-service__heading-sub {
	align-items: center;
	display: flex;
	gap: 0.5rem;
}

.p-service__heading-line {
	background: #1A422C;
	display: block;
	height: 1px;
	width: 0.875rem;
}

.p-service__heading-ja {
	color: #1A422C;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
}

.p-service__lead {
	color: #0B1D13;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
}

.p-service__btn {
	align-items: center;
	border: 1px solid #1A422C;
	border-radius: 1.5rem;
	display: flex;
	gap: 0.5rem;
	max-width: 10rem;
	padding: 0.5rem 0.8125rem 0.5rem 1.4375rem;
}

.p-service__btn span {
	color: #1A422C;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1;
}

.p-service__btn img {
	height: auto;
	transition: transform 0.3s;
	width: 1.5rem;
}

.p-service__btn:hover img {
	transform: translateX(0.375rem);
}

.p-service__body {
	margin-top: 5rem;
	position: relative;
}

.p-service__list {
	margin-left: auto;
	position: relative;
	width: 31.625rem;
	z-index: 1;
}

.p-service__item {
	border-bottom: 1px solid #c9c9c9;
}

.p-service__item a {
	align-items: center;
	display: flex;
	gap: 1rem;
	padding: 1.25rem 1rem 1.4375rem;
}

.p-service__item-num {
	align-items: center;
	display: flex;
	gap: 1rem;
}

.p-service__item-num span:first-child {
	color: #0B1D13;
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1;
}

.p-service__item-line {
	background: #0B1D13;
	display: block;
	height: 3.875rem;
	width: 1px;
}

.p-service__item-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0.5rem;
	justify-content: center;
}

.p-service__item-en {
	color: #0B1D13;
	font-family: "Cormorant Garamond", serif;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1;
}

.p-service__item-title {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.p-service__item-title span {
	color: #0B1D13;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1;
}

.p-service__item-title img {
	height: auto;
	transition: transform 0.3s;
	width: 2.75rem;
}

.p-service__item a:hover .p-service__item-title img {
	transform: translateX(0.375rem);
}

.p-service__img {
	left: -3.5rem;
	position: absolute;
	top: 0;
	width: 36rem;
}

.p-service__img img {
	aspect-ratio: 576/527;
	height: auto;
	width: 100%;
}

.u-sp-only {
	display: none;
}

@media (max-width: 1100px) {

html {
	font-size: 1.4545454545vw;
}

}

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

.u-desktop {
	display: none;
}

.u-mobile {
	display: block;
}

html {
	font-size: 16px;
}

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

a:hover {
	opacity: 0.8;
}

.c-pagination {
	gap: 0.75rem;
	margin-top: 3.5rem;
}

.c-pagination .page-numbers {
	font-size: 0.875rem;
	min-width: 1.9375rem;
	padding: 0.5rem 0.25rem 0.5625rem;
}

.c-pagination .page-numbers.dots {
	padding: 0.4375rem 0 0.625rem;
}

.c-pagination .page-numbers.prev {
	margin-right: 0.25rem;
	padding: 0.6875rem 0.25rem 0.875rem;
}

.c-pagination .page-numbers.next {
	margin-left: 0.25rem;
	padding: 0.6875rem 0.25rem 0.875rem;
}

.c-pagination__prev,
.c-pagination__next {
	height: 0.375rem;
	width: 1.5rem;
}

.c-title {
	font-size: 20px;
}

.l-inner {
	max-width: 33.75rem;
	padding-left: 20px;
	padding-right: 20px;
}

.p-404 {
	padding: 7.5rem 0 5rem;
}

.p-404__num {
	font-size: 7.5rem;
}

.p-404__title {
	font-size: 1.5rem;
	margin-top: 0.5rem;
}

.p-404__text {
	font-size: 0.875rem;
	margin-top: 2rem;
}

.p-404__btn {
	margin-top: 2.5rem;
	padding: 1rem 2.5rem;
}

.p-404__btn-text {
	font-size: 1rem;
}

.p-404__btn-icon {
	width: 1.25rem;
}

.p-access {
	margin-top: 5rem;
	padding-bottom: 6.25rem;
}

.p-access__heading-inner {
	gap: 1rem;
}

.p-access__heading-line {
	height: 4.25rem;
}

.p-access__heading-content {
	gap: 0.5rem;
}

.p-access__heading-en {
	font-size: 2.5rem;
}

.p-access__heading-ja {
	font-size: 0.875rem;
}

.p-access__info {
	margin-top: 2.5rem;
}

.p-access__list {
	gap: 1.25rem;
}

.p-access__item {
	align-items: flex-start;
	flex-direction: column;
	gap: 0.25rem;
}

.p-access__item-label {
	font-size: 0.875rem;
}

.p-access__item-label::after {
	display: none;
}

.p-access__item-text {
	font-size: 0.875rem;
}

.p-access__map {
	margin-top: 3rem;
}

.p-access__map img {
	-o-object-fit: cover;
	aspect-ratio: 375/426;
	object-fit: cover;
}

.p-company-profile {
	padding: 5rem 0 0;
}

.p-company-profile__inner {
	flex-direction: column;
	gap: 2.5rem;
}

.p-company-profile__left {
	display: contents;
	gap: 2.625rem;
}

.p-company-profile__heading {
	gap: 1rem;
}

.p-company-profile__heading-line {
	height: 4.25rem;
}

.p-company-profile__heading-content {
	gap: 0.5rem;
}

.p-company-profile__heading-en {
	font-size: 2.5rem;
}

.p-company-profile__heading-ja {
	font-size: 0.875rem;
}

.p-company-profile__image {
	order: 2;
}

.p-company-profile__image img {
	-o-object-fit: cover;
	aspect-ratio: 335/250;
	object-fit: cover;
}

.p-company-profile__list-wrap {
	order: 1;
}

.p-company-profile__item-label {
	width: 8rem;
}

.p-faq {
	padding: 6.25rem 0;
}

.p-faq__heading {
	gap: 1rem;
}

.p-faq__heading-line {
	height: 4.25rem;
}

.p-faq__heading-content {
	gap: 0.5rem;
}

.p-faq__heading-en {
	font-size: 2.5rem;
}

.p-faq__heading-ja {
	font-size: 0.875rem;
}

.p-faq__list {
	margin-top: 3rem;
}

.p-faq__question {
	align-items: flex-start;
	gap: 0.6875rem;
	padding: 1rem 0.5rem;
}

.p-faq__question-num {
	font-size: 1.5rem;
	width: 3.0625rem;
}

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

.p-faq__question-icon {
	align-self: center;
	height: 1.5rem;
	width: 1.5rem;
}

.p-faq__question-icon::before {
	width: 0.4375rem;
}

.p-faq__question-icon::after {
	height: 0.4375rem;
}

.p-faq__answer {
	gap: 0.75rem;
	padding: 0 0.5rem;
}

.p-faq__item.is-open .p-faq__answer {
	padding-bottom: 1rem;
}

.p-faq__answer-num {
	font-size: 1.5rem;
	width: 3.0625rem;
}

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

.p-faq__note {
	font-size: 0.875rem;
	margin-top: 3rem;
}

.p-footer {
	padding: 5rem 0 3.3125rem;
}

.p-footer__info-wrapper {
	flex-direction: column;
	gap: 2.5rem;
}

.p-footer__info {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0 1.5rem;
}

.p-footer__logo {
	height: 4.375rem;
	width: 4.375rem;
}

.p-footer__info-content {
	gap: 0.5rem;
	margin-top: 0;
}

.p-footer__info-name {
	font-size: 0.9375rem;
}

.p-footer__sns {
	gap: 0.75rem;
}

.p-footer__sns-link img {
	height: 1.5rem;
	width: 1.5rem;
}

.p-footer__address {
	margin-top: 2.9375rem;
	width: 100%;
}

.p-footer__address p {
	font-size: 0.875rem;
}

.p-footer__cta {
	width: 100%;
}

.p-footer__cta-item {
	gap: 0.5rem;
	padding: 1.25rem 0.5rem 1.5rem;
}

.p-footer__cta-header > img {
	width: 2rem;
}

.p-footer__cta-heading-en {
	font-size: 1.75rem;
}

.p-footer__cta-heading-ja {
	font-size: 0.875rem;
}

.p-footer__cta-text {
	font-size: 0.875rem;
}

.p-footer__cta-tel {
	gap: 0.4375rem;
}

.p-footer__cta-tel > img {
	height: 2rem;
	width: 2rem;
}

.p-footer__cta-tel-content {
	flex-direction: column;
	gap: 0.25rem;
}

.p-footer__cta-tel-num {
	font-size: 1.5rem;
}

.p-footer__bottom {
	align-items: center;
	flex-direction: column-reverse;
	gap: 3rem;
	margin-top: 2.125rem;
}

.p-footer__copyright {
	font-size: 0.625rem;
}

.p-footer__nav-item a {
	font-size: 1rem;
}

.p-footer__bg {
	bottom: -14rem;
	height: 31.25rem;
	right: -11.875rem;
	width: 31.25rem;
}

.p-fv {
	height: 49.25rem;
}

.p-fv__content {
	bottom: 8.125rem;
	gap: 0.875rem;
	left: auto;
	right: 1.25rem;
	text-align: right;
}

.p-fv__title {
	font-size: 1.75rem;
}

.p-fv__text {
	font-size: 1rem;
	padding-left: 0.1875rem;
}

.p-header__inner {
	align-items: center;
	padding: 1rem 1.25rem 1rem 1rem;
}

.p-header__logo {
	height: 3.5rem;
	width: 3.5rem;
}

.p-header__nav {
	display: none;
}

.p-header__hamburger {
	display: block;
}

.p-intro {
	padding: 6.25rem 0 6.9375rem;
}

.p-intro__inner {
	flex-direction: column;
	gap: 6.4375rem;
}

.p-intro__heading {
	gap: 0.6875rem;
}

.p-intro__heading-en {
	font-size: 0.875rem;
}

.p-intro__heading-ja {
	font-size: 1.625rem;
}

.p-intro__texts {
	margin-top: 0;
}

.p-intro__text {
	font-size: 0.9375rem;
}

.p-news-heading {
	height: 15.625rem;
}

.p-news-heading__inner {
	align-items: flex-start;
	flex-direction: column;
	gap: 3.25rem;
	justify-content: flex-end;
	padding-bottom: 1.0625rem;
}

.p-news-heading__content {
	gap: 1rem;
	order: 1;
}

.p-news-heading__date {
	font-size: 0.875rem;
}

.p-news-heading__title {
	font-size: 1.25rem;
	max-width: 100%;
}

.p-news-heading__breadcrumbs {
	align-self: flex-end;
	order: 0;
}

.p-news-heading__breadcrumbs-item {
	font-size: 0.8125rem;
}

.p-news-heading__line {
	height: 1px;
}

.p-news-detail {
	padding: 3.75rem 0 6.25rem;
}

.p-news-detail__content {
	font-size: 0.875rem;
}

.p-news-detail__content h2 {
	font-size: 1.25rem;
	margin: 2rem 0 1rem;
}

.p-news-detail__content h3 {
	font-size: 1.125rem;
	margin: 1.5rem 0 0.75rem;
}

.p-news-detail__back {
	margin-top: 3.5rem;
}

.p-news-detail__back-text {
	font-size: 1rem;
}

.p-news-img img {
	aspect-ratio: 375/200;
}

.p-news-list {
	padding: 5rem 0 6.25rem;
}

.p-news-list__link {
	align-items: flex-start;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1rem 0.5rem;
}

.p-news-list__date {
	font-size: 0.875rem;
}

.p-news-list__content {
	gap: 1rem;
	width: 100%;
}

.p-news-list__title {
	font-size: 0.875rem;
}

.p-news-list__arrow {
	height: 0.5rem;
	width: 2rem;
}

.p-news {
	padding: 5rem 0 6.25rem;
}

.p-news__inner {
	flex-direction: column;
	gap: 0;
}

.p-news__header {
	display: contents;
}

.p-news__heading {
	gap: 0.5rem;
	order: 1;
}

.p-news__heading-en {
	font-size: 4.5rem;
}

.p-news__btn {
	margin-left: auto;
	margin-top: 2rem;
	order: 3;
}

.p-news__list {
	margin-top: 3rem;
	order: 2;
}

.p-news__item a {
	align-items: flex-start;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1rem 0.5rem;
}

.p-news__item-date {
	font-size: 0.875rem;
}

.p-news__item-content {
	gap: 1rem;
}

.p-news__item-title {
	-webkit-line-clamp: 3;
	font-size: 0.875rem;
}

.p-news__item-content img {
	width: 2rem;
}

.p-page-heading__inner {
	align-items: flex-end;
	flex-direction: column;
	gap: 4rem;
	justify-content: flex-start;
	padding-top: 6.5rem;
}

.p-page-heading__title {
	align-self: flex-start;
	font-size: 5.25rem;
	margin-bottom: -0.9375rem;
	order: 2;
}

.p-page-heading__breadcrumbs {
	order: 1;
	padding-bottom: 0rem;
}

.p-page-heading__breadcrumbs-item {
	font-size: 0.8125rem;
}

.p-service-page {
	padding: 5rem 0 0;
}

.p-service-page__heading {
	gap: 1rem;
}

.p-service-page__heading-line {
	height: 4.25rem;
}

.p-service-page__heading-content {
	gap: 0.5rem;
}

.p-service-page__heading-en {
	font-size: 2.5rem;
}

.p-service-page__heading-ja {
	font-size: 0.875rem;
}

.p-service-page__list {
	margin-top: 3.0625rem;
}

.p-service-page__item {
	align-items: flex-start;
	flex-direction: column;
	gap: 1.5rem;
	padding: 2rem 0 2.5rem;
	scroll-margin-top: 5rem;
}

.p-service-page__item-img {
	aspect-ratio: 332/249;
	height: auto;
	order: 2;
	width: 100%;
}

.p-service-page__item-img img {
	aspect-ratio: 332/249;
}

.p-service-page__item-texts {
	gap: 0.625rem;
	order: 1;
	width: 100%;
}

.p-service-page__item-title {
	font-size: 1.625rem;
}

.p-service-page__item-text {
	font-size: 0.875rem;
	line-height: 2;
}

.p-service-page__item-num {
	font-size: 4.5rem;
	right: 1.25rem;
	top: -0.25rem;
}

.p-service {
	padding: 5rem 0;
}

.p-service__inner {
	display: flex;
	flex-direction: column;
}

.p-service__header {
	display: contents;
}

.p-service__header-content {
	align-items: flex-start;
	flex-direction: column;
	gap: 2.5rem;
	order: 1;
}

.p-service__heading {
	gap: 0.5rem;
}

.p-service__heading-en {
	font-size: 4.5rem;
}

.p-service__lead {
	font-size: 0.875rem;
}

.p-service__btn {
	margin-left: auto;
	margin-top: 2rem;
	order: 3;
}

.p-service__body {
	display: contents;
}

.p-service__list {
	margin-top: 2.375rem;
	order: 2;
	width: 100%;
}

.p-service__item a {
	padding: 0.75rem 0.5rem 0.875rem;
}

.p-service__item-num span:first-child {
	font-size: 1.5rem;
}

.p-service__item-line {
	height: 2.5625rem;
}

.p-service__item-content {
	gap: 0.375rem;
}

.p-service__item-en {
	font-size: 0.625rem;
}

.p-service__item-title span {
	font-size: 1.0625rem;
}

.p-service__item-title img {
	width: 2rem;
}

.p-service__img {
	left: 0;
	margin-top: 3.375rem;
	order: 4;
	position: relative;
	width: 100%;
}

.p-service__img img {
	aspect-ratio: 335/315;
}

.u-pc-only {
	display: none;
}

.u-sp-only {
	display: inline;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}


/*# sourceMappingURL=style.css.map */
