@charset "utf-8";
/* CSS Document */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　初期設定　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
* {
  margin: 0px;
  padding: 0px;
  font-size: 100%;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  font-family: 'M PLUS 1', sans-serif;
  color: #4d4d4d;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none;
  transition: background-color 100ms, border-color 100ms, color 100ms, opacity 100ms
}
ul, li {
  list-style: none;
  margin: 0;
}
.clearfix {
  clear: both;
}
/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*共通*/
#topBtn {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: transparent;
  color: white;
  cursor: pointer;
  padding: 0px 0px 0px 0px;
  border-radius: 4px;
  width: 40px; /*imgの大きさ*/
  height: auto;
	opacity: .8;
}
#topBtn:hover {
  /*		background-color: #F5FBFE;
*/ opacity: 0.8
}
a[href^="tel:"] {
  pointer-events: none;
}
a[href*=".pdf"]:after {
  content: " ";
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin: 0 0 0 5px;
  background-image: url(../img/pdf_24.png);
  background-repeat: no-repeat;
}
a[href*=".xlsx"]:after {
  content: " ";
  display: inline-block;
  vertical-align: middle;
  width: 23px;
  height: 23px;
  margin: 0 0 0 5px;
  background-image: url(../img/excel_icon.png);
  background-repeat: no-repeat;
}
/*sectionフェードイン（上→下）*/
.animation_box {
  padding: 10px;
  opacity: 0;
  transform: translateY(-10px);
  transition: 2.5s ease;
}
.box_fadeIn {
  animation: fadeIn-box 1.5s ease .1s 1 normal backwards;
}
@keyframes fadeIn-box {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*共通/end*/
header {
  width: 100%;
  margin: 0 auto 0;
  border-top: 5px solid #10a433;
}
.headerInner {
  width: min(1366px, 95%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.topName {
  width: min(340px, 40%);
  padding: 3px 0 10px;
  display: flex;
  justify-content: flex-start;
}
.toplogo {}
.toplogo img {
  width: 100%;
  height: auto;
}
.toplogo a{
	cursor: pointer;
}
.inquiry-sp {
  display: none;
}
.topContact {
  width: 60%;
  padding: 10px 0 10px;
  display: flex;
  justify-content: flex-end;
}
.topContactTelImg {
  width: 15px;
  height: auto;
  margin: 0px 5px 0 0;
  padding-top: 4px;
}
.topContactTel {
  font-size: 1.7em;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 7px;
}
.txt-ico a {
  color: initial;
  text-decoration: none;
}
.topContactTel span {
  font-size: .7em;
  letter-spacing: 0;
  margin-left: -.25em;
}
.topContactTime {
  font-size: .9em;
  padding-left: 1.5em;
}
.topContactBT {
  width: 170px;
  height: 45px;
  margin: 0 0 0 10px;
  padding: .7em 0 .25em;
  background: #10a433;
  font-size: 1.1em;
  color: #FFF;
  font-weight: 700;
  text-align: center;
  letter-spacing: .15em;
}
.topContactBT span {
  margin: 0 .4em 0 0;
}
.topContactBT {
  text-decoration: none;
}
.topContactBT:hover {
  opacity: .7;
  transition-duration: 0.2s;
}
.g-nav-list-sp {
  display: none;
}
/*.ImgBox {
  max-width: 1366px;
  width: 100%;
  margin: 0 auto;
  clear: both;
}
.ImgBox img {
  width: 100%;
  height: auto;
}*/
.topImg {
  width: min(1366px, 100%);
  margin: 0 auto;
  position: relative;
}
.topImg img {
  width: 100%;
  height: auto;
}
.topImg .topImgTxt {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.8;
  color: white;
  text-shadow: 3px 1px 6px rgba(0, 0, 0, 0.55);
  position: absolute;
  top: 80px;
  right: 20px;
}
.topImg .topImgTxt .txt1 {
  padding: 10px;
  animation: fadeIn 2s ease 1s 1 normal backwards;
  display: block;
}
.topImg .topImgTxt .txt2 {
  padding: 10px;
  animation: fadeIn 2s ease 2s 1 normal backwards;
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.intro {
  margin: 50px auto 100px;
  padding: 0 10px;
  font-size: 2.4em;
  font-weight: 700;
  text-align: center;
  letter-spacing: .03em;
}
.intro span {
  line-height: 1.5;
  display: block;
}
.introTxt1 {}
.introTxt2 {
  width: max-content;
  margin: auto;
  background: linear-gradient(transparent 65%, #f9ed9b 65%);
}
/*サービス説明*/
.service {
  margin: 0 auto 100px;
}
.service h2 {
  font-size: 2.4em;
  font-weight: 700;
  text-align: center;
  letter-spacing: .1em;
  color: #115e32;
}
.service .serviceTxt {
  width: min(950px, 92%);
  margin: 60px auto 50px;
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em
}
.serviceCont {
  width: min(1200px, 95%);
  margin: 0 auto;
  padding: 0 0;
  display: flex;
  justify-content: space-between;
}
.serviceBox {
  width: 30%;
  padding: 0 0 55px 0;
  background-color: #FFF;
  border: 1px solid #93d2d3;
  /*  -webkit-box-shadow: 2px 2px 2px #DCDCDC;
  box-shadow: 2px 2px 2px #DCDCDC;*/
  text-align: center;
  position: relative;
}
.serviceBox img {
  width: 100%;
  height: auto;
  margin: 0 auto 0;
  text-align: center;
}
.serviceBox h4 {
  margin: 0;
  padding: 7px 0;
  font-size: 1.25em;
  font-weight: bold;
  text-align: center;
  line-height: 1.7;
  color: #10a433;
}
.serviceBox p {
  margin: 10px;
  font-size: 1.1em;
  line-height: 1.7;
  text-align: left;
  letter-spacing: .02em;
  font-weight: 500;
}
.serviceBox a {
  width: 80%;
  padding: 8px 15px;
  border-radius: 15px;
  transform: translateX(-50%);
  font-size: 1em;
  color: inherit;
  text-decoration: none;
  border: 1px solid #b3e2d1;
  background: #fafafa;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 38%, rgba(247, 246, 242, .8) 100%);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 15px;
  left: 50%;
}
.serviceBox a:hover {
	color: #3f7dbd;
  background: #fafafa;
  background: linear-gradient(198deg, rgba(255, 255, 255, 1) 100%, rgba(247, 246, 242, 1) 1%);
  border: 1px solid #3f7dbd;
  transition-duration: 0.15s;
}
/*お知らせ〇*/
.infomaition {
  width: min(1000px, 98%);
  margin: 0 auto 70px;
}
.infomaition h2 {
  font-size: 2.3em;
  text-align: center;
  font-weight: 700;
  letter-spacing: .1em;
  color: #115e32;
}
.infoNews {
  width: 95%;
  height: 250px;
  margin: 50px auto 0;
  padding: 0 20px;
  border: 1px solid #ddd;
  -webkit-box-shadow: 3px 3px 10px #E5E5E5 inset;
  box-shadow: 2px 2px 10px #E5E5E5 inset;
  text-align: center;
  overflow-y: auto;
}
.infoNews iframe {
  width: 100%;
  height: 100vh;
}
/*ボタンエリア*/
.btCont {
  width: min(1000px, 90%);
  margin: 0 auto 70px;
  display: flex;
  justify-content: space-around;
}
.btCont .bt1 {
  width: 28%;
  padding: 15px;
  background-color: #FFF;
  border: 1px solid #93d2d3;
  border-radius: 10px;
}
.btCont .bt2, .btCont .bt3 {
  width: 28%;
  padding: 17px 15px;
  background-color: #FFF;
  border: 1px solid #93d2d3;
  border-radius: 10px;
}
.btCont .bt1 span {
  margin: 0 auto 20px;
  font-size: 1.1em;
  text-align: center;
  letter-spacing: .05em;
  display: block;
}
.btCont .bt1 .bt1-set {
  display: flex;
  justify-content: space-around;
}
.btCont .bt1-set a {
  color: inherit;
  cursor: pointer;
}
.btCont .bt2, .btCont .bt3 {
	padding:15px 0 10px 3px ;
  text-align: center;
  letter-spacing: .05em;
	text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.btCont .bt2 span, 
.btCont .bt3 span{
	line-height: 1.7;
	display: block;
}
.btCont .bt1-set a:hover {
  color: #3F7DBD;
  font-weight: bold;
  text-decoration-line: underline;
  transition-duration: 0.15s;
}
.btCont .bt2:hover, .btCont .bt3:hover {
  color: #3F7DBD;
  border: 1px solid #3F7DBD;
  transition-duration: 0.15s;
}
/*問合せ〇*/
.contact {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  background-color: #eaf2d7;
}
.contactCont {
  max-width: 900px;
  width: 95%;
  margin: 0 auto;
  text-align: center;
}
.contactContTxt {
  font-size: 1.3em;
  font-weight: bold;
  letter-spacing: .05em;
  margin: 0 auto 30px;
}
.contactTxt {
  display: flex;
  justify-content: space-around;
}
.txt-ico {
  display: flex;
}
.contactTelImg {
  width: auto;
  height: 34px;
  align-self: center;
}
.contactTel {
  color: initial;
  font-size: 2.2em;
  letter-spacing: .1em;
  text-decoration: none;
  align-self: center;
  margin-left: 8px;
}
.contactTel::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(../img/tel-ico.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  margin-right: -.15em;
  margin-bottom: -.2em;
}
.contactTel span {
  font-size: .7em;
  letter-spacing: 0em;
  margin-left: -.35em;
}
.contactMail {
  font-size: 1.5em;
  letter-spacing: .05em;
  align-self: center;
  margin-left: 10px;
}
.contactMailImg {
  width: auto;
  height: 28px;
  align-self: center;
}
footer {
  padding: 40px 0;
  background-image: url(../img/footerbk.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footerInner {
    width: min(1200px, 96%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.footerTxtBox {
  width: 42%;
  align-self: center;
}
.footerName {
  font-size: 2.1em;
  font-weight: 700;
  letter-spacing: .03em;
  margin-bottom: 50px;
}
.footerName span {
  font-size: .65em;
  letter-spacing: 0;
  display: block;
  margin-bottom: 15px
}
.footerAdre {}
.footerAdre p {
  line-height: 1.8;
  letter-spacing: .1em;
}
.footerAdre span {
  font-size: 1.1em;
  font-weight: normal;
}
.footerAdre a {
  color: inherit;
  text-decoration: none;
}
.footerAdre a:hover {
  color: #144a99;
  opacity: .8;
  transition-duration: 0.2s;
}
.footerMenuBox {
  width: 55%;
  display: flex;
  flex-direction: column;
  align-content: space-between;
}
.footerMenu {
  width: 100%;
  margin: 0 auto 30px;
  display: flex;
}
.footerMenu ul {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.footerMenu a {
  line-height: 1;
  text-decoration: none;
  color: inherit;
}
.footerMenu a:hover {
  font-weight: bold;
  color: #144a99;
  border-bottom: 1px solid #144a99;
  transition-duration: 0.15s;
  opacity: .7;
}
.footerLinkBT {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-around;
}
.footerLinkBT a {
  width: 42%;
  cursor: pointer;
  padding: .45em .25em .25em .25em;
  background-color: hsla(0, 0%, 100%, 0.80);
  border-radius: 5px;
  border: 2px solid #a4d6c1;
  color: #2B9A7B;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  align-self: center;
  transition: .5s;
}
.footerLinkBT a span {
  display: block;
  margin-bottom: .5em;
  font-size: .9em;
}
.footerLinkBT a:hover {
  background-color: #3f7dbd;
  border: none;
  color: white;
  opacity: .95;
  transition-duration: 0.2s;
}
/*inquiry*/
.inquiry {
  width: 90%;
  margin: 80px auto 0;
  padding: 0 0;
  text-align: center;
}
.inquiry iframe {
  width: 100%;
  height: 1100px;
}
/*OtherPage*/
.pageHeader {
	width: 100%;
	margin: 0 auto;
	padding: 0 0 60px 0;
	background-image: url(../img/page_header-bk.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
}
.pageHeader h2 {
  font-size: 1.6em;
  font-weight: 700;
  text-align: center;
  padding: 60px 0 0 0;
}

.wrap {
  max-width: 1000px;
  width: 85%;
  margin: 50px auto 80px;
}
.pageCont {
  width: 100%;
  margin: 0 auto 90px;
}
.pageCont h3 {
  margin: 0 auto 60px;
  padding: 0 0 0 0;
  font-size: 1.5em;
  line-height: 1.8;
  text-indent: .5em;
  letter-spacing: .15em;
border-bottom: solid 4px #93d2d3;
  position: relative;
}
/*2色ライン*/
.pageCont h3:after {
  width: 10%;
  content: " ";
  border-bottom: solid 4px #10a433;
  display: block;
  position: absolute;
  bottom: -4px;
}
.pageCont h4{
	margin: 0 0 30px 12px;
	padding:.55em .5em .5em .4em;
	font-size: 1.2em;
	font-weight: bold;
	letter-spacing: .1em;
	border-left: 6px solid #10a433;
}
.pageCont .pageContSubTlt {
  width: 90%;
  margin: 0 auto 25px auto;
  font-size: 1.3em;
	font-weight: bold;
  color: #10a433;
}
.pageCont p {
  width: 95%;
  margin: 0 20px 20px;
	padding:0 2em;
	font-size: 1.1em;
  line-height: 1.8;
  letter-spacing: .1em;
}
.pageCont p .sign{
	margin: 2em 0 0 auto;
	text-align: right;
	font-size: 1.05em;
  line-height: 1.8;	
	display: block;
}
/*.pageContImg-r {
  float: right;
}
.imgFloat-r {
  margin: -30px 0 40px 10px;
}*/
/*.privacyCont {
  width: 90%;
  margin: 0 auto 90px;
  padding: 0 20px;
}
.privacyCont h3 {
  margin: 0 auto 30px;
  padding: 5px 0 2px 20px;
  font-size: 1.2em;
  line-height: 2;
  letter-spacing: .15em;
  position: relative;
}
.privacyCont h3::after {
  display: block;
  content: "";
  background: rgb(102, 198, 111);
  background: linear-gradient(51deg, rgba(102, 198, 111, 1) 0%, rgba(255, 255, 180, 1) 60%, rgba(209, 248, 183, 1) 100%);
  /*左三角
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 100%;
}
.privacyCont p {
  margin: 0 0 30px 20px;
  line-height: 1.6;
}
.privacyCont ul {
  margin: 0 0 0 40px;
}
.privacyCont li {
  list-style: disc;
  line-height: 1.6;
  margin-bottom: 10px;
}*/
.recruitCont {
  width: 100%;
  margin: 0 auto 70px;
}
.recruitCont a {
  text-decoration: none;
}
.recruitCont h3 {
  margin: 0 auto 50px;
  padding: 0 0 0 0.5em;
  font-size: 1.7em;
  line-height: 1.8;
  letter-spacing: .1em;
  position: relative
}
.recruitCont h3::before {
  display: block;
  content: "";
  height: 10px;
  background: rgb(102, 198, 111);
  background: linear-gradient(51deg, rgba(102, 198, 111, 1) 0%, rgba(255, 255, 180, 1) 70%, rgba(209, 248, 183, 1) 100%);
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
}
/*.recruitTxtImg {
  width: 100%;
  height: 500px;
  margin: 0 auto;
  position: relative;
}
.recruitImg-PC {
  width: 75%;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
}
.recruitImg-sp {
  display: none;
}
.recruitTxt {
  width: 60%;
  margin: 0 0 0 1em;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.recruitTxt p {
  line-height: 2;
}
.recruitTxt .kyubo {
  margin: 0 0 0 -1em;
  color: #F6821F;
  font-size: 1.2em;
  letter-spacing: .2em;
  font-weight: bold;
}
.recruitTxt .occupation {
  font-size: 1.05em;
  font-weight: bold;
}
.recruitTxt .occupation::before {
  content: "○";
  margin-right: .25em;
}
.recruitTxt .item {
  font-size: 1.05em;
  letter-spacing: .2em;
  font-weight: bold;
}
.recruitTxt .item::before {
  content: "【";
}
.recruitTxt .item::after {
  content: "】";
}
.recruitTxt .itemLine {
  margin: 0 0 1em 1.25em;
  letter-spacing: 0.05em;
}*/
/*Add*/
.red {
  color: red;
}
.bluegreen {
  color: #15b09f;
}
.pink {
  color: #fc8786;
}
.txtMin {
  font-family: 'Sawarabi Mincho', serif;
}
.txtNumbers {
  font-family: 'Barlow', sans-serif;
}
.txtB {
  font-weight: 700;
}
.txtLink {
  color: #144a99;
}
.pcLine {
  display: inline;
}
.spLine {
  display: none;
}
.text-margine{
	letter-spacing: .3em;
}
@media screen and (max-width:1024px) {
  header {
    width: 100%;
    margin: 0 auto;
  }
  .headerInner {
  width: min(1366px, 95%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  .topName {
  width: min(340px, 40%);
    padding: 5px 0 7px;
    display: flex;
    justify-content: flex-start;
	  align-items: center;
  }
  .toplogo img {
    width: 100%;
    height: auto;
  }
.topContact {
  width: 60%;
  padding: 10px 0 10px;
  display: flex;
  justify-content: flex-end;
	  align-items: center;
}
/*  .topMenu {
    width: 55%;
    height: auto;
    padding: 10px 0px 10px 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }*/
/*トップイメージ*/
.topImg {
  width: min(1366px, 100%);
  margin: 0 auto;
  position: relative;
}
.topImg .topImgTxt {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.8;
  color: white;
  text-shadow: 3px 1px 6px rgba(0, 0, 0, 0.55);
  position: absolute;
  top: 70px;
  right: 20px;
}
  /*Top説明*/
.intro {
  margin: 50px auto 80px;
  padding: 0 10px;
  font-size: 1.8em;
  font-weight: 700;
  text-align: center;
	letter-spacing: .01em;;
}
.intro span {
  line-height: 1.5;
  display: block;
}
.introTxt1 {
}
.introTxt2 {
  width: fit-content;
  margin: auto;
  background: linear-gradient(transparent 65%, #f9ed9b 65%);
}
/*サービス*/
  .service {
  margin: 0 auto 60px;
  }
.service h2 {
  font-size: 2em;
  font-weight: 700;
text-align: center;
  letter-spacing: .1em;
  color: #115e32;
}
.service .serviceTxt {
  width: min(950px, 92%);
  margin: 50px auto 30px;
  font-size: 1.05em;
	font-weight: 700;
  line-height: 1.7;
	letter-spacing: 0.05em
}
.serviceBox {
  width: 32%;
  padding: 0 0 55px 0;
  background-color: #FFF;
  border: 1px solid #93d2d3;
  /*  -webkit-box-shadow: 2px 2px 2px #DCDCDC;
  box-shadow: 2px 2px 2px #DCDCDC;*/
  text-align: center;
  position: relative;
}
.serviceBox h4 {
  margin: 0;
  padding: 7px 0;
  font-size: 1.15em;
  font-weight: bold;
  text-align: center;
  line-height: 1.7;
  color: #10a433;
}
.serviceBox p {
  margin: 10px;
  font-size: 1.05em;
  line-height: 1.7;
  text-align: left;
  letter-spacing: .02em;
	font-weight: 500;
}	
.serviceBox a:hover {
  color: #3f7dbd;
  background: #fafafa;
  background: linear-gradient(198deg, rgba(255, 255, 255, 1) 100%, rgba(247, 246, 242, 1) 1%);
  border: 1px solid #3f7dbd;
  transition-duration: 0.15s;
}	

.infomaition h2 {
  font-size: 2em;
  text-align: center;
  font-weight: 700;
  letter-spacing: .1em;
  color: #115e32;
}
	
/*footer*/
  footer {
    padding: 40px 0;
    background-image: url(../img/footerbk.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .footerInner {
    width: min(1180px, 96%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .footerTxtBox {
    width: 38%;
    align-self: center;
  }
.footerName {
  font-size: 1.8em;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 50px;
}
  .footerMenuBox {
    width: 58%;
    display: flex;
    flex-direction: column;
    align-content: space-between;
  }
.footerMenu a {
	font-size: .95em;
  line-height: 1;
  text-decoration: none;
  color: inherit;
}
  .footerLinkBT {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-around;
  }
  .footerLinkBT a {
    width: 46%;
    padding: .45em .25em .25em .25em;
    background-color: hsla(0, 0%, 100%, 0.80);
    border-radius: 5px;
    border: 2px solid #93D2D3;
    color: #2B9A7B;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    align-self: center;
    cursor: pointer;
    transition: .5s;
  }
  /*recruit
  .recruitTxtImg {
    width: 100%;
    height: 520px;
    margin: 0 auto;
    position: relative;
  }
  .recruitImg-PC {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
  }*/
}
@media screen and (max-width:834px) {
  header {
    width: 100%;
    margin: 0 auto;
    background: #FFF;
    position: fixed;
    z-index: 998;
    -webkit-box-shadow: 0px 3px 5px #D8D8D8;
    box-shadow: 0px 3px 5px #D8D8D8;
  }
  .headerInner {
  width: min(1366px, 95%);
    margin: 0 auto;
    display: inherit;
  }
  .topName {
    width: 100%;
    padding: 5px 0 3px;
    display: flex;
    justify-content: flex-start;
  }
.toplogo img {
  width: 250px;
  height: auto;
}
  .topContact {
    display: none;
  }
  .topMenu {
    display: none;
  }
  .contactBT {
    display: none;
  }

  .inquiry-sp {
    display: block;
  }
/*  .ImgBox {
    max-width: initial;
    width: 100%;
    margin: 0 auto 0;
    padding: 70px 0 0;
  }
  .ImgBox img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
  }*/
.topImg {
  width: min(1366px, 100%);
  margin: 0 auto 0;
	padding:60px 0 0;
  position: relative;
}
.topImg img {
  width: 100%;
  height: auto;
}
.topImg .topImgTxt {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.8;
  color: white;
  text-shadow: 3px 1px 6px rgba(0, 0, 0, 0.55);
  position: absolute;
  top: 100px;
  right: 20px;
}
  /*Top説明*/
.intro {
  margin: 50px auto 100px;
  padding: 0 10px;
  font-size: 1.7em;
  font-weight: 700;
  text-align: center;
  letter-spacing: .01em;
}
/*サービス*/
.service {
  margin: 0 auto 60px;
}


.service .serviceTxt {
  width: min(950px, 92%);
  margin: 50px auto 30px;
  font-size: 1em;
	font-weight: 700;
  line-height: 1.7;
	letter-spacing: 0.05em
}



.serviceBox h4 {
  margin: 0;
  padding: 7px 0;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  line-height: 1.7;
  color: #10a433;
}
.serviceBox p {
  margin: 10px;
  font-size: 1em;
  line-height: 1.7;
  text-align: left;
  letter-spacing: .02em;
	font-weight: 500;
}
.serviceBox a {
  width: 80%;
  padding: 8px 15px;
  border-radius: 15px;
  transform: translateX(-50%);
  font-size: .9em;
  color: inherit;
  text-decoration: none;
  border: 1px solid #b3e2d1;
  background: #fafafa;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 38%, rgba(247, 246, 242, .8) 100%);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 15px;
  left: 50%;
}
/*お知らせ*/
.infomaition {
	width: min(1000px, 98%);
  margin: 0 auto 60px;
}
	
/*ボタンエリア*/
.btCont {
  width: min(1000px, 95%);
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-around;
}
.btCont .bt1{
	width: 31%;
  padding: 20px 0 10px;
  background-color: #FFF;
  border: 1px solid #93d2d3;
border-radius: 10px;
}
.btCont .bt2, .btCont .bt3{
	width: 31%;
  padding: 20px 15px 10px;
	line-height: 1.4;
	text-decoration: none;
  background-color: #FFF;
  border: 1px solid #93d2d3;
border-radius: 10px;
}
.btCont .bt1 .bt1-set {
	margin: 10px auto;
  display: flex;
  justify-content: space-around;
}
.btCont .bt1 span {
  margin: 0 auto 20px;
  font-size: 1.1em;
	line-height: 1.4;
  text-align: center;
  letter-spacing: .05em;
  display: block;
}
.btCont .bt2 span, 
.btCont .bt3 span{
	display: block;
}
/*コンタクト*/	
  .contactTel {
    color: initial;
    text-decoration: none;
    font-size: 1.7em;
    letter-spacing: .1em;
    align-self: center;
    margin-left: 8px;
  }
  .contactTelImg {
    width: auto;
    height: 30px;
    align-self: center;
  }
  .contactMail {
    font-size: 1.2em;
    letter-spacing: .05em;
    align-self: center;
    margin-left: 10px;
  }
	
/*フッター*/
  footer {
    padding: 40px 20px;
    background-image: url(../img/footerbk-sp.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .footerTxtBox {
    width: 48%;
    align-self: center;
  }
  .footerMenuBox {
    width: 48%;
    display: flex;
    justify-content: flex-end;
    align-content: space-between;
  }
  .footerMenu {
    display: none;
  }
  .footerLinkBT {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .footerLinkBT a {
    width: 100%;
    cursor: pointer;
    padding: .6em .4em .4em .4em;
    background-color: hsla(0, 0%, 100%, 0.80);
    border-radius: 5px;
    border: 2px solid #93D2D3;
    color: #2B9A7B;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    align-self: center;
    transition: .5s;
  }
  .footerLinkBT a span {
    display: inline-block;
    margin-bottom: .5em;
    margin-right: .5em;
    font-size: .85em;
  }
  /*inquiry*/
  .inquiry {
    width: 95%;
    margin: 80px auto 0;
    padding: 0 0;
    text-align: center;
  }
  .inquiry iframe {
    width: 100%;
    height: 1100px;
  }
  /*OtherPage*/
  .pageHeader {
    width: 100%;
    margin: 0 auto 0;
    padding: 70px 0 60px 0;
	background-image: url(../img/page_header-bk.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
  }
  .pageHeader h2 {
    font-size: 1.6em;
    font-weight: 700;
    text-align: center;
    padding: 60px 0 0 0;
  }

.pageCont h3 {
  margin: 0 auto 60px;
  padding: 0 0 0 0;
  font-size: 1.4em;
  line-height: 1.8;
  text-indent: .5em;
  letter-spacing: .15em;
border-bottom: solid 4px #93d2d3;
  position: relative;
}
/*2色ライン*/
.pageCont h3:after {
  width: 10%;
  content: " ";
  border-bottom: solid 4px #10a433;
  display: block;
  position: absolute;
  bottom: -4px;
}
.pageCont .pageContSubTlt {
  width: 95%;
  margin: 0 auto 25px auto;
  font-size: 1.25em;
	font-weight: bold;
  color: #10a433;
}
.pageCont p {
  width: 95%;
  margin: 0 auto 0;
	padding:0 0em;
	font-size: 1.05em;
  line-height: 1.6;
  letter-spacing: .1em;
}
.pageCont p .sign{
	margin: 2em 0 0 auto;
	text-align: right;
	font-size: 1em;
  line-height: 1.6;	
	display: block;
}
/*   .pageContImg-r {
    width: 40%;
    height: auto;
    float: right;
  }
 .imgFloat-r {
    margin: -20px 0 40px 0;
  }*/
  .privacyCont {
    width: 100%;
    margin: 0 auto 90px;
    padding: 0 20px;
  }
  .recruitCont h3 {
    margin: 0 auto 50px;
    padding: 0 0 0 0.5em;
    font-size: 1.4em;
    line-height: 1.8;
    letter-spacing: .1em;
    position: relative
  }
  .recruitCont h3::before {
    display: block;
    content: "";
    height: 8px;
    background: rgb(102, 198, 111);
    background: linear-gradient(51deg, rgba(102, 198, 111, 1) 0%, rgba(255, 255, 180, 1) 70%, rgba(209, 248, 183, 1) 100%);
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
  }
/*  .recruitTxt {
    width: 70%;
    margin: 15px 0 0 1em;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
  }
  .recruitTxt p {
    line-height: 1.9;
  }*/
}
@media screen and (max-width:480px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
a[href*=".pdf"]:after {
  display: none;

}
a[href*=".xlsx"]:after {
  display: none;

}
  header {
    width: 100%;
    margin: 0 auto;
    background: #FFF;
    position: fixed;
    z-index: 1000;
    -webkit-box-shadow: 0px 3px 2px #D8D8D8;
    box-shadow: 0px 3px 4px #D8D8D8;
  }
  .headerInner {
    max-width: initial;
    width: 98%;
    margin: 0 auto;
    display: inherit;
  }
  .topName {
    width: 100%;
    padding: 5px 0 2px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .toplogo {
    margin-right: 3px;
  }
  .toplogo img {
    width: auto;
    height: 50px;
  }
.topImg {
  width: min(1366px, 100%);
  margin: 0 auto 0;
	padding:65px 0 0;
  position: relative;
}
.topImg img {
  width: 100%;
  height: 180px;
}
.topImg .topImgTxt {
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1.8;
  color: white;
  text-shadow: 3px 1px 6px rgba(0, 0, 0, 0.55);
  position: absolute;
	top:auto;
	bottom: 10px;
  right: 10px;
}
.intro {
  margin: 50px auto 70px;
  padding: 0 10px;
  font-size: 1.4em;
  font-weight: 700;
  text-align: center;
  letter-spacing: .01em;
}
.introTxt2 {
  width: 100%;
  margin: 5px auto 0;
  background: none;
}
  .infomaition h2 {
    font-size: 1.6em;
    text-align: center;
    font-weight: 700;
    letter-spacing: .1em;
    color: #115e32;
  }
  /*Top説明*/
  .service {
    margin: 0 auto 60px;
  }
  .service h2 {
    font-size: 1.6em;
    text-align: center;
    font-weight: 700;
    letter-spacing: .1em;
    color: #115e32;
  }
  .serviceCont {
    max-width: initial;
    width: 97%;
    margin: 0 auto;
    padding: 40px 0 0;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
  }
  .serviceTxt1 h3, .serviceTxt2 h3 {
    margin: 0 0 20px;
    font-size: 1.15em;
    line-height: 1.5;
    padding: 0 10px 2px;
    border-bottom: 2px solid #f6821f;
  }
  .serviceImg1 {
    width: 90%;
    height: 100%;
    margin: 0 auto 10px;
  }
  .serviceImg2 {
    width: 90%;
    height: 100%;
    margin: 0 auto 10px;
    order: 1;
  }
  .serviceTxt1 {
    padding: 10px 5px 20px 5px;
    align-self: flex-end;
  }
  .serviceTxt2 {
    padding: 10px 5px 20px 5px;
    align-self: flex-end;
    order: 2;
  }
.serviceCont {
  width: min(1200px, 95%);
  margin: 0 auto;
  padding: 0 0;
  display: flex;
  justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: column;
}
.serviceBox {
  width: 100%;
	margin: 0 auto 20px auto;
  padding: 0 0 55px 0;
  background-color: #FFF;
  border: 1px solid #93d2d3;
  text-align: center;
  position: relative;
}
  .serviceBox img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: center;
  }
.serviceBox h4 {
  margin: 0;
  padding: 5px 0;
  font-size: 1.05em;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  color: #10a433;
}
  .serviceBox p {
    line-height: 1.4;
    text-align: left;
    letter-spacing: .05em;
  }
.serviceBox p {
  margin: 8px 10px;
  font-size: 1em;
  line-height: 1.6;
  text-align: left;
  letter-spacing: .01em;
	font-weight: 500;
}
  .infoNews {
    width: 100%;
    height: 250px;
    margin: 30px auto 0;
    padding: 0 0;
    border: 1px solid #ddd;
    -webkit-box-shadow: 2px 2px 5px #E5E5E5 inset;
    box-shadow: 2px 2px 5px #E5E5E5 inset;
    text-align: center;
  }
  .infoNews iframe {
    width: 100%;
    height: 100vh;
  }
.btCont{
	width: min(1000px, 90%);
	margin: 0 auto 70px;
	display:flex;
	justify-content: space-around;
	flex-direction: column;
}
.btCont .bt1{
	width: 95%;
	margin: 0 auto;
  padding: 13px 0 7px;
  background-color: #FFF;
  border: 1px solid #93d2d3;
border-radius: 10px;
}
.btCont .bt2, .btCont .bt3{
	width: 95%;
	margin: 15px auto 0 9px;
  padding: 14px 13px;
	text-decoration: none;
  background-color: #FFF;
  border: 1px solid #93d2d3;
border-radius: 10px;
}
.btCont .bt2 span, 
.btCont .bt3 span{
	display: inline-block;
}
  .contactCont {
    max-width: initial;
    width: 95%;
    margin: 0 auto;
    text-align: center;
  }
  .contactContTxt {
    font-size: 1.1em;
    font-weight: bold;
    letter-spacing: 0;
    margin: 0 auto 30px;
  }
  .contactTxt {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    padding: 0 10px;
  }
  .txt-ico {
    display: flex;
    margin: 0 auto 20px;
  }
  .txt-ico:last-child {
    margin: 0 auto 0;
  }
  .contactTel {
    font-size: 1.6em;
    color: initial;
    text-decoration: none;
    letter-spacing: .1em;
    align-self: center;
    margin-left: 8px;
  }
  .contactTel span {
    font-size: .7em;
    letter-spacing: 0em;
    margin-left: -.35em;
  }
  .contactMail {
    font-size: 1.1em;
    letter-spacing: .05em;
    align-self: center;
    margin-left: 10px;
  }
  footer {
    padding: 30px 10px 20px;
    background-image: url(../img/footerbk-sp.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .footerInner {
    max-width: initial;
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
  }
  .footerTxtBox {
    width: 100%;
    align-self: auto;
  }
  .footerName {
    width: 100%;
    font-size: 1.4em;
    font-weight: 700;
    letter-spacing: .1em;
    text-align: center;
    margin-bottom: 15px;
  }
  .footerName span {
    font-size: .75em;
    letter-spacing: 0;
    display: block;
    margin: 0 10px 15px 0;
    margin-bottom: 15px
  }
  .footerAdre {
    margin-bottom: 15px;
  }
  .footerAdre p {
    line-height: 1.8;
    letter-spacing: .1em;
    text-align: center;
  }
  .footerAdre span {
    font-size: 1.1em;
    font-weight: normal;
  }
  .footerMenuBox {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
  }
  .footerMenu {
    display: none;
  }
  .footerLinkBT {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-self: center;
  }
  .footerLinkBT a {
    width: 100%;
    cursor: pointer;
    padding: .6em .4em .4em .4em;
    background-color: hsla(0, 0%, 100%, 0.80);
    border-radius: 5px;
    border: 2px solid #93D2D3;
    color: #2B9A7B;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    transition: .5s;
    margin-bottom: 10px;
  }
  /*inquiry*/
  .inquiry {
    width: 100%;
    margin: 50px auto 0;
    padding: 0 0;
    text-align: center;
  }
  .inquiry iframe {
    width: 100%;
    height: 1200px;
  }
  /*OtherPage*/
  .pageHeader {
    width: 100%;
    margin: 0 auto 0;
    padding: 70px 0 50px 0;
	background-image: url(../img/page_header-bk.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
  }
  .pageHeader h2 {
    font-size: 1.4em;
    font-weight: 700;
    text-align: center;
    padding: 40px 0 0 0;
  }
  .wrap {
    max-width: 1000px;
    width: 92%;
    margin: 50px auto 50px;
  }
  .pageCont {
    width: 100%;
    margin: 0 auto 60px;
  }
	
.pageCont h3 {
  margin: 0 auto 30px;
  padding: 0 0 0 0;
  font-size: 1.4em;
  line-height: 1.4;
  text-indent: .5em;
  letter-spacing: .15em;
border-bottom: solid 4px #93d2d3;
  position: relative;
}
/*2色ライン*/
.pageCont h3:after {
  width: 20%;
  content: " ";
  border-bottom: solid 4px #10a433;
  display: block;
  position: absolute;
  bottom: -4px;
}
.pageCont .pageContSubTlt {
  width: 95%;
  margin: 0 auto 25px auto;
  font-size: 1.15em;
	font-weight: bold;
	line-height: 1.35;
  color: #10a433;
}
.pageCont p {
  width: 97%;
  margin: 0 auto 0;
	padding:0 0em;
	font-size: 1em;
  line-height: 1.6;
  letter-spacing: .1em;
}
.pageCont p .sign{
	margin: 2em 0 0 auto;
	text-align: right;
	font-size: .95em;
  line-height: 1.5;	
	letter-spacing: 0;
	display: block;
}	
	
	
  .pageContImg-r {
    width: 80%;
    height: auto;
    float: none;
    display: block;
  }
  .imgFloat-r {
    margin: 0 auto 20px auto;
  }
  .privacyCont {
    width: 100%;
    margin: 0 auto 90px;
    padding: 0 0;
  }
  .privacyCont h3 {
    margin: 0 auto 30px;
    padding: 7px 0 1px 20px;
    font-size: 1.2em;
    line-height: 1.4;
    letter-spacing: .15em;
    text-align: left;
    position: relative;
  }
  .recruitCont h3 {
    margin: 0 auto 20px;
    padding: 0 0 0 0.5em;
    font-size: 1.4em;
    line-height: 1.8;
    letter-spacing: .1em;
    text-align: center;
    position: relative
  }
/*  .recruitTxtImg {
    width: 100%;
    height: 700px;
    margin: 0 auto;
    position: inherit;
  }
  .recruitImg-PC {
    display: none;
  }
  .recruitImg-sp {
    width: 100%;
    height: 200px;
    position: inherit;
    top: 0;
    right: 0;
    object-fit: cover;
    display: block;
  }
  .recruitTxt {
    width: 95%;
    margin: 30px auto auto;
    position: inherit;
    top: 0;
    left: 0;
    z-index: 10;
  }*/
  /*Add*/
  .pcLine {
    display: inline;
  }
  .spLine {
    display: block;
  }
}