@charset "utf-8";

/* @import url("https://fonts.googleapis.com/css?family=Bree+Serif&display=swap"); */

html {
	font-size: 62.5%;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN",
		"Hiragino Sans", sans-serif;
	font-weight: 500;
	font-feature-settings: "palt";
	font-kerning: normal;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
}

body {
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	background-color: rgba(255, 255, 255, 1);
	font-size: 1.35rem;
	line-height: 1;
	color: rgba(0, 0, 0, 0.8);
	text-align: left;
	text-rendering: optimizeLegibility;
	font-feature-settings: "palt" 1;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-kerning: normal;
	font-kerning: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック",
		"Yu Gothic", "メイリオ", sans-serif;
}

a {
	color: rgba(0, 0, 0, 1);
	text-decoration: underline;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:hover {
	color: rgba(0, 0, 0, 1);
	text-decoration: none;
}

a,
input,
select,
textarea,
button,
*:before,
*:after {
	backface-visibility: hidden;
	-webkit-transition: all 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0ms;
	transition: all 250ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0ms;
	-webkit-transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0);
	transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0);
}

input[type="submit"],
button {
	border-radius: 0;
	-webkit-appearance: none;
}

a:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
	outline: none;
}

table {
	border-collapse: collapse;
}

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

main {
	display: block;
}

object {
	pointer-events: none;
}

.ready .header,
.ready #state {
	opacity: 0;
	visibility: hidden;
}

a.ban {
	cursor: default;
}

label {
	cursor: pointer;
	-webkit-transition: all 250ms ease;
	transition: all 250ms ease;
}

::selection {
	background: rgba(0, 0, 0, 1);
	color: rgba(255, 255, 255, 1);
}

::-moz-selection {
	background: rgba(0, 0, 0, 1);
	color: rgba(255, 255, 255, 1);
}

:root {
	--color-main: rgba(24, 141, 96, 1);
	--color-lighten: rgba(255, 255, 255, 1);
	--color-darken: rgba(0, 0, 0, 1);
}

/* header ------------------------------------*/

#header {
	width: calc(100% - 40px);
	padding: 0 40px;
	position: fixed;
	top: 20px;
	left: 20px;
	z-index: 12;
	box-sizing: border-box;
}

#header:before {
	content: "";
	width: 100%;
	height: 1px;
	display: block;
	background-color: rgba(0, 0, 0, 1);
	position: absolute;
	top: 80px;
	left: 0;
	z-index: 1;
	opacity: 0;
	transition: all 150ms ease;
}

#header.over:before {
	opacity: 1;
}

#heade-bg {
	width: 100%;
	height: 80px;
	display: block;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 40px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	transition: all 300ms ease;
	/* 	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1); */
}

/* .open #heade-bg,
.scroll #heade-bg {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
} */

.header__wrap {
	height: 80px;
	display: flex;
	position: relative;
	justify-content: space-between;
	align-items: center;
	z-index: 1;
}

.header-logo {
	max-width: 170px;
	flex-basis: 170px;
	position: relative;
	z-index: 1;
}

.header-nav {
	display: flex;
	align-items: center;
}

.header-nav__item {
	display: flex;
	align-items: center;
}

.header-nav__item:after {
	content: "/";
	margin: 0 1vw;
	position: relative;
	z-index: 1;
	font-size: 1.4rem;
	line-height: 1.6;
	color: rgba(0, 0, 0, 0.5);
}

.header-nav__item:last-child:after {
	display: none;
}

.header-nav-anchor {
	height: 80px;
	display: flex;
	overflow: hidden;
	position: relative;
	z-index: 1;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.6;
	text-decoration: none;
	color: rgba(0, 0, 0, 1);
	align-items: center;
}

.header-nav__item:hover .header-nav-anchor {
	color: rgba(24, 141, 96, 1);
}

.header-sub {
	position: relative;
}

.header-sub__item {
	width: calc(100% + 80px);
	min-height: 300px;
	padding: 120px 40px 60px 40px;
	display: flex;
	position: absolute;
	top: 0;
	left: -40px;
	z-index: 0;
	justify-content: space-between;
	opacity: 0;
	pointer-events: none;
	transition: all 300ms ease;
	box-sizing: border-box;
}

.header-nav__item:hover .header-sub__item {
	opacity: 1;
	pointer-events: auto;
	transition-delay: 300ms;
}

.header-sub__title {
	max-width: 20%;
	flex-basis: 20%;
}

.header-sub__title a {
	display: flex;
	position: relative;
	text-decoration: none;
	writing-mode: vertical-lr;
	font-feature-settings: normal;
	flex-direction: column;
}

.header-sub__title .jp {
	margin-right: 10px;
	padding-right: 10px;
	/* margin: 0 20px 0 10px; */
	position: relative;
	font-size: 2.5rem;
	font-weight: 600;
	font-feature-settings: normal;
}

.header-sub__title .jp:after {
	content: "";
	width: 1px;
	height: 100%;
	display: block;
	background-color: rgba(0, 0, 0, 1);
	position: absolute;
	right: 0;
	top: 0;
}

.header-sub__title .en {
	display: block;
	font-size: 1.6rem;
}

.header-sub__wrap {
	max-width: 80%;
	flex-basis: 80%;
}

.header-sub-main-list {
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
}

.header-sub-main-list__item {
	max-width: calc((100% - (2vw * 3) - 1px) / 4);
	flex-basis: calc((100% - (2vw * 3) - 1px) / 4);
	margin-right: 2vw;
	margin-bottom: 2vw;
}

.header-sub-main-list__item:nth-child(4n) {
	margin-right: 0;
}

.header-sub-main-list__item a {
	display: block;
	text-decoration: none;
}

.header-sub-main-list__image {
	margin-bottom: 10px;
	border-radius: 10px;
	overflow: hidden;
}

.header-sub-main-list__title {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.8;
	color: rgba(0, 0, 0, 1);
	transition: all 250ms ease;
}

a:hover .header-sub-main-list__title {
	color: rgba(24, 141, 96, 1);
}

.header-sub-main-list__text {
	font-size: 1.3rem;
	line-height: 1.8;
	color: rgba(0, 0, 0, 0.8);
}

.header-sub-list {
	margin-top: 20px;
	display: flex;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	flex-wrap: wrap;
}

.header-sub-list:first-child {
	margin-top: 0;
	border-top: 0;
}

.header-sub-list__item {
	max-width: calc((100% - (2vw * 3) - 1px) / 4);
	flex-basis: calc((100% - (2vw * 3) - 1px) / 4);
	margin-top: 20px;
	margin-right: 2vw;
}

.header-sub-list__item:nth-child(4n) {
	margin-right: 0;
}

.header-sub-list__text {
	padding-left: 15px;
	display: table;
	position: relative;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.6;
	text-decoration: none;
	color: rgba(0, 0, 0, 1);
}

.header-sub-list__text:before {
	content: "";
	width: 6px;
	height: 6px;
	display: block;
	border-top: 2px solid rgba(24, 141, 96, 1);
	border-right: 2px solid rgba(24, 141, 96, 1);
	position: absolute;
	left: 0;
	top: 10px;
	box-sizing: border-box;
	transform: rotate3d(0, 0, 1, 45deg);
	transform-origin: center;
}

.header-sub-list__text a:hover {
	color: rgba(24, 141, 96, 1) !important;
}

#menu {
	display: none;
}

#overlay {
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	opacity: 0;
	transition: all 300ms ease;
	pointer-events: none;
}

#overlay.show {
	opacity: 1;
	pointer-events: auto;
}

.spnav {
	display: none;
}

.contact-side {
	width: 60px;
	display: flex;
	position: fixed;
	top: calc(50vh - 130px);
	right: 0;
	z-index: 9;
	justify-content: center;
	align-items: center;
}

.contact-side__btn {
	width: 30px;
	height: 260px;
	/* 	margin: 0 auto; */
	display: flex;
	background-color: rgba(255, 255, 255, 1);
	border-top: 1px dotted rgba(24, 141, 96, 1);
	border-bottom: 1px dotted rgba(24, 141, 96, 1);
	position: relative;
	left: 0;
	z-index: 1;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.8;
	color: rgba(24, 141, 96, 1);
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	writing-mode: vertical-lr;
	font-feature-settings: normal;
	cursor: pointer;
	transition: all 250ms ease;
}

