@charset "utf-8";
/* CSS Document */
/********************************************************************
	layout.css
*********************************************************************/

/* clearfix */
.cf {
	zoom:1;
}
.cf:before, .cf:after {
	content: "";
	display: table;
}
.cf:after {
	clear:both;
}

/*--- リンク ---*/
a:link {
	color: #007acd;
	text-decoration: none;
}
a:visited {
	color: #121a44;
	text-decoration: none;
}
a:hover, a:active {
	color: #F7A52E;
	text-decoration: none;
}
/*-- PDFマーク --*/
.pdf::after {
  font-family: 'FontAwesome';
  content: "\f1c1";
  margin-left: 5px;
}

/*--- ページトップ ---*/
#pagetop {
	display: none;
}

/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
	/*--- ページトップ ---*/
	#pagetop {
		position: fixed;
  		bottom: 10px;
  		right: 10px;
		z-index:10;
	}
	#pagetop a {
  		display: block;
  		color: #666666;
  		width: 35px;
  		height: 35px;
  		line-height: 35px;
  		border-radius: 50%;
  		padding: 5px;
  		text-align: center;
  		background-color: rgba(214,0,15,0.9);
  		font-size: 11px;
  		transition: .2s linear;
	}
	/*--- リンク ---*/
	#pagetop a:link, #pagetop a:visited {
		background-color: #e4f0f9;
		text-decoration: none;
	}
	#pagetop a:hover, #pagetop a:active {
		color: #FFFFFF;
		text-decoration:none;
 		background-color: #b9d6ec;
	}
}
/*--- フルードイメージ ---*/
/* 拡大縮小 */
.fluidimg {
	width: 100%;
	max-width: 100%;
	height:auto;
}
/* 画像サイズ内で縮小 */
.fluidimg2 {
	width: auto;
	max-width: 100%;
	height:auto;
}

html {
	width:100%;
}
body {
	width: 100%;
  	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background-color: #FFFFFF;
  	-webkit-overflow-scrolling: touch;
}
img {
  vertical-align: bottom;
}


/*==========================================================================
	レイアウト
============================================================================*/
#wapper {
	width:100%;
	color: #000000;
	font-size: 14px;
    line-height: 1.8;
}
.sp_none {
	display:none;
}
/*-- ボタン ------------------------*/
.btnA {
  margin: 40px auto;
}
.btnA a {
  text-align: center;
  color: #FFFFFF;
  background-color: #00c000;
  line-height: 1;
  font-size: 18px;
  padding: 15px 10px;
  display: block;
  transition: .2s linear;
  position: relative;
  border-radius: 6px;
  font-weight: bold;
}
.btnA a:after {
  font-family: 'Font Awesome 5 Free';
  content: "\f0da";
  font-weight: 900;
  position: absolute;
  right: 10px;
}
/*--- リンク ---*/
.btnA a:link, .btnA a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
.btnA a:hover, .btnA a:active {
	color: #FFFFFF;
	text-decoration: none;
  background-color:#006600;
}
/*-- ボタン ------------------------*/
.btnB {
  margin: 20px 0;
}
.btnB a {
  text-align: center;
  color: #FFFFFF;
  font-weight: bold;
  background-color: #0099ff;
  line-height: 1.0;
  font-size: 16px;
  padding: 13px 30px 10px;
  display: block;
  transition: .2s linear;
  position: relative;
  border-radius: 6px;
}
.btnB a:after {
  font-family: 'Font Awesome 5 Free';
  content: "\f0da";
  font-weight: 900;
  position: absolute;
  right: 10px;
}
/*--- リンク ---*/
.btnB a:link, .btnB a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
.btnB a:hover, .btnB a:active {
	color: #FFFFFF;
	text-decoration: none;
  background-color:#006600;
}

/*--- タイトル ---*/
.titleA {
  font-size: 22px;
  color: #000000;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
  margin: 30px 0px;
  line-height: 1.4;
  font-weight: normal;
  display: block;
}
.titleA::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 66px;
  height: 6px;
  margin-left: -33px;
  background: linear-gradient(90deg, #ffff33, #9aff98);
}
/*--- タイトル ---*/
.titleB {
  font-size: 22px;
  color: #FFF;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
  margin: 30px 0px;
  line-height: 1.4;
  font-weight: normal;
  display: block;
}
.titleB::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 66px;
  height: 6px;
  margin-left: -33px;
  background: linear-gradient(90deg, #ffff33, #9aff98);
}

