@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Serif+JP:wght@200..900&display=swap');
/*  font-family: "Noto Serif JP", serif;*/
/* font-family: "Bebas Neue", sans-serif;*/

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: left;
  line-height: 1.7;
  color: #111;
  min-width: 1040px;
  font-family: "Noto Serif JP", 'Open Sans', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Font Awesome 6 Free";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  padding: 0;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

li {
  list-style-type: none;
}

p {
  padding: 0;
  margin: 0;
}

img {
  -webkit-touch-callout: none;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
  display: block;
}

a {
  text-decoration: none;
  color: #111;
  outline: none;
}

a:active,
a:hover,
a:focus {
  outline: none;
}

a,
input {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}

a:hover,
.link input:hover {
  opacity: 0.6;
}

@media only screen and (max-width: 768px) {
  body {
    width: 100%;
    min-width: 0;
  }

  a {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
  }

  a:hover {
    opacity: 1;
  }

}


/*============================
flex
============================*/

.flex {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

/*============================
脚注文字表記etc.
============================*/

.eng {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 500;
}

.min {
  font-size: 13px;
  display: block;
}

.min-info {
  font-size: 13px;
  padding-left: 16px;
  color: #999;
  display: block;
  position: relative;
}

.min-info::before {
  position: absolute;
  content: '※';
  top: 0;
  left: 0;
}

.lead {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 30px;
}

.catch {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 30px;
}

/*============================
表示切り替え
============================*/

.sp-only {
  display: none;
}


@media only screen and (max-width: 768px) {

  /*============================
脚注文字表記etc.
============================*/
  .min {
    font-size: 12px;
  }

  .lead {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  .catch {
    font-size: 24px;
    margin-bottom: 15px;
  }

  /*============================
表示切り替え
============================*/
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

/*============================
wrapper
============================*/

.wrapper {
  position: relative;
}

/*============================
inner
============================*/

.inner {
  width: 1040px;
  margin: auto;
}

@media only screen and (max-width: 768px) {
  .inner {
    width: 100%;
  }
}

/*============================
header
============================*/

#top {
  padding: 15px 15px 0 20px;
  position: fixed;
  width: 100%;
  transition: 0.5s;
  z-index: 10000;
}

#top.move {
  background-color: #fff;
  padding: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
}

#top .flex {
  align-items: center;
}

#top .siteTitle {
  width: 187px;
}

#top p.siteTitle {
  display: block;
}

#top h1.siteTitle {
  display: none;
}

#top.move .siteTitle {
  padding-left: 10px;
}

.siteTitle a {
  padding-top: 27.5401%;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  background: url(../images/common/header/sitetitle.png) no-repeat left center;
  background-size: 100%;
}

#top.move .siteTitle a {
  background-image: url(../images/common/header/sitetitle-move.png);
  background-size: 100%;
}

@media only screen and (max-width: 980px) {
  #top {
    padding: 5px 0 5px 5px;
    width: 100%;
    min-width: 0;
  }

  #top.move {
    padding: 7px 5px;
  }

  #top .siteTitle {
    width: 120px;
  }
}

/*============================
nav
============================*/

#top .globalNav {
  padding: 15px 18px;
  background-color: #fff;
  border-radius: 3px;
}

#top .globalNav li a {
  padding: 0 12px;
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

#top .globalNav li a .eng {
  margin-bottom: 6px;
  display: block;
  font-size: 14px;
  color: #00991a;
}

nav > a {
  margin-left: 10px;
  padding: 22px 30px 18px 30px;
  font-size: 28px;
  line-height: 0.9;
  color: #fff;
  background-color: #00991a;
  border-radius: 3px;
}

#top.move nav > a {
  padding: 22px 20px 18px 20px;
  margin-left: 0;
  border-radius: 0;
}

@media only screen and (max-width: 980px) {

  #top nav {
    margin: 0;
    padding-top: 40px;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: scroll;
  }

  #top .globalNav {
    padding: 0;
    border-radius: 0;
    background-color: transparent;
  }

  #top .globalNav li {
    float: none;
    width: 100%;
    position: relative;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    background-color: transparent;
  }

  #top .globalNav li:first-of-type {
    border: none;
  }

  #top .globalNav li:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }

  #top .globalNav li a {
    overflow: inherit;
    width: 100%;
    height: inherit;
    color: #fff;
    padding: 15px;
    text-align: left;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    background: none;
  }

  #top .globalNav li a:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.0);
  }

  #top .globalNav li:last-of-type a:hover {
    background-color: #656565;
  }

  #top .globalNav li a span {
    display: block;
    font-size: 14px;
    letter-spacing: 0;
    font-weight: normal;
  }

  #top .globalNav li:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 18px;
    margin: auto;
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 10;
  }
}

/*============================
menu(sp)  ハンバーガー
============================*/

