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

.clear{
  content: "";
  display: block;
  clear: both;
}

body{
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}

a{ text-decoration: none;}

p{ word-wrap: break-word;}

.sp{
	display: none;
}



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





header{
	position: relative;
	width: 100%;
	background-image: url("../images/top.jpg");
	background-size: 100%;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

header p.read{
	margin-left: 55%;
	margin-top: 12%;
	margin-bottom: 0;
	padding-bottom: 24%;
	font-size: 22px;
	font-weight: bold;
	font-family: "游明朝", YuMincho;
	overflow-wrap: break-word;
}



/*         スクロールナビ          */

header p.scroll{
	text-align: center;
	margin: 0 auto;
	position: absolute;
    left: 50%;
    bottom: 0;
}


header p.scroll span{
 	position: absolute;
 	top: 0;
 	left: 50%;
 	width: 46px;
 	height: 46px;
 	margin-left: -23px;
 	border: 2px solid #fff;
 	border-radius: 100%;
 	box-sizing: border-box;
}

header p.scroll span::after{
 	position: absolute;
 	top: 50%;
 	left: 50%;
 	content: '';
 	width: 16px;
 	height: 16px;
 	margin: -12px 0 0 -8px;
 	border-left: 2px solid #fff;
 	border-bottom: 2px solid #fff;
 	-webkit-transform: rotate(-45deg);
 	transform: rotate(-45deg);
 	box-sizing: border-box;
}




/*       グローバルメニュー      */

header nav.gnav ul{
	display: flex;
    align-items: center;
	text-align: right;
	font-size: 0;
	padding: 0;
}


header nav.gnav ul li{
	list-style: none;
	margin-left: 50px;
	font-size: 18px;
}

header nav.gnav ul a{
  	position: relative;
}

header nav.gnav ul a::after{
  	position: absolute;
  	left: 0;
  	bottom: 0;
  	display: block;
  	content: "";
  	width: 0%;
  	height: 2px;
  	background: #FFF;
  	transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

header nav.gnav ul a:hover::after{
  	width: 100%;
}

header nav.gnav ul li.logo a::after{
	display: none;
}

header nav.gnav ul li.sns a::after{
	display: none;
}



header nav.gnav ul li.sns{
    margin-left: -40px;
}



header nav.gnav ul li.sns img{
	width: 25%;
}


header nav.gnav ul li.logo{
	margin-right: auto;
	margin-left: 10px;
}

header nav.gnav ul li:nth-of-type(6){
	margin-left: 50px;
}

header nav.gnav ul li:nth-of-type(7){
	margin-right: 50px;
	margin-left: 30px;
}

header nav.gnav ul li a{
	color: #FFF;
	font-weight: bold;
}





header nav.gnav ul li.sns a{
	color: #FFF;
	font-weight: bold;
	background-color: #ccc;
    width: 30%;
    padding: 18px 10px 4px;
    border-radius: 50%;
}

header nav.gnav ul li.sns a .fab,
header nav.gnav ul li.sns a .far{
	font-size: 30px;
}



.toggle{ display: none;}











/* *********************************************
                     アバウト
************************************************/

article{ background-color: #f2f2f2;}


article section#about{
	width: 100%;
	background-image: url("../images/top.jpg");
	background-size: 100%;
	background-repeat: no-repeat;
	background-attachment: fixed;
	padding: 8% 0;
}


article section#about div.text{
	text-align: center;
	margin: 6% auto 1%;
	padding: 60px 40px 100px;
	width: 750px;
	background-color: rgba(255,255,255,0.8);
}


article section#about div.text h1{
	display: inline-block;
	font-size: 55px;
	font-family: 'Impact';
	margin: 50px auto 30px;
	font-weight: normal;
}


article section#about div.text p{
	line-height: 1.8em;
	font-size: 16px;
}



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

article section#about div.btn{
	width: 270px;
	height: 75px;
	border: none;
	position: relative;
	margin: 50px auto 0;
	background-color: #FFF;
}

