.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 7777;
}

.header:before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: hsla(0,0%,100%,0);
	backdrop-filter: blur(0px);
	-webkit-backdrop-filter: blur(0px);
	transition: .8s ease;
	z-index: -1;
}

.header--renewal {
	opacity: 0;
	transition: opacity 1.5s ease;
}

.header--renewal.is-show {
	opacity: 1;
}

.header__top {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 6.1333333333vw;
	width: 100%;
	height: 25.6vw;
}

.header__logo {
	position: relative;
	width: 33.0666666667vw;
}

.header__logo img {
	filter: brightness(0) invert(1);
}

.header__logo a {
	display: block;
}

.header__search {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-left: 4.375vw;
	height: 8.59375vw;
}

.header__search:before {
	content: "";
	position: absolute;
	top: 50%;
	left: -2.1875vw;
	width: .078125vw;
	height: 1.09375vw;
	background-color: #909090;
	transform: translateY(-50%);
}

.header__search-label {
	position: relative;
	padding-left: 1.953125vw;
	color: #fff;
	font-size: 1.09375vw;
	font-weight: 500;
	cursor: pointer;
}

.header__search-label:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 1.25vw;
	height: 1.25vw;
	background-image: url(../../img/renewal/common/search-wh.svg);
	transform: translateY(-50%);
}

.header__btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-left: 2.1875vw;
	width: 20vw;
}

.header__btn a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 3.4375vw;
	background-color: #111;
	border-radius: 1.71875vw;
	transition: background-color .4s ease-in-out;
}

.header__btn a span {
	color: #fff;
	font-size: 1.09375vw;
	font-weight: 500;
}

.header__btn a:hover {
	background-color: #958c68;
}

.header__btn a:nth-child(1) {
	width: 11.875vw;
}

.header__btn a:nth-child(2) {
	width: 7.5vw;
}

.header.is-active:before {
	background-color: hsla(0,0%,100%,.3);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.header--sub:before {
	background-color: #fff !important;
	backdrop-filter: blur(0) !important;
	-webkit-backdrop-filter: blur(0) !important;
}

.header.is-active .header__logo img,
.header--sub .header__logo img {
	filter: none;
}

.header.is-active .gnavi__label,
.header--sub .gnavi__label {
	color: #111;
}

.header.is-active .gnavi__label:after,
.header--sub .gnavi__label:after {
	background-color: #111;
}

.header.is-active .header__search-label,
.header--sub .header__search-label {
	color: #111;
}

.header.is-active .header__search-label:before,
.header--sub .header__search-label:before {
	background-image: url(../../img/renewal/common/search-bk.svg);
}

.header__bg {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	transition: opacity .4s cubic-bezier(0, 0.55, 0.45, 1);
	transition-property: opacity,visibility;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 8888;
}

.header__bg.is-show {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

.main {
	position: relative;
}

.main--sub {
	padding-top: 25.6vw;
}

.single .main--sub {
	padding-top: 25.6vw;
}

.footer {
	position: relative;
	padding-bottom: 18.6666666667vw;
	background-color: #1c1c1c;
}

.footer__in {
	margin: 0 auto;
	width: 87.4666666667vw;
}

.footer__top {
	position: relative;
	padding-top: 17.3333333333vw;
}

.footer__logo {
	width: 52.2666666667vw;
}

.footer__logo img {
	filter: brightness(0) invert(1);
}

.footer__logo a {
	display: block;
}

.footer .sns {
	margin-top: 14.6666666667vw;
}

.footer__menu {
	position: relative;
	margin-top: 8vw;
}

.footer .external {
	margin-top: 12vw;
}

.footer__bottom {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 12vw;
	padding: 9.3333333333vw 0;
	border-top-color: #393939;
	border-top-style: solid;
	border-top-width: 1px;
}

.footer .copyright {
	margin-top: 5.3333333333vw;
}

.footer__pagetop {
	position: relative;
	padding-right: 5.3333333333vw;
	color: #fff;
	font-family: "Crimson Text",serif;
	font-size: 3.7333333333vw;
	cursor: pointer;
}

.footer__pagetop:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-block;
	width: 1.8666666667vw;
	height: 4.2666666667vw;
	background-image: url(../../img/renewal/common/pagetop.svg);
	background-size: contain;
	transform: translateY(-50%);
}

.background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 160vw;
	background-size: cover;
	background-position: center;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: -1;
}

.background:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 160vw;
	background-color: rgba(0,0,0,.5);
	z-index: 1;
}

.background--about {
	background-image: url(../../img/renewal/about/bg_sp.jpg);
}

.background--showroom {
	background-image: url(../../img/renewal/showroom/bg_sp.jpg);
}

.background--sub {
	opacity: .1;
	transition: opacity 1.5s ease;
}

.background--sub.is-show {
	opacity: 1;
}

#background-video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	min-width: 100%;
	min-height: 100%;
	max-height: 160vw;
	transform: translate(-50%, -50%);
}

.bar {
	position: fixed;
	left: 0;
	bottom: 0 !important;
	width: 100%;
	height: 13.3333333333vw;
	z-index: 999;
	transform: translate3d(0, 0, 0) !important;
}

.bar__in {
	position: relative;
}

.bar__reserve {
	width: 82.6666666667vw;
}

.bar__reserve a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 13.3333333333vw;
	background-color: #958c68;
}

.bar__reserve a span {
	color: #fff;
	font-size: 4vw;
	font-weight: 500;
}

.bar--pc {
	display: none !important;
	position: fixed;
	right: 0;
	bottom: 150px;
	z-index: 999;
	transform: translate3d(0, 0, 0) !important;
}

.bar__in--pc {
	position: relative;
}

.bar__reserve--pc {
	width: 300px;
}

.bar__reserve--pc a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	background-color: #958c68;
	box-shadow: 0 6px 16px 4px rgba(0,0,0,.2);
}

.bar__reserve--pc a span {
	color: #fff;
	font-size: 15px;
	font-weight: 500;
}

.btn-box {
	position: relative;
}

.btn-box__head {
	position: relative;
	padding-bottom: 4vw;
	border-bottom-color: #ccc;
	border-bottom-style: solid;
	border-bottom-width: .2666666667vw;
}

.btn-box__en {
	margin-bottom: .5em;
	color: #909090;
	font-family: "Crimson Text",serif;
}

.btn-box__catch {
	margin-bottom: .5em;
	color: #222;
	font-size: 3.2vw;
	font-weight: 500;
	line-height: 1.5em;
}

.btn-box__ttl {
	position: relative;
	padding-right: 10.6666666667vw;
	font-family: "Zen Old Mincho",serif;
	font-size: 7.4666666667vw;
	font-weight: 500;
	line-height: 1.4em;
}

.btn-box__ttl:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-block;
	width: 6.9333333333vw;
	height: 6.9333333333vw;
	background-image: url(../../img/renewal/common/arrow-c-gy.svg);
	background-size: contain;
	transform: translateY(-50%);
}

.btn-box__cta {
	display: flex;
	gap: 1rem;
}

