@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');

:root {
	--brand-color: #BA5D00;
	--en: 'Libre Baskerville', serif;
}

main {
	overflow: clip;
}

.en {
	font-family: var(--en) !important;
}

.sp {
	display: none;
}

.pc {
	display: block;
}

@media screen and (max-width:767px) {
	.sp {
		display: block;
	}

	.pc {
		display: none;
	}
}

.ibock {
	display: inline-block;
}

/* FIND IDEAS banner
-----------------------------------------*/
.kv-banner {
	/* margin-top: 3em; */
	padding: min(5em, 4vw);
	/* background-color: #BA5D00; */
	background-color: #efe4d9;
	margin: 4em auto 0;

}

@media screen and (max-width:767px) {
	.kv-banner {
		margin-top: 0;
	}
}

.case-banner-wrp {
	width: 100%;
	max-width: 900px;
	margin: 3em auto 5em;
}

.kv-banner .case-banner-wrp {
	margin: 0 auto;
	background-color: #fff;
}

@media screen and (max-width:640px) {
	.kv-banner .case-banner-wrp {
		max-width: 94%;
	}
}

.case-banner {
	display: flex;
	justify-content: space-between;
	background-color: #f9f9f9;
	width: 100%;
	text-align: center;
	color: #BA5D00;
	border: 6px solid;
	/* box-shadow: 0 0 8px rgba(0, 0, 0, 0.2); */
	position: relative;
	overflow: hidden;
	transition: all .3s;
}

.case-banner:hover {
	border: 6px solid #BA5D00;
	opacity: 1;
}

.kv-banner .case-banner-wrp .case-banner {
	width: min(967px, 100%);
	margin: 0 auto;
	background-color: #fff;
}

@media screen and (max-width:640px) {
	.case-banner {
		flex-wrap: wrap;
	}
}

.case-banner .fukidashi {
	position: absolute;
	background-color: var(--brand-color);
	top: -4.5em;
	left: -8em;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	padding: 7em 7em .5em;
	rotate: -35deg;
}

.case-banner .fukidashi .sml {
	font-size: .8em;
}

.case-banner-img {
	display: block;
	width: 50%;
	overflow: hidden;
	position: relative;
}

@media screen and (max-width:640px) {
	.case-banner-img {
		width: 100%;
		aspect-ratio: 2/1;
	}
}

.case-banner-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kv-banner .case-banner-wrp .ba-logo {
	width: min(500px, 75%);
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
}

.case-banner-title {
	display: block;
	width: 50%;
	padding: 2em 0;
	box-sizing: border-box;
}

@media screen and (max-width:640px) {
	.case-banner-title {
		width: 100%;
		padding: 1em .5em;
	}
}

.case-banner .en-title {
	color: var(--brand-color);
	font-size: 200%;
	font-family: var(--en) !important;
	font-weight: 600;
	display: block;
	margin-bottom: .25em;
}

.case-banner .title {
	color: var(--brand-color);
	font-size: 110%;
	font-weight: bold;
	display: block;
	margin-bottom: .5em;
}

.kv-banner .case-banner-wrp .title {
	color: inherit;
}

.case-banner .btn-wrp {
	padding: .5em 0;
	margin-top: 0 !important;
}

.case-banner .btn {
	width: fit-content;
	background-color: var(--brand-color);
	color: #fff;
	font-weight: 600;
	padding: .5em 3em;
	border-radius: 3em;
	margin: 1em auto;
	position: relative;
	border: none !important;
}

.find-ideas * {
	box-sizing: border-box;
}

.find-ideas .btn {
	display: inline-block;
	position: relative;
	border-radius: 3em;
	padding: .5em 2em .5em 1em;
	border: 1px solid;
	background-color: #fff;
	transition: .3s;
}

.find-ideas .btn:hover {
	color: #fff !important;
	border-color: #000;
	background-color: #000;
}

.find-ideas .btn-wrp {
	margin-top: 3em;
}

@media screen and (max-width:640px) {
	.find-ideas .btn-wrp {
		margin-top: 2em;
	}
}

.find-ideas .btn.frame-btn {
	width: 100%;
	margin: .5em auto;
	padding: .5em 2em;
	font-weight: 600;
	color: var(--brand-color);
	border-radius: 3em;
	border: 2px solid;
	text-align: center;
}

.arrow-right {
	position: absolute;
	top: 50%;
	right: .75em;
	width: 1.5em;
	transform: translateY(-50%);
}

