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

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}

/*マージン*/

.mt10{
	margin-top:10px;
}

.mt20{
	margin-top:20px;
}

.mt30{
	margin-top:30px;
}

.mt40{
	margin-top:40px;
}

.mt50{
	margin-top:50px;
}

.mt60{
	margin-top:60px;
}

.mt70{
	margin-top:70px;
}

.mt80{
	margin-top:80px;
}

.mt90{
	margin-top:90px;
}

.mt100{
	margin-top:100px;
}

.mb10{
	margin-bottom:10px;
}

.mb20{
	margin-bottom:20px;
}

.mb30{
	margin-bottom:30px;
}

.mb40{
	margin-bottom:40px;
}

.mb50{
	margin-bottom:50px;
}

.mb60{
	margin-bottom:60px;
}

.mb70{
	margin-bottom:70px;
}

.mb80{
	margin-bottom:80px;
}

.mb90{
	margin-bottom:90px;
}

.mb100{
	margin-bottom:100px;
}

/*マージン*/

/*IMG*/

.img_ma{
	margin-right:auto;
	margin-left:auto;
	display:block;
	max-width: 100%;
}

img{
	max-width: 100%;
	height:auto;
}

/*IMG*/

a{
	transition:.2s;
	color:#333;
	text-decoration: none;
}

a:hover{
	color:#0599d9;
}

body{
	font-family:'メイリオ', 'Meiryo', Meiryo, YuGothic, "Yu Gothic medium", "Hiragino Sans", sans-serif;
	font-size:16px;
	line-height:1.7;
}

@media screen and (max-width:500px) {
	body{
		font-size: 14px;
	}
}

/*ハンバーガー*/
.ham_btn{
	display: none;
	justify-content: center;
	align-items: center;
	width:80px;
	height: 70px;
	position: absolute;
	top:0;
	right: 0;
	cursor: pointer;
	z-index: 11;
}

.ham_btn > div{
	position: relative;
	width:40px;
	height: 20px;
}

.ham_btn > div > span{
	display: block;
	width:100%;
	height: 2px;
	background:#000;
	transition: .3s;
}

.ham_btn > div > span:nth-of-type(1){
	position: absolute;
	top:0;
	left: 0;
	transform-origin: top right;
}

.ham_btn > div > span:nth-of-type(2){
	position: absolute;
	top:50%;
	left: 0;
	margin-top: -1px;
}

.ham_btn > div > span:nth-of-type(3){
	position: absolute;
	bottom:0;
	left: 0;
	transform-origin: bottom right;
}

.ham_open .ham_btn > div > span{
	background: #fff;
}

.ham_open .ham_btn > div > span:nth-of-type(1){
	transform: rotate(-26deg);
}

.ham_open .ham_btn > div > span:nth-of-type(2){
	opacity: 0;
	left:24px;
}

.ham_open .ham_btn > div > span:nth-of-type(3){
	transform: rotate(26deg);
}

.ham_bg{
	position: fixed;
	top:0;
	left:0;
	z-index: 11;
	width:100%;
	height: 100dvh;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: .3s;
}

.ham_open .ham_bg{
	opacity: 1;
	pointer-events: auto;
}

.ham_wrap{
	position: fixed;
	right:-250px;
	top:0;
	z-index: 12;
	width:250px;
	max-height: 100dvh;
	padding-top:0;
	transition: .4s;
	cursor: default;
	opacity: 0;
	pointer-events: none;
	padding: 60px 20px 50px;
	background: rgba(5,153,217,0.90);
}

.ham_open .ham_wrap{
	opacity: 1;
	right:0;
	pointer-events: auto;
}

.ham_box{
	width:100%;
	max-height: 100%;
	overflow-y: auto;
}

.ham_box li{
	margin-bottom: 10px;
}

.ham_box li a{
	display: block;
	color:#fff;
	background: url("images/shizuku2_w.webp") no-repeat left center;
	background-size: 12px auto;
	padding-left: 22px;
	padding-top: 2px;
}

.ham_box .h_right{
	width:100%;
	border:1px solid #fff;
	flex-wrap: wrap;
	margin-top: 30px;
}

.ham_box .h_right::before{
	width:90%;
	height: 1px;
	top:50%;
	left: 5%;
	background: #0599d9;
}

.ham_box .h_right > a{
	width:100%;
	height: 52px;
	background: #fff;
	color:#0599d9
}

.ham_box .h_right > a:hover{
	background: #0599d9;
	color:#fff;
}

.ham_box .h_right .h_mail div{
	background-image: url("images/mail.webp");
}

.ham_box .h_right .h_tel div{
	background-image: url("images/tel.webp");
}

@media screen and (max-width:1000px) {
	.ham_btn{
		display: flex;
		pointer-events: auto;
	}
}

