@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Fahkwang&family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* ===============================================
 base
=============================================== */

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	font-size: 1rem;
	color: #000;
	position: relative;
	-webkit-print-color-adjust: exact;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
* {
	box-sizing: border-box;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}
::after, ::before {
	box-sizing: inherit;
}
a, abbr, address, article, aside, audio, blockquote, body, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, iframe, img, ins, label, legend, li, main, mark, nav, ol, p, pre, q, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, video {
	padding: 0;
	margin: 0;
	border: 0;
}
a {
	outline: 0;
	-webkit-touch-callout: none;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
:focus, a:focus {
	outline: 0;
}
a, a:visited {
	color: inherit;
}
article, aside, footer, header, main, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}

img, video {
	max-width: 100%;
}
img {
	vertical-align: top;
	border-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote::after, blockquote::before, q::after, q::before {
	content: none;
}
[hidden] {
	display: none !important;
}
[disabled] {
	cursor: not-allowed;
}
:focus:not(:focus-visible) {
	outline: 0;
}
input[type=date], input[type=email], input[type=number], input[type=password], input[type=tel], input[type=text], input[type=time], textarea {
	-webkit-appearance: none;
	-webkit-tap-highlight-color: transparent;
}
textarea {
	display: block;
}
fieldset {
	margin: 0;
	border: none;
}
legend {
	display: none;
}
table {
	border-spacing: 0;
	border-collapse: collapse;
}
[v-cloak] {
	display: none;
}

/* --- br for PC/SP --- */
.br_pc {
	display: none !important;
}
.br_sp {
	display: inline !important;
}
@media screen and (min-width: 768px){
	.br_pc {
		display: inline !important;
	}
	.br_sp {
		display: none !important;
	}
}

/* ===============================================
 common
=============================================== */

/* link_area
----------------------- */
.link_area a {
	display: block;
	background-color: #000;
	font-size: 14px;
	font-size: 0.875rem;
	color: #fff;
	text-align: center;
	padding: 17px 5px;
	border: 1px solid #000;
	transition: .3s;
}
.link_area a span::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	background-image: url(../images/common/icon_exlink.svg);
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-left: 10px;
}
@media screen and (min-width: 768px){
	.link_area a {
		max-width: 600px;
		margin: 0 auto;
		font-size: 20px;
		font-size: 1.25rem;
		padding: 34px 10px;
	}
	.link_area a span::after {
		width: 20px;
		height: 20px;
		margin-left: 15px;
	}
	.link_area a:hover {
		background-color: #fff;
		color: #000;
		text-decoration: none;
	}
	.link_area a:hover span::after {
		background-image: url(../images/common/icon_exlink_black.svg);
	}
}

/* bnr_area
----------------------- */
.bnr_area a {
	display: block;
	transition: .3s;
}
@media screen and (min-width: 768px){
	.bnr_area a {
		max-width: 600px;
		margin: 0 auto;
	}
	.bnr_area a:hover {
		opacity: 0.7;
	}
}

/* ===============================================
 header
=============================================== */

header {
	position: fixed;
	z-index: 99;
	top: 15px;
	left: 15px;
	width: 130px;
	transition: .3s ease-in 0s;
}
header.is-up {
	opacity: 0;
	pointer-events: none;
}
header.is-down {
	opacity: 1;
	pointer-events: auto;
}
header .pagetop {
	display: block;
}
@media screen and (min-width: 768px){
	header {
		top: 40px;
		left: 40px;
		width: 212px;
	}
}

/* ===============================================
 mv
=============================================== */

.sec_mv {
	position: relative;
}
.mv_ttl {
	position: absolute;
	z-index: 98;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	text-align: center;
}
.mv_logo {
	width: 40vw;
	margin: 0 auto 5.33vw;
}
.mv_logo img {
	filter: drop-shadow(0px 0px 40px rgba(0,0,0,0.05));
}
.mv_txt {
	font-size: 13px;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #fff;
	line-height: 1.8;
	text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 768px){
	.mv_logo {
		width: 15.62vw;
		max-width: 296px;
		margin: 0 auto 40px;
	}
	.mv_txt {
		font-size: 16px;
		font-size: 1rem;
	}
}

