@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital@1&family=Inter:wght@200;800&display=swap');
html, body {
  font-family: "Noto Sans", "Noto Sans JP", serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .04em;
  color: #4d4d4d;
  margin: 0;
  padding: 0;
  height: 100%;
}
/* 強調 */
strong, b {
  font-weight: 700;
}
/* スクロールバー */ ::-webkit-scrollbar {
  width: 14px;
  background: #f4f4f4;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 10px 10px #999;
  border: solid 4px transparent;
}
/* リンク */
a {
  text-decoration: none;
  color: #1a1a1a;
  transition: 0.3s;
}
a:hover {
  opacity: .75;
}
a.pdf {
  color: #1a6ecb;
}
a.pdf i {
  width: 20px;
  height: 20px;
  background: url("../image/pdf.png") no-repeat center center/cover;
  display: inline-block;
  margin-bottom: -4px;
}
/* 文章 */
p {
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .05em;
  margin-bottom: 1.4em;
}
/* リスト */
ul li, ol li {
  font-size: 15px;
  line-height: 1.8;
}
/* 小さい文字 */
small {
  font-size: 12px;
}
img {
  max-width: 100%;
  height: auto;
}
.wrapper {
  width: 100%;
  min-height: calc(100% - 50px);
}
.contents, .wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.contents {
  padding: 50px 0px;
}
header {
  position: relative;
  z-index: 9;
  width: 100%;
  height: 80px;
}
h1 {
  width: 280px;
  position: absolute;
  top: 5px;
  margin: 0px;
  left: 10px;
  height: 82px;
}
h1 a {
  width: 280px;
  height: 82px;
  display: block;
  background: url("../image/logo.svg");
  background-size: 280px 82px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/* video */
.video {
  width: 100% !important;
  height: calc(100vh - 80px);
  position: relative;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}
.video::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #000;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .3;
  z-index: 2;
}
.video video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
/* slick本体 */
.slick {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 3;
}
.slick, .slick .slick-list, .slick .slick-track, .slick .slick-slide {
  height: 100%;
}
/* スライド中央配置 */
.slick .slick-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
/* 画像 */
.slick img {
  max-width: 60%;
  height: auto;
}
.scrolldown {
  position: absolute;
  left: 50%;
  bottom: 10px;
  height: 50px;
  z-index: 5;
}
.scrolldown span {
  position: absolute;
  left: -15px;
  top: -15px;
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  font-family: "Jost", sans-serif;
}
.scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #eee;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
h2.ttl {
  letter-spacing: 0.1em;
  line-height: 1;
  position: relative;
  display: inline-block;
  margin: 30px 0px 40px 0px;
  padding: 0px;
  color: #1a6ecb;
}
h2.ttl mini {
  font-size: 14px;
  color: #1a1a1a;
  font-weight: normal;
  padding-left: 10px;
}
h2.ttl span {
  position: absolute;
  font-size: 16px;
  top: -25px;
  left: 0px;
  white-space: nowrap;
}
h2.ttl:after {
  content: "";
  width: 70px;
  height: 2px;
  background: #1a6ecb;
  position: absolute;
  left: 0;
  top: -7px;
  ;
}
h3.ttl {
  font-size: 16px;
  position: relative;
  margin: 0px;
  padding: 5px;
  box-sizing: border-box;
  background: #1a6ecb;
  color: #fff;
}
h3.banner {
  background: url("../image/banner1.jpg") no-repeat center center/cover;
  padding: 50px 0px;
  width: 100%;
  text-align: center;
  position: relative;
}
h3.banner1 {
  background: url("../image/banner1.jpg") no-repeat center center/cover;
}
h3.banner2 {
  background: url("../image/banner2.jpg") no-repeat center center/cover;
}
h3.banner:after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #000;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .3;
  z-index: 2;
}
h3.banner span {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: normal;
  color: #fff;
}
.article_wrap {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: "Noto Sans JP", sans-serif;
}
/* タイトル */
.article_wrap h3 {
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  letter-spacing: .06em;
  margin-bottom: 30px;
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: 10px;
}
/* 記事 */
.article {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}
/* 日付 */
.article time {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #666;
  min-width: 110px;
  letter-spacing: .05em;
}
/* 本文 */
.article a {
  text-decoration: none;
  color: #222;
  font-size: 15px;
  line-height: 1.7;
  transition: .2s;
}
.article a:hover {
  color: #0a6cc7;
}
.btn {
  border: 1px solid #000;
  position: relative;
  display: inline-block;
  padding: 10px 40px;
  text-decoration: none;
  margin: 20px 0px;
  color: #000;
}
.btn span.view {
  position: relative;
}
.btn span.view::before {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 60px;
  left: calc(100% + 5px);
  height: 1px;
  background: #000;
  transition-timing-function: ease;
  transition-duration: .3s;
}
.btn span.view::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: calc(100% + 63px);
  width: 2px;
  height: 6px;
  background: #000;
  transform: skewX(45deg);
  transition-timing-function: ease;
  transition-duration: .3s;
}
.btn:hover span.view::before {
  width: 90px;
}
.btn:hover span.view::after {
  left: calc(100% + 90px);
}
.btn:hover {
  background: #1a6ecb;
  color: #fff;
}
.linemove {
  position: relative;
  cursor: pointer;
}
.linemove a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.linemove a:hover {
  opacity: 1 !important;
}
.linemove a::before, .linemove a::after {
  content: '';
  position: absolute;
  border: solid #fff;
  width: 0;
  height: 0px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  z-index: 2;
}
.linemove a::before {
  top: 40px;
  left: 40px;
  border-width: 2px 0 0 2px;
  opacity: 1;
}
.linemove a::after {
  bottom: 40px;
  right: 40px;
  border-width: 0 2px 2px 0;
  opacity: 1;
}
.linemove a:hover::before, .linemove a:hover::after {
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  border-color: #fff;
  box-sizing: border-box;
  opacity: 1;
}
.linemove .shadow:before {
  z-index: 1;
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  padding: 0;
  margin: 0;
  display: block;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  top: 20px;
  left: 20px;
}
.linemove .textbox {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  box-sizing: border-box;
  font-weight: bold;
  color: #fff;
  width: 80%;
  z-index: 2;
}
.linemove .textbox p.ttl {
  font-size: 28px;
  letter-spacing: 0.1em;
  font-weight: normal;
  position: relative;
}
.linemove .textbox p.ttl span {
  position: absolute;
  font-size: 16px;
  left: 50%;
  transform: translate(-50%, 0);
  top: -20px;
}
.linemove .textbox p.ttl:after {
  content: "";
  width: 60px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 5px;
  left: 50%;
  margin-left: -30px;
}
.free_dial {
  background: #ebebeb;
}
.free_dial .wrap {
  background: url("../image/callcenter.png") right center/auto 100% no-repeat;
  padding: 30px 0px;
}
.free_dial .wrap h2 {
  color: #1a6ecb;
  text-align: center;
  position: relative;
}
.free_dial .wrap h2:after {
  content: "";
  width: 60px;
  height: 2px;
  background: #1a6ecb;
  position: absolute;
  top: 0px;
  left: 50%;
  margin-left: -30px;
}
.free_dial .wrap h2 span {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: -30px;
  font-size: 16px;
}
.free_dial .wrap p {
  font-size: 13px;
  text-align: center;
}
.phone {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 38px;
  text-decoration: none;
  text-align: center;
}
.phone a {
  color: #1a6ecb !important;
}
.phone img {
  height: 30px;
  margin-right: 10px;
}
.bg {
  background-color: #f2f8fc;
}
.content_box {
  padding: 10px;
  box-sizing: border-box;
  margin: 10px 0px;
  border-bottom: 1px solid #ccc;
}
.content_box h3 {
  color: #1a6ecb;
}
.quality, .licenses, .fleet {
  max-width: 1300px;
  padding: 50px 0px;
  margin: 0 auto;
}
.quality .box18 p {
  color: #1a6ecb;
  font-weight: bold;
}
.quality h2, .licenses h2, .fleet h2 {
  color: #1a6ecb;
  text-align: center;
  position: relative;
}
.quality h2:after, .licenses h2:after, .fleet h2:after {
  content: "";
  width: 60px;
  height: 2px;
  background: #1a6ecb;
  position: absolute;
  top: 0px;
  left: 50%;
  margin-left: -30px;
}
.quality h2 span, .licenses h2 span, .fleet h2 span {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: -30px;
  font-size: 16px;
}
.quality a {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.licenses .box h3 {
  color: #1a6ecb;
  text-align: center;
  padding-top: 40px;
  position: relative;
}
.licenses .box h3:before {
  content: "";
  width: 40px;
  height: 40px;
  background: url("../image/licenses.png") no-repeat center center/cover;
  position: absolute;
  top: 0px;
  left: 50%;
  margin-left: -20px;
}
.licenses .box h3 span {
  display: block;
  font-size: 16px;
  ;
}
.licenses .box h4 {
  text-align: center;
  padding: 0px;
  margin: 5px 0px;
}
.licenses .box p {
  text-align: center;
  padding: 0px;
  margin: 5px 0px;
}
@media (min-width: 768px) {
  .licenses .top_middle {
    display: flex;
    flex-wrap: wrap
  }
  .licenses .top_middle h3 {
    width: 100%;
  }
  .licenses .top_middle div {
    width: 50%;
  }
  .licenses .top_middle:before {
    content: "";
    width: 1px;
    height: 60%;
    top: 30%;
    background: #ccc;
    position: absolute;
    left: 0;
  }
  .licenses .top_middle:after {
    content: "";
    width: 1px;
    height: 60%;
    top: 30%;
    background: #ccc;
    position: absolute;
    right: 0;
  }
}
.fleet .box h3 {
  color: #1a6ecb;
  text-align: center;
  padding-top: 40px;
  position: relative;
}
.fleet .box h3:before {
  content: "";
  width: 40px;
  height: 40px;
  background: url("../image/check.png") no-repeat center center/cover;
  position: absolute;
  top: 0px;
  left: 50%;
  margin-left: -20px;
}
.blue_dl .box dl {
  width: 98%;
  display: flex;
  margin: 1%;
}
.blue_dl .box dl dt {
  width: 70%;
  padding: 3px;
  box-sizing: border-box;
}
.blue_dl .box dl dd {
  width: 30%;
  text-align: right;
  padding: 3px;
  box-sizing: border-box;
}
.fleet dl dt, .fleet dl dd {
  border-bottom: 1px solid #ccc;
}
.map {
  width: 100%;
  height: 500px;
}
h3.sub_ttl {
  margin: 0;
  padding: 0px 0px 0px 20px;
  box-sizing: border-box;
  color: #1a6ecb;
  position: relative
}
h3.sub_ttl:before {
  content: "";
  width: 8px;
  height: 20px;
  background: #1a6ecb;
  position: absolute;
  left: 0;
  top: 8px;
}
.sdgs_icon {
  display: flex;
  width: 100%;
}
.sdgs_icon img {
  width: 25%;
}
.page_head {
  padding: 150px 0px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.page_head::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #000;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .3;
  z-index: 2;
}
.page_head h2 {
  color: #fff;
  position: relative;
  z-index: 3;
  font-size: 32px;
  font-weight: normal;
}
.page_head h2 span {
  display: block;
  position: absolute;
  top: -30px;
  font-size: 16px;
  left: 50%;
  transform: translateX(-50%);
}
.page_company {
  background: url("../image/kaisyaprate.jpg") no-repeat center center;
  background-size: cover;
}
.page_service {
  background: url("../image/gyomu-kanri.jpg") no-repeat center center;
  background-size: cover;
}
.page_licence {
  background: url("../image/page_licence.jpg") no-repeat center center;
  background-size: cover;
}
.page_sdgs {
  background: url("../image/sdgs-seventeen.png") no-repeat center center;
  background-size: cover;
}
.page_faq {
  background: url("../image/untensyu.jpg") no-repeat center center;
  background-size: cover;
}
.page_news {
  background: url(../image/quality3.jpg) no-repeat center center/cover;
}
.txleft {
  text-align: left;
}
.txright {
  text-align: right;
}
.txcenter {
  text-align: center;
}
.floatbox {
  width: 70%;
  margin: 0px auto;
}
.flexbox {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}
.flex-start {
  align-items: flex-start !important;
}
.space-between {
  justify-content: space-between
}
.row-reverse {
  flex-direction: row-reverse;
}
.flexbox .box33 {
  width: 33%;
}
.flexbox .box18 {
  width: 18%;
}
.flexbox .box20 {
  width: 20%;
}
.flexbox .box23 {
  width: 25%;
}
.flexbox .box25 {
  width: 23%;
}
.flexbox .box30 {
  width: 30%;
}
.flexbox .box33 {
  width: 33%;
}
.flexbox .box40 {
  width: 40%;
}
.flexbox .box45 {
  width: 45%;
}
.flexbox .box48 {
  width: 48%;
}
.flexbox .box50 {
  width: 50%;
}
.flexbox .box60 {
  width: 60%;
}
.flexbox .box70 {
  width: 70%;
}
.flexbox .box75 {
  width: 75%;
}
.flexbox .box80 {
  width: 80%;
}
.flexbox .box100 {
  width: 100%;
}
.flexbox .box {
  box-sizing: border-box;
  position: relative;
}
footer {
  text-align: center;
  padding-top: 50px;
}
footer img {
  width: 280px;
  height: auto;
}
footer h3 {
  width: 280px;
  height: 82px;
  margin: 10px auto;
}
footer h3 a {
  width: 280px;
  height: 82px;
  display: block;
  background: url("../image/logo.svg") center center/cover;
  background-size: 280px 82px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.footer_nav {
  background: #1a6ecb;
  color: #fff;
  padding: 20px 0px;
  position: relative;
}
footer ul {
  margin: 10px 0px;
  padding: 0px;
}
footer ul li {
  text-align: center;
  margin: 0px;
  font-size: 80%;
  display: inline-block;
  position: relative;
  padding: 0 10px;
}
footer ul li a {
  color: #fff;
}
footer ul li + li:before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  height: 10px;
  margin: -4px 0px 0px -12px;
  border-right: 1px solid #fff;
}
/* =========================
   floating banner（PC）
========================= */
.floating-banner {
  position: fixed;
  right: 0;
  bottom: 100px;
  z-index: 9999;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* 各ボタン */
.floating-banner li {
  margin-bottom: 10px;
}
/* ボタン本体（縦型） */
.floating-banner li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 160px;
  padding: 10px 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
/* アイコン */
.floating-banner img {
  width: 26px;
  margin-bottom: 10px;
}
/* テキスト縦書き */
.floating-banner span {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 14px;
  letter-spacing: .08em;
}
/* 色 */
.floating-banner .faq a {
  background: #8DBF7A;
}
.floating-banner .contact a {
  background: #1a6ecb;
}
/* =========================
   TOPボタン
========================= */
.to-top {
  position: fixed;
  right: 0;
  bottom: 20px;
  width: 60px;
  height: 80px;
  background: #1a6ecb;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: .3s;
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* =========================
   SP（横並び＋被り防止）
========================= */
@media (max-width: 768px) {
  /* 下固定バー */
  .floating-banner {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    display: flex;
  }
  .floating-banner li {
    flex: 1;
    margin: 0;
  }
  /* 横書きボタン */
  .floating-banner li a {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 60px;
    border-radius: 0;
    padding: 10px;
  }
  .floating-banner img {
    width: 20px;
    margin: 0 8px 0 0;
  }
  .floating-banner span {
    writing-mode: horizontal-tb;
    font-size: 13px;
  }
  .to-top {
    width: 60px;
    height: 60px;
    bottom: 120px;
    font-size: 12px;
  }
}
.copy {
  font-size: 80%;
}
dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
dl.border dt {
  width: 20%;
}
dl.border dd {
  width: 80%;
}
dl.border dt:nth-of-type(odd), dl.border dt:nth-of-type(odd) + dd {
  background-color: #f2f8fc;
}
dl dt {
  padding: 20px 10px;
  box-sizing: border-box;
  margin: 0;
  font-weight: normal;
}
dl dd {
  padding: 20px 10px;
  box-sizing: border-box;
  margin: 0;
}
dl.prof dt {
  width: 20%;
}
dl.prof dd {
  width: 80%;
  text-align: left;
}
dl.prof dd span {
  width: 80px;
  margin-right: 10px;
  display: inline-block;
}
dl.qa {
  background-color: #f2f8fc;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 40px;
}
dl.qa dt, dl.qa dd {
  width: 100%;
  padding: 10px 10px 10px 50px;
  position: relative;
}
dl.qa dt {
  color: #1a6ecb;
  font-weight: bold;
}
dl.qa dt:before {
  content: "Q";
  font-size: 28px;
  font-weight: bold;
  margin-right: 10px;
  color: #1a6ecb;
  position: absolute;
  left: 20px;
  top: -5px;
}
dl.qa dd:before {
  content: "A";
  font-size: 28px;
  font-weight: bold;
  margin-right: 10px;
  position: absolute;
  left: 20px;
  top: -5px;
}
.contactform dl dt {
  width: 25%;
  padding: 20px;
}
.contactform dl dd {
  width: 75%;
  text-align: left;
  padding: 20px;
}
.contactform dl dt:nth-of-type(odd), .contactform dl dd:nth-of-type(odd) {
  background-color: #f2f8fc;
}
@media (max-width: 1000px) {
  .onlypc {
    display: none !important;
  }
  h1 {
    top: 0;
    left: 0;
  }
  header {
    height: 70px;
    z-index: 9;
    width: 100%;
    top: 0;
    padding: 0px;
  }
  .video {
    height: calc(100vh - 70px);
  }
  footer h3 {
    position: relative;
    margin: 0 auto;
  }
  #navTgl {
    display: none;
  }
  label.close {
    background-color: rgba(0, 0, 0, 0);
  }
  label.open, label.close {
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
  }
  .open {
    z-index: 2;
    width: 70px;
    height: 70px;
    margin: 0px;
    -webkit-transition: background-color .6s, -webkit-transform .6s;
    transition: background-color .6s, transform .6s;
    background-color: #1a6ecb;
  }
  .open span {
    position: absolute;
    left: 20px;
    height: 1px;
    width: 30px;
    background-color: #fff;
    display: inline-block;
    box-sizing: border-box;
    transition: background-color .6s, transform .6s;
  }
  .open span:nth-of-type(1) {
    top: 20px;
  }
  .open span:nth-of-type(2) {
    top: 30px;
  }
  .open span:nth-of-type(3) {
    top: 40px;
  }
  .open span:nth-of-type(4) {
    font-size: 10px;
    top: 50px;
    color: #fff;
    background-color: transparent;
  }
  #navTgl:checked + .open {
    -webkit-transform: translate(-240px, 0px);
    transform: translateX(-240px, 0px);
    background-color: transparent;
  }
  #navTgl:checked + .open span:nth-of-type(1) {
    -webkit-transform: translate(0px, 10px)rotate(45deg);
    transform: translateX(0px, 10px) rotate(45deg);
    background-color: #fff;
  }
  #navTgl:checked + .open span:nth-of-type(2) {
    -webkit-transform: translate(0px, 0px)rotate(45deg);
    transform: translateX(0px, 0px) rotate(45deg);
    background-color: #fff;
  }
  #navTgl:checked + .open span:nth-of-type(3) {
    -webkit-transform: translate(0px, -10px)rotate(-45deg);
    transform: translateX(0px, -10px) rotate(-45deg);
    background-color: #fff;
  }
  #navTgl:checked + .open span:nth-of-type(4) {
    display: none;
  }
  .close {
    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: background-color .6s;
  }
  #navTgl:checked ~ .close {
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .menu {
    z-index: 9999;
    position: fixed;
    top: 0;
    right: 0;
    width: 240px;
    height: 100%;
    background-color: #1a6ecb;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform .6s;
    transition: transform .6s;
  }
  #navTgl:checked ~ .menu {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  ul.global {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  ul.global li {
    width: 100%;
    margin: 0px;
    padding: 0px;
    border-bottom: 1px solid #fff;
  }
  ul.global li a {
    width: 100%;
    color: #fff;
    display: block;
  }
  ul.global li span {
    font-size: 12px;
    display: block
  }
  ul.global li:last-child a {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 20px;
    padding: 15px 10px 0px 40px;
    position: relative;
  }
  ul.global li:last-child a:before {
    content: "";
    position: absolute;
    left: 5px;
    width: 30px;
    top: 22px;
    height: 20px;
    background: url("../image/fd_w.png") center center/cover;
  }
  .contents {
    width: 100%;
    padding: 50px 2%;
    box-sizing: border-box;
  }
}
@media (max-width: 768px) {
  .spbox100 {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .spbox50 {
    width: 48% !important;
    margin: 10px 1%;
  }
}
@media (min-width: 1000px) {
  .onlysp {
    display: none;
  }
  #navTgl, label.close, label.open {
    display: none;
  } /* GLOBAL NAV */
  ul.global {
    list-style: none;
    position: absolute;
    top: 10px;
    right: 0;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
  }
  ul.global li {
    margin: 0;
    text-align: center;
  }
  /* リンク */
  ul.global li a {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 14px 24px 16px;
    text-decoration: none;
    line-height: 1.2;
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .05em;
    color: #247dc2;
    transition: opacity .3s ease;
  }
  /* 日本語 */
  ul.global li span {
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
    letter-spacing: .08em;
    color: #000;
    margin: 0;
  }
  /* 下線 */
  ul.global li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #1a6ecb;
    transform: translateX(-50%);
    transition: width .3s ease;
  }
  /* hover */
  ul.global li a:hover {
    opacity: .8;
  }
  ul.global li a:hover::after {
    width: 70%;
  }
  /* current */
  ul.global li.current a::after {
    width: 70%;
  }
  ul.global li:last-child a {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 24px;
    padding: 25px 10px 0px 40px;
  }
  ul.global li:last-child a:before {
    content: "";
    position: absolute;
    left: 0px;
    width: 30px;
    height: 20px;
    background: url("../image/fd.png") center center/cover;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media (max-width: 1400px) {
  ul.global li:last-child a {
    display: none;
  }
}
@media (max-width: 1200px) {
  ul.global li a {
    padding: 14px 6px 16px;
  }
}
.news_archive {
  max-width: 900px;
}
.news_post {
  padding: 0 0 60px;
  margin: 0 0 60px;
  border-bottom: 1px solid #ddd;
}
.news_date {
  display: block;
  margin-bottom: 10px;
  color: #5f7f3d;
  font-weight: bold;
  letter-spacing: .08em;
}
.news_ttl {
  font-size: 32px;
  margin-bottom: 30px;
  line-height: 1.5;
}
.news_ttl a {
  color: inherit;
  text-decoration: none;
  transition: .25s;
}
.news_ttl a:hover {
  color: #5f7f3d;
}
.news_content {
  line-height: 2;
}
.news_content img {
  max-width: 100%;
  height: auto;
}
.navPage {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid #ddd;
}
.navPage div a {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid #5f7f3d;
  color: #5f7f3d;
  text-decoration: none;
  transition: .25s;
}
.navPage div a:hover {
  background: #5f7f3d;
  color: #fff;
}
@media (max-width: 768px) {
  .navPage {
    gap: 10px;
  }
  .navPage div a {
    padding: 12px 18px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .news_post {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .news_ttl {
    font-size: 24px;
  }
}
.single_news {
  max-width: 900px;
}
.news_post {
  padding-bottom: 80px;
}
.news_date {
  display: block;
  margin-bottom: 10px;
  color: #5f7f3d;
  font-weight: bold;
  letter-spacing: .08em;
}
.news_ttl {
  font-size: 38px;
  line-height: 1.5;
  margin-bottom: 40px;
}
.news_content {
  line-height: 2;
}
.news_content img {
  max-width: 100%;
  height: auto;
}
.news_content p {
  margin-bottom: 1.5em;
}
.navPage {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid #ddd;
}
.navPage div a {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid #5f7f3d;
  color: #5f7f3d;
  text-decoration: none;
  transition: .25s;
}
.navPage div a:hover {
  background: #5f7f3d;
  color: #fff;
}
@media (max-width: 768px) {
  .news_ttl {
    font-size: 26px;
  }
  .navPage {
    gap: 10px;
  }
  .navPage div a {
    padding: 12px 18px;
    font-size: 14px;
  }
}
input[type="text"], input[type="email"], input[type="url"], input[type="tel"], select, textarea {
  background-color: #e9e9e9;
  width: 100%;
  color: #000 !important;
  border: none !important;
  font-size: 100%;
  padding: 0.5em;
  border-radius: 4px;
  box-sizing: border-box;
}
.is--must {
  background: #1a6ecb;
  color: #fff;
  padding: 2px 3px;
  margin: 0px 0px 0px 10px;
  font-size: 80%;
}
.wpcf7c-conf, .wpcf7c-conf:focus {
  background-color: transparent !important;
  border: 1px solid #000000;
  box-sizing: border-box;
}
.wpcf7-text:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset;
}
input[type="submit"], input[type="button"] {
  -webkit-appearance: none;
  position: relative !important;
  font-size: 12pt !important;
  line-height: 1.5em !important;
  font-family: 'Noto Sans JP', sans-serif !important;
  border: none !important;
  color: rgba(255, 255, 255, 1.00) !important;
  padding: 10px 0px !important;
  margin: 10px auto !important;
  width: 240px !important;
  box-shadow: none !important;
  border-radius: 0px !important;
  background: #1a6ecb !important;
  cursor: pointer !important;
  display: block;
}
@media screen and (max-width: 768px) {
  input[type="submit"], input[type="button"] {
    margin: 10px 10% !important;
    width: 80% !important;
  }
}
.cf7-cf-turnstile {
  margin: 0 auto !important;
  display: block !important;
}
/* =========================
   MEGA MENU
========================= */
@media (min-width: 1000px) {
  /* 親 */
  ul.global li.hasMega {
    position: relative;
  }
  /* サブメニュー */
  ul.global li.hasMega .megaMenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    background: #fff;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    border-top: 3px solid #1a6ecb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transition: .25s;
    z-index: 9999;
  }
  /* hoverで表示 */
  ul.global li.hasMega:hover .megaMenu {
    opacity: 1;
    visibility: visible;
  }
  /* サブメニュー */
  ul.global li.hasMega .megaMenu li {
    width: 100%;
    margin: 0;
  }
  /* サブリンク */
  ul.global li.hasMega .megaMenu li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    background: none;
  }
  /* hover */
  ul.global li.hasMega .megaMenu li a:hover {
    background: #f2f8fc;
    color: #1a6ecb;
  }
  /* 既存下線無効 */
  ul.global li.hasMega .megaMenu li a::after {
    display: none;
  }
  /* TELメニューの影響除去 */
  ul.global li.hasMega .megaMenu li:last-child a {
    font-family: inherit;
    font-size: 14px;
    padding: 12px 20px;
  }
  ul.global li.hasMega .megaMenu li:last-child a:before {
    display: none;
  }
}
@media (max-width: 1000px) {
  /* 親 */
  ul.global li.hasMega {
    position: relative;
  }
  /* サブメニュー */
  ul.global li.hasMega .megaMenu {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    background: rgba(255, 255, 255, .08);
  }
  /* サブメニュー項目 */
  ul.global li.hasMega .megaMenu li {
    border-top: 1px solid rgba(255, 255, 255, .2);
  }
  /* サブリンク */
  ul.global li.hasMega .megaMenu li a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
    background: none;
  }
  /* before除去 */
  ul.global li.hasMega .megaMenu li a:before {
    display: none;
  }
  /* 下線除去 */
  ul.global li.hasMega .megaMenu li a::after {
    display: none;
  }
}