header{
	position: fixed;
	top:0;
	left: 0;
	width:100%;
	height: 100px;
	display: flex;
	align-items: center;
	padding-left: 160px;
	padding-right: 30px;
	background: #fff;
	z-index: 20;
	transition: .2s;
}

.h_logo{
	width:96px;
	position: absolute;
	top:10px;
	left: 30px;
	transition: .2s;
}

.h_flex{
	width:100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.h_nav ul{
	display: flex;
}

.h_nav ul li{
	margin-right: 40px;
}

.h_right{
	width:400px;
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	border: 1px solid #0599d9;
	display: flex;
}

.h_right::before{
	display: block;
	content: "";
	width:1px;
	height: 60px;
	position: absolute;
	top:4px;
	left: 50%;
	background: #fff;
	transition: .2s;
}

.h_right:hover::before{
	opacity: 0;
}

.h_right > a{
	width:50%;
	height: 68px;
	display: flex;
	justify-content: center;
	align-items: center;
	color:#fff;
	background: #0599d9;
}

.h_right > a img{
	display: block;
	transition: .2s;
}

.h_right > a:hover{
	background: #fff;
	color:#0599d9;
}

.h_right > a:hover img{
	opacity: 0;
}

.h_mail > div{
	width:22px;
	margin-right: 10px;
	background: url("images/mail2.webp") no-repeat center/contain;
}

.h_tel{
	font-family:'Century Gothic Pro', 'メイリオ', 'Meiryo', Meiryo, YuGothic, "Yu Gothic medium", "Hiragino Sans", sans-serif;
	font-size: 22px;
	line-height: 1;
}

.h_tel > div{
	width:20px;
	margin-right: 5px;
	background: url("images/tel2.webp") no-repeat center/contain;
}

.h_tel > p{
	padding-top: 6px;
}
		
@media screen and (max-width:1200px) {
	header{
		padding-right: 20px;
		padding-left: 140px
	}
	
	.h_logo{
		left: 20px;
	}
	
	.h_nav ul li{
		margin-right: 30px;
	}
	
	.h_right{
		width:320px;
	}
	
	.h_tel{
		font-size: 18px;
	}
}

@media screen and (max-width:1000px) {
	header{
		pointer-events: none;
		height: 70px;
		background: none;
	}
	
	.h_flex{
		display: none;
	}
	
	.h_logo{
		width:60px;
		pointer-events: auto;
	}
}

.top_main{
	width:100%;
	height: calc( 100vh - 40px );
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: url("images/top_main.webp") no-repeat 20% center;
	background-size: cover;
	margin-bottom: 100px;
}

.top_main_text{
	display: block;
	width:auto;
	height: calc( 100vh - 200px );
	max-height: 550px;
}

.top_main_scr{
	display: block;
	width:78px;
	position: absolute;
	bottom:-35px;
	left: 50%;
	transform: translateX(-50%);
}

@media screen and (max-width:600px) {
	.top_main{
		height: calc( 100vh - 25px );
	}
	
	.top_main_text{
		height: calc( 100vh - 200px );
		max-height: 380px;
	}
	
	.top_main_scr{
		width:60px;
		bottom:-20px;
	}
}

.sec1{
	max-width: 1040px;
	margin:0 auto 100px;
	padding:0 20px;
}

.heading1{
	font-size: 30px;
	line-height: 1.3;
	text-align: center;
	margin-bottom: 30px;
}

.heading1 p:nth-of-type(2){
	font-size: 16px;
	color:#0599d9;
	font-family:'Century Gothic Pro', 'メイリオ', 'Meiryo', Meiryo, YuGothic, "Yu Gothic medium", "Hiragino Sans", sans-serif;
	margin-top: 3px;
}

.top_info_box{
	display: flex;
	align-items: flex-start;
	align-content: flex-start;
	flex-wrap: wrap;
	padding:25px;
	border-radius: 15px;
	background: #eeeeee;
	border:1px solid #eeeeee;
}

.top_info_box + .top_info_box{
	margin-top: 10px;
}

a.top_info_box:hover{
	background: #fff;
	border:1px solid #0599d9;
}

.top_info_date_wrap{
	display: flex;
	align-items: center;
	width:160px;
}

.top_info_date{
	color:#0599d9;
	margin-right: 16px;
}

.top_info_icon{
	width:34px;
	display: block;
}

.top_info_title{
	width:calc( 100% - 160px );
	min-height: 27px;
	display: flex;
	align-items: center;
	color:#333;
}

.top_info_title strong{
	font-weight: bold;
}

.top_info_title em{
	font-style: italic;
}

@media screen and (max-width:600px) {
	.top_info_box{
		padding:20px;
	}
	
	.top_info_title{
		min-height: 0;
		width:100%;
		margin-top: 5px;
	}
}

@media screen and (max-width:500px) {
	.sec1{
		margin-bottom: 80px;
	}
	
	.heading1{
		font-size: 26px;
	}
	
	.heading1 p:nth-of-type(2){
		font-size: 14px;
	}
	
	.top_info_icon{
		width:28px;
	}
}

.top_os_list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.top_os_box{
	width:31%;
}

.top_os_box_h{
	font-size: 22px;
	line-height: 1.4;
	border-bottom: 1px solid #0599d9;
	margin-bottom: 14px;
}

.top_os_box img{
	display: block;
	margin-bottom: 20px;
}

@media screen and (max-width:750px) {
	.top_os_list{
		max-width: 600px;
		margin:0 auto;
	}
	
	.top_os_box{
		width:47%;
	}
	
	.top_os_box:last-of-type{
		margin:30px auto 0;
	}
}

@media screen and (max-width:500px) {
	.top_os_list{
		justify-content: center;
	}
	
	.top_os_box{
		width:100%;
		max-width: 300px;
	}
	
	.top_os_box + .top_os_box{
		margin-top: 30px;
	}
	
	.top_os_box_h{
		font-size: 20px;
	}
	
	.top_os_box img{
		margin-bottom: 15px;
	}
}

.top_com_tbl{
	max-width: 840px;
	margin:0 auto;
}

.top_com_box{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	padding-bottom: 12px;
	border-bottom: 1px solid #cccccc;
}

.top_com_box + .top_com_box{
	margin-top: 22px;
}

.top_com_box_h{
	width:200px;
	display: flex;
	align-items: flex-start;
}

.top_com_box_h img{
	display: block;
	width:16px;
	margin-right: 10px;
}

.top_com_box_text{
	width:calc( 100% - 200px );
}

@media screen and (max-width:600px) {
	.top_com_box_h{
		width:130px;
	}
	
	.top_com_box_text{
		width:calc( 100% - 130px );
	}
}

@media screen and (max-width:500px) {
	.top_com_box_h{
		width:110px;
	}
	
	.top_com_box_h img{
		width:14px;
	}
	
	.top_com_box_text{
		width:calc( 100% - 110px );
	}
}

.google-maps {
	position: relative;
	padding-bottom: 400px;
	height: 0;
	overflow: hidden;
}

.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

footer{
	background: url("images/ft_bg.webp") repeat;
	position: relative;
	margin-top: 150px;
	font-size: 14px;
}

footer p{
	color:#fff;
}

footer a{
	color:#fff;
}

.go_top{
	display: block;
	width:78px;
	position: absolute;
	top:-70px;
	left: 50%;
	transform: translateX(-50%);
}

.go_top img{
	transition: .2s;
}

.go_top:hover img{
	transform: scale(0.9);
}

.footer{
	max-width: 1040px;
	margin:0 auto;
	padding: 60px 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-direction: row-reverse;
}

.ft_l{
	width:48%;
	display: flex;
	align-items: flex-start;
}

.ft_l img{
	display: block;
	width:88px;
	margin-right: 14px;
}

.ft_l div{
	padding-top: 6px;
}

.ft_r{
	width:48%;
	padding-top: 6px;
}

.copy_r{
	text-align: center;
	background: #000;
	padding:10px;
}

@media screen and (max-width:700px) {
	.footer{
		justify-content: center;
	}
	
	.ft_r{
		width:100%;
		text-align: center;
		margin-bottom: 40px;
	}
	
	.ft_r a{
		display: inline-block;
	}
	
	.ft_l{
		width:auto;
	}
}

@media screen and (max-width:500px) {
	footer{
		margin-top: 100px;
	}
}

@media screen and (max-width:450px) {
	.go_top{
		width:60px;
		top:-50px;
	}
	
	.footer{
		padding-bottom: 40px;
	}
	
	.ft_r{
		margin-bottom: 30px;
	}
	
	.ft_l{
		flex-wrap: wrap;
	}
	
	.ft_l img{
		width:100px;
		margin:0 auto 10px;
	}
	
	.ft_l div{
		width:100%;
		text-align: center;
	}
}

.page_wrap{
	max-width: 1060px;
	padding:10px 20px 0;
	margin:0 auto;
}

.page_title{
	width:100%;
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: url("images/page_title.webp") no-repeat 60% center;
	background-size: cover;
	color:#fff;
	border-radius: 20px;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6), 0px 0px 10px rgba(0, 0, 0, 0.6);
}

