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


/* ボタン　================================================== */
.btn_wrap{
	display: block;
	width: fit-content;
	margin: 30px auto;
}

.spiral {
	display:inline-block;
	width: 300px;
	height: 4rem;
	text-align: center;
	position: relative;
	cursor: pointer;
	margin: 15px auto;
	background: rgba(255,255,255,0.5);
	border:solid 1px #ccc;
	transition: .5s;
}
.spiral span {
	text-transform: uppercase;
	color: #1a1a1a;
	text-align: center;
	line-height: 4rem;
	margin: auto;
	font-size: 1rem;
	transition-duration: 0.5s;
}
.spiral span::before{
	display: inline-block;
    position: absolute;
    top: 50%;
    left: -1em;
    width: 2em;
    height: 1px;
	border-bottom: solid 1px #1a1a1a;
    content: "";
	transition-duration: 0.5s;
}

.spiral-top::before,
.spiral-top::after,
.spiral-bottom::before,
.spiral-bottom::after {
	content: " ";
	background: #1a1a1a;
	position: absolute;
	transition-duration: 0.5s;
}

.spiral-top::before {
	top: -1px;
	left: -1px;
	width: 1px;
	height: 0px;
}
.spiral-top::after {
	top: -1px;
	right: -1px;
	width: 0px;
	height: 1px;
}
.spiral-bottom::before {
	bottom: -1px;
	left: -1px;
	width: 0px;
	height: 1px;
}
.spiral-bottom::after {
	bottom: -1px;
	right: -1px;
	width: 1px;
	height: 0px;
}

.spiral:hover span::before{
	left: -0.25em;
}
.spiral:hover
.spiral-top::before {
	height:calc(100% + 2px);
}
.spiral:hover
.spiral-top::after {
	width:calc(100% + 2px);
}
.spiral:hover
.spiral-bottom::before {
	width:calc(100% + 2px);
}
.spiral:hover
.spiral-bottom::after {
	height:calc(100% + 2px);
}
@media (max-width: 450px){
	.spiral{
		width: calc(100% - 1rem);
		max-width: 300px;
		min-width: 260px;
	}
}
/* テーブル　リスト
   ========================================================================== */
.simple01 table {
	border-collapse: collapse;
    border-spacing: 5px;
    margin: 0 auto;
    padding: 0;
    width:100%;
	
}
.simple01 table tr{
	border-bottom: solid 1px #ccc;
}
.simple01 table th,.simple01 table td{
	padding: 1.5em 1em;
	text-align: left;
	vertical-align: top;
}
.simple01 table th{
	font-weight: 600;
	width: 20%;
	min-width: 6em;
}

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

.border02{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap:15px 30px;
	padding: 15px;
}
.border02 li{
	border-bottom: dashed 1px;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}

/* コンテンツ
   ========================================================================== */

.card001{
	display: flex;
	align-content: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.card001 figure{
	width: calc(100% / 3 - 40px);
	margin: 20px;
	background:rgba(255,255,255,0.5);
	padding: 30px;
	position: relative;
	z-index: 2;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.05);
}
.card001 figure::after{
	position: absolute;
	content: '';
	top: -15px;
	left: -15px;
	bottom: -15px;
	right: -15px;
	background:rgba(255,255,255,0.5);
	z-index: -1;
}
.card001 figure img{
	display: block;
	width: 180px;
	padding: 15px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	object-fit: contain;
	margin: auto;
	background: #f8f4e6;
	
}
.card001 figure figcaption{
	width: 100%;
}
.card001 figure figcaption h3{
	text-align: center;
	font-size: 0.8rem;
	margin-bottom: 0.5em;
}
.card001 figure figcaption h3 span{
	font-size: 200%;
}
.card001 figure figcaption h4{
	font-size: 1.2em;
	border-bottom: solid 1px;
	margin-bottom: 0.5rem;
}
.card001 figure figcaption p{
	font-size: 0.9rem;
}
@media (max-width: 960px){
	.card001{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin: 0 auto 30px;
		max-width: 450px;
	}
	.card001 figure{
		width: calc(100% - 30px);
	}
	
}

