@charset "utf-8";

h1,
h2,
h3,
h4,
h5,
h6,
strong,
th {
	font-weight: normal;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

/*displaynone
-----------------------------------*/
@media only screen and (max-width: 1024px) {
	.pc {
		display: none;
	}
}
@media only screen and (min-width: 1025px) {
	.sp {
		display: none;
	}
}

/*-----------------------------------
MV
-----------------------------------*/
.sw-PageIntro {
	height: 800px;
	background-image: url(../img/mv_pc.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
@media only screen and (max-width: 1024px) {
	.sw-PageIntro {
		height: 335px;
		background-image: url(../img/mv_sp.jpg);
	}
}

/*-----------------------------------
MainTitle
-----------------------------------*/
.sw-MainTitle .and {
	font-family: "Noto Serif JP", serif;
	font-size: 40px;
}
@media only screen and (max-width: 1024px) {
	.sw-MainTitle {
		text-align: center;
	}
	.sw-MainTitle .en_hand {
		font-size: 24px;
	}
	.sw-MainTitle .and {
		font-size: 20px;
	}
	.sw-MainTitle .min {
		font-size: 14px;
		display: block;
		padding-top: 10px;
	}
}

/*-----------------------------------
共通
-----------------------------------*/
.st-Content_Wrapper .in {
	width: 100%;
	max-width: 1160px;
	margin: auto;
}

/* セクションタイトル */
.st-Content_Wrapper .sec_tit_wrap .sec_tit {
	text-align: center;
	font-family: "Noto Serif JP", serif;
	font-size: 16px;
	font-weight: 400;
	padding-bottom: 74px;
}
@media only screen and (max-width: 1024px) {
	.st-Content_Wrapper .sec_tit_wrap .sec_tit {
		font-size: 17px;
		padding-bottom: 36px;
	}
}

.st-Content_Wrapper .sec_tit_wrap .sec_tit[data-txt]::before {
	content: attr(data-txt);
	display: block;
	text-align: center;
	font-family: 'Meddon', cursive;
	font-size: 48px;
	color: #21377D;
}
@media only screen and (max-width: 1024px) {
	.st-Content_Wrapper .sec_tit_wrap .sec_tit[data-txt]::before {
		font-size: 36px;
	}
}

/* 画像 */
.st-Content_Wrapper .cover {
	overflow: hidden;
	display: block;
}

.st-Content_Wrapper .cover img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*-----------------------------------
introduction
-----------------------------------*/
.introduction {
	padding: 120px 0 0;
	background-image: url(../img/intro_bg.png);
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 1400px auto;
}
@media only screen and (max-width: 1024px) {
	.introduction {
		padding: 60px 0 0;
		background-size: 100% auto;
	}
}

.introduction .sec_tit {
	text-align: center;
	font-family: "Noto Serif JP", serif;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.05em;
	padding-bottom: 60px;
}
@media only screen and (max-width: 1024px) {
	.introduction .sec_tit {
		font-size: 20px;
		padding-bottom: 30px;
	}
}

/* 例 */
.introduction .case_study_list .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media only screen and (max-width: 1024px) {
	.introduction .case_study_list .list {
		justify-content: center;
		gap: 5px;
	}
}

.introduction .case_study_list .list .detail {
	width: 117px;
	height: 117px;
	border-radius: 50%;
	background-image: url(../img/intro_case_study_bg.png);
	background-position: center;
	background-size: cover;
	position: relative;
}
@media only screen and (max-width: 1024px) {
	.introduction .case_study_list .list .detail {
		width: 65px;
		height: 65px;
		margin-bottom: 5px;
	}
}

.introduction .case_study_list .list .detail span {
	display: block;
	text-align: center;
	font-family: "Noto Serif JP", serif;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.10em;
	color: #FFF;
	line-height: 117px;
}
@media only screen and (max-width: 1024px) {
	.introduction .case_study_list .list .detail span {
		font-size: 13px;
		line-height: 65px;
	}
}

/* アンカーリンク */
.introduction .anc_link_wrap {
	padding-top: 80px;
}
@media only screen and (max-width: 1024px) {
	.introduction .anc_link_wrap {
		padding-top: 35px;
		max-width: 270px;
		margin: auto;
	}
}

.introduction .anc_link_wrap .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.introduction .anc_link_wrap .list .link {
	width: 100%;
	max-width: 337px;
}
@media only screen and (max-width: 1024px) {
	.introduction .anc_link_wrap .list .link {
		max-width: 100%;
		padding-bottom: 16px;
	}
}

.introduction .anc_link_wrap .list .link a {
	display: block;
	border: 2px solid #21377D;
	background-color: #FFF;
	color: #21377D;
	line-height: 0;
	padding: 32.5px 0;
	position: relative;
	text-align: center;
	transition: all 0.3s;
}
@media only screen and (max-width: 1024px) {
	.introduction .anc_link_wrap .list .link a {
		border: 1px solid #21377D;
		padding: 28px 0;
	}
}

.introduction .anc_link_wrap .list .link a::after {
	content: "";
	width: 15px;
	height: 10px;
	background-image: url(../img/icon_anc_arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
}
@media only screen and (max-width: 1024px) {
	.introduction .anc_link_wrap .list .link a::after {
		width: 12px;
		height: 6px;
		right: 20px;
	}
}

.introduction .anc_link_wrap .list .link a:hover {
	background-color: #21377D;
	color: #FFF;
}

.introduction .anc_link_wrap .list .link a:hover::after {
	top: 53%;
	background-image: url(../img/icon_anc_arrow_on.svg);
}

.introduction .anc_link_wrap .list .link a span {
	font-family: "Noto Serif JP", serif;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.10em;
}
@media only screen and (max-width: 1024px) {
	.introduction .anc_link_wrap .list .link a span {
		font-size: 16px;
	}
}


/*-----------------------------------
Party 宴会
-----------------------------------*/
.party {
	padding-top: 160px;
}
@media only screen and (max-width: 1024px) {
	.party {
		padding-top: 60px;
	}
}

/* 各ボックス */
.party .party_box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-right: 60px;
	padding-bottom: 120px;
}
@media only screen and (max-width: 1024px) {
	.party .party_box {
		display: block;
		padding: 0 20px 60px;
	}
}

.party .party_box .ph_wrap {
	width: 516px;
	height: 353px;
}
@media only screen and (max-width: 1024px) {
	.party .party_box .ph_wrap {
		display: block;
		width: 100%;
		height: 61.06vw;
	}
}

.party .party_box .txt_box {
	width: 100%;
	max-width: 504px;
}
@media only screen and (max-width: 1024px) {
	.party .party_box .txt_box {
		max-width: 100%;
		padding-top: 30px;
	}
}

.party .party_box .txt_box .cat_wrap {
	display: flex;
	padding-bottom: 24px;
}
@media only screen and (max-width: 1024px) {
	.party .party_box .txt_box .cat_wrap {
		padding-bottom: 15px;
	}
}

.party .party_box .txt_box .cat_wrap .cat {
	font-family: "Noto Serif JP", serif;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	color: #FFF;
	margin-right: 8px;
	background-color: #21377D;
	padding: 4px 16px;
	border-radius: 30px;
}
@media only screen and (max-width: 1024px) {
	.party .party_box .txt_box .cat_wrap .cat {
		font-size: 15px;
		margin-right: 6px;
		padding: 3px 12px;
	}
}

.party .party_box .txt_box .tit {
	font-family: "Noto Serif JP", serif;
	font-size: 28px;
	font-weight: 500;
	color: #21377D;
}
@media only screen and (max-width: 1024px) {
	.party .party_box .txt_box .tit {
		font-size: 21px;
	}
}

.party .party_box .txt_box .info_wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.party .party_box .txt_box .info_wrap .info_box {
	margin-top: 45px;
	width: 100%;
	max-width: 232px;
}
@media only screen and (max-width: 1024px) {
	.party .party_box .txt_box .info_wrap .info_box {
		margin-top: 26px;
		max-width: 100%;
	}
}

.party .party_box .txt_box .info_wrap .info_box.-full {
	max-width: 100%;
}

.party .party_box .txt_box .info_wrap .info_box .info_tit {
	font-family: "Noto Serif JP", serif;
	font-size: 16px;
	font-weight: 400;
	color: #21377D;
	padding-bottom: 10px;
	border-bottom: 1px solid #21377D;
	margin-bottom: 20px;
	position: relative;
}
@media only screen and (max-width: 1024px) {
	.party .party_box .txt_box .info_wrap .info_box .info_tit {
		font-size: 15px;
		margin-bottom: 15px;
	}
}

.party .party_box .txt_box .info_wrap .info_box .txt {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
}

.party .party_box .txt_box .info_wrap .info_box.-acc .info_tit i {
	width: 12px;
	height: 12px;
	position: absolute;
	right: 10px;
	top: 5px;
}

.party .party_box .txt_box .info_wrap .info_box.-acc .info_tit i::before {
	content: "";
	width: 100%;
	height: 1px;
	background-color: #21377D;
	position: absolute;
	top: calc(50% - 0.5px);
	left: 0;
}

.party .party_box .txt_box .info_wrap .info_box.-acc .info_tit {
	cursor: pointer;
}

.party .party_box .txt_box .info_wrap .info_box.-acc .info_tit i::after {
	content: "";
	width: 1px;
	height: 100%;
	background-color: #21377D;
	position: absolute;
	top: 0;
	left: 50%;
	transition: all 0.3s;
}

.party .party_box .txt_box .info_wrap .info_box.-acc.-open .info_tit i::after {
	transform: rotate(90deg);
}

.party .party_box .txt_box .info_wrap .contact_btn {
	padding-top: 40px;
	width: 100%;
	max-width: 306px;
	margin: auto;
}
@media only screen and (max-width: 1024px) {
	.party .party_box .txt_box .info_wrap .contact_btn {
		padding-top: 20px;
		max-width: 270px;
	}
}

.party .party_box .txt_box .info_wrap .contact_btn a {
	display: block;
	background-color: #C2A35F;
	line-height: 0;
	padding: 29px 0;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	color: #FFF;
	position: relative;
	transition: all 0.3s;
}
@media only screen and (max-width: 1024px) {
	.party .party_box .txt_box .info_wrap .contact_btn a {
		padding: 26px 0;
		font-size: 15px;
	}
}

.party .party_box .txt_box .info_wrap .contact_btn a:hover {
	opacity: 0.7;
}

.party .party_box .txt_box .info_wrap .contact_btn a::after {
	content: "";
	width: 30px;
	height: 5px;
	background-image: url(../img/icon_link_arrow_white.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 13px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
}
@media only screen and (max-width: 1024px) {
	.party .party_box .txt_box .info_wrap .contact_btn a::after {
		right: 7px;
	}
}

@media only screen and (min-width: 1025px) {
	.party .party_box .txt_box .info_wrap .contact_btn a:hover::after {
		right: 10px;
	}
}

.party .party_plan_wrap {
	max-width: 1040px;
	margin: auto;
	border: 1px solid #21377D;
	padding: 55px 0;
	text-align: center;
}
@media only screen and (max-width: 1024px) {
	.party .party_plan_wrap {
		max-width: calc(100% - 60px);
		padding: 25px 0;
	}
}

.party .party_plan_wrap .tit {
	font-family: "Noto Serif JP", serif;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: #21377D;
	text-align: center;
	padding-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
	.party .party_plan_wrap .tit {
		font-size: 20px;
		line-height: 1.8;
		padding-bottom: 10px;
	}
}

.party .party_plan_wrap .caption {
	font-family: "Noto Serif JP", serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.10em;
	padding-bottom: 35px;
}
@media only screen and (max-width: 1024px) {
	.party .party_plan_wrap .caption {
		font-size: 13px;
		padding-bottom: 20px;
	}
}

.party .party_plan_wrap .dl_btn {
	max-width: 337px;
	margin: auto;
}
@media only screen and (max-width: 1024px) {
	.party .party_plan_wrap .dl_btn {
		max-width: 270px;
	}
}

.party .party_plan_wrap .dl_btn a {
	display: block;
	line-height: 0;
	padding: 35px 0;
	text-align: center;
	font-family: "Noto Serif JP", serif;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.10em;
	color: #FFF;
	background-image: url(../img/btn_deco_bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
@media only screen and (max-width: 1024px) {
	.party .party_plan_wrap .dl_btn a {
		padding: 26px 0;
		font-size: 16px;
	}
}

.party .party_plan_wrap .dl_btn a:hover {
	opacity: 0.7;
}

.party .party_plan_wrap .dl_btn a::after {
	content: "";
	width: 29px;
	height: 29px;
	background-image: url(../img/icon_dl.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
}
@media only screen and (max-width: 1024px) {
	.party .party_plan_wrap .dl_btn a::after {
		width: 23px;
		height: 23px;
		right: 20px;
	}
}

/* ドリンク */
.party .drink_wrap {
	margin: 80px auto 0;
	max-width: 1040px;
	background-color: #F3F7FF;
	padding: 40px 57px 20px;
	box-sizing: border-box;
}
@media only screen and (max-width: 1024px) {
	.party .drink_wrap {
		margin: 40px auto 0;
		max-width: calc(100% - 40px);
		padding: 25px 20px 0;
	}
}

.st-Content_Wrapper .party .drink_wrap .sec_tit_wrap .sec_tit {
	padding-bottom: 30px;
}

.st-Content_Wrapper .party .drink_wrap .sec_tit_wrap .sec_tit[data-txt]::before {
	font-size: 28px;
}

.party .drink_wrap .drink_box {
	padding-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
	.party .drink_wrap .drink_box {
		padding-bottom: 35px;
	}
}

.party .drink_wrap .drink_box .price {
	font-family: "Noto Serif JP", serif;
	font-size: 20px;
	font-weight: 500;
	color: #21377D;
	padding-bottom: 10px;
	border-bottom: 1px solid #D0DDFF;
}
@media only screen and (max-width: 1024px) {
	.party .drink_wrap .drink_box .price {
		font-size: 19px;
		border-bottom: 1px solid #21377D;
	}
}

.party .drink_wrap .drink_box .price span {
	font-size: 16px;
}
@media only screen and (max-width: 1024px) {
	.party .drink_wrap .drink_box .price span {
		font-size: 15px;
	}
}

.party .drink_wrap .drink_box .txt {
	font-size: 14px;
	font-weight: 400;
	padding-top: 20px;
}
@media only screen and (max-width: 1024px) {
	.party .drink_wrap .drink_box .txt {
		line-height: 1.6;
		padding-top: 10px;
	}
}

.party .tax_caption {
	padding-top: 40px;
	text-align: center;
}
@media only screen and (max-width: 1024px) {
	.party .tax_caption {
		padding-top: 30px;
	}
}

.party .tax_caption .txt {
	font-family: "Noto Serif JP", serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.10em;
}
@media only screen and (max-width: 1024px) {
	.party .tax_caption .txt {
		font-size: 13px;
		line-height: 1.8;
	}
}


/*-----------------------------------
Mice 会議・会場
-----------------------------------*/
.mice {
	padding-top: 120px;
}
@media only screen and (max-width: 1024px) {
	.mice {
		padding-top: 60px;
	}
}

.mice .bg_in {
	background-color: #F4F4F2;
	padding: 70px 0 80px;
	position: relative;
	z-index: -1;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in {
		padding: 35px 0 40px;
	}
}

.mice .bg_in .sec_tit_wrap .sec_tit {
	padding-bottom: 55px;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .sec_tit_wrap .sec_tit {
		padding-bottom: 25px;
	}
}

.mice .bg_in .mice_list_wrap .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .mice_list_wrap .list {
		display: block;
		padding: 0 20px;
	}
}

.mice .bg_in .mice_list_wrap .list .detail {
	width: 100%;
	max-width: 367px;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .mice_list_wrap .list .detail {
		max-width: 100%;
		padding-bottom: 32px;
	}
}

.mice .bg_in .mice_list_wrap .list .detail .ph_wrap {
	width: 100%;
	height: 240px;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .mice_list_wrap .list .detail .ph_wrap {
		height: 58.40vw;
	}
}

.mice .bg_in .mice_list_wrap .list .detail .txt_box {
	background-color: #FFF;
	padding: 30px 20px;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .mice_list_wrap .list .detail .txt_box {
		padding: 35px 20px;
	}
}

.mice .bg_in .mice_list_wrap .list .detail .txt_box .mice_tit {
	font-family: "Noto Serif JP", serif;
	font-size: 16px;
	text-align: center;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .mice_list_wrap .list .detail .txt_box .mice_tit {
		font-size: 15px;
	}
}

.mice .bg_in .mice_list_wrap .list .detail .txt_box .mice_tit[data-txt]::before {
	content: attr(data-txt);
	display: block;
	text-align: center;
	font-family: 'Meddon', cursive;
	font-size: 28px;
	color: #21377D;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .mice_list_wrap .list .detail .txt_box .mice_tit[data-txt]::before {
		font-size: 21px;
	}
}

.mice .bg_in .mice_list_wrap .list .detail .txt_box .info_box {
	margin-top: 36px;
}

.mice .bg_in .mice_list_wrap .list .detail .txt_box .info_box .info_tit {
	width: 100%;
	font-family: "Noto Serif JP", serif;
	font-size: 16px;
	font-weight: 400;
	color: #21377D;
	padding-bottom: 10px;
	border-bottom: 1px solid #21377D;
	margin-bottom: 20px;
	position: relative;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .mice_list_wrap .list .detail .txt_box .info_box .info_tit {
		font-size: 19px;
		margin-bottom: 10px;
	}
}

.mice .bg_in .mice_list_wrap .list .detail .txt_box .info_box .txt {
	font-family: "Noto Serif JP", serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
}

.mice .bg_in .mice_list_wrap .list .detail .txt_box .info_box.-flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.mice .bg_in .mice_list_wrap .list .detail .txt_box .info_box.-flex .left_box {
	width: 40%;
}

.mice .bg_in .mice_list_wrap .list .detail .txt_box .info_box.-flex .right_box {
	width: 60%;
}

.mice .bg_in .mice_list_wrap .mice_caption {
	padding-top: 40px;
	text-align: center;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .mice_list_wrap .mice_caption {
		text-align: left;
		padding: 0 20px;
	}
}

.mice .bg_in .mice_list_wrap .mice_caption .txt {
	font-family: "Noto Serif JP", serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.10em;
	line-height: 1.8;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .mice_list_wrap .mice_caption .txt {
		font-size: 13px;
		line-height: 1.8;
		text-indent: -13px;
		margin-left: 13px;
	}
}

/* フロアマップ */
.mice .bg_in .mice_floor {
	width: 100%;
	max-width: 800px;
	margin: 80px auto 0;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .mice_floor {
		max-width: calc(100% - 40px);
		margin: 60px auto 0;
	}
}

.mice .bg_in .mice_floor .floor_title {
	text-align: center;
	font-family: "Noto Serif JP", serif;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: #21377D;
	padding-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .mice_floor .floor_title {
		font-size: 16px;
		padding-bottom: 25px;
	}
}

.mice .bg_in .mice_floor .floor_title strong {
	font-size: 45px;
	font-weight: 500;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .mice_floor .floor_title strong {
		font-size: 27px;
	}
}

.mice .bg_in .mice_floor .floor_title .underline {
	position: relative;
}

.mice .bg_in .mice_floor .floor_title .underline::before {
	content: "";
	width: 100%;
	height: 10px;
	background-color: #F3C55E;
	position: absolute;
	left: 0;
	bottom: 2px;
	z-index: -1;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .mice_floor .floor_title .underline::before {
		height: 6px;
		bottom: 1px;
	}
}

.mice .bg_in .mice_floor .floor_title .deco_left {
	width: 2px;
	height: 50px;
	display: inline-block;
	background-color: #21377D;
	position: relative;
	transform: rotate(-30deg);
	top: 8px;
	margin-right: 20px;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .mice_floor .floor_title .deco_left {
		width: 1px;
		height: 30px;
		margin-right: 15px;
	}
}

.mice .bg_in .mice_floor .floor_title .deco_right {
	width: 2px;
	height: 50px;
	display: inline-block;
	background-color: #21377D;
	position: relative;
	transform: rotate(30deg);
	top: 8px;
	margin-left: 10px;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .mice_floor .floor_title .deco_right {
		width: 1px;
		height: 30px;
		margin-left: 10px;
	}
}

.mice .bg_in .mice_floor .floor_info_wrap {
	padding: 60px 18px 96px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .mice_floor .floor_info_wrap {
		padding: 40px 0 0;
		display: block;
	}
}

.mice .bg_in .mice_floor .floor_info_wrap .floor_info {
	width: 100%;
	max-width: 367px;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .mice_floor .floor_info_wrap .floor_info {
		max-width: 100%;
		padding-bottom: 40px;
	}
}

.mice .bg_in .mice_floor .floor_info_wrap .floor_info .tit_wrap {
	background-color: #21377D;
	text-align: center;
	position: relative;
	padding: 15px 0;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .mice_floor .floor_info_wrap .floor_info .tit_wrap {
		padding: 12px 0 14px;
	}
}

.mice .bg_in .mice_floor .floor_info_wrap .floor_info .tit_wrap::before {
	content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 23px solid #21377D;
  border-top: 0;
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
}

.mice .bg_in .mice_floor .floor_info_wrap .floor_info .tit_wrap .tit {
	font-family: "Noto Serif JP", serif;
	font-size: 28px;
	font-weight: 500;
	color: #FFF;
	text-align: center;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .mice_floor .floor_info_wrap .floor_info .tit_wrap .tit {
		font-size: 25px;
	}
}

.mice .bg_in .mice_floor .floor_info_wrap .floor_info .tit_wrap .tit span {
	color: #C2A35F;
}

.mice .bg_in .mice_floor .floor_info_wrap .floor_info .tit_wrap .txt {
	font-family: "Noto Serif JP", serif;
	font-size: 16px;
	font-weight: 500;
	color: #FFF;
	text-align: center;
	padding-top: 5px;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .mice_floor .floor_info_wrap .floor_info .tit_wrap .txt {
		font-size: 14px;
	}
}

.mice .bg_in .mice_floor .floor_info_wrap .floor_info .txt_box {
	background-color: #FFF;
	padding: 0 20px 30px;
}

.mice .bg_in .mice_floor .floor_info_wrap .floor_info .txt_box .info_box {
	padding-top: 36px;
}

.mice .bg_in .mice_floor .floor_info_wrap .floor_info .txt_box .info_box .info_tit {
	width: 100%;
	font-family: "Noto Serif JP", serif;
	font-size: 16px;
	font-weight: 400;
	color: #21377D;
	padding-bottom: 10px;
	border-bottom: 1px solid #21377D;
	margin-bottom: 20px;
	position: relative;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .mice_floor .floor_info_wrap .floor_info .txt_box .info_box .info_tit {
		font-size: 19px;
		margin-bottom: 10px;
	}
}

.mice .bg_in .mice_floor .floor_info_wrap .floor_info .txt_box  .info_box .txt {
	font-family: "Noto Serif JP", serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
}

.mice .bg_in .mice_floor .floor_info_wrap .floor_info .txt_box  .info_box.-flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.mice .bg_in .mice_floor .floor_info_wrap .floor_info .txt_box  .info_box.-flex .left_box {
	width: 40%;
}

.mice .bg_in .mice_floor .floor_info_wrap .floor_info .txt_box  .info_box.-flex .right_box {
	width: 60%;
}

/* オプション */
.mice .bg_in .option {
	background-color: #FFF;
	border: 1px solid #C2A35F;
	padding: 40px 60px;
	max-width: 1040px;
	box-sizing: border-box;
	margin: auto;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .option {
		padding: 24px 20px;
		max-width: calc(100% - 40px);
	}
}

.mice .bg_in .option .sec_tit {
	padding-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .option .sec_tit {
		font-size: 13px;
		padding-bottom: 20px;
	}
}

.mice .bg_in .option .sec_tit[data-txt]::before {
	font-size: 28px;
	color: #C2A35F;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .option .sec_tit[data-txt]::before {
		font-size: 24px;
	}
}

.mice .bg_in .option .option_list_wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.mice .bg_in .option .option_list_wrap .-left {
	width: 40%;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .option .option_list_wrap .-left {
		width: 100%;
	}
}

.mice .bg_in .option .option_list_wrap .-right {
	width: 55%;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .option .option_list_wrap .-right {
		width: 100%;
	}
}

.mice .bg_in .option .option_list_wrap .list .txt {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
}
@media only screen and (max-width: 1024px) {
	.mice .bg_in .option .option_list_wrap .list .txt {
		font-size: 15px;
		line-height: 1.8;
		text-indent: -15px;
		margin-left: 15px;
	}
}

.mice .bg_in .option .option_list_wrap .list .txt::before {
	content: "・";
}

/*-----------------------------------
Photo 館内撮影
-----------------------------------*/
.photo {
	padding-top: 120px;
}
@media only screen and (max-width: 1024px) {
	.photo {
		padding-top: 40px;
	}
}

.st-Content_Wrapper .photo .sec_tit_wrap .sec_tit {
	padding-bottom: 30px;
}

.photo .lead {
	font-family: "Noto Serif JP", serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 2.5;
	text-align: center;
}
@media only screen and (max-width: 1024px) {
	.photo .lead {
		font-size: 14px;
		line-height: 2.3;
	}
}

.photo .photo_list_wrap {
	padding-top: 50px;
}
@media only screen and (max-width: 1024px) {
	.photo .photo_list_wrap {
		padding: 30px 20px 0;
	}
}

.photo .photo_list_wrap .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.photo .photo_list_wrap .list .detail {
	width: 100%;
	max-width: 367px;
}
@media only screen and (max-width: 1024px) {
	.photo .photo_list_wrap .list .detail {
		max-width: 100%;
		padding-bottom: 32px;
	}
}

.photo .photo_list_wrap .list .detail .ph_wrap {
	width: 100%;
	height: 240px;
}
@media only screen and (max-width: 1024px) {
	.photo .photo_list_wrap .list .detail .ph_wrap {
		height: 58.40vw;
	}
}

.photo .photo_list_wrap .list .detail .txt_box {
	padding-top: 15px;
}

.photo .photo_list_wrap .list .detail .txt_box .tit {
	font-family: "Noto Serif JP", serif;
	font-size: 16px;
	font-weight: 400;
	padding-bottom: 5px;
}
@media only screen and (max-width: 1024px) {
	.photo .photo_list_wrap .list .detail .txt_box .tit {
		font-size: 15px;
	}
}

.photo .photo_list_wrap .list .detail .txt_box .tit::before {
	content: "■";
	display: inline-block;
	padding-right: 5px;
	color: #21377D;
}

.photo .photo_list_wrap .list .detail .txt_box .txt {
	font-family: "Noto Serif JP", serif;
	font-size: 14px;
	font-weight: 400;
}

/*-----------------------------------
Contact お問い合わせ
-----------------------------------*/
.contact {
	padding-top: 130px;
}
@media only screen and (max-width: 1024px) {
	.contact {
		padding-top: 60px;
	}
}

.contact .in {
	max-width: 1040px;
}
@media only screen and (max-width: 1024px) {
	.contact .in {
		max-width: calc(100% - 40px);
	}
}

.contact .in.-flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-end;
}

.contact .in .txt_box {
	width: 100%;
	max-width: 430px;
}
@media only screen and (max-width: 1024px) {
	.contact .in .txt_box {
		max-width: 100%;
	}
}

.st-Content_Wrapper .contact .sec_tit_wrap .sec_tit {
	text-align: left;
	padding-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
	.st-Content_Wrapper .contact .sec_tit_wrap .sec_tit {
		text-align: center;
		padding-bottom: 40px;
	}
}

.st-Content_Wrapper .contact .sec_tit_wrap .sec_tit[data-txt]::before {
	text-align: left;
}
@media only screen and (max-width: 1024px) {
	.st-Content_Wrapper .contact .sec_tit_wrap .sec_tit[data-txt]::before {
		text-align: center;
	}
}

@media only screen and (max-width: 1024px) {
	.contact .in .txt_box {
		padding: 0 10px;
	}
}

.contact .in .txt_box .catch {
	font-family: "Noto Serif JP", serif;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 0.10em;
	padding-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
	.contact .in .txt_box .catch {
		font-size: 22px;
		letter-spacing: 0;
		text-align: center;
		padding: 25px 0 15px;
	}
}

.contact .in .txt_box .txt {
	font-family: "Noto Serif JP", serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
}
@media only screen and (max-width: 1024px) {
	.contact .in .txt_box .txt {
		font-size: 15px;
		line-height: 1.6;
	}
}

.contact .in .txt_box .contact_btn {
	padding-top: 40px;
	width: 100%;
	max-width: 306px;
}
@media only screen and (max-width: 1024px) {
	.contact .in .txt_box .contact_btn {
		padding-top: 30px;
		max-width: 270px;
		margin: auto;
	}
}

.contact .in .txt_box .contact_btn a {
	display: block;
	background-color: #C2A35F;
	line-height: 0;
	padding: 29px 0;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	color: #FFF;
	position: relative;
	transition: all 0.3s;
}
@media only screen and (max-width: 1024px) {
	.contact .in .txt_box .contact_btn a {
		padding: 26px 0;
		font-size: 15px;
	}
}

.contact .in .txt_box .contact_btn a:hover {
	opacity: 0.7;
}

.contact .in .txt_box .contact_btn a::after {
	content: "";
	width: 30px;
	height: 5px;
	background-image: url(../img/icon_link_arrow_white.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 13px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
}
@media only screen and (max-width: 1024px) {
	.contact .in .txt_box .contact_btn a::after {
		right: 7px;
	}
}

@media only screen and (min-width: 1025px) {
	.contact .in .txt_box .contact_btn a:hover::after {
		right: 10px;
	}
}

.contact .in .ph_wrap {
	width: 100%;
	max-width: 535px;
	height: 389px;
}
.contact .in .ph_wrap.sp {
	display: none;
}
@media only screen and (max-width: 1024px) {
	.contact .in .ph_wrap {
		max-width: 100%;
		height: 64.93vw;
	}
	.contact .in .ph_wrap.pc {
		display: none;
	}
	.contact .in .ph_wrap.sp {
		display: block;
	}
}

/* 調整用 */
.st-Footer {
	margin-top: 140px;
}
@media only screen and (max-width: 1024px) {
	.st-Footer {
		margin-top: 60px;
	}
}