/* COMMON ================================================================================*/
@import url('../css/reset.css');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;700&display=swap');


body {
    display: flex;
    height: 100vh;
    justify-content: center;
	font-family: 'IBM Plex Sans JP', sans-serif,'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
    min-width: 1250px!important;
    background-image:url("../img/bg_main.png"),
    linear-gradient(150deg,
    rgba(105,132,173,1) 0%,
    rgba(44,82,140,1) 21%,
    rgba(0,46,116,1) 100%
    );
    background-repeat: no-repeat;
    background-position: -200px center,left center;
    background-size: 110%,contain;
    padding: 50px 0; 
    box-sizing: border-box;
	}

@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
	}

@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
	}



html{height: 100%;}

p{
	font-size: 18px;
	color: #333;
	line-height: 1.6;
	margin: 0;
	padding: 0;
	}

p a{
	display: inline;
	text-decoration: none;
	}
p a:hover{
    text-decoration: underline;
	}

small{
	font-size: 80%;
	}

img{
	width: 100%;
	display: block;
	}

a{
	display: block;
	color: #333;
	overflow:hidden!important;
	outline:none!important;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0)!important;
	text-decoration:none;
	transition-duration: .3s;
	}
a:hover{
	outline:none!important;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0)!important;
	transition-duration: .3s;
	}
a:focus{
	outline:none!important;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0)!important
	}

address{
	color: #FFF;
    font-size: 18px;
	line-height: 1.4;
    font-style: normal;
	}

h1,
h2,
h3{
	margin: 0;
	}

section{
    width: 100%;
    }

main{
    width: 500px;
    margin-right: 50px;
    }


/* FOOTER --------------------------------------------------- */
footer{
    width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    }
footer p,
footer a,
footer address{
    color: #FFF;
    }

.ftUp{}
.ftUp .tel{
    margin: 5px 0;
    }
.ftUp .mail{
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
    }
.ftUp .mail:hover{
    text-decoration: underline;
    }
.ftUp .mail::before{
    display: inline-block;
    content: "";
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-image: url("../img/icon_mail.png");
    width: 1.2em;
    height: 1.2em;
    margin: -0.2em 0.5em 0 0;
    }


.ftBtm .visit{
	font-size: 16px;
    text-align: right;
	}
.ftBtm .copy{
	font-size: 14px;
    text-align: right;
	}



/* HELPER --------------------------------------------------- */

/* PAGE ================================================================================*/

.bfIcon::before{
	display: inline-block;
	content: "";
	background-size: contain;
	vertical-align: middle;
	background-repeat: no-repeat;
	margin-left: -1em;
	width: 1em;
	height: 1em;
	margin: -.3em .5em 0 0;
	/* background-image: url(""); */
	}
.afIcon::after{
	display: inline-block;
	content: "";
	background-size: contain;
	vertical-align: middle;
	background-repeat: no-repeat;
	}

/* index.html --------------------------------------------------- */
.title01{
    color: #FFF;
    font-size: 30px;
    font-weight: bold;    
    }
.title02{
    display: flex;
    align-items: center;
    color: #FFF;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 40px;
    }
.title02::after{
    content: "";
    flex-grow: 1;
    border-bottom: #FFF 1px solid;
    margin-left: 20px;
    }

.dlBtn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255,255,255,0.8);
    padding: 10px 20px;
    margin: 20px 0 40px;
    border-width: 1px;
    border-color: transparent;
    border-style: solid;
    }
.dlBtn:hover{
    background-color: rgba(255,255,255,0.4);
    border-color: #FFF;
    }

.dlBtn p:nth-child(1){
    color: #2c528c;
    font-size: 24px;
    font-weight: bold;
    }
.dlBtn p:nth-child(1)::before{
    display: inline-block;
    content: "";
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-image: url("../img/icon_doc.png");
    width: 1em;
    height: 1em;
    margin: -0.2em 0.5em 0 0;
    }

.dlBtn p:nth-child(2){
    color: #2c528c;
    font-size: 18px;
    }

    
/* Media QuelikeTblry ================================================================================*/
.sp{display: none;}
.pc{display: inline-block;}


@media only screen and (max-width: 479px){
	.pc{display: inline-block;}
}

@media only screen and (min-width: 480px) and (max-width: 599px) {
	.pc{display: inline-block;}
	
}

@media only screen and (max-width : 599px) {
	.sp{display: inline-block;}
	.pc{display: none;}
	
	body{
        flex-direction: column;
        justify-content: flex-start;
        min-width:inherit!important;
        height: 100%;
        background-position: 80% 200%, center;
        background-size: 200%, cover;
        padding: 10% 0;
        background-attachment: fixed
        }
	
    p,
    address{
        font-size: 4.5vw;
        }
    
	main{
		width: 94%;
		padding: 0;
		margin: 0 auto 10%;
		}
    
	
	/* footer */
    footer{
        width: 94%;
        margin: 0 auto;
        }
    
    .ftUp .tel{
        margin: 2% 0;
        }
    .ftUp .mail{
        font-size: 5vw;
        margin: 10% 0 20%;
        }
    
    .ftBtm .couter{
        font-size: 4vw;
        }
    .ftBtm .copy{
        font-size: 3.5vw;
        margin: 5% 0 10%;
        }

    
	/* index.html */
	 .title01{
        font-size: 6vw;
        margin-bottom: 5%;
        }
    .title02{
        font-size: 4.5vw;
        margin-bottom: 5%;
        }
    .title02::after{
        margin-left: 4%;
        }
    
    .dlBtn{
        padding: 4% 4%;
        margin: 0 0 10%;
        }
    .dlBtn p:nth-child(1){
        font-size: 6vw;
        }
    .dlBtn p:nth-child(2){
        font-size: 4vw;
        }
    
}

@media only screen and (max-width : 992px){
	body{min-width: 1100px;}
	
}


@media print, only screen and (min-width:1351px){
	body{min-width: 1100px;}
	
}