.card002{
	display: flex;
	justify-content: center;
	align-items: center;
}
.card002 .img {
	width: 100%;
	padding: 10px;
}
.card002 .img img{
	width: 100%;
}
.card002 .txt{
	width: 100%;
	padding: 15px;
	align-self: center;
}
.card002 .txt p{
	margin-bottom: 1em;
}
.card002 .rec p{
	text-indent: 1em;
}
.card002 .video{
	width: 100%;
}

.card002 .img_f{
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding-bottom: 70px;
}
.img_f .f_in{
	width: 50%;
	padding: 15px;
}
.img_f .f_in img{
	width: 100%;
	aspect-ratio: 9 / 16;
	object-fit: cover;
}
 .img_f .f_in:nth-child(2){
	transform: translateY(70px);
}
.card002 .img_v{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.img_v .v_in{
	width: 90%;
	padding: 15px;
}
.img_v .v_in img{
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}
 .img_v .v_in:nth-child(1){
	transform: translateX(70px);
}
.card002.w_small .img_v{
	width: 45%
}
.card002.w_small .txt{
	width: 55%
}
.card002.w_small .txt_copy04 .en{
	font-size: clamp(2.4rem, 1.23rem + 4.16vw, 5rem);
}

.card002 .img.on{
	position: relative;
	padding: 0;
}
.card002 .img.on::before{
	position: absolute;
	content: "";
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255,255,255,0.4);
	z-index: 1;
}
.card002 .img.on .on01{
	position: absolute;
	width: 25%;
	top: 10%;
	left: 5%;
	filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.1));
	z-index: 2;
}
.card002 .img.on .on02{
	position: absolute;
	width: 35%;
	bottom: 10%;
	left: 10%;
	z-index: 3;
	filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.1))
}
.card002 .img.on .on03{
	position: absolute;
	width: 30%;
	bottom: 15%;
	left: auto;
	right: 10%;
	z-index: 4;
	filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.1))
}

@media (max-width: 750px){
	.txt_copy04 .en{
		font-size: 3.5rem;
	}
	.card002.w_small .txt_copy04 .en{
		font-size: 3rem;
	}
	.img_v .v_in:nth-child(1){
		transform: translateX(50px);
	}
}

.card003{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px 0;
}
.card003 .img{
	width: 300px;
	flex-basis: 300px;
	padding: 15px;
	align-self: center;
}
.card003 .img img{
	width: 100%;
}
.card003 .txt{
	flex: 1;
	padding: 10px 5%;
	align-self: center;
}
@media (max-width: 960px){
	.card002,
	.card003{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-bottom: 30px;
	}
	.card002 .img{
		text-align: center;
	}
	.card002 .img img{
		max-width: 600px;
	}
	.card002 .txt{
		padding: 15px;
	}
	.card002.w_small .img_v{
		width: 100%
	}
	.card002.w_small .txt{
		width: 100%
	}
	.reverse{
		flex-direction: column-reverse;
	}
}


@media (max-width: 450px){
	.card003 .txt{
		padding: 10px;
	}
}
/* 写真横並び基本　*/
.photo_flex{
	display: flex;
	align-items:flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	gap:15px;
}
.photo_flex .img{
	width: calc(50% - 8px);
	padding: 0;
}
.photo_flex img{
	width: 100%;
}


/* カルーセル============================================================ */
.carousel_wrap{
	width: 100%;
	margin: auto;
	position: relative;
}
.carousel {
	width:calc(100% - 40px);
	padding: 0;
	margin: auto;
}
.carousel .inner {
	overflow: hidden;
	margin: 20px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}
