@charset "utf-8";

.index-head__wrap:before {
	background-image: url(../images/showroom/bg_index_pagehead.jpg);
}

.showroom {
	margin-top: 120px;
}

.showroom-list__item {
	margin: 80px 0;
}

.showroom-list__item:first-child {
	margin-top: 0;
}

.showroom-list__item a {
	display: flex;
	position: relative;
	text-decoration: none;
	justify-content: space-between;
	align-items: center;
}

.showroom-list__item a:after {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(24, 141, 96, 0.1);
	border-radius: 20px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	opacity: 0;
}

.showroom-list__item a:hover:after {
	opacity: 1;
}

.showroom-list__image,
.showroom-list__wrap {
	position: relative;
	z-index: 1;
}

.showroom-list__image {
	max-width: 35%;
	border-radius: 10px;
	overflow: hidden;
	transform-origin: center;
	transition: all 300ms ease;
}

a:hover .showroom-list__image {
	transform: scale3d(0.96, 0.96, 0.96);
}

.showroom-list__wrap {
	max-width: calc(65% - 60px);
	flex-basis: calc(65% - 60px);
}

.showroom-list__title {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
}

.showroom-list__text {
	margin: 30px 0;
	font-size: 1.6rem;
	line-height: 2;
	color: rgba(0, 0, 0, 0.8);
}

.showroom-head .other-head-contents__text {
	max-width: 65%;
	flex-basis: 65%;
	display: flex;
}

.other-head-contents__text:after {
	content: "";
	width: 1px;
	height: 100%;
	margin: 0 8%;
	display: block;
	background-color: rgba(0, 0, 0, 0.15);
}

.other-head .showroom-list__dlist {
	max-width: 35%;
	flex-basis: 35%;
}

.other-head .showroom-list__dlist dt {
	max-width: 120px;
	flex-basis: 120px;
}

.other-head .showroom-list__dlist dd {
	max-width: calc(100% - 120px);
	flex-basis: calc(100% - 120px);
}

.showroom-nav {
	margin-bottom: 80px;
}

.gmap-nav-list {
	margin-top: 20px;
	display: flex;
}

.gmap-nav-list-item {
	max-width: 25%;
	flex-basis: 25%;
	padding: 0 20px;
	position: relative;
	box-sizing: border-box;
}

.gmap-nav-list-item:after {
	content: "";
	width: 1px;
	height: 60%;
	display: block;
	background-color: rgba(0, 0, 0, 0.1);
	position: absolute;
	top: 20%;
	right: 0;
}

.gmap-nav-list-item:last-child:after {
	display: none;
}

.gmap-nav-list-anc {
	padding: 20px;
	display: block;
	border-radius: 10px;
	text-decoration: none;
}

.gmap-nav-list-anc:hover {
	background-color: rgba(24, 141, 96, 1);
	color: rgba(255, 255, 255, 1);
}

.gmap-nav-list-anc h3 {
	margin-bottom: 10px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.6;
	transition: all 250ms ease;
}

.gmap-nav-list-anc:hover h3 {
	color: rgba(255, 255, 255, 1);
}

.gmap-nav-list-anc p {
	font-size: 1.3rem;
	line-height: 1.6;
}

.showroom-nav {
	display: flex;
}

.showroom-nav__item {
	max-width: 50%;
	flex-basis: 50%;
}

.showroom-nav__item a {
	height: 80px;
	display: flex;
	border: 2px solid rgba(24, 141, 96, 1);
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.6;
	text-decoration: none;
	color: rgba(24, 141, 96, 1);
	box-sizing: border-box;
	justify-content: center;
	align-items: center;
}

.showroom-nav__item a:hover {
	background-color: rgba(24, 141, 96, 0.1);
}

.showroom-nav__item a.current {
	background-color: rgba(24, 141, 96, 1);
	color: rgba(255, 255, 255, 1);
}

.showroom-nav__item:first-child a {
	border-radius: 20px 0 0 20px;
}

.showroom-nav__item:last-child a {
	border-radius: 0 20px 20px 0;
}

.showroom-nav__item a:before {
	content: "";
	width: 20px;
	height: 20px;
	margin-right: 20px;
	display: block;
	background-size: 100% auto;
}

.showroom-nav-list:before {
	background-image: url(../images/showroom/index/icon_list.png);
}

.showroom-nav-list.current:before {
	background-image: url(../images/showroom/index/icon_list_w.png);
}

.showroom-nav-map:before {
	background-image: url(../images/showroom/index/icon_map.png);
}