.arrow-right::before,
.arrow-right::after {
	content: '';
	display: block;
	height: 0;
	border-bottom: 1px solid;
	position: absolute;
	top: 50%;
	right: 0;
}

.arrow-right::before {
	width: 100%;
}

.arrow-right::after {
	width: 50%;
	transform: rotate(20deg);
	transform-origin: bottom right;
}

.arrow-plus {
	--size: 1.25em;
	display: block;
	width: calc(var(--size) * .8);
	height: calc(var(--size) * .8);
	position: absolute;
	top: 50%;
	right: .75em;
	transform: translate(0, calc(-50% - .125em));
}

.arrow-plus::before,
.arrow-plus::after {
	content: '';
	display: block;
}

.arrow-plus::before {
	width: 100%;
	height: 0;
	border-top: 1px solid;
	transform: translateY(calc(var(--size) * .8 / 2));
}

.arrow-plus::after {
	width: 0;
	height: 100%;
	border-left: 1px solid;
	transform: translateX(calc(var(--size) * .8 / 2));
}

.arrow-top {
	--size: .7em;
	display: block;
	width: calc(var(--size) * .8);
	height: calc(var(--size) * .8);
	position: absolute;
	top: 50%;
	right: 1.5em;
	transform: translate(0, -50%);
}

.arrow-top::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	border-top: 1px solid;
	border-left: 1px solid;
	transform: rotate(45deg);
}

.find-ideas .co {
	/* margin-top: 4em; */
	padding: 3em 0;
}

@media screen and (max-width:767px) {
	.find-ideas .co {
		/* padding: 2em 0; */
	}
}

.find-ideas .center {
	text-align: center;
}

