@charset "utf-8";

/*=====================================================
COMMON-LAYOUT
======================================================*/

.atari {
	color: #e4007f !important;
}


body {
	background: url("../images/common/bg.jpg") center top repeat-y;
	background-size: 100% auto;
}

header {
	width: 100%;
	border-bottom: solid 2px #270800;
	position: fixed;
	top: 0;
	left: 0;
	background: url("../images/common/bg.jpg") center top repeat-y;
	background-size: 100% auto;
	z-index: 9999;
}

div.header {
	margin: 0 auto;
	position: relative;
	max-width: 1280px;
	padding: 0 10px;
	height: 110px;
	box-sizing: content-box;
}

div.header h2 {
	position: absolute;
	width: 18.75%;
	/*top: 90px;*/
	left: 10px;
	line-height: 0;
	font-size: 0;
	bottom: 13px;
}

ul.headnavi {
	position: absolute;
	top: 10px;
	right: 0;
	font-size: 0;
	line-height: 0;
	display: flex;
}
ul.headnavi li {
	padding: 0 0 0 30px;
	/*float:left;*/
	display: flex;
	align-items: center;
}
ul.headnavi li:first-child {
	padding: 0;
}

.nav_btn {
	position: absolute;
	top: 8px;
	right: 10px;
	width: 50px;
	height: 50px;
	background: rgba(178, 151, 99, 0.4);
	display: none;
	cursor: pointer;
}
.nav_btn hr {
	/*width:45px;*/
	width: 56.25%;
	background: #43342c;
	height: 3px;
	position: absolute;
	border: none;
	margin: 0;
	transform-origin: center center;
	left: 0;
	right: 0;
	margin: 0 auto;
	transition: top 0.2s ease-in-out 0.3s, transform 0.2s ease-in-out 0s;
}
.nav_btn.opened hr {
	transition: top 0.2s ease-in-out 0s, transform 0.2s ease-in-out 0.3s;
}
.nav_btn hr:nth-child(1) {
	top: 18.75%;
}
.nav_btn hr:nth-child(2) {
	top: 31.25%;
}
.nav_btn hr:nth-child(3) {
	top: 43.75%;
}
.nav_btn.opened hr:nth-child(1) {
	transform: rotate(45deg);
	top: 31.25%;
}
.nav_btn.opened hr:nth-child(2) {
	transform: scaleX(0);
	top: 31.25%;
}
.nav_btn.opened hr:nth-child(3) {
	transform: rotate(-45deg);
	top: 31.25%;
}
.nav_btn:after {
	content: "MENU";
	position: absolute;
	top: 58%;
	left: 0;
	width: 100%;
	height: 25%;
	font-family: "Sorts Mill Goudy", "Times New Roman", Times, serif;
	font-size: 12px;
	font-weight: bold;
	color: #43342c;
	text-align: center;
	transition: all 0.5s ease-in-out;
}
.nav_btn:before {
	content: "CLOSE";
	position: absolute;
	top: 58%;
	left: 0;
	width: 100%;
	height: 25%;
	font-family: "Sorts Mill Goudy", "Times New Roman", Times, serif;
	font-size: 12px;
	font-weight: bold;
	color: #43342c;
	text-align: center;
	transition: all 0.5s ease-in-out;
	opacity: 0;
}
.nav_btn.opened:after {
	opacity: 0;
}
.nav_btn.opened:before {
	opacity: 1;
}

nav.gnavi_wrap {
	position: relative;
}

ul.pc_nav {
	position: absolute;
	right: 0;
	bottom: 5px;
	max-width: 971px;
	width: 75.859375%;
	margin: 0 auto;
	font-size: 0;
	line-height: 0;
	border-left: solid 1px #3e3a39;
}
ul.pc_nav li {
	float: left;
	width: 20%;
	border-right: solid 1px #3e3a39;
}

ul.pc_nav li > a.cr img.off {
	display: none !important;
}

ul.pc_nav li > a.cr img.on {
	position: relative !important;
	opacity: 1;
}

ul.pc_nav li > span.fadeimg_wrap {
	position: relative;
	z-index: 1;
	opacity: 0.4;
	pointer-events: none;
}

