@charset "UTF-8";
/* CSS Document */
/*==================================================
Foundation
==================================================*/
/*--------------------------------------------------
Font
--------------------------------------------------*/
/*@font-face {
  font-family: '';
  font-weight: normal;
  src: url('../font/') format('');
  font-display: swap;
}*/
.mincho {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
}

.gothic {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/*--------------------------------------------------
Media Query
--------------------------------------------------*/
.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.tb {
  display: block;
}
@media screen and (max-width: 960px) {
  .tb {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

/*--------------------------------------------------
Base
--------------------------------------------------*/
*, ::before, ::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1em;
  line-height: 2;
  color: #313131;
  position: relative;
  overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 0.875rem;
  }
}
body.is-fixed {
  overflow: hidden;
  height: 100%;
}

#container {
  min-width: 375px;
}

main p {
  margin-bottom: 1em;
}

a {
  text-decoration: none;
  word-break: break-word;
  color: inherit;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

article a {
  text-decoration: underline;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  margin: 0;
}

address {
  font-style: normal;
}

small {
  font-size: 100%;
}

iframe {
  vertical-align: bottom;
  max-width: 100%;
  max-height: 100%;
}

input, select, textarea {
  font-size: 16px !important;
}

button {
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

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

img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

video {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/*==================================================
Layout
==================================================*/
/*--------------------------------------------------
Header
--------------------------------------------------*/
.header {
  background-color: #fff;
  width: 100%;
  padding: 36px 4%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 10px;
  }
}
.header.is-fixed {
  position: fixed;
  z-index: 9;
  top: 0;
  right: 0;
  left: 0;
}
.header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4%;
  max-width: 1800px;
  margin: 0 auto;
}
.header .logo {
  margin-bottom: -80px;
}
@media screen and (max-width: 768px) {
  .header .logo img {
    max-height: 40px;
  }
}
.header .gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .header .gnav {
    display: none;
  }
}
.header .gnav .gnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
}
.header .gnav .gnav-list > li {
  font-size: 18px;
  font-size: clamp(1rem, 0.9762rem + 0.119vw, 1.125rem);
  font-weight: bold;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header .gnav .gnav-list > li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .gnav .gnav-list > li a:hover {
  color: #10552b;
}
.header .contact-btn {
  width: 180px;
}
.header .contact-btn a {
  display: block;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 99px;
  font-size: 16px;
  text-align: center;
  padding: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .contact-btn a:hover {
  opacity: 0.7;
}
.header .menu-btn {
  display: none;
  background-color: #fff;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 9;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header .menu-btn {
    display: block;
  }
}
.header .menu-btn > span {
  display: block;
  background-color: #10552b;
  width: 30px;
  height: 4px;
  margin: auto;
  position: absolute;
  top: 9px;
  left: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .menu-btn > span:nth-child(2) {
  top: 19px;
}
.header .menu-btn > span:nth-child(3) {
  top: 29px;
}
.header .menu-btn.is-active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
}
.header .menu-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.header .menu-btn.is-active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
          transform: translateY(-10px) rotate(45deg);
}
.header .menu {
  display: none;
  background-color: #10552b;
  color: #fff;
  position: fixed;
  z-index: 9;
  top: 60px;
  left: 0;
  width: 100%;
  padding: 0 4%;
}
.header .menu-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.header .menu-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.header .menu-nav .menu-list {
  max-width: 400px;
  width: 100%;
}
.header .menu-nav .menu-list > li {
  border-bottom: 1px solid #fff;
  font-size: 13px;
}
.header .menu-nav .menu-list > li:last-child {
  border-bottom: 0;
}
.header .menu-nav .menu-list > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 20px 16px 20px 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.header .menu-nav .menu-list > li a::before {
  content: "";
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 28px;
  left: 10px;
}
.header .menu-nav .menu-list > li a:hover {
  color: #dd3333;
}