.carousel .inner img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.carousel .slick-next {
	right: -20px;
	z-index: 50;
}
.carousel .slick-prev {
	left: -20px;
	z-index: 50;
}
/* works============================================================ */
.carousel02 {
	width: 100%;
	padding: 0;
	margin: 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: 20%;
	width: 100%;
	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%);
}

.work_txt .txt_copy03 a{
	color: #fff;
}
.work_txt .txt_copy03::before{
	background: #fff;
}
.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{
	position: relative;
	z-index: 2;
}
.map iframe{
	width: 100%;
	height: 450px;
	vertical-align: middle;
}

/* Map　対応地域 ============================================================ */
.map_wrap{
	position: relative;
}
.map_img{
	width: 100%;
	height: 700px;
	background:url("../img/bg_img01_2.webp") no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-position: center top;
	-webkit-mask-image: url(../img/map.svg);
	-webkit-mask-repeat:no-repeat;
	-webkit-mask-position:center;
	-webkit-mask-size: auto 100%;
	mask-image: url(../img/map.svg);
	mask-repeat:no-repeat;
	mask-position:center;
	mask-size: auto 100%;
	
	position: relative;
}
.map_img02{
	width: 100%;
	height: 700px;
	background:url("../img/bg_img01_2.webp") no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-position: center top;
	-webkit-mask-image: url("../img/map_j.svg");
	-webkit-mask-repeat:no-repeat;
	-webkit-mask-position:center;
	-webkit-mask-size: auto 100%;
	mask-image: url(../img/map_j.svg);
	mask-repeat:no-repeat;
	mask-position:center;
	mask-size: auto 100%;
	
	position: relative;
}
/*Safariのみ*/
::-webkit-full-page-media, :future, :root .map_img,
::-webkit-full-page-media, :future, :root .map_img02{
	background-attachment: scroll;
	background-position: bottom center;
}


.map_wrap .txt{
	position: absolute;
	top: 55%;
	left: 10%;
}
.map_wrap .txt02{
	position: absolute;
	top: 30%;
	left: 5%;
}
@media (max-width: 960px){
	.map_img{
		height: 600px;
		mask-size: auto 100%;
	}
	.map_img02{
		mask-size: auto 100%;
		height: 600px;
	}
	.map_wrap .txt{
		top: 60%;
		left: 30px;
	}
	.map_wrap .txt02{
		top:20%; 
		left: 15px;
		max-width: calc(100% - 200px);
	}
}
@media (max-width: 750px){
	.map_wrap{
		width: 100%;
	}
	.map_img{
		height: 550px;
		mask-size: 100%;
	}
	.map_img02{
		height: 600px;
		mask-size: 100%;
	}
	.map_wrap .txt,
	.map_wrap .txt02{
		width: fit-content;
		position: relative;
		max-width: none;
	}
}
@media (max-width: 450px){
	.map_img02{
		height: 500px;
		mask-size: 100%;
	}
}

/*  ================================================== */
.services_wrap{
	width: 100%;
	position:relative;
	z-index: 2;
}
.mov_bg{
	position: relative;
	width: 100%;
	
}
.mov_wrap{
	position: sticky;
	width: 100%;
	top: 0;
	left: 0;
}
.mov_wrap video{
	width: 100%;
	height: 100vh;
	position: absolute;
	right: 0;
	top: 0;
	object-fit: cover;
	z-index: -1;
}
.mov_wrap img{
	width: 100%;
	height: 100vh;
	max-height: 1020px;
	opacity: 0.8;
	position: absolute;
	right: 0;
	top: 0;
	object-fit: cover;
	object-position: 70% 50%;
	background: #fff;
	z-index: -1;
}
.bg_gra_bottom{
	background: linear-gradient(to top, rgba(255,255,255,1) 10%, rgba(255,255,255,0) 25% 100%);
}
@media (max-width: 1680px){
	.bg_gra_bottom{
		background: linear-gradient(to top, rgba(255,255,255,1)15%, rgba(255,255,255,0) 30% 100%);
	}
}
@media (max-width: 1450px){
	.bg_gra_bottom{
		background: linear-gradient(to top, rgba(255,255,255,1)30%, rgba(255,255,255,0) 50% 100%);
	}
}
@media (max-width: 1200px){
	.bg_gra_bottom{
		background: linear-gradient(to top, rgba(255,255,255,1)40%, rgba(255,255,255,0) 60% 100%);
	}
}
.bg_gra_top::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: linear-gradient(to bottom, rgba(255,255,255,1) 30%, rgba(255,255,255,0) 100%);
}
.bg_gra_top02::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: linear-gradient(to bottom, rgba(255,255,255,1) 10%, rgba(255,255,255,0) 100%);
}

