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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
	border: 0;
	font-size: 100%;
	font-weight: normal;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
	display: block;
}

ol,
ul {
	list-style: none;
}

img {
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

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

button {
	background: transparent;
	border: none;
	box-shadow: none;
	cursor: pointer;
	font: inherit;
	margin: 0;
	padding: 0;
}

input,
select,
textarea {
	color: inherit;
	font: inherit;
	vertical-align: top;
}

body {
	background-color: #F2F6EE;
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	overflow-x: hidden;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	height: auto;
	max-width: 100%;
}

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

a:focus {
	outline: none;
}

a:focus-visible {
	outline: 3px solid #2C2C2C;
}

button {
	background: none;
	border: none;
	color: inherit;
	cursor: pointer;
}

button:focus {
	outline: none;
}

button:focus-visible {
	outline: 3px solid #2C2C2C;
}

.fade-up__for-block {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 1s ease, transform 1s ease;
}

.fade-up__for-block.is-visible {
	opacity: 1;
	transform: none;
}

.fade-up {
	display: inline-block;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 1s ease, transform 1s ease;
	will-change: opacity, transform;
}

.fade-up.is-visible {
	opacity: 1;
	transform: none;
}

.fade-up.is-visible.is-opacity {
	opacity: 0.8;
}

.js-parallax-fv {
	overflow: hidden;
	position: relative;
}

.js-parallax-fv-bg {
	height: 300px;
	position: relative;
	will-change: transform, top;
	z-index: 1;
}

.js-parallax-fv-bg.is-fixed {
	height: 300px;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1;
}

.js-parallax-fv-bg.is-absolute {
	bottom: 0;
	height: 300px;
	position: absolute;
	top: auto;
	width: 100%;
	z-index: 1;
}

.js-parallax-fv-placeholder {
	height: 0;
	visibility: hidden;
	width: 100%;
}

.js-parallax-fv-placeholder.active {
	height: 300px;
	visibility: visible;
}

.js-parallax-wrapper {
	background-color: #F2F6EE;
	position: relative;
	z-index: 3;
}

.section {
	position: relative;
	z-index: 3;
}

.l-header {
	background-color: #F2F6EE;
	border-bottom: 1px solid #E5E5E5;
	height: 40px;
	position: fixed;
	top: 0;
	transition: border-color 0.3s ease;
	width: 100%;
	z-index: 9999;
}

.l-header__inner {
	align-items: center;
	display: flex;
	height: inherit;
	justify-content: space-between;
	padding: 0 20px;
}

.l-header__logo-link {
	display: inline-block;
}

.l-header__logo-link:focus-visible {
	outline: 2px solid #2C2C2C;
	outline-offset: 2px;
}

.l-header__logo-text {
	color: #1A1A1A;
	font-family: "Cormorant Garamond", serif;
	font-size: 20px;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.06em;
	text-transform: none;
	transition: opacity 0.2s ease;
}

.l-header__logo-link:hover .l-header__logo-text {
	opacity: 0.5;
}

.l-header__nav {
	display: none;
}

.l-header__link {
	color: #1A1A1A;
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.1em;
	padding-bottom: 3px;
	position: relative;
}

.l-header__link::after {
	background-color: #1A1A1A;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
	width: 100%;
}

.l-header__link:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.wrapper {
	overflow: hidden;
}

.l-footer {
	background-color: #1A1A1A;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 32px 20px 40px;
}

.l-footer__inner {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 0 auto;
	max-width: 360px;
}

.l-footer__logo-link {
	display: inline-block;
}

.l-footer__logo-link:focus-visible {
	outline: 2px solid #FFFFFF;
	outline-offset: 2px;
}

.l-footer__logo-text {
	color: #FFFFFF;
	font-family: "Cormorant Garamond", serif;
	font-size: 18px;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: none;
}

.l-footer__nav {
	display: flex;
	gap: 10px;
}

.l-footer__link {
	color: #FFFFFF;
	font-family: "DM Sans", sans-serif;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: color 0.2s ease;
}

.l-footer__link:hover {
	color: rgba(255, 255, 255, 0.7);
}

.l-footer__copyright small {
	color: rgba(255, 255, 255, 0.6);
	font-family: "DM Sans", sans-serif;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: capitalize;
}

.c-page-top {
	align-items: center;
	background-color: #1A1A1A;
	border: none;
	bottom: 24px;
	cursor: pointer;
	display: flex;
	height: 48px;
	justify-content: center;
	opacity: 0;
	position: fixed;
	right: 20px;
	transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.2s ease;
	visibility: hidden;
	width: 48px;
	z-index: 900;
}

.c-page-top.is-visible {
	opacity: 1;
	visibility: visible;
}

.c-page-top:hover {
	background-color: #1A1A1A;
}

.c-page-top__arrow {
	border-right: 1px solid #FFFFFF;
	border-top: 1px solid #FFFFFF;
	display: block;
	height: 10px;
	transform: rotate(-45deg) translate(1px, 1px);
	width: 10px;
}

.c-btn {
	align-items: center;
	border-bottom: 1px solid #1A1A1A;
	color: #1A1A1A;
	display: inline-flex;
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	font-weight: 400;
	gap: 12px;
	letter-spacing: 0.1em;
	padding-bottom: 8px;
	text-decoration: none;
	text-transform: uppercase;
	transition: opacity 0.2s ease;
}

.c-btn:hover {
	opacity: 0.5;
}

.c-btn:focus-visible {
	outline: 2px solid #2C2C2C;
	outline-offset: 4px;
}

.c-btn__arrow {
	background-color: #1A1A1A;
	display: inline-block;
	flex-shrink: 0;
	height: 1px;
	position: relative;
	width: 32px;
}

.c-btn__arrow::after {
	border-right: 1px solid #1A1A1A;
	border-top: 1px solid #1A1A1A;
	content: "";
	height: 7px;
	position: absolute;
	right: 0;
	top: -3px;
	transform: rotate(45deg);
	width: 7px;
}

.c-section-label {
	color: #1A1A1A;
	display: inline-block;
	font-family: "Cormorant Garamond", serif;
	font-size: 11px;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.2em;
	text-transform: none;
}

.c-section-label--light {
	color: rgba(255, 255, 255, 0.5);
}

.c-heading {
	color: #1A1A1A;
	display: inline-block;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.003em;
	line-height: 1.33;
	position: relative;
}

.c-heading::after {
	background: var(--heading-img) no-repeat center center/contain;
	bottom: -12px;
	content: "";
	height: 37.33px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 100%;
	z-index: -1;
}

.c-heading-area {
	text-align: center;
}

.c-heading--left {
	color: #1A1A1A;
	display: inline-block;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.073em;
	line-height: 1.33;
	position: relative;
}

.c-heading--left::after {
	background: var(--heading-img) no-repeat center center/contain;
	bottom: -12px;
	content: "";
	height: 37.33px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 100%;
	z-index: 1;
}

.c-heading-area--left {
	text-align: left;
}

.bread-top {
	margin-top: 0px;
}

.bread-inner {
	padding-left: 15px;
	padding-right: 15px;
}

.l-breadcrumb__area {
	overflow: visible;
}

.l-breadcrumb {
	display: flex;
	-moz-column-gap: 6px;
	align-items: center;
	column-gap: 6px;
	flex-wrap: wrap;
	row-gap: 0;
}

.l-breadcrumb a {
	white-space: nowrap;
}

.l-breadcrumb__item {
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.5;
	text-decoration: none;
}

.l-breadcrumb__item a:nth-of-type(2) {
	margin-right: -5px;
}

.l-breadcrumb__item {
	text-decoration: none;
}

.l-breadcrumb span:first-of-type::before {
	content: none;
}

.c-pagination {
	margin-top: 30.16px;
	text-align: center;
}

.c-page-numbers {
	align-items: center;
	background: #FAFAFA;
	border: 2px solid #F0F3F5;
	border-radius: 10px;
	color: #2C2C2C;
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	height: 50px;
	line-height: 3.357;
	margin-right: 7px;
	min-width: 50px;
	text-align: center;
	text-decoration: none;
}

.c-page-numbers:hover {
	transform: none;
}

.c-page-numbers:focus-visible {
	outline: 3px solid #2C2C2C;
	outline-offset: -2px;
}

.c-page-numbers.prev,
.c-page-numbers.next {
	font-size: 14px;
	font-weight: 400;
}

.c-page-numbers:last-child {
	margin-right: 0;
}

.c-page-numbers.current {
	background: #2C2C2C;
	color: #fff;
	font-weight: 700;
}

.c-page-numbers {
	border-color: #2C2C2C;
	color: #2C2C2C;
	transition: color 0.25s ease, border-color 0.25s ease;
}

/* dots (…) は色のみ */

.c-page-numbers--dots {
	color: #2C2C2C;
	transition: color 0.25s ease;
}

/* hover（PCのみ） */

.c-page-top {
	align-items: center;
	background-color: transparent;
	border: 1px solid #1A1A1A;
	border-radius: 50%;
	bottom: 24px;
	cursor: pointer;
	display: flex;
	height: 40px;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	right: 20px;
	transition: opacity 0.3s ease, background-color 0.2s ease;
	width: 40px;
	z-index: 1000;
}

.c-page-top.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.c-page-top:hover {
	background-color: #2C2C2C;
	border-color: #2C2C2C;
}

.c-page-top:hover .c-page-top__arrow {
	border-color: #FFFFFF;
}

.c-page-top__arrow {
	border-right: 1px solid #1A1A1A;
	border-top: 1px solid #1A1A1A;
	display: inline-block;
	height: 10px;
	margin-top: 4px;
	transform: rotate(-45deg);
	transition: border-color 0.2s ease;
	width: 10px;
}

.p-drawer-icon {
	display: flex;
	flex-direction: column;
	height: 18px;
	justify-content: space-between;
	padding: 0;
	position: relative;
	width: 24px;
	z-index: 10000;
}

.p-drawer-icon.is-checked .p-drawer-icon__line:nth-child(1) {
	transform: translateY(8.5px) rotate(45deg);
}

.p-drawer-icon.is-checked .p-drawer-icon__line:nth-child(2) {
	opacity: 0;
}

.p-drawer-icon.is-checked .p-drawer-icon__line:nth-child(3) {
	transform: translateY(-8.5px) rotate(-45deg);
}

.p-drawer-icon__line {
	background-color: #1A1A1A;
	display: block;
	height: 1px;
	transition: transform 0.35s ease, opacity 0.35s ease;
	width: 100%;
}

.p-drawer-content {
	background-color: #243B33;
	display: flex;
	flex-direction: column;
	height: 100dvh;
	justify-content: center;
	padding: 40px 20px 40px;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
	width: 100%;
	z-index: 9998;
}

.p-drawer-content.is-checked {
	transform: translateX(0);
}

.p-drawer-content__nav {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.p-drawer-content__link {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 20px 0;
	transition: opacity 0.2s ease;
}

.p-drawer-content__link:hover {
	opacity: 0.6;
}

.p-drawer-content__link:focus-visible {
	outline: 2px solid #FFFFFF;
	outline-offset: 4px;
}

.p-drawer-content__link-en {
	color: #FFFFFF;
	font-family: "Cormorant Garamond", serif;
	font-size: 36px;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.03em;
	line-height: 1;
}

.p-drawer-content__link-ja {
	color: rgba(255, 255, 255, 0.5);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.15em;
}

.p-drawer-content__footer {
	margin-top: auto;
	padding-top: 40px;
}

.p-drawer-content__sns {
	display: flex;
	gap: 24px;
	list-style: none;
}

.p-drawer-content__sns-link {
	color: rgba(255, 255, 255, 0.5);
	font-family: "DM Sans", sans-serif;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.1em;
	transition: color 0.2s ease;
}

.p-drawer-content__sns-link:hover {
	color: #FFFFFF;
}

.p-fv {
	align-items: flex-end;
	background-color: #F2F6EE;
	display: flex;
	overflow: hidden;
	padding-top: 90px;
	position: relative;
}

.p-fv__inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: flex-end;
	padding: 0 20px;
	width: 100%;
}

.p-fv__content {
	margin-top: auto;
}

.p-fv__label {
	color: #1A1A1A;
	display: block;
	font-family: "DM Sans", sans-serif;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.2em;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.p-fv__name {
	margin-bottom: 0;
}

.p-fv__name-en {
	color: #1A1A1A;
	display: block;
	font-family: "Cormorant Garamond", serif;
	font-size: 52px;
	font-style: italic;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 0.88;
	text-transform: capitalize;
}

.p-fv__bottom {
	display: flex;
	flex-direction: column;
	gap: 32px;
	margin-top: 32px;
}

.p-fv__tagline {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.15em;
	line-height: 2;
}

.p-fv__scroll {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.p-fv__scroll-line {
	animation: scroll-arrow 1.8s ease infinite;
	border-bottom: 1px solid #1A1A1A;
	border-right: 1px solid #1A1A1A;
	display: block;
	height: 8px;
	order: 2;
	transform: rotate(45deg);
	width: 8px;
}

.p-fv__scroll-text {
	color: #1A1A1A;
	font-family: "DM Sans", sans-serif;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.2em;
	order: 1;
	text-transform: uppercase;
}

.p-about {
	background-color: #F2F6EE;
	padding: 40px 20px;
}

.p-about__inner {
	margin: 0 auto;
}

.p-about__label-wrap {
	margin-bottom: 32px;
}

.p-about__img-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.p-about__img {
	background-color: #E5E5E5;
	border-radius: 4px;
	flex-shrink: 0;
	height: 300px;
	overflow: hidden;
	width: 240px;
}

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

.p-about__name {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 24px;
}

.p-about__name-en {
	color: #1A1A1A;
	font-family: "Cormorant Garamond", serif;
	font-size: 28px;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1.2;
	text-transform: capitalize;
}

.p-about__name-ja {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.2em;
}

.p-about__bio {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2;
	margin-bottom: 32px;
}

.p-about__skills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin-bottom: 40px;
}

.p-about__btn {
	display: flex;
	justify-content: flex-end;
}

.p-about__skill {
	border: 1px solid #E5E5E5;
	border-radius: 2px;
	color: #1A1A1A;
	font-family: "DM Sans", sans-serif;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.08em;
	padding: 6px 14px;
	text-transform: capitalize;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.p-about__skill span {
	text-transform: uppercase;
}

.p-about__skill.is-big {
	text-transform: uppercase;
}

.p-abt-profile__bio,
.p-abt-section__text,
.p-abt-list__text,
.p-abt-checks__item,
.p-abt-info__desc {
	text-transform: none;
}

.p-service {
	background-color: #F2F6EE;
	padding: 40px 20px;
}

.p-service__inner {
	margin: 0 auto;
}

.p-service__label-wrap {
	display: block;
	margin-bottom: 10px;
	width: 100%;
}

.p-service__heading {
	color: #1A1A1A;
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0.1em;
	margin-bottom: 40px;
	width: 100%;
}

.p-service__list {
	border-top: 1px solid #E5E5E5;
	list-style: none;
}

.p-service__item {
	align-items: baseline;
	border-bottom: 1px solid #E5E5E5;
	display: flex;
	gap: 24px;
	padding: 32px 0;
}

.p-service__num {
	color: #1A1A1A;
	flex-shrink: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: 24px;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1;
	padding-top: 2px;
}

.p-service__item-body {
	flex: 1;
}

.p-service__item-title {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.08em;
	margin-bottom: 12px;
}

.p-service__item-title.is-top {
	text-transform: capitalize;
}

.p-service__item-title span {
	text-transform: uppercase;
}

.p-service__btn {
	display: flex;
	justify-content: flex-end;
	margin-top: 48px;
}

.p-service__item-text {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.9;
}

.p-service__item-text span {
	text-transform: capitalize;
}

.is-js {
	text-transform: capitalize;
}

.is-js span {
	text-transform: uppercase;
}

.p-works {
	background-color: #FFFFFF;
	padding: 40px 20px;
}

.p-works__inner {
	margin: 0 auto;
}

.p-works__label-wrap {
	display: block;
	margin-bottom: 10px;
	width: 100%;
}

.p-works__heading {
	color: #1A1A1A;
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.05em;
	margin-bottom: 40px;
	width: 100%;
}

.p-works__auth {
	display: block;
	text-transform: none;
	width: 100%;
}

.p-works__auth span {
	text-transform: uppercase;
}

.p-works__grid {
	display: grid;
	gap: 16px 12px;
	grid-template-columns: 1fr 1fr;
	margin-top: 20px;
}

.p-works__card {
	overflow: hidden;
}

.p-works__card-link {
	display: block;
}

.p-works__card-link:hover .p-works__card-img img {
	transform: scale(1.04);
}

.p-works__card-link:hover .p-works__card-title {
	opacity: 0.6;
}

.p-works__card-link:focus-visible {
	outline: 2px solid #2C2C2C;
	outline-offset: 2px;
}

.p-works__card-img {
	aspect-ratio: 4/3;
	background-color: #E5E5E5;
	border-radius: 2px;
	margin-bottom: 14px;
	overflow: hidden;
	width: 100%;
}

.p-works__card-img img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-works__card-body {
	padding: 0 2px;
}

.p-works__card-category {
	color: #1A1A1A;
	font-family: "DM Sans", sans-serif;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.12em;
	margin-bottom: 6px;
}

.p-works__card-category.is-top {
	text-transform: capitalize;
}

.p-works__card-category span {
	text-transform: uppercase;
}

.p-works__card-title {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.6;
	margin-bottom: 12px;
	transition: opacity 0.2s ease;
}

.p-works__card-more {
	border-bottom: 1px solid currentColor;
	color: #1A1A1A;
	display: inline-block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.1em;
	padding-bottom: 2px;
}

.p-price {
	background-color: #FFFFFF;
	padding: 40px 20px;
}

.p-price__inner {
	margin: 0 auto;
}

.p-price__label-wrap {
	display: block;
	margin-bottom: 10px;
	width: 100%;
}

.p-price__heading {
	color: #1A1A1A;
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
	width: 100%;
}

.p-price__lead {
	color: #1A1A1A;
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2;
	margin-bottom: 48px;
	text-transform: none;
	width: 100%;
}

.p-price__cards {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
	margin-bottom: 48px;
}

.p-price__card {
	border: 1px solid #E5E5E5;
	padding: 32px 24px;
}

.p-price__card-head {
	align-items: baseline;
	border-bottom: 1px solid #E5E5E5;
	display: flex;
	gap: 12px;
	margin-bottom: 28px;
	padding-bottom: 24px;
}

.p-price__card-type {
	background-color: #1A1A1A;
	color: #FFFFFF;
	flex-shrink: 0;
	font-family: "DM Sans", sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.15em;
	line-height: 1.4;
	padding: 4px 10px;
	text-transform: capitalize;
}

.p-price__card-type.is-big {
	text-transform: uppercase;
}

.p-price__card-type span {
	text-transform: uppercase;
}

.p-price__card-name {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: none;
}

.p-price__card-name.is-big {
	text-transform: uppercase;
}

.p-price__card-name.is-big span {
	text-transform: none;
}

.p-price__card-price {
	align-items: baseline;
	color: #1A1A1A;
	display: flex;
	font-family: "Cormorant Garamond", serif;
	font-size: 48px;
	font-weight: 400;
	gap: 2px;
	letter-spacing: -0.02em;
	line-height: 1;
	margin-bottom: 28px;
}

.p-price__card-price-from {
	font-size: 24px;
	font-weight: 400;
	margin-right: 2px;
}

.p-price__card-price-unit {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 18px;
	font-weight: 400;
	margin-left: 4px;
}

.p-price__card-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	list-style: none;
}

.p-price__card-list li {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.05em;
	padding-left: 16px;
	position: relative;
	text-transform: none;
}

.p-price__card-list li.is-big-price {
	text-transform: uppercase;
}

.p-price__card-list li.is-big-price span {
	text-transform: none;
}

.p-price__card-list li span {
	text-transform: uppercase;
}

.p-price__card-list li::before {
	background-color: #1A1A1A;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
}

.p-price__btn {
	display: flex;
	justify-content: flex-end;
}

.p-price__btn .c-btn {
	display: inline-flex;
}

.p-simulator {
	border-top: 1px solid #E5E5E5;
	margin-top: 64px;
	padding-top: 64px;
}

.p-simulator__header {
	margin-bottom: 48px;
}

.p-simulator__title {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0.05em;
	margin-bottom: 12px;
}

.p-simulator__desc {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.9;
}

.p-sim-steps {
	align-items: center;
	display: flex;
	margin-bottom: 40px;
}

.p-sim-step {
	align-items: center;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	gap: 6px;
	padding: 0;
}

.p-sim-step__num {
	color: #E5E5E5;
	font-family: "Cormorant Garamond", serif;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1;
	transition: color 0.25s ease;
}

.p-sim-step__label {
	color: #E5E5E5;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.08em;
	transition: color 0.25s ease;
}

.p-sim-step.is-active .p-sim-step__num,
.p-sim-step.is-active .p-sim-step__label,
.p-sim-step.is-done .p-sim-step__num,
.p-sim-step.is-done .p-sim-step__label {
	color: #1A1A1A;
}

.p-sim-step.is-active .p-sim-step__num {
	border-bottom: 1px solid #1A1A1A;
	padding-bottom: 2px;
}

.p-sim-step__line {
	background-color: #E5E5E5;
	bottom: 8px;
	flex: 1;
	height: 1px;
	margin: 0 12px;
	position: relative;
}

.p-sim-panel {
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transform: translateY(8px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.p-sim-panel.is-active {
	opacity: 1;
	pointer-events: auto;
	position: static;
	transform: translateY(0);
}

.p-sim-panel__note {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.04em;
	margin-bottom: 28px;
}

.p-sim-radios {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 40px;
}

.p-sim-radio {
	cursor: pointer;
}

.p-sim-radio input[type=radio] {
	height: 0;
	opacity: 0;
	position: absolute;
	width: 0;
}

.p-sim-radio__card {
	border: 1px solid #E5E5E5;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px 16px;
	transition: border-color 0.2s ease;
}

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

.p-sim-radio__badge {
	background-color: #E5E5E5;
	color: #1A1A1A;
	font-family: "DM Sans", sans-serif;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.12em;
	line-height: 1.4;
	padding: 3px 8px;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.p-sim-radio__check {
	border: 1px solid #E5E5E5;
	border-radius: 50%;
	flex-shrink: 0;
	height: 14px;
	position: relative;
	transition: border-color 0.2s ease;
	width: 14px;
}

.p-sim-radio__check::after {
	background-color: #1A1A1A;
	border-radius: 50%;
	content: "";
	inset: 3px;
	opacity: 0;
	position: absolute;
	transition: opacity 0.2s ease;
}

.p-sim-radio__name {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.05em;
}

.p-sim-radio__name span {
	text-transform: none;
}

.p-sim-radio__desc {
	color: #1A1A1A;
	display: none;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.8;
}

.p-sim-radio__price {
	color: #1A1A1A;
	font-family: "Cormorant Garamond", serif;
	font-size: 13px;
	font-weight: 400;
	margin-top: auto;
}

.p-sim-radio__price em {
	color: #1A1A1A;
	font-size: 22px;
	font-style: normal;
}

.p-sim-radio input:checked + .p-sim-radio__card {
	border-color: #1A1A1A;
}

.p-sim-radio input:checked + .p-sim-radio__card .p-sim-radio__badge {
	background-color: #1A1A1A;
	color: #FFFFFF;
}

.p-sim-radio input:checked + .p-sim-radio__card .p-sim-radio__check {
	border-color: #1A1A1A;
}

.p-sim-radio input:checked + .p-sim-radio__card .p-sim-radio__check::after {
	opacity: 1;
}

.p-sim-radio:hover .p-sim-radio__card {
	border-color: #C8C8C8;
}

.p-sim-counters {
	border-top: 1px solid #E5E5E5;
	display: flex;
	flex-direction: column;
	margin-bottom: 40px;
}

.p-sim-counter {
	align-items: center;
	border-bottom: 1px solid #E5E5E5;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	padding: 18px 0;
}

.p-sim-counter__info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.p-sim-counter__name {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.04em;
}

.p-sim-counter__price {
	color: #1A1A1A;
	font-family: "DM Sans", sans-serif;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.04em;
}

.p-sim-counter__ctrl {
	align-items: center;
	display: flex;
	flex-shrink: 0;
	gap: 16px;
}

.p-sim-counter__btn {
	align-items: center;
	background: none;
	border: 1px solid #E5E5E5;
	color: #1A1A1A;
	cursor: pointer;
	display: flex;
	flex-shrink: 0;
	font-size: 16px;
	height: 32px;
	justify-content: center;
	line-height: 1;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	width: 32px;
}

.p-sim-counter__btn:hover:not(:disabled) {
	background-color: #1A1A1A;
	border-color: #1A1A1A;
	color: #FFFFFF;
}

.p-sim-counter__btn:disabled {
	cursor: default;
	opacity: 0.3;
}

.p-sim-counter__val {
	color: #1A1A1A;
	font-family: "Cormorant Garamond", serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	min-width: 24px;
	text-align: center;
}

.p-sim-panel__nav {
	align-items: center;
	display: flex;
	gap: 16px;
	margin-top: 8px;
}

.p-sim-panel__nav.p-sim-panel__nav--end {
	justify-content: flex-end;
}

.p-sim-nav-btn {
	align-items: center;
	background: none;
	border: 1px solid #1A1A1A;
	color: #1A1A1A;
	cursor: pointer;
	display: inline-flex;
	font-family: "DM Sans", sans-serif;
	font-size: 12px;
	font-weight: 500;
	gap: 8px;
	letter-spacing: 0.1em;
	padding: 10px 20px;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.p-sim-nav-btn:hover {
	background-color: #1A1A1A;
	color: #FFFFFF;
}

.p-sim-nav-btn__arrow {
	font-size: 14px;
	line-height: 1;
}

.p-sim-summary {
	border: 1px solid #E5E5E5;
	margin-top: 56px;
	padding: 32px 24px;
}

.p-sim-summary__breakdown {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 24px;
}

.p-sim-summary__breakdown:empty {
	display: none;
}

.p-sim-summary__bd-item {
	align-items: baseline;
	border-bottom: 1px solid #E5E5E5;
	color: #1A1A1A;
	display: flex;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 12px;
	font-weight: 400;
	justify-content: space-between;
	letter-spacing: 0.04em;
	padding-bottom: 8px;
}

.p-sim-summary__rows {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 20px;
}

.p-sim-summary__row {
	align-items: baseline;
	display: flex;
	justify-content: space-between;
}

.p-sim-summary__row--total {
	border-top: 1px solid #E5E5E5;
	margin-top: 4px;
	padding-top: 16px;
}

.p-sim-summary__label {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.05em;
}

.p-sim-summary__row--total .p-sim-summary__label {
	color: #1A1A1A;
	font-size: 13px;
	font-weight: 400;
}

.p-sim-summary__val {
	color: #1A1A1A;
	font-family: "Cormorant Garamond", serif;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0.02em;
	transition: color 0.2s ease;
}

.p-sim-summary__val--total {
	color: #1A1A1A;
	font-size: 36px;
}

.p-sim-summary__note {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.8;
	margin-bottom: 28px;
}

.p-sim-summary__btn .c-btn {
	display: inline-flex;
}

.p-blog-list {
	padding: 60px 0 80px;
}

.p-blog-list__inner {
	margin: 0 auto;
	max-width: 1100px;
	padding: 0 20px;
}

.p-blog-list__header {
	margin-bottom: 40px;
}

.p-blog-list__en {
	color: #1A1A1A;
	display: block;
	font-family: "Cormorant Garamond", serif;
	font-size: 52px;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1;
	margin-bottom: 8px;
}

.p-blog-list__ja {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.14em;
}

.p-blog-list__tabs {
	border-bottom: 1px solid #E5E5E5;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 40px;
	padding-bottom: 20px;
}

.p-blog-list__tab {
	border: 1px solid #E5E5E5;
	color: #1A1A1A;
	font-family: "DM Sans", sans-serif;
	font-size: 12px;
	letter-spacing: 0.1em;
	padding: 6px 18px;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.p-blog-list__tab:hover,
.p-blog-list__tab.is-active {
	background-color: #1A1A1A;
	border-color: #1A1A1A;
	color: #FFFFFF;
}

.p-blog-list__container {
	display: grid;
	gap: 60px;
	grid-template-columns: 1fr;
}

.p-blog-list__main {
	min-width: 0;
}

.p-blog-list__grid {
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr;
}

.p-blog-list__card {
	color: #1A1A1A;
	display: block;
	text-decoration: none;
}

.p-blog-list__card:hover .p-blog-list__card-photo {
	transform: scale(1.04);
}

.p-blog-list__card:hover .p-blog-list__card-title {
	opacity: 0.6;
}

.p-blog-list__card-img {
	aspect-ratio: 16/9;
	background-color: #E5E5E5;
	margin-bottom: 14px;
	overflow: hidden;
}

.p-blog-list__card-photo {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	display: block;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.p-blog-list__card-body {
	padding: 0 2px;
}

.p-blog-list__card-meta {
	align-items: center;
	display: flex;
	gap: 10px;
	margin-bottom: 8px;
}

.p-blog-list__card-date {
	color: #1A1A1A;
	font-family: "DM Sans", sans-serif;
	font-size: 12px;
	letter-spacing: 0.06em;
}

.p-blog-list__card-cat {
	border: 1px solid #E5E5E5;
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 10px;
	letter-spacing: 0.08em;
	line-height: 1.4;
	padding: 2px 8px;
}

.p-blog-list__card-title {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.7;
	transition: opacity 0.2s;
}

.p-blog-list__empty {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	padding: 60px 0;
	text-align: center;
}

.p-news {
	background-color: #F2F6EE;
	padding: 40px 20px;
}

.p-news__inner {
	margin: 0 auto;
}

.p-news__label-wrap {
	display: block;
	margin-bottom: 10px;
	width: 100%;
}

.p-news__heading {
	color: #1A1A1A;
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.05em;
	margin-bottom: 40px;
	width: 100%;
}

.p-news__list {
	border-top: 1px solid #E5E5E5;
	list-style: none;
}

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

.p-news__link {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px 0;
	transition: opacity 0.2s ease;
}

.p-news__link:hover {
	opacity: 0.5;
}

.p-news__link:focus-visible {
	outline: 2px solid #2C2C2C;
	outline-offset: 2px;
}

.p-news__meta {
	align-items: center;
	display: flex;
	flex-shrink: 0;
	gap: 12px;
}

.p-news__date {
	color: #1A1A1A;
	font-family: "DM Sans", sans-serif;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: none;
}

.p-news__badge {
	background-color: #1A1A1A;
	color: #FFFFFF;
	display: inline-block;
	font-family: "DM Sans", sans-serif;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.4;
	padding: 3px 8px;
	text-transform: none;
}

.p-news__title {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.6;
	text-transform: none;
}

.p-news__btn {
	display: flex;
	justify-content: flex-end;
	margin-top: 40px;
}

.p-single {
	padding: 40px 0 80px;
}

.p-single__inner {
	margin: 0 auto;
	max-width: 1100px;
	padding: 0 20px;
}

.p-single__container {
	display: grid;
	gap: 60px;
	grid-template-columns: 1fr;
}

.p-single__header {
	margin-bottom: 40px;
}

.p-single__meta {
	align-items: center;
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
}

.p-single__date {
	color: #1A1A1A;
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	letter-spacing: 0.05em;
}

.p-single__category {
	border: 1px solid #E5E5E5;
	color: #1A1A1A;
	display: inline-block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 11px;
	letter-spacing: 0.08em;
	padding: 3px 10px;
	text-decoration: none;
	transition: background-color 0.2s, color 0.2s;
}

.p-single__category:hover {
	background-color: #1A1A1A;
	border-color: #1A1A1A;
	color: #FFFFFF;
}

.p-single__title {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 28px;
}

.p-single__thumbnail {
	aspect-ratio: 16/9;
	overflow: hidden;
	width: 100%;
}

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

.p-single__body {
	border-top: 1px solid #E5E5E5;
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 15px;
	line-height: 1.9;
	padding: 40px 0;
}

.p-single__body h2 {
	border-left: 3px solid #1A1A1A;
	font-size: 20px;
	font-weight: 700;
	margin: 40px 0 16px;
	padding-left: 12px;
}

.p-single__body h3 {
	font-size: 17px;
	font-weight: 700;
	margin: 32px 0 12px;
}

.p-single__body p {
	margin-bottom: 20px;
}

.p-single__body ul,
.p-single__body ol {
	margin: 0 0 20px 20px;
}

.p-single__body ul li,
.p-single__body ol li {
	margin-bottom: 8px;
}

.p-single__body img {
	display: block;
	height: auto;
	margin: 24px auto;
	max-width: 100%;
}

.p-single__body a {
	color: #3B6B8A;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.p-single__body blockquote {
	border-left: 3px solid #E5E5E5;
	color: #1A1A1A;
	font-style: italic;
	margin: 24px 0;
	padding: 12px 20px;
}

.p-single__footer {
	border-top: 1px solid #E5E5E5;
	padding-top: 40px;
}

.p-single__nav {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 40px;
}

.p-single__nav-prev {
	text-align: left;
}

.p-single__nav-next {
	text-align: right;
}

.p-single__nav-link {
	color: #1A1A1A;
	display: flex;
	flex-direction: column;
	gap: 6px;
	text-decoration: none;
	transition: opacity 0.2s;
}

.p-single__nav-link:hover {
	opacity: 0.6;
}

.p-single__nav-next .p-single__nav-link {
	align-items: flex-end;
}

.p-single__nav-label {
	color: #1A1A1A;
	font-family: "DM Sans", sans-serif;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.p-single__nav-title {
	-webkit-line-clamp: 2;
	display: -webkit-box;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	line-height: 1.5;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.p-single__back {
	text-align: center;
}

.c-back-link {
	align-items: center;
	color: #1A1A1A;
	display: inline-flex;
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	gap: 8px;
	letter-spacing: 0.08em;
	text-decoration: none;
	transition: gap 0.2s;
}

.c-back-link:hover {
	gap: 14px;
}

.c-back-link__arrow {
	font-size: 16px;
	line-height: 1;
}

.p-sidebar {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.p-sidebar__heading {
	border-bottom: 1px solid #E5E5E5;
	color: #1A1A1A;
	font-family: "Cormorant Garamond", serif;
	font-size: 18px;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
	padding-bottom: 10px;
}

.p-sidebar__profile-inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-align: center;
}

.p-sidebar__profile-img {
	border-radius: 50%;
	height: 72px;
	overflow: hidden;
	width: 72px;
}

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

.p-sidebar__profile-name {
	color: #1A1A1A;
	font-family: "DM Sans", sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.06em;
}

.p-sidebar__profile-bio {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 12px;
	line-height: 1.8;
}

.p-sidebar__post-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	list-style: none;
}

.p-sidebar__post-link {
	color: #1A1A1A;
	display: flex;
	gap: 12px;
	text-decoration: none;
	transition: opacity 0.2s;
}

.p-sidebar__post-link:hover {
	opacity: 0.65;
}

.p-sidebar__post-img {
	flex-shrink: 0;
	height: 54px;
	overflow: hidden;
	width: 72px;
}

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

.p-sidebar__post-body {
	flex: 1;
	min-width: 0;
}

.p-sidebar__post-meta {
	align-items: center;
	display: flex;
	gap: 8px;
	margin-bottom: 4px;
}

.p-sidebar__post-meta time {
	color: #1A1A1A;
	font-family: "DM Sans", sans-serif;
	font-size: 11px;
	letter-spacing: 0.04em;
}

.p-sidebar__post-cat {
	border: 1px solid #E5E5E5;
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 10px;
	padding: 1px 6px;
}

.p-sidebar__post-title {
	-webkit-line-clamp: 2;
	display: -webkit-box;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 12px;
	line-height: 1.6;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.p-sidebar__cat-list {
	display: flex;
	flex-direction: column;
	list-style: none;
}

.p-sidebar__cat-link {
	align-items: center;
	border-bottom: 1px solid #E5E5E5;
	color: #1A1A1A;
	display: flex;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	justify-content: space-between;
	padding: 10px 0;
	text-decoration: none;
	transition: opacity 0.2s;
}

.p-sidebar__cat-link:hover {
	opacity: 0.6;
}

.p-sidebar__cat-count {
	color: #1A1A1A;
	font-family: "DM Sans", sans-serif;
	font-size: 12px;
}

#toc_container {
	background: #F2F6EE;
	border: 1px solid #E5E5E5;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	margin: 32px 0;
	padding: 20px 24px;
}

#toc_container .toc_list .toc_title {
	font-weight: 700;
	margin-bottom: 8px;
}

#toc_container ul {
	counter-reset: toc-counter;
}

#toc_container li {
	counter-increment: toc-counter;
	list-style: none;
	margin-bottom: 6px;
}

#toc_container li::before {
	color: #3B6B8A;
	content: counter(toc-counter) ". ";
	font-size: 13px;
	font-weight: 700;
	margin-right: 4px;
}

.p-contact {
	background-color: #243B33;
	padding: 40px 20px;
}

.p-contact__inner {
	margin: 0 auto;
}

.p-contact__left {
	margin-bottom: 40px;
}

.p-contact__label-wrap {
	margin-bottom: 10px;
}

.p-contact__heading {
	color: #FFFFFF;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(40px, 10vw, 80px);
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 0.92;
	margin-bottom: 16px;
}

.p-contact__text {
	color: rgba(255, 255, 255, 0.7);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2;
	text-transform: none;
}

.p-contact__text.is-contact {
	text-transform: uppercase;
}

.p-contact__text.is-contact span {
	text-transform: none;
}

.p-contact__form-wrap {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 600px;
}

.p-contact .wpcf7 .wpcf7-form-control-wrap,
.p-contact .wpcf7 label {
	display: block;
}

.p-contact .wpcf7 input[type=text],
.p-contact .wpcf7 input[type=email],
.p-contact .wpcf7 input[type=tel],
.p-contact .wpcf7 textarea {
	background-color: #FFFFFF;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 400;
	outline: none;
	padding: 12px 14px;
	text-transform: none;
	transition: border-color 0.2s ease;
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.p-contact .wpcf7 input[type=text]::-moz-placeholder,
.p-contact .wpcf7 input[type=email]::-moz-placeholder,
.p-contact .wpcf7 input[type=tel]::-moz-placeholder,
.p-contact .wpcf7 textarea::-moz-placeholder {
	color: rgba(26, 26, 26, 0.35);
	font-weight: 400;
}

.p-contact .wpcf7 input[type=text]::placeholder,
.p-contact .wpcf7 input[type=email]::placeholder,
.p-contact .wpcf7 input[type=tel]::placeholder,
.p-contact .wpcf7 textarea::placeholder {
	color: rgba(26, 26, 26, 0.35);
	font-weight: 400;
}

.p-contact .wpcf7 input[type=text]:focus,
.p-contact .wpcf7 input[type=email]:focus,
.p-contact .wpcf7 input[type=tel]:focus,
.p-contact .wpcf7 textarea:focus {
	border-color: #FFFFFF;
	outline: 2px solid rgba(255, 255, 255, 0.4);
	outline-offset: 0;
}

.p-contact .wpcf7 textarea {
	min-height: 120px;
	resize: vertical;
}

.p-contact .wpcf7 .p-contact__form-item {
	margin-bottom: 28px;
}

.p-contact .wpcf7 .p-contact__form-label {
	color: rgba(255, 255, 255, 0.5);
	display: block;
	font-family: "DM Sans", sans-serif;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.15em;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.p-contact .wpcf7 input[type=submit] {
	background-color: #FFFFFF;
	border: 1px solid #FFFFFF;
	color: #1A1A1A;
	cursor: pointer;
	display: block;
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.15em;
	margin: 40px auto 0;
	padding: 14px 48px;
	text-transform: uppercase;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.p-contact .wpcf7 input[type=submit]:hover {
	background-color: transparent;
	color: #FFFFFF;
}

.p-contact .wpcf7 select,
.p-contact .wpcf7 .p-contact__select {
	background-color: #FFFFFF;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 400;
	outline: none;
	padding: 12px 40px 12px 14px;
	text-transform: none;
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	transition: border-color 0.2s ease;
}

.p-contact .wpcf7 select:has(option[value=""]:checked),
.p-contact .wpcf7 .p-contact__select:has(option[value=""]:checked) {
	color: rgba(26, 26, 26, 0.35);
}

.p-contact .wpcf7 select:focus,
.p-contact .wpcf7 .p-contact__select:focus {
	border-color: #FFFFFF;
	outline: 2px solid rgba(255, 255, 255, 0.4);
	outline-offset: 0;
}

.p-contact .wpcf7 .p-contact__select-wrap {
	display: block;
	position: relative;
}

.p-contact .wpcf7 .p-contact__select-wrap::after {
	border-bottom: 1px solid #1A1A1A;
	border-right: 1px solid #1A1A1A;
	content: "";
	height: 7px;
	pointer-events: none;
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 7px;
}

.p-contact .wpcf7 .p-contact__privacy-label {
	align-items: center;
	cursor: pointer;
	display: flex;
	gap: 12px;
	margin-bottom: 32px;
}

.p-contact .wpcf7 .p-contact__privacy-check {
	border: 1px solid rgba(255, 255, 255, 0.4);
	flex-shrink: 0;
	height: 18px;
	width: 18px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #FFFFFF;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.p-contact .wpcf7 .p-contact__privacy-check:checked {
	background-color: #FFFFFF;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 9'%3E%3Cpath d='M1 4l3.5 3.5L11 1' stroke='%231A1A1A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 11px;
	border-color: #FFFFFF;
}

.p-contact .wpcf7 .p-contact__privacy-text {
	color: rgba(255, 255, 255, 0.7);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.7;
	text-transform: none;
}

.p-contact .wpcf7 .p-contact__privacy-text a {
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	color: #FFFFFF;
	transition: opacity 0.2s ease;
}

.p-contact .wpcf7 .p-contact__privacy-text a:hover {
	opacity: 0.6;
}

.p-contact .wpcf7 .p-contact__required {
	color: rgba(255, 255, 255, 0.5);
	margin-left: 2px;
}

.p-contact .wpcf7 .p-contact__submit {
	margin-top: 8px;
}

.p-contact .wpcf7 .wpcf7-not-valid-tip {
	color: #FF6B6B;
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 12px;
	margin-top: 4px;
	text-transform: none;
}

.p-contact .wpcf7 .wpcf7-response-output {
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.8);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	margin-top: 24px;
	padding: 12px 16px;
	text-transform: none;
}

.p-404 {
	background-color: #fff;
	padding-top: 160px;
}

.p-404__inner {
	padding-left: 50px;
}

.p-404__title {
	font-size: 25px;
	font-weight: 700;
	line-height: 1;
}

.p-404__text {
	font-size: 14px;
}

.p-404__link {
	text-decoration: none;
}

.l-footer--404 {
	background-color: #fff;
}

.p-abt-hero {
	background-color: #F2F6EE;
	padding: 100px 20px 48px;
}

.p-abt-hero__inner {
	margin: 0 auto;
}

.p-abt-hero__title {
	color: #1A1A1A;
	font-family: "Cormorant Garamond", serif;
	font-size: 44px;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1.1;
	margin-top: 16px;
}

.p-abt-profile {
	background-color: #F2F6EE;
	padding: 40px 20px;
}

.p-abt-profile__inner {
	margin: 0 auto;
}

.p-abt-profile__img-wrap {
	margin-bottom: 40px;
}

.p-abt-profile__img {
	aspect-ratio: 4/5;
	background-color: #E5E5E5;
	overflow: hidden;
	width: 100%;
}

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

.p-abt-profile__name {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 8px;
}

.p-abt-profile__name-en {
	color: #1A1A1A;
	font-family: "Cormorant Garamond", serif;
	font-size: 28px;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1.2;
	text-transform: capitalize;
}

.p-abt-profile__name-ja {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.2em;
}

.p-abt-profile__role {
	color: #1A1A1A;
	font-family: "DM Sans", sans-serif;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.15em;
	margin-bottom: 24px;
	text-transform: capitalize;
}

.p-abt-profile__bio {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2.1;
	text-transform: uppercase;
}

.p-abt-profile__bio span {
	text-transform: none;
}

.p-abt-section {
	background-color: #FFFFFF;
	padding: 40px 20px;
}

.p-abt-section--alt {
	background-color: #F2F6EE;
}

.p-abt-section__inner {
	margin: 0 auto;
}

.p-abt-section__head {
	margin-bottom: 32px;
}

.p-abt-section__num {
	color: #E5E5E5;
	display: block;
	font-family: "Cormorant Garamond", serif;
	font-size: 56px;
	font-style: italic;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 8px;
}

.p-abt-section__title {
	color: #1A1A1A;
	font-family: "Cormorant Garamond", serif;
	font-size: 20px;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.02em;
}

.p-abt-section__sub {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.15em;
	margin-top: 8px;
}

.p-abt-section__text {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2.2;
}

.p-abt-list {
	border-top: 1px solid #E5E5E5;
	list-style: none;
}

.p-abt-list__item {
	border-bottom: 1px solid #E5E5E5;
	padding: 24px 0;
}

.p-abt-list__label {
	color: #1A1A1A;
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.05em;
	margin-bottom: 8px;
}

.p-abt-list__text {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 2;
	text-transform: capitalize;
}

.p-abt-checks {
	border-top: 1px solid #E5E5E5;
	list-style: none;
}

.p-abt-checks__item {
	border-bottom: 1px solid #E5E5E5;
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.05em;
	padding: 18px 0 18px 24px;
	position: relative;
	text-transform: uppercase;
}

.p-abt-checks__item span {
	text-transform: lowercase;
}

.p-abt-checks__item::before {
	background-color: #1A1A1A;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
}

.p-abt-skills {
	background-color: #FFFFFF;
	padding: 40px 20px;
}

.p-abt-skills__inner {
	margin: 0 auto;
}

.p-abt-skills__head {
	margin-bottom: 32px;
}

.p-abt-skills__title {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.05em;
	margin-top: 12px;
}

.p-abt-skills__grid {
	border-top: 1px solid #E5E5E5;
	display: grid;
	gap: 32px;
	grid-template-columns: 1fr;
	padding-top: 32px;
}

.p-abt-skills__group-label {
	color: #1A1A1A;
	font-family: "DM Sans", sans-serif;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.2em;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.p-abt-skills__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
}

.p-abt-skills__tags li {
	border: 1px solid #E5E5E5;
	color: #1A1A1A;
	font-family: "DM Sans", sans-serif;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.08em;
	padding: 6px 14px;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.p-abt-skills__tags li span {
	text-transform: lowercase;
}

.p-abt-info {
	background-color: #F2F6EE;
	padding: 40px 20px;
}

.p-abt-info__inner {
	margin: 0 auto;
}

.p-abt-info__head {
	display: block;
	margin-bottom: 32px;
}

.p-abt-info__title {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.05em;
	margin-top: 12px;
}

.p-abt-info__table {
	border-top: 1px solid #E5E5E5;
}

.p-abt-info__row {
	border-bottom: 1px solid #E5E5E5;
	display: grid;
	gap: 16px;
	grid-template-columns: 80px 1fr;
	padding: 18px 0;
}

.p-abt-info__term {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.08em;
}

.p-abt-info__desc {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.8;
	text-transform: uppercase;
}

.p-abt-info__desc span {
	text-transform: lowercase;
}

.p-abt-cta {
	background-color: #1A1A1A;
	padding: 80px 20px;
	text-align: center;
}

.p-abt-cta__inner {
	margin: 0 auto;
}

.p-abt-cta__text {
	color: rgba(255, 255, 255, 0.6);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.1em;
	margin: 16px 0 40px;
}

.p-abt-cta__btn {
	display: flex;
	justify-content: center;
}

.p-abt-cta__link {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	color: #FFFFFF;
	display: inline-flex;
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	font-weight: 400;
	gap: 12px;
	letter-spacing: 0.1em;
	padding-bottom: 8px;
	text-decoration: none;
	text-transform: uppercase;
	transition: opacity 0.2s ease;
}

.p-abt-cta__link:hover {
	opacity: 0.5;
}

.p-abt-cta__link-arrow {
	background-color: #FFFFFF;
	display: inline-block;
	flex-shrink: 0;
	height: 1px;
	position: relative;
	width: 32px;
}

.p-abt-cta__link-arrow::after {
	border-right: 1px solid #FFFFFF;
	border-top: 1px solid #FFFFFF;
	content: "";
	height: 7px;
	position: absolute;
	right: 0;
	top: -3px;
	transform: rotate(45deg);
	width: 7px;
}

.p-cnt-hero {
	background-color: #F2F6EE;
	padding: 100px 20px 48px;
}

.p-cnt-hero__inner {
	margin: 0 auto;
}

.p-cnt-hero__content {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
}

.p-cnt-hero__title {
	color: #1A1A1A;
	font-family: "Cormorant Garamond", serif;
	font-size: 44px;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1.1;
	margin-top: 16px;
}

.p-cnt-hero__title em {
	text-transform: capitalize;
}

.p-cnt-hero__sub {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.8;
	margin-top: 20px;
	text-transform: none;
}

.p-srv-hero {
	background-color: #F2F6EE;
	padding: 100px 20px 48px;
}

.p-srv-hero__inner {
	margin: 0 auto;
}

.p-srv-hero__title {
	color: #1A1A1A;
	font-family: "Cormorant Garamond", serif;
	font-size: 44px;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1.1;
	margin-top: 16px;
}

.p-srv-section {
	background-color: #FFFFFF;
	padding: 40px 20px;
}

.p-srv-section--alt {
	background-color: #F2F6EE;
}

.p-srv-section__inner {
	margin: 0 auto;
}

.p-srv-section__head {
	margin-bottom: 32px;
}

.p-srv-section__num {
	color: #E5E5E5;
	display: block;
	font-family: "Cormorant Garamond", serif;
	font-size: 56px;
	font-style: italic;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 8px;
}

.p-srv-section__title {
	color: #1A1A1A;
	font-family: "Cormorant Garamond", serif;
	font-size: 20px;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.02em;
	text-transform: capitalize;
}

.p-srv-section__title span {
	text-transform: none;
}

.p-srv-section__sub {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.15em;
	margin-top: 8px;
}

.p-srv-section__sub span {
	text-transform: none;
}

.p-srv-section__lead {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2.2;
	margin-bottom: 32px;
}

.p-srv-list {
	border-top: 1px solid #E5E5E5;
	list-style: none;
}

.p-srv-list__item {
	border-bottom: 1px solid #E5E5E5;
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.05em;
	padding: 16px 0 16px 24px;
	position: relative;
}

.p-srv-list__item span {
	text-transform: none;
}

.p-srv-list__item::before {
	background-color: #1A1A1A;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
}

.p-srv-note {
	background-color: #FFFFFF;
	padding: 40px 20px;
}

.p-srv-note__inner {
	margin: 0 auto;
}

.p-srv-note__head {
	display: block;
	margin-bottom: 32px;
}

.p-srv-note__title {
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0.08em;
	margin-top: 12px;
}

.p-srv-note__list {
	border-top: 1px solid #E5E5E5;
	list-style: none;
}

.p-srv-note__item {
	border-bottom: 1px solid #E5E5E5;
	color: #1A1A1A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.05em;
	padding: 16px 0 16px 24px;
	position: relative;
}

.p-srv-note__item::before {
	color: #1A1A1A;
	content: "×";
	font-size: 11px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.p-srv-cta {
	background-color: #1A1A1A;
	padding: 80px 20px;
	text-align: center;
}

.p-srv-cta__inner {
	margin: 0 auto;
}

.p-srv-cta__text {
	color: rgba(255, 255, 255, 0.6);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.1em;
	margin: 16px 0 40px;
}

.p-srv-cta__btn {
	display: flex;
	justify-content: center;
}

.p-srv-cta__link {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	color: #FFFFFF;
	display: inline-flex;
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	font-weight: 400;
	gap: 12px;
	letter-spacing: 0.1em;
	padding-bottom: 8px;
	text-decoration: none;
	text-transform: uppercase;
	transition: opacity 0.2s ease;
}

.p-srv-cta__link-arrow {
	background-color: #FFFFFF;
	display: inline-block;
	flex-shrink: 0;
	height: 1px;
	position: relative;
	width: 32px;
}

.p-srv-cta__link-arrow::after {
	border-right: 1px solid #FFFFFF;
	border-top: 1px solid #FFFFFF;
	content: "";
	height: 7px;
	position: absolute;
	right: 0;
	top: -3px;
	transform: rotate(45deg);
	width: 7px;
}

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

@media (any-hover: hover) {

body.is-pc a {
	transition: color 0.25s ease;
}

body.is-pc a:hover {
	color: rgb(82.25, 82.25, 82.25);
}

body.is-pc .c-page-numbers:not(.current):hover {
	border-color: #5f5f5f;
	color: #5f5f5f;
}

/* dots のホバー */

body.is-pc .c-page-numbers--dots:hover {
	color: #5f5f5f;
}

}

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

.js-parallax-fv-bg {
	height: 600px;
}

.js-parallax-fv-bg.is-fixed {
	height: 600px;
}

.js-parallax-fv-bg.is-absolute {
	height: 600px;
}

.js-parallax-fv-placeholder.active {
	height: 600px;
	visibility: visible;
}

.l-footer__nav {
	gap: 24px;
}

.bread-top {
	margin-top: 0px;
}

.bread-inner {
	margin-inline: auto;
	max-width: 1110px;
}

.l-breadcrumb__item {
	font-size: 16px;
}

.l-breadcrumb__item a:nth-of-type(1) {
	margin-right: -5px;
}

.l-breadcrumb__item a:nth-of-type(2) {
	margin-right: -3px;
}

.p-fv__name-en {
	font-size: 80px;
}

.p-fv__tagline {
	font-size: 20px;
}

.p-about {
	padding: 25px 80px;
}

.p-about__inner {
	align-items: start;
	display: grid;
	gap: 0 100px;
	grid-template-columns: 5fr 4fr;
	grid-template-rows: auto 1fr;
	max-width: 1200px;
}

.p-about__label-wrap {
	grid-column: 1/2;
	grid-row: 1/2;
	margin-bottom: 48px;
}

.p-about__img-wrap {
	display: block;
	grid-column: 2/3;
	grid-row: 1/3;
	margin-bottom: 0;
}

.p-about__content {
	grid-column: 1/2;
	grid-row: 2/3;
}

.p-about__name {
	gap: 8px;
	margin-bottom: 32px;
}

.p-about__name-en {
	font-size: 40px;
}

.p-about__name-ja {
	font-size: 13px;
}

.p-about__bio {
	font-size: 15px;
	margin-bottom: 40px;
}

.p-about__skills {
	margin-bottom: 48px;
}

.p-about__skill {
	font-size: 12px;
}

.p-about__skill:hover {
	background-color: #1A1A1A;
	border-color: #1A1A1A;
	color: #FFFFFF;
}

.p-price__cards {
	gap: 32px;
	grid-template-columns: 1fr 1fr;
}

.p-blog-list__container {
	align-items: start;
	gap: 80px;
	grid-template-columns: 1fr 300px;
}

.p-blog-list__grid {
	gap: 40px 32px;
	grid-template-columns: repeat(2, 1fr);
}

.p-404__title {
	font-size: 50px;
}

.p-404__text {
	font-size: 18px;
}

.u-hidden-tab {
	display: none;
}

}

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

.l-header {
	height: 80px;
}

.l-header__inner {
	margin: 0 auto;
	max-width: 1440px;
	padding: 0 80px;
}

.l-header__logo-text {
	font-size: 22px;
}

.l-header__nav {
	align-items: center;
	display: flex;
	gap: 40px;
}

.l-footer {
	padding: 40px 80px;
}

.l-footer__inner {
	align-items: center;
	flex-direction: row;
	justify-content: space-between;
	max-width: 1200px;
}

.l-footer__copyright {
	margin-left: auto;
}

.c-page-top {
	bottom: 40px;
	right: 40px;
}

.c-heading {
	font-size: 40px;
	letter-spacing: 0.004em;
	line-height: 1.325;
}

.c-heading::after {
	height: 48px;
}

.c-heading--left {
	font-size: 40px;
	letter-spacing: 0.094em;
	line-height: 1.325;
}

.c-heading--left::after {
	bottom: -16px;
	height: 48px;
	left: 100%;
	transform: translateX(-100%);
	width: 186px;
	z-index: 0;
}

.c-pagination {
	margin-top: 39.16px;
}

.c-page-top {
	bottom: 40px;
	height: 48px;
	right: 40px;
	width: 48px;
}

.p-drawer-icon {
	display: none;
}

.p-drawer-content {
	display: none;
}

.p-fv {
	padding-bottom: 80px;
	padding-top: 80px;
}

.p-fv__inner {
	margin: 0 auto;
	max-width: 1440px;
	padding: 0 80px;
}

.p-fv__label {
	font-size: 35px;
	margin-bottom: 20px;
	text-transform: capitalize;
}

.p-fv__name-en {
	font-size: 120px;
}

.p-fv__bottom {
	align-items: flex-end;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 40px;
	padding-bottom: 8px;
}

.p-fv__tagline {
	font-size: 40px;
}

.p-fv__scroll {
	align-items: flex-start;
	flex-shrink: 0;
	gap: 8px;
}

.p-fv__scroll-line {
	animation-name: scroll-line;
	background-color: #1A1A1A;
	border: none;
	height: 64px;
	order: 0;
	transform: none;
	transform-origin: top;
	width: 1px;
}

.p-fv__scroll-text {
	order: 0;
	writing-mode: vertical-rl;
}

.p-service {
	padding: 100px 80px;
}

.p-service__inner {
	max-width: 1200px;
}

.p-service__heading {
	font-size: 24px;
	margin-bottom: 64px;
}

.p-service__item {
	align-items: center;
	gap: 64px;
	padding: 48px 0;
}

.p-service__num {
	font-size: 32px;
	width: 60px;
}

.p-service__item-body {
	align-items: center;
	display: flex;
	gap: 48px;
}

.p-service__item-title {
	flex-shrink: 0;
	font-size: 16px;
	margin-bottom: 0;
	width: 200px;
}

.p-service__btn {
	margin-top: 64px;
}

.p-service__item-text {
	flex: 1;
	font-size: 14px;
}

.p-works {
	padding: 140px 80px;
}

.p-works__inner {
	max-width: 1200px;
}

.p-works__heading {
	font-size: 32px;
	margin-bottom: 56px;
}

.p-works__grid {
	gap: 48px 40px;
	grid-template-columns: repeat(3, 1fr);
}

.p-works__card-img {
	margin-bottom: 18px;
}

.p-works__card-category {
	font-size: 11px;
	margin-bottom: 8px;
}

.p-works__card-title {
	font-size: 15px;
	margin-bottom: 14px;
}

.p-works__card-more {
	font-size: 12px;
}

.p-price {
	padding: 140px 80px;
}

.p-price__inner {
	max-width: 1200px;
}

.p-price__heading {
	font-size: 32px;
	margin-bottom: 24px;
}

.p-price__lead {
	font-size: 14px;
	margin-bottom: 56px;
}

.p-price__cards {
	gap: 32px;
	margin-bottom: 64px;
}

.p-price__card {
	padding: 48px 40px;
}

.p-price__card-head {
	margin-bottom: 32px;
}

.p-price__card-name {
	font-size: 16px;
}

.p-price__card-price {
	font-size: 56px;
	margin-bottom: 32px;
}

.p-price__card-list li {
	font-size: 14px;
}

.p-simulator {
	margin-top: 80px;
	padding-top: 80px;
}

.p-simulator__title {
	font-size: 24px;
	margin-bottom: 16px;
}

.p-simulator__desc {
	font-size: 14px;
}

.p-sim-steps {
	margin-bottom: 48px;
}

.p-sim-step__num {
	font-size: 24px;
}

.p-sim-step__label {
	font-size: 11px;
}

.p-sim-step__line {
	margin: 0 20px;
}

.p-sim-panel__note {
	font-size: 14px;
	margin-bottom: 32px;
}

.p-sim-radios {
	gap: 16px;
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: 48px;
}

.p-sim-radio__card {
	gap: 10px;
	padding: 28px 24px;
}

.p-sim-radio__name {
	font-size: 14px;
}

.p-sim-radio__desc {
	display: block;
	font-size: 12px;
}

.p-sim-radio__price em {
	font-size: 26px;
}

.p-sim-radio__price {
	font-size: 14px;
}

.p-sim-counters {
	margin-bottom: 48px;
}

.p-sim-counter {
	gap: 24px;
	padding: 20px 0;
}

.p-sim-counter__name {
	font-size: 14px;
}

.p-sim-nav-btn {
	font-size: 13px;
	padding: 12px 28px;
}

.p-sim-summary {
	margin-top: 64px;
	padding: 48px 40px;
}

.p-sim-summary__bd-item {
	font-size: 13px;
}

.p-sim-summary__label {
	font-size: 13px;
}

.p-sim-summary__row--total .p-sim-summary__label {
	font-size: 14px;
}

.p-sim-summary__val--total {
	font-size: 48px;
}

.p-sim-summary__val {
	font-size: 24px;
}

.p-sim-summary__note {
	font-size: 12px;
	margin-bottom: 32px;
}

.p-blog-list {
	padding: 80px 0 120px;
}

.p-blog-list__inner {
	padding: 0 40px;
}

.p-blog-list__header {
	margin-bottom: 56px;
}

.p-blog-list__en {
	font-size: 80px;
}

.p-blog-list__grid {
	gap: 48px 40px;
	grid-template-columns: repeat(3, 1fr);
}

.p-blog-list__card-title {
	font-size: 15px;
}

.p-news {
	padding: 140px 80px;
}

.p-news__inner {
	max-width: 1200px;
}

.p-news__heading {
	font-size: 32px;
	margin-bottom: 48px;
}

.p-news__link {
	align-items: center;
	flex-direction: row;
	gap: 32px;
	padding: 24px 0;
}

.p-news__date {
	font-size: 13px;
	min-width: 100px;
}

.p-news__title {
	font-size: 15px;
}

.p-news__btn {
	margin-top: 48px;
}

.p-single {
	padding: 60px 0 120px;
}

.p-single__inner {
	padding: 0 40px;
}

.p-single__container {
	align-items: start;
	gap: 80px;
	grid-template-columns: 1fr 300px;
}

.p-single__title {
	font-size: 28px;
}

.p-single__body h2 {
	font-size: 22px;
}

.p-contact {
	padding: 140px 80px;
}

.p-contact__inner {
	align-items: start;
	display: grid;
	gap: 0 80px;
	grid-template-columns: 1fr 1fr;
	max-width: 1200px;
}

.p-contact__left {
	margin-bottom: 0;
}

.p-contact__heading {
	font-size: clamp(40px, 5vw, 68px);
	margin-bottom: 16px;
	white-space: nowrap;
}

.p-contact__text {
	font-size: 15px;
}

.p-contact__form-wrap {
	margin: 0;
	max-width: none;
}

.p-contact .wpcf7 .p-contact__form-item {
	margin-bottom: 32px;
}

.p-abt-hero {
	padding: 160px 80px 80px;
}

.p-abt-hero__inner {
	max-width: 1200px;
}

.p-abt-hero__title {
	font-size: 80px;
	margin-top: 24px;
}

.p-abt-profile {
	padding: 100px 80px;
}

.p-abt-profile__inner {
	align-items: center;
	display: grid;
	gap: 80px;
	grid-template-columns: 1fr 1fr;
	max-width: 1200px;
}

.p-abt-profile__img-wrap {
	margin-bottom: 0;
}

.p-abt-profile__name-en {
	font-size: 40px;
}

.p-abt-profile__role {
	font-size: 12px;
	margin-bottom: 32px;
}

.p-abt-profile__bio {
	font-size: 15px;
}

.p-abt-section {
	padding: 100px 80px;
}

.p-abt-section__inner {
	align-items: start;
	display: grid;
	gap: 80px;
	grid-template-columns: 1fr 2fr;
	max-width: 1200px;
}

.p-abt-section__head {
	margin-bottom: 0;
}

.p-abt-section__num {
	font-size: 72px;
}

.p-abt-section__title {
	font-size: 24px;
}

.p-abt-section__text {
	font-size: 15px;
}

.p-abt-list__item {
	align-items: start;
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr 2fr;
	padding: 28px 0;
}

.p-abt-list__label {
	font-size: 15px;
	margin-bottom: 0;
}

.p-abt-list__text {
	font-size: 14px;
}

.p-abt-checks__item {
	font-size: 15px;
	padding: 20px 0 20px 24px;
}

.p-abt-skills {
	padding: 100px 80px;
}

.p-abt-skills__inner {
	max-width: 1200px;
}

.p-abt-skills__head {
	margin-bottom: 48px;
}

.p-abt-skills__title {
	font-size: 32px;
}

.p-abt-skills__grid {
	gap: 0;
	grid-template-columns: repeat(3, 1fr);
	padding-top: 40px;
}

.p-abt-skills__group {
	border-left: 1px solid #E5E5E5;
	padding: 0 48px;
}

.p-abt-skills__group:first-child {
	border-left: none;
	padding-left: 0;
}

.p-abt-skills__group-label {
	margin-bottom: 20px;
}

.p-abt-skills__tags li {
	font-size: 12px;
}

.p-abt-skills__tags li:hover {
	background-color: #1A1A1A;
	border-color: #1A1A1A;
	color: #FFFFFF;
}

.p-abt-info {
	padding: 100px 80px;
}

.p-abt-info__inner {
	max-width: 1200px;
}

.p-abt-info__head {
	margin-bottom: 48px;
}

.p-abt-info__title {
	font-size: 32px;
}

.p-abt-info__row {
	gap: 40px;
	grid-template-columns: 140px 1fr;
	padding: 20px 0;
}

.p-abt-info__term {
	font-size: 13px;
}

.p-abt-info__desc {
	font-size: 14px;
}

.p-abt-cta {
	padding: 120px 80px;
}

.p-abt-cta__inner {
	max-width: 1200px;
}

.p-abt-cta__text {
	font-size: 15px;
	margin: 20px 0 48px;
}

.p-cnt-hero {
	padding: 160px 80px 80px;
}

.p-cnt-hero__inner {
	max-width: 1200px;
}

.p-cnt-hero__title {
	font-size: 80px;
	margin-top: 24px;
}

.p-cnt-hero__sub {
	font-size: 14px;
	margin-top: 28px;
}

.p-srv-hero {
	padding: 160px 80px 80px;
}

.p-srv-hero__inner {
	max-width: 1200px;
}

.p-srv-hero__title {
	font-size: 80px;
	margin-top: 24px;
}

.p-srv-section {
	padding: 100px 80px;
}

.p-srv-section__inner {
	align-items: start;
	display: grid;
	gap: 80px;
	grid-template-columns: 1fr 2fr;
	max-width: 1200px;
}

.p-srv-section__head {
	margin-bottom: 0;
}

.p-srv-section__num {
	font-size: 72px;
}

.p-srv-section__title {
	font-size: 24px;
}

.p-srv-section__lead {
	font-size: 15px;
	margin-bottom: 40px;
}

.p-srv-list__item {
	font-size: 14px;
	padding: 18px 0 18px 24px;
}

.p-srv-note {
	padding: 100px 80px;
}

.p-srv-note__inner {
	max-width: 1200px;
}

.p-srv-note__head {
	margin-bottom: 48px;
}

.p-srv-note__title {
	font-size: 24px;
}

.p-srv-note__item {
	font-size: 14px;
	padding: 18px 0 18px 24px;
}

.p-srv-cta {
	padding: 120px 80px;
}

.p-srv-cta__inner {
	max-width: 1200px;
}

.p-srv-cta__text {
	font-size: 15px;
	margin: 20px 0 48px;
}

.p-srv-cta__link:hover {
	opacity: 0.5;
}

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

.u-hidden-sp {
	display: block;
}

}

@keyframes scroll-arrow {

0% {
	opacity: 0;
	transform: rotate(45deg) translate(-3px, -3px);
}

50% {
	opacity: 1;
}

100% {
	opacity: 0;
	transform: rotate(45deg) translate(3px, 3px);
}

}

@keyframes scroll-line {

0% {
	opacity: 0;
	transform: scaleY(0);
}

30% {
	opacity: 1;
}

100% {
	opacity: 0;
	transform: scaleY(1);
}

}