.btn-box__text {
	margin-top: 5.3333333333vw;
}

.btn-box__text p {
	color: #232323;
	font-size: 3.2vw;
	line-height: 1.78em;
}

.btn-box a {
	position: relative;
	display: block;
}

.btn-box--bk .btn-box__en {
	color: #909090;
}

.btn-box--bk .btn-box__ttl:after {
	background-image: url(../../img/renewal/common/arrow-c-gy.svg);
}

.btn-box--bk .btn-box__text p {
	color: #232323;
}

.btn-box--wh .btn-box__en {
	color: #ccc;
}

.btn-box--wh .btn-box__ttl {
	color: #fff;
}

.btn-box--wh .btn-box__ttl:after {
	background-image: url(../../img/renewal/common/arrow-c-wh.svg);
}

.btn-box--wh .btn-box__text p {
	color: #fff;
}

.btn-arrow {
	position: relative;
	display: inline-block;
	padding-right: 10.1333333333vw;
	font-weight: 500;
}

.btn-arrow:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-block;
	width: 6.9333333333vw;
	height: 6.9333333333vw;
	background-image: url(../../img/renewal/common/arrow-c-gy.svg);
	background-size: contain;
	transform: translateY(-50%);
}

.btn-mail {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 16vw;
	background-color: #232323;
	border-color: #909090;
	border-style: solid;
	border-width: .2666666667vw;
	border-radius: 8vw;
}

.btn-mail span {
	position: relative;
	padding-left: 10.6666666667vw;
	color: #fff;
	font-size: 4.2666666667vw;
	font-weight: 500;
}

.btn-mail span:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	display: inline-block;
	width: 6.4vw;
	height: 6.4vw;
	background-image: url(../../img/renewal/common/mail-wh.svg);
	background-size: contain;
	transform: translateY(-50%);
}

.btn-radius {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-right: 13.3333333333vw;
	height: 13.3333333333vw;
	border-style: solid;
	border-width: .2666666667vw;
	border-radius: 6.6666666667vw;
}

.btn-radius:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 13.3333333333vw;
	width: .2666666667vw;
	height: 6.6666666667vw;
	transform: translateY(-50%);
}

.btn-radius:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 5.3333333333vw;
	display: inline-block;
	width: 4.2666666667vw;
	height: 4.2666666667vw;
	transform: translateY(-50%);
}

.btn-radius--bk {
	border-color: #909090;
	color: #111;
}

.btn-radius--bk:before {
	background-color: #909090;
}

.btn-radius--bk:after {
	background-image: url(../../img/renewal/common/arrow-s-bk.svg);
}

.btn-radius--wh {
	border-color: #fff;
	color: #fff;
}

.btn-radius--wh:before {
	background-color: #fff;
}

.btn-radius--wh:after {
	background-image: url(../../img/renewal/common/arrow-s-wh.svg);
}

.btn-icon {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	border-style: solid;
	border-width: .2666666667vw;
}

.btn-icon span {
	position: relative;
	color: #fff;
	font-weight: 500;
}

.btn-icon span:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	display: inline-block;
	background-size: contain;
	transform: translateY(-50%);
}

.btn-icon--wh {
	background-color: rgba(35,35,35,.6);
	border-color: hsla(0,0%,80%,.6);
}

.btn-icon--bk {
	background-color: #232323;
	border-color: #232323;
}

.btn-icon--mail span:before {
	background-image: url(../../img/renewal/common/mail-wh.svg);
}

.btn-icon--call span:before {
	background-image: url(../../img/renewal/common/call-wh.svg);
}

.btn-icon--i18 span {
	padding-left: 6.6666666667vw;
	font-size: 3.7333333333vw;
}

.btn-icon--i18 span:before {
	width: 4.8vw;
	height: 4.8vw;
}

.btn-icon--i24 span {
	padding-left: 6.6666666667vw;
	font-size: 3.7333333333vw;
}

.btn-icon--i24 span:before {
	width: 6.4vw;
	height: 4.8vw;
}

.btn-icon--h40 {
	height: 10.6666666667vw;
	border-radius: 5.3333333333vw;
}

.btn-icon--h46 {
	height: 10.6666666667vw;
	border-radius: 5.3333333333vw;
}

.btn-icon--h60 {
	height: 16vw;
	border-radius: 16vw;
}

.copyright {
	color: #909090;
	font-size: 3.2vw;
	font-family: "DM Sans",sans-serif;
}

.drawer {
	position: fixed;
	inset: 0;
	height: 100svh;
	height: -webkit-fill-available;
	height: calc(var(--vh, 1vh)*100);
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .4s cubic-bezier(0.43, 0.05, 0.17, 1);
	z-index: 9999;
}

.drawer.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.drawer__scroll {
	position: relative;
	margin: 5.3333333333vw 0 0 auto;
	padding: 8vw 0 16vw 0;
	width: 86.6666666667vw;
	height: 100%;
	background-color: #1c1c1c;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 1;
}

.drawer__in {
	position: relative;
	margin: 0 auto;
	width: 69.3333333333vw;
}

.drawer__reserve {
	margin-bottom: 8vw;
}

.drawer__reserve a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 13.3333333333vw;
	background-color: #958c68;
	border-radius: 6.6666666667vw;
}

.drawer__reserve a span {
	color: #fff;
	font-size: 4vw;
	font-weight: 500;
}

.drawer .sns {
	padding: 4.8vw 0;
	border-bottom-color: #393939;
	border-bottom-style: solid;
	border-bottom-width: .2666666667vw;
}

.drawer .external {
	padding: 8vw 0;
	border-bottom-color: #393939;
	border-bottom-style: solid;
	border-bottom-width: .2666666667vw;
}

.drawer__logo {
	margin-top: 10.6666666667vw;
	width: 38.6666666667vw;
}

.drawer__logo img {
	filter: brightness(0) invert(1);
}

.drawer .privacypolicy {
	margin-top: 8vw;
}

.drawer .copyright {
	margin-top: 4vw;
}

.drawer__close {
	position: fixed;
	right: 3.7333333333vw;
	bottom: 3.7333333333vw;
	width: 10.6666666667vw;
	height: 10.6666666667vw;
	background-image: url(../../img/renewal/common/close.svg);
	background-size: contain;
	background-position: center;
	cursor: pointer;
	z-index: 10000;
}

.gnavi {
	display: flex;
	gap: 1.09375vw;
}

.gnavi__item--mega {
	position: relative;
}

.gnavi__label {
	position: relative;
	display: flex;
	align-items: center;
	height: 8.59375vw;
	color: #fff;
	font-size: 1.015625vw;
	font-weight: 500;
	cursor: pointer;
}

.gnavi__label:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.0390625vw;
	width: 0%;
	height: .078125vw;
	background-color: #fff;
	transition: width .4s;
}

.gnavi__label:hover:after {
	width: 100%;
}

.gnavi__label a {
	display: flex;
	align-items: center;
	height: 100%;
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
}

