@charset "UTF-8";
@font-face {
	font-family: sans-serif;
}
/* 全体にかけるもの */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
	font-size: 16px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 200;
	color: #F5F6F4;
}
@media screen and (max-width: 960px) {
	* {
		font-size: 14px;
	}
}
html {
	background: #0D0E0C;
}
ul {
	list-style: none;
}

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

img {
	width: 100%;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
}

address {
	font-style: inherit;
}

/* 共通　 */
.PCblock {
	/* PCでは表示 */
	display: block;
}
@media screen and (max-width: 1295px) {
	.PCblock {
		/* TB以降では非表示 */
		display: none;
	}
}

.PC-block {
	display: block;
}
@media screen and (max-width: 560px) {
	.PC-block {
		display: none;
	}
}

.MB-block {
	/* MBでは表示 */
	display: none;
}
@media screen and (max-width: 560px) {
	.MB-block {
		/* PCでは非表示 */
		display: block;
	}
}

.SP_none {
	display: block;
}
@media screen and (max-width: 560px) {
	.SP_none {
		display: none;
	}
}

.mx {
	margin-left: auto;
	margin-right: auto;
	max-width: 1295px;
}
@media screen and (max-width: 1295px) {
	.mx {
		max-width: 640px;
	}
}
@media screen and (max-width: 640px) {
	.mx {
		max-width: 320px;
	}
}

.center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.white {
	color: #F5F6F4;
}

