@charset "UTF-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
body{
	line-height: 1.5;
	font-size: 15px;
	color: #333;
	font-family: 'Noto Sans JP', sans-serif;
	background-color: #ffffcc;
	width: 100%;
	margin: auto;
}
/************* ヘッダー&ナビゲーション *************/
.header{
	width: 100%;
    height: auto;
	top: 0;
	left: 0;
	z-index: 9999;
	background-color: #ffffff;
}
.head-inner{
    max-width: 750px;
    margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo{
	width: 380px;
	margin-left: 15px;
}
.menu{
	position: relative;
    background-color: #067068;
    color:#ffffff;
    text-align: center;
    width: 100px;
    height: 50px;
    padding: 10px 15px;
	z-index: 999;
}
.menu p{
	font-size: 12px;
	line-height: 1;
	padding: 10px 3px 10px 0;
	margin: 0;
}
.menu::after{
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: '\f107';
    font-weight: bold;
    right:5px;
    top:35%;
    transition: 0.3s;
	font-size: 12px;
}
.menu.active::after{
    top:35%;
    transform: rotate(180deg) translateY(3px);
}
.gnav{
    position: fixed;
    z-index : 2;
    top  : 0;
    color: #fff;
    background-color: #067068;
    text-align: center;
    width: 100%;
    transform: translateY(-100%);
    transition: all 0.6s;
    max-width: 750px;
}
.gnav.active {
    opacity: 100;
    display: block;
    transform: translateX(0%);
}
.gnav ul{
    margin: 60px auto 0;
    padding: 0;
    width: 100%;
}
.gnav ul li{
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
}
.gnav ul li:hover{
    background :#ddd;
}
.gnav ul li:hover a{
    color:#067068;
}
.gnav ul li a {
    display: block;
    color: #fff;
    padding: 1.5em 0;
    text-decoration :none;
	border-bottom: 1px solid #ffffff;
}
/************* フッター *************/
footer{
	clear: both;
	width: 100%;
	padding: 10px 0px;
    text-align: center;
    background: #808080;
	text-align: center;
	color: #FFF;
}
footer .copy{
	font-size: 10px;
	line-height: 1;
	padding: 0;
	margin: 0;
}

/************* CTA *************/
.fix-navi{
    max-width: 750px;
	width: 100%;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.fix-navi-item{
    display: block;
    height: 55px;
    font-family: 'Kosugi Maru', sans-serif;
    text-align: center;
    font-size: 14px;
    color:#ffffff;
    text-decoration: none;
    line-height: 1.3;
    opacity: 1.0;
}
.fix-navi-item.tel{
	padding: 14px 0;
}
.fix-navi-item.mail{
	padding: 20px 0;
}
.fix-navi-item .fas{
    margin-right:5px;
}
.fix-navi-item span{
    font-size: 10px;
    display: block;
	color:#ffffff;
}
.fix-navi-item.tel{
    background-color: #067068;
}
.fix-navi-item.mail{
    background-color: #08bd69;
}

/*------------------------------------------------------------
	SP版
------------------------------------------------------------*/
@media screen and (max-width:960px) {
    header {
        padding: 1px 0;
      }
    
      header .inner {
        width: 90%;
        display: block;
      }
    
      header h1 {
        width: 100%;
      }
    
      header .logo {
        width: 100%;
        text-align: left;
      }
    
      .logo img {
        width: 50%;
      }
}