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

/* ヘッダー　================================================== */

header{
	position: relative;
	width: 100%;
	z-index: 999;
}
.site-header{
	background:rgba(255,255,255,0.0);
    display: flex;
    position: fixed;
    justify-content: space-between;
	align-items:center;
    width: 100%;
	height: 110px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.0);
	transition: .5s;
}

.site-header h1{
	vertical-align: middle;
	position: relative;
	transition: .5s;
	margin-left: 30px;
}
.site-header h1 img{
	width: auto;
	width: 450px;
	vertical-align: middle;
	filter: grayscale(100%) invert(100%) brightness(300%);
	transition: .5s;
	
}
.site-header h1 a{
	color: #fff;
	transition: .5s;
}
.site-header.transform h1 img{
	filter: none;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}

@media (max-width: 1200px){
	.site-header{
		height: 80px;
	}
	.site-header h1 img{
		width: 400px;
	}
	.top_nav{
		display: none;
	}
}
@media (max-width: 960px){
	.site-header h1{
		margin-left: 10px;
	}
}
@media (max-width: 750px){
	.site-header h1 img{
		width: 360px;
	}
}
@media (max-width: 450px){
	.site-header h1 img{
		width: 360px;
		max-width: calc(100% - 100px);
	}
}
/* FV　================================================== */
.slide_wrap{
	width: 100%;
	position: relative;
	overflow: hidden;
}
.slider{
	overflow: hidden;
}
.slider::after{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	background: linear-gradient(rgba(0,0,0,0.05) 10%,rgba(0,0,0,0.05)) ;
}
.slider li{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	min-height: 650px;
	max-height: 1080px;
	z-index: 9;
	overflow: hidden;
}
.slider li.top01{
	background:url("../img/photo02.webp") no-repeat;
	background-size: cover;
	background-position: center;
}
.slider li.top02{
	background:url("../img/photo01.webp") no-repeat;
	background-size: cover;
	background-position: center;
}
.slider li.top03{
	background:url("../img/photo03.webp") no-repeat;
	background-size: cover;
	background-position: center;
}

@keyframes fadezoom{
	0%{
		transform: scale(1);
	}
	100%{
		transform: scale(1.1);
	}
}
.add-animation{
	animation: fadezoom 10s 0s forwards;
}
.slide_wrap .copy{
	position: absolute;
	bottom: 15%;
	left: 8%;
	z-index: 11;
}