.contact-side:hover .contact-side__btn {
	background-color: transparent;
	border-top-color: rgba(255, 255, 255, 1);
	border-bottom-color: rgba(255, 255, 255, 1);
	color: rgba(255, 255, 255, 1);
}

.contact-side-main {
	width: calc(320px + 60px);
	padding: 40px 30px;
	padding-right: 90px;
	background-color: #1b1b1b;
	border-radius: 20px 0 0 20px;
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 0;
	color: rgba(255, 255, 255, 1);
	box-sizing: border-box;
	transform: translateY(-50%);
	opacity: 0;
	transition: opacity 250ms ease;
	pointer-events: none;
}

.contact-side:hover .contact-side-main {
	opacity: 1;
	pointer-events: auto;
}

.contact-side-main:after {
	content: "";
	width: 1px;
	height: 100%;
	display: block;
	background-color: rgba(255, 255, 255, 0.1);
	position: absolute;
	right: 60px;
	top: 0;
	z-index: 2;
}

.contact-side-free,
.contact-side-tel {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.contact-side-free dt,
.contact-side-tel dt {
	font-size: 1.2rem;
	line-height: 1.6;
}

.contact-side-free dt {
	max-width: 80px;
	flex-basis: 80px;
}

.contact-side-free dd {
	display: flex;
	font-size: 2.2rem;
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: 0;
	align-items: center;
}

.contact-side-free dd:before {
	content: "";
	width: 24px;
	height: 17px;
	margin-right: 5px;
	display: block;
	background-image: url(../images/common/icon_fd.png);
	background-size: 100% auto;
}

.contact-side-tel {
	margin: 20px 0;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-side-tel dt {
	max-width: 90px;
	flex-basis: 90px;
}

.contact-side-tel dd {
	font-size: 2rem;
	font-weight: 300;
	line-height: 1.2;
}

.contact-side-text {
	font-size: 1.2rem;
	line-height: 1.6;
}

.contact-side-list {
	margin-top: 20px;
}

.contact-side-list li {
	margin-bottom: 5px;
}

.contact-side-list li:last-child {
	margin-bottom: 0;
}

.contact-side-list a {
	height: 30px;
	display: flex;
	background-color: rgba(24, 141, 96, 1);
	border-radius: 15px;
	font-size: 1.3rem;
	font-weight: 600;
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
	justify-content: center;
	align-items: center;
}

.contact-side-list a:hover {
	opacity: 0.8;
}

@media screen and (max-width: 1280px) {
	.header-logo {
		max-width: 150px;
		flex-basis: 150px;
	}

	.header-nav-anchor {
		font-size: 1.4rem;
	}
}

@media screen and (max-width: 1024px) {
	#header {
		width: calc(100% - 6vw);
		padding: 0 3vw;
		top: 10px;
		left: 3vw;
	}

	.open #heade-bg {
		border-radius: 40px 40px 0 0;
	}

	.header-nav {
		display: none;
	}

	#menu {
		width: 40px;
		height: 40px;
		background-color: rgba(24, 141, 96, 1);
		border-radius: 50%;
		position: relative;
		z-index: 15;
		display: flex;
		margin-left: auto;
		cursor: pointer;
		flex-direction: column-reverse;
		justify-content: center;
		align-items: center;
	}

	.menuIcon,
	#menu:before,
	#menu:after {
		width: 20px;
		height: 2px;
		display: block;
		background-color: rgba(255, 255, 255, 1);
		border-radius: 1px;
		position: relative;
		transition: all 200ms ease;
	}

	#menu:before,
	#menu:after {
		content: "";
		top: 0;
		position: absolute;
		left: calc(50% - 10px);
	}

	#menu:before {
		top: calc(50% - 6px);
	}

	#menu:after {
		top: calc(50% + 4px);
	}

	.open .menuIcon {
		opacity: 0;
	}

	.open #menu:before {
		top: calc(50% - 5px);
		background-color: rgba(255, 255, 255, 1);
		transform: translateY(3px) rotate3d(0, 0, 1, 45deg);
	}

	.open #menu:after {
		top: calc(50% + 2px);
		background-color: rgba(255, 255, 255, 1);
		transform: translateY(-4px) rotate3d(0, 0, 1, -45deg);
	}

	.spnav {
		width: calc(100% - 6vw);
		height: calc(100% - 20px - 80px);
		display: block;
		overflow-y: hidden;
		position: fixed;
		top: 90px;
		left: 3vw;
		z-index: 11;
		box-sizing: border-box;
		pointer-events: none;
	}

	.open .spnav {
		pointer-events: auto;
		overflow-y: scroll;
	}

	v .spnav:before {
		content: "";
		width: calc(100% - 6vw);
		height: 1px;
		display: block;
		background-color: rgba(24, 141, 96, 1);
		position: absolute;
		top: 0;
		left: 3vw;
		z-index: 13;
		opacity: 0;
	}

	.spnav:after {
		content: "";
		width: calc(100% - 6vw);
		height: 0;
		display: block;
		background-color: rgba(255, 255, 255, 1);
		border-radius: 40px;
		position: fixed;
		top: 10px;
		left: 3vw;
		z-index: 0;
		transition: all 200ms ease;
	}

	.open .spnav:after {
		height: calc(100% - 20px);
	}

	.open .spnav:before {
		opacity: 1;
	}

	.spnav__wrap {
		padding: 0 3vw;
		padding-bottom: 12vw;
		position: relative;
		z-index: 1;
		/* display: flex; */
		flex-wrap: wrap;
		justify-content: space-between;
		box-sizing: border-box;
		transition: all 200ms ease;
		transition-delay: 0ms;
		opacity: 0;
	}

	.open .spnav__wrap {
		opacity: 1;
		transition-delay: 200ms;
	}

	.spnav-sec {
		border-bottom: 1px solid rgba(24, 141, 96, 1);
	}

	.spnav-sec a {
		text-decoration: none;
	}

	.spnav-sec__title a {
		height: 60px;
		padding: 0 10px;
		display: flex;
		position: relativ;
		font-size: 1.8rem;
		font-weight: 600;
		line-height: 1.6;
		color: rgba(24, 141, 96, 1);
		align-items: center;
		box-sizing: border-box;
	}

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

	.spnav-sec__title a.acd {
		padding-right: 40px;
	}

	.spnav-sec__title a.acd:before,
	.spnav-sec__title a.acd:after {
		content: "";
		display: block;
		background-color: rgba(24, 141, 96, 1);
		border-radius: 1px;
		position: absolute;
		transform-origin: center;
	}

	.spnav-sec__title a.acd:before {
		width: 16px;
		height: 2px;
		right: 13px;
		top: calc(50% - 1px);
	}

	.spnav-sec__title a.acd:after {
		width: 2px;
		height: 16px;
		right: 20px;
		top: calc(50% - 8px);
	}

	.spnav-sec__title.acd-open a.acd:before,
	.spnav-sec__title.acd-open a.acd:after {
		transform: rotate3d(0, 0, 1, 225deg);
	}

	.spnav-sec-list {
		height: 0;
		overflow: hidden;
		transition: all 250ms ease;
	}

	.spnav-sec__item {
		border-top: 1px solid rgba(0, 0, 0, 0.15);
	}

	.spnav-sec__item a {
		height: 50px;
		display: flex;
		padding: 0 20px;
		padding-left: 30px;
		position: relative;
		font-size: 1.4rem;
		font-weight: 600;
		line-height: 1.6;
		align-items: center;
	}

	.spnav-sec__item a:hover,
	.spnav-sec__item a.current {
		background-color: rgba(24, 141, 96, 0.1);
		color: rgba(24, 141, 96, 1);
	}

	.spnav-sec__item a:after {
		content: "";
		width: 10px;
		height: 2px;
		display: block;
		background-color: rgba(24, 141, 96, 1);
		border-radius: 1px;
		position: absolute;
		top: calc(50% - 1px);
		left: 10px;
		box-sizing: border-box;
		transform-origin: left;
	}

	.spnav-sec-sub {
		margin-left: 3vw;
	}

	.spnav-sec-sub li {
		border-top: 1px solid rgba(0, 0, 0, 0.1);
	}

	.spnav-sec-sub a {
		padding: 10px;
		padding-left: 15px;
		display: flex;
		font-size: 1.2rem;
		font-weight: normal;
		align-items: center;
	}

	.spnav-sec-sub a:after {
		display: none;
	}

	.spnav-sec-sub a:before {
		content: "";
		width: 6px;
		height: 1px;
		margin-right: 5px;
		display: block;
		background-color: rgba(0, 0, 0, 0.15);
	}

	.contact-side {
		width: 6vw;
	}

	.spnav-btn {
		margin-top: 40px;
	}

	.spnav-btn__item {
		margin-bottom: 10px;
	}

	.spnav-btn__item a {
		width: 100%;
		height: 50px;
		display: flex;
		background-color: rgba(24, 141, 96, 1);
		border-radius: 25px;
		font-size: 1.8rem;
		font-weight: 600;
		line-height: 1.6;
		text-decoration: none;
		color: rgba(255, 255, 255, 1);
		justify-content: center;
		align-items: center;
	}

	.spnav-sns {
		margin-top: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.spnav-sns li {
		width: 30px;
		margin: 0 3px;
	}

	.spnav-sns li a {
		transition: opacity 300ms ease;
	}

	.spnav-sns li a:hover {
		opacity: 0.7;
	}
}

