@charset "UTF-8";
/* CSS Document */

/* ボタン　================================================== */

.c-btn a, .c-btn > span {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 270px;
	padding: 18px 30px;
	border: 1px solid #CCC;
	border-radius: 50px;
	color: #fff;
	font-size: 0.9rem;
	line-height: 1;
	letter-spacing: 0.07em;
	position: relative;
	background-color: rgba(0,0,0,0.3);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}
@media screen and (max-width: 760px) {
	.c-btn a, .c-btn > span {
		padding: 22px 38px;
	}
}
.c-btn a .c-arrow, .c-btn > span .c-arrow {
	width: 14px;
	height: 14px;
	position: relative;
	overflow: hidden;
}
.c-btn a .c-arrow::before, .c-btn > span .c-arrow::before {
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: '\f061';
	width: 14px;
	height: 14px;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.5s;
}
.c-btn a .c-arrow::after, .c-btn > span .c-arrow::after {
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: '\f061';
	width: 14px;
	height: 14px;
	position: absolute;
	top: 0;
	left: -20px;
	transition: 0.5s;
}
.c-btn a:hover .c-arrow::before, .c-btn > span:hover .c-arrow::before {
	left: 20px;
}
.c-btn a:hover .c-arrow::after, .c-btn > span:hover .c-arrow::after {
	left: 0;
}
/* 背景 ================================================== */
.mov_bg{
	position: relative;
	width: 100%;
}
.mov_wrap{
	position: sticky;
	width: 100%;
	top: 0;
	left: 0;
	opacity: 0.5;
}
.mov_wrap video{
	width: 100%;
	height: 100vh;
	position: absolute;
	right: -20%;
	top: 0;
	z-index: -1;
}
.mov_wrap .img_r{
	width: 60%;
	max-width: 1080px;
	position: absolute;
	right: -10%;
	top: 0;
	vertical-align: middle;
}
.mov_wrap .img_l{
	width: 60%;
	max-width: 1080px;
	position: absolute;
	transform: scale(-1, 1);
	left: 0;
	top: 0;
	vertical-align: middle;
}
@media (max-width: 1200px){
	.mov_wrap .img_r{
		width: 80%;
	}
}
@media (max-width: 750px){
	.mov_wrap .img_r{
		width: 100%;
	}
}
/* テーブル ================================================== */
.simple01 table {
	border-collapse: collapse;
    border-spacing: 5px;
    margin: 0 auto;
    padding: 0;
    width:100%;
	
}
.simple01 table tr{
	border-bottom: dashed 1px #666;
}
.simple01 table th,.simple01 table td{
	padding: 1.5em 1em;
	text-align: left;
	vertical-align: top;
}
.simple01 table th{
	color: #fff;
	font-weight: 600;
	width: 20%;
	min-width: 6em;
}
.simple01 dl{
	margin-bottom: 0.5em;
	font-size: 0.9rem;
	display: flex;
}
.simple01 dl dt{
	width: 11em;
}
.simple01 dl dd{
	
}
.simple01 ul li{
	margin-bottom: 1em;
}

@media (max-width: 960px){
	.simple01 table th,.simple01 table td{
		display: block;
		width: 100%;
	}
	.simple01 table th{
		padding-bottom: 0;
	}
}

/* カルーセル============================================================ */
.carousel_wrap{
	width: 100%;
	margin-inline: auto;
}
/* カルーセルスライダー */