/* mv_info
----------------------- */
.mv_info {
	position: absolute;
	z-index: 97;
	bottom: -33px;
	left: 0;
}
.mv_info ul {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: flex-start;
	height: 66px;
	padding: 0 30px;
	background-color: #222;
}
.mv_info li {
	font-size: 12px;
	font-size: 0.75rem;
	color: #fff;
	line-height: 1.8;
}
@media screen and (min-width: 768px){
	.mv_info {
		bottom: -35px;
	}
	.mv_info ul {
		flex-flow: row;
		align-items: center;
		height: 70px;
		padding: 0 50px;
	}
	.mv_info li {
		font-size: 1.24vw;
		line-height: 1;
	}
}
@media screen and (min-width: 1290px){
	.mv_info ul {
		padding: 0 100px;
	}
	.mv_info li {
		font-size: 16px;
		font-size: 1rem;
	}
}

/* #mask01 */
#mask01 {
	overflow: hidden;
	transform: translate3d(0, 0, 0);
}
#mask01 > * {
	position: relative;
	opacity: 0;
	transition: opacity 400ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
	transform: translate3d(0, 0, 0);
	will-change: opacity;
}
#mask01::after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	content: "";
	background-color: #222;
	will-change: transform;
	transform: translate3d(-101%, 0, 0);
}
#mask01.is-show > * {
	opacity: 1;
	transition-delay: 400ms;
}
#mask01.is-show::after {
	animation: boxScrollMaskX 1000ms cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
#mask01.is-show > * {
	transition-delay: 1200ms;
}
#mask01.is-show::after {
	animation-delay: 800ms;
}

@keyframes boxScrollMaskX {
	0% {
		transform: translate3d(-102%, 0, 0);
	}
	48% {
		transform: translate3d(0%, 0, 0);
	}
	52% {
		transform: translate3d(0%, 0, 0);
	}
	100% {
		transform: translate3d(102%, 0, 0);
	}
}

/* mv_scroll
----------------------- */
.mv_scroll {
	position: absolute;
	z-index: 96;
	bottom: 90px;
	right: 20px;
}
.mv_scroll span {
	position: relative;
	font-family: 'Fahkwang', sans-serif;
	font-size: 10px;
	font-size: 0.625rem;
	color: #fff;
	writing-mode: vertical-rl;
}
.mv_scroll span::before {
	content: "";
	position: absolute;
	bottom: -45px;
	right: 4px;
	width: 1px;
	height: 4px;
	background: #fff;
	transform: skewX(-45deg);
}
.mv_scroll span::after {
	content: "";
	position: absolute;
	bottom: -45px;
	right: 6px;
	width: 1px;
	height: 40px;
	background: #fff;
}
@media screen and (min-width: 768px){
	.mv_scroll {
		right: 40px;
	}
	.mv_scroll span {
		font-size: 13px;
		font-size: 0.8125rem;
	}
	.mv_scroll span::before {
		bottom: -45px;
		right: 6px;
		height: 4px;
	}
	.mv_scroll span::after {
		bottom: -45px;
		right: 8px;
		height: 40px;
	}
}

/* swiper
----------------------- */
.mv_inner {
	position: relative;
}
/* pagination */
.mv_inner .swiper-pagination {
	width: fit-content;
	bottom: -35px;
	left: 50%;
	transform: translateX(-50%);
}
.mv_inner .swiper-pagination-bullet-active {
	background-color: #000;
}
@media screen and (min-width: 768px){
	.mv_inner .swiper-pagination {
		bottom: -30px;
		left: auto;
		right: 40px;
		transform: translateX(0%);
	}
}
/* 画像縦横比を保ったまま幅100% */
.mv_inner .swiper {
	position: relative;
	overflow: visible;
}
.mv_inner .swiper::before {
	content: "";
	display: block;
	padding-top: calc(12/7.5*100%); /* 縦/横*100の値を書く */
}
.mv_inner .swiper-wrapper {
	position: absolute !important;
	top: 0;
	left: 0;
	overflow: hidden;
}
.mv_inner .swiper-wrapper img {
	width: calc(100% + 40px);
	max-width: calc(100% + 40px);
	height: auto;
}
@media screen and (min-width: 768px){
	.mv_inner .swiper::before {
		padding-top: calc(9/19.2*100%); /* 縦/横*100の値を書く */
	}
}
/* フェードの動き */
.mv_inner .slide-media img {
	transition: 7s 1s ease-out;
}
.sec_mv .swiper-slide[class*=-active] .slide-media img {
	transition-delay: 0s;
	transform: translate(-30px, 0);
}

/* ===============================================
 style
=============================================== */

