@charset "UTF-8";
.WhiteShadow {
  text-shadow: #fff 1px 0px 4px, #fff -1px 0px 2px, #fff 0px -1px 2px, #fff -1px 0px 2px, #fff 1px 1px 2px, #fff -1px 1px 2px, #fff 1px -1px 2px, #fff -1px -1px 2px, #fff 1px 1px 2px, #fff -1px 1px 2px, #fff 1px -1px 2px, #fff -1px -1px 2px, #FFF 1px -1px 2px, #fff -1px -1px 2px, #fff 1px 1px 2px, #fff -1px 1px 2px, #fff 1px -1px 2px, #fff -1px -1px 2px;
}

/*===================
コンテンツcommon
=====================*/
.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h2 {
  position: relative;
  font-size: 1.8em;
  line-height: 1.6;
  margin-bottom: 1.2em;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 800px) {
  h2 {
    font-size: 1.5em;
  }
}

h2::before {
  background-color: #C9A96E;
  /* 線の色 */
  border-radius: 5px;
  /* 線の両端を丸く */
  bottom: -10px;
  /* 線の位置 */
  content: "";
  height: 3px;
  /* 線の高さ */
  left: 50%;
  /* 線の中央寄せ */
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /* 線の中央寄せ */
  width: 1.5em;
  /* 線の長さ */
}

h2 span {
  font-size: .8em;
}

/*h2:before {
    content: '';
    position: absolute;
    top: .8em;
    left: 0;
    display: inline-block;
    width: 1em;
    height: 1px;
    background-color: #2458a7;
}*/
h3 {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: .5em;
  border-bottom: 1px solid #378c1d;
  padding-bottom: .4em;
}

@media (max-width: 800px) {
  h3 {
    font-size: 1.4em;
  }
}

section {
  padding-top: 90px;
  /*margin-top: -20px;*/
  padding-bottom: 70px;
}

.Conte {
  width: 100%;
}

.Conte .Inner {
  width: calc(100% - ((20px + 1.5vw) * 2));
  max-width: calc(1400px - 6vw);
  margin-left: auto;
  margin-right: auto;
}

.Conte .Inner .Inner {
  padding: 0 2.4%;
}

/*ボタンスタイル*/
.Btt {
  /*width: 80%;*/
  max-width: 600px;
  margin-top: 2em;
  text-align: center;
}

.Btt a.button {
  padding: 2px 18px;
  width: 100%;
  max-width: 600px;
  display: inline-block;
  /*padding: .5rem 1.2rem;*/
  border-radius: 10rem;
  text-transform: uppercase;
  /*letter-spacing: .15rem;*/
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  color: #000;
}

.Btt a.button:hover {
  color: #fff !important;
  opacity: 1;
}

.Btt a.button:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #2458a7;
  -webkit-transition: all .3s;
  transition: all .3s;
  border-radius: 10rem;
  z-index: -1;
  color: #fff;
}

.Btt a.button:hover:before {
  width: 100%;
}

.Btt a.button:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 10rem;
  z-index: -2;
}

/*hoverした際の、背景の場所とテキスト色の変更*/
ul.CheckMark li {
  position: relative;
  margin-left: 1.5em;
  line-height: 1.4;
  margin-bottom: .9em;
}

ul.CheckMark li:before {
  content: "";
  display: block;
  position: absolute;
  width: 1em;
  height: 0.5em;
  border-left: 4px solid #2458a7;
  border-bottom: 4px solid #2458a7;
  top: 0.4em;
  left: -1.5em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*========= footer ============*/
footer {
  background-color: #f9f9f9;
}

#footerBg {
  /*background: -webkit-gradient(linear, left top, right top, from(#f1f2fb), to(#c7d2d9));*/
  width: 100%;
  padding-top: 10px;
}

#footerBg .footer {
  margin: 0 auto;
  width: 100%;
  max-width: 1340px;
  padding: 70px 6vw 70px 6vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-flow: nowrap;
      flex-flow: nowrap;
}

#footerBg .footer .Navi01 .logo {
  color: #000;
  letter-spacing: .04em;
  font-size: 2.4em;
  margin-bottom: 4px;
  width: 50%;
}

#footerBg .footer .Navi01 p.CorpName {
  color: #000;
  margin-bottom: 18px;
  font-weight: bold;
  font-size: clamp(0.7rem, calc(.95rem + 0.625vw), 1.8rem);
}

#footerBg .footer .Navi01 p.Address {
  font-size: clamp(0.5rem, calc(.75rem + 0.625vw), 1.5rem);
  line-height: 1.5;
  margin: .5em 0;
  color: #000;
}

