@charset "utf-8";

/*==========================================
ヘッダー
===========================================*/
header {
	background-color: #f86200;
	padding: 90px 0 20px;
}
header a,
header img {
	display: block;
	width: 100%;
}

/* h1 */
h1 {
	width: 100%;
	max-width: 140px;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 10;
}
h1 a img {
	transition: 700ms ease-out;
}
h1 a:hover img {
	-webkit-transform: rotateY(360deg);
	transform: rotateY(360deg);
}
@media screen and (max-width: 640px) {
	h1 {
		max-width: 70px;
	}
}

/* p */
header p {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
}

/*=== flexslider ===*/
.flex1 {
	max-width: 1140px;
	margin: 0 auto;
	position: relative;
}
.flex1 .flex-viewport {
	overflow: hidden;
}

/*=== infiniteslide ===*/
.infiniteslide1 {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}
.infiniteslide1 figure {
	position: relative;
}
.infiniteslide1 figure::after {
	content: "";
	background-color: rgba(255,255,255,.9);
	width: 100%;
	height: 52%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.infiniteslide1 img {
	width: auto;
	max-height: 211px;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 640px) {
	.infiniteslide1 img {
		max-height: 120px;
	}
}

/*==========================================
メインコンテンツ
===========================================*/
main {
	padding: 40px 0 100px;
	position: relative;
}

/*=== グローバルナビ ===*/
.gnav {
	padding: 0 20px;
}
.gnav li {
	border-right: 3px solid #000;
}
.gnav li:first-child {
	padding: 0 20px;
}
.gnav li:last-child {
	border-right-width: 0;
}
@media screen and (max-width: 1000px) {
	.gnav a {
		max-width: 120px;
	}
}
@media screen and (max-width: 840px) {
	.gnav a {
		max-width: 90px;
	}
}
@media screen and (max-width: 640px) {
	.gnav {
		display: none;
	}
}

/*=== スマホグローバルナビ ===*/
.sp-nav {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
}
@media screen and (max-width: 640px) {
	.sp-nav {
		display: block;
	}
}
.sp-nav dt {
	width: 40px;
	height: 40px;
	color: #000;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 11;
	cursor: pointer;
}
.sp-nav dt .span,
.sp-nav dt::before,
.sp-nav dt::after {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
}
.sp-nav dt .span {
	width: 36px;
	height: 0;
	font-family: 'Jost', sans-serif;
	font-size: 10px;
	text-align: center;
	line-height: 1;
	padding-top: 1em;
	top: auto;
	bottom: 0px;
	overflow: hidden;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.sp-nav dt .span::before,
.sp-nav dt .span::after {
	width: 100%;
	text-align: center;
	transition: .4s;
}
.sp-nav dt .span::before {
	content: "MENU";
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}
.sp-nav dt .span::after {
	content: "CLOSE";
	position: absolute;
	top: 0;
	right: 0;
	opacity: 0;
	-webkit-transform: rotateX(180deg);
	transform: rotateX(180deg);
}
.sp-nav dt.close-button .span::before {
	opacity: 0;
	-webkit-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
}
.sp-nav dt.close-button .span::after {
	opacity: 1;
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}
.sp-nav dt::before,
.sp-nav dt::after {
	content: "";
	background-color: #000;
	width: 32px;
	height: 2px;
	transition: .4s;
}
.sp-nav dt::before {
	-webkit-transform: translate(-50%,calc(-50% - 10px));
	transform: translate(-50%,calc(-50% - 10px));
}
.sp-nav dt::after {
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.sp-nav dt.close-button::before {
	-webkit-transform: translate(-50%,calc(-50% - 7px)) rotate(135deg);
	transform: translate(-50%,calc(-50% - 7px)) rotate(135deg);
}
.sp-nav dt.close-button::after {
	-webkit-transform: translate(-50%,calc(-50% - 7px)) rotate(-135deg);
	transform: translate(-50%,calc(-50% - 7px)) rotate(-135deg);
}
.sp-nav dd {
	background-color: rgba(255,255,255,.95);
	width: 100vw;
	padding: 50px 20px 20px;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
	transition: .5s;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
@supports ((-webkit-backdrop-filter: blur(0)) or (backdrop-filter: blur(0))) {
	.sp-nav dd {
		background-color: rgba(255,255,255,.6);
		-webkit-backdrop-filter: saturate(180%) blur(20px);
		backdrop-filter: saturate(180%) blur(20px);
	}
}
.sp-nav dd::after {
	content: "";
	background: linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,0));
	mix-blend-mode: multiply;
	width: 100%;
	height: 4px;
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0;
	transition: .5s;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}
.sp-nav dd.open-menu {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.sp-nav dd.open-menu::after {
	opacity: 1;
}
.sp-nav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.sp-nav li {
	width: 50%;
	border-bottom: 1px solid #000;
}
.sp-nav li:nth-child(2n) {
	border-left: 1px solid #000;
}
.sp-nav li:nth-last-child(1),
.sp-nav li:nth-last-child(2) {
	border-bottom-width: 0;
}
.sp-nav a {
	display: block;
	color: #000;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	line-height: 1.5;
	padding: 10px;
}

/*=== モデルハウス見学 ===*/
.mh-tmp {
	padding-top: 120px;
	position: relative;
}
.mh-tmp a,
.mh-tmp img {
	display: block;
	width: 100%;
}
.mh-tmp > div {
	background-color: #000;
	width: 28%;
	min-width: 150px;
	color: #fff;
	font-family: 'Jost', sans-serif;
	font-size: 1.625rem;
	text-align: center;
	line-height: 60px;
	letter-spacing: .1em;
	position: absolute;
	top: 40px;
	left: -25px;
	z-index: 1;
}
.mh-tmp > figure {
	width: 67.8%;
	position: absolute;
	top: -4%;
	right: -1%;
	z-index: 1;
	pointer-events: none;
}
.mh-tmp section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.mh-tmp h3 {
	font-weight: 700;
	text-align: center;
	text-indent: .25em;
	line-height: 1.3;
	letter-spacing: .25em;
	padding-bottom: 15px;
	position: relative;
}
.mh-tmp h3 .span {
	display: block;
	font-family: 'Jost', sans-serif;
	font-size: 1.5em;
	text-indent: .15em;
	letter-spacing: .15em;
}
.mh-tmp h3::after {
	content: "";
	display: block;
	background-color: #000;
	width: 100%;
	max-width: 105px;
	height: 5px;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	
}
.mh-tmp section div:nth-child(1) {
	width: 28%;
	padding: 40px 30px 25px;
	position: relative;
}
.mh-tmp section div:nth-child(1) > * {
	position: relative;
	z-index: 1;
}
.mh-tmp section div:nth-child(1) p {
	text-align: justify;
	margin-top: 40px;
}
.mh-tmp section div:nth-child(1)::before {
	content: "";
	display: block;
	background-color: #fff;
	width: 100%;
	height: 62%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.mh-tmp section div:nth-child(2) {
	width: 28%;
	padding: 25px;
}

.mh-tmp section div:nth-child(4) {
	width: calc(100% - 80px);
	margin: 0 auto 40px;
}
.mh-tmp section div:nth-child(2) img {
	width: calc(100% + 50px);
	margin: 0 -25px 10px;
}
.mh-tmp section div:nth-child(2) a,
.mh-tmp section div:nth-child(4) a {
	background-color: rgba(248,98,0,1);
	color: #fff;
	font-weight: 700;
	text-align: center;
	padding: 1em 1em;
	border: 1px solid #f86200;
	transition: .2s;
}
.mh-tmp section div:nth-child(2) a:hover,
.mh-tmp section div:nth-child(4) a:hover {
	background-color: rgba(248,98,0,0);
	color: #f86200;
}
.mh-tmp section div:nth-child(3) {
	width: 44%;
	padding: 25px;
}
.mh-tmp ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 0 -20px -20px;
}
.mh-tmp li {
	width: 50%;
	padding: 0 0 20px 20px;
}
.mh-tmp li:last-child {
	width: 100%;
}
.mh-color01 {
	background-color: #d8e5de;
}
.mh-color02 {
	background-color: #ffd8d5;
}
@media screen and (max-width: 840px) {
	.mh-tmp {
		padding-top: 140px;
		position: relative;
	}
	.mh-tmp > figure {
		top: -1%;
	}
	.mh-tmp section div:nth-child(1) {
		width: 100%;
		padding: 40px 0 25px;
	}
	.mh-tmp section div:nth-child(1)::before {
		height: 100%;
	}
	.mh-tmp section div:nth-child(2) {
		width: 40%;
	}
	.mh-tmp section div:nth-child(3) {
		width: 60%;
	}
}
@media screen and (max-width: 640px) {
	.mh-tmp > div {
		width: 100%;
		min-width: 150px;
		max-width: 220px;
		position: absolute;
		top: 80px;
		left: 50%;
		z-index: 2;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	.mh-tmp > figure {
		width: 100%;
		top: 0;
		right: 0;
	}
	.mh-tmp section div:nth-child(1) {
		padding: 40px 0 0;
	}
	.mh-tmp section div:nth-child(1)::before {
		display: none;
	}
	.mh-tmp section div:nth-child(1) figure,
	.mh-tmp h3 {
		background-color: #fff;
	}
	.mh-tmp h3 {
		padding-bottom: 40px;
	}
	.mh-tmp h3::after {
		bottom: 25px;
	}
	.mh-tmp section div:nth-child(1) p {
		padding: 25px 20px 0;
		margin-top: 0;
	}
	.mh-tmp section div:nth-child(2) {
		width: 100%;
	}
	.mh-tmp section div:nth-child(3) {
		width: 100%;
	}
}

/*=== イベント情報 ===*/
#event {
	background: #f0f1e4 url("../../img/event/bg_event.svg") no-repeat center top;
	background-size: 1642px 397px;
	width: 100%;
	padding: 140px 0 100px;
	overflow: hidden;
}
.flex2 {
	max-width: 830px;
	padding: 0 25px;
	margin: 0 auto;
}
.event-tmp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	background-color: #fff;
	max-width: 744px;
	padding: 33px 33px 53px;
	margin: 0 auto;
	border: 1px solid #bfbfbf;
	border-radius: 25px;
	position: relative;
}
.event-tmp::after {
	content: "";
	display: block;
	background-color: #d3bf00;
	width: calc(100% - 66px);
	height: 12px;
	border-radius: 6px;
	position: absolute;
	bottom: 20px;
	left: 33px;
}
.event-tmp a,
.event-tmp img {
	display: block;
	width: 100%;
}
.event-tmp figure {
	width: 45%;
	height: 100%;
	border: 1px solid #bfbfbf;
}
.event-tmp div {
	width: 55%;
	padding-left: 25px;
}
.event-tmp div ul:nth-child(1) {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.event-tmp div ul:nth-child(1) li {
	color: #f86200;
	padding: 0 1em;
	margin-right: 10px;
	border: 1px solid #f86200;
	border-radius: 8px;
}
.event-tmp div p {
	font-size: 1.25rem;
	font-weight: 700;
	text-align: justify;
	padding: 1rem 0;
}
.event-tmp div ul:nth-child(3) li+li {
	margin-top: 5px;
}
.event-tmp div ul:nth-child(3) li:nth-child(1) {
	color: #f86200;
	font-family: 'Jost', sans-serif;
	font-size: 1.25rem;
}
.event-tmp div ul:nth-child(3) li:nth-child(2) {
	display: inline-block;
	background-color: #4d4d4d;
	color: #fff;
	padding: 0 .5em;
}
.event-tmp div ul:nth-child(3) li:nth-child(3) {
	padding-left: 20px;
	position: relative;
}
.event-tmp div ul:nth-child(3) li:nth-child(3)::before {
	content: "";
	background: url("../../img/event/ico_mapmarker.svg") no-repeat;
	background-size: cover;
	width: 12px;
	height: 16px;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.event-tmp div a {
	background-color: #000;
	color: #fff;
	font-weight: 700;
	text-align: center;
	padding: .5em 1em;
	margin-top: 20px;
	border: 1px solid #000;
	transition: .2s;
}
.event-tmp div a:hover {
	background-color: #fff;
	color: #f86200;
	border-color: #f86200;
}
.event-tmp div .event_end{
  display: block;
	background-color: #808080;
	color: #fff;
	font-weight: 700;
	text-align: center;
	padding: .5em 1em;
	margin-top: 20px;
	border: 1px solid #808080;
}
.event-tmp > p {
	width: 100%;
	text-align: justify;
	margin-top: 25px;
}
.flex2 .slides > li {
	-webkit-filter: grayscale(100);
	filter: grayscale(100);
	transition: 1.3s;
	-webkit-transform: scale(.9);
	transform: scale(.9);
}
.flex2 .slides > li.flex-active-slide {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
	-webkit-transform: scale(1);
	transform: scale(1);
}
@media screen and (max-width: 640px) {
	#event {
		background: #f0f1e4 url("../../img/event/bg_event_sp.svg") no-repeat center top 40px;
		background-size: 442px 193px;
		padding: 90px 0 100px;
	}
	#event h2 {
		-webkit-transform: scale(.7);
		transform: scale(.7);
	}
	.event-tmp figure {
		width: 100%;
	}
	.event-tmp div {
		width: 100%;
		padding-top: 25px;
		padding-left: 0;
	}
	#event .flex-direction-nav {
		display: block;
	}
	#event .flex-direction-nav a {
		top: -40px;
		opacity: 1;
	}
	#event .flex-direction-nav .flex-prev {
		left: calc(50% - 60px);
	}
	#event .flex-direction-nav .flex-next {
		right: calc(50% - 60px);
	}
}