.menu {
  display: none;
}

@media only screen and (max-width: 980px) {
  .menu {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 16px;
    z-index: 1000;
    width: 31px;
    height: 23px;
  }

  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }

  .menu-trigger {
    position: relative;
    width: 31px;
    height: 23px;
  }

  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #00991a;
  }

  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }

  .menu-trigger span:nth-of-type(2) {
    top: 10px;
  }

  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  /* anime */
  .active .menu-trigger span {
    background-color: #00991a;
  }

  .active .menu-trigger span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }

  .active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }

  .active .menu-trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
}

/*============================
cont_img
============================*/

.cont_img {
  background: url(../images/common/cont_img.jpg) no-repeat center center;
  background-size: cover;
  height: 395px;
  position: relative;
}

.cont_img h1 {
  position: absolute;
  bottom: 0;
  left: 10%;
  padding: 30px 100px 20px 5px;
  line-height: 1.3;
  font-size: 16px;
  letter-spacing: 0.06em;
  background-color: #fff;
  width: auto;
  align-items: flex-end;
  border-top-right-radius: 30px;
}

.cont_img h1::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 80%;
  height: 100%;
  top: 0;
  left: -80%;
}

.cont_img h1 span.eng {
  display: block;
  color: #00991a;
  font-size: 84px;
  line-height: 1;
}

@media only screen and (max-width: 768px) {

  .cont_img {
    height: 175px;
  }

  .cont_img h1 {
    padding: 15px 30px 10px 5px;
    line-height: 1.3;
    font-size: 13px;
    border-top-right-radius: 20px;
  }

  .cont_img h1 span.eng {
    font-size: 36px;
  }
}

/*============================
パンくず
============================*/

.root {
  font-size: 14px;
  padding: 10px 20px;
  background-color: #004a1d;
  color: #fff;
}

.root ul {
  display: flex;
  overflow: hidden;
}

.root li {
  position: relative;
  letter-spacing: 0;
  padding-bottom: 0;
  white-space: nowrap;
}

.root li a {
  color: #fff;
}

.root li::before {
  content: '>';
  margin: 0 5px;
}

.root li:first-child {
  margin-left: 0;
}

.root li:first-child:before {
  display: none;
}


@media only screen and (max-width: 768px) {
  .root {
    overflow-x: auto;
    font-size: 13px;
  }
}

/*============================
container
============================*/

.cont .container {
  width: 1040px;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 100px;
  text-align: left;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {

  .cont .container {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 0;
  }
}

/*============================
Link
============================*/

.link {
  width: 100%;
  margin: auto;
  padding-top: 60px;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.link a,
.link li input {
  display: block;
  line-height: inherit;
  width: 320px;
  padding: 13px 0;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
  color: #fff;
  border: none;
  border-radius: 50px;
  background-color: #00991a;
  position: relative;
}

.link a::before,
.link li input::before,
.formBtn li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  margin: auto;
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 10;
}

@media only screen and (max-width: 768px) {
  .link {
    padding-top: 20px;
  }

  .link a,
  .link li input {
    width: 100%;
    margin: 0;
    margin-top: 20px;
  }

  .cont .link li {
    width: 90%;
  }
}

/*============================
primary
============================*/

.primary {
  width: 760px;
  float: left;
}

.cont .primary article {
  padding-top: 80px;
}

.cont .primary article:first-of-type {
  padding-top: 0;
}

.primary .inner p {
  margin-top: 15px;
}

.primary .inner p:first-of-type {
  margin-top: 0;
}

.cont .primary .inner {
  width: 100%;
}

.cont h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 40px;
}

.cont h2 span {
  position: relative;
}

.cont h2 span::before {
  position: absolute;
  content: '';
  display: block;
  top: 50%;
  right: -40px;
  width: 30px;
  height: 1px;
  background-color: #10348f;
}

.cont h3 {
  padding: 10px 20px;
  margin: 60px 0 30px;
  font-size: 18px;
  font-weight: 700;
  border-left: 8px solid #00991a;
  border-bottom: 1px solid #cbcbcb;
}

@media only screen and (max-width: 768px) {

  .primary {
    width: 90.625%;
    margin: auto;
    float: none;
  }

  .cont .primary article {
    padding-top: 40px;
  }

  .cont h2 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .cont h2 span::before {
    right: -30px;
    width: 20px;
  }

  .cont h3 {
    padding: 10px;
    margin: 30px 0 20px;
    font-size: 16px;
  }
}


/*============================
table
============================*/

table.info {
  width: 100%;
}

table.info tr {
  display: flex;
  justify-content: space-between;
}

table.info tr:nth-of-type(n+2) {
  padding-top: 10px;
}

table.info th,
table.info td {
  padding: 15px 0;
}