.showroom-nav-map.current:before {
	background-image: url(../images/showroom/index/icon_map_w.png);
}

#gmap {
	width: 100%;
	height: calc(200px + 30vw);
	max-height: 800px;
	border-radius: 20px;
}

.showroom-btn {
	width: calc((100% - 300px) - 60px);
	margin-top: 80px;
}

.showroom-btn .btn {
	width: 100%;
	height: 80px;
	max-width: none;
	border-radius: 10px;
	font-size: 1.6rem;
}


@media screen and (max-width: 1280px) {
	.showroom-list__item a {
		align-items: flex-start;
	}

	.showroom-btn {
		width: calc(75% - 6vw);
	}
}

@media screen and (max-width: 1024px) {
	.showroom-list__image {
		max-width: 40%;
		border-radius: 10px;
		overflow: hidden;
	}

	.showroom-list__wrap {
		max-width: calc(60% - 6vw);
		flex-basis: calc(60% - 6vw);
	}

	.showroom-list__title {
		font-size: 2rem;
	}

	.showroom-list__text {
		margin: 20px 0;
		font-size: 1.5rem;
	}

	.gmap-nav-list-item {
		padding: 0 10px;
	}

	.gmap-nav-list-anc {
		padding: 20px 10px;
	}

	.showroom-btn {
		width: 100%;
	}
}

@media screen and (max-width: 800px) {
	.gmap-nav-list {
		flex-wrap: wrap;
	}

	.gmap-nav-list-item {
		max-width: 50%;
		flex-basis: 50%;
	}

	.gmap-nav-list-item:nth-child(2n):after {
		display: none;
	}

	.gmap-nav-list-anc h3 {
		font-size: 1.6rem;
	}
}

@media screen and (max-width: 640px) {
	.showroom-list__item {
		margin: 60px 0;
	}

	.showroom-list__item a {
		display: block;
	}

	.showroom-list__image,
	.showroom-list__wrap {
		max-width: none;
	}

	.showroom-list__image {
		margin-bottom: 20px;
	}

	.showroom-list__title {
		font-size: 1.8rem;
	}

	.showroom-list__text {
		margin-top: 10px;
		font-size: 1.4rem;
	}

	.showroom-nav {
		display: block;
	}

	.showroom-nav__item {
		max-width: none;
		margin: 5px 0;
	}

	.showroom-nav__item a {
		height: 50px;
		border-radius: 10px !important;
		font-size: 1.6rem;
		border-radius: 0 0 20px 20px;
	}

	.showroom-nav {
		margin-bottom: 60px;
	}

	.showroom-btn {
		margin-top: 60px;
	}


	.showroom-btn .btn {
		height: 60px;
		font-size: 1.4rem;
	}
}

@media screen and (max-width: 480px) {
	.gmap-nav-list {
		display: block;
	}

	.gmap-nav-list-item {
		max-width: none;
		margin: 5px 0;
		padding: 0;
	}

	.gmap-nav-list-item:after {
		display: none !important;
	}

	.gmap-nav-list-anc {
		height: 36px;
		padding: 0 15px;
		display: flex;
		border: 2px solid rgba(24, 141, 96, 1);
		border-radius: 18px;
		box-sizing: border-box;
		align-items: center;
	}

	.gmap-nav-list-anc h3 {
		margin-bottom: 0;
		font-size: 1.5rem;
		color: rgba(24, 141, 96, 1);
	}

	.gmap-nav-list-anc p {
		display: none;
	}
}

@media screen and (max-width: 480px) {
	.other-head-contents {
		padding: 0 calc(6vw - 10px);
	}
}

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

.other-head-main.headoffice:before {
	background-image: url(../images/showroom/img_header_head.jpg);
}

.other-head-main.uto:before {
	background-image: url(../images/showroom/img_header_uto.jpg);
}

.other-head-main.yatsushiro:before {
	background-image: url(../images/showroom/img_header_yatsushiro.jpg);
}

.other-head-main.ozu:before {
	background-image: url(../images/showroom/img_header_ozu.jpg);
}

.other-head-contents {
	display: flex;
}

.house__item {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	flex-wrap: wrap;
}

.house__item:before {
	content: "";
	width: 100%;
	height: 0;
	margin: 120px 0;
	display: block;
	border-top: 2px dotted rgba(24, 141, 96, 1);
}

.no-border.house__item:before {
	display: none;
}

.house-side {
	max-width: 300px;
	flex-basis: 300px;
}