.sec_style {
	background-color: #fff;
	padding: 85px 0 15vw;
	overflow: hidden;
}
.style_inner {
	padding: 0 5.33vw;
}
.style_ttl {
	margin: 0 auto 20px;
	font-family: 'Fahkwang', sans-serif;
	font-size: 32px;
	font-size: 2rem;
	font-weight: 400;
	text-align: center;
}
.style_txt {
	font-size: 13px;
	font-size: 0.8125rem;
	line-height: 2;
}
@media screen and (min-width: 768px){
	.sec_style {
		padding: 100px 0;
	}
	.style_inner {
		max-width: calc(100% - 50px);
		margin: 0 auto;
		padding: 0 60px;
	}
	.style_ttl {
		margin: 0 auto 25px;
		font-size: 3.72vw;
	}
	.style_txt {
		font-size: 1.39vw;
	}
}
@media screen and (min-width: 1290px){
	.style_inner {
		max-width: calc(100% - 50px);
		padding: 0 6.4vw;
	}
	.style_ttl {
		font-size: 48px;
		font-size: 3rem;
	}
	.style_txt {
		font-size: 16px;
		font-size: 1rem;
	}
}
@media screen and (min-width: 1500px){
	.style_inner {
		max-width: 1400px;
		padding: 0 60px;
	}
}

/* slide contents
----------------------- */
/* 別ファイル→ - para.css*/

/* ===============================================
 room
=============================================== */

.sec_room {
	background-color: #fff;
	padding: 50px 0 60px;
}
.room_inner {
	padding: 0;
}
.room_ttl {
	margin: 0 auto 25px;
	font-family: 'Fahkwang', sans-serif;
	font-size: 32px;
	font-size: 2rem;
	font-weight: 400;
	text-align: center;
}
@media screen and (min-width: 768px){
	.sec_room {
		padding: 50px 0;
	}
	.room_ttl {
		margin: 0 auto 50px;
		font-size: 3.72vw;
	}
}
@media screen and (min-width: 1290px){
	.room_ttl {
		font-size: 48px;
		font-size: 3rem;
	}
}

