
/*----------------------------------------------------------------------> ▼ .button <--*/

a.button {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 5px solid #f0f0f0;
	border-radius: 9999px;
	background: #fff;
	text-align: center;
	box-shadow: 0 0 3px #eee;

}

@media (width <= 767px) {
	a.button {

	}	
}

@media (hover: hover) and (pointer: fine) {
	a.button:hover {
	}
}

/*----------------------------------------------------------------------> ▼ .box <--*/

.box,
.box_half,
.box_top,
.box_top_half,
.box_right,
.box_right_half,
.box_bottom,
.box_bottom_half,
.box_left,
.box_left_half,
.box_side,
.box_side_half,
.box_all,
.box_all_half {
	width: 100%;
	margin: 0 auto;
}

.box {
	padding: var(--margin) 0;
}

.box_half {
	padding: calc(var(--margin) / 2) 0;
}

.box_top {
	padding-top: var(--margin);
}

.box_top_half {
	padding-top: calc(var(--margin) / 2);
}

.box_right {
	padding-right: var(--margin);
}

.box_right_half {
	padding-right: calc(var(--margin) / 2);
}

.box_bottom {
	padding-bottom: var(--margin);
}

.box_bottom_half {
	padding-bottom: calc(var(--margin) / 2);
}

.box_left {
	padding-left: var(--margin);
}

.box_left_half {
	padding-left: calc(var(--margin) / 2);
}

.box_side {
	padding: 0 var(--margin);
}

.box_side_half {
	padding: 0 calc(var(--margin) / 2);
}

.box_all {
	padding: var(--margin);
}

.box_all_half {
	padding: calc(var(--margin) / 2);
}

@media (width <= 767px) {
	.box {
		padding: var(--margin) 0;
	}
	
	.box_bottom,
	.box_bottom_half {
		padding-bottom: 30px;
	}
}

/*----------------------------------------------------------------------> ▼ .cover <--*/

.cover {
	display: flex;
	align-items: center;
	position: relative;
	margin-bottom: var(--margin);
	overflow: hidden;
}

.cover::before,
.cover::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
}

.cover::before {
	top: 0;
	height: 100%;
	background: url(/asset/image/general/lattice_15_fff_25.png), linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

.cover::after {
	bottom: 0;
	height: 50px;
	background: url(/asset/image/general/cover_circle.png) no-repeat center / 100% 50px;
}

.cover .frame {
	z-index: 10;
}

.cover .title,
.cover .subtitle {
	color: #fff;
	text-shadow: 0 0 10px rgba(50, 50, 50, 0.1);
	text-align: center;
}

.cover .title {
	font-family: YuGo-B;
	font-size: 32px;
	letter-spacing: 5px;
}

.cover .subtitle {
	font-family: HiraginoGo-6;
	font-size: 80px;
	letter-spacing: 10px;
}

@media (1367px <= width) {
	.cover {
		height: 600px;
		
	}
}

@media (1281px <= width <= 1366px) {
	.cover {
		height: 400px;
		
	}
}

@media (width <= 1280px) {
	.cover {
		height: 50vh;
	}
	
	.cover::after {
		height: 25px;
		background: url(/asset/image/general/cover_circle.png) no-repeat center / 100% 25px;
	}
}

@media (width <= 1023px) {
	.cover .subtitle {
		font-size: 60px;
		letter-spacing: 8px;
	}
}

@media (width <= 767px) {
	.cover .subtitle {
		font-size: 45px;
	}
	
	.cover .title {
		font-size: 24px;
		letter-spacing: 4px;
	}
}

/*----------------------------------------------------------------------> ▼ .cover_half <--*/

.cover_half {
	display: flex;
	align-items: center;
	position: relative;
	margin-bottom: var(--margin);
	background: var(--blue);
	overflow: hidden;
}

.cover_half::before,
.cover_half::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
}