body.about .gnavi__label--about,
body.post-type-archive-another .gnavi__label--post-type-archive-another,
body.faq_first .gnavi__label--faq_first,
body.planning .gnavi__label--planning,
body.online .gnavi__label--online,
body.showroom .gnavi__label--showroom,
body.case .gnavi__label--case,
body.case .gnavi__label--single-case,
body.post-type-archive-case .gnavi__label--post-type-archive-case,
body.post-type-archive-story .gnavi__label--post-type-archive-story,
body.post-type-archive-voice .gnavi__label--post-type-archive-voice {
	border-bottom: solid 1px;
}

.keyword__label {
	margin-bottom: 1em;
	font-size: 1.09375vw;
	font-weight: 500;
}

.keyword__word {
	display: flex;
	flex-wrap: wrap;
	gap: .625vw;
}

.keyword__word a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 0 1em;
	height: 2.34375vw;
	background-color: #fff;
	border-color: rgba(17,17,17,.2);
	border-style: solid;
	border-width: .078125vw;
	border-radius: 1.171875vw;
	font-size: 1.015625vw;
	font-weight: 500;
	transition: background-color .4s ease-in-out,color .4s ease-in-out;
}

.keyword__word a:hover {
	background-color: #111;
	color: #fff;
}

#loading {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background-color: #232323;
	z-index: 9999;
}

.loading__logo {
	width: 58.1333333333vw;
}

.loading__logo img {
	filter: brightness(0) invert(1);
}

.loading__progress {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1.0666666667vw;
	background-color: rgba(0,0,0,0);
}

.loading__bar {
	width: 0%;
	height: 100%;
	background-color: #f4f4f4;
	transition: width .3s ease;
}

.megamenu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	padding-top: 8.59375vw;
	width: 100%;
	z-index: -1;
}

.megamenu:before {
	content: "";
	position: fixed;
	top: 0;
	left: 50%;
	display: block;
	width: calc(100vw + 30px);
	height: calc(100vh + 30px);
	background-color: rgba(0,0,0,.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	pointer-events: none;
	transform: translateX(-50%);
	z-index: -2;
}

.megamenu:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #f4f4f4;
	z-index: -1;
}

.megamenu__gnavi {
	display: flex;
	justify-content: space-between;
	padding: 2.34375vw;
}

.megamenu__gnavi-content {
	width: 48.4375vw;
}

.megamenu__head {
	margin-bottom: 4.6875vw;
}

.megamenu__en {
	margin-bottom: .8em;
	color: #909090;
	font-family: "Crimson Text",serif;
}

.megamenu__ttl {
	font-family: "Zen Old Mincho",serif;
	font-size: 2.34375vw;
	font-weight: 500;
	line-height: 1.4em;
}

.megamenu__menu {
	display: flex;
	flex-wrap: wrap;
	gap: 1.171875vw 3.125vw;
}

.megamenu__menu li {
	width: 22.65625vw;
	border-bottom-color: #ccc;
	border-bottom-style: solid;
	border-bottom-width: .078125vw;
}

.megamenu__menu a {
	position: relative;
	display: flex;
	align-items: center;
	padding-right: 3.90625vw;
	height: 3.90625vw;
	font-weight: 500;
}

.megamenu__menu a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-block;
	width: 1.875vw;
	height: 1.875vw;
	background-image: url(../../img/renewal/common/arrow-c-gy.svg);
	background-size: contain;
	transform: translateY(-50%);
	transition: background-image .4s ease-in-out;
}

.megamenu__menu a:hover:after {
	background-image: url(../../img/renewal/common/arrow-c-bk.svg);
}

.megamenu__gnavi-image {
	width: 33.59375vw;
}

.megamenu__gnavi-image img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: .3125vw;
}

.megamenu__search {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 3.125vw;
}

.megamenu__search-box {
	width: 53.90625vw;
}

.megamenu__search-keyword {
	width: calc(100% - 57.03125vw);
}

.mv {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 106.6666666667vw;
	max-height: 146.6666666667vw;
}

.mv__content {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 0;
}

.mv__copy {
	position: relative;
	margin-bottom: 10.6666666667vw;
	display: inline-block;
	color: #fff;
	font-family: "Zen Old Mincho",serif;
	font-size: 9.0666666667vw;
	font-weight: 400;
	line-height: 1.44em;
	opacity: 0;
	overflow: hidden;
}

.mv__copy span {
	position: relative;
}

.mv__copy.is-show {
	opacity: 1;
	visibility: visible;
}

.mv__copy.is-show span {
	animation: popanime .6s ease-out forwards;
}

.mv__text.is-show {
	opacity: 1;
	transform: translateY(0);
}

.mv__text {
	opacity: 0;
	transform: translateY(20px);
	transition: all 1.2s ease;
}

.mv__text p {
	color: #fff;
	font-size: 3.7333333333vw;
	line-height: 1.71em;
}

.mv__news {
	position: absolute;
	bottom: 8vw;
	width: 87.4666666667vw;
}

.mv__news-post a {
	position: relative;
	display: block;
	padding-bottom: 4.2666666667vw;
	border-bottom-color: hsla(0,0%,100%,.5);
	border-bottom-style: solid;
	border-bottom-width: .2666666667vw;
}

.mv__news-post__date {
	margin-bottom: .8em;
	color: #ccc;
	font-family: "Crimson Text",serif;
	font-size: 3.2vw;
}

.mv__news-post__ttl {
	position: relative;
	padding-right: 10.6666666667vw;
	max-height: 1.5em;
	color: #fff;
	font-size: 3.4666666667vw;
	font-weight: 400;
	line-height: 1.5em;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mv__news-post__ttl:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-block;
	width: 5.3333333333vw;
	height: 5.3333333333vw;
	background-image: url(../../img/renewal/common/arrow-s-wh.svg);
	background-size: contain;
	transform: translateY(-50%);
}

.mv__en {
	margin-bottom: .5em;
	color: hsla(0,0%,100%,.5);
	font-family: "Crimson Text",serif;
	font-size: 4vw;
	font-weight: 400;
	line-height: 1.25em;
	opacity: 0;
	transform: translateY(20px);
	transition: all 1s ease;
}

.mv__en.is-show {
	opacity: 1;
	transform: translateY(0);
}

.mv__ttl {
	color: #fff;
	font-family: "Zen Old Mincho",serif;
	font-size: 9.6vw;
	font-weight: 500;
	line-height: 1.45em;
	opacity: 0;
	overflow: hidden;
}

.mv__ttl.is-show {
	opacity: 1;
	visibility: visible;
}

.mv__ttl.is-show span {
	animation: popanime .6s ease-out forwards;
}

.mv__index {
	position: absolute;
	bottom: 8vw;
	padding-top: 4vw;
	width: 87.4666666667vw;
	border-top-color: rgba(244,244,244,.3);
	border-top-style: solid;
	border-top-width: .2666666667vw;
	opacity: 0;
	transition: opacity 2s ease;
}

.mv__index.is-show {
	opacity: 1;
}

.mv__index-ttl {
	margin-bottom: .8em;
	font-family: "DM Sans",sans-serif;
	color: #fff;
	font-weight: 400;
}