.headerBtn {
	text-align: center;
	display: flex;
	align-items: center;
	margin-right: 64px;
}
.headerBtn a {
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 1.6px;
	width: 180px;
	height: 39px;
	border-radius: 20px;
	line-height: 1.5;
	font-weight: 400;
}
.headerBtn a:hover {
	background: linear-gradient(to bottom, #F5F6F4, #CBCBCB);
}
@media screen and (max-width: 1295px) {
	.headerBtn {
		display: none;
	}
}

.Btn {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.Btn a {
	position: relative;
	background: linear-gradient(to bottom, #F5F6F4, #CBCBCB);
	border-radius: 25px;
	transition: all 0.2s;
	border: none;
	width: 280px;
	height: 51px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 1.8px;
	line-height: 1.4444444444;
}
.Btn a:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.Btn a:active {
	transform: translateY(-1px);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.Btn a::after {
	content: "";
	display: inline-block;
	height: 100%;
	width: 100%;
	border-radius: 100px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: all 0.7s;
}
.Btn a::after {
	background-color: #fff;
}
.Btn a:hover::after {
	transform: scaleX(1.4) scaleY(1.6);
	opacity: 0;
}
@media screen and (max-width: 1295px) {
	.Btn a {
		width: 180px;
		height: 40px;
		font-size: 14px;
	}
}
.Btn.businessBtn {
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
}
@media screen and (max-width: 560px) {
	.Btn.businessBtn {
		bottom: 32px;
	}
}
.Btn.MB-block {
	display: none;
}
@media screen and (max-width: 560px) {
	.Btn.MB-block {
		/* PCでは非表示 */
		display: flex;
	}
}

.section--ttl {
	padding: 0 0 50px 24px;
}
.section--ttl span {
	font-size: 14px;
	padding-bottom: 10px;
	color: #F5F6F4;
	position: relative;
	font-family: "segou", sans-serif;
	letter-spacing: 5.6px;
	line-height: 1.2142857143;
}
.section--ttl span::before {
	content: "";
	position: absolute;
	top: -4px;
	left: -22px;
	width: 11px;
	height: 22px;
	background-image: url("../image/section-subttl-logo.webp");
	background-size: cover;
	background-position: center;
}
@media screen and (max-width: 1295px) {
	.section--ttl span::before {
		width: 8px;
		height: 16px;
		top: -2px;
		left: -18px;
	}
}
@media screen and (max-width: 560px) {
	.section--ttl span::before {
		width: 7px;
		height: 14px;
		left: -15px;
	}
}
@media screen and (max-width: 1295px) {
	.section--ttl span {
		font-size: 12px;
		padding-bottom: 6px;
	}
}
@media screen and (max-width: 832px) {
	.section--ttl span {
		font-size: 10px;
		letter-spacing: 2px;
		line-height: 1.2;
	}
}
.section--ttl h2 {
	font-size: 26px;
	letter-spacing: 10.4px;
	line-height: 1.4230769231;
	color: #F5F6F4;
}
@media screen and (max-width: 1295px) {
	.section--ttl h2 {
		font-size: 20px;
	}
}
@media screen and (max-width: 832px) {
	.section--ttl h2 {
		font-size: 16px;
		letter-spacing: 3.2px;
		line-height: 1.5;
	}
}
@media screen and (max-width: 560px) {
	.section--ttl h2 {
		transform: translateX(-18px);
	}
}
@media screen and (max-width: 1295px) {
	.section--ttl {
		padding: 0 0 24px 36px;
	}
}
@media screen and (max-width: 832px) {
	.section--ttl {
		padding: 0 0 24px 24px;
	}
}

.content__block {
	border: 0.5px solid #F5F6F4;
	border: 1px solid #F5F6F4;
	padding: 20px;
}

.content {
	display: flex;
	justify-content: center;
	align-items: center;
}
.content .content__block {
	border: 0.5px solid #F5F6F4;
	border: 1px solid #F5F6F4;
}
.content .content__block--subttl p {
	font-size: 26px;
	letter-spacing: 10.4px;
	line-height: 1.4230769231;
	color: #F5F6F4;
}
@media screen and (max-width: 1295px) {
	.content .content__block--subttl p {
		font-size: 20px;
		letter-spacing: 6.4px;
	}
}
@media screen and (max-width: 832px) {
	.content .content__block--subttl p {
		letter-spacing: 3.2px;
	}
}
@media screen and (max-width: 560px) {
	.content .content__block--subttl p {
		letter-spacing: 0;
		padding-right: 30px;
	}
}
.content .content__block--subttl p.subCsrText {
	padding-right: 0;
}
.content .content__block--subttl p:nth-of-type(2) {
	text-align: right;
}
@media screen and (max-width: 832px) {
	.content .content__block--subttl p:nth-of-type(2) {
		text-align: left;
	}
}
.content .content__block--txt p {
	letter-spacing: 1.6px;
	line-height: 1.5;
	color: #F5F6F4;
}
@media screen and (max-width: 1295px) {
	.content .content__block--txt p {
		font-size: 12px;
		padding: 0 16px;
	}
}
@media screen and (max-width: 832px) {
	.content .content__block--txt p {
		font-size: 14px;
		padding-bottom: 12px;
	}
}
@media screen and (max-width: 560px) {
	.content .content__block--txt p {
		padding: 0 0px 18px;
		letter-spacing: 1.4px;
		line-height: 1.7142857143;
	}
}
.content .content__block--txt p.telTxt {
	letter-spacing: 1.28px;
}

.nav--whiteBorder {
	position: relative;
}
.nav--whiteBorder::after {
	content: "";
	width: 22px;
	height: 10px;
	background-image: url("../image/arrow-under.webp");
	background-size: cover;
	background-position: center;
	position: absolute;
	bottom: -16px;
	left: 50%;
	transform: translateX(-50%);
}
@media screen and (max-width: 560px) {
	.nav--whiteBorder::after {
		width: 16px;
		height: 6px;
	}
}
.nav--whiteBorder a {
	color: #F5F6F4;
	width: 200px;
	display: block;
	text-align: center;
	border-bottom: 2px solid #F5F6F4;
	padding-bottom: 5px;
	letter-spacing: 1.28px;
	line-height: 1.5;
	font-weight: 400;
}
@media screen and (max-width: 1295px) {
	.nav--whiteBorder a {
		font-size: 14px;
		width: 180px;
	}
}
@media screen and (max-width: 560px) {
	.nav--whiteBorder a {
		width: 140px;
		font-size: 12px;
		letter-spacing: 0.96px;
		line-height: 1.4166666667;
		white-space: nowrap;
	}
}

.subHead {
	display: flex;
	align-items: center;
	position: absolute;
	z-index: 3;
}

.subHead__title {
	background-color: #0D0E0C;
	width: 50vw;
	display: flex;
	align-items: center;
	height: 8.125vw;
	gap: 20px;
	padding-left: 60px;
	position: relative;
}
@media screen and (max-width: 832px) {
	.subHead__title {
		padding-left: 24px;
	}
}
@media screen and (max-width: 560px) {
	.subHead__title {
		width: 74.1333333333vw;
		height: 32.8vw;
		gap: 10px;
	}
}

.subHead__title--logo {
	width: 16px;
	height: 30px;
}
@media screen and (max-width: 832px) {
	.subHead__title--logo {
		width: 12px;
		height: 25px;
	}
}
@media screen and (max-width: 560px) {
	.subHead__title--logo {
		width: 14px;
		height: 26px;
		transform: translateY(20px);
	}
}

.subHead__title--name {
	color: #F5F6F4;
	font-size: 26px;
	letter-spacing: 8.32px;
	line-height: 1.4230769231;
}
@media screen and (max-width: 832px) {
	.subHead__title--name {
		font-size: 16px;
	}
}
@media screen and (max-width: 560px) {
	.subHead__title--name {
		font-size: 20px;
		letter-spacing: 6.4px;
		transform: translateY(20px);
	}
}

.subHead-shadow {
	width: 50vw;
	height: 8.125vw;
}
@media screen and (max-width: 560px) {
	.subHead-shadow {
		width: 25.8666666667vw;
		height: 32.8vw;
	}
}
.subHead-shadow img {
	-o-object-fit: cover;
	object-fit: cover;
	height: 100%;
}

.subFV__content--heading {
	color: #F5F6F4;
	font-size: 26px;
	letter-spacing: 10.4px;
	line-height: 1.5416666667;
	padding-bottom: 50px;
}
@media screen and (max-width: 1295px) {
	.subFV__content--heading {
		padding-bottom: 24px;
	}
}
@media screen and (max-width: 560px) {
	.subFV__content--heading {
		display: none;
	}
}

.subFV__content--ttl {
	padding-bottom: 20px;
}
@media screen and (max-width: 1295px) {
	.subFV__content--ttl {
		width: calc(50vw - 40px);
	}
}
@media screen and (max-width: 832px) {
	.subFV__content--ttl {
		width: 540px;
	}
}
@media screen and (max-width: 560px) {
	.subFV__content--ttl {
		width: 100%;
	}
}
.subFV__content--ttl p {
	color: #F5F6F4;
	font-size: 26px;
	letter-spacing: 10.4px;
	line-height: 1.5416666667;
	padding-bottom: 20px;
}
@media screen and (max-width: 1295px) {
	.subFV__content--ttl p {
		letter-spacing: 8.2px;
		font-size: 20px;
		padding-bottom: 8px;
	}
}
@media screen and (max-width: 560px) {
	.subFV__content--ttl p {
		letter-spacing: 3.2px;
		line-height: 1.45;
		white-space: nowrap;
		padding-bottom: 0;
	}
}
.subFV__content--ttl p:nth-of-type(2) {
	text-align: right;
	font-weight: 300;
}
@media screen and (max-width: 560px) {
	.subFV__content--ttl p:nth-of-type(2) {
		text-align: left;
	}
}

.sub__content--txt {
	color: #F5F6F4;
	letter-spacing: 1.6px;
	line-height: 1.75;
}

.subBigName--wrap {
	position: absolute;
	width: 100vw;
	overflow: hidden;
}
.subBigName--wrap::after {
	content: "";
	width: 40.5vw;
	height: 242px;
	background: linear-gradient(to right, rgba(13, 14, 12, 0), #0D0E0C);
	position: absolute;
	top: 0;
	right: 0;
}

.subBigName {
	font-size: 154px;
	letter-spacing: 61.6px;
	line-height: 1.2012987013;
	font-family: "segou", sans-serif;
	color: #0D0E0C;
	-webkit-text-stroke: 0.5px #F5F6F4;
	text-stroke: 0.5px #F5F6F4;
	opacity: 0.3;
	white-space: nowrap;
}
@media screen and (max-width: 560px) {
	.subBigName {
		font-size: 32px;
		letter-spacing: 12.8px;
	}
}

.subHead2 {
	align-items: start;
	background-color: #191A1C;
	position: relative;
	z-index:10;
}
@media screen and (max-width: 560px) {
	.subHead2 {
		flex-direction: column;
	}
}

.subHead2__title {
	height: auto;
	aspect-ratio: 800/130;
}
@media screen and (max-width: 560px) {
	.subHead2__title {
		width: 100vw;
	}
}
.subHead2__title .subHead__title--logo {
	transform: translateY(0);
}
.subHead2__title .subHead__title--name {
	transform: translateY(0);
}

.subHead2__block {
	position: relative;
	aspect-ratio: 800/240;
}

.subHead2--img {
	width: 50vw;
	position: relative;
}
@media screen and (max-width: 560px) {
	.subHead2--img {
		width: 100vw;
	}
}
.subHead2--img::after {
	content: "";
	width: 50vw;
	aspect-ratio: 800/240;
	background-color: #0D0E0C;
	opacity: 0.3;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 560px) {
	.subHead2--img::after {
		width: 100vw;
		aspect-ratio: 375/160;
	}
}

.subHead2-shadow {
	width: 50vw;
	position: absolute;
	bottom: 0px;
	left: 0;
}
@media screen and (max-width: 560px) {
	.subHead2-shadow {
		width: 100vw;
		bottom: -30px;
	}
}

header {
	display: flex;
	width: 100vw;
	height: 68px;
	position: fixed;
	top: 0;
	background-color: #0D0E0C;
	z-index: 999;
}
@media screen and (max-width: 960px) {
	header {
		height: 60px;
	}
}
.headerLogo {
	margin-left: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media screen and (max-width: 560px) {
	.headerLogo {
		margin-left: 20px;
	}
}

.headerLogo-img {
	width: 280.35px;
	height: 36px;
}
@media screen and (max-width: 560px) {
	.headerLogo-img {
		width: 199px;
		height: 30px;
	}
}

.modalBtn {
	margin-left: auto;
	width: 80px;
	aspect-ratio: 1/1;
	display: none;
	position: relative;
	z-index: 9999;
	cursor: pointer;
}
@media screen and (max-width: 1295px) {
	.modalBtn {
		width: 60px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}
.modalBtn .modalSpans {
	width: 50%;
	aspect-ratio: 1/1;
	position: relative;
}
.modalBtn .modalSpans .modalSpan {
	background-color: #fff;
	width: 100%;
	height: 1px;
	border-radius: 5px;
	position: absolute;
	left: 0;
	transition: 0.5s;
}
.modalBtn .modalSpans .modalSpan:nth-of-type(1) {
	top: 10%;
}
.modalBtn .modalSpans .modalSpan:nth-of-type(1).active {
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	rotate: 45deg;
}
.modalBtn .modalSpans .modalSpan:nth-of-type(2) {
	top: calc(50% - 1.5px);
}
.modalBtn .modalSpans .modalSpan:nth-of-type(2).active {
	opacity: 0;
}
.modalBtn .modalSpans .modalSpan:nth-of-type(3) {
	top: calc(90% - 3px);
}
.modalBtn .modalSpans .modalSpan:nth-of-type(3).active {
	top: 50%;
	left: 2px;
	transform: translateY(-50%);
	rotate: -45deg;
}
.modalBtn .modalSpans .modalSpan.active {
	background-color: #0D0E0C;
}

.modal {
	width: 100vw;
	height: 100vh;
	right: -100vw;
	background-color: #fff;
	transition: 1s;
	position: fixed;
	top: 0;
	display: flex;
	z-index: 99;
	overflow: scroll;
}
.modal.active {
	right: 0;
	transition: 1s;
}
.modal .modal__list {
	width: 100%;
	height: auto;
	padding-top: 5rem;
}
.modal .modal__list .modal__list-item {
	width: 100%;
	border-top: 1px solid red;
	padding: 2rem 0;
}
.modal .modal__list .modal__list-item:hover {
	background-color: #00b7e0;
}
.modal .modal__list .modal__list-item:last-of-type {
	border-bottom: 1px solid red;
}
.modal .modal__list .modal__list-item a {
	display: block;
	width: 100%;
	height: 100%;
}
.modal .modalTxt {
	max-width: 640px;
	margin: 0 auto;
	color: #fff;
	position: relative;
	font-size: 1.2rem;
}
@media screen and (max-width: 640px) {
	.modal .modalTxt {
		max-width: 320px;
	}
}
.modal .modalTxt::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 0rem;
	transform: translateY(-50%);
	font-size: 2rem;
}
.modal .modalTxt.active::after {
	content: "ー";
	font-size: 1.2rem;
}
.modal .modal-sublists {
	display: none;
}
.modal .modal-sublists .modal-sublist {
	max-width: 640px;
	margin: 0 auto;
	justify-content: space-between;
	padding: 1rem 0;
}
@media screen and (max-width: 640px) {
	.modal .modal-sublists .modal-sublist {
		max-width: 320px;
	}
}
.modal .modal-sublists.active {
	display: block;
	border-top: 1px solid red;
	background-color: rgb(26, 26, 26);
}
.modal .modal-sublists .modal-sublist-item {
	width: 25%;
}
@media screen and (max-width: 640px) {
	.modal .modal-sublists .modal-sublist-item {
		width: 50%;
	}
}
.modal .modal-sublists .modal-sublist-item a {
	color: #fff;
	display: block;
	width: 100%;
	height: 100%;
	border: 0.3px solid #fff;
	padding: 1rem 2rem;
	text-align: center;
}

.modal__sideBar {
	width: 80px;
	background-color: #191A1C;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: end;
}
@media screen and (max-width: 560px) {
	.modal__sideBar {
		width: 56px;
	}
}
.modal__sideBar__instagram {
	width: 40px;
	padding-bottom: 40px;
}
@media screen and (max-width: 560px) {
	.modal__sideBar__instagram {
		width: 28px;
	}
}

.modal__sideBody {
	width: calc(100vw - 120px);
	padding-top: 80px;
}
@media screen and (max-width: 560px) {
	.modal__sideBody {
		width: calc(100vw - 56px);
	}
}

.modalNav {
	padding-bottom: 18px;
}

.modalNav__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.modalNav--ttl {
	font-family: "futura-pt", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #0D0E0C;
	font-size: 24px;
	line-height: 1.2916666667;
}

.modalNav--subttl {
	font-size: 12px;
	color: #0D0E0C;
	letter-spacing: 0.24px;
	line-height: 2.1666666667;
	font-weight: 400;
	transform: translateY(-5px);
}

.modalNav__list--item {
	width: 186.43px;
	margin: 0 auto;
}

.modalNavShow {
	transform: translateX(12px);
	display: none;
}
.modalNavShow.active {
	display: block;
}

.modalNavShow__list--item {
	padding: 10px 0;
	position: relative;
}
.modalNavShow__list--item a {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8571428571;
	display: block;
	width: 100%;
	height: 100%;
}
.modalNavShow__list--item::after {
	content: "";
	width: 182.49px;
	height: 0.66px;
	background: linear-gradient(to right, #171717, #C9C9C9);
	position: absolute;
	bottom: 0;
	left: 0;
}
.modalNavShow__list--item::before {
	content: "";
	width: 6px;
	aspect-ratio: 1/2;
	background-image: url("../image/arrow-right.webp");
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
}

.modalNavBtn {
	position: relative;
	display: block;
}
.modalNavBtn::after {
	content: "";
	width: 8px;
	aspect-ratio: 1/2;
	background-image: url("../image/arrow-right.webp");
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
}

.modalNavBtn__click {
	position: relative;
	cursor: pointer;
}
.modalNavBtn__click::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 9px;
	transform: translateY(-50%);
	color: #0D0E0C;
	font-size: 30px;
}
.modalNavBtn__click.active::after {
	content: "×";
	font-size: 20px;
	transform: translate(2px, -12px);
}

.modalLink {
	height: 111px;
	width: calc(100vw - 80px);
}
@media screen and (max-width: 560px) {
	.modalLink {
		width: calc(100vw - 56px);
	}
}
.modalLink:nth-of-type(1) {
	background-color: #0D0E0C;
}
.modalLink:nth-of-type(1) .modalNav--ttl {
	color: #F5F6F4;
}
.modalLink:nth-of-type(1) .modalNav--subttl {
	color: #F5F6F4;
}
.modalLink a {
	display: flex;
	justify-content: start;
	align-items: center;
	width: 100%;
	height: 100%;
}
.modalLink:nth-of-type(1) .modalAccess__block--btn {
	border-radius: 50%;
	border: 1px solid #F5F6F4;
	width: 104px;
	aspect-ratio: 1/1;
	margin-right: 20px;
	position: relative;
	width: 50px !important;
	height: 50px;
	margin-right: 0;
}
@media screen and (max-width: 560px) {
	.modalLink:nth-of-type(1) .modalAccess__block--btn {
		width: 64px;
	}
}
.modalLink:nth-of-type(1) .modalAccess__block--btn span {
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #F5F6F4;
}
.modalLink:nth-of-type(1) .modalAccess__block--btn span:nth-of-type(1) {
	width: 39px;
	height: 1.5px;
	transform: translate(-50%, -50%);
}
@media screen and (max-width: 560px) {
	.modalLink:nth-of-type(1) .modalAccess__block--btn span:nth-of-type(1) {
		width: 24px;
		height: 0.93px;
	}
}
.modalLink:nth-of-type(1) .modalAccess__block--btn span:nth-of-type(2) {
	width: 6px;
	height: 1.5px;
	transform: translate(calc(-50% + 11.7px), calc(-50% - 12px));
	rotate: 45deg;
}
@media screen and (max-width: 560px) {
	.modalLink:nth-of-type(1) .modalAccess__block--btn span:nth-of-type(2) {
		height: 0.53px;
		transform: translate(calc(-50% + 6.7px), calc(-50% - 7px));
	}
}
.modalLink:nth-of-type(1) .modalAccess__block--btn span:nth-of-type(1) {
	width: 18px;
}
.modalLink:nth-of-type(1) .modalAccess__block--btn span:nth-of-type(2) {
	transform: translate(calc(-50% + 4px), calc(-50% - 4px));
}

.modalLink__block {
	width: 186.43px;
	margin: 0 auto;
	transform: translateX(-20px);
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 560px) {
	.modalLink__block {
		transform: translateX(0);
	}
}

.modalAccess__block--btn {
	border-radius: 50%;
	border: 1px solid #F5F6F4;
	width: 104px;
	aspect-ratio: 1/1;
	margin-right: 20px;
	position: relative;
	width: 50px;
	height: 50px;
	margin-right: 0;
}
@media screen and (max-width: 560px) {
	.modalAccess__block--btn {
		width: 64px;
	}
}
.modalAccess__block--btn span {
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #F5F6F4;
}
.modalAccess__block--btn span:nth-of-type(1) {
	width: 39px;
	height: 1.5px;
	transform: translate(-50%, -50%);
}
@media screen and (max-width: 560px) {
	.modalAccess__block--btn span:nth-of-type(1) {
		width: 24px;
		height: 0.93px;
	}
}
.modalAccess__block--btn span:nth-of-type(2) {
	width: 6px;
	height: 1.5px;
	transform: translate(calc(-50% + 11.7px), calc(-50% - 12px));
	rotate: 45deg;
}
@media screen and (max-width: 560px) {
	.modalAccess__block--btn span:nth-of-type(2) {
		height: 0.53px;
		transform: translate(calc(-50% + 6.7px), calc(-50% - 7px));
	}
}
.modalAccess__block--btn span:nth-of-type(1) {
	width: 18px;
}
.modalAccess__block--btn span:nth-of-type(2) {
	transform: translate(calc(-50% + 4px), calc(-50% - 4px));
}
.modalAccess__block--btn:nth-of-type(2) {
	border-radius: 50%;
	border: 1px solid #0D0E0C;
	width: 104px;
	aspect-ratio: 1/1;
	margin-right: 20px;
	position: relative;
	width: 50px !important;
	height: 50px;
	margin-right: 0;
}
@media screen and (max-width: 560px) {
	.modalAccess__block--btn:nth-of-type(2) {
		width: 64px;
	}
}
.modalAccess__block--btn:nth-of-type(2) span {
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #0D0E0C;
}
.modalAccess__block--btn:nth-of-type(2) span:nth-of-type(1) {
	width: 39px;
	height: 1.5px;
	transform: translate(-50%, -50%);
}
@media screen and (max-width: 560px) {
	.modalAccess__block--btn:nth-of-type(2) span:nth-of-type(1) {
		width: 24px;
		height: 0.93px;
	}
}
.modalAccess__block--btn:nth-of-type(2) span:nth-of-type(2) {
	width: 6px;
	height: 1.5px;
	transform: translate(calc(-50% + 11.7px), calc(-50% - 12px));
	rotate: 45deg;
}
@media screen and (max-width: 560px) {
	.modalAccess__block--btn:nth-of-type(2) span:nth-of-type(2) {
		height: 0.53px;
		transform: translate(calc(-50% + 6.7px), calc(-50% - 7px));
	}
}
.modalAccess__block--btn:nth-of-type(2) span:nth-of-type(1) {
	width: 18px;
}
.modalAccess__block--btn:nth-of-type(2) span:nth-of-type(2) {
	transform: translate(calc(-50% + 4px), calc(-50% - 4px));
}

.headerMenu {
	margin: 0 48px 0 auto;
	display: flex;
	align-items: center;
}
@media screen and (max-width: 1295px) {
	.headerMenu {
		display: none;
	}
}

.headerMenu__list {
	display: flex;
	gap: 40px;
}
.headerMenu__list--item {
	overflow: hidden;
}
.headerMenu__list--item a {
	position: relative;
	padding: 0px 38px;
	color: #F5F6F4;
	letter-spacing: 0.48px;
	line-height: 1.5;
	/*差し替わるテキストの設定*/
	/*hoverするとテキストが入れ替わる設定*/
}
.headerMenu__list--item a span {
	/*絶対配置でテキストの位置を決める*/
	position: absolute;
	left: 50%;
	top: 0;
	/*アニメーションの指定*/
	transition: all 0.5s;
	transform: translate(-50%, 0);
	/*X方向に-50% ※中央寄せにするため*/
	/*ブロック要素にして透過なし、テキスト折り返しなし*/
	display: block;
	opacity: 1;
	white-space: nowrap;
}
.headerMenu__list--item a span:nth-child(2) {
	opacity: 0;
	/*透過0に*/
	transform: translate(-50%, 100%);
	/*X方向に-50% Y方向に100%*/
}
.headerMenu__list--item a:hover span:nth-child(1) {
	opacity: 0;
	/*透過0に*/
	transform: translate(-50%, -100%);
	/*X方向に-50% Y方向に-100%*/
}
.headerMenu__list--item a:hover span:nth-child(2) {
	opacity: 1;
	/*不透明に*/
	transform: translate(-50%, 0);
	/*X方向に-50% Y方向に0*/
}
.headerMenu__list--item a:hover {
	color: #CBCBCB;
}

footer {
	background-color: black;
}

.footerAccess {
	display: flex;
}
@media screen and (max-width: 832px) {
	.footerAccess {
		flex-direction: column;
	}
}

.footerAccess__block {
	width: 50%;
}
@media screen and (max-width: 832px) {
	.footerAccess__block {
		width: 100%;
	}
}
.footerAccess__block:nth-of-type(1) {
	background-color: #CBCBCB;
}
@media screen and (max-width: 1295px) {
	.footerAccess__block:nth-of-type(1) {
		padding-left: 24px;
	}
}
.footerAccess__block:nth-of-type(1) .footerAccess__upper {
	margin: 40px 100px 0 auto;
}
@media screen and (max-width: 1295px) {
	.footerAccess__block:nth-of-type(1) .footerAccess__upper {
		margin: 20px 40px 0 auto;
	}
}
@media screen and (max-width: 560px) {
	.footerAccess__block:nth-of-type(1) .footerAccess__upper {
		margin-right: 24px;
	}
}
.footerAccess__block:nth-of-type(1) .footerAccess__block--txt {
	margin: 0 100px 0 auto;
	color: #0D0E0C;
}
@media screen and (max-width: 1295px) {
	.footerAccess__block:nth-of-type(1) .footerAccess__block--txt {
		margin: 0 40px 0 auto;
	}
}
@media screen and (max-width: 560px) {
	.footerAccess__block:nth-of-type(1) .footerAccess__block--txt {
		margin-right: 24px;
	}
}
.footerAccess__block:nth-of-type(2) {
	background-color: #F5F6F4;
}
.footerAccess__block:nth-of-type(2) .footerAccess__upper {
	margin: 40px auto 0 100px;
}
body > footer > div.footerAccess > div:nth-child(1) > div.footerAccess__upper.fade.fade-in > a:hover{
transform: translate(16px, 0px);
    transition: 0.4s all cubic-bezier(0.15, 0.67, 0.57, 0.96);
}
body > footer > div.footerAccess > div:nth-child(2) > div.footerAccess__upper.fade.fade-in > a:hover{
transform: translate(16px, 0px);
    transition: 0.4s all cubic-bezier(0.15, 0.67, 0.57, 0.96);
}
@media screen and (max-width: 1295px) {
	.footerAccess__block:nth-of-type(2) .footerAccess__upper {
		margin: 20px 0 0 40px;
	}
}
@media screen and (max-width: 560px) {
	.footerAccess__block:nth-of-type(2) .footerAccess__upper {
		margin-left: 24px;
		margin-right: 24px;
	}
}
.footerAccess__block:nth-of-type(2) .footerAccess__block--txt {
	margin: 0 auto 0 100px;
}
@media screen and (max-width: 1295px) {
	.footerAccess__block:nth-of-type(2) .footerAccess__block--txt {
		margin: 0 auto 0 40px;
	}
}
@media screen and (max-width: 560px) {
	.footerAccess__block:nth-of-type(2) .footerAccess__block--txt {
		margin-left: 24px;
		margin-right: 24px;
	}
}

.footerAccess__upper {
	width: 472px;
	display: flex;
	justify-content: space-between;
	padding-top: 30px;
}
@media screen and (max-width: 1295px) {
	.footerAccess__upper {
		width: auto;
	}
}

.footerAccess__block--ttl {
	font-size: 67px;
	line-height: 1.1940298507;
	padding-bottom: 20px;
	font-weight: 400;
	color: #0D0E0C;
	font-family: "segou", sans-serif;
}
@media screen and (max-width: 560px) {
	.footerAccess__block--ttl {
		font-size: 40px;
		font-family: "segou", sans-serif;
		letter-spacing: 0;
		line-height: 1.275;
		padding-bottom: 0;
	}
}

.footerAccess__block--subttl {
	padding-bottom: 20px;
	font-weight: 400;
	line-height: 2;
	color: #0D0E0C;
	letter-spacing: 0.96px;
}

.footerAccess__block--btn {
	border-radius: 50%;
	border: 1px solid #0D0E0C;
	width: 104px;
	aspect-ratio: 1/1;
	margin-right: 20px;
	position: relative;
}
@media screen and (max-width: 560px) {
	.footerAccess__block--btn {
		width: 64px;
	}
}
.footerAccess__block--btn span {
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #0D0E0C;
}
.footerAccess__block--btn span:nth-of-type(1) {
	width: 39px;
	height: 1.5px;
	transform: translate(-50%, -50%);
}
@media screen and (max-width: 560px) {
	.footerAccess__block--btn span:nth-of-type(1) {
		width: 24px;
		height: 0.93px;
	}
}
.footerAccess__block--btn span:nth-of-type(2) {
	width: 6px;
	height: 1.5px;
	transform: translate(calc(-50% + 11.7px), calc(-50% - 12px));
	rotate: 45deg;
}
@media screen and (max-width: 560px) {
	.footerAccess__block--btn span:nth-of-type(2) {
		height: 0.53px;
		transform: translate(calc(-50% + 6.7px), calc(-50% - 7px));
	}
}

.footerAccess__block--txt {
	width: 472px;
	font-weight: 400;
	letter-spacing: 0.96px;
	line-height: 2;
	padding-bottom: 60px;
	color: #0D0E0C;
}
@media screen and (max-width: 1295px) {
	.footerAccess__block--txt {
		width: auto;
	}
}
@media screen and (max-width: 560px) {
	.footerAccess__block--txt {
		letter-spacing: 0.28px;
	}
}

.footerBcImg {
	background-image: url("../image/footer-bc.webp");
	background-size: cover;
	background-position: center;
}

.footerUpper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 40px;
	padding: 70px 0;
}
@media screen and (max-width: 832px) {
	.footerUpper {
		padding: 20px 12px;
	}
}
@media screen and (max-width: 1295px) {
	.footerUpper {
		height: auto;
	}
}
@media screen and (max-width: 1295px) {
	.footerUpper.mx {
		max-width: 840px;
	}
}

.footerHead {
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 1295px) {
	.footerHead {
		flex-direction: column;
		gap: 24px;
	}
}

.footerHead__info--name {
	width: 280px;
	height: 36px;
	margin-bottom: 40px;
}
@media screen and (max-width: 1295px) {
	.footerHead__info--name {
		margin-bottom: 12px;
		margin-top: 12px;
	}
}
@media screen and (max-width: 560px) {
	.footerHead__info--name {
		width: 230px;
		height: 36px;
		margin: 24px auto;
	}
}

.footerHead__info--address {
	color: #F5F6F4;
	font-style: inherit;
	letter-spacing: 1.6px;
	line-height: 1.5;
}
@media screen and (max-width: 1295px) {
	.footerHead__info--address {
		font-size: 14px;
	}
}
@media screen and (max-width: 560px) {
	.footerHead__info--address {
		width: 230px;
		margin: 0 auto;
	}
}

.footerNavs {
	display: flex;
	gap: 20px;
}
@media screen and (max-width: 1295px) {
	.footerNavs {
		flex-direction: column;
		gap: 28px;
	}
}
@media screen and (max-width: 560px) {
	.footerNavs {
		width: 240px;
		margin: 0 auto;
	}
}

.footerNav {
	display: flex;
	gap: 40px;
}
@media screen and (max-width: 560px) {
	.footerNav {
		gap: 0;
		justify-content: space-between;
	}
}

.footerNav--ttl a {
	letter-spacing: 0.48px;
	color: #F5F6F4;
	line-height: 1.5;
}
.footerNav__list--item a:hover,
.footerNav--ttl a:hover{
	opacity:0.45;
	transition:0.4s all ease;
}
@media screen and (max-width: 1295px) {
	.footerNav--ttl a {
		font-size: 14px;
	}
}

.footerNav__lists {
	display: flex;
	gap: 24px;
}
@media screen and (max-width: 1295px) {
	.footerNav__lists {
		flex-direction: column;
		gap: 18px;
	}
}
@media screen and (max-width: 560px) {
	.footerNav__lists {
		gap: 0;
	}
}

.footerNav__list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	flex-wrap: wrap;
}
@media screen and (max-width: 1295px) {
	.footerNav__list {
		gap: 12px 24px;
	}
}
.footerNav__list.otherFooterNav {
	flex-direction: row;
}
@media screen and (max-width: 560px) {
	.footerNav__list.otherFooterNav {
		flex-wrap: wrap;
		justify-content: space-between;
	}
}

.footerNav__ulList {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
@media screen and (max-width: 1295px) {
	.footerNav__ulList {
		flex-direction: row;
		flex-wrap: wrap;
	}
}
@media screen and (max-width: 560px) {
	.footerNav__ulList {
		flex-direction: column;
		gap: 0;
		transform: translateX(12px);
	}
}

.footerNav__list--item {
	position: relative;
	margin-left: 1.5rem;
}
.footerNav__list--item a {
	color: #F5F6F4;
	line-height: 1.5;
	letter-spacing: 0.48px;
}
@media screen and (max-width: 1295px) {
	.footerNav__list--item a {
		font-size: 14px;
	}
}
@media screen and (max-width: 560px) {
	.footerNav__list--item a {
		padding: 12px 0;
		line-height: 2;
	}
}
.footerNav__list--item::before {
	content: "";
	background-color: #F5F6F4;
	width: 16px;
	height: 1px;
	position: absolute;
	top: 50%;
	left: -1.5rem;
	transform: translateY(-50%);
}
@media screen and (max-width: 560px) {
	.footerNav__list--item::before {
		width: 1px;
		height: 28px;
		left: -1rem;
	}
}

.footerFoot__instagram {
	width: 28.81px;
	height: 28.83px;
	margin: 0 auto;
}

.footerFoot {
	display: flex;
	gap: 28px;
	margin-left: auto;
}
@media screen and (max-width: 560px) {
	.footerFoot {
		flex-direction: column-reverse;
		margin: 0 auto;
	}
}
.footerFoot.mx {
	margin-right: inherit;
}

.footerFootNav {
	display: flex;
	gap: 12px;
}
@media screen and (max-width: 560px) {
	.footerFootNav {
		flex-direction: column;
	}
}

.footerFootNav__linkList {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
@media screen and (max-width: 1295px) {
	.footerFootNav__linkList {
		gap: 12px;
	}
}
@media screen and (max-width: 560px) {
	.footerFootNav__linkList {
		flex-direction: row;
	}
}

.footerFootNav__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* .footerFootNav__list--item a:last-child {
	background-color: #F5F6F4;
	width: 160px;
	height: 32px;
	padding-right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	line-height: 1.5;
	letter-spacing: 1.6px;
}
@media screen and (max-width: 1295px) {
	.footerFootNav__list--item a {
		font-size: 14px;
	}
}
@media screen and (max-width: 832px) {
	.footerFootNav__list--item a {
		width: 140px;
	}
}
@media screen and (max-width: 560px) {
	.footerFootNav__list--item a {
		background-color: #0D0E0C;
		border: 1px solid #F5F6F4;
		color: #F5F6F4;
	}
}
.footerFootNav__list--item a::after {
	content: ">";
	font-size: 1rem;
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
} */

.footerLower--txt {
	padding: 7px 0;
	background-color: #0D0E0C;
	color: #F5F6F4;
	font-size: 14px;
	letter-spacing: 1.4px;
	line-height: 1.4285714286;
	text-align: center;
}
@media screen and (max-width: 1295px) {
	.footerLower--txt {
		font-size: 12px;
	}
}