/*--------------------------------------------------
Footer
--------------------------------------------------*/
.footer-contact {
  background-color: #ccc;
  background: url(../img/common/footer-contact-bg.jpg) no-repeat center/cover;
  color: #fff;
  padding: 80px 4%;
}
.footer-contact .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  max-width: 1800px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .footer-contact .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-contact .heading {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer-contact .heading {
    font-size: 24px;
  }
}
.footer-contact .heading .small {
  display: block;
  font-size: 16px;
}
.footer-contact .heading .small::before {
  content: "●";
  color: #65bb83;
  margin: 0 10px;
}
.footer-contact .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 46.6666666667%;
}
@media screen and (max-width: 1280px) {
  .footer-contact .contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    width: auto;
  }
}
.footer-contact .tel {
  font-size: 48px;
  font-size: clamp(1.125rem, 0.8393rem + 1.4286vw, 2.625rem);
  font-weight: bold;
  font-style: italic;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .footer-contact .tel {
    font-size: 40px;
    font-size: clamp(1.125rem, 0.1017rem + 5.1163vw, 2.5rem);
  }
}
.footer-contact .tel .small {
  font-size: 28px;
  font-size: clamp(1.125rem, 0.6599rem + 2.3256vw, 1.75rem);
}
.footer-contact .btn {
  max-width: 320px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer-contact .btn {
    max-width: 275px;
    margin: 0 auto;
  }
}
.footer-contact .btn a {
  display: block;
  border: 1px solid #fff;
  border-radius: 99px;
  font-size: 16px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .footer-contact .btn a {
    font-size: 13px;
    padding: 15px;
  }
}
.footer-contact .btn a::after {
  content: "●";
  display: inline-block;
  color: #65bb83;
  width: 10px;
  height: 10px;
  margin-left: 1em;
}
.footer-contact .btn a:hover {
  opacity: 0.7;
}

.footer {
  background-color: #10552b;
  color: #fff;
  padding: 80px 4%;
}
@media screen and (max-width: 768px) {
  .footer {
    font-size: 13px;
    padding: 40px 4%;
  }
}
.footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4%;
  max-width: 1800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer .logo {
  font-size: 18px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .footer .logo {
    text-align: center;
  }
}
.footer .address {
  font-size: 15px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .footer .address {
    font-size: 14px;
    text-align: center;
    margin-bottom: 2em;
  }
}
.footer .nav {
  margin-bottom: 2em;
}
.footer .nav .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em 0;
}
@media screen and (max-width: 768px) {
  .footer .nav .nav-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1em 0;
  }
}
.footer .nav .nav-list > li {
  font-size: 15px;
  padding: 0 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer .nav .nav-list > li {
    padding: 0 1em;
  }
}
.footer .nav .nav-list > li::after {
  content: "";
  background-color: #fff;
  width: 1px;
  height: 1em;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.footer .nav .nav-list > li a:hover {
  text-decoration: underline;
}
.footer .nav .nav-list > li:last-child::after {
  display: none;
}
.footer .copyright {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .footer .copyright {
    font-size: 12px;
    text-align: center;
  }
}

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
}
@media screen and (max-width: 768px) {
  .pagetop {
    right: 10px;
    bottom: 10px;
  }
}

/*--------------------------------------------------
Main
--------------------------------------------------*/
.pagehead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ccc;
  background-image: url(../img/common/pagehead.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  height: 500px;
  padding: 20px 4%;
}
@media screen and (max-width: 768px) {
  .pagehead {
    height: 200px;
  }
}
.pagehead .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pagehead .pagettl {
  font-size: 70px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .pagehead .pagettl {
    font-size: 35px;
  }
}
.pagehead .pagettl .small {
  display: block;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .pagehead .pagettl .small {
    font-size: 14px;
  }
}
.pagehead .pagettl .small::before, .pagehead .pagettl .small::after {
  content: "●";
  color: #65bb83;
  margin: 0 10px;
}

.breadcrumb {
  padding: 10px 4%;
}
.breadcrumb .breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 1500px;
  margin: 0 auto;
}
.breadcrumb .breadcrumb-list > li {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .breadcrumb .breadcrumb-list > li {
    font-size: 12px;
  }
}
.breadcrumb .breadcrumb-list > li::after {
  content: ">";
  margin: 0 5px;
}
.breadcrumb .breadcrumb-list > li a:hover {
  text-decoration: underline;
}
.breadcrumb .breadcrumb-list > li:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 14em;
}
.breadcrumb .breadcrumb-list > li:last-child::after {
  display: none;
}

/*==================================================
Object
==================================================*/
/*--------------------------------------------------
Component
--------------------------------------------------*/
.c-section {
  padding: 100px 4%;
}
@media screen and (max-width: 768px) {
  .c-section {
    padding: 50px 4%;
  }
}
.c-section:last-child {
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .c-section:last-child {
    padding-bottom: 75px;
  }
}