.mv__index-menu>li {
	position: relative;
	padding-left: 6.9333333333vw;
}

.mv__index-menu>li:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	display: inline-block;
	width: 1.6vw;
	height: 1.6vw;
	background-color: hsla(0,0%,100%,.2);
	border-radius: 50%;
	transform: translateY(-50%);
}

.mv__index-menu>li:nth-child(n+2) {
	margin-top: 3.2vw;
}

.mv__index-menu>li a {
	position: relative;
	display: inline-block;
	padding-right: 6.9333333333vw;
	color: #fff;
	font-size: 3.7333333333vw;
	font-weight: 500;
	line-height: 1.5em;
}

.mv__index-menu>li a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-block;
	width: 4.8vw;
	height: 4.8vw;
	background-image: url(../../img/renewal/common/down-wh.svg);
	background-size: contain;
	transform: translateY(-50%);
}

.parallax {
	position: relative;
	overflow: hidden;
}

.privacypolicy {
	color: #fff;
	font-size: 3.2vw;
}

.search {
	position: relative;
}

.search__form {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 .78125vw;
	width: 100%;
	height: 4.6875vw;
	border-color: rgba(17,17,17,.2);
	border-style: solid;
	border-width: .078125vw;
	border-radius: 2.34375vw;
	overflow: hidden;
	background-color: #fff;
}

.search__form input[type=text] {
	flex: 1;
	padding: 0 1.5625vw;
	color: #111;
	font-family: "Zen Kaku Gothic New",sans-serif;
	font-size: 1.25vw;
	font-weight: 500;
	background: rgba(0,0,0,0);
}

.search__form input[type=text]::-moz-placeholder {
	color: rgba(35,35,35,.3);
}

.search__form input[type=text]::placeholder {
	color: rgba(35,35,35,.3);
}

.search__submit {
	width: 9.375vw;
}

.search__submit button {
	position: relative;
	display: flex;
	align-items: center;
	padding-left: 3.515625vw;
	width: 100%;
	height: 3.4375vw;
	background-color: #1a1a1a;
	border-radius: 1.71875vw;
	color: #fff;
	font-family: "Zen Kaku Gothic New",sans-serif;
	font-size: 1.09375vw;
	font-weight: 500;
	cursor: pointer;
	transition: background-color .4s ease-in-out;
}

.search__submit button:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 1.5625vw;
	display: inline-block;
	width: 1.25vw;
	height: 1.25vw;
	background-image: url(../../img/renewal/common/search-wh.svg);
	background-size: contain;
	transform: translateY(-50%);
}

.search__submit button:hover {
	background-color: #958c68;
}

.sec {
	position: relative;
}

.sec__in {
	position: relative;
	margin: 0 auto;
	width: 87.4666666667vw;
	z-index: 1;
}

.sec-head {
	position: relative;
}

.sec__en {
	position: relative;
	margin-bottom: .5em;
	font-family: "Crimson Text",serif;
}

.sec__ttl {
	position: relative;
	font-family: "Zen Old Mincho",serif;
	font-size: 7.4666666667vw;
	font-weight: 500;
	line-height: 1.5em;
}

.sec__ttl--bk {
	color: #111;
}

.sec__ttl--wh {
	color: #fff;
}

.sec__head--bk .sec__en {
	color: #909090;
}

.sec__head--bk .sec__ttl {
	color: #111;
}

.sec__head--wh .sec__en {
	color: #ccc;
}

.sec__head--wh .sec__ttl {
	color: #fff;
}

.slide {
	position: relative;
}

.swiper-wrapper-disable {
	justify-content: center;
}

.slide__control {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 20.3125vw;
}

.slide__navi {
	position: relative;
	display: flex;
	justify-content: space-between;
	width: 7.03125vw;
}

.slide__prev,
.slide__next {
	width: 3.125vw;
	height: 3.125vw;
	background-size: contain;
	transition: background-image .4s ease-in-out;
	cursor: pointer;
}

.slide__fraction {
	bottom: 0 !important;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 11.71875vw !important;
	z-index: 1;
}

.slide__fraction .swiper-pagination-current,
.slide__fraction .swiper-pagination-total {
	font-family: "DM Sans",sans-serif;
	font-size: 1.09375vw;
	font-optical-sizing: auto;
}

.slide__fraction .slide__bar {
	position: relative;
	width: 7.8125vw;
	height: .15625vw;
	background-color: #a1a1a1;
}

.slide__fraction .slide__bar span {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	height: 100%;
	background-color: #232323;
	transform: scaleX(0);
	transform-origin: left center;
}

.slide__control--bk .slide__prev {
	background-image: url(../../img/renewal/slide/prev-tp.svg);
}

.slide__control--bk .slide__prev:hover {
	background-image: url(../../img/renewal/slide/prev-bk.svg);
}

.slide__control--bk .slide__next {
	background-image: url(../../img/renewal/slide/next-tp.svg);
}

.slide__control--bk .slide__next:hover {
	background-image: url(../../img/renewal/slide/next-bk.svg);
}

.slide__control--bk .slide__fraction .swiper-pagination-current,
.slide__control--bk .slide__fraction .swiper-pagination-total {
	color: #111;
}

.slide__control--bk .slide__fraction .slide__bar {
	background-color: #a1a1a1;
}

.slide__control--bk .slide__fraction .slide__bar span {
	background-color: #232323;
}

.slide__control--wh .slide__prev {
	background-image: url(../../img/renewal/slide/prev-gy.svg);
}

.slide__control--wh .slide__prev:hover {
	background-image: url(../../img/renewal/slide/prev-wh.svg);
}

.slide__control--wh .slide__next {
	background-image: url(../../img/renewal/slide/next-gy.svg);
}

.slide__control--wh .slide__next:hover {
	background-image: url(../../img/renewal/slide/next-wh.svg);
}

.slide__control--wh .slide__fraction .swiper-pagination-current,
.slide__control--wh .slide__fraction .swiper-pagination-total {
	color: #fff;
}

.slide__control--wh .slide__fraction .slide__bar {
	background-color: #676767;
}

.slide__control--wh .slide__fraction .slide__bar span {
	background-color: #ccc;
}

#case-fraction.is-active .slide__bar span,
#voice-fraction.is-active .slide__bar span {
	transform: scaleX(1);
	transition: transform 3000ms linear;
}

.slide__pagination {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 3;
}

.slide__pagination {
	bottom: auto !important;
	margin-top: 5.3333333333vw;
}

.swiper-pagination-bullet {
	margin: 0 !important;
	width: 2.1333333333vw;
	height: 2.1333333333vw;
	border-radius: 50% !important;
	transition: background-color .4s;
	opacity: 1;
}

.slide__pagination .swiper-pagination-bullet:nth-child(n+2) {
	margin-left: 3.2vw !important;
}

.slide__pagination--wh .swiper-pagination-bullet {
	background-color: #454545;
}

.slide__pagination--wh .swiper-pagination-bullet-active {
	background-color: #ccc !important;
}

.slide__pagination--bk .swiper-pagination-bullet {
	background-color: #cecece;
}