ul.sp_nav {
	position: fixed;
	top: 65px;
	left: 0;
	right: 0;
	background: rgba(178, 151, 99, 0.9);
	z-index: 99999;
	display: none;
}
.sp_nav li {
	float: left;
	width: 25%;
	border: 1px solid #ffffff;
	box-sizing: border-box;
	text-align: center;
	line-height: 40px;
}
.sp_nav li a {
	padding: 0 1%;
	display: block;
	color: #fff;
}
body:not(.mobile) .sp_nav li a.cr,
.sp_nav li a:hover {
	text-decoration: none;
	background: rgba(255, 255, 255, 0.5);
	color: 000;
}

.sp_nav li:first-child {
	width: 50%;
}
.sp_nav li.inq {
	width: 50%;
}

.sp_nav li.inq a {
	text-decoration: none;
	background: #900;
	color: #fff;
}

div.contents_wrap {
	width: 100%;
	margin-top: 90px;
}

ul.breadlist {
	max-width: 960px;
	margin: 0 auto;
	padding: 10px 10px;
	box-sizing: content-box;
	display: none;
}

ul.breadlist li {
	display: inline-block;
}

ul.breadlist li:after {
	content: "> ";
}

ul.breadlist li:last-child:after {
	content: none;
}

ul.breadlist li a {
	text-decoration: underline;
}

body:not(.mobile) ul.breadlist li a:hover {
	text-decoration: none;
}

div.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px 40px;
	box-sizing: content-box;
}

footer {
	width: 100%;
	background: rgba(178, 151, 99, 0.1);
}

div.footer {
	max-width: 820px;
	margin: 0 auto;
	padding: 20px 20px;
	box-sizing: content-box;
}

.flogo {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.flogo {
}
.flogo > li:nth-child(1) {
	width: 100%;
	text-align: center;
	/*margin-bottom: 20px;*/
}
.flogo1 {
	max-width: 790px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}
.flogo > li:nth-child(2) {
	width: 52.2%;
	max-width: 428px;
}
.flogo > li:nth-child(3) {
	width: 41.59%;
	max-width: 341px;
}
.flogo > li:nth-child(4) {
	width: 24.7%;
	max-width: 258px;
}

.contact {
	background: url("wp-content/themes/grandjour2025/images/common/contact_bg.jpg") top center;
	background-size: cover;
	padding: 40px 0 20px 0;
}
.contact_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px 20px;
	text-align: center;
	color: #fff;
}
.contact .tel {
	display: flex;
	justify-content: center;
	align-items: center;
}

.tel_no {
	font-size: 44px;
	line-height: 1;
	font-weight: bold;
}
.tel_txt {
	font-size: 13px;
	line-height: 17px;
	margin-top: 6px;
}

.tel_txt span {
	display: block;
	border: solid 1px #fff;
	margin-bottom: 5px;
}

.copyright {
	background: #271c1e;
	color: #ccc;
	padding: 3px 0;
	display: none;
}
address {
	max-width: 960px;
	margin: 0 auto;
	box-sizing: content-box;
	padding: 0 10px;
	text-align: center;
	font-style: normal;
	font-size: 10px;
}

.img_cap {
	position: relative;
}

.img_cap span {
	background: rgba(0, 0, 0, 0.6);
	font-size: 10px;
	display: block;
	padding: 3px 5px;
	line-height: 1.5;
	color: #ffffff;
	position: absolute;
	bottom: 0;
	right: 0;
	text-align: right;
}

.img_cap.white span {
	background: rgba(255, 255, 255, 0.6);
	color: #333333;
}

.pagetop {
	position: fixed;
	bottom: 20px;
	right: -60px;
	transition: all 0.5s ease-in-out 0s;
}

.pagetop.scrolled {
	right: 20px;
}

.pagetop2 {
	position: fixed;
	bottom: 80px;
	right: -60px;
	transition: all 0.5s ease-in-out 0s;
}

.pagetop2.scrolled {
	right: 20px;
}

.cap_box {
	position: relative;
}
.cap_box.ib {
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
}

.t_cap {
	position: absolute;
	right: 5px;
	bottom: 5px;
	text-align: right;
	color: #fff;
	text-shadow: 0 0 3px #000000, 2px 2px 3px #000000, -2px 2px 3px #000000, -2px -2px 3px #000000, 2px -2px 3px #000000;
	font-size: 12px;
	font-feature-settings: "palt";
}
.t_cap_l {
	position: absolute;
	left: 5px;
	bottom: 5px;
	text-align: right;
	color: #fff;
	text-shadow: 0 0 3px #000000, 2px 2px 3px #000000, -2px 2px 3px #000000, -2px -2px 3px #000000, 2px -2px 3px #000000;
	font-size: 12px;
	font-feature-settings: "palt";
}