.page_title p:nth-of-type(1){
	font-size: 36px;
	line-height: 1.5
}

.page_title p:nth-of-type(2){
	font-family:'Century Gothic Pro', 'メイリオ', 'Meiryo', Meiryo, YuGothic, "Yu Gothic medium", "Hiragino Sans", sans-serif;
}

.breadcrumbs{
	display: flex;
	justify-content: center;
	font-size: 14px;
	margin: 10px 0 40px;
}

.breadcrumbs > span{
	padding:0 5px;
}

.breadcrumbs > span a{
	color:#0599d9;
	text-decoration: underline;
}

.breadcrumbs > span a:hover{
	text-decoration: none;
	color:#f90;
}

.pp_box + .pp_box{
	margin-top: 40px;
}

.pp_box_h{
	font-size: 20px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 15px;
}

.pp_ul1 li{
	position: relative;
	padding-left: 20px;
}

.pp_ul1 li::before{
	content:"・";
	display: block;
	position: absolute;
	top:0;
	left: 0;
}

.pp_box_text .pp_ul1 + p{
	margin-top: 20px;
}

@media screen and (max-width:500px) {
	.page_title{
		height: 150px;
	}
	
	.page_title p:nth-of-type(1){
		font-size: 24px;
	}
	
	.pp_box_h{
		font-size: 18px;
	}
}

