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

@font-face {
font-family: -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Sogoe UI", Verdana, "メイリオ", Meiryo, sans-serif;
font-family: 'Roboto', sans-serif;
font-style: normal;
font-weight: normal;
}

/*フォントサイズを変更しやすくするための設定*/
html{
    font-size: 62.5%; /*16px x 62.5% =10px*/
}

/*フォント種類・フォントカラー・フォントサイズの指定*/
body{
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Sogoe UI", Verdana, "メイリオ", Meiryo, sans-serif;
    color: #222222;
    font-size: 1.6rem;
    line-height: 1.5;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media all and (-ms-high-contrast:none){
	body{
		font-family: -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Sogoe UI", Verdana, "メイリオ", Meiryo, sans-serif;
	}
}

/* IE表示用のCSS　*/
_:-ms-input-placeholder, :root body{
  font-family: Meiryo, sans-serif;
}

/*画像のレスポンシブ対応*/
img{
  max-width: 100%;
  height: auto; 
}
a{
	color: #222222;
}
/*画面表示サイズの指定＆画面の中央表示*/
.inner{
    max-width: 1140px;
    margin: 0 auto;
}
.text-center{
    text-align: center;
}
.flex-center{
  display: flex;
  justify-content: center;
  align-items: center;
}
.pcOnly{
    display: block;
}   
.spOnly{
    display: none;
}

/*common start*/
.section{
	padding: 100px 0;
}
/*common end*/

/*header start*/
header{
	z-index: 5;
	width: 100%;
	background-color: white;
	text-align: center;
}
.header-line{
	height: 10px;
	background-color: #bfd63e;
}
.header-inner{
	padding: 10px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: white;
}
.header h1{
	width: 8%;
}
.header-contact{
	display: block;
	position: relative;
	top: 3px;
}
.header-navList li{
	margin-right: 30px;
}
.header-navList li:last-of-type{
	margin-right: 0;
	background-color: #5990CC;
	padding: 10px 40px;
	border-radius: 5px;
}
.header-navList li:last-of-type a{
	display: block;
	color: white;
	transition: 0.3s;
}
.header-navList li a{
	font-weight: bold;
}
.header-navList li a:hover{
	opacity: 0.7;
}
.is-animation{
	box-shadow: 0 0 8px gray;
}
.header-navList{
	display: flex;
	align-items: center;
}
/*header end*/

/*pageTitle start*/
.pageTitle{
	padding: 100px 0;
}
.pageTitle h1{
	font-size: 4rem;
	font-weight: bold;
	line-height: 1.7;
	letter-spacing: 5px;
	color: white;
	text-align: center;
}
/*pageTitle end*/

/*btn ボタン start*/
.btn{
	display: block;
	font-weight: bold;
	width: 300px;
	margin: 0 auto;
	padding: 10px 0;
	background-color: #fff;
	border: solid 3px #222222;
	box-shadow: 5px 5px 10px gray;
	text-align: center;
	position: relative;
	transition: 0.5s;
}
_:-ms-lang(x)::-ms-backdrop, .btn {
	padding-bottom: 5px;
}
.btn::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f054';
  font-size: 16px;
  color: #222222;
  position: absolute;
  top: 10px;
  right: 20px;
	transition: 0.3s;
}
.btn:hover{
	background-color: #222222;
	color: white;
}
.btn:hover::before{
	right: 10px;
	color: white;
}
/*btn ボタン end*/

/*page_top ページトップボタン start*/
#page_top{
  width: 80px;
  height: 80px;
  position: fixed;
  right: 30px;
  bottom: -100px;
  background: #333333;
	z-index: 2;
	border-radius: 50%;
	box-shadow: 0px 0px 10px gray;
}
#page_top a{
  position: relative;
  display: block;
  width: 80px;
  height: 60px;
  text-decoration: none;
	font-weight: bold;
	color: #fff;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 30px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -25px;
  bottom: 0;
  right: -4px;
  left: 0;
  margin: auto;
  text-align: center;
	transition: 0.3s;
}
#page_top a:hover::before{
	top: -35px;
}
#page_top a::after{
  content: '上に戻る';
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 40px;
  bottom: 30px;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
@-moz-document url-prefix() {
	#page_top a::after {
		top: 43px;
		right: -5px;
	}
}
/*page_top ページトップボタン end*/