.slide__pagination--bk .swiper-pagination-bullet-active {
	background-color: #393939 !important;
}

.toggle {
	position: absolute;
	top: 0;
	right: 0;
	width: 17.3333333333vw;
	height: 13.3333333333vw;
	background-color: #222;
	cursor: pointer;
}

.toggle span {
	position: absolute;
	left: 50%;
	width: 9.6vw;
	height: .5333333333vw;
	background-color: #fff;
	transform: translateX(-50%);
	z-index: 2;
}

.toggle span:nth-of-type(1) {
	top: 5.3333333333vw;
}

.toggle span:nth-of-type(2) {
	top: 8vw;
}

.external {
	display: flex;
	flex-wrap: wrap;
	gap: 4vw 8vw;
}

.external a {
	position: relative;
	display: block;
	padding-right: 5.3333333333vw;
	color: #fff;
	font-size: 3.7333333333vw;
	font-weight: 500;
}

.external a:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-block;
	width: 3.2vw;
	height: 3.2vw;
	background-image: url(../../img/renewal/common/external-wh.svg);
	background-size: contain;
	transform: translateY(-50%);
}

.sec--group {
	background-color: #232323;
}

.gyosha .sec--group,
.faq_first .sec--group,
.post-type-archive-blog .sec--group,
.post-type-archive-voice .sec--group,
.post-type-archive-story .sec--group,
.post-type-archive-another .sec--group,
.single-story .sec--group,
.single-another .sec--group,
.single-voice .sec--group,
.contact .sec--group,
.nagoya_contact_form .sec--group,
.thanks .sec--group,
.request .sec--group,
.mail_contact_form .sec--group,
.corporate_form .sec--group,
.nagoya_reserve_form .sec--group,
.yokohama_reserve_form .sec--group,
.ginza_reserve_form .sec--group,
.reserve-online .sec--group {
	margin-top: 100px;
}

.group__menu {
	display: flex;
	justify-content: space-between;
}

.group__menu a {
	display: block;
	width: 100%;
}

.group__menu img {
	width: 85%;
	margin: auto;
	display: block;
}

.link {
	position: relative;
	height: 106.6666666667vw;
}

.link a {
	position: relative;
	display: block;
	overflow: hidden;
}

.link a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.45);
	z-index: 1;
}

.link__bg {
	position: relative;
	width: 100%;
}

.link__bg img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	font-family: "object-fit: cover;";
	height: 106.6666666667vw;
	-o-object-position: center center;
	object-position: center center;
	font-family: "object-fit: cover; object-position: center top;";
}

.link .btn-box {
	position: absolute;
	left: 50%;
	bottom: 8vw;
	width: 87.4666666667vw;
	z-index: 2;
}

.link .btn-box .btn-box__ttl>span {
	display: inline-flex;
	align-items: center;
}

.link .btn-box .btn-box__ttl span.label {
	position: relative;
	top: .15em;
	display: inline-block;
	margin-right: .5em;
	padding: .4em .5em .5em .5em;
	border-color: #fff;
	border-style: solid;
	border-width: .2666666667vw;
	border-radius: 1.0666666667vw;
	font-family: "Zen Kaku Gothic New",sans-serif;
	font-size: 3.2vw;
	font-weight: 500;
	line-height: 1;
}