/* メールフォーム==================== */
.contents_mail{
	max-width: 960px;
	padding: 10px 10px 30px;
	margin: auto;
}
/* TEL FAX */
.phone_flex{
	display: flex;
	justify-content: center;
	max-width: 900px;
	margin: auto;
}
.phone_flex .phone{
	text-align: center;
	color: #1a1a1a;
	display: block;
	width: calc(100% - 30px);
	margin: 15px;
	padding: 1.5rem;
	border: solid 1px #ccc;
	background: #fff;
	opacity: 1;
	transition: .5s;
}
.phone_flex .phone:hover{
	opacity: 0.5;
}
.phone_flex .phone .nb{
	font-weight: 600;
	font-size: clamp(1.5rem, 1.2rem + 1.0667vw, 2rem);
	line-height: 50px;
	vertical-align: middle;
	display: block;
	color: #1a1a1a;
}
.phone_flex .phone .nb i{
	display: inline-block;
	text-align: center;
	color:  #fff;
	background:#1a1a1a ;
	vertical-align: bottom;
	line-height: 50px;
	width: 50px;
	font-size: 1rem;
	border-radius: 50%;
	margin-right: 1rem;
	transition: .5s;
}
.phone_flex .phone .txt01{
	font-size: 1.1rem;
	font-weight: 400;
	text-align: center;
	display: block;
	padding: 10px;
	margin-bottom: 1rem;
}
.phone_flex .phone .txt02{
	font-size: 1rem;
	text-align: center;
	display: block;
	margin-top: 1em;
	font-weight: 400;
	
}
.phone_flex .phone .txt03{
	font-size: 0.75rem;
	text-align: left;
	display: block;
	margin-top: 1em;
}
.phone_flex .phone ul{
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.phone_flex .phone ul li{
	font-size: 0.9em;
	font-weight: 600;
	padding: 1em 0.5em 0;
}
.phone_flex .phone ul li i{
	padding-right: 0.5em;
	color: #1a1a1a;
}
.phone_flex .phone dl{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.phone_flex .phone dl dt{
	width: 5em;
	text-align: left;
	font-size: 0.9rem;
}
.phone_flex .phone dl dd{
	margin-left: 0.5em;
}
.phone_flex .phone dl dd::before{
	content: '｜'
}


@media (max-width: 960px){
	.phone_flex{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		max-width: 500px;
	}
	.phone_flex .phone{
		padding: 1rem;
	}
	
}
@media (max-width: 750px){
	.phone_flex .phone ul{
		flex-direction: column;
		justify-content: flex-start;
	}
	.phone_flex .phone ul li{
		border-bottom: dashed 1px #ccc;
	}
}

@media (max-width: 450px){
	.phone_flex .phone{
		width: calc(100%);
		margin: 15px 0;
	}
}
#mailform{
	width: 100%;
	padding: 20px;
}
#mailform table{
	width: 100%;
	font-size: 1rem;
	border-collapse: collapse;
	border-spacing: 0;
}
#mailform table tr{
	border-bottom: solid 1px #ccc;
}
#mailform table tr:last-child{
	border-bottom:none;
}
#mailform table th{
	width: 230px;
	text-align: left;
	padding:1em 0.5em;
	vertical-align: middle;
	line-height: 120%;
	font-weight: 400;
}
#mailform table td{
	padding: 1em;
}
.flex_btn{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
}
#mailform .radio{
	padding: 0 2rem 0 0;
}
#mailform .checkbox{
	padding: 0 2rem 0 0;
}
#mailform .form_input,#mailform textarea{
	background:#fff;
	width: 100% !important;
	padding: 15px 10px;
	border: none;
}
#mailform span.form_required{
	font-size: 60%;
	font-weight: normal;
	color: #fff;
	background:#1a1a1a;
	padding: 3px 8px;
	margin-left: 0.5rem;
	border-radius: 5px;
}
input[type='submit']{
	display: block;
	width: 100%;
	max-width: 300px;
	padding: 1em;
	font-weight: 400;
	background: #fff;
	border:solid 1px #1a1a1a;
	color:#1a1a1a;
	margin: 0 auto;
	transition: .5s;
}
input[type='submit']:hover{
	background: #1a1a1a;
	color: #fff;
}
.infobox{
	margin-bottom: 30px;
}
.infobox h4{
	text-align: center;
	color: #1f1f1f !important;
	font-size: 1em !important;
	padding: 1em;
}
.infobox h5{
	color: #1f1f1f;
	margin-top: 1em;
}
.infobox h5 i{
	color: #1a1a1a;
}
.infobox p{
	font-size: 0.8em !important;
	color: #1f1f1f;
	padding: 0.5em 0;
}
.postcord{
	width:150px !important;
	margin-bottom: 5px;
	padding: 5px 10px;
	background:#f5f5f5;
	border-radius: 5px;
}
.postcord_btn{
	font-size: 0.7em;
	font-weight: 700;
	border-radius: 30px;
	background:#666;
	padding: 0.25em 1em;
	color: #fff;
}
summary{
	cursor: pointer;
	display: block;
	list-style: none;
}
summary::-webkit-details-marker {
	color: transparent;
	display: none;
}
details::before{
	display: none;
}
details[open]{
	animation: fadeIn 1s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    transform: translateY(-10px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
details summary h4::before{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: '\f067';
	padding-right: 15px;
}
details[open] summary h4::before{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: '\f068';
	padding-right: 15px;
}
.visually-hidden { /* 元のボタンを非表示にする*/
	position: absolute;
	white-space: nowrap;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%); 
	margin: -1px;
}
label.radio-label {
	cursor: pointer;
	padding-left: 30px;
	position: relative;
}

label.radio-label::before,
label.radio-label::after {
	content: "";
	display: block;
	border-radius: 50%;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
}

label.radio-label::before {
	background-color: #fff;
	border: 1px solid #ccc;
	height: 20px;
	width: 20px;
	left: 5px;
}

label.radio-label::after {
	background-color: #666;
	opacity: 0;
	height: 14px;
	width: 14px;
	left: 8px;
	transition: ease .2s;
}

input:checked + label.radio-label::after {
  opacity: 1;
}


label.check-label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}

label.check-label:before {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  width: 20px;
  height: 20px;
  top: 3px;
  border: solid 2px #ccc;
  border-radius: 3px;
  transition: all ease-in-out.5s;
}

label.check-label:after {
  content: "";
  position: absolute;
  top: 12px;
  left: 11px;
  transform: rotate(-45deg) scaleX(0);
  transform-origin: left;
  width: 12px;
  height: 6px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transition: transform 0.125s ease-in-out;
}

input:checked + label.check-label:before {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}

input:checked + label.check-label:after {
  transform: rotate(-45deg) scaleX(1);
}
@media (max-width: 960px){
	#mailform{
		padding: 10px 0;
	}
	#mailform table th,
	#mailform table td{
		display: block;
		width: 100%;
		padding: 0.5rem 0;
	}
	#mailform table td{
		padding-bottom: 1rem;
	}
	
	input[type='text'] ,input[type='date'] , textarea{
		width: 100% ;
	}
}