.t_cap_b {
	position: absolute;
	right: 5px;
	bottom: 5px;
	text-align: right;
	color: #000;
	text-shadow: 0 0 3px #fff, 2px 2px 3px #fff, -2px 2px 3px #fff, -2px -2px 3px #fff, 2px -2px 3px #fff;
	font-size: 12px;
	font-weight: bold;
	font-family: "游明朝 Medium", "Yu Mincho Medium", YuMincho, "游明朝体", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
	font-feature-settings: "palt";
}
.t_cap_b_l {
	position: absolute;
	left: 5px;
	bottom: 5px;
	text-align: left;
	color: #000;
	text-shadow: 0 0 3px #fff, 2px 2px 3px #fff, -2px 2px 3px #fff, -2px -2px 3px #fff, 2px -2px 3px #fff;
	font-size: 12px;
	font-feature-settings: "palt";
}

.t_cap.nos,
.t_cap_l.nos,
.t_cap_b.nos,
.t_cap_b_l.nos {
	text-shadow: none;
}

@media screen and (max-width: 767px) {
	header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		background: url("../images/common/bg.jpg") center top repeat-y;
		background-size: 100% auto;
		z-index: 999999;
	}
	div.header {
		height: 65px;
	}
	div.header h1 {
		display: none;
	}

	div.header h2 {
		width: 50%;
		top: 15px;
		left: 10px;
		line-height: 0;
		font-size: 0;
	}

	ul.headnavi {
		display: none;
	}

	ul.pc_nav {
		display: none;
	}

	.nav_btn {
		display: block;
	}

	div.contents_wrap {
		margin-top: 65px;
	}

	div.container {
		padding: 30px 15px 30px;
	}

	.flogo {
		display: block;
	}

	.flogo > li:nth-child(1) {
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: solid 1px #ccc;
	}
	.flogo1 {
		display: block;
		width: 65%;
		margin: 0 auto 0;
	}
	.flogo1 li {
		margin-bottom: 25px;
	}
	.flogo1 li:last-child {
		margin-bottom: 0;
	}
	.flogo > li:nth-child(2) {
		width: 100%;
		margin: 0 auto 25px;
		text-align: center;
	}
	.flogo > li:nth-child(3) {
		width: 85%;
		margin: 0 auto 25px;
		text-align: center;
	}
	.flogo > li:nth-child(4) {
		width: 60%;
		margin: 0 auto 0;
		text-align: center;
	}

	.contact_inner {
		padding: 0 35px 20px;
	}
	.contact .tel {
		display: block;
	}

	.tel_no {
		margin-left: 0;
		line-height: 1.2;
		font-size: 9vw;
	}

	.t_cap {
		font-size: 10px;
	}
	.t_cap_l {
		font-size: 10px;
	}

	.t_cap_b {
		font-size: 10px;
	}
	.t_cap_b_l {
		font-size: 10px;
	}
}

@media screen and (max-width: 600px) {
	.sp_nav li:first-child {
		width: 100%;
	}
	.sp_nav li {
		width: 50%;
	}
	.sp_nav li.inq {
		width: 100%;
	}
}

.link01 {
	max-width: 742px;
	width: 100%;
	margin: 0 auto;
}
.link01 img {
	display: block;
	width: 100%;
}
.mv_button {
	width: 8.571428571vw;
	position: absolute;
	right: 8.571428571vw;
	bottom: 4.571428571vw;
	z-index: 100;
}
.mv_button a {
	display: block;
	transition: opacity 0.5s ease-out;
}
.mv_button a:hover {
	opacity: 0.8;
}
@media screen and (max-width: 767px) {
	.mv_button {
		width: 15vw;
		position: absolute;
		right: 10vw;
		bottom: 15vw;
		z-index: 100;
	}
}
.container .ta_l {
	text-align: left;
}
@media screen and (max-width: 767px) {
	.container .ta_l {
		text-align: center;
	}
}
.container .read.ta_l {
	text-align: left;
}