.cover_half::before {
	top: 0;
	height: 100%;
	background: url(/asset/image/general/lattice_15_fff_25.png), linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));	
}

.cover_half::after {
	bottom: 0;
	height: 50px;
}

.cover_half .frame {
	z-index: 10;
}

.cover_half .title,
.cover_half .subtitle {
	color: #fff;
	text-shadow: 0 0 10px rgba(50, 50, 50, 0.1);
	text-align: center;
}

.cover_half .title {
	font-family: YuGo-B;
	font-size: 32px;
	letter-spacing: 5px;
}

.cover_half .subtitle {
	font-family: HiraginoGo-6;
	font-size: 80px;
	letter-spacing: 10px;
}

@media (1367px <= width) {
	.cover_half {
		height: 300px;		
	}
}

@media (width <= 1366px) {
	.cover_half {
		height: 300px;
	}
}

@media (width <= 1023px) {
	.cover_half .subtitle {
		font-size: 60px;
		letter-spacing: 8px;
	}
}

@media (height <= 768px) {
	.cover_half {
		height: 300px;
		padding-bottom: 15px;
	}
}

@media (width <= 767px) {
	.cover_half .subtitle {
		font-size: 45px;
	}
	
	.cover_half .title {
		font-size: 24px;
		letter-spacing: 4px;
	}
}

/*----------------------------------------------------------------------> ▼ .frame <--*/

.frame {
	margin: 0 auto;
}

@media (1801px <= width) {
	.frame {
		width: calc(100% - 500px);
	}
}

@media (1367px <= width <= 1800px) {
	.frame {
		width: calc(100% - 200px);
	}
}

@media (1024px <= width <= 1366px) {
	.frame {
		width: calc(100% - 200px);
	}
}

@media (768px <= width <= 1023px) {
	.frame {
		width: calc(100% - 100px);
	}
}

@media (width <= 767px) {
	.frame {
		width: calc(100% - 60px);
	}
}

/*----------------------------------------------------------------------> ▼ .general <--*/

table.general {
	width: 100%;
	background: #fff;
}

table.general th, table.general td {
	padding: 10px 0;
	border: 1px solid #ddd;
	text-align: center;
}

table.general th {
	background: #f0f0f0;
}

table.general td {
	width: 50%;
}

ul.general {
	
}

ul.general li {
	padding: 15px 0;
	border-bottom: 1px dotted #aaa;
}

ul.general a {
	color: var(--blue);
}

ul.general div {
	margin-top: 5px;
}

/*----------------------------------------------------------------------> ▼ .full <--*/

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

/*----------------------------------------------------------------------> ▼ .header_title <--*/

.header_title {
	padding-bottom: 1em;
	font-family: NotoSans-B;
	font-size: 36px;
	line-height: 1.75em;
}

@media (width <= 1366px) {
	.header_title {
		font-size: 30px;
	}
}

@media (width <= 767px) {
	.document .header_title {
		font-size: 22px;
		line-height: 1.5em;
	}
}

/*----------------------------------------------------------------------> ▼ .hover_underline <--*/

@media (hover: hover) and (pointer: fine) {
	a:not(.disabled).hover_underline::after,
	.hover_underline a:not(.disabled)::after {
		content: '';
		position: absolute;
		bottom: -3px;
		left: 0;
		width: 0;
		height: 1px;
		background: var(--theme);
	}
	
	a:not(.disabled).hover_underline:hover::after,
	.hover_underline a:not(.disabled):hover::after {
		width: 100%;
	}
}

/*----------------------------------------------------------------------> ▼ .link <--*/

.link {
	display: inline-block;
	padding: 10px 50px;
	border: 1px solid #fff;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.15);
	font-size: 18px;
	color: #fff;
}

@media (hover: hover) and (pointer: fine) {
	.link {
		transition: var(--transition);
	}
}

/*----------------------------------------------------------------------> ▼ .list <--*/

