@charset "UTF-8";
/* CSS Document */
/*==================================================
Foundation
==================================================*/
/*--------------------------------------------------
Font
--------------------------------------------------*/
/*@font-face {
  font-family: '';
  font-weight: normal;
  src: url('../font/') format('');
  font-display: swap;
}*/
.gothic {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.mincho {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
}

/*--------------------------------------------------
Media Query
--------------------------------------------------*/
.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    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: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1em;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: bold;
  line-height: 1.7;
  color: #202020;
  position: relative;
  overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 0.8125rem;
  }
}
body.is-fixed {
  overflow: hidden;
  height: 100%;
}

#container {
  min-width: 320px;
}

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: 20px 4%;
}
@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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4%;
  max-width: 1800px;
  margin: 0 auto;
}
@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;
}
@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(16px, 1.6vw, 18px);
  font-weight: bold;
  position: relative;
}
.header .gnav .gnav-list > li a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .gnav .gnav-list > li a:hover {
  color: #30998a;
}
.header .gnav .gnav-list > li:hover .drop {
  display: block;
}
.header .gnav .gnav-list .drop {
  display: none;
  padding-top: 36px;
  position: absolute;
  left: 0;
}
.header .gnav .gnav-list .drop .child-list {
  background-color: #30998a;
  color: #fff;
  width: 250px;
}
.header .gnav .gnav-list .drop .child-list > li {
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #a3cfc9;
  position: relative;
}
.header .gnav .gnav-list .drop .child-list > li a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 16px 20px 16px 40px;
  position: relative;
}
.header .gnav .gnav-list .drop .child-list > li a::before {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 26px;
  left: 22px;
}
.header .gnav .gnav-list .drop .child-list > li a:hover {
  display: block;
  color: #fff;
  opacity: 0.7;
}
.header .gnav .gnav-list .drop .child-list > li:last-child {
  border-bottom: 0;
}
.header .contact-btn {
  width: 230px;
}
.header .contact-btn a {
  display: block;
  background-color: #30998a;
  border: 1px solid #30998a;
  border-radius: 99px;
  color: #fff;
  font-size: 18px;
  font-size: clamp(12px, 1.2vw, 18px);
  font-weight: bold;
  text-align: center;
  padding: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .contact-btn a::before {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  width: 17px;
  height: 1em;
  margin-right: 10px;
  background: url(../img/common/ico-mail.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.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: #30998a;
  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: #30998a;
  color: #fff;
  position: fixed;
  z-index: 9;
  top: 60px;
  left: 0;
  width: 100vw;
  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 #a3cfc9;
  font-size: 15px;
}
.header .menu-nav .menu-list > li:last-child {
  border-bottom: 0;
}
.header .menu-nav .menu-list > li .child-list > li {
  border-top: 1px solid #a3cfc9;
}
.header .menu-nav .menu-list > li .child-list > li a {
  display: block;
  padding: 16px 20px 16px 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.header .menu-nav .menu-list > li .child-list > li a::before {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 26px;
  left: 12px;
}
.header .menu-nav .menu-list > li .child-list > li a:hover {
  opacity: 0.7;
}
.header .menu-nav .menu-list > li a {
  display: block;
  padding: 16px 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .menu-nav .menu-list > li a:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
Footer
--------------------------------------------------*/
.footer {
  background-color: #30998a;
  color: #fff;
  padding: 50px 4%;
}
@media screen and (max-width: 768px) {
  .footer {
    font-size: 13px;
    padding: 35px 4% 15px;
  }
}
.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 .address {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .footer .address {
    font-size: 13px;
    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;
}
@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: 16px;
  padding: 0 1em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer .nav .nav-list > li {
    font-size: 13px;
  }
}
.footer .nav .nav-list > li::before {
  content: "";
  background-color: #fff;
  width: 1px;
  height: 1em;
  position: absolute;
  top: 8px;
  left: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}
.footer .nav .nav-list > li:first-child::before {
  display: none;
}
.footer .nav .nav-list > li a:hover {
  text-decoration: underline;
}
.footer .copyright {
  font-size: 12px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .footer .copyright {
    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: 300px;
  padding: 20px 4%;
}
@media screen and (max-width: 768px) {
  .pagehead {
    height: 125px;
  }
}
.pagehead .pagettl {
  font-size: 42px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .pagehead .pagettl {
    font-size: 24px;
  }
}
.pagehead .pagettl .small {
  display: block;
  font-size: 21px;
}
@media screen and (max-width: 768px) {
  .pagehead .pagettl .small {
    font-size: 15px;
  }
}

.breadcrumb {
  padding: 10px 4% 80px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding-bottom: 30px;
  }
}
.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: 1200px;
  margin: 0 auto;
}
.breadcrumb .breadcrumb-list > li {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .breadcrumb .breadcrumb-list > li {
    font-size: 13px;
  }
}
.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;
}

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

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

.c-heading {
  font-size: 38px;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .c-heading {
    font-size: 20px;
  }
}
.c-heading::before {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 7px;
  height: 1em;
  margin-right: 20px;
  background-image: url(../img/common/heading-mark.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .c-heading::before {
    width: 5px;
    margin-right: 15px;
  }
}

.c-tbl table th, .c-tbl table td {
  background-color: #efefef;
  border: 1px solid #fff;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .c-tbl table th, .c-tbl table td {
    padding: 10px;
  }
}
.c-tbl table th {
  background-color: #d7f2ee;
  text-align: left;
  width: 300px;
}
@media screen and (max-width: 768px) {
  .c-tbl table th {
    width: 120px;
  }
}
.c-tbl table a {
  text-decoration: underline;
  color: #30998a;
}
.c-tbl table a:hover {
  text-decoration: none;
}

.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;
  }
}
.c-btn a:hover {
  opacity: 0.7;
}