.find-ideas .flex-center {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.find-ideas .flex-between {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.find-ideas .inner {
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
}

.find-ideas .inner1200 {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	/* padding: 4em 1em 3em; */

}

@media screen and (max-width:767px) {
	.find-ideas .inner1200 {
		/* padding: 2em 0; */
	}
}

.title-wrp {
	text-align: center;
}

.idea-title {
	display: block;
	width: fit-content;
	text-align: center;
	font-size: min(4.5em, 7vw);
	line-height: 1.2 !important;
	font-weight: 400;
	color: var(--brand-color);
	margin: 0 auto 1.4em;
	position: relative;
}

.idea-title::before {
	content: 'IDEA';
	display: block;
	font-size: .4em;
	line-height: 1.2 !important;
	text-decoration: none;
	text-underline-offset: unset;
	text-decoration-thickness: unset;
}

@media screen and (max-width:767px) {
	.idea-title::before {
		font-size: .55em;
	}
}

.idea-title::after {
	content: '';
	display: block;
	width: 100%;
	height: 0;
	border-bottom: 4px double;
}

@media screen and (max-width:767px) {
	.idea-title::after {
		border-bottom: 3px double;
	}
}

.title {
	text-align: center;
	font-size: min(2.4em, 5vw);
	font-weight: 600;
}

.title-underline {
	text-align: center;
	font-size: min(2.4em, 6.7vw);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-thickness: 2px;
	text-decoration-color: var(--brand-color);
	margin-bottom: 1.5em;
}

.lead-wrp {
	width: 100%;
	text-align: center;
	padding: 1em 0;
	margin-bottom: 2em;
}

.lead {
	font-size: min(1.1em, 4vw);
	line-height: 2 !important;
}


/* main img
===========================================*/
.main-img-wrp {
	position: relative;
	background-color: #f2f2f2;
}

.main-img-wrp .img-wrp {
	max-width: 1366px;
	height: auto;
	min-height: 300px;
	margin: 0 auto;
	display: block;
}

.main-img-wrp .img-wrp :is(picture, img) {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 300px;
	max-height: unset;
	object-fit: cover;
}

.main-title-wrp {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	text-align: center;
	color: #fff;
}

.main-title-wrp .subtitle {
	font-size: min(1.5em, 5vw);
	font-weight: 600;
	margin-bottom: .25em;
	text-shadow: 0 0 3px rgba(0, 0, 0, .3);
}

.main-title-wrp .title {
	font-size: min(2.8em, 7.5vw);
	line-height: 1.5;
	font-weight: 600;
	margin-bottom: 0;
	text-shadow: 0 0 3px rgba(0, 0, 0, .3);
}

.main-title-wrp .title-before-after {
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	padding: 0 1em;
}

@media screen and (max-width:767px) {
	.main-title-wrp .title-before-after {
		margin-top: 1em;
	}
}

.main-title-wrp .title-before-after img {
	width: 100%;
	height: auto;
}

/* introduction
===========================================*/
.case-introduction .inner {
	padding: 3em 1em;
}

@media screen and (max-width:767px) {
	.case-introduction .inner {
		padding: 2em 1em;
	}
}

.case-introduction .lead {
	font-size: min(1.2em, 3.8vw);
	margin-bottom: 1em;
}

/* step */
.step-wrp {
	gap: 2%;
}

@media screen and (max-width:767px) {
	.step-wrp {
		flex-wrap: wrap;
		gap: 2em 0;
	}
}

.step-wrp .step {
	width: 18%;
	text-align: center;
	position: relative;
	/* margin-bottom: 1em; */
	overflow: unset;
}

@media screen and (max-width:767px) {
	.step-wrp .step {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
	}
}

.step-wrp .step .step-title {
	font-weight: 600;
	font-size: min(1.05em, 3.5vw);
	margin-bottom: 2.5em;
}

@media screen and (max-width:767px) {
	.step-wrp .step .step-title {
		width: 100%;
		margin-bottom: .5em;
	}
}

.step-wrp .point {
	width: 5em;
	height: 5em;
	font-family: var(--en), sans-serif !important;
	font-weight: 500;
	position: absolute;
	top: 6.3em;
	left: 0;
	z-index: 2;
	border-radius: 100%;
	color: #fff;
	background-color: #BA5D00;
	text-align: center;
	padding-top: 1em;
	font-size: 10px;
	font-weight: bold;
}

@media screen and (max-width:767px) {
	.step-wrp .point {
		top: 2.5em;
		left: 50%;
		transform: translateX(-160%);
	}
}

.step-wrp .point::before {
	content: '';
	width: .8em;
	height: .6em;
	color: #fff;
	border-left: 2px solid;
	border-bottom: 2px solid;
	rotate: -45deg;
	position: absolute;
	left: 2em;
	bottom: 1.5em;
}


.step .step-img {
	width: 70%;
	height: 0;
	padding-bottom: 70%;
	overflow: hidden;
	margin: 1em auto 1.5em;
	background-color: #f9f9f9;
	border-radius: 50%;
	box-shadow: 0 0 6px rgba(0, 0, 0, .2);
	position: relative;
}

@media screen and (max-width:767px) {
	.step .step-img {
		width: 30%;
		padding-bottom: 30%;
	}
}

.step .step-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	position: absolute;
	top: 0;
	left: 0;
}

.step .btn {
	font-size: 11px;
	font-weight: 600;
	color: var(--brand-color);
	border-radius: 3em;
	padding: .5em 2em .5em 1em;
	border: 2px solid;
}

@media screen and (max-width:767px) {
	.step .btn {
		width: 80%;
		font-size: 3vw;
		margin: 0 auto 1.5em;
	}
}


/* idea navi
===========================================*/
.idea-navi-wrp {
	background-color: #f9f9f9;
	padding: min(4em, 5vw) 0;
	width: 100%;
}

@media screen and (max-width:767px) {
	.idea-navi-wrp {
		padding: min(4em, 5vw) 0 0;
	}
}

.idea-navi-wrp .title-wrp {
	width: 100%;
}

.idea-navi-wrp .title-wrp .title {
	display: block;
	width: fit-content;
	margin: 0 auto 1em;
	font-size: min(2em, 5vw);
	position: relative;
}

.idea-navi-wrp .title-wrp .title::before,
.idea-navi-wrp .title-wrp .title::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 1em;
	height: 0;
	border-bottom: 1px solid;
}

.idea-navi-wrp .title-wrp .title::before {
	left: -2em;
}

.idea-navi-wrp .title-wrp .title::after {
	right: -2em;
}

.idea-navi-inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.idea-navi-wrp .idea-navi {
	/* width: 16.6%; */
	width: calc(100% / 7 - 5px);
	position: relative;
}


@media screen and (max-width:767px) {
	.idea-navi-wrp .idea-navi {
		aspect-ratio: 3/5;
		width: calc(100% / 7 - 2px);
		border: none;
	}
}

.idea-navi-wrp .idea-navi.soon {
	pointer-events: none;
}

.idea-navi-wrp .idea-navi .thumb {
	width: 100%;
	aspect-ratio: 3/4;
	overflow: hidden;
}

.idea-navi-wrp .idea-navi .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.idea-navi-wrp .idea-navi .thumb::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.35);
}