@media screen and (max-width: 800px) {
	#header {
		width: calc(100% - 6vw);
		padding: 0 3vw;
		border-radius: 0;
		left: 3vw;
	}
}

@media screen and (max-width: 640px) {
	.header-logo {
		max-width: 120px;
		flex-basis: 120px;
	}

	.header__wrap,
	#heade-bg {
		height: 60px;
	}

	#heade-bg {
		border-radius: 30px;
	}

	.open #heade-bg {
		border-radius: 30px 30px 0 0;
	}

	.spnav {
		height: calc(100% - 20px - 70px);
		top: 70px;
	}

	/* .spnav:before {
    top: 10px;
  } */

	.spnav:after {
		border-radius: 20px;
	}

	.spnav-sec__title {
		font-size: 1.6rem;
	}

	.spnav-sec__title a {
		height: 50px;
		font-size: 1.6rem;
	}

	.contact-side {
		display: none;
	}
}

@media screen and (max-width: 480px) {
	#menu {
		width: 40px;
		height: 40px;
	}

	.spnav__wrap {
		width: 100%;
		display: block;
	}

	.spnav-sec {
		max-width: none;
	}
}

/* footer ------------------------------------*/

.footer-main {
	padding: 80px 60px;
	display: flex;
	background-color: rgba(24, 141, 96, 1);
	justify-content: space-between;
	flex-direction: row-reverse;
}

.footer-nav {
	max-width: calc(100% - 280px - 60px);
	flex-basis: calc(100% - 280px - 60px);
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}

.footer-nav__item {
	max-width: calc((100% - (20px * 4)) / 5);
	flex-basis: calc((100% - (20px * 4)) / 5);
}

.footer-nav__main {
	margin-bottom: 20px;
	background-color: rgba(255, 255, 255, 0.1);
	padding: 20px;
	border-radius: 10px;
	box-sizing: border-box;
}

.footer-nav__title {
	margin-bottom: 20px;
}

.footer-nav__title a {
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.6;
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
}

.footer-nav__list__item,
.footer-nav-sub__item {
	margin: 6px 0;
}

.footer-nav-anchor,
.footer-nav-sub__item a {
	padding-left: 15px;
	display: table;
	position: relative;
	font-size: 1.3rem;
	line-height: 1.6;
	text-decoration: none;
	color: rgba(255, 255, 255, 1) !important;
}

p.footer-nav-anchor:before {
	content: "";
	width: 8px;
	height: 1px;
	display: block;
	background-color: rgba(255, 255, 255, 1);
	position: absolute;
	top: 10px;
	left: 0;
}

a.footer-nav-anchor:before {
	content: "";
	width: 4px;
	height: 4px;
	display: block;
	border-top: 2px solid rgba(255, 255, 255, 1);
	border-right: 2px solid rgba(255, 255, 255, 1);
	position: absolute;
	top: 8px;
	left: 0;
	transform: rotate3d(0, 0, 1, 45deg);
	transform-origin: center;
}

a.footer-nav-anchor:hover:before {
	transform: translateX(3px) rotate3d(0, 0, 1, 45deg);
}

.footer-nav-sub__item a {
	padding-left: 30px;
	font-size: 1.2rem;
}

.footer-nav-other {
	max-width: 100%;
	flex-basis: 100%;
	margin-top: 40px;
	padding-top: 40px;
	display: flex;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	justify-content: space-between;
	align-items: center;
}

.footer-nav-other__list {
	display: flex;
	align-items: center;
}

.footer-nav-other__list__item {
	margin-right: 2vw;
}

.footer-nav-other__list__item a {
	font-size: 1.3rem;
	line-height: 1.6;
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
}

.footer-nav-other__list__item a:hover {
	text-decoration: underline;
}

.footer-nav-other__sns {
	display: flex;
	align-items: center;
}

.footer-nav-other__sns__item {
	max-width: 20px;
	flex-basis: 20px;
	margin-left: 1vw;
}

.footer-contact {
	max-width: 280px;
	flex-basis: 280px;
}

.footer-contact {
	border: 1px solid rgba(255, 255, 255, 1);
	border-radius: 20px;
	overflow: hidden;
	box-sizing: border-box;
}

.footer-contact-title {
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 1);
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.6;
}

.footer-contact-title a {
	height: 60px;
	padding: 0 20px;
	display: flex;
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
	align-items: center;
}

.footer-contact-title a:hover {
	background-color: rgba(255, 255, 255, 1);
	color: rgba(24, 141, 96, 1);
}

.footer-contact-fd,
.footer-contact-tel {
	padding: 15px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	box-sizing: border-box;
}

.footer-contact-fd dl,
.footer-contact-tel dl {
	display: flex;
	line-height: 1.6;
	flex-wrap: wrap;
	align-items: center;
	color: rgba(255, 255, 255, 1);
}

.footer-contact-fd dt {
	max-width: 80px;
	flex-basis: 80px;
	font-size: 1.3rem;
}

.footer-contact-fd dd.en,
.footer-contact-tel dd.en {
	max-width: calc(100% - 80px);
	flex-basis: calc(100% - 80px);
	display: flex;
	font-size: 2.2rem;
	font-weight: 400;
	letter-spacing: normal;
	align-items: center;
	letter-spacing: -0.02em;
}

.footer-contact-fd dd.en a,
.footer-contact-tel dd.en a {
	color: rgba(255, 255, 255, 1);
}

@media screen and (min-width: 881px) {
	.footer-contact-fd dd.en a,
	.footer-contact-tel dd.en a {
		text-decoration: none;
	}
}

.footer-contact-fd dd.en:before,
.footer-contact-tel dd.en:before {
	content: "";
	margin-right: 5px;
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	align-items: center;
}

.footer-contact-fd dd.en:before {
	width: 24px;
	max-width: 24px;
	flex-basis: 24px;
	height: 16px;
	background-image: url(../images/common/icon_fd.png);
}

.footer-contact-tel dt {
	max-width: 110px;
	flex-basis: 110px;
	font-size: 1.3rem;
}

.footer-contact-tel dd.en {
	max-width: calc(100% - 110px);
	flex-basis: calc(100% - 110px);
	font-size: 2rem;
}

.footer-contact-tel dd.en:before {
	width: 12px;
	max-width: 12px;
	flex-basis: 12px;
	height: 12px;
	background-image: url(../images/common/icon_tel.png);
}

.footer-contact__text {
	padding: 10px 20px;
	font-size: 1.2rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 1);
}

.footer-contact-other {
	padding: 20px;
}

.footer-contact-other li {
	margin: 10px 0;
}

.footer-contact-other li:first-child {
	margin-top: 0;
}

