@charset "UTF-8";
/* =============================================================================
   パーシャルファイル
   ========================================================================== */
/* -----------------------------------------------------------------------------
   メディアクエリ
   -------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
   l-mv
   -------------------------------------------------------------------------- */
.l-mv {
  margin-top: 50px;
  background-image: url(../img/common/mv_bg_sp.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .l-mv {
    background-image: url(../img/common/mv_bg_pc.jpg);
  }
}
@media screen and (min-width: 1000px) {
  .l-mv {
    margin-top: 100px;
  }
}
.l-mv-inner {
  max-width: 760px;
  margin: 0 auto;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 45px 20px;
}
@media screen and (min-width: 768px) {
  .l-mv-inner {
    padding: 55px 20px 65px;
  }
}
.l-mv-catch {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .l-mv-catch {
    font-size: 3.2rem;
  }
}
.l-mv-subcatch {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .l-mv-subcatch {
    font-size: 1.8rem;
    margin-bottom: 45px;
  }
}
.l-mv-search-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-mv-search-container::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/cmn_ico01.png);
  background-size: cover;
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.l-mv-search-container input[type=search] {
  width: calc(100% - 80px);
  background-color: #fff;
  padding: 10px 15px 10px 50px;
  border: 1px solid #ccc;
  font-size: 1.6rem;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.l-mv-search-container input[type=search]:focus {
  outline-style: none;
}

.l-mv-search-container input[type=search]::-webkit-search-decoration {
  display: none;
}

.l-mv-search-container input::-webkit-input-placeholder {
  font-size: 1.6rem;
  color: #A8A8A8;
}

.l-mv-search-container input::-moz-placeholder {
  font-size: 1.6rem;
  color: #A8A8A8;
}

.l-mv-search-container input:-ms-input-placeholder {
  font-size: 1.6rem;
  color: #A8A8A8;
}

.l-mv-search-container input::-ms-input-placeholder {
  font-size: 1.6rem;
  color: #A8A8A8;
}

.l-mv-search-container input::placeholder {
  font-size: 1.6rem;
  color: #A8A8A8;
}

.l-mv-search-container input[type=submit] {
  width: 80px;
  cursor: pointer;
  border: 1px solid #329D32;
  background-color: #329D32;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #fff;
  outline: none;
  width: 80px;
  padding: 10px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .l-mv-search-container input[type=submit] {
    border: 1px solid #A8A8A8;
    background-color: #A8A8A8;
  }
}
.l-mv-search-container input[type=submit]:hover {
  background-color: #329D32;
  border: 1px solid #329D32;
}

/* -----------------------------------------------------------------------------
   l-index-service
   -------------------------------------------------------------------------- */
.l-index-service {
  padding: 30px 20px;
  background-color: #F2F2F2;
}
@media screen and (min-width: 768px) {
  .l-index-service {
    padding: 60px 20px;
  }
}
.l-index-service-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.l-index-service-items {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .l-index-service-items {
    gap: 35px 2.5%;
  }
}
.l-index-service-items > li {
  position: relative;
  width: 100%;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  padding: 25px 0 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .l-index-service-items > li {
    width: 48.5%;
    padding: 30px 0;
  }
}
.l-index-service-items > li:hover {
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .l-index-service-items > li:hover {
    -webkit-box-shadow: 0 7px 14px rgba(0, 0, 0, 0.16);
            box-shadow: 0 7px 14px rgba(0, 0, 0, 0.16);
  }
}
.l-index-service-items > li a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.l-index-service-item-logo-box {
  text-align: center;
}

.l-index-service-item-logo-box img {
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1200px) {
  .l-index-service-item-logo-box img {
    margin-bottom: 30px;
  }
}

.l-index-service-items > li:hover .l-index-service-item-logo-box img {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .l-index-service-items > li:hover .l-index-service-item-logo-box img {
    opacity: 0.5;
  }
}
.l-index-service-item-logo-box-nbl img {
  width: 210px;
}

.l-index-service-item-logo-box-nfc img {
  width: 152px;
}

.l-index-service-item-logo-box-nqc img {
  width: 245px;
}

.l-index-service-item-logo-box-nqcp img {
  width: 238px;
}

.l-index-service-item-logo-box-ncm img {
  width: 225px;
}

.l-index-service-item-logo-box-nh img {
  width: 167px;
}

.l-index-service-item-logo-box-pbx img {
  width: 204px;
}

.l-index-service-item-logo-box-nmc img {
  width: 250px;
}

.l-index-service-items-detail-lists {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1400px) {
  .l-index-service-items-detail-lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.l-index-service-items-detail-lists li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin: 0 20px;
  padding: 15px 0;
  border-right: none;
  border-bottom: 1px solid #E7E7E7;
}
@media screen and (min-width: 1400px) {
  .l-index-service-items-detail-lists li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 15px;
    margin: 0;
    border-right: 1px solid #E7E7E7;
    border-bottom: none;
  }
}

.l-index-service-items-detail-lists li:last-of-type {
  border-right: none;
  border-bottom: none;
}

.l-index-service-items-detail-list-img-pc {
  width: 64px;
  margin-right: 15px;
  margin-bottom: 0;
  display: none;
}
@media screen and (min-width: 768px) {
  .l-index-service-items-detail-list-img-pc {
    display: block;
  }
}
@media screen and (min-width: 1400px) {
  .l-index-service-items-detail-list-img-pc {
    width: 60px;
    margin-right: 0;
    margin-bottom: 5px;
  }
}

.l-index-service-items-detail-list-img-sp {
  display: block;
  width: 64px;
  margin-right: 15px;
}
@media screen and (min-width: 768px) {
  .l-index-service-items-detail-list-img-sp {
    display: none;
  }
}
.l-index-service-items-detail-lists li p {
  width: 100%;
  position: relative;
  padding-right: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1400px) {
  .l-index-service-items-detail-lists li p {
    width: auto;
  }
}

.l-index-service-items-detail-lists li:hover p {
  color: #333;
}
@media screen and (min-width: 768px) {
  .l-index-service-items-detail-lists li:hover p {
    color: #258B28;
  }
}
.l-index-service-items-detail-lists li p::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  right: 3px;
  margin-right: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.l-index-service-items-detail-lists li:hover p::after {
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .l-index-service-items-detail-lists li:hover p::after {
    border-top: solid 2px #258B28;
    border-right: solid 2px #258B28;
    margin-right: -2px;
  }
}
.l-index-service-items-detail-lists li > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

/* -----------------------------------------------------------------------------
   l-index-topics
   -------------------------------------------------------------------------- */
.l-index-topics {
  padding: 30px 20px;
}
@media screen and (min-width: 768px) {
  .l-index-topics {
    padding: 60px 20px;
  }
}
.l-index-topics-inner {
  max-width: 960px;
  margin: 0 auto;
}