.house-side__wrap {
	display: flex;
	position: sticky;
	top: 120px;
	align-items: center;
	flex-direction: column;
}

.house-side__catch {
	padding-top: 40px;
	display: flex;
	flex-direction: column-reverse;
	writing-mode: vertical-lr;
	font-feature-settings: normal;
}

.house-side__catch p {
	font-size: 3.5rem;
	font-weight: bold;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
}

.house-side__catch span {
	color: rgba(24, 141, 96, 1);
}

.house-side-spec {
	width: 100%;
	margin-top: 60px;
}

.house-side-spec__title {
	margin-bottom: 10px;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1.8;
	color: rgba(0, 0, 0, 1);
}

.house-side-spec__list {
	padding: 20px 0;
	border-bottom: 2px dotted rgba(24, 141, 96, 1);
	display: flex;
	flex-wrap: wrap;
	font-size: 1.3rem;
	line-height: 1.6;
}

.house-side-spec__list dt {
	max-width: 80px;
	flex-basis: 80px;
	font-weight: bold;
}

.house-side-spec__list dd {
	max-width: calc(100% - 80px);
	flex-basis: calc(100% - 80px);
}

.house-main {
	max-width: calc((100% - 300px) - 60px);
	flex-basis: calc((100% - 300px) - 60px);
}

.house-main__image {
	margin-bottom: 100px;
	border-radius: 40px;
	overflow: hidden;
}

.house-main__title {
	margin-bottom: 20px;
	font-size: 2.5rem;
	font-weight: bold;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
}

.house-detail {
	margin: 80px 0;
	display: flex;
	justify-content: space-between;
}

.house-detail:last-child {
	margin-bottom: 0;
}

.house-detail.reverse {
	flex-direction: row-reverse;
}

.house-detail__image,
.house-detail__wrap {
	max-width: calc(50% - 30px);
	flex-basis: calc(50% - 30px);
}

.house-detail__image figure {
	border-radius: 20px;
	overflow: hidden;
}

.house-detail__wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.house-nav {
	margin: 120px 0;
	display: flex;
}

.house-nav__item {
	max-width: 50%;
	flex-basis: 50%;
}

.house-nav__item a {
	width: 100%;
	height: 80px;
	display: flex;
	border: 2px solid rgba(24, 141, 96, 1);
	border-left-width: 1px;
	border-right-width: 1px;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.6;
	text-decoration: none;
	color: rgba(24, 141, 96, 1);
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

.house-nav__item a:hover {
	background-color: rgba(24, 141, 96, 1);
	color: rgba(255, 255, 255, 1);
}

.house-nav__item:first-child a {
	border-radius: 20px 0 0 20px;
	border-left-width: 2px;
}

.house-nav__item:last-child a {
	border-radius: 0 20px 20px 0;
	border-right-width: 2px;
}

@media screen and (max-width: 1280px) {
	.house-side {
		max-width: 25%;
		flex-basis: 25%;
	}

	.house-main {
		max-width: calc(75% - 6vw);
		flex-basis: calc(75% - 6vw);
	}

	.other-head-contents {
		display: block;
	}

	.showroom-head .other-head-contents__text,
	.other-head .showroom-list__dlist {
		max-width: none;
	}

	.showroom-head .other-head-contents__text {
		display: block;
		margin-bottom: 40px;
	}

	.other-head-contents__text::after {
		display: none;
	}

	.house-side__catch p {
		font-size: 3rem;
	}

	.house-detail__image,
	.house-detail__wrap {
		max-width: calc(50% - 20px);
		flex-basis: calc(50% - 20px);
	}
}

@media screen and (max-width: 1024px) {
	.house__item {
		display: block;
	}

	.house__item:before {
		margin: 80px 0;
	}

	.house-main,
	.house-side {
		max-width: none;
		display: block;
	}

	.house-side__catch {
		padding-top: 0;
		display: block;
		writing-mode: inherit;
		letter-spacing: -0.4em;
	}

	.house-side__catch p {
		display: inline-block;
		font-size: 2.5rem;
		letter-spacing: normal;
	}

	.house-side-spec {
		margin: 20px 0;
	}

	.house-side-spec__list {
		font-size: 1.2rem;
	}

	.house-side-spec__list li {
		display: inline-block;
		vertical-align: top;
	}

	.house-side-spec__list li:after {
		content: "、";
	}

	.house-side-spec__list li:last-child:after {
		display: none;
	}

	.house-main__title {
		margin-bottom: 10px;
		font-size: 2rem;
	}

	.house-detail__image,
	.house-detail__wrap {
		max-width: calc(50% - 3vw);
		flex-basis: calc(50% - 3vw);
	}

	.house-nav {
		margin: 80px 0;
	}

	.house-nav__item a {
		height: 60px;
		font-size: 1.8rem;
	}

	.house-nav__item:first-child a {
		border-radius: 10px 0 0 10px;
	}

	.house-nav__item:last-child a {
		border-radius: 0 10px 10px 0;
	}
}

@media screen and (max-width: 800px) {
	.house-main__image {
		border-radius: 20px;
	}

	.house-main__image {
		margin-bottom: 60px;
	}

	.house-detail {
		margin: 60px 0;
	}

	.house-nav__item a {
		height: 60px;
		font-size: 1.6rem;
	}
}

@media screen and (max-width: 640px) {
	.house-detail__image figure {
		border-radius: 10px;
	}

	.house-nav {
		display: block;
	}

	.house-nav__item {
		max-width: none;
	}

	.house-nav__item a {
		height: 50px;
		border: 2px solid rgba(24, 141, 96, 1);
		font-size: 1.5rem;
	}

	.house-nav__item:first-child a {
		border-radius: 10px 10px 0 0;
	}

	.house-nav__item:last-child a {
		border-top: 0;
		border-radius: 0 0 10px 10px;
	}
}

@media screen and (max-width: 480px) {
	.house__item:before {
		margin: 60px 0;
	}

	.house-side__catch p {
		font-size: 2rem;
	}

	.house-main__image {
		width: calc(100% + 12vw);
		left: -6vw;
	}

	.house-main__image .swiper-slide {
		border-radius: 0;
	}

	.swiper-button-next,
	.swiper-button-prev {
		display: none;
	}

	.house-detail {
		display: block;
	}

	.house-detail__image,
	.house-detail__wrap {
		max-width: none;
	}

	.house-detail__image {
		margin-bottom: 20px;
	}

	.house-main__title {
		font-size: 1.8rem;
	}

	.house-nav {
		margin: 60px 0;
	}
}

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

#map {
	width: 100%;
	height: calc(250px + 40vw);
	max-height: 800px;
	overflow: hidden;
	border-radius: 10px;
	position: relative;
	z-index: 0;
}