.footer-contact-other a {
	height: 40px;
	padding: 0 20px;
	display: flex;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 20px;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	text-align: center;
	color: rgba(24, 141, 96, 1);
	justify-content: center;
	align-items: center;
}

.footer-end {
	height: 100px;
	padding: 0 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-logo {
	max-width: 140px;
	flex-basis: 140px;
}

.copyright {
	font-size: 1rem;
	line-height: 1.6;
	font-weight: 400;
	letter-spacing: normal;
}

@media screen and (max-width: 1280px) {
	.footer-main {
		display: block;
	}

	.footer-nav,
	.footer-contact {
		max-width: none;
	}

	.footer-contact {
		margin-bottom: 40px;
	}

	.footer-contact-other {
		display: flex;
		justify-content: space-between;
	}

	.footer-contact-other li {
		max-width: calc((100% - (20px * 2)) / 3);
		flex-basis: calc((100% - (20px * 2)) / 3);
		margin: 0;
	}
}

@media screen and (max-width: 1024px) {
	.footer-main {
		padding: 60px 6vw;
	}

	.footer-nav__item {
		max-width: calc((100% - (10px * 4)) / 5);
		flex-basis: calc((100% - (10px * 4)) / 5);
	}

	.footer-nav__main {
		margin-bottom: 10px;
	}

	.footer-end {
		height: 80px;
		padding: 0 6vw;
	}
}

@media screen and (max-width: 880px) {
	.footer-contact-other li {
		max-width: calc((100% - (10px * 2)) / 3);
		flex-basis: calc((100% - (10px * 2)) / 3);
		margin: 0;
	}

	.footer-contact-other a {
		padding: 0 10px;
		font-size: 1.3rem;
	}

	.footer-nav__item {
		display: none;
	}

	.footer-end {
		height: auto;
		padding: 40px 6vw;
	}

	.footer-logo {
		max-width: 110px;
		margin: 0 auto;
	}

	.copyright {
		margin-top: 20px;
		display: block;
		text-align: center;
	}
}

@media screen and (max-width: 640px) {
	.footer-contact-other {
		display: block;
	}

	.footer-contact-other li {
		max-width: none;
		margin: 10px 0;
	}

	.footer-end {
		display: block;
	}
}

@media screen and (max-width: 480px) {
	.footer-main {
		padding: 40px 6vw;
	}

	.footer-contact {
		margin-bottom: 0;
	}

	.footer-nav-other {
		margin: 0;
		display: block;
		border-top: 0;
		padding-top: 0;
	}

	.footer-nav-other__list {
		margin: 30px 0;
		justify-content: center;
	}

	.footer-nav-other__list__item {
		margin-right: 4vw;
	}

	.footer-nav-other__list__item:last-child,
	.footer-nav-other__sns__item:last-child {
		margin-right: 0;
	}

	.footer-nav-other__sns {
		justify-content: center;
	}

	.footer-nav-other__sns__item {
		max-width: 30px;
		flex-basis: 30px;
		margin-right: 4vw;
	}
}

@media screen and (max-width: 400px) {
	.footer-main {
		padding: 40px 10px;
	}
}

@media screen and (min-width: 480px) and (max-width: 1280px) {
	.footer-contact-fd,
	.footer-contact-tel {
		display: flex;
		flex-wrap: wrap;
	}

	.footer-contact-fd dl,
	.footer-contact-tel dl {
		display: block;
	}

	.footer-contact-fd dl,
	.footer-contact-tel dl {
		margin-right: 40px;
	}

	.footer-contact-fd dt,
	.footer-contact-fd dd.en,
	.footer-contact-tel dd.en {
		max-width: none;
		flex-basis: auto;
	}

	.footer-contact-fd dt {
		margin-right: 10px;
	}
}

@media screen and (min-width: 480px) and (max-width: 1280px) {
	.footer-contact-fd dl,
	.footer-contact-tel dl {
		margin-right: 20px;
	}
}

/* common main parts ------------------------------------*/

.contents-height-margin {
	margin: 120px 0;
}

.contents-height-margin:last-child {
	margin-bottom: 0;
}

#main {
	position: relative;
}

.contents {
	padding: 120px 0;
	padding-bottom: calc(40px + 5vw);
}

.breadcrumb {
	height: 40px;
	margin-bottom: 20px;
	padding: 0 60px;
	display: flex;
	align-items: center;
}

.breadcrumb__item {
	display: flex;
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgba(0, 0, 0, 0.5);
	align-items: center;
}

.breadcrumb__item:after {
	content: "";
	width: 8px;
	height: 1px;
	margin: 0 10px;
	display: block;
	background-color: rgba(0, 0, 0, 0.3);
}

.breadcrumb__item:last-child:after {
	display: none;
}

.breadcrumb__item a {
	text-decoration: none;
	color: rgba(0, 0, 0, 1);
}

.pagehead-title {
	display: flex;
	font-size: 4rem;
	line-height: 1.2;
	font-weight: 600;
	color: rgba(0, 0, 0, 1);
	writing-mode: vertical-rl;
	font-feature-settings: normal;
	flex-direction: column;
}

.pagehead-title .jp {
	display: flex;
	flex-direction: column-reverse;
}

.pagehead-title .en {
	margin-right: 20px;
	font-size: 1.5rem;
}

.main-contents,
.column-contents {
	max-width: 1500px;
	margin: 0 auto;
	padding: 0 60px;
}

.main-contents.first-contents,
.column-contents.first-contents {
	margin-top: 0 !important;
}

.column-contents {
	margin-top: 120px;
	display: flex;
	justify-content: space-between;
}

.column-contents.reverse {
	margin-top: 0;
	flex-direction: row-reverse;
}

.column-main {
	max-width: 75%;
	flex-basis: 75%;
}

.column-side {
	max-width: 25%;
	flex-basis: 25%;
	padding-left: 60px;
	display: flex;
	box-sizing: border-box;
	flex-direction: column;
	align-items: center;
}

.column-side-main {
	position: sticky;
	top: 120px;
}

.index-head,
.other-head {
	margin: 0 auto;
	padding: 0 60px;
	display: flex;
	position: relative;
	z-index: 0;
	justify-content: flex-end;
}

.index-head {
	width: 100%;
	box-sizing: border-box;
}

.other-head {
	max-width: 1500px;
	flex-direction: row-reverse;
}

.index-head__wrap {
	width: 100%;
	height: 680px;
	padding: 80px;
	display: flex;
	position: relative;
	box-sizing: border-box;
	justify-content: space-between;
	flex-direction: row-reverse;
}

.index-head-title {
	display: flex;
	flex-direction: column-reverse;
	position: relative;
	z-index: 1;
	font-size: 5rem;
	font-weight: 600;
	line-height: 1.4;
	color: rgba(255, 255, 255, 1);
	writing-mode: vertical-lr;
	font-feature-settings: normal;
}

.other-head-main {
	max-width: 75%;
	flex-basis: 75%;
	/* 	padding-top: 680px; */
	position: relative;
}

.other-head-img {
	width: 100%;
	height: calc(300px + 20vw);
	display: block;
	position: relative;
	z-index: 0;
}

.other-head-img figure {
	width: calc(100% + 60px);
	height: 100%;
	border-radius: 0 40px 40px 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
}

.other-head-img figure.sold:before {
	content: "完売御礼";
	width: 100%;
	position: absolute;
	left: 0;
	top: 50%;
	font-size: clamp(2.4rem, 8vw, 5.6rem);
	font-weight: 600;
	line-height: 2;
	text-align: center;
	color: rgba(255, 255, 255, 1);
	transform: translateY(-50%);
	z-index: 2;
}

.other-head-img figure.sold:after {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(24, 141, 96, 0.8);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.other-head-img img {
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 0;
}

.index-head-image {
	width: calc(100% + 60px);
	height: 100%;
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 0 40px 40px 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
}

.index-head-image:before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(255, 255, 255, 1);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 12;
	transform-origin: right;
	transform: scale3d(1, 1, 1);
	animation-name: cover-anime;
	animation-duration: 300ms;
	animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
	animation-delay: 600ms;
	animation-fill-mode: forwards;
	/* 	transition: all 600ms cubic-bezier(0.65, 0, 0.35, 1); */
}