.c-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.c-heading {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 1em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-heading {
    font-size: 24px;
  }
}
.c-heading .small {
  display: block;
  font-size: 16px;
}
.c-heading .small::before, .c-heading .small::after {
  content: "●";
  color: #65bb83;
  margin: 0 10px;
}

.c-btn {
  max-width: 320px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-btn {
    max-width: 275px;
  }
}
.c-btn a {
  display: block;
  background-color: #202020;
  border: 1px solid #202020;
  border-radius: 0;
  color: #fff;
  font-size: 16px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .c-btn a {
    font-size: 13px;
    padding: 15px;
  }
}
.c-btn a:hover {
  opacity: 0.7;
}

.c-red {
  color: #e71f19;
}

/*--------------------------------------------------
Form
--------------------------------------------------*/
.contact-form table th, .contact-form table td {
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .contact-form table th, .contact-form table td {
    display: block;
  }
}
.contact-form table th {
  vertical-align: top;
  text-align: left;
  width: 270px;
}
@media screen and (max-width: 768px) {
  .contact-form table th {
    width: auto;
  }
}
.contact-form .required {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
  background-color: #ff4747;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff4747), to(#ff0b0b));
  background: linear-gradient(#ff4747, #ff0b0b);
  border-radius: 3px;
  color: #fff;
  font-size: 9px;
  font-weight: normal;
  text-shadow: 0 0 3px #000;
  margin-left: 1em;
  width: 26px;
  height: 26px;
  padding: 3px;
}
.contact-form .col-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.contact-form .row-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.contact-form label {
  cursor: pointer;
}
.contact-form [type=text], .contact-form [type=email], .contact-form [type=tel] {
  background-color: #fff;
  border: 1px solid #ccc;
  max-width: 370px;
  width: 100%;
  min-height: 40px;
  padding: 10px;
}
.contact-form [type=number] {
  background-color: #fff;
  border: 1px solid #ccc;
  max-width: 100px;
  width: 100%;
  min-height: 40px;
  padding: 10px;
}
.contact-form select {
  border: 1px solid #ccc;
  padding: 10px;
}
.contact-form textarea {
  background-color: #fff;
  border: 1px solid #ccc;
  max-width: 740px;
  width: 100%;
  height: 180px;
  padding: 10px;
}
.contact-form ::-webkit-input-placeholder {
  color: #ccc;
}
.contact-form ::-moz-placeholder {
  color: #ccc;
}
.contact-form :-ms-input-placeholder {
  color: #ccc;
}
.contact-form ::-ms-input-placeholder {
  color: #ccc;
}
.contact-form ::placeholder {
  color: #ccc;
}
.contact-form .privacy {
  margin: 2em 0;
}
.contact-form .privacy .privacy__heading {
  font-weight: bold;
  color: #00457f;
  margin-bottom: 1em;
}
.contact-form .privacy .privacy__box {
  border: 1px solid #ccc;
  height: 390px;
  padding: 20px;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .contact-form .privacy .privacy__box {
    height: 200px;
    padding: 10px;
  }
}
.contact-form .privacy dl {
  margin: 2em 0;
}
.contact-form .privacy dl div {
  margin-bottom: 2em;
}
.contact-form .privacy dl dt {
  font-weight: bold;
}
.contact-form .agree {
  text-align: center;
  margin: 2em 0;
}
.contact-form .btn {
  max-width: 140px;
  width: 100%;
  margin: 20px auto;
}
.contact-form .btn button, .contact-form .btn input {
  background-color: #10552b;
  border: 1px solid #10552b;
  border-radius: 99px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .contact-form .btn button, .contact-form .btn input {
    font-size: 13px;
    padding: 15px;
  }
}
.contact-form .btn button:hover, .contact-form .btn input:hover {
  opacity: 0.7;
}

.recruit-form {
  background-color: #fff;
  margin: 40px 0;
  padding: 60px;
}
@media screen and (max-width: 768px) {
  .recruit-form {
    padding: 20px;
  }
}
.recruit-form .table-wrap table tr {
  border: 1px solid #bbb;
}
.recruit-form .table-wrap table th, .recruit-form .table-wrap table td {
  border: 1px solid #bbb;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .recruit-form .table-wrap table th, .recruit-form .table-wrap table td {
    display: block;
    padding: 10px;
  }
}
.recruit-form .table-wrap table th {
  background-color: #f5f5f5;
  vertical-align: top;
  text-align: left;
  width: 270px;
}
@media screen and (max-width: 768px) {
  .recruit-form .table-wrap table th {
    width: 100%;
  }
}
.recruit-form .required {
  color: #e71f19;
}
.recruit-form .col-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.recruit-form .row-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.recruit-form label {
  cursor: pointer;
}
.recruit-form [type=text], .recruit-form [type=email], .recruit-form [type=tel] {
  background-color: #fff;
  border: 1px solid #ccc;
  max-width: 370px;
  width: 100%;
  min-height: 40px;
  padding: 10px;
}
.recruit-form [type=number] {
  background-color: #fff;
  border: 1px solid #ccc;
  max-width: 100px;
  width: 100%;
  min-height: 40px;
  padding: 10px;
}
.recruit-form select {
  border: 1px solid #ccc;
  padding: 10px;
}
.recruit-form textarea {
  background-color: #fff;
  border: 1px solid #ccc;
  max-width: 740px;
  width: 100%;
  height: 180px;
  padding: 10px;
}
.recruit-form ::-webkit-input-placeholder {
  color: #ccc;
}
.recruit-form ::-moz-placeholder {
  color: #ccc;
}
.recruit-form :-ms-input-placeholder {
  color: #ccc;
}
.recruit-form ::-ms-input-placeholder {
  color: #ccc;
}
.recruit-form ::placeholder {
  color: #ccc;
}
.recruit-form .privacy {
  margin: 2em 0;
}
.recruit-form .privacy .privacy__heading {
  font-weight: bold;
  color: #00457f;
  margin-bottom: 1em;
}
.recruit-form .privacy .privacy__box {
  border: 1px solid #ccc;
  height: 390px;
  padding: 20px;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .recruit-form .privacy .privacy__box {
    height: 200px;
    padding: 10px;
  }
}
.recruit-form .privacy dl {
  margin: 2em 0;
}
.recruit-form .privacy dl div {
  margin-bottom: 2em;
}
.recruit-form .privacy dl dt {
  font-weight: bold;
}
.recruit-form .agree {
  text-align: center;
  margin: 2em 0;
}
.recruit-form .btn {
  max-width: 180px;
  width: 100%;
  margin: 20px auto;
}
.recruit-form .btn button, .recruit-form .btn input {
  background-color: #b9b9b9;
  border: 1px solid #b9b9b9;
  border-radius: 0;
  color: #313131;
  font-size: 16px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .recruit-form .btn button, .recruit-form .btn input {
    font-size: 13px;
    padding: 15px;
  }
}
.recruit-form .btn button:hover, .recruit-form .btn input:hover {
  opacity: 0.7;
}