.link .btn-box .btn-box__ttl--online>span {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.navi>ul>li>div {
	position: relative;
}

.navi>ul>li>a {
	display: flex;
	align-items: center;
	height: 18.6666666667vw;
	color: #fff;
	font-size: 4.2666666667vw;
	font-weight: 500;
	line-height: 1.6em;
	white-space: nowrap;
}

.navi__parent p {
	color: #ccc;
	font-size: 4.2666666667vw;
	font-weight: 500;
	line-height: 1.6em;
}

.navi__child {
	position: relative;
}

.navi__child>ul>li a {
	display: block;
	color: #ccc;
	font-weight: 500;
	line-height: 1.6em;
	white-space: nowrap;
}

.navi__child>ul>li:nth-child(n+2) {
	margin-top: 2.6666666667vw;
}

.sec--consul {
	padding: 13.3333333333vw 0;
	background-color: #fff;
}

.consul__image {
	position: relative;
	margin-bottom: 5.3333333333vw;
}

.sec--reserve {
	padding: 18.6666666667vw 0;
	background-image: url(../../img/renewal/front/reserve-bg_sp.jpg);
	background-size: cover;
}

.reserve {
	position: relative;
	padding-top: 22.6666666667vw;
}

.reserve__text {
	margin-top: 5.3333333333vw;
}

.reserve__text p {
	color: #ccc;
	line-height: 1.5em;
}

.reserve__btn {
	margin: 9.3333333333vw auto 0 auto;
	width: 74.6666666667vw;
}

.sns {
	position: relative;
	display: flex;
	gap: 5.3333333333vw;
}

.sns a {
	display: block;
	width: 5.8666666667vw;
}

.sns a img {
	width: 100%;
	height: auto;
}

@media screen and (min-width: 800px) {

.header__top {
	justify-content: space-between;
	padding: 0 2.34375vw;
	height: 6.640625vw;
	border-bottom-color: #909090;
	border-bottom-style: solid;
	border-bottom-width: .078125vw;
}

.header__logo {
	width: 9.6875vw;
}

.header__navi {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__bg {
	display: none;
}

.main--sub {
	padding-top: 110px;
}

.single .main--sub {
	padding-top: 0px;
}

.footer {
	padding-bottom: 0;
}

.footer__in {
	width: 90.625vw;
}

.footer__top {
	display: flex;
	justify-content: space-between;
	padding-top: 6.25vw;
}

.footer__head {
	margin: 0;
	width: 26.171875vw;
}

.footer__logo {
	width: 15.3125vw;
}

.footer .sns {
	margin-top: 0;
}

.footer__menu {
	margin: 0;
	width: 60.546875vw;
}

.footer .external {
	justify-content: flex-end;
	margin-top: 7.8125vw;
}

.footer__bottom {
	margin-top: 2.734375vw;
	padding: 1.953125vw 0;
	border-top-width: .078125vw;
}

.footer__bottom>div {
	display: flex;
	align-items: center;
}

.footer .privacypolicy {
	margin-left: 1.953125vw;
	font-size: .9375vw;
	order: 2;
}

.footer .copyright {
	margin: 0;
	order: 1;
}

.footer__pagetop {
	padding-right: 1.5625vw;
	font-size: 1.25vw;
}

.footer__pagetop:after {
	width: .546875vw;
	height: 1.25vw;
}

.background--about {
	background-image: url(../../img/renewal/about/bg.jpg);
}

.background--showroom {
	background-image: url(../../img/renewal/showroom/bg.jpg);
}

.bar {
	display: none !important;
}

.bar--pc {
	display: block !important;
}

.btn-box__head {
	padding-bottom: .78125vw;
	border-bottom-width: .078125vw;
}

.btn-box__catch {
	font-size: 1.09375vw;
}

.btn-box__ttl {
	padding-right: 4.6875vw;
	font-size: 2.8125vw;
}

.btn-box__ttl:after {
	right: .78125vw;
	width: 2.34375vw;
	height: 2.34375vw;
	transition: background-image .4s ease-in-out;
}

.btn-box__text {
	margin-top: 1.5625vw;
}

.btn-box__text p {
	font-size: 1.09375vw;
}

.on--btn:hover .btn-box .btn-box__ttl:after,
.btn-box a:hover .btn-box__ttl:after {
	background-image: url(../../img/renewal/common/arrow-c-bk.svg);
}

.btn-arrow {
	padding-right: 3.28125vw;
}

.btn-arrow:after {
	width: 2.34375vw;
	height: 2.34375vw;
	transition: background-image .4s ease-in-out;
}

.btn-arrow:hover:after {
	background-image: url(../../img/renewal/common/arrow-c-bk.svg);
}

.btn-mail {
	height: 4.6875vw;
	border-width: .078125vw;
	border-radius: 2.34375vw;
	transition: background-color .4s ease-in-out,border-color .4s ease-in-out;
}

.btn-mail span {
	padding-left: 3.125vw;
	font-size: 1.25vw;
}

.btn-mail span:before {
	width: 1.875vw;
	height: 1.875vw;
}

.btn-mail:hover {
	background-color: #958c68;
	border-color: #958c68;
}

.btn-radius {
	padding-right: 3.90625vw;
	height: 3.90625vw;
	border-width: .078125vw;
	border-radius: 1.953125vw;
	transition: background-color .4s ease-in-out,color .4s ease-in-out;
}

.btn-radius:before {
	right: 3.90625vw;
	width: .078125vw;
	height: 1.953125vw;
	transition: background-color .4s ease-in-out;
}

.btn-radius:after {
	right: 1.5625vw;
	width: 1.25vw;
	height: 1.25vw;
	transition: background-image .4s ease-in-out;
}

.btn-radius--bk:hover {
	background-color: #393939;
	color: #fff;
}

.btn-radius--bk:hover:before {
	background-color: #fff;
}

.btn-radius--bk:hover:after {
	background-image: url(../../img/renewal/common/arrow-s-wh.svg);
}

.btn-radius--wh:hover {
	background-color: #fff;
	color: #111;
}

.btn-radius--wh:hover:before {
	background-color: #111;
}

.btn-radius--wh:hover:after {
	background-image: url(../../img/renewal/common/arrow-s-bk.svg);
}

.btn-icon {
	border-width: .078125vw;
	transition: background-color .4s ease-in-out,border-color .4s ease-in-out;
}

.btn-icon:hover {
	background-color: #958c68;
	border-color: #958c68;
}

.btn-icon--i18 span {
	padding-left: 1.953125vw;
	font-size: 1.09375vw;
}

.btn-icon--i18 span:before {
	width: 1.40625vw;
	height: 1.40625vw;
}

.btn-icon--i24 span {
	padding-left: 3.125vw;
	font-size: 1.25vw;
}

.btn-icon--i24 span:before {
	width: 1.875vw;
	height: 1.875vw;
}

.btn-icon--h40 {
	height: 3.125vw;
	border-radius: 1.5625vw;
}

.btn-icon--h46 {
	height: 3.59375vw;
	border-radius: 1.796875vw;
}

.btn-icon--h60 {
	height: 4.6875vw;
	border-radius: 2.34375vw;
}

.copyright {
	font-size: .9375vw;
}

.drawer {
	display: none !important;
}

.gnavi__label {
	height: 6.640625vw;
}

.loading__logo {
	width: 17.03125vw;
}

.loading__progress {
	height: .3125vw;
}

.mv {
	min-height: 62.5vw;
}

.mv__content {
	left: 4.6%;
	transform: translateY(-50%);
}

.mv__copy {
	margin-bottom: 3.125vw;
	font-size: 5.46875vw;
}

.mv__text p {
	font-size: 1.09375vw;
}

.mv__news {
	right: 4.6%;
	bottom: 3.125vw;
	width: 31.25vw;
}

.mv__news-post a {
	padding-bottom: 1.5625vw;
	border-bottom-width: .078125vw;
}

.mv__news-post__date {
	font-size: 1.09375vw;
}

.mv__news-post__ttl {
	padding-right: 3.28125vw;
	font-size: 1.09375vw;
}

.mv__news-post__ttl:after {
	width: 1.71875vw;
	height: 1.71875vw;
}

.mv__en {
	font-size: 1.5625vw;
}

.mv__ttl {
	font-size: 4.6875vw;
	line-height: 1.45em;
}

.mv__index {
	right: 4.6%;
	bottom: 3.125vw;
	padding-top: 1.171875vw;
	width: 31.25vw;
	border-top-width: .078125vw;
}

.mv__index-menu>li {
	padding-left: 2.03125vw;
}

.mv__index-menu>li:before {
	width: .46875vw;
	height: .46875vw;
}

.mv__index-menu>li:nth-child(n+2) {
	margin-top: .9375vw;
}

.mv__index-menu>li a {
	padding-right: 2.03125vw;
	font-size: 1.09375vw;
}

.mv__index-menu>li a:after {
	width: 1.40625vw;
	height: 1.40625vw;
	transition: background-image .4s ease-in-out;
}

.mv__index-menu>li a:hover:after {
	background-image: url(../../img/renewal/common/down-bk.svg);
}

.privacypolicy {
	font-size: .9375vw;
}

.sec__in {
	width: 90.625vw;
}

.sec__ttl {
	font-size: 3.125vw;
}

.slide__pagination {
	margin-top: 0;
}

.swiper-pagination-bullet {
	width: .625vw;
	height: .625vw;
}

.slide__pagination .swiper-pagination-bullet:nth-child(n+2) {
	margin-left: .9375vw !important;
}

.slide__pagination .swiper-pagination-bullet:nth-child(n+2) {
	margin-left: 12px !important;
}

.external {
	gap: 2.34375vw;
}

.external {
	gap: 30px;
}

.external a {
	padding-right: 1.5625vw;
	font-size: 1.09375vw;
	transition: opacity .4s ease-in-out;
}

.external a:after {
	width: .9375vw;
	height: .9375vw;
}

.external a:hover {
	opacity: .7;
}

.sec--group {
	padding: 3.125vw 0;
}

.gyosha .sec--group,
.faq_first .sec--group,
.post-type-archive-blog .sec--group,
.post-type-archive-voice .sec--group,
.post-type-archive-story .sec--group,
.post-type-archive-another .sec--group,
.single-story .sec--group,
.single-another .sec--group,
.single-voice .sec--group,
.contact .sec--group,
.nagoya_contact_form .sec--group,
.thanks .sec--group,
.request .sec--group,
.mail_contact_form .sec--group,
.corporate_form .sec--group,
.nagoya_reserve_form .sec--group,
.yokohama_reserve_form .sec--group,
.ginza_reserve_form .sec--group,
.reserve-online .sec--group {
	margin-top: 3.125vw;
}

.group {
	margin: 0 auto;
	width: 90.625vw;
}

.group__menu a {
	width: 21.71875vw;
}

.group__menu img {
	width: 100%;
}

.link {
	height: 39.0625vw;
}

.link a:hover .link__bg img {
	transform: scale(1.1, 1.1);
	cursor: pointer;
}

.link__bg img {
	height: 39.0625vw;
}

.link .btn-box {
	left: 4.6875vw;
	bottom: 4.6875vw;
	width: 40.625vw;
}

.link .btn-box .btn-box__ttl span.label {
	border-width: .078125vw;
	border-radius: .3125vw;
	font-size: 1.171875vw;
}

.navi {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.navi>ul>li>a {
	display: block;
	height: auto;
	font-size: 1.09375vw;
	transition: opacity .4s ease-in-out;
}

.navi>ul>li>a:hover {
	opacity: .7;
}

.navi>ul>li:nth-child(n+2) {
	margin-top: 1.5625vw;
}

.navi__parent p {
	margin-bottom: 1.5625vw;
	color: #909090;
	font-size: 1.09375vw;
}

.navi__child>ul>li a {
	height: auto;
	color: #fff;
	font-size: 1.09375vw;
}

.navi__child>ul>li a {
	transition: opacity .4s ease-in-out;
}

.navi__child>ul>li a:hover {
	opacity: .7;
}

.navi__child>ul>li:nth-child(n+2) {
	margin-top: .78125vw;
}

.sec--consul {
	padding: 6.25vw 0;
}

.consul {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.consul__image {
	margin: 0;
	width: 43.75vw;
	order: 2;
}

.consul__content {
	width: 39.0625vw;
}

.sec--reserve {
	padding: 6.25vw 0;
	background-image: url(../../img/renewal/front/reserve-bg.jpg);
}

.reserve {
	padding: 0 0 0 51.5625vw;
}

.reserve__text {
	margin-top: 1.5625vw;
}

.reserve__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 43.75vw;
	height: 22.03125vw;
}

.reserve__btn {
	margin: 3.125vw 0 0 0;
	width: 21.875vw;
}

.sns {
	position: absolute;
	left: 0;
	bottom: 0;
	margin: 0;
	gap: 1.5625vw;
}

.sns a {
	width: 1.71875vw;
}

}

@media screen and (min-width: 800px)and (min-width: 1280px) {

.mv__text p {
	font-size: 1.4rem;
}

}

@media screen and (min-width: 1280px) {

.header__top {
	padding: 0 30px;
	height: 110px;
	border-bottom-width: 1px;
}

.header__logo {
	width: 146px;
}

.header__search {
	margin-left: 56px;
	height: 110px;
}

.header__search:before {
	left: -28px;
	width: 1px;
	height: 14px;
}

.header__search-label {
	padding-left: 25px;
	font-size: 1.4rem;
}

.header__search-label:before {
	width: 16px;
	height: 16px;
}

.header__btn {
	margin-left: 28px;
	width: 256px;
}

.header__btn a {
	height: 44px;
	border-radius: 22px;
}

.header__btn a span {
	font-size: 1.4rem;
}

.header__btn a:nth-child(1) {
	width: 152px;
}

.header__btn a:nth-child(2) {
	width: 96px;
}

.single .main--sub {
	padding-top: 110px;
}

.footer__in {
	width: 1160px;
}

.footer__top {
	padding-top: 80px;
}

.footer__head {
	width: 335px;
}

.footer__logo {
	width: 196px;
}

.footer__menu {
	width: 775px;
}

.footer .external {
	margin-top: 100px;
}

.footer__bottom {
	margin-top: 35px;
	padding: 25px 0;
	border-top-width: 1px;
}

.footer .privacypolicy {
	margin-left: 25px;
	font-size: 1.2rem;
}

.footer__pagetop {
	padding-right: 20px;
	font-size: 1.6rem;
}

.footer__pagetop:after {
	width: 7px;
	height: 16px;
}

.btn-box__head {
	padding-bottom: 10px;
	border-bottom-width: 1px;
}

.btn-box__catch {
	font-size: 1.4rem;
}

.btn-box__ttl {
	padding-right: 60px;
	font-size: 36px;
	font-size: 3.6rem;
}

.btn-box__ttl:after {
	right: 10px;
	width: 30px;
	height: 30px;
}

.btn-box__text {
	margin-top: 20px;
}

.btn-box__text p {
	font-size: 14px;
	font-size: 1.4rem;
}

.btn-arrow {
	padding-right: 42px;
}

.btn-arrow:after {
	width: 30px;
	height: 30px;
}

.btn-mail {
	height: 60px;
	border-width: 1px;
	border-radius: 30px;
}

.btn-mail span {
	padding-left: 40px;
	font-size: 16px;
	font-size: 1.6rem;
}

.btn-mail span:before {
	width: 24px;
	height: 24px;
}

.btn-radius {
	padding-right: 50px;
	height: 50px;
	border-width: 1px;
	border-radius: 25px;
}

.btn-radius:before {
	right: 50px;
	width: 1px;
	height: 25px;
}

.btn-radius:after {
	right: 20px;
	width: 16px;
	height: 16px;
}

.btn-icon {
	border-width: 1px;
}

.btn-icon--i18 span {
	padding-left: 25px;
	font-size: 1.4rem;
}

.btn-icon--i18 span:before {
	width: 18px;
	height: 18px;
}

.btn-icon--i24 span {
	padding-left: 40px;
	font-size: 1.6rem;
}

.btn-icon--i24 span:before {
	width: 24px;
	height: 24px;
}

.btn-icon--h40 {
	height: 40px;
	border-radius: 20px;
}

.btn-icon--h46 {
	height: 46px;
	border-radius: 23px;
}

.btn-icon--h60 {
	height: 60px;
	border-radius: 30px;
}

.copyright {
	font-size: 12px;
	font-size: 1.2rem;
}

.gnavi {
	gap: 14px;
}

.gnavi__label {
	height: 110px;
	font-size: 13px;
	font-size: 1.3rem;
}

.gnavi__label:after {
	bottom: -0.5px;
	height: 1px;
}

.keyword__label {
	font-size: 14px;
	font-size: 1.4rem;
}

.keyword__word {
	gap: 8px;
}

.keyword__word a {
	height: 30px;
	border-width: 1px;
	border-radius: 15px;
	font-size: 13px;
	font-size: 1.3rem;
}

.loading__logo {
	width: 218px;
}

.loading__progress {
	height: 4px;
}

.megamenu {
	padding-top: 110px;
}

.megamenu__gnavi {
	padding: 30px;
}

.megamenu__gnavi-content {
	width: 620px;
}

.megamenu__head {
	margin-bottom: 40px;
}

.megamenu__ttl {
	font-size: 30px;
	font-size: 3rem;
}

.megamenu__menu {
	gap: 15px 40px;
}

.megamenu__menu li {
	width: 290px;
	border-bottom-width: 1px;
}

.megamenu__menu a {
	padding-right: 50px;
	height: 50px;
}

.megamenu__menu a:after {
	width: 24px;
	height: 24px;
}

.megamenu__gnavi-image {
	width: 360px;
}

.megamenu__gnavi-image img {
	border-radius: 4px;
}

.megamenu__search {
	padding: 40px;
}

.megamenu__search-box {
	width: 690px;
}

.megamenu__search-keyword {
	width: calc(100% - 730px);
}

.mv {
	min-height: 800px;
}

.mv__copy {
	margin-bottom: 40px;
	font-size: 7rem;
}

.mv__news {
	bottom: 40px;
	width: 400px;
}

.mv__news-post a {
	padding-bottom: 20px;
	border-bottom-width: 1px;
}

.mv__news-post__date {
	font-size: 1.4rem;
}

.mv__news-post__ttl {
	padding-right: 42px;
	font-size: 1.4rem;
}

.mv__news-post__ttl:after {
	width: 22px;
	height: 22px;
}

.mv__en {
	font-size: 2rem;
}

.mv__ttl {
	font-size: 6rem;
}

.mv__index {
	bottom: 40px;
	padding-top: 15px;
	width: 400px;
	border-top-width: 1px;
}

.mv__index-menu>li {
	padding-left: 26px;
}

.mv__index-menu>li:before {
	width: 6px;
	height: 6px;
}

.mv__index-menu>li:nth-child(n+2) {
	margin-top: 12px;
}

.mv__index-menu>li a {
	padding-right: 26px;
	font-size: 1.4rem;
}

.mv__index-menu>li a:after {
	width: 18px;
	height: 18px;
}

.privacypolicy {
	font-size: 12px;
	font-size: 1.2rem;
}

.search__form {
	padding: 0 10px;
	height: 60px;
	border-width: 1px;
	border-radius: 30px;
}

.search__form input[type=text] {
	padding: 0 20px;
	font-size: 16px;
	font-size: 1.6rem;
}

.search__submit {
	width: 120px;
}

.search__submit button {
	padding-left: 45px;
	height: 44px;
	border-radius: 22px;
	font-size: 14px;
	font-size: 1.4rem;
}

.search__submit button:before {
	left: 20px;
	width: 16px;
	height: 16px;
}

.sec__in {
	width: 1160px;
}

.sec__ttl {
	font-size: 40px;
	font-size: 4rem;
}

.slide__control {
	width: 260px;
}

.slide__navi {
	width: 90px;
}

.slide__prev,
.slide__next {
	width: 40px;
	height: 40px;
}

.slide__fraction {
	width: 150px !important;
}

.slide__fraction .swiper-pagination-current,
.slide__fraction .swiper-pagination-total {
	font-size: 14px;
	font-size: 1.4rem;
}

.slide__fraction .slide__bar {
	width: 100px;
	height: 2px;
}

.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
}

.external a {
	padding-right: 20px;
	font-size: 1.4rem;
}

.external a:after {
	width: 12px;
	height: 12px;
}

.sec--group {
	padding: 40px 0;
}

.gyosha .sec--group,
.faq_first .sec--group,
.post-type-archive-blog .sec--group,
.post-type-archive-voice .sec--group,
.post-type-archive-story .sec--group,
.post-type-archive-another .sec--group,
.single-story .sec--group,
.single-another .sec--group,
.single-voice .sec--group,
.contact .sec--group,
.nagoya_contact_form .sec--group,
.thanks .sec--group,
.request .sec--group,
.mail_contact_form .sec--group,
.corporate_form .sec--group,
.nagoya_reserve_form .sec--group,
.yokohama_reserve_form .sec--group,
.ginza_reserve_form .sec--group,
.reserve-online .sec--group {
	margin-top: 100px;
}

.group {
	width: 1160px;
}

.group__menu a {
	width: 278px;
}

.link {
	height: 500px;
}

.link__bg img {
	height: 500px;
}

.link .btn-box {
	left: 60px;
	bottom: 60px;
	width: 520px;
}

.link .btn-box .btn-box__ttl span.label {
	border-width: 1px;
	border-radius: 4px;
	font-size: 1.5rem;
}

.navi>ul>li>a {
	font-size: 1.4rem;
}

.navi>ul>li:nth-child(n+2) {
	margin-top: 20px;
}

.navi__parent p {
	margin-bottom: 20px;
	font-size: 1.4rem;
}

.navi__child>ul>li a {
	font-size: 1.4rem;
}

.navi__child>ul>li:nth-child(n+2) {
	margin-top: 10px;
}

.sec--consul {
	padding: 80px 0;
}

.consul__image {
	width: 560px;
}

.consul__content {
	width: 500px;
}

.sec--reserve {
	padding: 80px 0;
}

.reserve {
	padding-left: 660px;
}

.reserve__text {
	margin-top: 20px;
}

.reserve__image {
	width: 560px;
	height: 282px;
}

.reserve__btn {
	margin: 40px 0 0 0;
	width: 280px;
}

.sns {
	gap: 20px;
}

.sns a {
	width: 22px;
}

}

@media screen and (max-width: 799px) {

.header__navi {
	display: none;
}

.main--sub {
	padding-top: 8.59375vw;
}

.single .main--sub {
	padding-top: 8.59375vw;
}

.mv__content {
	width: 88vw;
}

.mv--sub .mv__content {
	padding-bottom: 26.6666666667vw;
}

.mv__news {
	left: 50%;
	transform: translateX(-50%);
}

.mv__index {
	left: 50%;
	transform: translateX(-50%);
}

.slide__control {
	display: none;
}

.group {
	padding: 8vw 6.2666666667vw;
	overflow-x: scroll;
}

.group__menu {
	flex-direction: column;
	gap: 5.3333333333vw;
}

.link .btn-box {
	transform: translateX(-50%);
}

.navi {
	border-top-color: #393939;
	border-top-style: solid;
	border-top-width: .2666666667vw;
}

.navi>ul:not(.navi__level) {
	border-bottom-color: #393939;
	border-bottom-style: solid;
	border-bottom-width: .2666666667vw;
}

.navi__level li {
	border-bottom-color: #393939;
	border-bottom-style: solid;
	border-bottom-width: .2666666667vw;
}

.navi__parent {
	display: flex;
	align-items: center;
	height: 18.6666666667vw;
	color: #fff;
	font-size: 4.2666666667vw;
	font-weight: 500;
	line-height: 1.6em;
	white-space: nowrap;
}

.navi>ul>li>.navi__parent:nth-child(1):after {
	content: "";
	position: absolute;
	top: 50%;
	right: 4vw;
	display: inline-block;
	width: 3.2vw;
	height: 3.2vw;
	background-image: url(../../img/renewal/common/plus.svg);
	background-size: contain;
	background-position: center;
	transform: translateY(-50%);
	z-index: 2;
}

.navi>ul>li>.navi__parent:nth-child(1).is-open:after {
	background-image: url(../../img/renewal/common/minus.svg);
}

.navi__child {
	display: none;
}

.navi__child>ul {
	margin-bottom: 5.3333333333vw;
}

.reserve .sec__head {
	position: absolute;
	top: 0;
	left: 0;
}

}