@keyframes cover-anime {
	0% {
		transform: scale3d(1, 1, 1);
	}

	100% {
		transform: scale3d(0, 1, 1);
	}
}

/*
.loaded .index-head-image:before {
	transform: scale3d(0, 1, 1);
}
*/

.index-head-image figure {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

.index-head-image img {
	height: 100%;
	object-fit: cover;
}

/*
.other-head-main:before {
	height: 680px;
}
*/

.other-head-side {
	max-width: 25%;
	flex-basis: 25%;
	padding-left: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
}

.other-head-title {
	padding-top: 40px;
	display: flex;
	flex-direction: column-reverse;
	position: relative;
	z-index: 1;
	font-size: 4rem;
	font-weight: 600;
	font-feature-settings: normal;
	line-height: 1.4;
	color: rgba(0, 0, 0, 1);
	justify-content: center;
	writing-mode: vertical-rl;
	font-feature-settings: normal;
}

.other-head-title .en {
	margin-right: 10px;
	font-size: 1.5rem;
	color: rgba(24, 141, 96, 1);
}

.other-head-title-name {
	display: flex;
	flex-direction: column;
}

.other-head__wrap {
	max-width: 1200px;
	margin-left: auto;
	position: relative;
	box-sizing: border-box;
}

.other-head-name {
	max-width: 70%;
	margin-top: -120px;
	padding: 40px 0;
	padding-right: 60px;
	display: table;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 0 40px 0 0;
	position: relative;
}

.other-head-name:before,
.other-head-name:after {
	content: "";
	display: block;
	position: absolute;
}

.other-head-name:before {
	width: 60px;
	height: 100%;
	background-color: rgba(255, 255, 255, 1);
	top: 0;
	left: -60px;
	transition: all 0ms ease;
}

.other-head-name:after {
	width: 40px;
	height: 40px;
	background-image: url(../images/common/img_corner.svg);
	top: 80px;
	right: -40px;
}

.other-head-name h3 {
	font-size: 5rem;
	font-weight: 600;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
}

.other-head-name h3 p {
	display: block;
}

.other-head-name h3 p span {
	display: inline-block;
	vertical-align: top;
}

.other-head-name h3 rt {
	font-size: 1.4rem;
}

.other-head-name .en {
	display: block;
	font-size: 2rem;
	line-height: 1.6;
	font-weight: 600;
}

.other-head-name b {
	color: rgba(24, 141, 96, 1);
}

.other-head-contents__text {
	font-size: 1.6rem;
	line-height: 2.5;
}

.index-head-title-name {
	display: flex;
	flex-direction: column-reverse;
	font-feature-settings: normal;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.index-head-title .en {
	margin-right: 10px;
	font-size: 2rem;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.page-contents {
	max-width: 1500px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.page-contents.margin {
	margin-top: 120px;
}

.page-intro {
	max-width: 1200px;
	margin-top: -120px;
	position: relative;
}

.page-intro-catch {
	padding: 40px 0;
	padding-right: 60px;
	display: table;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 0 40px 0 0;
	position: relative;
	z-index: 1;
	color: rgba(0, 0, 0, 1);
}

.page-intro-catch:before {
	content: "";
	width: 60px;
	height: 100%;
	display: block;
	background-color: rgba(255, 255, 255, 1);
	position: absolute;
	top: 0;
	left: -60px;
	transition: all 0ms ease;
}

.page-intro-catch-main {
	font-size: 5rem;
	font-weight: 600;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
}

.page-intro-catch-main rt {
	position: relative;
	top: 10px;
	font-size: 1.4rem;
}

.page-intro-catch-en {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
}

.page-intro-catch-sub {
	margin-bottom: 10px;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.6;
}

.page-intro-catch:after {
	content: "";
	width: 40px;
	height: 40px;
	display: block;
	background-image: url(../images/common/img_corner.svg);
	position: absolute;
	top: 80px;
	right: -40px;
	transition: all 0ms ease;
}

.page-intro-catch p {
	display: table;
}

.page-intro-catch span {
	display: inline-block;
	position: relative;
}

.page-intro-catch span:after {
	content: "";
	width: 100%;
	height: 4px;
	display: block;
	background-color: rgba(0, 0, 0, 1);
}

.page-intro-catch b {
	color: rgba(24, 141, 96, 1);
}

.page-intro-text {
	margin: 40px 0;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 2.5;
	color: rgba(0, 0, 0, 1);
}

.page-intro-sub-catch {
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 2;
	color: rgba(24, 141, 96, 1);
}

.small-head {
	max-width: 1500px;
	height: 300px;
	margin: 0 auto;
	padding: 0 60px;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}

.small-head-name {
	max-width: 25%;
	flex-basis: 25%;
	padding-left: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

.small-head-title {
	max-width: 75%;
	flex-basis: 75%;
	padding-right: 60px;
	display: flex;
	position: relative;
	box-sizing: border-box;
	align-items: center;
}

.small-head-title:before {
	content: "";
	width: calc(100% + 60px);
	height: 100%;
	display: block;
	background-color: rgba(24, 141, 96, 1);
	border-radius: 0 40px 40px 0;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
	transition: all 0ms ease;
}

.small-head-title__wrap {
	position: relative;
	z-index: 1;
}

.small-head-subtitle {
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1.6;
	color: rgba(255, 255, 255, 1);
}

.small-head-data {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.small-head-data-date {
	margin-right: 40px;
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.8;
	color: rgba(255, 255, 255, 1);
}

.small-head-data-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.small-head-data-list li {
	margin-right: 10px;
}

.small-head-data-list a {
	height: 20px;
	padding: 0 10px;
	display: flex;
	background-color: rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	font-size: 1.3rem;
	line-height: 1.6;
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
	align-items: center;
}

.small-head-data-list a:hover {
	background-color: rgba(255, 255, 255, 1);
	color: rgba(24, 141, 96, 1);
}

.sidenav {
	width: 100%;
	margin-top: 80px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.sidenav.fixed {
	position: sticky;
	top: 120px;
}

.sidenav li {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sidenav a {
	height: 60px;
	display: flex;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.6;
	text-decoration: none;
	color: rgba(0, 0, 0, 1);
	align-items: center;
}

.sidenav a:hover {
	color: rgba(24, 141, 96, 1);
}

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

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

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

.sidenav a:hover:before {
	border: 1px solid rgba(24, 141, 96, 1);
}

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

.notice {
	margin: 10px 0;
}

.notice li {
	padding-left: 15px;
	position: relative;
	font-size: 1.2rem;
	line-height: 1.8;
}

.notice li:before {
	content: "※";
	position: absolute;
	left: 0;
}

p.notice {
	font-size: 1.2rem;
	line-height: 1.8;
}

.house-side-spec {
	width: 100%;
	margin-top: 40px;
	position: sticky;
	top: 120px;
}

.house-side-spec__wrap {
	margin-bottom: 40px;
}

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

.house-side-spec__title {
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px dotted rgba(24, 141, 96, 1);
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.8;
	color: rgba(24, 141, 96, 1);
}

.house-side-spec__list {
	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: 600;
}

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

.house-side-spec-category {
	display: flex;
	flex-wrap: wrap;
}

.house-side-spec-category__item {
	margin-right: 5px;
	margin-bottom: 5px;
}

.house-side-spec-category__item a {
	height: 20px;
	padding: 0 10px;
	display: flex;
	background-color: rgba(24, 141, 96, 0.1);
	border-radius: 10px;
	font-size: 1.3rem;
	line-height: 1.6;
	text-decoration: none;
	color: rgba(24, 141, 96, 1);
	align-items: center;
	pointer-events: none;
}

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

.product-category {
	margin-top: 120px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.product-category__title {
	max-width: 180px;
	flex-basis: 180px;
	border-right: 1px dashed rgba(24, 141, 96, 1);
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.6;
	color: rgba(24, 141, 96, 1);
	box-sizing: border-box;
}

.product-category-list {
	max-width: calc(100% - 180px - 40px);
	flex-basis: calc(100% - 180px - 40px);
	display: flex;
	flex-wrap: wrap;
}

.product-category-list__item {
	margin: 5px 0;
	margin-right: 10px;
}

.product-category-list__item a {
	height: 30px;
	padding: 0 20px;
	display: flex;
	background-color: rgba(24, 141, 96, 0.1);
	border-radius: 5px;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.6;
	text-decoration: none;
	color: rgba(24, 141, 96, 1);
	align-items: center;
}

.product-category-list__item a:hover,
.product-category-list__item a.current {
	background-color: rgba(24, 141, 96, 1);
	color: rgba(255, 255, 255, 1);
}

@media screen and (min-width: 1621px) {
	.page-intro-catch:before,
	.other-head-name:before {
		width: calc(((100vw - 1500px) / 2) + 60px);
		left: calc(((100vw - 1500px) / -2) - 60px);
	}

	.other-head-img figure {
		width: calc(100% + ((100vw - 1500px) / 2));
	}

	.index-head-image {
		width: calc(100% + ((100vw - 1500px) / 2));
	}

	.small-head-title:before {
		width: calc(100% + ((100vw - 1500px) / 2));
	}
}

@media screen and (max-width: 1280px) {
	.page-intro-catch {
		max-width: 75%;
	}

	.page-intro-text {
		line-height: 2;
	}

	.other-head-name h3 {
		font-size: 4rem;
	}

	.other-head-name .en {
		font-size: 1.8rem;
	}
}

@media screen and (max-width: 1024px) {
	.contents-height-margin {
		margin: 12vw 0;
	}

	.contents {
		padding: 100px 0;
		padding-bottom: calc(40px + 5vw);
	}

	.index-head,
	.other-head {
		padding: 0 6vw;
	}

	.index-head__wrap {
		height: calc(150px + 50vw);
		padding: calc(20px + 4vw);
	}

	.other-head-img figure {
		width: calc(100% + 6vw);
		border-radius: 0 20px 20px 0;
	}

	.index-head-image {
		width: calc(100% + 6vw);
		border-radius: 0 20px 20px 0;
	}

	.index-head-title,
	.page-intro-catch-main {
		font-size: calc(1.8rem + 3vw);
	}

	.page-intro-catch-main rt {
		font-size: calc(0.5rem + 1vw);
	}

	.index-head-title .en,
	.page-intro-catch-sub {
		font-size: calc(1.2rem + 0.6vw);
	}

	.other-head-title {
		font-size: calc(1.6rem + 2vw);
	}

	.page-contents.margin {
		margin-top: 12vw;
	}

	.page-intro {
		margin-top: -12vw;
	}

	.page-intro-catch {
		padding: 30px 0;
		padding-right: 40px;
		border-radius: 0 40px 0 0;
	}

	.page-intro-catch:after {
		content: "";
		top: calc(12vw - 40px);
	}

	.main-contents,
	.column-contents {
		padding: 0 6vw;
	}

	.column-main {
		max-width: 70%;
		flex-basis: 70%;
	}

	.column-side {
		max-width: 30%;
		flex-basis: 30%;
		padding-left: 6vw;
	}

	.breadcrumb {
		padding: 0 6vw;
	}

	.other-head-main {
		max-width: 70%;
		flex-basis: 70%;
	}

	.other-head-side {
		max-width: 35%;
		flex-basis: 35%;
		padding-left: 6vw;
	}

	.pagehead-title {
		font-size: 3.5rem;
	}

	.page-intro-text {
		margin: 30px 0;
		font-size: 1.5rem;
		line-height: 2;
	}

	.page-intro-sub-catch {
		font-size: 2rem;
	}

	.other-head-contents__text {
		font-size: 1.5rem;
		line-height: 2;
	}

	.small-head {
		padding: 0 6vw;
	}

	.small-head-name {
		max-width: 30%;
		flex-basis: 30%;
		padding-left: 6vw;
	}

	.small-head-title {
		max-width: 70%;
		flex-basis: 70%;
		padding-right: 6vw;
	}

	.small-head-subtitle {
		font-size: 2rem;
	}

	.small-head-data-date {
		margin-right: 20px;
		font-size: 1.6rem;
	}

	.product-category {
		margin-top: calc(20px + 10vw);
	}
}

@media screen and (max-width: 800px) {
	.contents {
		padding: 80px 0;
	}

	.column-contents {
		margin-top: 80px;
		flex-direction: column-reverse !important;
	}

	.column-main,
	.column-side {
		padding: 0 !important;
		max-width: none;
	}

	.column-side {
		margin-top: 15vw;
		align-items: flex-start;
	}

	.other-head-title {
		order: 1;
	}

	.sidenav {
		margin-top: 15vw;
		order: 2;
	}

	.other-head-title {
		margin-top: 15vw;
		display: none;
		writing-mode: inherit;
	}

	.page-intro {
		margin-top: 0;
	}

	.page-intro-catch {
		width: 100%;
		max-width: none;
		padding-right: 0;
	}

	.page-intro-catch:before,
	.page-intro-catch:after {
		display: none;
	}

	.page-intro-catch span:after {
		height: 3px;
	}

	.other-head {
		display: block;
	}

	.other-head-main {
		width: 100%;
		max-width: none;
	}

	.other-head-name {
		max-width: none;
		margin-top: 0;
		padding-right: 0;
	}

	.other-head-name h3 {
		font-size: 3.5rem;
	}

	.other-head-name h3 rt {
		font-size: 1.2rem;
	}

	.other-head-name .en {
		font-size: 1.6rem;
	}

	.other-head-side {
		display: none;
	}

	.small-head-data-date,
	.small-head-data-list {
		margin-top: 5px;
		margin-bottom: 5px;
	}

	/* .column-side {
    margin-top: 0;
  } */

	.house-side-spec {
		margin-top: 0;
		position: static;
	}

	.product-category {
		display: block;
	}

	.product-category-list {
		max-width: none;
	}

	.product-category__title {
		display: table;
		margin-bottom: 20px;
		border-right: 0;
		border-bottom: 1px dashed rgba(24, 141, 96, 1);
	}
}

@media screen and (max-width: 640px) {
	.contents-height-margin {
		margin: 16vw 0;
	}

	.column-contents {
		margin-top: 60px;
	}

	.breadcrumb {
		height: 30px;
		margin-bottom: 10px;
	}

	.breadcrumb__item {
		font-size: 1rem;
	}

	.breadcrumb__item:after {
		margin: 0 5px;
	}

	.page-contents.margin {
		margin-top: 10vw;
	}

	.pagehead-title,
	.other-head-name h3 {
		font-size: 3rem;
	}

	.pagehead-title {
		writing-mode: inherit;
		flex-direction: column;
	}

	.pagehead-title .en {
		margin-top: 10px;
	}

	.index-head:before {
		border-radius: 0 20px 20px 0;
	}

	.other-head-name {
		padding: 30px 0 20px 0;
	}

	.other-head-name .en {
		font-size: 1.5rem;
	}

	.other-head-contents__text {
		font-size: 1.4rem;
	}

	.small-head {
		height: auto;
		display: block;
		writing-mode: inherit;
	}

	.small-head-name,
	.small-head-title {
		max-width: none;
	}

	.small-head-name {
		margin: 40px 0;
		padding-left: 0;
		display: block;
	}

	.small-head-title {
		padding: 8vw 0;
		padding-right: 6vw;
	}

	.small-head-title:before {
		border-radius: 0 20px 20px 0;
	}

	.small-head-subtitle {
		font-size: 1.8rem;
	}

	.small-head-data-date {
		font-size: 1.5rem;
	}

	.product-category-list__item a {
		padding: 0 10px;
		font-size: 1.3rem;
	}
}

@media screen and (max-width: 480px) {
	.other-head-name {
		font-size: 2.8rem;
	}

	.small-head-title {
		padding-top: 10vw;
		padding-bottom: 10vw;
	}

	.breadcrumb {
		display: none;
	}
}

@media screen and (max-width: 400px) {
	.index-head,
	.other-head {
		padding: 0 10px;
	}

	.other-head-main {
		padding: 0 calc(6vw - 10px);
	}

	.other-head-main .main-body-text {
		padding: 0 calc(6vw - 10px);
	}

	.index-head-image {
		width: calc(100% + 10px);
	}
}

/* common other parts ------------------------------------*/

.imganime {
	display: block;
	overflow: hidden;
	position: relative;
}

.imganime:before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(24, 141, 96, 0.1);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	transform: scale3d(0, 0, 0);
	transform-origin: center;
}

a:hover .imganime:before,
a.imganime:hover:before {
	opacity: 1;
	transform: scale3d(1, 1, 1);
}

.imganime img {
	position: relative;
	z-index: 0;
	transition: all 300ms ease;
	transform-origin: center;
	transform: scale3d(1, 1, 1);
}

a:hover .imganime img {
	transform: scale3d(1.1, 1.1, 1.1);
}

a.list-new-icon {
	position: relative;
}

a.list-new-icon:before {
	content: "New";
	width: 60px;
	height: 62px;
	display: flex;
	background-image: url(../images/common/icon_new.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: -30px;
	left: -20px;
	z-index: 10;
	font-size: 1.5rem;
	font-weight: 600;
	font-family: "Akshar", sans-serif;
	line-height: 1.6;
	color: rgba(24, 141, 96, 1);
	justify-content: center;
	align-items: center;
	font-display: swap;
}

a.list-new-icon.white:before {
	background-image: url(../images/common/icon_new_w.png);
	color: rgba(255, 255, 255, 1);
}

.pagination {
	margin-top: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pagination__item {
	margin-right: 10px;
}

.pagination__item:last-child {
	margin-right: 0;
}

.pagination__item a {
	width: 40px;
	height: 40px;
	display: flex;
	border-radius: 50%;
	font-size: 1.8rem;
	line-height: 1.8;
	text-decoration: none;
	color: rgba(0, 0, 0, 1);
	justify-content: center;
	align-items: center;
}

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

.news-list {
	display: flex;
}

.news-list__item a {
	text-decoration: none;
}

.news-list__image {
	margin-bottom: 20px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}

.news-list__image:before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(24, 141, 96, 0.3);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	transform: scale3d(0, 0, 0);
}

a:hover .news-list__image:before {
	opacity: 1;
	transform: scale3d(1, 1, 1);
}

.news-list__image img {
	height: 100%;
	position: relative;
	z-index: 0;
	transform-origin: center;
	transition: all 300ms ease;
}

a:hover .news-list__image img {
	transform: scale3d(1.1, 1.1, 1.1);
}

.news-list__title {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.8;
}

.news-list__date {
	margin: 10px 0;
	font-size: 1.2rem;
	font-weight: 300;
	line-height: 1.8;
	color: rgba(0, 0, 0, 0.5);
}

.news-list-category {
	display: flex;
	flex-wrap: wrap;
}

.news-list-category__item {
	margin-right: 5px;
	margin-bottom: 10px;
}

.news-list-category__item a {
	height: 24px;
	padding: 0 10px;
	display: flex;
	background-color: rgba(24, 141, 96, 0.1);
	border-radius: 12px;
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.8;
	text-decoration: none;
	color: rgba(24, 141, 96, 1);
	align-items: center;
}

.news-list-category__item a:hover {
	background-color: rgba(24, 141, 96, 1);
	color: rgba(255, 255, 255, 1);
}

.swiper-container {
	overflow: visible !important;
}

.swiper-slide {
	/* border-radius: 40px; */
	overflow: hidden;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: -40px !important;
}

.swiper-pagination-bullet {
	width: 10px !important;
	height: 10px !important;
	background-color: transparent !important;
	border: 2px solid rgba(24, 141, 96, 1) !important;
	box-sizing: border-box !important;
	opacity: 1 !important;
}

.swiper-pagination-bullet-active {
	background-color: rgba(24, 141, 96, 1) !important;
}

.swiper-button-next,
.swiper-button-prev {
	width: 40px !important;
	height: 40px !important;
	margin-top: 0;
	background-color: transparent;
	top: calc(50% - 20px);
	transition: all 300ms ease;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	left: -20px !important;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	right: -20px !important;
}

.swiper-button-next:before,
.swiper-button-prev:before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(24, 141, 96, 1);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	transform-origin: center;
	transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.swiper-button-next:hover:before,
.swiper-button-prev:hover:before {
	transform: scale3d(0.85, 0.85, 0.85);
}

.swiper-button-prev:after,
.swiper-button-next:after {
	content: "" !important;
	width: 6px;
	height: 6px;
	display: block;
	box-sizing: border-box;
	transform-origin: center;
	z-index: 1;
}

.swiper-button-prev:after {
	border-top: 2px solid rgba(255, 255, 255, 1);
	border-left: 2px solid rgba(255, 255, 255, 1);
	transform: rotate3d(0, 0, 1, -45deg);
}

.swiper-button-next:after {
	border-top: 2px solid rgba(255, 255, 255, 1);
	border-right: 2px solid rgba(255, 255, 255, 1);
	transform: rotate3d(0, 0, 1, 45deg);
}

.showroom-list__dlist {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	font-size: 1.5rem;
	line-height: 1.8;
}

.showroom-list__dlist dt,
.showroom-list__dlist dd {
	margin: 2px 0;
}

.showroom-list__dlist dt {
	max-width: 140px;
	flex-basis: 140px;
	display: flex;
	align-items: center;
	font-weight: 600;
}

.showroom-list__dlist dt:before {
	margin-right: 5px;
}

.showroom-list__dlist dd {
	max-width: calc(100% - 140px);
	flex-basis: calc(100% - 140px);
	color: rgba(0, 0, 0, 0.8);
}

.table {
	width: 100%;
}

.table th,
.table td {
	padding: 30px 20px;
	font-size: 1.6rem;
	line-height: 1.8;
	vertical-align: top;
	box-sizing: border-box;
}

.table th {
	width: 20%;
	border-bottom: 1px solid rgba(24, 141, 96, 1);
	font-weight: 600;
	color: rgba(0, 0, 0, 1);
}

.table td {
	width: 80%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.table tr:first-child th {
	border-top: 1px solid rgba(24, 141, 96, 1);
}

.table tr:first-child td {
	border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.table .table-dl {
	display: flex;
	flex-wrap: wrap;
}

.table .table-dl dt,
.table .table-dl dd {
	margin-top: 20px;
}

.table .table-dl dt {
	max-width: 160px;
	flex-basis: 160px;
}

.table .table-dl dd {
	max-width: calc(100% - 160px);
	flex-basis: calc(100% - 160px);
}

.table .table-dl dt:first-child,
.table .table-dl dd:nth-child(2) {
	margin-top: 0;
}

.table .sub {
	padding-left: 20px;
	display: block;
	position: relative;
}

.table .sub:before {
	content: "";
	width: 10px;
	height: 1px;
	display: block;
	background-color: rgba(0, 0, 0, 0.15);
	position: absolute;
	left: 0;
	top: 15px;
}

.layout-section {
	max-width: 1000px;
	margin: 60px auto;
}

.layout-section__title {
	margin-bottom: 20px;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
}

.number-list {
	margin: 10px 0;
	margin-left: 20px;
	list-style: decimal;
	font-size: 1.5rem;
	line-height: 1.6;
}

.repage {
	margin-top: 100px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.repage a {
	padding: 20px 0;
	display: flex;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.6;
	text-decoration: none;
	text-align: center;
	justify-content: center;
	align-items: center;
}

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

	.table .table-dl dt,
	.table .table-dl dd {
		max-width: none;
	}

	.table .table-dl dd {
		margin-top: 0;
	}

	.repage {
		margin-top: 10vw;
	}
}

@media screen and (max-width: 800px) {
	.pagination {
		margin-top: 60px;
	}

	.swiper-slide {
		border-radius: 20px;
	}

	.swiper-button-next,
	.swiper-button-prev {
		width: 30px;
		height: 30px;
		margin-top: 0;
		background-color: transparent;
		top: calc(50% - 15);
		transition: all 300ms ease;
	}

	.swiper-button-prev,
	.swiper-container-rtl .swiper-button-next {
		left: -15px;
	}

	.swiper-button-next,
	.swiper-container-rtl .swiper-button-prev {
		right: -15px;
	}

	.table th,
	.table td {
		padding: 20px 0;
	}

	.repage {
		display: none;
	}
}

@media screen and (max-width: 640px) {
	a.list-new-icon:before {
		left: -10px;
	}

	.news-list__title {
		font-size: 1.4rem;
	}

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

	.swiper-container-horizontal > .swiper-pagination-bullets,
	.swiper-pagination-custom,
	.swiper-pagination-fraction {
		bottom: -30px !important;
	}

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

	.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
		margin: 0 2px;
	}

	.showroom-list__dlist {
		font-size: 1.4rem;
	}

	.showroom-list__dlist dt {
		max-width: 100px;
		flex-basis: 100px;
	}

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

	.table th,
	.table td {
		width: 100%;
		border-bottom: 1px solid rgba(0, 0, 0, 0.15);
		display: block;
		font-size: 1.5rem;
	}

	.table th {
		padding-bottom: 0;
		border-bottom: 0 !important;
	}

	.table td {
		padding-top: 10px;
	}

	.table tr:first-child th {
		border-top: 1px solid rgba(0, 0, 0, 0.15);
	}

	.table tr:first-child td {
		border-top: 0;
	}

	.layout-section {
		margin: 40px 0;
	}

	.layout-section__title {
		margin-bottom: 10px;
		font-size: 1.8rem;
	}

	.number-list {
		font-size: 1.4rem;
	}
}

@media screen and (max-width: 480px) {
	.table th,
	.table td {
		font-size: 1.4rem;
	}
}

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

.tex-head {
	font-family: a-otf-midashi-go-mb31-pr6n, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
	font-weight: 600;
	font-display: swap;
}

.headline {
	font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

.en {
	position: relative;
	font-family: "Akshar", sans-serif;
	font-weight: 600;
	letter-spacing: 0.02em;
	font-display: swap;
}

.main-body-text {
	font-size: 1.6rem;
	line-height: 2.5;
}

.sub-body-text {
	font-size: 1.3rem;
	line-height: 2;
}

.main-body-text.center {
	text-align: center;
}

.dot-text:before {
	content: "";
	width: 10px;
	height: 10px;
	display: block;
	background-color: rgba(0, 0, 0, 1);
	border-radius: 50%;
	position: absolute;
	left: calc(50% - 8px);
	top: 0;
}

a.more,
a .more {
	width: 60px;
	height: 60px;
	display: flex;
	position: relative;
	border: 3px solid rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	box-sizing: border-box;
	justify-content: center;
	align-items: center;
	transition: all 250ms ease;
}

a.more.wt,
a .more.wt {
	border: 3px solid rgba(255, 255, 255, 0.3);
}

a.more:hover,
a:hover .more {
	border-color: rgba(0, 0, 0, 0.4);
}

a.more.wt:hover,
a:hover .more.wt {
	border-color: rgba(255, 255, 255, 0.8);
}

a.more:before,
a .more:before,
a.more:after,
a .more:after {
	content: "";
	display: block;
	position: absolute;
}

a.more:before,
a .more:before {
	width: 20px;
	height: 1px;
	background-color: rgba(0, 0, 0, 1);
	top: 50%;
	left: calc(50% - 10px);
}

a.more.wt:before,
a .more.wt:before {
	background-color: rgba(255, 255, 255, 1);
}

a.more:after,
a .more:after {
	width: 7px;
	height: 7px;
	border-top: 1px solid rgba(0, 0, 0, 1);
	border-right: 1px solid rgba(0, 0, 0, 1);
	box-sizing: border-box;
	top: calc(50% - 3px);
	right: 17px;
	transform: rotate3d(0, 0, 1, 45deg);
}

a.more.wt:after,
a .more.wt:after {
	border-top-color: rgba(255, 255, 255, 1);
	border-right-color: rgba(255, 255, 255, 1);
}

.more span {
	display: none;
}

.objfit {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

a.btn,
a .btn {
	height: 50px;
	max-width: 220px;
	padding: 0 20px;
	display: flex;
	background-color: rgba(24, 141, 96, 1);
	border-radius: 25px;
	position: relative;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.6;
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
	box-sizing: border-box;
	align-items: center;
	box-sizing: border-box;
}

a.btn:after,
a .btn:after {
	content: "";
	width: 6px;
	height: 6px;
	display: block;
	border-top: 2px solid rgba(255, 255, 255, 1);
	border-right: 2px solid rgba(255, 255, 255, 1);
	position: absolute;
	right: 20px;
	top: calc(50% - 3px);
	box-sizing: border-box;
	transform: rotate3d(0, 0, 1, 45deg);
	transform-origin: center;
}

a.btn:hover,
a:hover .btn {
	opacity: 0.8;
}

a.btn:hover:after,
a:hover .btn:after {
	transform: translate3d(5px, 0, 0) rotate3d(0, 0, 1, 45deg);
}

.style-disc {
	list-style: disc;
}

.style-disc li {
	margin-left: 15px;
}

.listScroller-container {
	position: relative;
	z-index: 1;
	overflow-x: scroll;
	scroll-behavior: smooth;
}

@media screen and (max-width: 1024px) {
	.main-body-text {
		font-size: calc(12px + 0.5vw);
		line-height: 2;
	}
}

@media screen and (max-width: 640px) {
	a.btn,
	a .btn {
		height: 40px;
		border-radius: 20px;
	}
}

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

.changeView-wrap {
	position: relative;
	overflow: hidden;
}

.changeView-item {
	width: 100%;
	position: absolute;
	pointer-events: none;
	opacity: 0;
	transition: opacity 250ms ease;
}

.changeView-item.show {
	pointer-events: auto;
	position: relative;
	opacity: 1;
}

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

.icon:before {
	content: "";
	width: 18px;
	height: 18px;
	display: block;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.icon.clock:before {
	background-image: url(../images/common/icon_clock.png);
}

.icon.pin:before {
	background-image: url(../images/common/icon_pin.png);
}

.icon.tel:before {
	background-image: url(../images/common/icon_tel_g.png);
}

.icon.cal:before {
	background-image: url(../images/common/icon_cal.png);
}

.icon.archive:before {
	background-image: url(../images/common/icon_archive.png);
}

.icon.category:before {
	background-image: url(../images/common/icon_category.png);
}

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

#cover {
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(255, 255, 255, 1);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	transition: opacity 600ms cubic-bezier(0.61, 1, 0.88, 1);
}

.loading #cover {
	pointer-events: all;
	opacity: 1;
}

.complete #cover {
	pointer-events: none;
	opacity: 0;
}

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

.float-menu {
	width: 100%;
	display: none;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 20;
	pointer-events: none;
}

.float-list {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background-color: #f2f2f2;
}

.float-list li {
	position: relative;
}

.float-list li:after {
	content: "";
	width: 1px;
	height: 80%;
	display: block;
	background-color: rgba(0, 0, 0, 0.1);
	position: absolute;
	right: 0;
	top: 15%;
}

.float-list li:last-child:after {
	display: none;
}

.float-list a {
	width: 100%;
	height: 70px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}

.float-list a:hover {
	background-color: rgba(70, 138, 99, 0.2);
}

.float-list a:before {
	content: "";
	width: 30px;
	height: 30px;
	margin-bottom: 5px;
	display: block;
	background-position: center;
	background-size: 100% auto;
}

.float-list .build a:before {
	background-image: url(../../assets/images/common/icn_float01.png);
}

.float-list .area a:before {
	background-image: url(../../assets/images/common/icn_float02.png);
}

.float-list .events a:before {
	background-image: url(../../assets/images/common/icn_float03.png);
}

.float-list .contact a:before {
	background-image: url(../../assets/images/common/icn_float04.png);
}

@media screen and (max-width: 1080px) {
	.float-menu {
		display: block;
		pointer-events: visible;
	}
}

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

.sns {
	width: 60px;
	position: fixed;
	right: 0;
	bottom: 20px;
	z-index: 8;
}

.sns li {
	width: 30px;
	margin: 0 auto;
	margin-top: 5px;
}

.sns a {
	transition: opacity 250ms ease;
}

.sns a:hover {
	opacity: 0.7;
}

@media screen and (max-width: 1080px) {
	.sns {
		display: none;
	}
}