.carousel02 {
	width: 100%;
	padding: 0;
	margin-inline: auto;
	position: relative;
}
.carousel02 .inner {
	overflow: hidden;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
	position: relative;
	z-index: 1;
}
.carousel02 .inner img {
	display: block;
	width: 100%;
	aspect-ratio: 2 / 3;
	object-fit: cover;
	filter: grayscale(50%);
}
.work_link{
	width: 100%;
	display: block;
	position: relative;
	transition: .5s;
}
.work_link::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.1);
	-webkit-backdrop-filter: grayscale(10%);
	backdrop-filter: grayscale(10%);
	z-index: 2;
	pointer-events: none;
	transition:all .5s;
}
.work_link:hover::before{
	background: rgba(0,0,0,0.5);
	-webkit-backdrop-filter: grayscale(100%);
	backdrop-filter: grayscale(100%);
}
.work_txt{
	position: absolute;
	z-index: 3;
	left: 30px;
	bottom: 30px;
	width: 100%;
	max-width: 800px;
	color: #fff;
	pointer-events: none;
	opacity: 0;
	transition: opacity .4s cubic-bezier(0.445,0.050,0.550,0.950);
}
.work_txt p{
	margin-left: 15px;
	margin-bottom: 15px;
}
.work_txt .c-link{
	pointer-events:auto;
	position: relative;
	z-index: 4;
	filter: invert(100%);
}
.carousel_wrap:hover .work_txt{
	opacity: 1;
}
@media (max-width: 960px){
	.carousel02 .inner img {
		aspect-ratio: 3 / 4;
	}
}
@media (max-width: 768px){
	.work_txt{
		left: 15px;
		width: calc(100% - 30px);
	}
	.carousel02 .inner img {
		aspect-ratio: 2 / 3;
	}
}
@media (max-width: 450px){
	.work_txt{
		left: 0;
		width: calc(100% - 30px);
	}
	.carousel02 .inner img {
		aspect-ratio: 4 / 5;
	}
}


/* Map ============================================================ */
.map{
	width: 100%;
	padding: 15px
}
.map iframe{
	width: 100%;
	vertical-align: middle;
}

/* ビフォーアフター ================================================== */
.before_after{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto
}
.before_after .ba_img{
	width: calc(100% / 2 - 30px);
	aspect-ratio: 3 / 2;
	position: relative;
	background: rgba(0,0,0,0.3);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}
.before_after .ba_img img{
	width: 100%;
	height: 100%;
	padding: 30px;
	aspect-ratio: 3 / 2;
	vertical-align: middle;
	object-fit: cover;
	object-position: center;
}

.before_after .ba_img h3.before{
	position: absolute;
	top: 20px;
	left: -15px;
	transform: rotate(-10deg);
	font-size: 4em;
	color: #ccc;
	filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.5));
	font-family: "Shadows Into Light", cursive;
	font-weight: 400;
}
.before_after .ba_img h3.after{
	position: absolute;
	bottom: 20px;
	right: -15px;
	transform: rotate(-10deg);
	font-size: 4em;
	color: #ccc;
	filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.1));
	font-family: "Shadows Into Light", cursive;
	font-weight: 400;
}
.ba_arrow{
	padding: 5px;
}
.ba_arrow i{
	color: #ccc;
	font-size: 2em;
}
@media (max-width: 960px){
	.before_after{
		flex-direction: column;
		justify-content: center;
	}
	.before_after .ba_img {
		max-width: 500px;
		width: calc(100% - 30px);
		margin: auto;
	}
	.ba_arrow{
		transform: rotate(90deg);
		margin: 10px;
	}
}
@media (max-width: 750px){
	.before_after .ba_img{
		width: 100%;
	}
	.before_after .ba_img img{
		padding: 15px;
	}
	.before_after .ba_img h3.before{
		left: 15px;
	}
	.before_after .ba_img h3.after{
		right: 15px;
	}
}
/* QA ============================================================ */
.qa-list dl {
    position: relative;
    margin: 0;
    padding: 28px 80px 28px 30px;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
}
.qa-list dl:first-child {
    border-top: 1px solid #ccc;
}
.qa-list dl::before {
    position: absolute;
    top: 35px;
    right: 35px;
    display: block;
    width: 7px;
    height: 7px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 2px solid #8a9898;
    border-right: 2px solid #8a9898;
}
.qa-list .open::before {
    transform: rotate(-45deg);
}
.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 0 0 0 50px;
    font-weight: bold;
    font-size: 1.2rem;
}
.qa-list dl dt::before {
    font-size: 30px;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: 'Q.';
    color:#8a9898;
}
.qa-list dl dd::before {
    font-size: 30px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 2px;
    display: block;
    content: 'A.';
    color: #e65912;
}
.qa-list dl dd {
    position: relative;
    display: none;
    height: auto;
    margin: 20px 0 0;
    padding: 0 0 0 50px;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}
@media (max-width: 750px){
	.qa-list dl{
		 padding: 28px 30px 28px 15px;
	}
	.qa-list dl::before{
		right: 15px;
	}
	.qa-list dl dt{
		padding: 0 0 0 40px;
	}
}
/* ながれ ================================================== */