/*=== 商品紹介 ===*/
#product {
	background: url("../../img/product/bg_image01.jpg") center top;
	background-size: 1885px 1338px;
	padding: 176px 0 100px;
	position: relative;
	overflow: hidden;
}
#product > * {
	position: relative;
	z-index: 1;
}
#product::before,
#product::after {
	content: "";
	position: absolute;
	z-index: 0;
}
#product::before {
	background-color: rgba(255,255,255,.8);
	width: calc(1090px + calc(calc(100% - 1090px) / 2));
	height: 470px;
	top: 130px;
	left: 0;
}
#product::after {
	background-image: url("../../img/product/bg_image02.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	width: 433px;
	height: 232px;
	top: 14px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.product-tmp {
	max-width: 1082px;
	padding: 0 25px;
	margin: 0 auto;
	position: relative;
}
.product-tmp > p {
	padding-bottom: 7px;
	position: relative;
}
.product-tmp > p img {
	max-width: 636px;
	margin: 0 auto 0 0;
	position: relative;
	z-index: 1;
}
.product-tmp > p::after {
	display: block;
	content: "";
	background-color: #ff0;
	width: 100%;
	height: 14px;
	position: absolute;
	bottom: 0;
	left: 0;
}
.product-tmp div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	margin-top: -20px;
	position: relative;
	z-index: 3;
}
.product-tmp div p {
	height: 100%;
}
.product-tmp div img {
	display: block;
	width: 100%;
}
.product-tmp div p:nth-child(1) {
	width: calc(100% - 317px);
	font-size: 20px;
	font-weight: 700;
	text-align: justify;
	line-height: 1.9;
}
.product-tmp div p:nth-child(2) {
	width: 277px;
}
.infiniteslide2 li {
	padding: 0 40px;
}
.infiniteslide2 a,
.infiniteslide2 img {
	display: block;
	width: 480px;
}
.infiniteslide2 a {
	transition: .5s;
}
.infiniteslide2 a:hover {
	opacity: .8;
}
@media screen and (min-width: 1082px) {
	.product-tmp p:nth-child(2) {
		font-size: 1.3rem;
		top: 100px;
	}
}
@media screen and (max-width: 1081px) {
	#product::before {
		height: calc(100% - 636px);
	}
	.product-tmp div {
		margin-top: 20px;
	}
	.infiniteslide2 a,
	.infiniteslide2 img {
		width: 320px;
	}
}
@media screen and (max-width: 640px) {
	#product h2 {
		transform: scale(.7);
	}
	#product::after {
		width: 300px;
		height: 161px;
		top: 78px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	.product-tmp {
		padding-bottom: 20px;
	}
	.product-tmp div p:nth-child(1) {
		width: 55%;
		font-size: 2.8vw;
	}
	.product-tmp div p:nth-child(2) {
		width: 40%;
	}
}