article section#about div.btn a{
	color: #000;
	font-size: 25px;
    width: 100%;
	font-family: "游明朝", YuMincho;
}

article section#about div.btn span{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	line-height: 68px;
}
article section#about div.btn:before,
article section#about div.btn:after{
	position: absolute;
	content: "";
	right: 0;
	top: 0;
	background: #000;
	transition: all 0.3s ease;
}
article section#about div.btn:before{
	height: 0%;
	width: 2px;
}
article section#about div.btn:after{
	width: 0%;
	height: 2px;
}
article section#about div.btn:hover:before{
	height: 100%;
}
article section#about div.btn:hover:after{
	width: 100%;
}

article section#about div.btn span:before,
article section#about div.btn span:after{
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	background: #000;
	transition: all 0.3s ease;
}
article section#about div.btn span:before{
	width: 2px;
	height: 0%;
}
article section#about div.btn span:after{
	width: 0%;
	height: 2px;
}
article section#about div.btn span:hover:before{
	height: 100%;
}

article section#about div.btn span:hover:after{
	width: 100%;
}




/* *********************************************
                     事業内容
************************************************/

article section#service h2,article section#news h2,
article section#acss h2{
	position: absolute;
	font-size: 90px;
	font-weight: normal;
	font-family: 'Caveat', cursive;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

article section#service h2:first-letter,
article section#news h2:first-letter,
article section#acss h2:first-letter{ color: #64caff;}


article section#service h3,article section#news h3,
article section#acss h3{
	position: absolute;
    font-size: 20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}


article section#service{
	position: relative;
	background-color: #FFF;
	margin-top: 10%;
	padding-bottom: 2%;
}

article section#service h2{ top: -140px;}

article section#service h3{ top: 15px;}


article section#service div.s_list{
	width: 90%;
	display: flex;
	justify-content: center;
	padding-top: 120px;
	margin: 0 auto;
}

article section#service div.s_list img{
	max-width: 80%;
}

article section#service div.s_list div{
	width: 320px;
	margin: 15px;
	text-align: center;
}


article section#service div.s_list p{
	line-height: 1.8em;
	font-size: 13px;
	margin: 3% auto 0;
	word-wrap: break-word;
}


article section#service div.s_list h4{
	font-size: 20px;
    display: inline-block;
    margin: 6% auto 0;
}


article section#service div.s_list div.s_more{
	width: 200px;
	position: relative;
	border: 2px solid #7bc3ff;
	border-radius: 35px;
	line-height: 1.8em;
	padding: 22px 0;
	margin: 30px auto;
	font-size: 22px;
	font-family: "游明朝", YuMincho;
}


article section#service div.s_list div.s_more a{
	color: #000;
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	border-radius: 35px;
    background: transparent;
    -webkit-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
    background: -webkit-linear-gradient(180deg, rgba(197,236,255,0.8), rgba(153, 221, 255, 0.8), rgba(118, 209, 255, 0), rgba(80, 188, 255, 0));
    background: -webkit-linear-gradient(right, rgba(197,236,255,0.8), rgba(153, 221, 255, 0.8), rgba(118, 209, 255, 0), rgba(80, 188, 255, 0));
    background: linear-gradient(270deg, rgba(197,236,255,0.8), rgba(153, 221, 255, 0.8), rgba(118, 209, 255, 0), rgba(80, 188, 255, 0));
    background-position: 1% 50%;
    background-size: 300% 300%;
    border: none;
}

article section#service div.s_list div.s_more a:hover{
	background-color: #50bcff;
	border-radius: 35px;
	background-position: 99% 50%;
    color: #fff;
}




/**            アイコン           **/

article section#service div.s_list div.s_more a:before{
	width: 22px;
	height: 22px;
}
		
