@charset "utf-8";

/* ------------------------------
	ResetCSS
------------------------------ */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-weight: 500;
	font-style: normal;
	vertical-align: baseline;
}

html {
	overflow-y: scroll;
}

body {
	line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}

input,
select {
	vertical-align: middle;
}

img {
	vertical-align: bottom;
	font-size: 0;
	line-height: 0;
	border: 0;
}

strong {
	font-weight: bold;
}

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

.clearfix::after {
	content: '';
	display: block;
	clear: both;
}



/* ------------------------------
	common
------------------------------ */
:root {
	/* color */
	--color-bg: #F8ECE2;
	--color-text: #7E7C6A;

	--color-wht: #FFFFFF;
	--color-crm: #FCF8F4;
	--color-blu: #AEDFFD;
	--color-beg: #F5ECE1;

}

html {
	font-size: 62.5%;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-style: normal;
	font-size: 1.6rem;
	-webkit-font-smoothing: antialiased;
	color: var(--color-text);
	background-color: var(--color-bg);
}

body * {
	letter-spacing: 0.04em;
}

a {
	text-decoration: none;
	outline: none;
	color: var(--color-text);
	transition: .3s;
}

a:hover {
	opacity: 0.6;
}

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

/* スクロール禁止 */
.is-scroll-prevent {
	overflow: hidden;
	height: 100%;
}



/* ------------------------------
	component
------------------------------ */



/* ------------------------------
	utility
------------------------------ */
/* PC/SP */
.u-hide--pc {
	display: none;
}