/*-- 三角 -------*/
.triangle{
  width: 0;
  height: 0;
  margin: 0 auto;
  border-top: 40px solid #0099ff;
  border-right: 80px solid transparent;
  border-left: 80px solid transparent;
}

/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
  #wapper {
		font-size: 15px;
  }
  .sp_none {
	  display:block;
  }
  .tb_none {
	  display:none;
  }

  /*-- ボタン --*/
  .btnA {
    width: 50%;
    margin: 40px auto;
  }
  .btnA a {
	  font-size: 22px;
  }
  /*-- ボタン --*/
  .btnB {
    width: auto;
  }
  .btnB a {
	font-size: 24px;
  }
  /*--- タイトル ---*/
  .titleA {
    font-size: 36px;
    margin: 30px 0px;
	font-weight: bold;
  }
  .titleB {
    font-size: 26px;
    margin: 30px 0px;
	font-weight: bold;
  }

}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
 #wapper {
		font-size: 16px;
  }
  .tb_none {
	  display:block;
  }
  .pc_none {
	  display:none;
  }
	/*-- ボタン --*/
  .btnA {
    width: 400px;
    margin: 50px auto;
  }
  .btnA a {
	padding: 25px 15px;
  }
  /*--- タイトル ---*/
  .titleA {
    font-size: 40px;
    margin: 50px 0px;
  }
  .titleB {
    font-size: 28px;
    margin: 30px 0px;
	font-weight: bold;
  }
}




/*==========================================================================
	ヘッダー
============================================================================*/
#header {
  width: 100%;
  /*border-bottom: 1px solid #CCCCCC;*/
  margin:0px auto;
  background-color: #FFFFFF;
}
#header #headerinnr {
  width: 100%;
  display: flex;
  height: 42px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 2vw;
  position: relative;
}
#headerinnr #logo {
  padding: 10px 5vw 0 0;
  max-width: 100px;
}
#headerinnr #logo2 {
  padding: 2px 0 0 0;
  max-width: 120px;
}
#headerinnr .headBtn {
	display: none;
}
#headerinnr .headBtn.headBtn_rpt {
	display: block;
}


  #headerinnr .headBtn.headBtn_rpt {
	    display: block;
		position: absolute;
		top: 4px;
	  	right: 4px;
  }
  #headerinnr .headBtn a {
	    font-weight: bold;
		display: block;
	    width: 110px;
		padding: 10px 15px;
		line-height: 1.0;
	  	text-align: center;
		font-size: 16px;
	    /*background:linear-gradient(to right, #00c000, #009933);*/
	    background-color: #00bd00;
		color: #FFF;
		box-sizing: border-box;
	    transition: .2s linear;
  }
    #headerinnr .headBtn.headBtn_rpt a {
	    background-color: #47a4d4;
  }

/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
  #header #headerinnr {
    height: 90px;
    margin: 0 auto;
  }
  #headerinnr #logo {
	padding: 30px 2.5vw 0 0;
    max-width: 140px;
  }
  #headerinnr #logo2 {
	padding: 30px 2.5vw 0 0;
    max-width: 200px;
  }
  #headerinnr .headBtn {
	    display: block;
		position: absolute;
		top: 25px;
	  	right: 10px;
  }
  #headerinnr .headBtn.headBtn_rpt {
	    display: block;
		position: absolute;
		top: 25px;
	  	right: 225px;
  }
  #headerinnr .headBtn a {
	    font-weight: bold;
		display: block;
	    width: 200px;
		padding: 10px 15px;
		line-height: 1.0;
	  	text-align: center;
		font-size: 16px;
	    /*background:linear-gradient(to right, #00c000, #009933);*/
	    background-color: #00bd00;
		color: #FFF;
		box-sizing: border-box;
	    transition: .2s linear;
  }
    #headerinnr .headBtn.headBtn_rpt a {
	    background-color: #47a4d4;
  }

	#headerinnr .headBtn a:hover {
		/*background:linear-gradient(to right, #009933, #00c000);*/
		background-color: #0099ff;
	}
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
  #header #headerinnr {
    height: 90px;
	max-width: 1200px;
  }
}