@media screen and (max-width: 767px) {
	.container .read.ta_l {
		text-align: center;
	}
}
.mv-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
@media screen and (max-width: 767px) {
	.mv-row {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-direction: column;
		align-content: center;
		flex-wrap: nowrap;
	}
}
.mv-row .col:last-child {
	padding-left: 30px;
}
@media screen and (max-width: 767px) {
	.mv-row .col:last-child {
		padding-left: 0;
	}
}
.mv-row .col .info {
	width: 200px;
	border: solid 1px;
	border-image: linear-gradient(90deg, rgba(221, 174, 58, 1) 10%, rgba(249, 241, 158, 1) 27%, rgba(221, 174, 58, 1) 45%, rgba(183, 144, 45, 1) 65%);
	border-image-slice: 1;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: stretch;
	margin-bottom: 30px;
}
.mv-row .col .info dt {
	width: 100%;
	background-image: url("/wp/wp-content/themes/grandjour2025/komazawa/images/top/bg01.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	color: #fff;
	line-height: 1.0em;
	padding: 0.6em 0;
	font-size: 21px;
}
.mv-row .col .info dd {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 0.777em 0;
	color: #71492a;
}
.mv-row .col .info dd:last-child {
	border-left: solid 1px #bc932a;
}
.mv-row .col .info dd .room {
	border: solid 1px #71492a;
	padding: 0.333em 0.555em;
	margin-top: 0.333em;
}
.mv-row .col .info dd .status {
	margin-top: 0.333em;
	font-size: 18px;
}
#footer .logo-flx {
	max-width: none;
	background-color: #fff;
	margin-top: 20px;
	background-image: url("/wp/wp-content/themes/grandjour2025/komazawa/images/common/bg.jpg");
	background-repeat: repeat;
}
#footer .logo-flx a {
}

#footer .logo-flx a img {
	filter: brightness(0) saturate(100%) invert(20%) sepia(25%) saturate(515%) hue-rotate(339deg) brightness(100%) contrast(92%);
}
#footer .contact {
	background: url("../images/common/contact_bg.jpg") top center;
	background-size: cover;
	padding: 20px 0;

}
.main-textarea {
	position: absolute;
	z-index: 100;
	text-align: left;
	background-color: rgba(255, 255, 255, 0.8);
	box-shadow: 0 0 1.071428571vw rgba(255, 255, 255, 0.8);
	padding: 1.5vw;
	left: 1.785714286vw;
	bottom: 1.785714286vw;
}
.main-textarea .ttl {
	font-size: 1.3vw;
	color: #705300;
}
.main-textarea .read {
	font-size: 1.0vw;
}
.main .m_ttl {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-top: -2.5%;
}
.main .m_ttl img {
	width: 34vw;
}
.mv_button.sub {
	bottom: 1.785714286vw;
}
.insta_btn_yoko {
	width: 742px;
	margin: 0 auto;
}
.insta_btn_yoko a {
	width: 100%;
	transition: opacity 0.5s ease-out;
}
.insta_btn_yoko a:hover {
	opacity: 0.8;
}
.insta_btn_yoko a img {
	width: 100%;
	height: auto;
}
.p01 .pbox.cut {
	background-size: 100% 280px;
	background-repeat: repeat-x;
}
.p01 .pbox.cut .img {
	top: -50px;
}
.p01 .pbox.cut2 {
	background-size: 100% 320px;
	background-repeat: repeat-x;
}
.p01 .pbox.cut2 .img {
	top: -32px;
}
@media screen and (max-width: 767px) {
	.main-textarea {
		max-width: 75%;
	}
	.main-textarea .ttl {
		font-size: 2.8vw;
	}
	.main-textarea .read {
		font-size: 2.133333333vw;
	}
	.main .m_ttl img {
		width: 90vw;
	}
	.mv_button.sub {
		right: 4vw;
		bottom: 6vw;
	}
	.insta_btn_yoko {
		width: 100%;
	}
	.main .m_ttl {
		margin-top: -12.5%;
	}
	.p01 .pbox.cut {
		background-size: cover;
		background-repeat: repeat;
	}
	.p01 .pbox.cut .img {
		top: initial;
	}
	.p01 .pbox.cut2 {
		background-size: cover;
		background-repeat: repeat;
	}
	.p01 .pbox.cut2 .img {
		top: initial;
	}
}
.page_button {
	opacity: 0;
	transition: opacity 0.5s ease-out;
}
.page_button a {
	display: block;
	transition: opacity 0.5s ease-out;
}
.page_button a:hover {
	opacity: 0.8;
}
.page_button.scrolled {
	position: fixed;
	right: 20px;
	bottom: 20px;
	opacity: 1;
	z-index: 1000;
}
@media screen and (max-width: 767px) {
	.page_button{
		width: 15vw;
		right: 10vw;
		bottom: 15vw;
		z-index: 100;
	}
}