.idea-navi-wrp .idea-navi .thumb::after {
	content: '';
	width: 1em;
	height: 1em;
	position: absolute;
	bottom: 1em;
	left: 50%;
	color: #fff;
	border-right: 1px solid;
	border-bottom: 1px solid;
	transform: translateX(-50%) rotate(45deg);
}

.idea-navi-wrp .idea-navi img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.idea-navi-wrp .idea-navi .navi-title {
	width: 100%;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-70%);
	color: #fff;
	font-size: min(1em, 3vw);
	font-weight: bold;
	text-shadow: 0 0 3px rgba(0, 0, 0, .3);
}

.idea-navi-wrp .idea-navi .navi-title .idea-title-jp {
	display: block;
	height: 4lvh;
}

@media screen and (max-width:767px) {
	.idea-navi-wrp .idea-navi .navi-title .idea-title-jp {
		display: none;
	}
}

.idea-navi-wrp .idea-navi .navi-title .idea-title {
	color: #fff;
	font-size: min(2em, 4.5vw);
	margin-bottom: .5em;
}

.sticky {
	display: block;
	width: 100%;
	position: relative;
}

.sticky-nav {
	margin: 0 auto;
	position: fixed;
	top: 20%;
	right: 0;
	z-index: 999;
	transform: translateX(100%);
	opacity: 0;
	visibility: hidden;
	transition: all .3s;
}

.sticky.active .sticky-nav {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}

.sticky-nav-inner {
	width: 100%;
}

.sticky-nav .idea-navi {
	display: block;
	margin-bottom: 1px;
	background-color: #333;
	padding: min(1em, 2.5vw);
	transition: all .3s;
}

.sticky-nav .idea-navi:hover,
.sticky-nav .idea-navi.active {
	background-color: #BA5D00;
}

.sticky-nav .idea-navi .idea-title {
	font-size: min(1.1em, 3.5vw);
	color: #fff;
	margin-bottom: 0;
}

.sticky-nav .idea-navi .idea-title::after {
	content: unset;
}


/* idea
===========================================*/
.find-ideas .idea {
	padding: min(6em, 8vw) 1em;
}

.find-ideas .idea-primary {
	margin-bottom: 5em;
}

@media screen and (max-width:767px) {}

/* img-box, txt-box */
.img-box {
	width: 49%;
	position: relative;
}

@media screen and (max-width:767px) {
	.img-box {
		width: 100%;
	}
}

.img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.txt-box {
	width: 49%;
	padding: 1em 2em;
}

@media screen and (max-width:767px) {
	.txt-box {
		width: 100%;
		padding: 2em;
	}
}

/* style-img-wrp */
.style-img-wrp .img-box {
	aspect-ratio: 4/3;
	width: 55%;
}

@media screen and (max-width:767px) {
	.style-img-wrp .img-box {
		width: 100%;
	}
}

.style-img-wrp .txt-box {
	width: 40%;
	padding: 2em 1em;
}

@media screen and (max-width:767px) {
	.style-img-wrp .txt-box {
		width: 100%;
		padding: 0 1em 2em;
	}

	.style-img-wrp .img-box+.txt-box {
		padding: 2em 1em;
	}
}

.style-title-en {
	width: fit-content;
	margin-bottom: 2em;
	font-weight: bold;
	font-size: min(1.6em, 4.8vw);
	line-height: 1;
	color: #BA5D00;
	letter-spacing: .05em;
}

@media screen and (max-width:767px) {
	.style-title-en {
		/* margin-top: 1em; */
		margin-bottom: 1em;
	}
}

.style-title-en .frame {
	display: inline-block;
	margin-right: .5em;
	padding: .2em .75em;
	border: solid 2px #BA5D00;
	font-size: .95em;
	font-family: inherit !important;
}

.style-title {
	font-size: min(1.8em, 5vw);
	margin-bottom: 1em;
	font-family: var(--en);
	font-weight: 600;
}

@media screen and (max-width:767px) {
	.style-title {
		margin-top: 1em;
	}
}

.style-img-wrp .txt-box p {
	text-align: justify;
}

.style-img-wrp .txt-box .btn-wrp {
	/* padding-top: 2em; */
}

.floor-plan {
	margin-bottom: 4em;
}

/* btn-wrp */
.btn-wrp {
	margin-top: 3em;
	text-align: center;
}

.btn-wrp .btn {
	display: inline-block;
	min-width: 320px;
	border: 2px solid #999;
	font-size: min(.9em, 3vw);
	font-weight: bold;
	padding: .5em 3em;
	border-radius: 2em;
	margin: .5em 1em;
}