/*==========================================================================
	お問い合わせ
============================================================================*/
.contactArea {
  background-image:url(../img/contact_bg.png);
  background-size:cover;
  background-position:center top;
  color: #FFFFFF;
}
.contactArea .contactAreainnr {
  padding: 30px 10px;
  text-align: center;
}
.contactArea .contactAreainnr .h2-ttl {
  font-size: 26px;
  font-weight: bold;
  margin: 0px 0px 25px 0px;
  text-align: center;
}
.contactArea .contactAreainnr .tel {
  font-size: 14px;
  margin: 20px 0px;
  font-weight: bold;
  line-height: 1.4;
}
.contactArea .contactAreainnr .text1 {
  font-size: 14px;
  margin: 20px 0px;
}
.contactArea .contactAreainnr .tel a {
  color: #ffffff;
}
/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
  .contactArea .contactAreainnr .h2-ttl {
    font-size: 30px;
  }
  .contactArea .contactAreainnr .tel {
    font-size: 16px;
    margin: 10px 0px;
  }
  .contactArea .contactAreainnr .text1 {
    font-size: 16px;
    margin: 20px 0px;
  }
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
  .contactArea .contactAreainnr  {
    max-width: 1200px;
    margin: 0px auto;
  }
  .contactArea .contactAreainnr .h2-ttl {
    font-size: 48px;
  }
  .contactArea .contactAreainnr .tel {
    font-size: 36px;
    margin: 10px 0px;
  }
  .contactArea .contactAreainnr .text1 {
    font-size: 18px;
    margin: 20px 0px;
  }
}

/*==========================================================================
	フッダー
============================================================================*/
#footer {
  background-color:#EFEFEF;
  font-size: 13px;
  /*padding: 30px 0;*/
}
/*-- フッダーナビ --*/
#footer .footnav {
  font-size: 13px;
  overflow: hidden;
  border-top: solid 1px #FFF;
}
#footer .footnav li {
  list-style: none;
  width: 50%;
  box-sizing: border-box;
  float: left;
  border-bottom: solid 1px #FFF;
}
#footer .footnav li:nth-child(odd) {
  border-right: solid 1px #FFF;
}
#footer .footnav li:nth-child(even) {
}
#footer .footnav li a,
#footer .footnav li span {
  display: block;
  padding: 10px 0px;
  text-align: center;
}
/*--- リンク ---*/
#footer .footnav li a:link, #footer .footnav li a:visited {
	color: #000;
	text-decoration: none;
}
#footer .footnav li a:hover, #footer .footnav li a:active {
	color: #FFF;
	text-decoration: none;
	background-color: #007acd;
}
/*-- コピーライト --*/
#footer .copy {
  font-size: 12px;
  line-height: 1.4;
  color: #FFF;
  background-color: #00c000;
}
#footer .copyinn {
  padding: 10px 0px;
  text-align: center;
}
/*****************************************************
	320px以下【sp】
******************************************************/
@media print, screen and (max-width: 320px) {
  /*-- フッダーナビ --*/
  #footer .footnav li {
    list-style: none;
    width: 100%;
    box-sizing: border-box;
    float: left;
    border-bottom: solid 1px #FFF;
  }
  #footer .footnav li:nth-child(odd) {
    border-right:none;
  }
}
/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
  /*-- コピーライト --*/
  #footer .copy {
    line-height: 1.1;
    padding: 15px 0px;
  }
  #footer .copyinn {
  	padding: 4px 0px;
  }
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
  #footer {
	background-color: #FFF;
  }
  /*-- フッダーナビ --*/
  #footer .footnav {
    font-size: 13px;
    overflow: hidden;
    text-align: center;
    margin: 30px auto;
    max-width: 1260px;
	border:none;
  }
  #footer .footnav li {
    display:inline;
    float:none;
    border-bottom:none;
    padding: 0px 2%;
    font-size: 14px;
  }
  #footer .footnav li a,
  #footer .footnav li span {
    display:inline;
  }
  #footer .footnav li:nth-child(odd) {
    border-right:none;
  }
  /*--- リンク ---*/
  #footer .footnav li a:link {
	  color: #000;
	  text-decoration: none;
      background-color: transparent;
  }
  #footer .footnav li a:visited {
	  color: #000;
	  text-decoration: underline;
      background-color: transparent;
  }
  #footer .footnav li a:hover, #footer .footnav li a:active {
	  color: #000;
	  text-decoration: underline;
      background-color: transparent;
  }
  /*-- コピーライト --*/
  #footer .copyinn {
      max-width: 1260px;
      margin: 0px auto;
  }
}

/*==========================================================================
	セクション（共通項目）
============================================================================*/
/*****************************************************
	767px以下【sp】
******************************************************/
.secConts {
	padding: 20px 0;
}
/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
	.secConts {
		padding: 30px 0;
	}
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
	.secConts {
		padding: 50px 0;
	}
}


/*==========================================================================
	印刷用
============================================================================*/
@media print {
  #wapper {
    width: 960px;
    margin: 0 auto;
    background-image:none;
  }
}