/*=== 店舗紹介 ===*/
#studio {
	padding-top: 100px;
}
#studio > div {
	background-color: #f86200;
	color: #fff;
	padding: 100px 0;
}
.studio-tmp a,
.studio-tmp img {
	display: block;
	width: 100%;
}
.studio-tmp > dt {
	font-family: 'Jost', sans-serif;
	font-size: 1.75rem;
	text-indent: .15em;
	line-height: 1;
	letter-spacing: .15em;
	margin-bottom: -.12em;
}
.studio-tmp > dd {
	border: 1px solid #fff;
}
.studio-tmp > dd+dt {
	margin-top: 30px;
}
.studio-tmp ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.studio-tmp li {
	width: calc(100% / 3);
}
.studio-tmp li:nth-child(2) {
	border: 1px solid #fff;
	border-top-width: 0;
	border-bottom-width: 0;
}
.studio-tmp li dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
	padding: 20px 40px;
}
.studio-tmp li dl > * {
	width: 100%;
}
.studio-tmp li dl > *+* {
	margin-top: .3rem;
}
.studio-tmp li dt {
	font-family: 'Jost', sans-serif;
	font-size: 1.3rem;
	text-indent: .1em;
	letter-spacing: .1em;
}
.studio-tmp figure {
	display: block;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.studio-tmp img {
	min-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	object-fit: cover;
}
.studio-tmp a {
	background-color: #000;
	color: #f86200;
	font-weight: 700;
	text-align: center;
	padding: .3em 1em;
	border: 1px solid #000;
	transition: .2s;
}
.studio-tmp a:hover {
	background-color: #f86200;
	color: #fff;
	border-color: #fff;
}
.studio-tmp iframe {
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 960px) {
	.studio-tmp li {
		width: 50%;
	}
	.studio-tmp li:nth-child(1) {
		width: 100%;
		border-bottom: 1px solid #fff;
	}
	.studio-tmp li:nth-child(2) {
		border-left-width: 0;
	}
	.studio-tmp figure {
		height: calc(63vw - 25px);
	}
}
@media screen and (max-width: 640px) {
	.studio-tmp li {
		width: 100%;
	}
	.studio-tmp li:nth-child(2) {
		border-right-width: 0;
		border-bottom-width: 1px;
	}
	.studio-tmp li:nth-child(3) {
		height: calc(63vw - 25px);
	}
}

/*=== 施工事例 ＆ お客様の声 ===*/
#voice {
	padding: 100px 0;
}
#voice h2 {
	background-color: #000;
	width: calc(506px + calc(calc(100% - 1130px) / 2));
	color: #fff;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: .3em;
	padding: 10px 10px 10px calc(calc(100% - 1130px) / 2);
}
#voice h2 div {
	padding-left: 20px;
}
#voice h2 .span {
	display: block;
	font-family: 'Jost', sans-serif;
	font-size: 2.5rem;
	line-height: 1;
}
@media screen and (max-width: 820px) {
	#voice h2 {
		width: calc(100% - 25px);
		padding: 10px 25px;
	}
	#voice h2 div {
		padding-left: 0;
	}
}