@media screen and (max-width:767px) {
	.btn-wrp .btn {
		min-width: 0;
	}
}

/* simulation */

.case-simulation .tag-wrp {
	width: 100%;
	text-align: center;
	margin-bottom: 2em;
}

.idea3 .case-simulation .tag-wrp {
	max-width: 40em;
	margin-inline: auto;
}

@media screen and (max-width:767px) {
	.case-simulation .tag-wrp {
		margin-top: -1em;
	}
}

.case-simulation .tag {
	display: inline-block;
	color: var(--brand-color);
	/* border: 2px solid; */
	font-size: min(1.1em, 3vw);
	font-weight: bold;
	/* padding: .5em 1em; */
	border-radius: 3px;
	margin: 0 1em;
}

@media screen and (max-width:767px) {
	.case-simulation .tag {
		width: 96%;
		padding: .5em;
	}
}

/* before after */
.before-after-wrp .before-after-title {
	font-size: min(1.5em, 6vw);
	font-weight: 600;
	text-align: center;
	padding: .5em;
}

.before-after-wrp .img-box {
	width: 48%;
}

@media screen and (max-width:767px) {
	.before-after-wrp .img-box {
		width: 96%;
		margin: 0 auto;
	}

	.before-after-wrp .img-box.before {
		margin-bottom: 2em;
	}
}

.before-after-wrp .thumb {
	display: inline-block;
	/* margin-bottom: 1em; */
	position: relative;
	transform: rotate(0);

}

@media screen and (max-width:767px) {
	.before-after-wrp .thumb {
		margin-bottom: 0;
	}
}