dl.list {
	display: flex;
	flex-wrap: wrap;
}

dl.list dt {
	display: flex;
	align-items: center;
	width: 25%;
	padding-left: 30px;
	border-bottom: 1px dotted #444;
	font-family: YuGo-B;
}

dl.list dd {
	width: 75%;
	padding: 20px 0 20px 50px;
	border-bottom: 1px dotted #444;
}

dl.list dt:nth-of-type(2n), dl.list dd:nth-of-type(2n) {
	/*background: #fff;*/
}

dl.list dt:last-of-type, dl.list dd:last-of-type {
	padding-bottom: ;
	border: 0;
}

@media (width <= 767px) {
	dl.list dt {
		width: 100px;
		padding: 15px 0 15px 5px;
	}
	
	dl.list dd {
		width: calc(100% - 100px);
		padding: 15px 0 15px 15px;
	}
			
	dl.list * {
		font-size: ;
	}
}

@media (width <= 400px) {
	dl.list dt {
		width: 90px;
	}
	
	dl.list dd {
		width: calc(100% - 90px);
	}
	
	dl.list * {
		font-size: ;
	}
}

/*----------------------------------------------------------------------> ▼ .margin <--*/

.margin_top {
	margin-top: var(--margin);
}

.margin_top_half {
	margin-top: calc(var(--margin) / 2);
}

.margin_top_em {
	margin-top: 1em !important;
}

.margin_top_rem {
	margin-top: 1rem !important;
}

.margin_right {
	margin-right: var(--margin);
}

.margin_right_half {
	margin-right: calc(var(--margin) / 2);
}

.margin_bottom {
	margin-bottom: var(--margin);
}

.margin_bottom_half {
	margin-bottom: calc(var(--margin) / 2);
}

.margin_bottom_em {
	margin-bottom: 1em;
}

.margin_top_rem {
	margin-bottom: 1rem;
}

.margin_left {
	margin-left: var(--margin);
}

.margin_left_half {
	margin-left: calc(var(--margin) / 2);
}

.margin_side {
	margin-left: var(--margin);
	margin-right: var(--margin);
}

.margin_side_half {
	margin-left: calc(var(--margin) / 2);
	margin-right: calc(var(--margin) / 2);
}

/*----------------------------------------------------------------------> ▼ .marker <--*/

ul.marker li,
ol.marker li {
	list-style: disc outside;
}

/*----------------------------------------------------------------------> ▼ .narrow_left <--*/

.narrow_left {
	padding-left: 25%;
}

/*----------------------------------------------------------------------> ▼ .nomargin <--*/

.no_margin {
	margin: 0 !important;
}

.no_margin_top {
	margin-top: 0 !important;
}

.no_margin_right {
	margin-right: 0 !important;
}

.no_margin_bottom {
	margin-bottom: 0 !important;
}

.no_margin_left {
	margin-left: 0 !important;
}

.no_margin_side {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/*----------------------------------------------------------------------> ▼ .none <--*/

@media (501px <= width) {
	.none_501_ {
		display: none;
	}
}

@media (1024px <= width) {
	.none_1024_ {
		display: none;
	}
}

@media (width <= 1024px) {
	.none_1024 {
		display: none !important;
	}
}

@media (width <= 1023px) {
	.none_1023 {
		display: none !important;
	}
}

@media (768px <= width) {
	.none_768_ {
		display: none;
	}
}

@media (width <= 768px) {
	.none_768 {
		display: none !important;
	}
}

@media (width <= 767px) {
	.none_767 {
		display: none !important;
	}
}

@media (width <= 500px) {
	.none_500 {
		display: none;
	}
}

@media (width <= 400px) {
	.none_400 {
		display: none;
	}
}

/*----------------------------------------------------------------------> ▼ .page_navi <--*/

.page_navi {
	display: flex;
	margin-top: 50px;
	margin-bottom: 30px;
}

.page_navi a {
	font-size: 13px;
}

.page_navi li:first-of-type a {
	color: var(--theme);
	text-decoration: underline;
}

.page_navi li:first-of-type i::before {
	content: '\f015';
	margin-right: 5px;
	color: var(--theme);
}

.page_navi li:nth-of-type(n + 2)::before {
	content: '>';
	margin: 0 5px 0 10px;
}

/*----------------------------------------------------------------------> ▼ .underline <--*/

a:not(.disabled).underline::after,
.underline a:not(.disabled)::after {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--color);
}