.c-green {
  color: #30998a;
}

/*--------------------------------------------------
Form
--------------------------------------------------*/
.form {
  margin: 30px 0;
}
.form table th, .form table td {
  background-color: #efefef;
  border: 2px solid #fff;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .form table th, .form table td {
    display: block;
    padding: 10px;
  }
}
.form table th {
  background-color: #d7f2ee;
  text-align: left;
  width: 300px;
}
@media screen and (max-width: 768px) {
  .form table th {
    width: auto;
  }
}
.form .required {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  background-color: #f04239;
  color: #fff;
  font-size: 9px;
  font-weight: normal;
  margin-left: 1em;
  padding: 1px 6px;
}
.form .col-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.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;
}
.form label {
  cursor: pointer;
}
.form [type=text], .form [type=email], .form [type=tel] {
  background-color: #fff;
  border: 1px solid #ccc;
  max-width: 300px;
  width: 100%;
  min-height: 40px;
  padding: 10px;
}
.form [type=number] {
  background-color: #fff;
  border: 1px solid #ccc;
  max-width: 100px;
  width: 100%;
  min-height: 40px;
  padding: 10px;
}
.form select {
  border: 1px solid #ccc;
  padding: 10px;
}
.form textarea {
  background-color: #fff;
  border: 1px solid #ccc;
  max-width: 650px;
  width: 100%;
  height: 140px;
  padding: 10px;
}
.form ::-webkit-input-placeholder {
  color: #ccc;
}
.form ::-moz-placeholder {
  color: #ccc;
}
.form :-ms-input-placeholder {
  color: #ccc;
}
.form ::-ms-input-placeholder {
  color: #ccc;
}
.form ::placeholder {
  color: #ccc;
}
.form .privacy {
  margin: 2em 0;
}
.form .privacy .privacy-head {
  background-color: #d7f2ee;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-weight: bold;
  text-align: center;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .form .privacy .privacy-head {
    padding: 10px;
  }
}
.form .privacy .privacy-body {
  background-color: #efefef;
  border-bottom: 1px solid #fff;
  height: 340px;
  padding: 40px;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .form .privacy .privacy-body {
    height: 200px;
    padding: 10px;
  }
}
.form .privacy dl {
  margin: 2em 0;
}
.form .privacy dl div {
  margin-bottom: 2em;
}
.form .privacy dl dt {
  font-weight: bold;
}
.form .agree {
  text-align: center;
  margin: 2em 0;
}
.form .btn {
  max-width: 350px;
  width: 100%;
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .form .btn {
    max-width: 275px;
  }
}
.form .btn button, .form .btn input {
  background-color: #202020;
  border: 1px solid #202020;
  border-radius: 99px;
  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) {
  .form .btn button, .form .btn input {
    font-size: 13px;
    padding: 10px;
  }
}
.form .btn button:hover, .form .btn input:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
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: block;
  }
}
.pagination .pagination-last {
  display: none;
}
@media (min-width: 960px) {
  .pagination .pagination-last {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    display: block;
  }
}