/* .infobox {
  width: 280px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 20px;
  overflow: hidden;
}

.infobox-image {
  content: "";
  width: 280px;
  height: 160px;
  display: block;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.infobox img {
  width: 30px;
  margin: 0 !important;
  position: absolute !important;
  top: 10px;
  right: 10px;
  z-index: 1;
}

.infobox-wrap {
  padding: 20px;
  line-height: 20px;
}

.infobox-wrap h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: bold;
}

.infobox-wrap p {
  font-size: 1.2rem;
} */

.infobox:before {
	content: "";
	width: 20px;
	height: 20px;
	display: block;
	background-image: url(../images/common/img_map_arrow.png);
	background-size: 100% auto;
	position: absolute;
	left: calc(50% - 10px);
	bottom: -17px;
	z-index: 1;
}

.infobox a {
	width: 100%;
	min-height: 40px;
	display: flex;
	padding: 5px 10px;
	padding-right: 40px;
	background-color: rgba(255, 255, 255, 1);
	border: 3px solid rgba(24, 141, 96, 1);
	border-radius: 10px;
	position: relative;
	z-index: 0;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.4;
	text-decoration: none;
	color: rgba(24, 141, 96, 1);
	box-sizing: border-box;
	align-items: center;
	cursor: pointer;
}

.infobox a:before,
.infobox a:after {
	content: "";
	display: block;
	position: absolute;
	box-sizing: border-box;
}

.infobox a:before {
	width: 20px;
	height: 20px;
	border: 1px solid rgba(24, 141, 96, 0.3);
	border-radius: 50%;
	top: calc(50% - 10px);
	right: 10px;
}

.infobox a:after {
	width: 4px;
	height: 4px;
	border-top: 1px solid rgba(24, 141, 96, 1);
	border-right: 1px solid rgba(24, 141, 96, 1);
	top: calc(50% - 2px);
	right: 18px;
	transform: rotate3d(0, 0, 1, 45deg);
	transform-origin: center;
}

.infobox a:hover:before {
	border-color: rgba(24, 141, 96, 1);
}

.infobox a:hover:after {
	transform: translateX(3px) rotate3d(0, 0, 1, 45deg);
}

.infobox img {
	display: none;
}