@media (hover: hover) and (pointer: fine) {
	a:not(.disabled).underline:hover,
	.underline a:not(.disabled):hover {
		color: var(--hover);
	}
	
	a:not(.disabled).underline:hover::after,
	.underline a:not(.disabled):hover::after {
		background: var(--hover);
	}
}

/*----------------------------------------------------------------------> ▼ .panorama <--*/

.panorama {
	height: 400px;
	border-radius: var(--border_radius);
}

@media (width <= 1023px) and (height <= 768px) {
	.panorama {
		height: 300px;
	}	
}

@media (width <= 767px) {
	.panorama {
		height: 200px;
	}	
}

/*----------------------------------------------------------------------> ▼ .row_2 <--*/

.row_2 {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-top: 50px;
}

.row_2 div:not(h3) {
	text-align: center;
}

.row_2 .photo {
	aspect-ratio: 16 / 9;
	border-radius: 15px;
}

.row_2 img:not(.no_margin) {
	margin-bottom: 15px;
}

@media (1281px <= width) {
	.row_2 > div {
		width: calc((100% - min(75px, var(--margin))) / 2);
	}
	
	.row_2 > div:nth-of-type(2n) {
		margin-left: min(75px, var(--margin));
	}
}

@media (1024px <= width <= 1280px) {
	.row_2 > div {
		width: calc((100% - min(50px, var(--margin))) / 2);
	}
	
	.row_2 > div:nth-of-type(2n) {
		margin-left: min(50px, var(--margin));
	}
}

@media (width <= 1023px)  {
	.row_2 {
		margin-top: 30px;
	}
	
	.row_2 > div {
		width: 100%;
	}
	
	.row_2 > div:nth-of-type(n + 2) {
		margin-top: 30px;
	}
}

/*----------------------------------------------------------------------> ▼ .section_title <--*/

.section_title {
	background: #fff;
}

.section_title {
	position: relative;
	margin-top: min(100px, 1.5em);
	margin-bottom: 30px;
	padding: 20px 50px;
	border: 1px solid #226;
	border-radius: var(--border_radius);
	font-size: 36px;
	color: #226;
}

@media (width <= 767px) {
	.section_title {
		padding: 20px 15px 18px 25px;
		border-radius: 15px;
		font-size: 24px;
	}
}

.page_navi > .section_title {
	display: none;
}

/*----------------------------------------------------------------------> ▼ .segment_title <--*/

.segment_title,
.segment_subtitle {
	width: 100%;
	text-align: center;
}
	
.segment_title {
	font-size: 32px;
	margin-left: -3px;
}

.segment_subtitle {
	font-size: 13px;
	color: #aaa;
	letter-spacing: 2px;
}

/*----------------------------------------------------------------------> ▼ .plans <--*/

.plans {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.plans a {
	display: flex;
	align-items: center;
	position: relative;
	aspect-ratio: 16 / 12;
	border: 0px solid #000;
	border-radius: var(--border_radius_light);
	background: #fff;
	box-shadow: 0 0 3px #aaa;
	overflow: hidden;
}

.plans a.soon {
	cursor: auto;
}

.plans a.soon::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	z-index: 90;
}

.plans a.soon::after {
	content: 'お問い合わせ';
	display: block;
	width: 100%;
	opacity: 0;
	z-index: 100;
	font-size: 42px;
	color: #fff;
	text-align: center;
}