.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: 15px;
}
@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 .section01 {
  background-color: #ddd;
  background-image: url(../img/top/top-service-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 120px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section01 {
    padding: 60px 4%;
  }
}
.p-top .section01 .inner {
  max-width: 1600px;
  margin: 0 auto;
}
.p-top .section01 .heading {
  font-size: 56px;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .heading {
    font-size: 34px;
    margin-bottom: 1em;
  }
}
.p-top .section01 .heading .small {
  display: block;
  font-size: 21px;
  color: #30998a;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .heading .small {
    font-size: 15px;
  }
}
.p-top .section01 p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top .section01 p {
    text-align: left;
  }
}
.p-top .section01 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 50px;
  margin: 50px 0 70px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 10px 0 30px;
  }
}
.p-top .section01 .list > li {
  max-width: 360px;
  width: 30%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .list > li {
    width: auto;
  }
}
.p-top .section01 .list > li a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-top .section01 .list > li a:hover .cap {
  background-color: #202020;
  color: #fff;
  font-weight: bold;
  text-align: left;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .list > li a:hover .cap {
    font-size: 16px;
    padding: 10px 20px;
  }
}
.p-top .section01 .list > li a:hover .cap::before {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-image: url(../img/top/top-service-ico-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.p-top .section01 .list > li .cap {
  background-color: #30998a;
  color: #fff;
  font-weight: bold;
  text-align: left;
  padding: 20px 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .list > li .cap {
    font-size: 16px;
    padding: 10px 20px;
  }
}
.p-top .section01 .list > li .cap::before {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-image: url(../img/top/top-service-ico-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.p-top .section01 .btn {
  max-width: 350px;
  width: 350px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .btn {
    max-width: 240px;
  }
}
.p-top .section01 .btn a {
  display: block;
  background-color: #202020;
  border: 1px solid #202020;
  border-radius: 99px;
  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) {
  .p-top .section01 .btn a {
    font-size: 13px;
    padding: 15px;
  }
}
.p-top .section01 .btn a:hover {
  opacity: 0.7;
}

.p-top .section02 {
  padding: 120px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section02 {
    padding: 60px 4%;
  }
}
.p-top .section02 .inner {
  max-width: 1600px;
  margin: 0 auto;
}
.p-top .section02 .heading {
  font-size: 56px;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .heading {
    font-size: 34px;
    margin-bottom: 1em;
  }
}
.p-top .section02 .heading .small {
  display: block;
  font-size: 21px;
  color: #30998a;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .heading .small {
    font-size: 15px;
  }
}
.p-top .section02 .list {
  border-top: 1px solid #c1c1c1;
  border-bottom: 1px solid #c1c1c1;
  height: 360px;
  padding-right: 50px;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list {
    padding-right: 30px;
  }
}
.p-top .section02 .list .article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  border-bottom: 1px solid #c1c1c1;
  padding: 40px 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list .article {
    display: block;
    padding: 20px;
  }
}
.p-top .section02 .list .article::before {
  content: "";
  background-color: #202020;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50px;
  left: 10px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list .article::before {
    top: 26px;
    left: 5px;
  }
}
.p-top .section02 .list .article .ttl {
  font-weight: bold;
  color: #30998a;
  margin-bottom: 1em;
}

.p-top .section03 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-top .section03 .list > li {
  width: 25%;
  height: 600px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .list > li {
    width: 50%;
    height: 300px;
  }
}
.p-top .section03 .list > li a {
  display: block;
  background-color: #ddd;
  border: 1px solid #fff;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .list > li a {
    padding: 20px;
  }
}
.p-top .section03 .list > li a::before {
  content: "";
  background-color: #000;
  opacity: 0.7;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-top .section03 .list > li a:hover::before {
  opacity: 0.3;
}
.p-top .section03 .list > li::after {
  content: "";
  display: block;
  background-image: url(../img/top/top-content-ico-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  position: absolute;
  right: 30px;
  bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .list > li::after {
    width: 30px;
    height: 30px;
    right: 20px;
    bottom: 20px;
  }
}
.p-top .section03 .list > li .ttl {
  font-size: 38px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .list > li .ttl {
    font-size: 24px;
  }
}
.p-top .section03 .list > li .ttl .small {
  display: block;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .list > li .ttl .small {
    font-size: 13px;
  }
}

/*--------------------------------------------------
service
--------------------------------------------------*/
.p-service .section01 .img-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.3333333333%;
  margin: 40px 0 60px;
}
@media screen and (max-width: 768px) {
  .p-service .section01 .img-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px 0;
    margin: 20px 0 30px;
  }
}
.p-service .section01 .img-list > li {
  width: 22.5%;
}
@media screen and (max-width: 768px) {
  .p-service .section01 .img-list > li {
    width: 48%;
  }
}
.p-service .section01 .img-list > li .cap {
  text-align: center;
  margin-top: 10px;
}
.p-service .section01 dl div {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-service .section01 dl div {
    margin-bottom: 30px;
  }
}
.p-service .section01 dl div dt {
  background-color: #30998a;
  color: #fff;
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 30px;
  padding: 10px 30px;
}
@media screen and (max-width: 768px) {
  .p-service .section01 dl div dt {
    font-size: 18px;
    margin-bottom: 10px;
    padding: 5px 10px;
  }
}
.p-service .section01 dl div dd ol {
  list-style-type: decimal;
  padding-left: 18px;
}
.p-service .section01 dl div dd ul {
  list-style-type: disc;
  padding-left: 18px;
}
.p-service .section01 dl div dd a {
  text-decoration: underline;
  color: #30998a;
}
.p-service .section01 .catch {
  font-size: 24px;
  font-weight: bold;
  color: #30998a;
}
.p-service .section01 .box {
  background-color: #d7f2ee;
  font-size: 1.125em;
  text-align: center;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .p-service .section01 .box {
    font-size: 1em;
    padding: 20px;
  }
}
.p-service .section01 .box .box-list {
  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;
  gap: 0 60px;
}
@media screen and (max-width: 768px) {
  .p-service .section01 .box .box-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-service .section01 .box .ttl {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #30998a;
  border-bottom: 1px solid #30998a;
  margin-bottom: 1em;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-service .section01 .box .ttl {
    font-size: 14px;
  }
}
.p-service .section01 .box .tel {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-service .section01 .box .tel {
    font-size: 24px;
  }
}
.p-service .section01 .box .btn {
  max-width: 350px;
  width: 350px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-service .section01 .box .btn {
    max-width: 240px;
  }
}
.p-service .section01 .box .btn a {
  display: block;
  background-color: #202020;
  border: 1px solid #202020;
  border-radius: 99px;
  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) {
  .p-service .section01 .box .btn a {
    font-size: 13px;
    padding: 15px;
  }
}
.p-service .section01 .box .btn a::before {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  width: 17px;
  height: 1em;
  margin-right: 10px;
  background: url(../img/common/ico-mail.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-service .section01 .box .btn a:hover {
  opacity: 0.7;
}
.p-service .section01 .sec-other {
  margin: 80px 0 40px;
}
@media screen and (max-width: 768px) {
  .p-service .section01 .sec-other {
    margin: 40px 0 20px;
  }
}
.p-service .section01 .sec-other .heading {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-service .section01 .sec-other .heading {
    font-size: 18px;
  }
}
.p-service .section01 .sec-other .other-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 3.8333333333%;
}
@media screen and (max-width: 768px) {
  .p-service .section01 .sec-other .other-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-service .section01 .sec-other .other-list > li {
  width: 30.8333333333%;
}
@media screen and (max-width: 768px) {
  .p-service .section01 .sec-other .other-list > li {
    width: auto;
  }
}
.p-service .section01 .sec-other .other-list > li a {
  display: block;
  border: 1px solid #30998a;
  color: #30998a;
  font-size: 16px;
  text-align: center;
  padding: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-service .section01 .sec-other .other-list > li a {
    font-size: 13px;
    padding: 10px;
  }
}
.p-service .section01 .sec-other .other-list > li a:hover {
  background-color: #30998a;
  color: #fff;
}

/*--------------------------------------------------
company
--------------------------------------------------*/
.p-company .section02 .img-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 45px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-company .section02 .img-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-company .section02 .img-list > li {
  text-align: center;
  width: 30.8333333333%;
}
@media screen and (max-width: 768px) {
  .p-company .section02 .img-list > li {
    width: auto;
  }
}
.p-company .section02 .img-list > li .cap {
  margin: 1em 0;
}

.p-company .section03 .img-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-company .section03 .img-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px 0;
  }
}
.p-company .section03 .img-list > li {
  text-align: center;
  width: 23.75%;
}
@media screen and (max-width: 768px) {
  .p-company .section03 .img-list > li {
    width: 48%;
  }
}
.p-company .section03 .img-list > li .img {
  height: 250px;
}
@media screen and (max-width: 768px) {
  .p-company .section03 .img-list > li .img {
    height: 200px;
  }
}
.p-company .section03 .img-list > li .img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-company .section03 .img-list > li .cap {
  margin: 1em 0;
}
@media screen and (max-width: 768px) {
  .p-company .section03 .tbl-wrap {
    white-space: nowrap;
    overflow-x: scroll;
  }
}
.p-company .section03 .tbl-wrap table th {
  width: 600px;
}
@media screen and (max-width: 768px) {
  .p-company .section03 .tbl-wrap table th {
    width: 120px;
  }
}

.p-company .section04 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-company .section04 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
  }
}
.p-company .section04 .flex .img {
  width: 48%;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-company .section04 .flex .img {
    width: auto;
    margin-bottom: 1em;
  }
}
.p-company .section04 .flex .map {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .p-company .section04 .flex .map {
    width: 100%;
  }
}
.p-company .section04 .flex .map iframe {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 768px) {
  .p-company .section04 .flex .map iframe {
    width: 100%;
  }
}