/* voice template */
.voice-tmp {
	background: url("../../img/voice/line.png") repeat-x center bottom;
	background-size: 5px 11px;
	position: relative;
}
.voice-tmp section {
	max-width: 516px;
	position: relative;
	z-index: 1;
}
.voice-tmp h3 {
	max-width: 476px;
	font-family: 'Damion', cursive;
	font-size: 2.4rem;
	line-height: 1;
	position: relative;
}
.voice-tmp h3 .span {
	display: block;
	background-color: #c2a982;
	width: 56px;
	height: 56px;
	color: #fff;
	font-size: 2rem;
	text-align: center;
	text-indent: -.1em;
	line-height: 52px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.voice-tmp p {
	font-size: 1.25rem;
	font-weight: 700;
	text-align: center;
	text-indent: .1em;
	letter-spacing: .1em;
	padding: 20px 10px;
	margin-top: 40px;
	border: 2px solid #000;
	border-top-width: 0;
	border-bottom-width: 0;
	position: relative;
}
.voice-tmp p::before,
.voice-tmp p::after {
	content: "";
	display: block;
	background-color: #000;
	width: 10.5%;
	height: 2px;
	position: absolute;
}
.voice-tmp p::before {
	top: 0;
	left: 0;
}
.voice-tmp p::after {
	bottom: 0;
	right: 0;
}
.voice-tmp dl {
	margin-top: 40px;
}
.voice-tmp dt {
	color: #c2a982;
	font-size: 1.25rem;
	font-weight: 700;
}
.voice-tmp dd {
	text-align: justify;
	margin-top: 1em;
}
.voice-tmp figure {
	max-width: 580px;
	position: absolute;
	bottom: 11px;
	z-index: 0;
}
.voice-tmp img {
	display: block;
	width: 100%;
}
.voice-tmp-left section {
	padding: 140px 0 40px 40px;
	margin: 0 auto 0 0;
}
.voice-tmp-left h3 .span {
	right: -66px;
}
.voice-tmp-left figure {
	right: 0;
}
.voice-tmp-right section {
	padding: 140px 40px 90px 0;
	margin: 0 0 0 auto;
}
.voice-tmp-right h3 .span {
	left: -66px;
}
.voice-tmp-right figure {
	left: 0;
}
.voice-tmp-photo01,
.voice-tmp-photo03 {
	display: none;
}
@media screen and (max-width: 1090px) {
	.voice-tmp figure {
		max-width: 480px;
	}
}
@media screen and (max-width: 960px) {
	.voice-tmp {
		padding-bottom: 100px;
	}
	.voice-tmp section {
		max-width: none;
	}
	.voice-tmp figure {
		max-width: none;
		position: relative;
		bottom: auto;
		z-index: 0;
	}
	.voice-tmp-right h3 .span {
		right: -66px;
		left: auto;
	}
	.voice-tmp-photo01,
	.voice-tmp-photo03 {
		display: block;
	}
	.voice-tmp-photo01 {
		margin-top: 30px;
	}
	.voice-tmp-photo02 {
		display: none;
	}
}
@media screen and (max-width: 640px) {
	.voice-tmp h3 {
		font-size: 1.8rem;
	}
	.voice-tmp h3 .span {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
		line-height: 38px;
		border-radius: 50%;
	}
	.voice-tmp-left section,
	.voice-tmp-right section {
		padding: 60px 0;
	}
	.voice-tmp-left h3,
	.voice-tmp-right h3 {
		padding-right: 50px;
	}
	.voice-tmp-left h3 .span,
	.voice-tmp-right h3 .span {
		right: 0;
	}
}

/* pageTop */
main a[href="#pageTop"] {
	display: block;
	width: 80px;
	height: 80px;
	position: -webkit-sticky;
	position: sticky;
	bottom: 25px;
	left: calc(100vw - 105px);
	z-index: 5;
	opacity: 0;
	transition: .2s;
}
main a[href="#pageTop"] img {
	display: block;
	width: 100%;
	transition: .2s;
}
main a[href="#pageTop"]:hover img {
	opacity: .8;
}
@media screen and (max-width: 1220px) {
	main a[href="#pageTop"] {
		width: 60px;
		height: 60px;
		bottom: 13vw;
		left: calc(100vw - 80px);
	}
}
@media screen and (max-width: 640px) {
	main a[href="#pageTop"] {
		bottom: 21vw;
		left: calc(100vw - 70px);
	}
}

/*==========================================
フッター
===========================================*/
footer {
	background-color: #f86200;
	color: #fff;
	position: relative;
}
footer div {
	max-width: 458px;
	padding: 40px 25px;
	margin: 0 auto;
}
footer > p {
	text-align: center;
	padding: 0 1em 10px;
}
footer a {
	color: #fff;
}