.plans .copy,
.plans .title {
	position: absolute;
	left: 0;
	width: 100%;
	padding: 15px 20px;
	z-index: 10;
	font-family: NotoSans-B;
	color: #fff;
	text-shadow: 0 0 5px #000;
}

.plans .copy {	
	top: 0;
	background: rgba(0, 0, 0, 0.5);
	background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}

.plans .title {
	bottom: 0;
	background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.1));
	text-align: center;
}

.plans .background {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	z-index: 1;
}

@media (1281px <= width) {
	.plans a {
		width: calc((100% - 100px) / 3);
		aspect-ratio: 16 / 11;
	}

	.plans a:nth-child(n + 2):not(:nth-child(3n + 1)) {
		margin-left: 50px;
	}
	
	.plans a:nth-child(n + 4) {
		margin-top: 50px;
	}
	
	.plans .copy,
	.plans .title {
		font-size: 24px;
	}
}

@media (1023px <= width <= 1280px) {
	.plans a {
		width: calc((100% - 30px) / 3);
		aspect-ratio: 16 / 10;
	}

	.plans a:nth-child(n + 2):not(:nth-child(3n + 1)) {
		margin-left: 15px;
	}
	
	.plans a:nth-child(n + 4) {
		margin-top: 15px;
	}
	
	.plans .copy,
	.plans .title {
		font-size: 20px;
	}
}

@media (768px <= width <= 1024px) {
	.plans a {
		width: calc((100% - 15px) / 2);
		aspect-ratio: 16 / 9;
	}
	
	.plans a:nth-child(n + 2):not(:nth-child(2n + 1)) {
		margin-left: 15px;
	}
	
	.plans a:nth-child(n + 3) {
		margin-top: 15px;
	}
	
	.plans .copy,
	.plans .title {
		font-size: 20px;
	}
}

@media (width <= 767px) {
	.plans a {
		width: 100%;
		aspect-ratio: 16 / 9;
	}

	.plans a:nth-child(n + 2) {
		margin-top: 15px;
	}
	
	.plans a.soon::beforea {
		background: url(/asset/image/general/soon.png) no-repeat center / 50% auto, rgba(0, 0, 0, 0.3);
		opacity: 1;
	}
	
	.plans .copy,
	.plans .title {
		font-size: 18px;
	}
}

@media (hover: hover) and (pointer: fine) {
	.plans a.soon::before,
	.plans .background {
		transition: var(--transition);
	}
	
	.plans a.soon:hover::before,
	.plans a.soon:hover::after {
		opacity: 1;
	}
	
	.plans a:hover .background {
		transform: scale(1.1);
	}
}

/*----------------------------------------------------------------------> ▼ .visible <--*/

@media (1367px <= width) {
	.visible_1366 {
		display: none;
	}	
}

@media (width <= 1366px) {
	.visible_1366 {
		display: inherit;
	}	
}

@media (1025px <= width) {
	.visible_1024 {
		display: none;
	}	
}

@media (769px <= width) {
	.visible_768,
	.visible_501_768 {
		display: none;
	}
}

@media (501px <= width) {
	.visible_500,
	.small_visible {
		display: none;
	}	
}

@media (width <= 1024px) {
	.visible_1024 {
		display: initial;
	}
}

@media (width <= 768px) {
	.visible_768,
	.visible_500_768 {
		display: initial;
	}
}

@media (width <= 500px) {
	.visible_500,
	.small_visible {
		display: initial;
	}

	.visible_501_768 {
		display: none;
	}
}

@media (401px <= width) {
	.visible_400 {
		display: none;
	} 
}

@media (width <= 400px) {
	.visible_400 {
		display: initial;
	}
}

/*----------------------------------------------------------------------> ▼ .wrap <--*/

.wrap {
	background: #fff;
	z-index: 1;
}

.wrap_button {
	display: flex;
	justify-content: center;
}






