@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
/* CSS Document */
/*===================================================
	共通CSS（PC/SMP）
===================================================*/
/*////////////////////////////////////////////////////////////
	共通設定
///////////////////////////////////////////////////////////*/
/* --------------------------------------------------
	base
-------------------------------------------------- */
* {
  box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html,
body {
  width: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  color: #313131;
  font-size: 16px;
  background: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

.txt {
  line-height: 2.5;
}

/*リンク */
a {
  color: #313131;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* 画像幅 */
img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* clearfix */
.clearfix::after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.spBreak {
  display: none;
}

@media (min-width: 1025px) {
  a {
    transition: 0.6s;
  }

  a:hover {
    opacity: 0.6;
  }
}
/* --------------------------------------------------
	header
-------------------------------------------------- */
@media (min-width: 1025px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }
  .header .headTop {
    padding: 10px;
    background: #ffffff;
  }
  .header .headWrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
  }
  .header .headTxt p {
    display: inline;
  }
  .header .headTxt .em {
    color: #c21920;
  }
  .header .logoTxt {
    margin: 10px 0 0;
  }
  .header .logoTxt a {
    display: inline-block;
    /*font-size: 34px;*/
    font-size: 23.8px;
    line-height: 1;
  }
  .header .logo {
    position: absolute;
   /* top: 10px;
    left: 0;
    right: 0;
    width: 140px;*/
    top: -14px;
    left: 0;
    right: 0;
    width: 243px;
    margin: 0 auto;
  }
  .header .rightBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 440px;
  }
  .header .rightBox .telBox {
    width: 53%;
  }
  .header .rightBox .telBox .dl {
    padding: 0 0 0 25px;
    font-size: 12px;
    font-weight: 500;
  }
  .header .rightBox .telBox .dl .dt {
    display: inline-block;
    margin: 0 2px 0 0;
    padding: 0 5px;
    color: #ffffff;
    background: #131315;
  }
  .header .rightBox .telBox .dl .dd {
    display: inline-block;
  }
  .header .rightBox .telBox a {
    display: inline-block;
    padding: 0 0 0 25px;
    font-size: 28px;
    line-height: 1.2;
    background: url(https://grepika.jp/system_panel/uploads/images/header_tel.png) left center no-repeat;
    background-size: 20px auto;
  }
  .header .rightBox .recruitBox {
    width: 45%;
  }
  .header .rightBox .recruitBox .btnPrimary a {
    padding: 5px 10px;
    font-size: 20px;
  }
  .header .sideBnr {
    position: fixed;
    right: 0;
    /*left: 0;
    bottom: 25%;
    width: 80px;*/
    bottom: 2%;
    width: 80px;

  }
  .header .sideBnr a {
    display: block;
  }
  .header .humberger {
    display: none;
  }
}
@media(min-width: 1560px){
   .header .sideBnr {
    position: fixed;
    right: 0;
    /*bottom: 25%;*/
    bottom: 2%; 
    width: 80px;
  }
}
/* --------------------------------------------------
	nav
-------------------------------------------------- */
@media (min-width: 1025px) {
  .navBox {
    background: #033d65;
  }
  .navBox .navList {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .navBox .navList .ul {
    display: table;
    width: 45%;
  }
  .navBox .navList .ul + .ul {
    width: 40%;
  }
  .navBox .navList .ul > .li {
    overflow: hidden;
    position: relative;
    display: table-cell;
  }
  .navBox .navList .ul > .li > a {
    display: block;
    padding: 20px 0 20px 15px;
    color: #ffffff;
    background: url(https://grepika.jp/system_panel/uploads/images/header_nav_arrow.png) left center no-repeat;
    background-size: 5px auto;
  }
  .navBox .navList .subList {
    position: absolute;
    top: 40px;
    left: 10px;
    width: 200px;
    height: 0;
    padding: 0;
    opacity: 0;
    z-index: -1;
    border-top: 5px solid #0c4b90;
    border-left: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
    transition: 0.6s;
  }
  .navBox .navList .subList a {
    display: block;
    padding: 20px 10px;
    text-align: center;
    background: #ffffff;
  }
  .navBox .navList .subList a:hover {
    opacity: 1;
    background: #0c4b90;
  }
  .navBox .navList .subList a:hover p {
    color: #ffffff;
  }
  .navBox .navList .pulldown:hover {
    overflow: visible;
  }
  .navBox .navList .pulldown:hover .subList {
    top: 60px;
    height: auto;
    opacity: 1;
    z-index: 9999;
  }
  .navBox .spNav,
.navBox .navItem {
    display: none;
  }
}
/* --------------------------------------------------
	main
-------------------------------------------------- */
.main {
  overflow: hidden;
  /*margin: 154px 0 0;*/
  margin: 142px 0 0;
}

.secWrap {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 10px;
}

.secWrap01 {
  max-width: 1220px;
  /*max-width:1377px;*/
  margin: 0 auto;
  padding: 0 10px;
}

.secWrap02 {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 10px;
}

.pageKvPanel {
  background: url(https://grepika.jp/system_panel/uploads/images/page_kv_01.png) center no-repeat;
  background-size: cover;
}
.pageKvPanel .kvWrap {
  max-width: 1500px;
  margin: 0 auto;
  /*padding: 150px 10px;*/
  padding: 50px 17px
}

.pageKvPanel .kvTtl {
  font-size: 60px;
}

.pageSecTtlBox {
  /*margin: 0 0 60px;*/
  margin: 0 0 22px;
  text-align: center;
}
.pageSecTtlBox p {
  font-size: 20px;
  color: #1777c1;
}
.pageSecTtlBox h2 {
  font-size: 40px;
}

.mapBox {
  position: relative;
  width: 100%;
  height: 0;
  padding: 0 0 45%;
}
.mapBox iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.videoBox {
  position: relative;
  width: 100%;
  height: 0;
  padding: 0 0 25%;
}
.videoBox iframe,
.videoBox video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.btnPrimary {
  max-width: 400px;
  margin: 0 auto;
}
.btnPrimary a {
  position: relative;
  display: block;
  padding: 13px 10px;
  font-size: 34px;
  color: #ffffff;
  text-align: center;
  line-height: 1;
  border-radius: 30px;
  border: 3px solid #68ade0;
  background-color: #5c87de;
  background-image: linear-gradient(180deg, #5c87de 0%, #79a8e0 50%, #88b8e0 100%);
  box-shadow: 0 3px 0 #68ade0;
}
.btnPrimary a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 96%;
  height: 55%;
  margin: 0 auto;
  border-radius: 30px;
  background: #e5ebfa;
  background-image: linear-gradient(180deg, #e9eefb 0%, #79a8e0 100%);
}
.btnPrimary a p {
  position: relative;
  z-index: 3;
}
@media (min-width: 1025px) {
  .btnPrimary a:hover {
    opacity: 1;
    box-shadow: none;
    transform: translateY(3px);
  }
}

.btnSecondary {
  max-width: 400px;
}
@media(min-width:1025px){
	.topMain .sec02 .secWrap01 .btnSecondary{
	    margin-left: 461px;
	}
}
.btnSecondary a {
  position: relative;
  display: block;
  padding: 10px;
  font-size: 22px;
  color: #ffffff;
  text-align: center;
  background: #1777c1;
  background-image: linear-gradient(90deg, #1777c1 0%, #1777c1 70%, #4290cc 100%);
  box-shadow: 0 3px 0 #0b2960;
}
.btnSecondary a p {
  background: url(https://grepika.jp/system_panel/uploads/images/btn_secondary_arrow.png) right 10px center no-repeat;
  background-size: 10px auto;
}
.btnSecondary.small {
  font-size: 20px;
}
@media (min-width: 1025px) {
  .btnSecondary a:hover {
    opacity: 1;
    box-shadow: none;
    transform: translateY(3px);
  }
}

.contractPanel {
  max-width: 1000px;
  margin: 0 auto;
  /*border: 4px solid #c7a3dc;
  border-image: linear-gradient(to right, #f2bce8 0%, #a48ed2 100%);
  border-image-slice: 1;*/
  background:rgba(0,0,0,0.2);
  /*border:1em solid #fff;*/
  border-radius:1em;
  /*box-shadow:0em 0.5em 1em 1px rgba(0, 0, 0, .1);*/
  box-shadow: 2px 5px 5px 0px rgb(0 0 0 / 40%);
}
.contractPanel .inner {
  padding: 40px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
}
.contractPanel .dl {
  text-align: center;
}
.contractPanel .dl .dt {
  margin: 0 0 30px;
  font-size: 24px;
}
.contractPanel .dl .ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 40px;
  font-size: 24px;
  text-align: center;
}
.contractPanel .dl .ul .li:nth-child(odd) {
  width: 30%;
  padding: 5px 10px;
  /*border: 1px solid #000000;*/
  border: 5px solid #000000;
}
.contractPanel .dl .ul .li:nth-child(2n+1){
  background:#fff;
}
.contractPanel .dl .ul .li:nth-child(even) {
  width: 5%;
  color: #1777c1;
}

/* --------------------------------------------------
	footer
-------------------------------------------------- */
.footer .asidePanel {
  /*padding: 100px 0 80px;*/
  padding: 0px 0 7px;
}
.footer .footContact {
  padding: 60px 0;
  text-align: center;
  background: url(https://grepika.jp/system_panel/uploads/images/footer_contact_bg.png) center no-repeat;
  background-size: cover;
}
.footer .footContact .ttl {
  margin: 0 0 40px;
  font-size: 44px;
}
.footer .footContact .secBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 740px;
  margin: 0 auto;
}
.footer .footContact .secBox .telBox {
  width: 45%;
}
.footer .footContact .secBox .telBox .dl {
  padding: 0 0 0 25px;
  font-weight: 500;
}
.footer .footContact .secBox .telBox .dl .dt {
  display: inline-block;
  margin: 0 2px 0 0;
  padding: 0 5px;
  color: #ffffff;
  background: #131315;
}
.footer .footContact .secBox .telBox .dl .dd {
  display: inline-block;
}
.footer .footContact .secBox .telBox a {
  display: inline-block;
  padding: 0 0 0 30px;
  font-size: 38px;
  line-height: 1.2;
  background: url(https://grepika.jp/system_panel/uploads/images/footer_contact_tel.png) left bottom 8px no-repeat;
  background-size: 25px auto;
}
.footer .footContact .secBox .mailBox {
  width: 48%;
}
.footer .footContact .secBox .mailBox .btnPrimary a {
  padding: 10px;
  font-size: 22px;
}
.footer .footContact .secBox .mailBox .btnPrimary p {
  display: inline-block;
  padding: 0 0 0 30px;
  background: url(https://grepika.jp/system_panel/uploads/images/footer_contact_mail.png) left top 5px no-repeat;
  background-size: 22px auto;
}
.footer .footPanel {
  padding: 50px 0 10px;
  color: #fffefe;
  background: #000a15;
}
/*.footer .footPanel .footBox {
  margin: 0 0 50px;
}*/
.footer .footPanel .footBox .leftBox .logo {
  max-width: 360px;
  margin: 0 0 20px;
}
.footer .footPanel .footBox .leftBox .info {
  margin: 0 0 20px;
  line-height: 2;
}
.footer .footPanel .footBox .leftBox .info a {
  display: inline-block;
  color: #fffefe;
}
.footer .footPanel .footBox .leftBox .bnr {
  max-width: 300px;
}
.footer .footPanel .footBox .leftBox .bnr a {
  display: block;
}
.footer .footPanel .footBox .rightBox .footNav01 {
  display: flex;
  justify-content: space-between;
  margin: 0 0 60px;
}
.footer .footPanel .footBox .rightBox .footNav01 .dl {
  width: calc(25% - 10px);
}
.footer .footPanel .footBox .rightBox .footNav01 .dl .dt {
  margin: 0 0 25px;
}
.footer .footPanel .footBox .rightBox .footNav01 .dl .dt a {
  display: inline-block;
  color: #fffefe;
}
.footer .footPanel .footBox .rightBox .footNav01 .dl .ul .li + .li {
  margin: 1.5em 0 0;
}
.footer .footPanel .footBox .rightBox .footNav01 .dl .ul .li a {
  display: inline-block;
  color: #b4b4b4;
}
.footer .footPanel .footBox .rightBox .footNav01 .dl .ul .li p {
  display: inline;
}
.footer .footPanel .footBox .rightBox .footNav01 .dl .ul .li .span {
  color: #fffefe;
}
.footer .footPanel .footBox .rightBox .footNav02 .ul {
  display: flex;
  justify-content: space-between;
}
.footer .footPanel .footBox .rightBox .footNav02 .ul .li {
  width: 20%;
}
.footer .footPanel .footBox .rightBox .footNav02 .ul .li a {
  display: inline-block;
  color: #fffefe;
}
@media (min-width: 1025px) {
  .footer .footPanel .footBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*margin-left: 62px;*/
  }
  .footer .footPanel .footBox .leftBox {
    width: 39%;
  }
  .footer .footPanel .footBox .rightBox {
    width: 65%;
    margin-right: 63px;
  }
  .footer .footPanel .footBox .rightBox .footNav01 .dl {
    width: calc(25% - 4px);
	}
}
.footer .footPanel .copy {
  padding: 0 10px;
  font-size: 14px;
  text-align: center;
}
@media(min-width:1560px){
  .footer .footPanel .footBox{
  	margin: 0 0 50px;
  }
}