/* type A-B-C
----------------------- */
/* ------------------------------------------------------------------------------------ */
.type_wrap {
	position: relative;
	background-color: #ebebeb;
	display: flex;
	flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
	.type_wrap {
		position: relative;
	}
}
.type_wrap::before {
	content: '';
	display: block;
	width: 50vw;
	position: absolute;
	top: 0;
	bottom: 0;
	background: #fff;
	z-index: 0;
}
@media only screen and (max-width: 991px) {
	.type_wrap::before {
		content: none;
	}
}
.type_wrap .type_ttl {
	flex-basis: 100%;
	position: sticky;
	top: 0;
	z-index: 5;
/*	background: #fff;*/
}
@media only screen and (max-width: 767px) {
	.type_wrap .type_ttl {
		position: static;
	}
}
.type_wrap .type_ttl .type_ttl_inner {
	padding: 40px 25px 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
@media only screen and (max-width: 1290px) {
	.type_wrap .type_ttl .type_ttl_inner {
		padding: 3.10vw 25px 3.72vw;
	}
}
@media only screen and (max-width: 767px) {
	.type_wrap .type_ttl .type_ttl_inner {
		padding: 25px;
	}
}
.type_wrap .type_ttl .type_ttl_inner::after {
	content: '';
	display: block;
	width: 100vw;
	height: calc(100% - 1px);
	margin: 0 auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #000;
	z-index: -1;
	transition: all .3s;
/*	border-bottom: 1px solid #fff;*/
}
.type_wrap .type_ttl .type_ttl_inner ul {
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.type_wrap .type_ttl .type_ttl_inner ul li {
	color: #fff;
	font-family: 'Fahkwang', sans-serif;
	font-size: 34px;
	font-size: 2.125rem;
	line-height: 1;
}
.type_wrap .type_ttl .type_ttl_inner ul li:first-child {
	font-size: 48px;
	font-size: 3rem;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 15px 0 0;
}
.type_wrap .type_ttl .type_ttl_inner ul li:first-child::after {
	content: "";
	background-color: #fff;
	width: 100px;
	height: 1px;
	transform: rotate(-25deg);
	margin: 0 0 0 25px;
}
@media only screen and (max-width: 1290px) {
	.type_wrap .type_ttl .type_ttl_inner ul li {
		font-size: 2.63vw;
	}
	.type_wrap .type_ttl .type_ttl_inner ul li:first-child {
		font-size: 3.72vw;
	}
	.type_wrap .type_ttl .type_ttl_inner ul li:first-child::after {
		width: 7.75vw;
		margin: 0 0 0 25px;
	}
}
@media only screen and (max-width: 767px) {
	.type_wrap .type_ttl .type_ttl_inner ul li {
		font-size: 16px;
		font-size: 1rem;
	}
	.type_wrap .type_ttl .type_ttl_inner ul li:first-child {
		font-size: 25px;
		font-size: 1.5625rem;
	}
	.type_wrap .type_ttl .type_ttl_inner ul li:first-child::after {
		width: 50px;
		margin: 0 0 0 15px;
	}
}
.type_wrap .madori_wrap {
	flex-basis: 50%;
	width: 50%;
}
@media only screen and (max-width: 991px) {
	.type_wrap .madori_wrap {
		flex-basis: 300px;
	}
}
@media only screen and (max-width: 767px) {
	.type_wrap .madori_wrap {
		flex-basis: 50vw;
	}
}
.type_wrap .madori_wrap ol {
	position: sticky;
	top: 0;
	background: #fff;
	display: flex;
	align-items: center;
	height: 100vh;
	transition: 0.3s ease-in 0s;
}
@media only screen and (max-width: 991px) {
	.type_wrap .madori_wrap ol {
		height: 300px;
		z-index: 9;
		opacity: 0;
		clip-path: inset(0 0 0 0);
		border-radius: 0 0 10px 0;
	}
}
@media only screen and (max-width: 767px) {
	.type_wrap .madori_wrap ol {
		height: 60vw;
		width: 220px;
		max-height: 999px;
	}
}
.type_wrap .madori_wrap ol li {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	left: 0;
	padding: 0 12%;
	transition: 0.2s ease-in 0s;
}
.type_wrap .madori_wrap ol li figure {
	position: relative;
}
.type_wrap .madori_wrap ol li figure::after {
	content: '参考間取図\A※画像はすべてイメージとなります。\A※家具や備品などは備え付けではございません';
	display: block;
	position: absolute;
	bottom: -90px;
	left: 40px;
	font-size: 14px;
	font-size: 0.875rem;
	white-space: pre;
}
#type_c .madori_wrap ol li figure::after {
	bottom: -60px;
}
.type_wrap .spec_wrap {
	flex: 1;
	width: 50%;
}
@media only screen and (max-width: 991px) {
	.type_wrap .spec_wrap {
		margin-left: -300px;
	}
}
@media only screen and (max-width: 767px) {
	.type_wrap .spec_wrap {
		margin-left: -50vw;
	}
}
.type_wrap .spec_wrap>figure {
	padding: 30px 30px 90px;
	background: #fff;
	position: relative;
}
.type_wrap .spec_wrap>figure::after {
	content: '参考間取図\A※画像はすべてイメージとなります。\A※家具や備品などは備え付けではございません';
	display: block;
	position: absolute;
	bottom: 30px;
	left: 30px;
	font-size: 10px;
	font-size: 0.625rem;
	white-space: pre;
}
@media only screen and (min-width: 992px) {
	.type_wrap .spec_wrap>figure {
		display: none !important;
	}
}
.type_wrap .spec_wrap img {
	width: 100%;
}
.type_wrap .spec_wrap .spec_inner_wrap {
	padding: 100px 100px 120px;
}
@media only screen and (max-width: 1289px) {
	.type_wrap .spec_wrap .spec_inner_wrap {
		padding: 60px 60px 80px;
	}
}
@media only screen and (max-width: 767px) {
	.type_wrap .spec_wrap .spec_inner_wrap {
		padding: 40px 5.33vw 50px;
	}
}
.type_wrap .spec_wrap .spec_inner_wrap p {
	font-size: 1.24vw;
	line-height: 1.8;
}
@media only screen and (max-width: 767px) {
	.type_wrap .spec_wrap .spec_inner_wrap p {
		font-size: 13px;
		font-size: 0.8125rem;
		line-height: 2;
	}
}
@media screen and (min-width: 1290px){
	.type_wrap .spec_wrap .spec_inner_wrap p {
		font-size: 16px;
		font-size: 1rem;
	}
}
.type_wrap .spec_wrap .spec_inner_wrap ul {
	margin-top: 80px;
}
@media only screen and (max-width: 1290px) {
	.type_wrap .spec_wrap .spec_inner_wrap ul {
		margin-top: 6.2vw;
	}
}
@media only screen and (max-width: 767px) {
	.type_wrap .spec_wrap .spec_inner_wrap ul {
		margin-top: 30px;
	}
}
.type_wrap .spec_wrap .spec_inner_wrap ul li {
	margin-bottom: 90px;
}
.type_wrap .spec_wrap .spec_inner_wrap ul li:last-child {
	margin-bottom: 0;
}
@media only screen and (max-width: 1290px) {
	.type_wrap .spec_wrap .spec_inner_wrap ul li {
		margin-bottom: 6.97vw;
	}
}
@media only screen and (max-width: 767px) {
	.type_wrap .spec_wrap .spec_inner_wrap ul li {
		margin-bottom: 25px;
	}
}
.type_wrap .spec_wrap .spec_inner_wrap ul li img {
	opacity: 0;
}

/* ------------------------------------------------------------------------------------ */

/* info for all types
----------------------- */
.room_info {
	padding: 0 5.33vw;
	background: linear-gradient(180deg, #ebebeb 0%, #ebebeb 50%, #fff 50%, #fff 100%);
}
@media screen and (min-width: 768px){
	.room_info {
		padding: 0 50px;
		position: relative;
		z-index: 2;
	}
	.room_info::after {
		content: '';
		display: block;
		width: 50%;
		height: 100%;
		margin: 0 auto;
		position: absolute;
		top: 0;
		right: 50%;
		bottom: 0;
		left: 0;
		background: #fff;
		z-index: -1;
	}
}
.room_info_inner {
	background-color: #222;
	text-align: center;
	padding: 35px 20px 50px;
}
@media screen and (min-width: 768px){
	.room_info_inner {
		padding: 3.87vw 1.55vw 3.1vw;
	}
}
@media screen and (min-width: 1290px){
	.room_info_inner {
		padding: 50px 20px 40px;
	}
}
.room_info_ttl {
	background-color: #fff;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 500;
	display: inline-block;
	padding: 7px 40px 9px;
}
@media screen and (min-width: 768px){
	.room_info_ttl {
		font-size: 1.86vw;
		padding: 7px 3.1vw 9px;
	}
}
@media screen and (min-width: 1290px){
	.room_info_ttl {
		font-size: 20px;
		font-size: 1.25rem;
		padding: 7px 40px 9px;
	}
}
.room_info_wrap {
	color: #fff;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}
.room_info_item {
	margin: 45px auto 0;
}
.room_info_txt li {
	font-size: 13px;
	font-size: 0.8125rem;
	line-height: 1.8;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}
.room_info_txt li:first-child {
	font-family: 'Fahkwang', sans-serif;
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 1.4;
}
.room_info_txt li:first-child::after {
	content: "";
	background-color: #fff;
	width: 40px;
	height: 1px;
	transform: rotate(-25deg);
	margin: 20px 0;
}
@media screen and (min-width: 768px){
	.room_info_wrap {
		flex-flow: row;
		justify-content: space-between;
		align-items: flex-start;
		margin: 50px auto 10px;
		max-width: 1290px;
		padding: 0 25px;
	}
	.room_info_item {
		margin: 0 auto;
	}
	.room_info_txt li:first-child::after {
		width: 50px;
		margin: 25px 0;
	}
	.room_info_txt li {
		font-size: 1.39vw;
	}
	.room_info_txt li:first-child {
		font-size: 2vw;
	}
}
@media screen and (min-width: 1290px){
	.room_info_txt li {
		font-size: 16px;
		font-size: 1rem;
	}
	.room_info_txt li:first-child {
		font-size: 25px;
		font-size: 1.5625rem;
	}
}

/* ===============================================
 floormap
=============================================== */

.sec_floormap {
	background-color: #ebebeb;
	padding: 50px 0;
}
.floormap_inner {
	padding: 0;
}
.floormap_ttl {
	margin: 0 auto 25px;
	font-family: 'Fahkwang', sans-serif;
	font-size: 32px;
	font-size: 2rem;
	font-weight: 400;
	text-align: center;
}
.floormap_img li {
	width: 85.33vw;
	margin: 0 auto 30px;
	text-align: center;
}
.floormap_img li:last-child {
	margin: 0 auto;
}
.floormap_img li p {
	font-family: 'Fahkwang', sans-serif;
	font-size: 10px;
	font-size: 0.625rem;
	margin: 10px auto 0;
}
.floormap_img li:first-child p {
	margin: 2px auto 0;
}
@media screen and (min-width: 768px){
	.sec_floormap {
		padding: 70px 2vw 60px 5vw;
	}
	.floormap_ttl {
		margin: 0 auto 50px;
		font-size: 3.72vw;
	}
	.floormap_img {
		display: flex;
		justify-content: space-between;
	}
	.floormap_img li {
		width: 24%;
		margin: 0 auto;
		padding: 0 0 35px;
		position: relative;
	}
	.floormap_img li p {
		font-size: 15px;
		font-size: 0.9375rem;
		margin: 0 auto;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	.floormap_img li:first-child p {
		margin: 0 auto;
	}
}
@media screen and (min-width: 1290px){
	.floormap_ttl {
		font-size: 48px;
		font-size: 3rem;
	}
}

/* ===============================================
 data
=============================================== */

.sec_data {
	background-color: #fff;
	padding: 50px 0 60px;
}
.data_inner {
	padding: 0 5.33vw;
}
.data_ttl {
	margin: 0 auto 30px;
	font-family: 'Fahkwang', sans-serif;
	font-size: 32px;
	font-size: 2rem;
	font-weight: 400;
	text-align: center;
}
.data_table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
	border-top: 1px solid #808080;;
}
.data_table tr {
	border-bottom: 1px solid #808080;;
}
.data_table th{
	background-color: #222;
	color: #ccc;
	font-size: 13px;
	font-size: 0.8125rem;
	font-weight: 400;
	text-align: center;
	padding: 15px 25px;
	white-space: nowrap;
}
.data_table td{
	background-color: #fff;
	font-size: 13px;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.8;
	padding: 15px 25px;
}
@media screen and (min-width: 768px){
	.sec_data {
		padding: 120px 0 135px;
	}
	.data_inner {
		max-width: 1220px;
		margin: 0 auto;
		padding: 0 60px;
	}
	.data_ttl {
		margin: 0 auto 50px;
		font-size: 3.72vw;
	}
	.data_table th{
		font-size: 1.39vw;
		padding: 17px 70px;
	}
	.data_table td{
		font-size: 1.39vw;
		padding: 17px 70px;
	}
}
@media screen and (min-width: 1290px){
	.data_ttl {
		font-size: 48px;
		font-size: 3rem;
	}
	.data_table th{
		font-size: 16px;
		font-size: 1rem;
	}
	.data_table td{
		font-size: 16px;
		font-size: 1rem;
	}
}

/* ===============================================
 location
=============================================== */

.sec_location {
	background-color: #ebebeb;
	padding: 0;
}
.location_inner {
	padding: 0;
}
.location_txt_block {
	padding: 60px 5.33vw 45px;
}
.location_img_block {
	position: relative;
}
.location_ttl {
	margin: 0 auto 20px;
	font-family: 'Fahkwang', sans-serif;
	font-size: 32px;
	font-size: 2rem;
	font-weight: 400;
	text-align: center;
}
.location_subttl {
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.6;
	margin: 0 auto 15px;
}
.location_txt {
	font-size: 13px;
	font-size: 0.8125rem;
	line-height: 2;
}
@media screen and (min-width: 768px){
	.location_inner {
		max-width: 1400px;
		margin: 0 auto;
		padding: 0 0 90px;
		display: flex;
		justify-content: space-between;
		align-items: start;
		flex-direction: row-reverse;
	}
	.location_txt_block {
		width: 46.42%;
		max-width: 650px;
		padding: 6.2vw 4.65vw 0;
	}
	.location_img_block {
		width: 53.57%;
		max-width: 750px;
		padding: 0;
	}
	.location_ttl {
		margin: 0 auto 3.1vw;
		font-size: 3.72vw;
		text-align: left;
	}
	.location_subttl {
		font-size: 1.7vw;
		margin: 0 auto 1.55vw;
	}
	.location_txt {
		font-size: 1.39vw;
	}
}
@media screen and (min-width: 1290px){
	.location_txt_block {
		padding: 80px 60px 0;
	}
	.location_ttl {
		font-size: 48px;
		font-size: 3rem;
	}
	.location_subttl {
		font-size: 24px;
		font-size: 1.375rem;
		margin: 0 auto 20px;
	}
	.location_txt {
		font-size: 16px;
		font-size: 1rem;
	}
}

/* swiper
----------------------- */
/* pagination */

.sec_location .swiper {
	overflow: visible;
}
.sec_location .swiper-pagination {
	width: fit-content;
	bottom: -30px;
	left: auto;
	right: 5.33vw;
}
.sec_location .swiper-pagination-bullet-active {
	background-color: #000;
}
@media screen and (min-width: 768px){
	.sec_location .swiper-pagination {
		right: 10px;
	}
}
/* 画像縦横比を保ったまま幅100% */
.sec_location .swiper {
	position: relative;
}
.sec_location .swiper::before {
	content: "";
	display: block;
	padding-top: calc(10/15*100%); /* 縦/横*100の値 */
}
.sec_location .swiper-wrapper {
	position: absolute !important;
	top: 0;
	left: 0;
}
.sec_location .swiper-wrapper img {
	width: 100%;
	height: auto;
}
/* フェードの動き */
.sec_location .slide-media img {
	transition: 7s 1s ease-out;
}

/* ===============================================
 map
=============================================== */

.sec_map {
	background-color: #fff;
	padding: 0;
}
.map_inner {
	padding: 0;
}
.map_inner iframe {
	width: 100%;
	height: 300px;
}
.map_inner .link_area {
	padding: 50px 5.33vw 60px;
}
.map_inner .bnr_area {
	padding: 50px 5.33vw 60px;
}
@media screen and (min-width: 768px){
	.map_inner iframe {
		height: 600px;
	}
	.map_inner .link_area {
		max-width: 1400px;
		margin: 0 auto;
		padding: 100px 60px 120px;
	}
	.map_inner .bnr_area {
		max-width: 1400px;
		margin: 0 auto;
		padding: 100px 60px 120px;
	}
}

/* ===============================================
 instagram
=============================================== */

.sec_instagram {
	background-color: #ebebeb;
	padding: 50px 0;
}
.instagram_inner {
	padding: 0;
}
.instagram_inner iframe {
	width: 76%;
	margin: 0 12%;
}
@media screen and (min-width: 768px){
	.sec_instagram {
		padding: 100px 0;
	}
	.instagram_inner iframe {
		width: 60%;
		margin: 0 20%;
	}
}

/* ===============================================
 footer
=============================================== */

/* totop */
footer .pagetop {
	display: block;
	background-color: #333;
	width: 100%;
	height: 45px;
	position: relative;
}
footer .pagetop::before {
	content: "";
	position: absolute;
	left: 50%;
	top: calc(50% + 3.6px);
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (min-width: 768px){
	footer .pagetop {
		display: none;
	}
}

/* footer_info
----------------------- */
.footer_info {
	background-color: #222;
	color: #fff;
	text-align: center;
}
.footer_info_inner {
	width: 100%;
	padding: 50px 20px 30px;
}
.footer_logo {
	width: 28vw;
	max-width: 105px;
	margin: 0 auto 25px;
}
.footer_txt {
	font-size: 13px;
	font-size: 0.8125rem;
	line-height: 1.8;
	margin: 0 auto 15px;
}
.footer_address {
	font-size: 10px;
	font-size: 0.625rem;
}
@media screen and (min-width: 768px){
	.footer_info_inner {
		max-width: 1400px;
		margin: 0 auto;
		padding: 60px 60px 40px;
	}
	.footer_logo {
		width: 140px;
		max-width: none;
		margin: 0 auto 40px;
	}
	.footer_txt {
		font-size: 16px;
		font-size: 1rem;
		margin: 0 auto 20px;
	}
	.footer_address {
		font-size: 14px;
		font-size: 0.875rem;
	}
}

/* footer_copy
----------------------- */
.footer_copy {
	background-color: #000;
	color: #fff;
	font-size: 10px;
	font-size: 0.625rem;
	text-align: center;
}
.footer_copy_inner {
	width: 100%;
	padding: 20px;
}
.footer_copy ul {
	display: flex;
	justify-content: center;
	margin: 0 0 10px;
}
.footer_copy ul li:first-child {
	margin-right: 2em;
}
@media screen and (min-width: 768px){
	.footer_copy {
		font-size: 14px;
		font-size: 0.875rem;
	}
	.footer_copy_inner {
		max-width: 1400px;
		margin: 0 auto;
		padding: 50px 60px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.footer_copy ul {
		margin: 0;
	}
}

/* +++ */