article section#service div.s_list div.s_more a:after{
	top: 0;
	right: 12%;
	left: auto;
	width: 6px;
	height: 6px;
	border-top: 2px solid #50bcff;
	border-right: 2px solid #50bcff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	background-color: transparent;
}



	
	.arrow:before,.arrow:after{
		position: absolute;
		top: 0;
		bottom: 0;
		right: 20px;
		margin: auto;
		content: "";
		vertical-align: middle;
	}

	



/* *********************************************
                     ニュース
************************************************/

article section#news{
	position: relative;
	margin: 8% auto;
	text-align: center;
}

article section#news h2{ top: -85px;}

article section#news h3{ top: 70px;}

article section#news div.news_box{
	position: relative;
	display: flex;
    justify-content: center;
	padding-top: 160px;
	margin: 0 auto;
}


article section#news div.news_box img{
	max-width: 100%;
}

article section#news div.news_box div.news_list{
	width: 300px;
	margin: 20px;
	transition: all 0.6s ease 0s;
}

article section#news div.news_box div.news_list a{
	color: #000;
}

article section#news div.news_box div.news_list:hover{
	background-color: #FFF;
	padding: 10px;
	cursor: pointer;
	transform: scale(1.1, 1.1);
}

article section#news div.news_box div.news_list h4{
	font-size: 14px;
	display: inline-block;
    margin: 5px;
	line-height: 1.5em;
	font-weight: normal;
}


article section#news p.date{ text-align: left;}

article section#news p.date span.category{
	background-color: #50bcff;
	color: #FFF;
	padding: 2px 15px;
	margin-right: 5%;
	font-size: 16px;
	font-weight: normal;
}

article section#news p.date span.day{
	font-size: 16px;
	font-weight: bold;
}

article section#news div.news_more{
	width: 250px;
    position: relative;
    background-color: #7bc3ff;
    border-radius: 35px;
    line-height: 2em;
    padding: 28px 0;
    margin: 40px auto;
    font-size: 25px;
    font-family: "游明朝", YuMincho;
}


article section#news div.news_more a{
	color: #FFF;
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	border-radius: 35px;
    background: transparent;
    -webkit-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
    background: -webkit-linear-gradient(180deg, rgba(197,236,255,0.8), rgba(153, 221, 255, 0.8), rgba(118, 209, 255, 0), rgba(80, 188, 255, 0));
    background: -webkit-linear-gradient(right, rgba(197,236,255,0.8), rgba(153, 221, 255, 0.8), rgba(118, 209, 255, 0), rgba(80, 188, 255, 0));
    background: linear-gradient(270deg, rgba(197,236,255,0.8), rgba(153, 221, 255, 0.8), rgba(118, 209, 255, 0), rgba(80, 188, 255, 0));
    background-position: 1% 50%;
    background-size: 300% 300%;
    border: none;
}

article section#news div.news_more a:hover{
	background-color: #50bcff;
	border-radius: 35px;
	background-position: 99% 50%;
    color: #fff;
}



article section#news div.news_more a:before{
	width: 22px;
	height: 22px;
}
		
article section#news div.news_more a:after{
	top: 0;
	right: 27px;
	left: auto;
	width: 6px;
	height: 6px;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	background-color: transparent;
}



/* *********************************************
                     アクセス
************************************************/

article section#acss{
	position: relative;
	background-color: #FFF;
	margin: 12% auto 0;
}

article section#acss h2{
	top: -140px;
}

article section#acss h3{
	top: 15px;
}


article section#acss div.acss_box{
	width: 80%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	padding-top: 8%;
	padding-bottom: 3%;
}

article section div.parking{
    max-width: 550px;
}

article section div.parking img{
    max-width: 100%;
}

article section div.parking p{
    font-size: 14px;
}


article section div.parking p:before{
	content: '■';
    font-size: 20px;
}

article section div.parking p:first-line{
    font-weight: bold;
	font-size: 18px;
	line-height: 2em;
}


article section div.parking p span{
    line-height: 2.2em;
	color: red;
}



article section#acss div.map{
	margin-left: 2%;
	width: 550px;
}




/* *********************************************
                     フッター
************************************************/


footer{
	background-color: #f2f2f2;
}