@media screen and (max-width:767px) {
	.u-hide--pc {
		display: block;
	}

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



/* ------------------------------
	header
------------------------------ */
.l-header {
	width: 100%;
	display: block;
}

.l-header-pc {
	width: 100%;
	height: 60px;
	background-color: rgba(255, 255, 255, 0.9);
	padding-inline: 50px;
	position: fixed;
	z-index: 1000;
	transform: translate(0, -100%);
	transition: transform .3s;
}

.l-header-pc.is-scrolled {
	transform: translate(0, 0);
}

.l-header-pc__inner {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.l-header-pc-title__link {
	display: block;
}

.l-header-pc-title__main {
	display: flex;
	align-items: center;
}

.l-header-pc-title__text {
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	line-height: calc(20/14);
}

.l-header-pc-title__logo {
	display: block;
	width: 110px;
	margin-left: 14px;
}

.l-header-pc-nav__list {
	display: flex;
	align-items: center;
	gap: 30px;
}

.l-header-pc-nav__link {
	font-size: 1.6rem;
	letter-spacing: 0;
}

.l-header-pc-nav__link::before {
	content: "";
	width: 5px;
	height: 10px;
	display: inline-block;
	background-image: url(../img/text_mark.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 10px;
	transform: translate(0,-1px);
}

.l-header-sp {
	display: none;
}

@media screen and (min-width: 768px) and (max-width: 899px) {
	.l-header-pc {
		padding-inline: 20px;
	}

	.l-header-pc-nav__list {
		gap: 20px;
	}
}

@media screen and (max-width:767px) {
	.l-header-pc {
		display: none;
	}

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

	.l-header-sp__toggle {
		width: 32px;
		height: 25px;
		display: block;
		position: absolute;
		top: 20px;
		right: 20px;
		z-index: 10;
		cursor: pointer;
	}

	.l-header-sp__toggle span {
		width: 100%;
		height: 1px;
		display: block;
		background-color: var(--color-text);
		position: absolute;
		left: 0;
		z-index: 2;
		transition: .3s;
	}

	.l-header-sp__toggle span:nth-child(1) {
		top: 0;
	}

	.l-header-sp__toggle span:nth-child(2) {
		top: 12px;
	}

	.l-header-sp__toggle span:nth-child(3) {
		top: 24px;
	}

	.l-header-sp__toggle.is-active span:nth-child(1) {
		top: 12px;
		transform: rotate(40deg);
	}

	.l-header-sp__toggle.is-active span:nth-child(2) {
		opacity: 0;
	}

	.l-header-sp__toggle.is-active span:nth-child(3) {
		top: 12px;
		transform: rotate(-40deg);
	}

	.l-header-sp__drawer {
		width: 100%;
		height: 100dvh;
		background-color: var(--color-bg);
		padding-top: 80px;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
	}

	.l-header-sp__drawer.is-active {
		opacity: 1;
		visibility: visible;
	}

	.l-header-sp-title {
		width: fit-content;
		margin-inline: auto;
	}

	.l-header-sp-title__link {
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.l-header-sp-title__text {
		font-size: 1.2rem;
	}

	.l-header-sp-title__logo {
		display: block;
		width: 118px;
		margin-top: 18px;
	}

	.l-header-sp-nav__list {
		width: fit-content;
		margin-inline: auto;
		display: flex;
		flex-direction: column;
		gap: 32px;
	}

	.l-header-sp-nav {
		margin-top: 50px;
	}

	.l-header-sp-nav__link {
		font-size: 1.6rem;
		letter-spacing: 0.1em;
	}

	.l-header-sp-nav__link::before {
		content: "";
		width: 8px;
		height: 16px;
		display: inline-block;
		background-image: url(../img/text_mark.svg);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: contain;
		margin-right: 15px;
		transform: translate(0, 2px);
	}

	.l-header-sp-info {
		text-align: center;
		margin-top: 70px;
	}

	.l-header-sp-info__heading {
		font-size: 1.6rem;
	}

	.l-header-sp-info__text {
		font-size: 1.4rem;
		line-height: calc(24/14);
		margin-top: 24px;
	}
}



/* ------------------------------
	main
------------------------------ */
.p-top {
	width: 100%;
	min-width: 1200px;
	overflow: hidden;
}

@media screen and (max-width:767px) {
	.p-top {
		min-width: auto;
	}
}

/* main visual */
.p-top-mv {
	width: 100%;
	position: relative;
	z-index: 1;
}

.p-top-mv::before {
	content: "";
	width: calc(50% + 300px);
	height: 571px;
	display: block;
	background-image: url(../img/mv_bg.png);
	background-position: top right;
	background-repeat: no-repeat;
	background-size: 2500px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.p-top-mv__inner {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

.p-top-mv-main {
	width: 110px;
	margin-top: 50px;
	margin-right: 90px;
}

.p-top-mv-title {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.p-top-mv-title__text {
	writing-mode: vertical-rl;
	font-size: 1.6rem;
	line-height: 1.5;
	letter-spacing: 0.15em;
}

.p-top-mv-title__logo {
	width: 86.62px;
	display: block;
	margin-top: 15px;
	transform: translate(-7px,0);
}

.p-top-mv-title__logo img {
	width: 100%;
}

.p-top-mv__list {
	margin-top: 38px;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}

.p-top-mv__link {
	writing-mode: vertical-rl;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
}

.p-top-mv__link::before {
	content: "";
	width: 5px;
	height: 10px;
	display: inline-block;
	background-image: url(../img/text_mark.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transform: translate(0,-1px);
	transform: rotate(90deg);
	margin-bottom: 5px;
}

.p-top-mv-slide {
	width: calc(50% + 408px);
	margin-top: 30px;
	/* padding-bottom: 20px; */
	position: relative;
}

.p-top-mv-slide::before {
	content: "";
	width: 800px;
	height: 360px;
	display: block;
	background-image: url(../img/mv_slide_wave_01.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}

.p-top-mv-slide::after {
	content: "";
	width: 800px;
	height: 450px;
	display: block;
	background-image: url(../img/mv_slide_wave_02.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 0;
	right: -160px;
	z-index: 3;
}

.p-top-mv-slide__item {
	width: 100%;
	height: 705px;
	border-radius: 355px 0 0 20px;
	overflow: hidden;
}

.p-top-mv-slide__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-top-mv-slide .swiper-pagination {
	text-align: left;
	top: auto;
	bottom: -20px;
	left: 0;
}

.p-top-mv-slide .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin: 0 10px 0 0 !important;
	background-color: transparent;
	border: 1px solid var(--color-text);
	border-radius: 0;
	opacity: 1;
	transition: background-color .3s;
}

.p-top-mv-slide .swiper-pagination-bullet-active {
	background-color: var(--color-text);
}

@media screen and (min-width: 768px) and (max-width: 1395px) {
	.p-top-mv-slide {
		width: calc(100% - 290px);
	}
}

@media screen and (max-width:767px) {
	.p-top-mv::before {
		width: 804px;
		height: 459px;
		background-image: url(../img/mv_bg_sp.png);
		background-position: top left;
		background-repeat: no-repeat;
		background-size: contain;
	}

	.p-top-mv__inner {
		display: block;
	}

	.p-top-mv-main {
		width: auto;
		margin-top: 0;
		padding-top: 20px;
		margin-right: 0;
	}

	.p-top-mv-title {
		flex-direction: row-reverse;
		align-items: flex-start;
		justify-content: flex-end;
	}

	.p-top-mv-title__text {
		font-size: 1.4rem;
	}

	.p-top-mv-title__logo {
		width: 66px;
		margin-top: 0;
		margin-left: 20px;
		margin-right: 15px;
		transform: translate(0,0);
	}

	.p-top-mv__list {
		display: none;
	}

	.p-top-mv-slide {
		width: calc(100% - 20px);
		margin-top: -50px;
		margin-left: auto;
		margin-right: 0;
	}

	.p-top-mv-slide::before {
		width: 326px;
		height: 147px;
		right: -80px;
	}

	.p-top-mv-slide::after {
		width: 326px;
		height: 184px;
		right: -145px;
	}

	.p-top-mv-slide__item {
		height: 470px;
		border-radius: 245px 0 0 10px;
	}

	.p-top-mv-slide .swiper-pagination {
		bottom: -18px;
	}

	.p-top-mv-slide .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
		margin: 0 8px 0 0 !important;
	}
}



/* about */
.p-top-about {
	width: 100%;
	margin-top: 105px;
	position: relative;
}

.p-top-about::before {
	content: "";
	width: calc(50% + 20px);
	height: 570px;
	display: block;
	background-image: url(../img/about_bg.png);
	background-position: top left;
	background-repeat: no-repeat;
	background-size: 2500px;
	position: absolute;
	top: -105px;
	right: 0;
	z-index: -1;
}

.p-top-about__inner {
	width: 100%;
	max-width: 1000px;
	margin-inline: auto;
}

.p-top-about-intro {
	width: 100%;
	height: 480px;
	position: relative;
}

.p-top-about-intro__title {
	width: 286.12px;
	padding-top: 10px;
	margin-left: 150px;
}

.p-top-about-intro__title img {
	width: 100%;
}

.p-top-about-intro-copy {
	width: 220px;
	height: 717px;
	position: absolute;
	top: 20px;
	right: 0;
}

.p-top-about-intro-copy__unit {
	position: relative;
}

.p-top-about-intro-copy__unit:nth-child(1) {
	position: absolute;
	top: 0;
	right: 0;
}

.p-top-about-intro-copy__unit:nth-child(2) {
	position: absolute;
	top: 130px;
	left: 0;
}

.p-top-about-intro-copy__text {
	width: 120px;
	padding-inline: 58px;
	writing-mode: vertical-rl;
	font-size: 2.8rem;
	letter-spacing: 0.4em;
	display: flex;
	align-items: center;
}

.p-top-about-intro-copy__bg {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, transparent 0%, #F5ECE1 50%, #AEDFFD);
	border-radius: 60px;
	mix-blend-mode: multiply;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.p-top-about-intro__img {
	width: calc(100px + (50vw - 50%));
	height: 480px;
	border-radius: 0 20px 300px 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: calc(50% - 50vw);
	z-index: 1;
}

.p-top-about-intro__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.p-top-about-intro__figure1 {
	width: 462.67px;
	height: 158.32px;
	position: absolute;
	top: 222px;
	left: 220px;
}

.p-top-about-intro__figure2 {
	width: 364px;
	height: 124.55px;
	position: absolute;
	top: 472px;
	right: -338px;
}

.p-top-about-main {
	width: 100%;
	position: relative;
}

.p-top-about-main__unit {
	width: 700px;
	background-color: var(--color-wht);
	border-radius: 200px 20px 200px 20px;
	margin-left: -100px;
	padding: 100px;
}

.p-top-about-main__heading {
	font-size: 2.4rem;
	letter-spacing: 0.1em;
}

.p-top-about-main__heading::before {
	content: "";
	width: 10px;
	height: 20px;
	display: inline-block;
	background-image: url(../img/text_mark.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 15px;
}

.p-top-about-main__text {
	font-size: 1.6rem;
	line-height: calc(32/16);
	margin-top: 36px;
}

.p-top-about-main__img1 {
	width: 800px;
	margin-top: -50px;
	margin-left: -315px;
}

.p-top-about-main__img2 {
	width: calc(290px + (50vw - 50%));
	height: 600px;
	margin-top: -550px;
	margin-left: auto;
	margin-right: calc(50% - 50vw);
	border-radius: 300px 0 0 20px;
	overflow: hidden;
}

.p-top-about-main__img2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-top-about-detail {
	width: 100%;
	margin-top: 150px;
	display: flex;
	justify-content: space-between;
}

.p-top-about-detail--rev {
	flex-direction: row-reverse;
}

.p-top-about-detail__img {
	width: 480px;
}

.p-top-about-detail__img--single {
	border-radius: 240px 240px 20px 20px;
	overflow: hidden;
}

.p-top-about-detail__img--multi {
	position: relative;
}

.p-top-about-detail__img--multi img {
	border-radius: 20px;
	position: absolute;
}

.p-top-about-detail__img--multi img:nth-child(1) {
	width: 480px;
	top: 0;
	right: -30px;
	z-index: 2;
}

.p-top-about-detail__img--multi img:nth-child(2) {
	width: 400px;
	top: 275px;
	right: -240px;
	z-index: 1;
}

.p-top-about-detail__img--multi img:nth-child(3) {
	width: 280px;
	bottom: 0;
	right: 70px;
	z-index: 1;
}

.p-top-about-detail__main {
	width: 450px;
	position: relative;
}

.p-top-about-detail__main--alt {
	margin-top: 100px;
}

.p-top-about-detail__main::before {
	content: "";
	width: 300px;
	height: 280px;
	display: block;
	background-image: url(../img/about_detail_bg.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 22px;
	right: -90px;
	z-index: -1;
}

.p-top-about-detail__main--alt::before {
	top: -50px;
	right: auto;
	left: -115px;
	transform: scale(-1,1) rotate(30deg);
}

.p-top-about-detail__copy {
	font-size: 2.4rem;
	letter-spacing: 0.1em;
	line-height: calc(40/24);
}

.p-top-about-detail__heading {
	font-size: 2rem;
	letter-spacing: 0.1em;
	margin-top: 50px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--color-text);
}

.p-top-about-detail__text {
	font-size: 1.6rem;
	line-height: calc(32/16);
	margin-top: 30px;
}

.p-top-about-detail__table {
	width: 100%;
	margin-top: 30px;
}

.p-top-about-detail__table caption {
	font-size: 1.6rem;
	text-align: left;
	padding-bottom: 15px;
}

.p-top-about-detail__table tr {
	border-bottom: 1px solid var(--color-text);
}

.p-top-about-detail__table tr:nth-child(1) {
	border-top: 1px solid var(--color-text);
}

.p-top-about-detail__table th {
	width: 130px;
	text-align: left;
	vertical-align: middle;
	font-size: 1.6rem;
	line-height: calc(24/16);
	padding-block: 12px;
	border-right: 1px solid var(--color-text);
}

.p-top-about-detail__table td {
	width: calc(100% - 130px);
	font-size: 1.6rem;
	line-height: calc(24/16);
	padding-block: 12px;
	padding-left: 20px;
}

.p-top-about-detail-btn {
	margin-top: 30px;
	display: flex;
	justify-content: flex-end;
}

.p-top-about-detail-btn__link {
	display: flex;
	align-items: center;
	font-size: 1.6rem;
}

.p-top-about-detail-btn__link::after {
	content: "";
	width: 20px;
	height: 20px;
	display: block;
	background-image: url(../img/about_detail_arrow.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-left: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
	.p-top-about-intro__img {
		width: 200px;
		left: -100px;
	}
}

@media screen and (max-width:767px) {
	.p-top-about {
		margin-top: 50px;
	}

	.p-top-about::before {
		width: calc(100% - 75px);
		height: 228px;
		background-size: 1000px;
		top: -50px;
	}

	.p-top-about-intro {
		height: 660px;
	}

	.p-top-about-intro__title {
		width: 193px;
		padding-top: 5px;
		margin-left: 170px;
	}

	.p-top-about-intro-copy {
		width: 150px;
		height: 536px;
		top: 120px;
		right: 40px;
	}

	.p-top-about-intro-copy__unit:nth-child(2) {
		top: 80px;
	}

	.p-top-about-intro-copy__text {
		width: 80px;
		padding-inline: 50px;
		font-size: 2rem;
		letter-spacing: 0.48em;
	}

	.p-top-about-intro__img {
		width: 155px;
		height: 240px;
		border-radius: 0 10px 120px 0;
		left: 0;
	}

	.p-top-about-intro__figure1 {
		width: 180px;
		height: 62px;
		top: 461px;
		left: auto;
		right: 205px;
	}

	.p-top-about-intro__figure2 {
		width: 200px;
		height: 69px;
		position: absolute;
		top: auto;
		bottom: 0;
		right: -70px;
	}

	.p-top-about-main {
		margin-top: 32px;
		padding-inline: 20px;
	}

	.p-top-about-main__unit {
		width: 100%;
		border-radius: 100px 10px 100px 10px;
		margin-left: 0;
		padding: 100px 25px;
	}

	.p-top-about-main__heading {
		font-size: 1.8rem;
	}

	.p-top-about-main__heading::before {
		transform: translate(0, 2.5px);
	}

	.p-top-about-main__text {
		font-size: 1.4rem;
		margin-top: 30px;
	}

	.p-top-about-main__img1 {
		width: 350px;
		margin-top: -48px;
		margin-left: -70px;
	}

	.p-top-about-main__img2 {
		width: 196px;
		height: 240px;
		margin-top: 32px;
		margin-right: -20px;
		border-radius: 120px 0 0 10px;
	}

	.p-top-about-detail {
		margin-top: 50px;
		padding-inline: 20px;
		display: block;
	}

	.p-top-about-detail--rev {
		margin-top: 80px;
	}

	.p-top-about-detail__img {
		width: 100%;
	}

	.p-top-about-detail__img--single {
		max-width: 480px;
		margin-inline: auto;
		border-radius: 240px 240px 10px 10px;
		overflow: hidden;
	}

	.p-top-about-detail__img--multi {
		/* max-width: 335px;
		height: 310px; */
		height: calc(100vw * (310/375));
		margin-inline: auto;
	}

	.p-top-about-detail__img--multi img {
		border-radius: 10px;
	}

	.p-top-about-detail__img--multi img:nth-child(1) {
		/* width: 280px; */
		width: calc(100vw * (280/375));
		top: 0;
		right: auto;
		left: 0;
		z-index: 1;
	}

	.p-top-about-detail__img--multi img:nth-child(2) {
		/* width: 200px;
		top: 120px;
		right: -55px; */
		width: calc(100vw * (200/375));
		top: calc(100vw * (120/375));
		right: calc(-100vw * (55/375));
		z-index: 2;
	}

	.p-top-about-detail__img--multi img:nth-child(3) {
		/* width: 140px; */
		width: calc(100vw * (140/375));
		bottom: 0;
		right: auto;
		left: 0;
	}

	.p-top-about-detail__main {
		width:100%;
		margin-top: 50px;
		padding-inline: 10px;
	}

	.p-top-about-detail__main--alt {
		margin-top: 50px;
	}

	.p-top-about-detail__main::before {
		width: 160px;
		height: 172px;
		top: 50px;
		right: -36px;
	}

	.p-top-about-detail__main--alt::before {
		top: -40px;
		left: -55px;
		transform: scale(1,1) rotate(0deg);
	}

	.p-top-about-detail__copy {
		font-size: 2rem;
		line-height: calc(36/20);
	}

	.p-top-about-detail__heading {
		font-size: 1.8rem;
		margin-top: 40px;
	}

	.p-top-about-detail__text {
		font-size: 1.4rem;
		margin-top: 25px;
	}

	.p-top-about-detail__table caption {
		font-size: 1.4rem;
	}

	.p-top-about-detail__table tr {
		border-bottom: 1px solid var(--color-text);
	}

	.p-top-about-detail__table tr:nth-child(1) {
		border-top: 1px solid var(--color-text);
	}

	.p-top-about-detail__table th {
		width: 110px;
		font-size: 1.4rem;
		line-height: calc(22/14);
	}

	.p-top-about-detail__table td {
		width: calc(100% - 110px);
		font-size: 1.4rem;
		line-height: calc(22/14);
		padding-left: 30px;
	}

	.p-top-about-detail-btn__link {
		font-size: 1.4rem;
	}
}



/* greeting */
.p-top-greeting {
	width: 100%;
	margin-top: 100px;
	padding-top: 310px;
	background-color: var(--color-crm);
	position: relative;
	z-index: 1;
}

.p-top-greeting::before {
	content: "";
	width: 100%;
	height: 300px;
	display: block;
	background-image: url(../img/greeting_bg_top.png);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.p-top-greeting::after {
	content: "";
	width: 100%;
	height: 300px;
	display: block;
	background-image: url(../img/greeting_bg_bottom.png);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}

.p-top-greeting__inner {
	width: 100%;
	max-width: 1000px;
	margin-inline: auto;
	position: relative;
}

.p-top-greeting-copy {
	width: 220px;
	height: 717px;
	position: absolute;
	top: -260px;
	left: 0;
}

.p-top-greeting-copy__unit {
	position: relative;
}

.p-top-greeting-copy__unit:nth-child(1) {
	position: absolute;
	top: 0;
	right: 0;
}

.p-top-greeting-copy__unit:nth-child(2) {
	position: absolute;
	top: 130px;
	left: 0;
}

.p-top-greeting-copy__text {
	width: 120px;
	padding-inline: 58px;
	writing-mode: vertical-rl;
	font-size: 2.8rem;
	letter-spacing: 0.4em;
	display: flex;
	align-items: center;
}

.p-top-greeting-copy__bg {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, transparent 0%, #F5ECE1 50%, #AEDFFD);
	border-radius: 60px;
	mix-blend-mode: multiply;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.p-top-greeting-main {
	width: 700px;
	background-color: var(--color-wht);
	border-radius: 200px 20px 200px 20px;
	margin-left: auto;
	margin-right: -100px;
	padding: 100px;
	position: relative;
}

.p-top-greeting-main::before {
	content: "";
	width: 300px;
	height: 230px;
	display: block;
	background-image: url(../img/greeting_main_figure.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: -118px;
	right: 0;
}

.p-top-greeting-main__heading {
	font-size: 2.4rem;
	letter-spacing: 0.1em;
}

.p-top-greeting-main__heading::before {
	content: "";
	width: 10px;
	height: 20px;
	display: inline-block;
	background-image: url(../img/text_mark.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 15px;
}

.p-top-greeting-main__lead {
	margin-top: 30px;
}

.p-top-greeting-main__lead span {
	display: block;
	font-size: 2.4rem;
	letter-spacing: 0;
	line-height: calc(36/24);
}

.p-top-greeting-main__lead span:nth-child(2) {
	margin-top: 10px;
	text-align: right;
}

.p-top-greeting-main__text {
	font-size: 1.6rem;
	line-height: calc(32/16);
	margin-top: 36px;
}

.p-top-greeting-main__sign {
	text-align: right;
	font-size: 1.8rem;
	letter-spacing: 0;
	margin-top: 35px;
}

.p-top-greeting-main__img {
	width: 491px;
	position: absolute;
	bottom: -185px;
	left: -400px;
}

.p-top-greeting-figure {
	width: 100%;
	height: 530px;
	margin-top: 100px;
	position: relative;
}

.p-top-greeting-figure__img1 {
	width: 240px;
	border-radius: 20px;
	overflow: hidden;
	position: absolute;
	top: 290px;
	left: -250px;
	z-index: 2;
}

.p-top-greeting-figure__img2 {
	width: 380px;
	border-radius: 20px;
	overflow: hidden;
	position: absolute;
	top: 50px;
	left: -150px;
	z-index: 1;
}

.p-top-greeting-figure__img3 {
	width: 240px;
	border-radius: 20px;
	overflow: hidden;
	position: absolute;
	top: 0px;
	left: 300px;
	z-index: 1;
}

.p-top-greeting-figure__img4 {
	width: 200px;
	border-radius: 20px;
	overflow: hidden;
	position: absolute;
	top: 175px;
	left: 480px;
	z-index: 2;
}

.p-top-greeting-figure__img5 {
	width: 200px;
	border-radius: 20px;
	overflow: hidden;
	position: absolute;
	top: 195px;
	left: 750px;
	z-index: 2;
}

.p-top-greeting-figure__img6 {
	width: 340px;
	border-radius: 20px;
	overflow: hidden;
	position: absolute;
	top: 85px;
	left: 910px;
	z-index: 1;
}

@media screen and (max-width:767px) {
	.p-top-greeting {
		margin-top: 50px;
		padding-top: 540px;
		padding-bottom: 0px;
		padding-inline: 20px;
	}

	.p-top-greeting::before {
		height: 80px;
	}

	.p-top-greeting::after {
		height: 80px;
	}

	.p-top-greeting-copy {
		width: 150px;
		height: 536px;
		top: -540px;
		left: 40px;
	}

	.p-top-greeting-copy__unit:nth-child(2) {
		top: 80px;
	}

	.p-top-greeting-copy__text {
		width: 80px;
		padding-inline: 50px;
		font-size: 2rem;
		letter-spacing: 0.48em;
	}

	.p-top-greeting-main {
		width:100%;
		border-radius: 100px 10px 100px 10px;
		margin-left: 0;
		margin-right: 0;
		padding: 100px 25px 310px 25px;
	}

	.p-top-greeting-main::before {
		width: 209px;
		height: 160px;
		background-image: url(../img/greeting_main_figure_sp.svg);
		top: -100px;
		right: -20px;
	}

	.p-top-greeting-main__heading {
		font-size: 1.8rem;
	}

	.p-top-greeting-main__heading::before {
		transform: translate(0, 2.5px);
	}

	.p-top-greeting-main__lead {
		margin-top: 30px;
	}

	.p-top-greeting-main__lead span {
		font-size: 1.8rem;
		line-height: calc(28/16);
	}

	.p-top-greeting-main__lead span:nth-child(2) {
		margin-top: 0;
	}

	.p-top-greeting-main__text {
		font-size: 1.4rem;
		margin-top: 25px;
	}

	.p-top-greeting-main__sign {
		font-size: 1.6rem;
		margin-top: 30px;
	}

	.p-top-greeting-main__img {
		width: 335px;
		bottom: -195px;
		left: 50%;
		transform: translate(-50%, 0);
	}

	.p-top-greeting-figure {
		/* width: 335px;
		height: 455px; */
		width: 100%;
		height: calc(100vw * (455/375));
		margin-top: 120px;
		margin-inline: auto;
	}

	.p-top-greeting-figure__img1 {
		/* width: 120px;
		top: 85px;
		left: 110px; */
		width: calc(100vw * (120/375));
		border-radius: 10px;
		top: calc(100vw * (85/375));
		left: calc(100vw * (110/375));
		z-index: 2;
	}

	.p-top-greeting-figure__img2 {
		/* width: 180px;
		top: 0px;
		left: 195px; */
		width: calc(100vw * (180/375));
		border-radius: 10px;
		top: 0;
		left: calc(100vw * (195/375));
		z-index: 1;
	}

	.p-top-greeting-figure__img3 {
		/* width: 100px;
		top: 270px;
		left: 20px; */
		width: calc(100vw * (100/375));
		border-radius: 10px;
		top: calc(100vw * (270/375));
		left: calc(100vw * (20/375));
	}

	.p-top-greeting-figure__img4 {
		/* width: 120px;
		top: 60px;
		left: -40px; */
		width: calc(100vw * (120/375));
		border-radius: 10px;
		top: calc(100vw * (60/375));
		left: calc(-100vw * (40/375));
	}

	.p-top-greeting-figure__img5 {
		/* width: 100px;
		top: 355px;
		left: 105px; */
		width: calc(100vw * (100/375));
		border-radius: 10px;
		top: calc(100vw * (355/375));
		left: calc(100vw * (105/375));
	}

	.p-top-greeting-figure__img6 {
		/* width: 180px;
		top: 203px;
		left: 155px; */
		width: calc(100vw * (180/375));
		border-radius: 10px;
		top: calc(100vw * (203/375));
		left: calc(100vw * (155/375));
	}
}



/* contact */
.p-top-contact {
	width: 100%;
	margin-top: 45px;
	padding-top: 30px;
	background-color: var(--color-wht);
	position: relative;
}

.p-top-contact::before {
	content: "";
	width: 100%;
	height: 45px;
	display: block;
	background-color: var(--color-wht);
	position: absolute;
	top: -45px;
	left: 0;
}

.p-top-contact__inner {
	width: 100%;
	max-width: 1000px;
	background-color: var(--color-crm);
	border-radius: 20px;
	margin-inline: auto;
	padding: 100px;
	display: flex;
	justify-content: space-between;
}

.p-top-contact-main {
	width: 250px;
}

.p-top-contact-main__heading {
	font-size: 2.4rem;
	letter-spacing: 0.1em;
}

.p-top-contact-main__heading::before {
	content: "";
	width: 10px;
	height: 20px;
	display: inline-block;
	background-image: url(../img/text_mark.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 15px;
}

.p-top-contact-main__text {
	font-size: 1.6rem;
	line-height: calc(32/16);
	margin-top: 36px;
}

.p-top-contact-banner {
	width: 500px;
}

.p-top-contact-banner__text {
	text-align: center;
	font-size: 1.6rem;
	margin-top: 12px;
}

@media screen and (max-width:767px) {
	.p-top-contact {
		margin-top: 70px;
		padding-inline: 20px;
	}

	.p-top-contact::before {
		height: 70px;
		top: -70px;
	}

	.p-top-contact__inner {
		border-radius: 10px;
		padding: 50px 25px;
		display: block;
	}

	.p-top-contact-main {
		width: 100%;
	}

	.p-top-contact-main__heading {
		font-size: 1.8rem;
	}

	.p-top-contact-main__heading::before {
		transform: translate(0, 2.5px);
	}

	.p-top-contact-main__text {
		font-size: 1.4rem;
		margin-top: 30px;
	}

	.p-top-contact-banner {
		width: 285px;
		margin-top: 30px;
		margin-inline: auto;
	}

	.p-top-contact-banner__text {
		font-size: 1.4rem;
		line-height: calc(28/14);
		margin-top: 12px;
	}
}



/* access */
.p-top-access {
	width: 100%;
	margin-top: 120px;
	padding-top: 30px;
	padding-bottom: 240px;
	padding-inline: 20px;
	background-color: var(--color-wht);
	background-image: url(../img/access_bg.png);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 100% 600px;
	position: relative;
	z-index: 1;
}

.p-top-access::before {
	content: "";
	width: 100%;
	height: 120px;
	display: block;
	background-color: var(--color-wht);
	position: absolute;
	top: -120px;
	left: 0;
}

.p-top-access__inner {
	width: 100%;
	max-width: 1360px;
	margin-inline: auto;
}

.p-top-access__heading {
	font-size: 2.4rem;
	letter-spacing: 0.1em;
}

.p-top-access__heading::before {
	content: "";
	width: 10px;
	height: 20px;
	display: inline-block;
	background-image: url(../img/text_mark.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-right: 15px;
}

.p-top-access__map {
	width: 100%;
	height: 500px;
	margin-top: 30px;
	border-radius: 20px;
	overflow: hidden;
}

.p-top-access__map iframe {
	width: 100%;
	height: 100%;
}

.p-top-access__text {
	text-align: center;
	font-size: 1.6rem;
	line-height: calc(32/16);
	margin-top: 25px;
}

@media screen and (max-width:767px) {
	.p-top-access {
		margin-top: 70px;
		padding-bottom: 180px;
		background-size: 100% 80px;
	}

	.p-top-access::before {
		width: 100%;
		height: 70px;
		top: -70px;
	}

	.p-top-access__heading {
		font-size: 1.8rem;
	}

	.p-top-access__heading::before {
		transform: translate(0, 2.5px);
	}

	.p-top-access__map {
		height: 400px;
		border-radius: 10px;
	}

	.p-top-access__text {
		font-size: 1.4rem;
		margin-top: 25px;
	}
}



/* ------------------------------
	footer
------------------------------ */
.l-footer {
	width: 100%;
	margin-top: -90px;
	padding-bottom: 100px;
	position: relative;
	z-index: 2;
}

.l-footer__inner {
	width: 100%;
	max-width: 1000px;
	margin-inline: auto;
}

.l-footer-title__main {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.l-footer-title__text {
	font-size: 1.4rem;
}

.l-footer-title__logo {
	display: block;
	width: 136px;
	margin-top: 15px;
}

.l-footer__text {
	text-align: center;
	font-size: 1.6rem;
	line-height: calc(32/16);
	margin-top: 20px;
}

.l-footer__copyright {
	text-align: center;
	font-size: 1rem;
	margin-top: 25px;
}

@media screen and (max-width:767px) {
	.l-footer {
		margin-top: 20px;
		padding-bottom: 80px;
	}

	.l-footer-title__main {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.l-footer-title__text {
		font-size: 1.2rem;
	}

	.l-footer-title__logo {
		width: 118px;
		margin-top: 15px;
	}

	.l-footer__text {
		font-size: 1.4rem;
		line-height: calc(24/14);
	}
}