table.info th {
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #f8f8f8;
  border-radius: 3px;
}

table.info td {
  width: 610px;
  text-align: left;
  padding: 15px 20px;
  background-color: rgba(248, 248, 248, 0.5);
  border-radius: 3px;
}

table.info td ul.list {
  padding-left: 18px;
}

table.info td ul.list li {
  position: relative;
}

table.info td ul.list li::before {
  position: absolute;
  content: '';
  display: block;
  top: 50%;
  left: -15px;
  width: 4px;
  height: 4px;
  background-color: #10348f;
  border-radius: 50px;
  z-index: 100;
}

table.info td ul.list li:nth-of-type(n+2) {
  margin-top: 5px;
}

a.google::before {
  content: '\f3c5';
  font-weight: 900;
  margin-right: 5px;
  color: #00991a;
  font-family: "Font Awesome 6 Free";
}

a.google {
  display: block;
  margin: 5px 0;
  font-weight: 700;
}

/* googlemap */

#map {
  width: 100%;
  height: 400px;
}

#map iframe {
  width: 100%;
  height: 100%;
}

.cont #map {
  margin-top: 40px;
}

@media only screen and (max-width: 768px) {

  table.info th,
  table.info td {
    padding: 12px 0;
    border-radius: 2px;
  }

  table.info th {
    width: 120px;
    font-size: 13px;
    margin-right: 10px;
  }

  table.info td {
    width: 100%;
    padding-left: 10px;
    font-size: 14px;
  }

  /* googlemap */
  #map {
    height: 300px;
  }

  .cont #map {
    margin-top: 20px;
  }
}

/*============================
secondary
============================*/

.secondary {
  width: 245px;
  float: right;
}

/* バナー */

.secondary .banner li {
  margin-top: 20px;
}

.secondary .banner li:first-child {
  margin-top: 0;
}

.secondary .banner li a {
  display: block;
}

.secondary .banner li a img {
  width: 100%;
}

/* 会社概要 */

.company {
  margin-top: 30px;
}

.company .photo img {
  width: 100%;
  border-radius: 3px 3px 0 0;
}

.company dl {
  background: #f8f8f8;
  padding: 25px 20px;
  font-size: 15px;
  border-radius: 0 0 3px 3px;
}

.company a.google i {
  margin-bottom: 15px;
}

.company li.btn {
  margin-top: 15px;
}

.company .btn a {
  padding: 12px;
  display: block;
  text-align: center;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-weight: 700;
  background-color: #00991a;
  border-radius: 50px;
}

@media only screen and (max-width: 768px) {
  .secondary {
    padding: 0;
    margin: 0;
    float: none;
    width: 100%;
    border-top: 1px solid #eee;
    margin-top: 30px;
  }

  .company .photo img {
    width: 100%;
    border-radius: 0;
  }

  .secondary .banner {
    width: 90.625%;
    margin: auto;
    padding: 30px 0;
  }

  .secondary .banner li {
    width: 100%;
  }

  .company {
    margin: 0;
  }

  .company dl {
    padding-bottom: 30px;
  }

  .company .btn a {
    padding: 10px 0;
    font-size: 16px;
  }
}

/*============================
.footer-recruit
============================*/

.footer-recruit {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 80px 0 85px;
  color: #fff;
  font-weight: 600;
}

.footer-recruit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/common/footer-recruit/bg.png) no-repeat right center;
  background-size: cover;
  transition: transform .4s ease;
  z-index: 0;
}

.footer-recruit::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: transparent;
  transition: .4s ease;
}

.footer-recruit:hover {
  opacity: 1;
}

.footer-recruit:hover::before {
  transform: scale(1.1);
}

.footer-recruit:hover::after {
  background: rgba(0, 0, 0, 0.4);
}

.footer-recruit .inner {
  position: relative;
  z-index: 1;
}

.footer-recruit img {
  width: 236px;
}

.footer-recruit .recruit-link {
  margin-top: 50px;
}

.footer-recruit .recruit-link span {
  text-align: left;
  font-size: 18px;
  margin-top: 50px;
  position: relative;
}

.footer-recruit .recruit-link span::before {
  position: absolute;
  content: '';
  top: -15px;
  right: -77px;
  background-color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50px;
}

.footer-recruit .recruit-link span::after {
  position: absolute;
  content: ' \f35d';
  display: block;
  font-size: 15px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  right: -55px;
  bottom: -2px;
  color: #00991a;
  transition: .4s ease;
}

.footer-recruit:hover .recruit-link span::after {
  transform: scale(1.1);
}