#footerBg .footer .Navi02 {
  margin-top: 40px;
}

@media (max-width: 840px) {
  #footerBg .footer .Navi02 {
    margin-top: 0;
  }
}

#footerBg .footer .Navi03 {
  margin-top: 40px;
}

@media (max-width: 840px) {
  #footerBg .footer .Navi03 {
    margin-top: 0;
  }
}

#footerBg .footer .Navi04 {
  margin-top: 40px;
}

@media (max-width: 840px) {
  #footerBg .footer .Navi04 {
    margin-top: 0;
  }
}

#footerBg .footer .FootTitle {
  font-weight: bold;
  font-size: .95em;
  color: #000;
  margin-top: .6em;
  margin-bottom: .2em;
  /*margin-left: -0.5em;*/
  font-weight: normal;
}

@media screen and (max-width: 800px) {
  #footerBg .footer .FootTitle {
    border-bottom: 1px solid #bbb;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
  }
}

#footerBg .footer .FootTitle a {
  color: #000;
}

#footerBg .footer li {
  position: relative;
  font-size: clamp(0.5rem, calc(.8125rem + 0.625vw), 1.625rem);
  line-height: 1.7;
  /*&::before {
				-moz-border-bottom-colors: none;
				-moz-border-left-colors: none;
				-moz-border-right-colors: none;
				-moz-border-top-colors: none;
				border-color: transparent transparent transparent #878787;
				-webkit-border-image: none;
				-o-border-image: none;
				border-image: none;
				border-style: solid;
				border-width: 5px;
				content: "";
				height: 0;
				left: 0;
				position: absolute;
				top: .9em;
				width: 0;
			}*/
}

@media screen and (max-width: 800px) {
  #footerBg .footer li {
    margin-left: 1.8em;
  }
}

#footerBg .footer a {
  color: #000;
}

#footerBg .footer a:hover {
  opacity: 1;
  text-decoration: underline;
}

#footerBg .SpComName {
  display: none;
}

@media screen and (max-width: 800px) {
  #footerBg .footer .Navi02 {
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  #footerBg .footer .Navi03 {
    /*margin-bottom: 30px;*/
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  #footerBg .footer .Navi04 {
    margin: auto;
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 800px) {
  #footerBg .footer li::before {
    top: 35%;
  }
}

@media screen and (max-width: 800px) {
  #footerBg .footer li {
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 800px) {
  #footerBg .footer {
    display: block;
  }
}

@media screen and (max-width: 800px) {
  #footerBg .SpComName {
    display: block;
    padding: 0px 6vw 70px 6vw;
    color: #fff;
  }
  #footerBg .SpComName .logo {
    font-size: 2em;
    letter-spacing: .04em;
    width: 40%;
  }
  #footerBg .SpComName p.CorpName {
    margin: 20px 0 0px;
    line-height: 1.4;
    font-size: .9em;
    font-weight: bold;
  }
  #footerBg .SpComName p.Address {
    margin: 10px 0 10px;
    line-height: 1.4;
    font-size: .8em;
  }
  #footerBg .SpComName a {
    color: #fff;
  }
}

.copyBox #copy {
  color: #fff;
  background-color: #1F4E0F;
  text-align: center;
  font-size: .9rem;
  padding: 1.8em 0;
}

.copyBox #copy a {
  color: #fff;
}

.HeadCompanyInfo {
  padding: 0 9vw;
  margin-top: 3em;
  text-align: left;
  color: #000;
}

.HeadCompanyInfo a {
  color: #000;
}

.HeadCompanyInfo .logo {
  font-size: 1.4em;
  letter-spacing: .04em;
  margin-bottom: 10px;
}

/*========= トップページ ===============*/

/*========= トップページコンテンツ ===============*/

#TopCompanyInfo {
  background-image: url("../img/top/bg_company_info.jpg");
  background-position: center;
  background-size: cover;
  padding-top: 0px;
  padding-bottom: 0px;
}

/*========= CTA ===============*/

/*========= lowpage ===============*/

/*======================================================
　　　　　下層ページ
=======================================================*/

/* PCだけカーブをきつくする */

/* SP */

/*======================================================
　　　　　事業案内ページ
=======================================================*/

/*======================================================
　　　　サービスページ
=======================================================*/
#Business {
  padding-top: 90px;
  margin-top: -90px;
}

@media (max-width: 800px) {
  #Business {
    padding-top: 70px;
    margin-top: -70px;
  }
}

/*======================================================
　　　　会社概要ページ
=======================================================*/

/*======================================================
　　　　個人情報・プライバシーポリシー
=======================================================*/

/*=====メールフォーム=====*/

/*# sourceMappingURL=base.css.map */
