@charset "utf-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figcaption, figure, section, footer, header, main, hgroup, menu, nav, summary {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
@media all and (min-width: 1000px) {
	html {
		font-size: calc(1000vw / 1366);
	}
}
@media all and (min-width: 1500px) {
	html {
		font-size: 68.63%;
	}
}
@media all and (max-width: 999px) {
	html {
		font-size: calc(1000vw / 365);
	}
}
@media all and (min-width: 768px) and (max-width: 999px) {
	html {
		font-size: 1.917vw;
	}
}
body, table, input, textarea, select, option {
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
}
article, aside, canvas, details, figcaption, figure, footer, header, main, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
chrome_annotation {
	border: none !important;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
}
address {
	font-style: normal;
}
a,
a:link {
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
}
a:visited {
	color: #fff;
}
a:hover {
	color: #fff;
}
a:active {
	color: #fff;
}
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-YH */
/* clearfix */
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
/* flex */
.flex, .flexA, .flexB, .flexC {
	display: flex;
	flex-wrap: wrap;
}
.flexA {
	justify-content: space-around;
}
.flexB {
	justify-content: space-between;
}
.flexC {
	justify-content: center;
}
/* font */
.en {
	font-family: "Cormorant", serif;
}
.roboto {
	font-family: "Roboto", sans-serif;
}
.notoSans {
	font-family: "Noto Sans JP", sans-serif;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
.is-locked {
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
}
.is-locked body {
	-webkit-overflow-scrolling: auto;
}
body {
	color: #fff;
	font-size: max(10px, 1.3rem);
	font-weight: 400;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #000;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "palt";
}
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
}
#cover {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	transition: all 0.4s;
	z-index: 10000;
}
body.hideCover #cover {
	opacity: 0;
	pointer-events: none;
}
#container {
	text-align: left;
	overflow-x: clip;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 1000px) {
	.sp {
		display: none !important;
	}
	body.fixed {
		overflow-y: scroll;
	}
}
@media all and (max-width: 999px) {
	body {
		font-size: max(10px, 1.1rem);
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	padding: 1.75rem 0;
	color: #fff;
	width: 5.3rem;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 998;
}
#gHeader h1 {
	margin: 0 auto;
	width: fit-content;
	font-size: max(10px, 1.4rem);
	letter-spacing: 0.12em;
	font-weight: 400;
	white-space: nowrap;
	writing-mode: vertical-rl;
	-webkit-writing-mode: tb-rl;
	font-family: "Cormorant", serif;
}
.menu {
	width: 2rem;
	height: 1rem;
	position: fixed;
	right: 1.6rem;
	top: 50%;
	cursor: pointer;
	transform: translateY(-50%);
	z-index: 1000;
	transition: opacity .3s;
}
@media all and (min-width: 1000px) and (hover: hover) {
	.menu:hover {
		opacity: 0.5 !important;
	}
}
.menu::after {
	width: 200%;
	height: 200%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	content: "";
}
.menu.noLink {
	pointer-events: none;
}
.menu.on {
	width: 2.2rem;
	display: block !important;
}
.menu.on .top {
	transform: translateY(0.4rem) translateX(0) rotate(-22deg);
}
.menu.on .middle {
	opacity: 0;
}
.menu.on .bottom {
	transform: translateY(-0.4rem) translateX(0) rotate(22deg);
}
.menu span {
	height: 1px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .35s ease;
	cursor: pointer;
	background: #fff;
	border: none;
	will-change: transform;
}
.menu span:nth-of-type(2) {
	top: 0.4rem;
}
.menu span:nth-of-type(3) {
	top: 0.8rem;
}
.menuBox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	overflow-x: clip;
	overflow-y: auto;
	pointer-events: none;
	visibility: hidden;
	transition: opacity .5s ease;
	font-family: "Cormorant", serif;
	z-index: 999;
}
.menuBox.show {
	pointer-events: auto;
	visibility: visible;
}
.menuBox.hide {
	opacity: 0;
	pointer-events: none;
	user-select: none;
}
.menuBox .menuBg {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #0a0a0a;
	transform: translateX(100%);
	transition: transform 0.4s;
	opacity: 0.84;
	z-index: -1;
}
.menuBox.show .menuBg {
	transform: none;
}
.menuBox .comNaviBox {
	min-height: 100%;
}
.menuBox .comLogo,
.menuBox li {
	opacity: 0;
	transition: opacity 1s;
	pointer-events: none;
}
.menuBox.show .comLogo,
.menuBox.show li {
	opacity: 1;
	pointer-events: auto;
}
.menuBox .comLogo {
	position: absolute;
	left: 7.1rem;
	top: 50%;
	font-size: max(10px, 1.8rem);
	font-weight: 500;
	letter-spacing: 0.15em;
	transform: translateY(-50%);
}
@media (min-width: 1000px) and (hover: hover) {
	.menu:hover {
		opacity: 0.5;
	}
}
@media all and (max-width: 999px) {
	#gHeader {
		padding: 1.5rem;
		width: 100%;
		height: auto;
	}
	#gHeader h1 {
		font-size: max(10px, 1.2rem);
		font-weight: 500;
		writing-mode: horizontal-tb;
		-webkit-writing-mode: horizontal-tb;
		-moz-writing-mode: horizontal-tb;
		-ms-writing-mode: lr-tb;
	}
	.menu {
		top: 1.8rem;
		right: 1.9rem;
		transform: none;
	}
	.menuBox .menuBg {
		opacity: 1;
		transform: translateY(-100%);
	}
	.menuBox .comLogo {
		position: absolute;
		left: 50%;
		top: 1.5rem;
		font-size: max(10px, 1.2rem);
		letter-spacing: 0.12em;
		transform: translateX(-50%);
	}
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
@media all and (max-width: 999px) {
	#gFooter .comLogo {
		font-size: max(10px, 1.4rem);
		line-height: 2.1;
	}
	#gFooter .comLogo a span {
		font-size: max(10px, 1.3rem);
	}
	#gFooter .pageTop {
		margin: 0 auto;
		padding: 5.1rem 0 2.2rem;
		width: 2rem;
	}
	#gFooter .pageTop a {
		display: block;
	}
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	width: 78.15%;
	position: relative;
}
@media all and (max-width: 999px) {
	.content {
		margin: 0 1.9rem;
		width: auto !important;
	}
}
/*------------------------------------------------------------
	comLogo
------------------------------------------------------------*/
.comLogo {
	font-size: max(10px, 1.8rem);
	font-weight: 500;
	letter-spacing: 0.15em;
	font-family: "Cormorant", serif;
}
.comLogo a {
	display: block;
}
.comLogo span {
	margin-top: 0.4rem;
	display: block;
	opacity: 0.8;
	letter-spacing: 0.04em;
}
@media all and (max-width: 999px) {
	.comLogo {
		font-size: max(10px, 1.2rem);
		letter-spacing: 0.12em;
		text-align: center;
	}
	.comLogo span {
		margin-top: 0;
	}
}
/*------------------------------------------------------------
	comNaviBox
------------------------------------------------------------*/
.comNaviBox {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.comNaviBox .navWrap {
	padding: 2rem 0 2rem 6.3rem;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 7.5rem;
}
.comNaviBox .catList li:not(:last-child) {
	margin-bottom: 0.2rem;
}
.comNaviBox .catList li a {
	padding-left: 5.2rem;
	display: block;
	position: relative;
	opacity: 1 !important;
}
.comNaviBox .catList li.noClick a {
	opacity: 1 !important;
}
.comNaviBox .catList li .img {
	width: 34rem;
	aspect-ratio: 340 / 134;
	display: block;
	position: relative;
}
.comNaviBox .catList li .img::before {
	width: 19.4rem;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0) 100%);
	opacity: 0.4;
	content: "";
}
.comNaviBox .catList li .img::after {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #000;
	opacity: 0;
	transition: opacity 0.3s;
	content: "";
}
.comNaviBox .catList li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.comNaviBox .catList li .txt {
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 300;
	font-size: 6rem;
	letter-spacing: -0.02em;
	transition: color 0.3s;
}
.comNaviBox .catList li .txt01 {
	margin-top: -0.8rem;
}
.comNaviBox .catList li.noClick .txt {
	color: #838383 !important;
}
.comNaviBox .catList li.noClick .img::after {
	opacity: 0.5 !important;
}
.comNaviBox .naviList li:not(:last-child) {
	margin-bottom: 3.2rem;
}
.comNaviBox .naviList li a {
	font-size: max(10px, 2.5rem);
	letter-spacing: 0.04em;
}
@media (min-width: 1000px) and (hover: hover) {
	.comNaviBox .naviList li a:hover {
		opacity: 0.5;
	}
}
@media all and (max-width: 999px) {
	.comNaviBox {
		display: block;
	}
	.comNaviBox .navWrap {
		padding: 11.4rem 0 7.8rem 7.8rem;
		display: block;
	}
	.comNaviBox .catList {
		margin-bottom: 4.6rem;
	}
	.comNaviBox .catList li a {
		padding-left: 0;
	}
	.comNaviBox .catList li .img {
		width: auto;
		aspect-ratio: 294 / 100;
	}
	#gFooter .comNaviBox .catList li .img {
		aspect-ratio: 300 / 122;
	}
	.comNaviBox .catList li .img::before {
		width: 16.5rem;
	}
	.comNaviBox .catList li .txt {
		font-size: 4rem;
		left: -3.4rem;
	}
	.comNaviBox .catList li .txt01 {
		margin-top: -0.3rem;
	}
	.comNaviBox .naviList {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 1.6rem 0;
	}
	.comNaviBox .naviList li {
		margin: 0 !important;
		width: 49.2%;
		order: 10;
	}
	.comNaviBox .naviList li:nth-child(1) {
		order: 0;
	}
	.comNaviBox .naviList li:nth-child(3) {
		order: 1;
	}
	.comNaviBox .naviList li a {
		font-size: max(10px, 2rem);
	}
	#gFooter .comNaviBox .naviList li a {
		font-size: max(10px, 2.2rem);
	}
}
/*------------------------------------------------------------
	comHoverList
------------------------------------------------------------*/
.comHoverList li.noClick a {
	opacity: 0.5 !important;
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	margin-bottom: 9.5rem;
	font-size: 6.6rem;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.2;
}
.stickyBox .headLine01 {
	margin-bottom: 2rem;
	width: fit-content;
	position: relative;
	z-index: 10;
}
@media all and (max-width: 999px) {
	.headLine01 {
		margin-bottom: 7.5rem;
		font-size: 4.8rem;
		line-height: 1;
	}
	.stickyBox .headLine01 {
		margin-bottom: 0;
		position: static;
		top: auto;
	}
}
/*------------------------------------------------------------
	headLine02
------------------------------------------------------------*/
.headLine02 {
	font-weight: 500;
	font-size: max(10px, 1.8rem);
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 0.1em;
	line-height: 1.44;
}
@media all and (max-width: 999px) {
	.headLine02 {
		font-size: max(10px, 1.4rem);
	}
}
/*------------------------------------------------------------
	wp-pagenavi
------------------------------------------------------------*/
.wp-pagenavi {
	margin: 7.1rem 0 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem 2.7rem;
	font-size: 0;
	clear: both;
	text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
	margin: 0;
	padding: 0;
	width: fit-content;
	display: block;
	font-size: max(10px, 1.6rem);
	font-weight: 300;
	letter-spacing: 0;
	line-height: 1.75;
	font-family: "Roboto", sans-serif;
	text-decoration: none;
	border: none;
}
.wp-pagenavi span.current {
	opacity: 0.3;
}
@media (min-width: 1000px) and (hover: hover) {
	.wp-pagenavi a:hover {
		opacity: 0.5;
	}
}
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .pages {
	display: none;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	padding: 0 2.8rem;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 0.03em;
}
.wp-pagenavi .previouspostslink {
	background: url(../img/common/icon01.png) no-repeat left 1.1rem top 45% / 0.7rem;
}
.wp-pagenavi .nextpostslink {
	background: url(../img/common/icon02.png) no-repeat right 1.1rem top 45% / 0.7rem;
}
.wp-pagenavi .extend {
	padding: 0 0.4rem;
}
@media all and (max-width: 999px) {
	.wp-pagenavi {
		margin-top: 4.1rem;
		gap: 1rem 0.9rem;
	}
	.wp-pagenavi a,
	.wp-pagenavi span {
		padding: 0 0.5rem;
		font-size: max(10px, 1.4rem);
	}
	.wp-pagenavi .previouspostslink,
	.wp-pagenavi .nextpostslink {
		padding: 0 1.2rem;
		letter-spacing: 0.01em;
	}
	.wp-pagenavi .previouspostslink {
		background-size: 0.4rem;
		background-position: left center;
	}
	.wp-pagenavi .nextpostslink {
		background-size: 0.4rem;
		background-position: right center;
	}
	.wp-pagenavi .extend {
		padding: 0 0.9rem;
	}
}
/*------------------------------------------------------------
	comPostBox
------------------------------------------------------------*/
.comPostBox {
	padding: 10.5rem 0 8.3rem;
	position: relative;
	align-items: flex-start;
}
.comPostBox::after {
	width: 100vw;
	height: auto;
	min-width: 136.6rem;
	position: absolute;
	right: 0;
	bottom: 0;
	border-bottom: 0.1rem solid rgba(255, 255, 255, 0.2);
	box-sizing: border-box;
	content: '';
}
.comPostBox .postTitle {
	margin-top: -0.6rem;
	width: 27%;
	position: sticky;
	top: 32.9rem;
	display: flex;
	flex-direction: column;
	gap: 2.1rem 0;
}
.comPostBox .postTitle time {
	display: block;
	color: #AFAFAF;
	font-size: max(10px, 1.2rem);
	letter-spacing: 0.02em;
}
.comPostBox .rBox {
	margin-left: auto;
	width: 68.5%;
}
.comPostBox .rBox p {
	font-size: max(10px, 1.3rem);
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 0.04em;
	line-height: 2.31;
}
.comPostBox .rBox p:not(:last-child),
.comPostBox .rBox .photo {
	margin-bottom: 4.6rem;
}
.comPostBox .rBox .photo img {
	width: 100%;
}
@media all and (max-width: 999px) {
	.comPostBox {
		padding: 5.8rem 0;
		display: block;
	}
	.comPostBox::after {
		width: 100%;
		min-width: 100%;
		border-color: rgba(255, 255, 255, 0.28);
	}
	.comPostBox .postTitle {
		margin: 0 0 2.5rem;
		width: auto;
		position: static;
		top: auto;
		gap: 0.9rem 0;
	}
	.comPostBox .postTitle time {
		font-size: max(10px, 1.1rem);
	}
	.comPostBox .rBox {
		margin: 0;
		width: auto;
	}
	.comPostBox .rBox p {
		font-size: max(10px, 1.2rem);
		letter-spacing: 0.02em;
		line-height: 2.11;
	}
	.comPostBox .rBox p:not(:last-child),
	.comPostBox .rBox .photo {
		margin-bottom: 2.6rem;
	}
}
/*------------------------------------------------------------
	comBlogList
------------------------------------------------------------*/
.comBlogList {
	display: flex;
	flex-wrap: wrap;
	gap: 6.2rem 2.72%;
}
.comBlogList li {
	width: 22.95%;
}
.comBlogList li a {
	display: block;
}
.comBlogList li .photo {
	margin-bottom: 1.6rem;
}
.comBlogList li .photo img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1;
}
.comBlogList li p {
	margin-bottom: 0.5rem;
	font-size: max(10px, 1.4rem);
	font-weight: 500;
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 0.1em;
}
.comBlogList li .date {
	display: block;
	font-family: "Roboto", sans-serif;
	font-size: max(10px, 1.2rem);
	color: #AFAFAF;
}
@media all and (max-width: 999px) {
	.comBlogList {
		justify-content: space-between;
		gap: 3.6rem 0;
	}
	.comBlogList li {
		width: 47.2%;
	}
	.comBlogList li .photo {
		margin-bottom: 1rem;
	}
	.comBlogList li p {
		margin-bottom: 0.3rem;
		font-size: max(10px, 1.1rem);
		letter-spacing: 0.06em;
	}
	.comBlogList li .date {
		font-size: max(10px, 1.1rem);
	}
}
/*------------------------------------------------------------
	fade
------------------------------------------------------------*/
.fadeInUp,
.fadeUp {
	opacity: 0;
	transform: translateY(3rem);
	transition: opacity 1s,transform 1s;
}
.fadeInUp.visible,
.fadeUp.visible {
	opacity: 1;
	transform: translateY(0);
}