/*--------------------------------------------------
recruit
--------------------------------------------------*/
.p-recruit .section01 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-recruit .section01 .flex {
    display: block;
    margin-bottom: 30px;
  }
}
.p-recruit .section01 .flex .img {
  width: 35%;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-recruit .section01 .flex .img {
    width: auto;
    margin-bottom: 1em;
  }
}
.p-recruit .section01 .flex .ttl {
  font-size: 24px;
  font-weight: bold;
  color: #30998a;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-recruit .section01 .flex .ttl {
    font-size: 18px;
  }
}
.p-recruit .section01 dl div {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-recruit .section01 dl div {
    margin-bottom: 30px;
  }
}
.p-recruit .section01 dl div dt {
  background-color: #30998a;
  color: #fff;
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 30px;
  padding: 10px 30px;
}
@media screen and (max-width: 768px) {
  .p-recruit .section01 dl div dt {
    font-size: 18px;
    margin-bottom: 10px;
    padding: 5px 10px;
  }
}
.p-recruit .section01 dl div dd ol {
  list-style-type: decimal;
  padding-left: 18px;
}
.p-recruit .section01 dl div dd ul {
  list-style-type: disc;
  padding-left: 18px;
}

.p-recruit .section02 .cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.p-recruit .section02 .cat-list > li {
  display: block;
  border: 1px solid #30998a;
  color: #30998a;
  max-width: 350px;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-recruit .section02 .cat-list > li {
    font-size: 13px;
    padding: 10px;
  }
}
.p-recruit .section02 .cat-list > li.is-select {
  background-color: #30998a;
  color: #fff;
}
.p-recruit .section02 .disnon {
  display: none;
}

/*--------------------------------------------------
contact
--------------------------------------------------*/
.p-contact .section01 .tel-box {
  border: 1px solid #30998a;
  font-size: 1.125em;
  text-align: center;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .tel-box {
    font-size: 1em;
    padding: 20px;
  }
}
.p-contact .section01 .tel-box .ttl {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #30998a;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .tel-box .ttl {
    font-size: 18px;
  }
}
.p-contact .section01 .tel-box .tel {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .tel-box .tel {
    font-size: 24px;
  }
}

/*--------------------------------------------------
thanks
--------------------------------------------------*/
.p-thanks .section01 .tel-box {
  border: 1px solid #30998a;
  font-size: 1.125em;
  text-align: center;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .p-thanks .section01 .tel-box {
    font-size: 1em;
    padding: 20px;
  }
}
.p-thanks .section01 .tel-box .ttl {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #30998a;
}
@media screen and (max-width: 768px) {
  .p-thanks .section01 .tel-box .ttl {
    font-size: 18px;
  }
}
.p-thanks .section01 .tel-box .tel {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-thanks .section01 .tel-box .tel {
    font-size: 24px;
  }
}/*# sourceMappingURL=style.css.map */