.before-after-wrp .thumb::after {
	content: '';
	width: 7em;
	height: 7em;
	background-image: url(../img/360.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 1.5s;
}

.before-after-wrp .thumb:hover::after {
	transform: translate(-50%, -50%) rotate(360deg);
}

/* styling */
.case-styling {}

.case-styling .style-img-wrp .img-box {
	aspect-ratio: 16/9;
}

.styling-sheet {
	margin-top: 5em;

}

.styling-sheet .sheet-title {
	/* width: fit-content; */
	margin: 0 auto;
	color: var(--brand-color);
	text-align: center;
	/* font-size: min(1.6em, 4.6vw); */
	font-size: min(1.8em, 4.8vw);
	font-weight: 600;
	margin-bottom: .25em;
}

.styling-sheet .styling-wrp {
	width: fit-content;
	margin: 0 auto;
	padding-top: 2em;
	gap: 26px;
	border-top: solid 1px var(--brand-color);
}

@media screen and (max-width:1024px) {
	.styling-sheet .styling-wrp {
		gap: 19px
	}
}

@media screen and (max-width:767px) {
	.styling-sheet .styling-wrp {
		/* 		margin-bottom: 2em; */
		gap: 3vw 6%;
	}
}

.styling-sheet .styling-wrp .style-box {
	display: block;
	width: 295px;
	position: relative;
}

@media screen and (max-width:767px) {
	.styling-sheet .styling-wrp .style-box {
		width: 47%;
	}
}

.styling-sheet .styling-wrp .style-box .styling-title {
	display: block;
	text-align: center;
	font-size: min(1.3em, 4vw);
	font-weight: 600;
	padding: .5em;
}

.styling-sheet .styling-wrp .style-box .thumb {
	box-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

.styling-sheet .styling-wrp .style-box .btn.zoom-btn {
	display: block;
	position: absolute;
	bottom: -.5em;
	right: -.5em;
	width: 2.5em;
	height: 2.5em;
	padding: 0;
	border-radius: 100%;
	background-color: #fff;
	color: var(--brand-color);
	border: 2px solid;
}

.styling-sheet .styling-wrp .style-box .btn.zoom-btn:hover {
	background-color: var(--brand-color) !important;
	border-color: var(--brand-color) !important;
}

.styling-sheet .styling-wrp .style-box .btn.zoom-btn .arrow-plus {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* gallery */
.case-gallery.co {
	/* padding: 5em 0; */

}

.case-gallery .title-wrp {
	/* padding-bottom: 2em; */

}

.gallery-slider .slide {
	padding: 1em 2em 1.5em;
}

@media screen and (max-width:767px) {
	.gallery-slider .slide {
		padding: 1em;
	}
}

.gallery-slider .thumb {
	margin-bottom: 1em;
}

.gallery-slider .caption {
	padding: .5em;
	font-size: min(.9em, 3vw);
}

.gallery-slider .slick-prev,
.gallery-slider .slick-next {
	top: 40%;
}

.gallery-slider .slide {
	transition: .3s;
}

.gallery-slider .slide.slick-current {
	scale: 1.15;
}


/* case idea banner */

.idea-banner {
	width: 100%;
	background-color: #fff;
	position: relative;
	padding: 4em 2em;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
}

@media screen and (max-width:767px) {
	.idea-banner {
		width: 90%;
		margin: 0 auto;
		padding: 0;
	}

	.idea1 .idea-banner {
		padding: 1.5em 0;
	}

	.idea2 .idea-banner .txt-box {
		padding: 2em;
	}
}

.idea-banner .fukidashi-idea {
	width: 9em;
	padding: 1.25em .5em 2em;
	clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 80% 80%, 80% 100%, 65% 80%, 0% 80%);
	background-color: var(--brand-color);
	color: #fff;
	font-weight: 800;
	position: absolute;
	top: -1.5em;
	left: -1.5em;
	text-align: center;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
	z-index: 3;
}

@media screen and (max-width:767px) {
	.idea-banner .fukidashi-idea {
		top: -3em;
		left: -.75em;
	}
}

.idea-banner .img-box img {
	object-fit: contain;
}

.idea3 .idea-banner .img-box .pop {
	width: 40%;
	position: absolute;
	left: -5%;
	bottom: -10%;
	border: solid 5px #fff;
	border-radius: 100%;
	overflow: hidden;
}

@media screen and (max-width:767px) {
	.idea3 .idea-banner .img-box .pop {
		width: 40%;
		left: -8%;
		bottom: -6%;
	}
}

.idea-banner .title {
	text-align: left;
	font-size: min(1.5em, 3.5vw);
	margin-bottom: 1em;
	color: var(--brand-color);
}

/* provide-wrp */
.provide-wrp {
	margin: 1em 0 4em;
	text-align: center;
	font-size: min(1em, 3.4vw);
}

.provide-wrp .provide-banner {
	display: block;
	width: min(240px, 60%);
	margin: 1em auto 0;
}

/* back to list btn */
.btn-wrp.back-tolist {
	margin-top: 3em;
	text-align: center;
}

.back-tolist .btn {
	font-size: min(1.3em, 3.5vw);
	font-weight: 600;
	color: var(--brand-color);
	background-color: #f9f9f9;
	border: 3px solid;
	padding: 1em 4em;
	text-align: center;
	border-radius: 3em;
	position: relative;
}

.bggray {
	background-color: #f6f3f0;
}

.footer-share-contents .about_wrapper {
	margin-top: 0;
}

.mod_section img {
	margin-left: auto;
	margin-right: auto;
}

.footer-fixed-banner {
	padding: 1em;
	background: #fff;
	box-shadow: 0px -12px 25px rgba(0, 0, 0, 0.0784313725);
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100;
	width: 100%;
	box-sizing: border-box;
}

@media screen and (max-width:767px) {
	.footer-fixed-banner {
		padding: .25em 1em .5em;
	}

	.footer-fixed-banner .p-fixed__inner {
		flex-wrap: wrap;
		padding: 0;
		border: unset;
	}
}

.footer-fixed-banner .txt-box {
	width: 49%;
	padding: 0;
}

@media screen and (max-width:767px) {
	.footer-fixed-banner .txt-box {
		width: 100%;
		text-align: center;
	}
}

.footer-fixed-banner .txt-box p {
	font-size: min(1em, 3vw);
	font-weight: bold;
	line-height: 1.5;
	padding: .5em 0;
}

.footer-fixed-banner .txt-box .btn {
	display: block;
	width: 100%;
	border-radius: 3px;
	padding: .5em 2em;
	background-color: var(--brand-color);
	font-size: min(1em, 3.3vw);
	color: #fff;
	font-weight: bold;
	position: relative;
}

.footer-fixed-banner .txt-box span {
	display: block;
	text-align: center;
	line-height: 1.5;
}

.footer-fixed-banner .txt-box .btn .free {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5lh;
	height: 2.5lh;
	background-color: #fff;
	font-size: min(.9em, 3vw);
	line-height: 1.2;
	color: var(--brand-color);
	border-radius: 100%;
	position: absolute;
	top: 50%;
	left: 1.5em;
	transform: translateY(-50%);
}

.footer-fixed-banner .txt-box .sml {
	font-size: .8em;
}