@media only screen and (max-width: 768px) {
  .footer-recruit {
    padding: 40px 0 45px;
  }

  .footer-recruit::before {
    background: url(../images/common/footer-recruit/bg_sp.png) no-repeat right bottom;
    background-size: cover;
  }

  .footer-recruit:hover::before {
    transform: none;
  }

  .footer-recruit:hover::after {
    background-color: transparent;
  }

  .footer-recruit .inner {
    width: 90.625%;
  }

  .footer-recruit img {
    width: 140px;
  }

  .footer-recruit .recruit-link {
    margin-top: 30px;
  }

  .footer-recruit .recruit-link span {
    font-size: 16px;
  }

  .footer-recruit .recruit-link span::before {
    right: -63px;
    width: 50px;
    height: 50px;
  }

  .footer-recruit .recruit-link span::after {
    font-size: 13px;
    right: -46px;
    bottom: 3px;
  }

  .footer-recruit:hover .recruit-link span::after {
    transform: none;
  }
}

/*============================
toTop
============================*/

.toTop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 10000;
}

.toTop li a {
  padding-top: 45px;
  display: block;
  overflow: hidden;
  width: 45px;
  height: 0;
  background: url(../images/common/footer/totop.png) no-repeat center top #00991a;
  border-radius: 50px;
}

@media only screen and (max-width: 768px) {
  .toTop li a {
    width: 40px;
    height: 40px;
    padding-top: 40px;
    background-image: url(../images/common/footer/totop_sp.png);
    background-size: 40px;
  }
}

/*============================
.bl_floatingBanner
========================== */

.bl_floatingBanner {
  position: fixed;
  bottom: 65px;
  right: 10px;
  width: 127px;
  z-index: 10000;
}

.bl_floatingBanner a {
  display: block;
  width: 100%;
}

.bl_floatingBanner_img {
  display: block;
  transition: 0.3s;
  cursor: pointer;
}

.bl_floatingBanner_img img {
  width: 100%;
}

@media only screen and (max-width: 768px) {

  .bl_floatingBanner {
    bottom: 60px;
    width: 92.5px;
  }

  .bl_floatingBanner a img {
    padding-top: 95.6756%;
    display: block;
    overflow: hidden;
    height: 0;
    width: 100%;
    background: url(../images/common/floating_sp.png) no-repeat center center;
    background-size: 100%;
  }

  .bl_floatingBanner_img:hover {
    opacity: 1;
  }
}

/*============================
footer
============================*/

footer {
  background: #004a1d;
}

footer .inner {
  position: relative;
  padding: 80px 0;
}

footer .inner .flex {
  align-items: center;
}

footer .detail {
  color: #fff;
  font-size: 15px;
}

footer .detail .siteTitle {
  width: 130px;
  margin: 0 50px 0 0;
}

footer .detail .siteTitle a {
  padding-top: 39.2996%;
  background-image: url(../images/common/footer/sitetitle.png);
  background-size: 100%;
}

footer .contact {
  display: block;
  background-color: #00991a;
  color: #fff;
  padding: 20px 90px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

footer .footer-nav {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(2, 45, 19, 0.5);
}

footer .footer-nav .sitelink li a {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding-right: 30px;
}

footer .footer-nav .sublink li a {
  color: #fff;
  position: relative;
  padding-left: 30px;
  font-size: 13px;
  line-height: 1;
}

footer .copyright {
  text-align: center;
  font-size: 15px;
  line-height: 1;
  padding: 15px 0;
  color: #FFF;
  background-color: #004a1d;
}

@media only screen and (max-width: 768px) {

  footer .inner {
    position: relative;
    width: 90.625%;
    padding: 40px 0;
    display: block;
  }

  footer .detail {
    color: #fff;
    font-size: 14px;
  }

  footer .detail .siteTitle {
    margin: 0;
    margin-bottom: 15px;
  }

  footer .contact {
    margin-top: 15px;
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
  }

  footer .footer-nav {
    margin-top: 20px;
    padding-top: 20px;
  }

  footer .footer-nav .sitelink {
    width: 100%;
  }

  footer .footer-nav .sitelink li {
    border-left: none;
    background: rgba(0, 0, 0, 0.2);
    width: 49%;
    margin-bottom: 2%;
    border-radius: 3px;
  }

  footer .footer-nav .sitelink li a {
    padding: 10px;
  }

  footer .footer-nav .sublink li a {
    margin-top: 20px;
    text-align: left;
    padding-left: 0;
    padding-right: 10px;
    display: block;
  }

  footer .copyright {
    font-size: 13px;
  }
}

/*============================
common_js
============================*/

.sa {
  opacity: 0;
  transition: all 0.8s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa--lr {
  transform: translate(-100px, 0);
}

.sa--rl {
  transform: translate(100px, 0);
}

.sa--up {
  transform: translate(0, 100px);
}

.sa--down {
  transform: translate(0, -100px);
}

.sa--scaleUp {
  transform: scale(.5);
}

.sa--scaleDown {
  transform: scale(1.5);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}