/*コンタクトフォーム*/
.con_box{
	max-width:730px;
	margin:0 auto 0;
}

.con_box > p{
	font-size:14px;
	line-height:24px;
	text-align: center;
}

.con_box dl, .con_box dl dt, .con_box dl dd {
	margin: 0;
	padding: 0;
}

.con_box dl {
	background: #eee;
	width: 100%;
	margin-top:40px;
	border:1px solid #ccc;
	border-top:0;
	margin-bottom: 40px;
}

.con_box dl dt, .con_box dl dd {
	padding: 3px;
}

.con_box dl dt {
	clear: left;
	float: left;
	width: 210px;
	padding:20px 10px;
	font-size:14px;
	line-height:100%;
	border-top: 1px solid #ccc;
	border-bottom:0;
	color:#000;
}

.con_box dl dd {
	background: #fff;
	border-top: 1px solid #ccc;
	margin-left: 210px;
	min-height:55px;
	padding:8px 10px;
	position:relative;
	font-size:14px;
	text-align:left;
	line-height:100%;
	border-left: 1px solid #ccc;
}

.con_box dl .must{
	background:url(images/must.jpg) no-repeat 98% 12px #fff;
}

.con_box dl dd input[type="text"] , .con_box dl dd input[type="tel"] , .con_box dl dd input[type="email"] {
	height:36px;
	width:calc( 100% - 66px );
	border:1px solid #999;
	font-size:14px;
	padding:0 6px;
	background:#fff;
}

.con_box dl dd textarea {
	height:150px;
	width:calc( 100% - 66px );
	border:1px solid #999;
}

.con_box dl dd .w45{
	width:45% !important;
}

@media screen and (max-width:730px) {
	.con_box dl dt {
		clear: left;
		float: none;
		width: 100%;
		padding:20px 10px;
		font-size:14px;
		line-height:100%;
		border-top: 1px solid #ccc;
	}

	.con_box dl dd {
		margin-left: 0;
		min-height:auto;
		padding:14px 10px;
		border-left:0;
	}
	
	.con_box dl dd .w45{
		width:calc( 100% - 66px ) !important;
	}
	
	.con_box dl dd:first-of-type {
		border-top:1px solid #ccc;
	}
	
	.con_box dl .must{
		background:url(images/must.jpg) no-repeat 98% 18px #fff;
	}
}

.submit{
	display: block;
	width:240px;
	line-height: 1;
	padding:20px;
	border:1px solid #0599d9;
	background: #0599d9;
	color:#fff;
	font-size: 18px;
	margin:0 auto 20px;
	cursor: pointer;
	transition: .3s;
	border-radius: 10px;
}

.submit:disabled{
	background: #999 !important;
	border: 1px solid #999 !important;
	color:#fff !important;
	opacity: 0.8;
}

.submit:hover{
	background:#fff;
	color:#0599d9
}

.back{
	display: block;
	width:180px;
	line-height: 1;
	padding:14px;
	border:1px solid #999;
	background: #999;
	color:#fff;
	font-size: 18px;
	margin:0 auto;
	cursor: pointer;
	border-radius: 10px;
}

.back:hover{
	background:#fff;
	color:#999;
	transition: .3s;
}

.error{
	display: block;
	color:#fff !important;
	padding: 0 10px;
	background:#f33 !important;
	font-size:14px;
	line-height:20px;
	margin-top:6px;
}

.confirm_area dl dd {
	padding:20px 10px;
}

.confirm_area .con_n{
	display:none;
}

.confirm_area dl .must{
	background: #fff;
}
/*コンタクトフォームここまで*/

.page_link{
	pointer-events:none;
	margin-top: -120px;
	padding-top: 120px;
}

@media screen and (max-width:730px) {
	.page_link{
		pointer-events:none;
		margin-top: -70px;
		padding-top: 70px;
	}
}