footer div.address{
	padding-top: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

footer div.address p{
	width: 500px;
	margin-left: 50px;
	line-height: 1.6em;
	font-size: 16px
}

footer div.address p:first-line{
	font-size: 25px;
	font-weight: bold;
	line-height: 2em;
}

footer div.contact{
    text-align: center;
    background-color: #FFF;
    margin: 2% auto 0;
	width: 260px;
	height: 70px;
	border: none;
	position: relative;
}

footer div.contact a{
	color: #000;
	font-size: calc(100vw/100);
	font-family: "游明朝", YuMincho;
}

footer div.contact span{
	text-align: right;
}

footer div.contact i.fas{
	font-weight: 600;
    font-size: 15px;
    margin-left: 50px;
    margin-right: 30px;
}


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



footer div.contact a{
	color: #000;
	font-size: 25px;
    width: 100%;
	font-family: "游明朝", YuMincho;
}

footer div.contact span{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	line-height: 68px;
}
footer div.contact:before,
footer div.contact:after {
	position: absolute;
	content: "";
	right: 0;
	top: 0;
	background: #000;
	transition: all 0.3s ease;
}
footer div.contact:before{
	height: 0%;
	width: 2px;
}
footer div.contact:after{
	width: 0%;
	height: 2px;
}
footer div.contact:hover:before{
	height: 100%;
}
footer div.contact:hover:after{
	width: 100%;
}

footer div.contact span:before,
footer div.contact span:after{
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	background: #000;
	transition: all 0.3s ease;
}
footer div.contact span:before{
	width: 2px;
	height: 0%;
}
footer div.contact span:after{
	width: 0%;
	height: 2px;
}
footer div.contact span:hover:before{
	height: 100%;
}

footer div.contact span:hover:after{
	width: 100%;
}



footer nav.banner{
	margin-top: 8%;
	background-color: #FFF;
}

footer nav.banner img{
	width: 10%;
}

footer nav.banner ul{
	padding: 0;
	margin: 0 auto;
	text-align: center;
}


footer nav.banner ul li{
	display: inline;
	list-style: none;
	margin: 0 20px;
}

footer div.footer_menu{
	background-color: #50bcff;
	text-align: center;
}




footer div.footer_menu div.top{
	width: 120px;
    position: relative;
    margin: 6% auto;
    font-size: 1vw;
    font-weight: bold;
}


footer div.footer_menu div.top a.icon{
	color: #FFF;
}



footer div.footer_menu div.top a.icon:before{
	width: 22px;
	height: 22px;
}
		
footer div.footer_menu div.top a.icon:after{
	top: 0;
	right: 0;
	left: 0;
	bottom: 40px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	background-color: transparent;
}

	

	
	
.arrow:before,.arrow:after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}



footer nav.menu{
	font-size: 1vw;
	margin-top: 30px;
	font-weight: bold;
}


footer div.footer_menu nav.menu ul{
	margin: 0 auto;
	text-align: center;
}

footer div.footer_menu nav.menu ul li{
	display: inline;
	padding: 0;
	list-style: none;
	margin-left: 2%;
}

footer div.footer_menu nav.menu ul li a{
	color: #FFF;
	font-size: 18px;
	position: relative;
	display: inline-block;
	transition: .3s;
}

footer div.footer_menu nav.menu ul a:after{
	position: absolute;
  	bottom: 0;
  	left: 0;
  	content: '';
  	width: 0;
  	height: 2px;
 	background-color: #FFF;
  	transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

footer div.footer_menu nav.menu ul a:hover:after{
  	width: 100%;
}

footer div.footer_menu nav.menu ul li.sns{
	display: none;
}





footer div.footer_menu small{
	color: #FFF;
}

footer nav.banner ul {
    padding: 20px;
    margin: 0 auto;
    text-align: center;
}

footer nav.banner ul li {
    display: inline;
    list-style: none;
    margin: 0 10px;
}

footer nav.banner img {
    width: 15%;
}
