:root {
	--font-family-base: "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--font-weight-base: 400;
	--lineheight-base: 1.5;
	--font-size-base: 1.2rem;
	--color-primary: #B46890;
}

* {
	box-sizing: border-box;
}

html,
body {
	overscroll-behavior: none;
	overscroll-behavior-y: none;
	overscroll-behavior-x: none;
}

html {
	font-size: 2.3255813953vw;
}

html.noscroll {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
	overflow-y: scroll;
	overflow-x: hidden;
}

body {
	background: url("../images/bg_main.jpg") repeat center/contain;
	color: #333;
	margin: 0;
	font-family: var(--font-family-base);
	font-weight: var(--font-weight-base);
	font-feature-settings: "palt" 1, "pkna" 1, "pwid" 1, "pkna" 1;
	font-size: var(--font-size-base);
	line-height: var(--lineheight-base);
	text-align: left;
	position: relative;
}

body::after {
	content: "";
	background: url("../images/mail_img_sp.jpg") no-repeat center/contain;
	height: 30.3rem;
	width: 43rem;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
}

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

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

b,
strong {
	font-weight: 700;
}

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

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

table {
	border-collapse: collapse;
}

th {
	font-weight: 400;
	text-align: inherit;
	text-align: -webkit-match-parent;
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

select {
	word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
	-webkit-appearance: button;
}

textarea {
	overflow: auto;
	resize: vertical;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto;
}

[type=search] {
	outline-offset: -2px;
	-webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

[hidden] {
	display: none !important;
}

.aligncenter {
	text-align: center;
}

.alignright {
	text-align: right;
}

.alignleft {
	text-align: left;
}

img.aligncenter {
	display: block;
	margin: auto;
}

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

img.alignleft {
	display: block;
	margin-right: auto;
}

.container {
	margin: auto;
	max-width: 123rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	width: 100%;
}

.btn-arrow {
	display: inline-flex;
	align-items: center;
	-moz-column-gap: 1.8rem;
	column-gap: 1.8rem;
}

.btn-arrow__icon {
	display: flex;
	align-items: center;
	margin-top: -1rem;
}

.btn-arrow__icon::before {
	content: "";
	background: url("../images/ico_arrow02.svg") no-repeat center/contain;
	height: 1.1rem;
	width: 5.2rem;
	margin-right: -2.9rem;
	position: relative;
	z-index: 2;
}

.btn-arrow__box {
	height: 5.1rem;
	width: 5.1rem;
	overflow: visible;
	position: relative;
	z-index: 1;
}

.btn-arrow__box::before {
	content: "";
	background: url("../images/ico_path.svg") no-repeat center/contain;
	transition: 0.3s ease;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.btn-arrow__box::after {
	content: "";
	transition: 0.3s ease;
	background: url("../images/ico_path_fill.webp") no-repeat center/contain;
	opacity: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0);
	height: 17.5rem;
	width: 17.5rem;
	z-index: -1;
}

.p-header__wrap {
	display: none;
}

.p-header__nav {
	display: none;
}

.p-header__nav a {
	color: #606060;
}

.p-header__nav a:hover {
	color: var(--color-primary);
}

.p-header__nav a path {
	transition: 0.3s ease;
}

.p-header .btn-menu {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: 0;
	cursor: pointer;
	outline: none;
	margin: 0;
	padding: 0;
}

.global-menu {
	opacity: 0;
	visibility: hidden;
	transition: 0.3s ease;
	color: #fff;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	padding: 13.6rem 4rem 4.4rem;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 105;
}

.global-menu.is-open {
	opacity: 1;
	visibility: visible;
}

.global-menu.is-open::after {
	transform: scale(6);
}

.global-menu::after {
	content: "";
	background-color: #B46890;
	position: fixed;
	z-index: -1;
	right: 0;
	top: -50vw;
	left: 50%;
	width: 100vw;
	height: 100vw;
	border-radius: 50%;
	transform: scale(0);
	transition: transform 0.5s ease-in 0s;
}

.global-menu__close {
	background: url("../images/ico_close.svg") no-repeat center/contain;
	cursor: pointer;
	height: 3.9rem;
	width: 3.9rem;
	position: absolute;
	right: 2.6rem;
	top: 2.6rem;
	z-index: 10;
}

.global-menu__nav {
	display: grid;
	row-gap: 5.6rem;
	margin-bottom: auto;
}

.global-menu__nav svg {
	height: 3rem;
	width: auto;
}

.global-menu__social {
	display: flex;
	-moz-column-gap: 3.1rem;
	column-gap: 3.1rem;
	margin-bottom: 7.1rem;
}

.global-menu__social img {
	filter: brightness(0) invert(1);
	height: 3rem;
	width: auto;
}

.global-menu .copyright {
	font-size: 1.2rem;
}

.p-footer {
	font-size: 0.8rem;
	margin-top: 15.5rem;
	padding-bottom: 5rem;
	text-align: center;
}

.p-footer .copyright {
	margin-top: 0.8rem;
}

.nospace::before,
.nospace::after {
	content: "";
	display: block flow;
	inline-size: 0;
	block-size: 1px;
}

.nospace::before {
	margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.nospace::after {
	margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.l-wrapper {
	position: relative;
	z-index: 10;
}

.l-side__logo {
	display: none;
}

.l-side__logo img {
	width: 4rem;
}

.l-main {
	position: relative;
	z-index: 1;
}

.p-mv {
	margin-bottom: 12.1rem;
}

.p-profile {
	margin-bottom: 16.2rem;
}

.p-profile__name {
	font-size: 2rem;
	font-weight: 300;
	letter-spacing: 0.1em;
	margin-bottom: 2.8rem;
}

.p-profile__name .furi {
	font-size: 1.4rem;
	margin-left: 1.5rem;
}

.p-profile__ttl {
	margin-bottom: 3.7rem;
}

.p-profile__txt {
	display: grid;
	row-gap: 1.4rem;
	font-weight: 300;
	line-height: 1.6667;
	margin-bottom: 2.9rem;
}

.p-profile__txt p::before,
.p-profile__txt p::after {
	content: "";
	display: block flow;
	inline-size: 0;
	block-size: 1px;
}

.p-profile__txt p::before {
	margin-block-end: calc((1 - 1.43) * 0.5em);
}

.p-profile__txt p::after {
	margin-block-start: calc((1 - 1.43) * 0.5em);
}

.p-profile__info {
	display: grid;
	row-gap: 1rem;
	font-weight: 300;
	line-height: 1.43;
	margin-bottom: 3.5rem;
}

.p-profile__info p::before,
.p-profile__info p::after {
	content: "";
	display: block flow;
	inline-size: 0;
	block-size: 1px;
}

.p-profile__info p::before {
	margin-block-end: calc((1 - 1.43) * 0.5em);
}

.p-profile__info p::after {
	margin-block-start: calc((1 - 1.43) * 0.5em);
}

.p-profile__social {
	display: flex;
	gap: 3.5rem;
}

.p-profile__social a {
	color: #666;
}

.p-profile__social a:hover {
	color: var(--color-primary);
}

.p-profile__social a path {
	transition: 0.3s ease;
}

.p-profile__social svg {
	display: block;
}

.p-contact {
	margin-bottom: 15.5rem;
}

.p-contact__ttl {
	margin-bottom: 4.2rem;
}

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

.p-company__logo {
	margin-bottom: 5rem;
}

.p-company__logo img {
	width: 25.1rem;
}

@media (min-width: 430px) {

html {
	font-size: 10px;
}

}

@media (min-width: 768px) {

:root {
	--font-size-base: 1.4rem;
}

body::after {
	background-image: url("../images/mail_img.jpg");
	height: 39.2708333333vw;
	width: 48.0208333333vw;
}

.btn-arrow {
	-moz-column-gap: 3rem;
	column-gap: 3rem;
}

.btn-arrow:hover .btn-arrow__box::before {
	transform: scale(1.1);
}

.btn-arrow:hover .btn-arrow__box::after {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.btn-arrow__icon::before {
	background-image: url("../images/ico_arrow01.svg");
	margin-right: -4.4rem;
	height: 1.6rem;
	width: 12.4rem;
}

.btn-arrow__box {
	height: 7.6rem;
	width: 7.6rem;
}

.p-header__wrap {
	display: flex;
	justify-content: space-between;
	padding: 5.4rem 4.4rem 6.7rem;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
}

.p-header__nav {
	display: flex;
	align-items: center;
	gap: 5.4rem;
	margin-left: auto;
}

.p-header .btn-menu {
	display: none;
}

.global-menu {
	display: none;
}

.p-footer {
	font-size: 1rem;
	margin-top: 8rem;
	padding-bottom: 7rem;
}

.p-footer .copyright {
	margin-top: 0.9rem;
}

.sp {
	display: none;
}

.l-wrapper {
	display: grid;
	align-items: flex-start;
	grid-template-columns: 46.77% 1fr;
	gap: 3.5rem;
}

.l-side {
	position: sticky;
	left: 0;
	top: 0;
}

.l-side__logo {
	display: block;
	margin-bottom: 4.5rem;
	padding-top: 3.5rem;
	padding-left: 4.4rem;
}

.l-side__logo img {
	width: auto;
}

.p-mv {
	margin-bottom: 13.1rem;
}

.p-mv__txt {
	margin-left: -12.03125vw;
	margin-top: 25.8333333333vw;
	width: 40.4166666667vw;
}

.p-profile {
	max-width: 56.7rem;
	margin-bottom: 14.5rem;
}

.p-profile__name {
	font-size: 3rem;
	margin-bottom: 3.8rem;
}

.p-profile__name .furi {
	font-size: 1.6rem;
	font-weight: 400;
	margin-left: 2rem;
}

.p-profile__ttl {
	margin-bottom: 6.3rem;
}

.p-profile__txt {
	row-gap: 2rem;
	line-height: 1.43;
	margin-bottom: 2.6rem;
}

.p-profile__social {
	gap: 3.9rem;
}

.p-contact {
	margin-bottom: 13.6rem;
}

.p-contact__ttl {
	margin-bottom: 6.6rem;
}

.p-company {
	max-width: 58.2rem;
	text-align: left;
}

.p-company__logo {
	margin-bottom: 3.9rem;
}

.p-company__logo img {
	width: 21.2rem;
}

.p-company__txt {
	line-height: 1.357;
}

}

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

.l-wrapper {
	padding-right: 3rem;
}

}

@media (min-width: 992px) {

.p-header__wrap {
	padding-right: 16.7rem;
}

.l-wrapper {
	padding-right: 2rem;
}

}

@media (max-width: 767px) {

.p-header {
	display: flex;
	justify-content: flex-end;
	padding: 2.5rem;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 100;
}

.pc {
	display: none;
}

.l-main {
	padding-inline: 5.8rem;
}

.p-mv__txt {
	margin: -2.7rem -5.8rem 0;
	padding-inline: 2rem;
}

.p-profile__ttl img {
	width: 10.8rem;
}

.p-profile__social svg {
	height: 2.5rem;
	width: auto;
}

.p-contact__ttl img {
	width: 13.4rem;
}

.p-company {
	margin-inline: -1.2rem;
}

}