/*area-contact start*/
.area-contact{
	background-image: url("../img/common/area_contact/img_bg@2x.png");
	background-size: cover;
}
.area-contact-header{
	text-align: center;
	margin-bottom: 80px;
}
.area-contact-header h2{
	font-size: 3.5rem;
	font-weight: bold;
	color: white;
	line-height: 1;
	letter-spacing: 3px;
	margin-bottom: 30px;
	text-shadow: 0 3px 6px rgba(0,0,0,0.16);
}
.area-contact-header p{
	font-size: 2.2rem;
	font-weight: bold;
	color: #222222;
	line-height: 1;
	letter-spacing: 3px;
}
.area-contact-tel{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 50px;
	padding: 30px 30px;
	background-color: #fff;
}
.area-contact-tel div:first-of-type{
	width: 45%;
	text-align: right;
}
.area-contact-tel div:last-of-type{
	width: 45%;
}
.area-contact-tel div:nth-of-type(2){
	width: 10%;
}
.area-contact-tel div:nth-of-type(2) span{
	display: block;
	width: 80px;
	height: 3px;
	background-color: #dedede;
	transform: rotate(-70deg);
	margin: 0 auto;
}
.area-contact-tel div:first-of-type p:first-of-type{
	font-size: 5rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 3px;
	color: #5990CC;
	margin-bottom: 10px;
}
.area-contact-tel div:first-of-type p:last-of-type{
	padding-right: 5px;
}
.area-contact-tel div:first-of-type p:first-of-type::before{
	content: url("../img/common/area_contact/tel.svg");
  display: inline-block;
	position: relative;
	top: 3px;
	left: -10px;
}
.area-contact-mailandline{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.area-contact-mailandline-item{
	box-sizing: border-box;
	width: calc( 50% - 25px );
	height: 250px;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.area-contact-mailandline-item-container{
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}
.area-contact-mailandline-item-container p{
	font-size: 2.5rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 3px;
	color: #5689C0;
	margin-bottom: 10px;
	text-align: center;
	margin-left: 20px;
}
.area-contact-mailandline-item.line .area-contact-mailandline-item-container p{
	color: #00B900;
	text-transform: uppercase;
}
.area-contact-mailandline-item-container p span{
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 1;
	letter-spacing: 3px;
	color: #222222;
	margin-bottom: 10px;
}
/*area-contact end*/

/*sidemenu start*/
.sidemenu{
	position: fixed;
	right: -50px;
	top: 50%;
	transform: translateY(-50%);
}
.sidemenu a{
	display: block;
	transition: 0.3s;
}
.sidemenu a:first-of-type{
	margin-bottom: 20px;
}
.sidemenu a:hover{
	opacity: 0.8;
}
/*sidemenu end*/

/*footer start*/
.footer{
	background-color: #f2f2f2;
}
.footer .inner{
	padding: 50px 0;
}
.footerLogo{
	width: 15%;
}
.footer-text{
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 20px;
	letter-spacing: 1px;
}
.footer nav ul{
	display: flex;
}
.footer nav ul li{
	margin-right: 50px;
}
.footer nav ul li:last-of-type{
	margin-right: 0;
}
.footer nav ul li a{
	letter-spacing: 2px;
}
.footer nav ul li a:hover{
	opacity: 0.7;
}
.footer-container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-copyright{
	background-color: #222222;
}
.footer-copyright .inner{
	padding: 20px 0;
	position: relative;
}
.footer-copyright p{
	color: white;
}
.footer-copyright p:last-of-type{
	position: absolute;
	bottom: 20px;
	right: 0;
}
/*footer end*/



@media screen and (max-width:767px){
	body{
      font-size: 1.4rem;
  }
  .inner{
      box-sizing: border-box;
      width: 100%;
      padding: 0 20px;
  }
  img{
      width: 100%;
      height: auto;
  }
  .pcOnly{
		display: none;
  }
  .spOnly{
		display: block;
  }
	
	/*共通 start*/
	.section{
		padding: 50px 0;
	}
	/*共通 end*/
	
	/*header start*/
	header{
		position: fixed;
		top: 0;
	}
	header section{
		height: 15px;
		background-color: #ccde68;
	}
	header section h1{
		font-size: 1rem;
		line-height: 15px;
		color: #222222;
	}
	.header-inner{
		box-sizing: border-box;
		width: 100%;
		height: auto;
		padding: 0;
		justify-content: center;
	}
	.headerLogo{
		box-sizing: border-box;
		width: 25%;
		position: static;
	}
	.headerLogo a img{
		width: 80%;
		margin: 0 auto;
	}
	.header-logoCatch{
		display: block!important;
	}
	.spHeader-btn{
		box-sizing: border-box;
		width: 18%;
		padding: 5px;
		font-size: 1.2rem;
		font-weight: bold;
		background-color: #bfd63e;
		letter-spacing: 1px;
		border-right: solid 1px #dedede;
	}
	.spHeader-btn.template{
		width: 21%;
	}
	.spHeader-btn.apply{
		background-color: #5990cc;
		color: white;
	}
	.navigation-item{
		background-color: #bfd63e;
	}
	/*header end*/
	
	/*pageTitle start*/
	.pageTitle{
		padding: 70px 0;
		margin-top: 46px;
	}
	.pageTitle h1{
		font-size: 2rem;
		font-weight: bold;
		line-height: 1;
		letter-spacing: 5px;
		color: white;
		text-align: center;
	}
	/*pageTitle end*/
	
	/*btn ボタン start*/
	.btn{
		box-sizing: border-box;
		width: 250px;
	}
	/*btn ボタン end*/
	
	/*pagetopBtn ページトップボタン start*/
	#page_top{
		width: 40px;
		height: 40px;
		bottom: -60px;
		right: 10px;
	}
	#page_top a::before{
		top: -26px;
		right: 38px;
		font-size: 20px;
	}
	#page_top a::after{
		content: '';
	}
	#page_top a:hover::before{
		top: -26px;
	}
	/*pagetopBtn ページトップボタン end*/

	/*ハンバーガーボタン start ※現在未使用*/
  .navigation-item{
    box-sizing: border-box;
    width: 16%;
    height: 46px;
    text-align: center;
    z-index: 3;
		padding-top: 5px;
  }  
  .navigation-item a span{
    color: #fff;
    display: block;
    font-size: 10px;
    line-height: 1;
    margin-top: 5px;
  }  
  .navigation-item .icon{
		margin: 0 auto;
    display: block;
		position: relative;
  }
	.navigation-item .icon::after{
		width: 100%;
		content: 'メニュー';
		font-size: 1.2rem;
		line-height: 1;
		letter-spacing: 0;
		position: absolute;
		top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
	}
	.navigation-item.active .icon::after{
		transform: translate(-50%, 125%);
	}
  .navigation-item .icon hr{
    border: solid 1px #353737;
    width: 20px;
    margin: 4px auto 0;
    transition: all 0.5s;
  }  
  .navigation-item.active .icon hr{
    transition: all 0.5s;
  }  
  .navigation-item.active .icon hr:first-of-type{
    transform: translateY(6px) rotate(-45deg);
  }  
  .navigation-item.active .icon hr:nth-of-type(2){
    display: none;
  }  
  .navigation-item.active .icon hr:last-of-type{
    transform: rotate(45deg);
  }
  /*ハンバーガーボタン end ※現在未使用*/
	
	/*ドロワーメニュー start ※現在未使用*/
  .drawer{
		display: block;
    box-sizing: border-box;
    width: 100vw;
    height: 100%;
    background-color: #bfd63e;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
   	transform: translateX(-100%);
    transition: 0.5S;
  }
	.drawer-inner{
		width: 100%;
		position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);		
	}
  .drawer.open{
    transform: translateX(0);
  }
	.drawer-copy{
		font-size: 1.2rem;
    width: 100%;
		margin-bottom: 20px;
		text-align: center;
		line-height: 1.5;
	}
  .drawer-nav{
    margin-bottom: 20px;
		margin-top: 50px;
  }  
  .drawer-nav ul li{
    font-size: 1.6rem;
		font-weight: bold;
    padding: 15px 20px;
    text-transform: uppercase;
		border-top: solid 1px #f2f2f2;
		text-align: left;
  }
	.drawer-nav ul li:last-of-type{
		padding: 20px 20px;
	}
	.drawer-nav ul li a{
		font-size: 1.8rem;
		font-weight: bold;
	}
	.drawer-nav ul li ul li{
		border: none;
		padding: 0;
		margin-bottom: 15px;
	}
	.drawer-nav ul li ul li:first-of-type{
		margin-top: 15px;
	}
	.drawer-nav ul li ul li:last-of-type{
		margin-bottom: 0;
		padding: 0;
	}
	.drawer-nav ul li ul li a{
		font-size: 1.5rem;
		font-weight: bold;
	}
	.drawer-nav .contact a{
		display: block;
		padding: 10px 0;
		background-color: #dd5252;
		text-align: center;
		color: white;
	}
  /*ドロワーメニュー end*/
	
	/*breadcrumbs start ※現在未使用*/
	.breadcrumbs {
		width: 90%;
		margin: 10px auto 0;
	}
	.breadcrumbs ul li{
		margin-right: 3px; 
	}
	.breadcrumbs ul li:last-of-type{
		margin-right: 0; 
	}
	.breadcrumbs ul li:first-child::before{
		font-size: 10px;
		padding: 0;
	}
	.breadcrumbs ul li::before{
		font-size: 10px;
		padding: 0;
	}
	.breadcrumbs ul li a{
		font-size: 1rem;
		letter-spacing: 0;
	}
	/*breadcrumbs end ※現在未使用*/
	
	/*area-contact start*/
	.area-contact{
		background-image: url("../img/common/area_contact/img_bg@2x.png");
		background-size: cover;
		background-position: center;
	}
	.area-contact-header{
		text-align: center;
		margin-bottom: 50px;
	}
	.area-contact-header h2{
		font-size: 2rem;
		font-weight: bold;
		color: white;
		line-height: 1.5;
		letter-spacing: 3px;
		margin-bottom: 30px;
		text-shadow: 0 3px 6px rgba(0,0,0,0.16);
	}
	.area-contact-header p{
		font-size: 1.6rem;
		font-weight: bold;
		color: #222222;
		line-height: 1;
		letter-spacing: 3px;
	}
	.area-contact-tel{
		display: block;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 20px;
		padding: 30px 10px;
		background-color: #fff;
	}
	.area-contact-tel div:first-of-type{
		width: 100%;
		text-align: center;
	}
	.area-contact-tel div:last-of-type{
		width: 100%;
	}
	.area-contact-tel div:nth-of-type(2){
		width: 100%;
	}
	.area-contact-tel div:nth-of-type(2) span{
		display: block;
		width: 50%;
		height: 2px;
		background-color: #dedede;
		transform: rotate(0);
		margin: 20px auto;
	}
	.area-contact-tel div:first-of-type p:first-of-type{
		font-size: 2.5rem;
		font-weight: bold;
		line-height: 1;
		letter-spacing: 3px;
		color: #5990CC;
		margin-bottom: 5px;
	}
	.area-contact-tel div:first-of-type p:last-of-type{
		padding-right: 5px;
	}
	.area-contact-tel div:first-of-type p:first-of-type::before{
		display: block;
		content: url("../img/common/area_contact/tel.svg");
		position: relative;
		top: 0;
		left: 0;
		margin-bottom: 15px;
	}
	.area-contact-tel-text p:first-of-type{
		text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
	}
	.area-contact-mailandline{
		display: block;
		justify-content: space-between;
		align-items: center;
	}
	.area-contact-mailandline-item{
		box-sizing: border-box;
		width: 100%;
		height: auto;
		background-color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-bottom: 20px;
		padding: 30px 0;
	}
	.area-contact-mailandline-item:last-of-type{
		margin-bottom: 0;
	}
	.area-contact-mailandline-item-container{
		display: flex;
		justify-content: center;
		margin-bottom: 25px;
	}
	.area-contact-mailandline-item-container div{
		width: 25%;
		margin-right: 15px;
	}
	.area-contact-mailandline-item-container p{
		font-size: 2.5rem;
		font-weight: bold;
		line-height: 1;
		letter-spacing: 3px;
		color: #5689C0;
		margin-bottom: 10px;
		text-align: center;
		margin-left: 0;
	}
	.area-contact-mailandline-item.line .area-contact-mailandline-item-container p{
		color: #00B900;
		text-transform: uppercase;
	}
	.area-contact-mailandline-item-container p span{
		font-size: 1.4rem;
		font-weight: normal;
		line-height: 1;
		letter-spacing: 3px;
		color: #222222;
		margin-bottom: 10px;
	}
	/*area-contact end*/

	/*footer start*/
	.footer{
		background-color: #f2f2f2;
	}
	.footer .inner{
		padding: 50px 0 40px;
	}
	.footerLogo{
		width: 15%;
	}
	.footer-container{
		display: block;
		justify-content: space-between;
		align-items: center;
		text-align: center;
	}
	.footerLogo{
		width: 30%;
		margin: 0 auto 30px;
	}
	.footer-text{
		font-size: 1.6rem;
		font-weight: bold;
		margin-bottom: 0;
	}
	.footer nav ul{
		display: block;
	}
	.footer nav ul li{
		margin-right: 0;
		margin-bottom: 20px;
	}
	.footer nav ul li:last-of-type{
		margin-bottom: 0;
	}
	.footer nav ul li a:hover{
		opacity: 0.7;
	}
	.footer-copyright{
		background-color: #222222;
	}
	.footer-copyright .inner{
		padding: 20px;
		position: relative;
	}
	.footer-copyright p{
		color: white;
	}
	.footer-copyright p:last-of-type{
		position: static;
		bottom: 20px;
		right: 0;
		margin-top: 10px;
	}
	/*footer end*/
  
}