div.cf-turnstile {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

/*--------------------------------------------------
Pagination
--------------------------------------------------*/
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.2em;
  line-height: 1;
  padding: 2em 0;
}
.pagination .pagination-last,
.pagination .pagination-first,
.pagination .pagination-next,
.pagination .pagination-prev,
.pagination .pagination-item a,
.pagination .is-current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  text-decoration: none;
  background-color: #f3f3f3;
  border: 1px solid #ccc;
  min-width: 32px;
  min-height: 32px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0.5em 0.5em;
  margin: 0 0.2em;
}
.pagination .pagination-last:hover:not(li),
.pagination .pagination-first:hover:not(li),
.pagination .pagination-next:hover:not(li),
.pagination .pagination-prev:hover:not(li),
.pagination .pagination-item a:hover:not(li),
.pagination .is-current:hover:not(li) {
  background: #ddd;
}
.pagination .pagination-list {
  display: none;
}
@media (min-width: 520px) {
  .pagination .pagination-list {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 960px) {
  .pagination .pagination-list {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (min-width: 520px) {
  .pagination .is-current {
    background: #202020;
    color: #fff;
    font-weight: bold;
  }
}
.pagination .pagination-page {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  border: 1px solid #ccc;
  padding: 1em;
}
@media (min-width: 520px) {
  .pagination .pagination-page {
    display: none;
  }
}
.pagination .pagination-prev {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 520px) {
  .pagination .pagination-prev {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 960px) {
  .pagination .pagination-prev {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.pagination .pagination-next {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media (min-width: 520px) {
  .pagination .pagination-next {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (min-width: 960px) {
  .pagination .pagination-next {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.pagination .pagination-first {
  display: none;
}
@media (min-width: 960px) {
  .pagination .pagination-first {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.pagination .pagination-last {
  display: none;
}
@media (min-width: 960px) {
  .pagination .pagination-last {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.pagenav {
  padding: 2em 0;
}
.pagenav .pagenav-list {
  background-color: #f3f3f3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 4%;
  padding: 1em 2em;
}
.pagenav .pagenav-list > li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .pagenav .pagenav-list > li {
    font-size: 13px;
  }
}
.pagenav .next {
  text-align: right;
}
.pagenav a {
  text-decoration: underline;
  color: #dd3333;
}
.pagenav a:hover {
  text-decoration: none;
}

/* Project
==================================================*/
/*--------------------------------------------------
top
--------------------------------------------------*/
.p-top .hero {
  text-align: center;
}
.p-top .hero img {
  width: 100%;
}

.p-top .section01 {
  position: relative;
}
.p-top .section01::before {
  content: "";
  background-color: #10552b;
  width: 45%;
  max-width: 570px;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
.p-top .section01 .inner {
  max-width: 2000px;
  margin: 0 auto;
}
.p-top .section01 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 960px) {
  .p-top .section01 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top .section01 .img {
  width: 55%;
  max-height: 570px;
  margin-top: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 960px) {
  .p-top .section01 .img {
    width: auto;
    margin-top: 50px;
  }
}
.p-top .section01 .img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-top .section01 .content {
  background-color: #fff;
  padding: 120px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .content {
    padding: 20px;
  }
}
.p-top .section01 .heading {
  font-size: 38px;
  font-size: clamp(1.125rem, 0.8869rem + 1.1905vw, 2.375rem);
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .heading {
    font-size: 18px;
  }
}
.p-top .section01 .btn {
  max-width: 220px;
  margin: 40px 0 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .btn {
    margin-top: 20px;
  }
}
.p-top .section01 .btn a {
  display: block;
  border: 1px solid #858585;
  border-radius: 99px;
  font-size: 16px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .btn a {
    font-size: 13px;
    padding: 15px;
  }
}
.p-top .section01 .btn a::after {
  content: "●";
  display: inline-block;
  color: #3d6e4e;
  width: 10px;
  height: 10px;
  margin-left: 1em;
}
.p-top .section01 .btn a:hover {
  opacity: 0.7;
}

.p-top .section02 {
  background-color: #0a5526;
  background: url(../img/top/top-business-bg.jpg) no-repeat center/cover;
  color: #fff;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .p-top .section02 {
    padding: 40px 0;
  }
}
.p-top .section02 .inner {
  max-width: 2000px;
  margin: 0 auto;
}
.p-top .section02 .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 4%;
}
.p-top .section02 .heading {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 1em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .heading {
    font-size: 24px;
  }
}
.p-top .section02 .heading .small {
  display: block;
  font-size: 16px;
}
.p-top .section02 .heading .small::before {
  content: "●";
  color: #65bb83;
  margin: 0 10px;
}
.p-top .section02 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #ccc;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top .section02 .list > li {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list > li {
    width: auto;
  }
}
.p-top .section02 .list > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background: no-repeat center/cover;
  height: 580px;
  padding: 60px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list > li a {
    height: 300px;
    padding: 20px;
  }
}
.p-top .section02 .list > li .ttl {
  font-size: 30px;
}
.p-top .section02 .btn {
  max-width: 220px;
  margin: 40px 0 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .btn {
    margin-top: 20px;
  }
}
.p-top .section02 .btn a {
  display: block;
  border: 1px solid #fff;
  border-radius: 99px;
  font-size: 16px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .btn a {
    font-size: 13px;
    padding: 15px;
  }
}
.p-top .section02 .btn a::after {
  content: "●";
  display: inline-block;
  color: #65bb83;
  width: 10px;
  height: 10px;
  margin-left: 1em;
}
.p-top .section02 .btn a:hover {
  opacity: 0.7;
}

.p-top .section03 {
  background-color: #eee;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .p-top .section03 {
    padding: 40px 0;
  }
}
.p-top .section03 .inner {
  max-width: 2000px;
  margin: 0 auto;
}
.p-top .section03 .heading {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 1em;
  padding: 0 4%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .heading {
    font-size: 24px;
  }
}
.p-top .section03 .heading .small {
  display: block;
  font-size: 16px;
}
.p-top .section03 .heading .small::before {
  content: "●";
  color: #3d6e4e;
  margin: 0 10px;
}
.p-top .section03 .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 960px) {
  .p-top .section03 .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top .section03 .recruit01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #0a5526;
  color: #fff;
  width: 47%;
}
@media screen and (max-width: 960px) {
  .p-top .section03 .recruit01 {
    width: auto;
  }
}
.p-top .section03 .recruit01 .img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.p-top .section03 .recruit01 .txtarea {
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .recruit01 .txtarea {
    padding: 20px;
  }
}
.p-top .section03 .recruit01 .catch {
  font-size: 42px;
  font-size: clamp(1.125rem, 0.8393rem + 1.4286vw, 2.625rem);
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .recruit01 .catch {
    font-size: 21px;
  }
}
.p-top .section03 .recruit01 .btn {
  max-width: 220px;
  margin: 40px 0 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .recruit01 .btn {
    margin-top: 20px;
  }
}
.p-top .section03 .recruit01 .btn a {
  display: block;
  border: 1px solid #fff;
  border-radius: 99px;
  font-size: 16px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .recruit01 .btn a {
    font-size: 13px;
    padding: 15px;
  }
}
.p-top .section03 .recruit01 .btn a::after {
  content: "●";
  display: inline-block;
  color: #65bb83;
  width: 10px;
  height: 10px;
  margin-left: 1em;
}
.p-top .section03 .recruit01 .btn a:hover {
  opacity: 0.7;
}
.p-top .section03 .recruit02 {
  background: url(../img/top/top-recruit-img02.jpg) no-repeat center/cover;
  width: 63%;
  padding: 80px;
}
@media screen and (max-width: 960px) {
  .p-top .section03 .recruit02 {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-top .section03 .recruit02 {
    padding: 20px;
  }
}
.p-top .section03 .list {
  max-width: 500px;
}
.p-top .section03 .list > li {
  background-color: #0a5526;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  padding: 3px 20px;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 5% 100%);
}
@media screen and (max-width: 768px) {
  .p-top .section03 .list > li {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.p-top .section03 .list > li:last-child {
  margin-bottom: 0;
}

.p-top .section04 {
  padding: 80px 4% 120px;
}
@media screen and (max-width: 768px) {
  .p-top .section04 {
    padding: 40px 4% 100px;
  }
}
.p-top .section04 .inner {
  max-width: 1500px;
  margin: 0 auto;
}
.p-top .section04 .heading {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .heading {
    font-size: 24px;
  }
}
.p-top .section04 .heading .small {
  display: block;
  font-size: 16px;
}
.p-top .section04 .heading .small::before, .p-top .section04 .heading .small::after {
  content: "●";
  color: #3d6e4e;
  margin: 0 10px;
}
.p-top .section04 .list {
  border-bottom: 1px solid #a1a1a1;
  height: 350px;
  padding-right: 100px;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .list {
    height: 300px;
    padding-right: 50px;
  }
}
.p-top .section04 .list .article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  border-bottom: 1px solid #a1a1a1;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .list .article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

/*--------------------------------------------------
business
--------------------------------------------------*/
.p-business .section01 .intro-catch {
  font-size: 38px;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-business .section01 .intro-catch {
    font-size: 18px;
  }
}
.p-business .section01 .lead {
  font-size: 18px;
  margin-bottom: 2em;
}
.p-business .section01 .subsec {
  margin: 100px 0;
}
@media screen and (max-width: 768px) {
  .p-business .section01 .subsec {
    margin: 50px 0;
  }
}
.p-business .section01 .subsec:nth-child(odd) .content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 960px) {
  .p-business .section01 .subsec:nth-child(odd) .content {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.p-business .section01 .subsec-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .p-business .section01 .subsec-in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-business .section01 .subsec-in {
    gap: 20px;
  }
}
.p-business .section01 .subsec-in .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}
@media screen and (max-width: 768px) {
  .p-business .section01 .subsec-in .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-business .section01 .subsec-in .num {
  width: 24%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-business .section01 .subsec-in .heading {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-business .section01 .subsec-in .heading {
    font-size: 24px;
  }
}
.p-business .section01 .subsec-in .heading .small {
  display: block;
  font-size: 16px;
}
.p-business .section01 .subsec-in .heading .small::before {
  content: "●";
  color: #3d6e4e;
  margin: 0 10px;
}
.p-business .section01 .subsec-in .catch {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1em;
}
.p-business .section01 .subsec-in .img {
  max-width: 670px;
  width: 44.6666666667%;
  margin: 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 960px) {
  .p-business .section01 .subsec-in .img {
    width: auto;
  }
}
.p-business .section01 .subsec-in .list {
  margin-top: 40px;
}
.p-business .section01 .subsec-in .list > li {
  border: 1px solid #949494;
  width: 200px;
  margin-bottom: 10px;
  padding: 3px 10px;
}
.p-business .section01 .subsec-in dl {
  margin-top: 40px;
}
.p-business .section01 .subsec-in dl dt {
  font-weight: bold;
  position: relative;
}
.p-business .section01 .subsec-in dl dt::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-color: #10552b;
  border-radius: 3px;
  width: 24px;
  height: 6px;
  margin-right: 10px;
}
.p-business .section01 .subsec-in dl dd {
  margin-bottom: 1em;
}

.p-business .section02 {
  padding-top: 0;
}
.p-business .section02 .vehicle-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 1.4666666667%;
}
@media screen and (max-width: 768px) {
  .p-business .section02 .vehicle-list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-business .section02 .vehicle-list > li {
  max-width: 358px;
  width: 23.8666666667%;
}
@media screen and (max-width: 768px) {
  .p-business .section02 .vehicle-list > li {
    width: 48%;
  }
}
.p-business .section02 .vehicle-list > li .cap {
  margin-top: 1em;
}
.p-business .section02 .vehicle-list > li .cap::before {
  content: "●";
  color: #3d6e4e;
  margin-right: 10px;
}

/*--------------------------------------------------
company
--------------------------------------------------*/
.p-company .section01 .greeting-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 960px) {
  .p-company .section01 .greeting-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-company .section01 .greeting-box .img {
  max-width: 930px;
  width: 62%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 960px) {
  .p-company .section01 .greeting-box .img {
    width: auto;
  }
}
.p-company .section01 .greeting-box .content {
  background-color: #fff;
  max-width: 780px;
  margin: 190px 0 0 -140px;
  padding: 40px 60px;
}
@media screen and (max-width: 960px) {
  .p-company .section01 .greeting-box .content {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-company .section01 .greeting-box .content {
    padding: 20px;
  }
}
.p-company .section01 .greeting-box .content .ttl {
  font-size: 32px;
  font-size: clamp(1.125rem, 0.9583rem + 0.8333vw, 2rem);
  font-weight: bold;
}
.p-company .section01 .greeting-box .content .catch {
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-company .section01 .greeting-box .content .catch {
    font-size: 18px;
  }
}
.p-company .section01 .greeting-box .content .namewrap {
  text-align: right;
  margin-top: 1em;
}
.p-company .section01 .greeting-box .content .namewrap .name {
  font-size: 24px;
  font-weight: bold;
  margin-left: 10px;
}

.p-company .section02 {
  padding-top: 0;
}
.p-company .section02 .tblwrap table tr {
  border-bottom: 1px solid #b5b5b5;
}
.p-company .section02 .tblwrap table th, .p-company .section02 .tblwrap table td {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .p-company .section02 .tblwrap table th, .p-company .section02 .tblwrap table td {
    padding: 10px;
  }
}
.p-company .section02 .tblwrap table th {
  text-align: left;
  width: 270px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-company .section02 .tblwrap table th {
    width: 120px;
  }
}
.p-company .section02 .tblwrap table th::before {
  content: "";
  position: absolute;
  background-color: #10552b;
  width: 100%;
  height: 1px;
  bottom: -1px;
  left: 0;
}
.p-company .section02 .tblwrap table a {
  text-decoration: underline;
  color: #10552b;
}
.p-company .section02 .tblwrap table a:hover {
  text-decoration: none;
}
.p-company .section02 .tblwrap table .map-btn {
  display: inline-block;
  vertical-align: middle;
  max-width: 180px;
  margin: 0 auto;
  margin-left: 2em;
}
.p-company .section02 .tblwrap table .map-btn a {
  display: inline-block;
  background-color: #10552b;
  border: 1px solid #10552b;
  border-radius: 99px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  margin: 0 auto;
  padding: 3px 20px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-company .section02 .tblwrap table .map-btn a {
    font-size: 14px;
  }
}
.p-company .section02 .tblwrap table .map-btn a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url(../img/company/ico-win.png) no-repeat center/contain;
  width: 1em;
  height: 1em;
  margin-left: 20px;
}
.p-company .section02 .tblwrap table .map-btn a:hover {
  opacity: 0.7;
}

.p-company .section03 {
  padding-top: 0;
}
.p-company .section03 .subsec {
  border-bottom: 1px solid #d2d2d2;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .p-company .section03 .subsec {
    padding: 40px 0;
  }
}
.p-company .section03 .subheading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1em;
  position: relative;
}
.p-company .section03 .subheading::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-color: #10552b;
  border-radius: 3px;
  width: 26px;
  height: 4px;
  margin-right: 10px;
}
.p-company .section03 .img-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.p-company .section03 .img-list > li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-company .section03 .map {
  margin-bottom: 10px;
}
.p-company .section03 .map iframe {
  width: 100%;
  height: 450px;
}
@media screen and (max-width: 768px) {
  .p-company .section03 .map iframe {
    height: 300px;
  }
}

/*--------------------------------------------------
recruit
--------------------------------------------------*/
.p-recruit .section01 .recruit-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 960px) {
  .p-recruit .section01 .recruit-intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-recruit .section01 .intro-catch {
  font-size: 38px;
  font-size: clamp(18px, 2.8vw, 32px);
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-recruit .section01 .intro-catch {
    font-size: 18px;
  }
}
.p-recruit .section01 .intro-img {
  max-width: 670px;
  width: 44.6666666667%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 960px) {
  .p-recruit .section01 .intro-img {
    width: auto;
  }
}

.p-recruit .section02 {
  padding-top: 0;
}
.p-recruit .section02 .tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.p-recruit .section02 .tab-list > li {
  display: block;
  border: 1px solid #313131;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  width: 200px;
  padding: 20px;
  cursor: pointer;
}
.p-recruit .section02 .tab-list > li.is-select {
  background-color: #65bb83;
  cursor: auto;
}
.p-recruit .section02 .disnon {
  display: none;
}
.p-recruit .section02 .table-wrap table tr {
  border-top: 1px solid #9f9f9f;
  border-bottom: 1px solid #9f9f9f;
}
.p-recruit .section02 .table-wrap table th, .p-recruit .section02 .table-wrap table td {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .p-recruit .section02 .table-wrap table th, .p-recruit .section02 .table-wrap table td {
    padding: 10px;
  }
}
.p-recruit .section02 .table-wrap table th {
  text-align: left;
  width: 270px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-recruit .section02 .table-wrap table th {
    width: 120px;
  }
}
.p-recruit .section02 .table-wrap table th::before {
  content: "";
  background-color: #9f9f9f;
  width: 1px;
  height: 80%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.p-recruit .section02 .table-wrap table a {
  text-decoration: underline;
  color: #10552b;
}
.p-recruit .section02 .table-wrap table a:hover {
  text-decoration: none;
}

.p-recruit .section03 {
  background-color: #f6f6f6;
}
.p-recruit .section03 .inner {
  max-width: 1100px;
  margin: 0 auto;
}

/*--------------------------------------------------
contact
--------------------------------------------------*/
.p-contact .section01 {
  background-color: #f6f6f6;
}
.p-contact .section01 .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.p-contact .section01 .telbox {
  background-color: #10552b;
  color: #fff;
  text-align: center;
  margin-bottom: 80px;
  padding: 20px 50px;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .telbox {
    padding: 20px;
  }
}
.p-contact .section01 .telbox .telbox__ttl {
  border-bottom: 1px dotted #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
}
.p-contact .section01 .telbox .telbox__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .telbox .telbox__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-contact .section01 .telbox .telbox__tel {
  font-size: 40px;
  font-size: clamp(1.125rem, 0.8631rem + 1.3095vw, 2.5rem);
  line-height: 1.5;
  margin: 0;
}
.p-contact .section01 .telbox .telbox__tel .telbox__small {
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .telbox .telbox__tel .telbox__small {
    font-size: 1rem;
  }
}

.p-contact .section02 .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.p-contact .section02 dl dt {
  font-weight: bold;
}
.p-contact .section02 dl dd {
  margin-bottom: 2em;
}/*# sourceMappingURL=style.css.map */