.slide_wrap .copy h2{
	font-size: clamp(2rem, 0.65rem + 4.8vw, 5rem);
	color: #fff;
	font-family: fot-chiaro-std, sans-serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1;
}
.slide_wrap .copy h2 .wrap{
	display: block;
	margin-bottom: 15px;
	background-color: #fff;
	padding: 0.25em 0.5em;
	clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 99%);
}
.slide_wrap .copy h2 .in{
	background-image: linear-gradient(to right , #00a1e4, #00daa2);
    background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

@media (max-width: 768px){
	.slider{
		height: 90vh;
		min-height: 600px;
		max-height: 900px;
	}

}
/* コンテンツ
   ========================================================================== */
.card001{
	display: flex;
	align-content: flex-start;
	justify-content: flex-start;
	gap:30px;
}
.card001 .inner{
	width: 100%;
	padding: 30px;
	position: relative;
	background-color: #fff;
	box-shadow: 2px 2px 15px rgba(0,0,0,0.1);
}
.card001 .inner img{
	width: 100%;
	margin-block: 15px;
}
.card001 ul.border01{
	font-size: 0.9rem;
	margin-inline: 1rem;
}

@media (max-width: 1200px){
	.card001{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-inline: auto;
		max-width: 600px;
	}
}

.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 .video video{
	width: 100%;
	aspect-ratio: 16 / 9;
}
.card002 .video iframe{
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 15px;
}
.card002 .img_f{
	display: flex;
	justify-content: space-between;
}
.f_in{
	width: 50%;
	padding: 15px;
}
.f_in img{
	width: 100%;
	aspect-ratio: 9 / 16;
	object-fit: cover;
}

.card003{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.card003 .img{
	width: 300px;
	align-self: center;
}
.card003 .img img{
	width: 100%;
}
.card003 .txt{
	width: 100%;
	flex: 1;
	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;
	}
	.card003 .img{
		width: 100%;
		max-width: 500px;
	}
	.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%;
}


/* フッターコンタクト　================================================== */
.bg_contact{
	background: linear-gradient(rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.5) 100%),
		url("../img/img04.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: #fff
}

/*Safariのみ*/
::-webkit-full-page-media, :future, :root .bg_contact{
	background-attachment: scroll;
}

.footer_contact{
	display: flex;
	justify-content: center;
	text-align: center;
	max-width: 960px;
	margin-inline: auto;
}
.footer_contact .phone{
	color: #fff;
	font-weight: 400;
	display: block;
	width: calc(100% - 30px);
	margin: 15px;
	padding: 1.5rem;
	border: solid 1px #fff;
	line-height: 100%;
	background: rgba(0,0,0,0.0);
	transition: .5s;
}
.footer_contact .phone .txt{
	font-size: 1rem;
	text-align: center;
	display: block;
	line-height: 120%;
}
.footer_contact .phone .nb{
	font-family: fot-chiaro-std, sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: clamp(1.3rem, 1.165rem + 0.48vw, 1.6rem);
	line-height: 120%;
}
.footer_contact .phone:hover{
	background: rgba(0,0,0,0.6);
	color: #fff;
}
@media (max-width: 960px){
	.footer_contact{
		flex-direction: column;
	}
}

/* フッター部分　================================================== */
footer{
	margin-bottom: 0;
	padding: 70px 10px 0;
	background: #fff;
	color: #1a1a1a;
}
footer h2 img{
	width: 350px;
}
.footer_wrap{
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-direction: column;
	max-width: 960px;
	padding: 0 10px;
	margin:auto;
}
.footer_in{
	width: 100%;
	max-width: 960px;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content:center;
	align-items: center;
}

.footer_in p{
	text-align: center;
}
.cut_footer{
	width: 150px;
	padding: 15px;
}

footer p.copyright{
	font-size: 0.9rem;
	text-align: center;
	padding: 15px;
	border-top: solid 1px #ccc;
}
@media (max-width: 960px){
	.footer_wrap{
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	
}
@media (max-width: 750px){
	footer h2{
		text-align: center;
	}
	footer h2 img{
		width: calc(100% - 60px);
	}
}



/* サブページタイトル 
   ========================================================================== */
.subtitle{
	display: block;
	width: 100%;
	height: 450px;
	background-size: cover;
	background-color: #ccc;
	position: relative;
}
.subtitle h2{
	color:#fff;
	position: absolute;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
	font-size:1.2em;
	text-transform: uppercase;
	padding-bottom: 5px;
	text-align: center;
}
.subtitle h2 span.en{
	font-size: clamp(2.5rem, 1.1446rem + 4.8193vw, 5rem);
	vertical-align: top;
	font-family: fot-chiaro-std, sans-serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1.2;
}

.sub_bg{
	background: linear-gradient(to right, rgba(0,161,228,0.5), rgba(0,218,162,0.5)),url("../img/img09.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: #ccc;
}
@media (max-width: 960px){
	.subtitle{
		height: 350px;
	}
	.subtitle h2{
		width: 100%;
	}
}

/*パンくずリスト ================================================== */
.breadcrumb {
	list-style: none;
	position: absolute;
	bottom: 1em;
	right: 1em;
	padding: 3px 5px;
	font-size: 0.9em;
}

.breadcrumb li {
	display: inline;
	list-style: none;
	line-height: 100%;
	color: #fff;
}

.breadcrumb li:after {
	content: '|';
	padding-left: 0.5em;
	color: #fff;
}

.breadcrumb li:last-child:after {
	content: '';
}

.breadcrumb li a {
	text-decoration: none;
	color: #fff;
}

.breadcrumb li a:hover {
	text-decoration: underline;
}


/* カルーセル============================================================ */
.carousel_wrap{
	width: 100%;
	margin: auto;
}
.carousel {
	width:100%;
	margin: 50px auto;
}
.carousel .inner {
	overflow: hidden;
	padding: 15px;
}
.carousel .inner img {
	display: block;
	aspect-ratio: 4 / 3;
	border-radius: 15px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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

/* 開閉BOX ============================================================ */
.accordion .wrap{
	padding: 15px 0;
}
.accordion .ac_inner{
	display: none;
	padding: 15px 15px 50px;
}
.accordion .ac_open{
	padding: 15px;
	background: #00a1e4;
	position: relative;
	cursor: pointer;
	color: #fff;
}
.accordion .ac_open h3{
	font-size: 1.2rem;
}
.accordion .ac_open::before{/* 閉じている時 */
	content: "＋";
	position: absolute;
	right: 20px;
}
.accordion .ac_open.active::before{/* 開いている時 */
	content: "－";
}
/* 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;
	}
}
/* sticky ============================================================ */
/* 箱 */
.list_wrap{
	display: flex;
	justify-content: center;
	align-content: center;
	padding: 20px 0;
	position: relative;
}
.list_main{
	padding: 10px;
	flex: 1;
}
.list_main .scroll-point{
	width: 100%;
	margin: auto;
	margin-bottom: 50px;
}
.list_side .scrollwrap{
	position: sticky;
	top: 140px;
	width: 100%;
	max-width: 200px;
	height: auto;
	z-index: 10;
	
}
.list_side .scrollwrap::-webkit-scrollbar{
	background: #ccc;
	width: 2px;
	height: 2px;
}
.scrollwrap.wide{
	display: block;
}
.scrollwrap.mb{
	display: none;
}
@media (max-width: 960px){
	.list_wrap{
		flex-direction: column;
		
	}
	.scrollwrap.wide{
		display: none;
	}
	.scrollwrap.mb{
		display: block;
		position: sticky;
		top: 90px;
		width: 100%;
		z-index: 10;
		background: #000;
	}
}
@media (max-width: 960px){
	.list_wrap{
		padding: 0;
	}
	.list_main{
		padding: 0;
	}
}

/* 中身　サイドメニュー */
.scrollwrap h3{
	color: #438540;
	font-weight: 500;
	font-size: 1.2rem;
}
.scrollwrap ul li{
	margin-bottom: 1em;
	border-bottom: dashed 1px #5cb758;
}
.scrollwrap ul{
	margin-inline: 10px;
}
.scrollwrap ul li a{
	color: #fff;
	font-size: 0.9rem;
}
.scrollwrap ul li a i{
	color: #5cb758;
}

@media (max-width: 1200px){
	.scrollwrap ul li a{
		font-size: 0.8rem;
	}
}
@media (max-width: 960px){
	.scrollwrap.mb ul{
		display: flex;
		justify-content: flex-start;
		gap:15px;
	}
	.scrollwrap ul{
		margin-inline: 0;
	}
}

/* TEL FAX */
.phone_flex{
	display: flex;
	justify-content: center;
	max-width: 1200px;
	margin: auto;
}
.phone_flex .phone{
	text-align: center;
	color: #1a1a1a;
	display: block;
	width: calc(100% - 30px);
	margin: 15px;
	padding: 1.5rem;
	background: #fff;
	opacity: 1;
	transition: .5s;
}
.phone_flex .phone:hover{
	opacity: 0.5;
}
.phone_flex .phone .nb{
	font-family: fot-chiaro-std, sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: clamp(1.5rem, 1.2rem + 1.0667vw, 2rem);
	line-height: 50px;
	display: block;
	color: #00a1e4;
}
.phone_flex .phone .nb i{
	display: inline-block;
	text-align: center;
	color:  #fff;
	background:#00a1e4 ;
	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: 500;
	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: center;
	margin-top: 1em;
}
.phone_flex .illust img{
	width: 150px;
	display: block;
	margin: 15px 0 0 auto;
}
.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: #00a0e9;
}
.phone_flex .phone dl{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	font-weight: 500;
	margin-bottom: 0.5rem;
}
.phone_flex .phone dl dt{
	width: 5em;
	text-align: left;
	font-size: 0.9rem;
}
.phone_flex .phone dl dd{
	flex: 1;
	font-size: 0.9rem;
	text-align: left;
	text-indent: -1rem;
	margin-left: 1rem;
}
.phone_flex .phone dl dd::before{
	content: '｜'
}
.dl_wrap{
	margin-top: 15px;
	margin-left: 15px;
}

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

@media (max-width: 450px){
	.phone_flex .phone{
		width: calc(100%);
		margin: 15px 0;
	}
}
/* メールフォーム==================== */

#mailformpro{
	width: 100%;
	padding: 20px;
}
#mailformpro table{
	width: 100%;
	font-size: 1rem;
	border-collapse: collapse;
	border-spacing: 0;
}
#mailformpro table tr{
	border-bottom: solid 1px #ccc;
}

#mailformpro table th{
	width: 250px;
	text-align: left;
	padding:1em 0.5em;
	vertical-align: middle;
	line-height: 120%;
	font-weight: 600;
}
#mailformpro table td{
	padding: 1em;
}
.flex_btn{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
}
#mailformpro .radio{
	margin-right: 2em;
	margin-bottom: 0.5rem;
	border-bottom: dashed 1px #ccc;
}
#mailformpro .checkbox{
	margin-right: 2em;
	margin-bottom: 0.5rem;
	border-bottom: dashed 1px #ccc;
}
#mailformpro .form_input,#mailformpro textarea{
	background:#f5f5f5;
	color: #666;
	width: 100% !important;
	padding: 15px 10px;
	border: none;
}
#mailformpro textarea{
	min-height: 250px !important;
}
#mailformpro .form_input.mini{
	width: 150px !important;
}
#mailformpro span.form_required{
	display: inline-block;
	font-size: 60%;
	font-weight: normal;
	color: #fff;
	background-image: linear-gradient(to right , #00a1e4, #00daa2);
	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-image: linear-gradient(to right , #00a1e4, #00daa2);
	color:#fff;
	border-radius: 50px;
	background-size: 200%;
	background-position: left;
	margin: 0 auto;
	transition: .5s;
}
input[type='submit']:hover{
	background-position: right;
}
input[type='radio']{
	accent-color: #00a1e4;
	cursor:pointer
}

input[type='checkbox']{
	accent-color: #00a1e4;
	cursor:pointer
}
input[type='file']{
	width: 100%;
	margin-bottom: 0.6em;
}
label {
  cursor: pointer;
}
::placeholder{
	color: #999;
}
.cp_ipselect {
	overflow: hidden;
	width: 100%;
}
.cp_ipselect select {
	color: #666;
	width: 100%;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}

.cp_ipselect.cp_sl01 {
	background-color: #f5f5f5;
	position: relative;
	padding: 0.5rem;
}
.cp_ipselect.cp_sl01::before {
	position: absolute;
	top: 50%;
	right: 0.9em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666666;
	pointer-events: none;
}
.cp_ipselect.cp_sl01 select {
	padding: 8px 38px 8px 8px;
	color: #666666;
}
.cp_ipselect select option{
	padding: 0.5rem;
}
.infobox{
	margin-bottom: 30px;
}
.infobox h4{
	text-align: center;
	font-size: 1em !important;
	padding-bottom: 1em;
}
.infobox h5{
	font-weight: 500;
	margin-top: 1em;
}
.infobox h5 i{
	color: #00a1e4;
}
.infobox p{
	font-size: 0.8em !important;
	padding: 0.5em 0;
}
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;
}

@media (max-width: 960px){
	#mailformpro{
		padding: 10px 0;
	}
	#mailformpro table th,
	#mailformpro table td{
		display: block;
		width: 100%;
		padding: 1rem 0 0.5rem;
	}
	#mailformpro table td{
		padding-bottom: 1rem;
	}
	
	input[type='text'] ,input[type='date'] , textarea{
		width: 100% ;
	}
	#mailformpro .radio,#mailformpro .checkbox{
		margin: 0 0 0.5rem 1rem;
	}
}
