@charset "UTF-8";
/* Scss Document */
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@100..900&family=Barlow+Semi+Condensed:wght@700&family=Noto+Sans+JP:wght@100..900&display=swap");
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  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;
  z-index: 1000;
}
.loader2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #354765;
  z-index: 999;
}
.loader3 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #407f3e;
  z-index: 998;
}
.loader .logo {
  width: 200px;
  -webkit-animation: logofill 3s linear infinite forwards;
          animation: logofill 3s linear infinite forwards;
}
@-webkit-keyframes logofill {
  0% {
    fill: #000000;
    opacity: 0;
  }
  25% {
    fill: #354765;
    opacity: 1;
  }
  50% {
    fill: #407f3e;
    opacity: 1;
  }
  75% {
    fill: #df3e0b;
    opacity: 1;
  }
  100% {
    fill: #000000;
    opacity: 1;
  }
}
@keyframes logofill {
  0% {
    fill: #000000;
    opacity: 0;
  }
  25% {
    fill: #354765;
    opacity: 1;
  }
  50% {
    fill: #407f3e;
    opacity: 1;
  }
  75% {
    fill: #df3e0b;
    opacity: 1;
  }
  100% {
    fill: #000000;
    opacity: 1;
  }
}

.top .header.mv .header__gnavi a::after {
  background: #000000;
}
.top .header.mv .header__gnavi_toggle::before, .top .header.mv .header__gnavi_toggle::after {
  background: #101010;
}
.top .header.style {
  color: #407f3e;
}
.top .header.style .s2logo {
  fill: #407f3e;
}
.top .header.style .header__gnavi a::after {
  background: #407f3e;
}
.top .header.style .header__gnavi_toggle::before, .top .header.style .header__gnavi_toggle::after {
  background: #407f3e;
}
.top .header.division {
  color: #dbd468;
}
.top .header.division .s2logo {
  fill: #dbd468;
}
.top .header.division .header__gnavi a::after {
  background: #dbd468;
}
.top .header.division .header__gnavi_toggle::before, .top .header.division .header__gnavi_toggle::after {
  background: #dbd468;
}
.top .header.service {
  color: #fff;
}
.top .header.service .s2logo {
  fill: #fff;
}
.top .header.service .header__gnavi a::after {
  background: #fff;
}
.top .header.service .header__gnavi_toggle::before, .top .header.service .header__gnavi_toggle::after {
  background: #fff;
}
.top .header.recruit {
  color: #df3e0b;
}
.top .header.recruit .s2logo {
  fill: #df3e0b;
}
.top .header.recruit .header__gnavi a::after {
  background: #df3e0b;
}
.top .header.recruit .header__gnavi_toggle::before, .top .header.recruit .header__gnavi_toggle::after {
  background: #df3e0b;
}
.top .header.company {
  color: #1f244c;
}
.top .header.company .s2logo {
  fill: #1f244c;
}
.top .header.company .header__gnavi a::after {
  background: #1f244c;
}
.top .header.company .header__gnavi_toggle::before, .top .header.company .header__gnavi_toggle::after {
  background: #1f244c;
}
.top .header.contact {
  color: #3e3029;
}
.top .header.contact .s2logo {
  fill: #3e3029;
}
.top .header.contact .header__gnavi a::after {
  background: #3e3029;
}
.top .header.contact .header__gnavi_toggle::before, .top .header.contact .header__gnavi_toggle::after {
  background: #3e3029;
}

@media screen and (max-width: 767px) {
  .top__content {
    text-align: justify;
  }
}
.top__content .animate__btn {
  width: clamp(100px, 10vw, 170px);
}
.top__content .mv {
  position: relative;
  background: #d57373;
  overflow: hidden;
  --pseudo-translate-y: 0px;
}
@media screen and (max-width: 767px) {
  .top__content .mv {
    padding: 70px 0 50px;
  }
}
@media print, screen and (min-width: 768px) {
  .top__content .mv {
    height: 100vh;
    min-height: 650px;
  }
}
.top__content .mv::before {
  content: "";
  display: block;
  position: absolute;
  right: -10%;
  background: url(../images/mv_bg.svg) no-repeat 0 0/cover;
  z-index: 1;
  -webkit-transform: translateY(var(--pseudo-translate-y));
          transform: translateY(var(--pseudo-translate-y));
  opacity: var(--pseudo-opacity);
  -webkit-transition: opacity 0.1s linear, -webkit-transform 0.1s linear;
  transition: opacity 0.1s linear, -webkit-transform 0.1s linear;
  transition: transform 0.1s linear, opacity 0.1s linear;
  transition: transform 0.1s linear, opacity 0.1s linear, -webkit-transform 0.1s linear; /* スムージング用 */
}
@media screen and (max-width: 767px) {
  .top__content .mv::before {
    width: 98%;
    height: 100%;
    top: 190px;
    right: 0%;
  }
}
@media print, screen and (min-width: 768px) {
  .top__content .mv::before {
    width: 75%;
    height: 130%;
    top: 0;
    right: -10%;
  }
}
.top__content .mv__content {
  position: relative;
  padding: 0 clamp(20px, 4.7vw, 80px);
  z-index: 2;
  height: 100%;
  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;
}
.top__content .mv #text {
  -webkit-mask: url(#mask);
          mask: url(#mask);
}
.top__content .mv .handwriting_text {
  fill: #101010;
  width: clamp(215px, 29vw, 438px);
}
.top__content .mv .handwriting_mask_line {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 16px;
  stroke-dasharray: 1583px;
}
.top__content .mv__lead {
  width: 85%;
  max-width: 1300px;
  margin: clamp(15px, 1.8vw, 30px) 0;
}
.top__content .mv__txt {
  max-width: 700px;
}
@media screen and (max-width: 767px) {
  .top__content .mv__txt {
    margin-bottom: 40px;
  }
}
@media print, screen and (min-width: 768px) {
  .top__content .mv__txt {
    width: 55%;
  }
}
.top__content .mv__news {
  opacity: 0;
  font-size: clamp(14px, 0.83vw, 22px);
}
@media print, screen and (min-width: 768px) {
  .top__content .mv__news {
    position: absolute;
    bottom: 50px;
    left: clamp(20px, 4.7vw, 80px);
  }
}
.top__content .mv__news .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top__content .mv__news .title {
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  margin-right: 20px;
  margin-bottom: 5px;
}
.top__content .mv__news .date {
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.top__content .mv__scrolldown {
  position: absolute;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .top__content .mv__scrolldown {
    top: 150px;
    right: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .top__content .mv__scrolldown {
    bottom: 50px;
    right: 50px;
  }
}
.top__content .mv__scrolldown:hover .arrow {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.top__content .mv__scrolldown .arrow {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  width: 20%;
}
.top__content .style {
  position: relative;
  overflow: hidden;
  background: #ebe8d6;
  color: #407f3e;
}
@media screen and (max-width: 767px) {
  .top__content .style {
    padding: 80px 20px 300px;
  }
}
@media print, screen and (min-width: 768px) {
  .top__content .style {
    padding: 160px clamp(20px, 4.7vw, 80px) clamp(40px, 14.5vw, 160px);
  }
}
.top__content .style__lead {
  width: clamp(320px, 65.1vw, 1095px);
  margin-bottom: clamp(30px, 8.5vw, 110px);
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .top__content .style__content {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1301px) {
  .top__content .style__content {
    padding: 0 clamp(20px, 4.7vw, 80px);
  }
}
.top__content .style__ttl {
  font-weight: 900;
  letter-spacing: 0.2em;
  font-size: clamp(24px, 3.5vw, 50px);
}
@media screen and (max-width: 767px) {
  .top__content .style__ttl {
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .top__content .style__ttl {
    margin-bottom: 40px;
  }
}
.top__content .style__txt {
  line-height: 2.2;
  font-size: clamp(16px, 1.1vw, 24px);
}
@media screen and (max-width: 767px) {
  .top__content .style__txt {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1450px) {
  .top__content .style__txt {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1450px) {
  .top__content .style__txt .pc-only {
    display: none;
  }
}
.top__content .style__txt .overlay {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0 0.4em;
  margin: 0 0.2em;
  line-height: 1.5;
  vertical-align: text-top;
  --bgTextX: -102%;
}
.top__content .style__txt .overlay span {
  position: relative;
  z-index: 2;
}
.top__content .style__txt .overlay::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #000000;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transform: translateX(var(--bgTextX));
          transform: translateX(var(--bgTextX));
}
.top__content .style__img1 {
  position: relative;
  width: clamp(380px, 53vw, 926px);
}
@media screen and (max-width: 1450px) {
  .top__content .style__img1 {
    margin-right: -4%;
  }
}
@media screen and (min-width: 1451px) {
  .top__content .style__img1 {
    position: absolute;
    top: 42%;
    right: -4%;
  }
}
.top__content .style__img1-2 {
  position: absolute;
  width: 97%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  fill: #2a2a2a;
}
.top__content .style__img2 {
  position: absolute;
  z-index: 100;
  width: clamp(48px, 5.7vw, 96px);
}
@media screen and (max-width: 767px) {
  .top__content .style__img2 {
    left: 53%;
    bottom: 16%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1450px) {
  .top__content .style__img2 {
    top: auto;
    bottom: 1.5%;
    right: auto;
    left: 29%;
  }
}
@media screen and (min-width: 1451px) {
  .top__content .style__img2 {
    top: 65%;
    right: 20%;
  }
}
.top__content .style__img3 {
  position: absolute;
  z-index: 90;
}
@media screen and (max-width: 767px) {
  .top__content .style__img3 {
    max-width: 160px;
    right: 40px;
    bottom: 5%;
  }
}
@media print, screen and (min-width: 768px) {
  .top__content .style__img3 {
    right: 15%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1450px) {
  .top__content .style__img3 {
    bottom: 11%;
  }
}
@media screen and (min-width: 1451px) {
  .top__content .style__img3 {
    top: 68%;
  }
}
.top__content .style__img3-arrow {
  position: absolute;
  top: 22%;
  right: 36%;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .top__content .style__img3-arrow {
    width: 6.9px;
  }
}
.top__content .division {
  background: #407f3e;
  padding: clamp(85px, 7.7vw, 130px) 0;
}
.top__content .division .section_marquee {
  color: #659943;
}
.top__content .division__ttl {
  position: relative;
  width: clamp(290px, 50.1vw, 842px);
  z-index: 2;
  margin-bottom: clamp(40px, 4.7vw, 80px);
  margin-left: clamp(20px, 4.7vw, 80px);
}
@media screen and (max-width: 767px) {
  .top__content .division__ttl {
    margin-top: -30px;
  }
}
@media print, screen and (min-width: 768px) {
  .top__content .division__ttl {
    margin-top: -5%;
  }
}
.top__content .division__list {
  overflow: hidden;
}
.top__content .division__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.top__content .division__list a::before {
  margin-right: 0.5em;
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0;
  font-size: clamp(32px, 5.5vw, 120px);
}
@media screen and (max-width: 767px) {
  .top__content .division__list a {
    padding: 25px 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .top__content .division__list a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 25px 80px;
  }
}
.top__content .division__list .inner {
  position: relative;
}
.top__content .division__list .divisionname {
  position: relative;
  overflow: hidden;
  font-size: clamp(14px, 1.1vw, 20px);
}
.top__content .division__list .divisionname::before {
  content: attr(data-en);
  display: block;
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0;
  line-height: 1.4;
  font-size: clamp(23px, 2.7vw, 60px);
}
.top__content .division__list .divisionname .text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
.top__content .division__list .infra {
  background: #2f4a2e;
  color: #dbd468;
}
.top__content .division__list .infra::before {
  content: "01";
}
.top__content .division__list .infra:hover {
  background: #3e3029;
}
.top__content .division__list .system {
  background: #21595e;
  color: #dbd468;
}
.top__content .division__list .system::before {
  content: "02";
}
.top__content .division__list .system:hover {
  background: #dbd468;
  color: #407f3e;
}
.top__content .division__list .media {
  background: #354765;
  color: #dbd468;
}
.top__content .division__list .media::before {
  content: "03";
}
.top__content .division__list .media:hover {
  background: #cedada;
  color: #354765;
}
.top__content .division__list .branding {
  background: #c76363;
  color: #dbd468;
}
.top__content .division__list .branding::before {
  content: "04";
}
.top__content .division__list .branding:hover {
  background: #df3e0b;
  color: #fff;
}
.top__content .service {
  padding: clamp(85px, 7.7vw, 130px) 0;
  background: #354765;
  overflow: hidden;
}
.top__content .service .section_marquee {
  color: #383754;
}
@media screen and (max-width: 767px) {
  .top__content .service__content {
    padding: 0 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .top__content .service__content {
    padding: 0 clamp(20px, 4.7vw, 80px);
  }
}
.top__content .service__ttl {
  position: relative;
  width: clamp(315px, 57.2vw, 961px);
  z-index: 2;
  margin-bottom: clamp(60px, 7.1vw, 120px);
}
@media screen and (max-width: 767px) {
  .top__content .service__ttl {
    margin-top: -30px;
  }
}
@media print, screen and (min-width: 768px) {
  .top__content .service__ttl {
    margin-top: -5%;
  }
}
@media screen and (max-width: 767px) {
  .top__content .service .splide__slide {
    margin-left: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .top__content .service .splide__slide {
    margin-left: 2.38vw;
  }
}
.top__content .service .splide a {
  display: block;
}
.top__content .service .splide a img {
  opacity: 1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
@media screen and (max-width: 767px) {
  .top__content .service .splide a img {
    width: 60vw;
  }
}
@media print, screen and (min-width: 768px) {
  .top__content .service .splide a img {
    width: 26.19vw;
    max-width: 440px;
  }
}
.top__content .service .splide a:hover img {
  opacity: 0;
}
.top__content .service .splide a.matagi {
  background: url(../images/service_matagi_on.jpg) no-repeat 0 0/cover;
}
.top__content .service .splide a.server {
  background: url(../images/service_s2server_on.jpg) no-repeat 0 0/cover;
}
.top__content .service .splide a.web {
  background: url(../images/service_s2webservice_on.jpg) no-repeat 0 0/cover;
}
.top__content .service .splide a.furusato {
  background: url(../images/service_furusatoplus_on.jpg) no-repeat 0 0/cover;
}
.top__content .service .splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: clamp(40px, 4.6vw, 80px) clamp(20px, 4.6vw, 80px) 0 0;
  margin-bottom: 10px;
}
.top__content .service .splide__arrow {
  position: relative;
  width: auto;
  height: auto;
  background: none;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: clamp(14px, 0.83vw, 22px);
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.top__content .service .splide__arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #5c6db2;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.top__content .service .splide__arrow svg {
  width: 14px;
  fill: #fff;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.top__content .service .splide__arrow:hover {
  color: #5c6db2;
}
.top__content .service .splide__arrow:hover::after {
  width: 100%;
}
.top__content .service .splide__arrow:hover svg {
  fill: #5c6db2;
}
.top__content .service .splide__arrow--prev {
  left: auto;
  margin-right: 4em;
}
.top__content .service .splide__arrow--prev svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-right: 10px;
}
.top__content .service .splide__arrow--next {
  right: auto;
}
.top__content .service .splide__arrow--next svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  margin-left: 10px;
}
.top__content .recruit {
  padding: clamp(85px, 7.7vw, 130px) 0;
  background: #ee7c76;
}
.top__content .recruit__content {
  position: relative;
  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;
}
@media screen and (max-width: 767px) {
  .top__content .recruit__content {
    padding: 0 20px;
  }
}
.top__content .recruit__content .txt {
  margin-bottom: clamp(30px, 4.1vw, 70px);
  line-height: 2;
  font-size: clamp(14px, 1vw, 22px);
}
@media print, screen and (min-width: 768px) {
  .top__content .recruit__content .txt {
    max-width: 840px;
  }
}
.top__content .recruit #text2 {
  -webkit-mask: url(#mask2);
          mask: url(#mask2);
}
.top__content .recruit .handwriting2 {
  width: clamp(250px, 39vw, 585px);
  margin-bottom: clamp(15px, 2.4vw, 40px);
}
.top__content .recruit .handwriting2_text {
  fill: #101010;
}
.top__content .recruit .handwriting2_mask_line {
  fill: none;
  stroke: #fff;
  stroke-width: 53;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2450px;
}
.top__content .recruit__ttl {
  width: clamp(270px, 49.8vw, 838px);
  margin-bottom: clamp(30px, 4.1vw, 70px);
}
@media screen and (max-width: 767px) {
  .top__content .recruit__link {
    margin-bottom: 40px;
  }
}
@media print, screen and (min-width: 768px) {
  .top__content .recruit__link {
    position: absolute;
    top: 50px;
    right: 50px;
  }
}
.top__content .recruit__link:hover .arrow {
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
.top__content .recruit__link .arrow {
  width: 36%;
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.top__content .recruit__slider .splide__slide {
  margin: 0 clamp(10px, 2.3vw, 40px);
}
.top__content .recruit__slider img {
  width: clamp(150px, 14.2vw, 240px);
}
.top__content .company {
  padding: clamp(85px, 7.7vw, 130px) 0;
  background: #5c6db2;
}
.top__content .company .section_marquee {
  color: #fff;
}
.top__content .company__content {
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__content .company__content {
    padding: 0 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .top__content .company__content {
    padding: 0 clamp(20px, 4.7vw, 80px);
  }
}
.top__content .company__ttl {
  position: relative;
  width: clamp(315px, 57.2vw, 961px);
  z-index: 2;
  margin-bottom: clamp(40px, 4.7vw, 80px);
}
@media screen and (max-width: 767px) {
  .top__content .company__ttl {
    margin-top: -30px;
  }
}
@media print, screen and (min-width: 768px) {
  .top__content .company__ttl {
    margin-top: -5%;
  }
}
.top__content .company__inner {
  margin-bottom: clamp(40px, 3.5vw, 60px);
}
@media print, screen and (min-width: 768px) {
  .top__content .company__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.top__content .company__inner .txt {
  color: #fff;
  line-height: 2;
  font-size: clamp(14px, 1vw, 22px);
}
@media screen and (max-width: 1300px) {
  .top__content .company__inner .txt {
    margin-bottom: clamp(30px, 7vw, 50px);
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .top__content .company__inner .txt {
    width: 75%;
    padding-right: 5%;
  }
}
@media screen and (min-width: 1301px) {
  .top__content .company__inner .txt {
    width: 60%;
  }
}
.top__content .company__btn {
  display: block;
  width: 190px;
  background: #1f244c;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
@media screen and (max-width: 767px) {
  .top__content .company__btn {
    margin-bottom: 60px;
  }
}
.top__content .company__btn .animate__btn-inner {
  height: 57px;
}
.top__content .company__btn .animate__btn-content {
  height: 57px;
  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;
}
.top__content .company__btn:hover {
  background: #354765;
}
.top__content .company__btn img {
  width: 13px;
  margin-left: 15px;
}
.top__content .company__license {
  max-width: 400px;
}
.top__content .company__license .ttl {
  margin-bottom: 10px;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-style: normal;
  color: #fff;
  letter-spacing: 0;
  font-size: clamp(14px, 0.83vw, 24px);
}
.top__content .company__license .list {
  padding: clamp(10px, 1.2vw, 20px);
  margin-bottom: clamp(30px, 7vw, 70px);
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top__content .company__license .list li {
  aspect-ratio: 1/1;
  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;
  padding: 10px;
}
.top__content .company__license .list img {
  width: 70px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .top__content .company__link {
    width: 100px;
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1300px) {
  .top__content .company__link {
    position: absolute;
    top: 60px;
    right: 60px;
  }
}
@media screen and (min-width: 1301px) {
  .top__content .company__link {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.top__content .company__link:hover .arrow {
  -webkit-transform: rotate(-120deg);
          transform: rotate(-120deg);
}
.top__content .company__link .arrow {
  width: 20%;
  -webkit-transform: rotate(-140deg);
          transform: rotate(-140deg);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media screen and (min-width: 1301px) {
  .top__content .company__address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.top__content .company__address .stamp {
  position: relative;
}
.top__content .company__address .stamp-main {
  display: block;
  -webkit-filter: sepia(50%) grayscale(100%);
          filter: sepia(50%) grayscale(100%);
  -webkit-transition: all linear 2s;
  transition: all linear 2s;
}
.top__content .company__address .stamp-txt {
  position: absolute;
  width: 65%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .top__content .company__address .stamp {
    max-width: 570px;
    margin-right: auto;
    margin-left: auto;
  }
  .top__content .company__address .stamp-txt {
    top: 32%;
  }
}
@media screen and (min-width: 1301px) {
  .top__content .company__address .stamp {
    width: 22.6vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: clamp(40px, 4.7vw, 80px);
  }
  .top__content .company__address .stamp-txt {
    top: 8.5vw;
  }
}
.top__content .company__address .stamp.active .stamp-main {
  -webkit-filter: none;
          filter: none;
}
.top__content .company__list {
  margin-right: auto;
  margin-left: auto;
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: clamp(14px, 1.8vw, 24px);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1300px) {
  .top__content .company__list {
    margin-bottom: clamp(40px, 4vw, 60px);
  }
}
.top__content .company__list li {
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  .top__content .company__list li {
    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;
  }
  .top__content .company__list li:nth-of-type(odd) p {
    padding-left: 40px;
  }
  .top__content .company__list li:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .top__content .company__list li:nth-of-type(even) p {
    padding-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .top__content .company__list .akita .place {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .top__content .company__list .sendai .place {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .top__content .company__list .tokyo .place {
    width: 85%;
  }
}
@media screen and (max-width: 767px) {
  .top__content .company__list .place {
    margin-bottom: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .top__content .company__list .place {
    width: 55%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.top__content .company__list a {
  position: relative;
  display: inline-block;
  margin-top: 10px;
}
@media print, screen and (min-width: 768px) {
  .top__content .company__list a {
    font-size: 0.8em;
  }
}
.top__content .company__list a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #000000;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.top__content .company__list a:hover::after {
  width: 100%;
}
.top__content .company__list a img {
  width: 15px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-left: 5px;
}
.top__content .contact {
  padding: clamp(85px, 10.7vw, 180px) 0;
  background: #cedada;
  color: #3e3029;
}
@media screen and (max-width: 767px) {
  .top__content .contact__content {
    padding: 0 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .top__content .contact__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 clamp(20px, 4.7vw, 80px);
  }
}
.top__content .contact__lead {
  margin-bottom: 2em;
  font-weight: 900;
  letter-spacing: 0.2em;
  font-size: clamp(16px, 1.9vw, 40px);
}
@media screen and (min-width: 1301px) {
  .top__content .contact__lead br {
    display: none;
  }
}
.top__content .contact__lead::after {
  content: attr(data-en);
  display: block;
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  margin-top: 0.4em;
  font-size: clamp(20px, 2.3vw, 48px);
  letter-spacing: 0.05em;
}
.top__content .contact__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: clamp(310px, 44.9vw, 755px);
  margin-bottom: clamp(40px, 4.7vw, 80px);
}
.top__content .contact__ttl img {
  width: 92%;
}
.top__content .contact__ttl .arrow {
  width: 8cqmax;
  fill: #fff;
  stroke: #3e3029;
}
@media screen and (min-width: 1301px) {
  .top__content .contact__inner {
    width: 50%;
  }
}
@media print, screen and (min-width: 768px) {
  .top__content .contact__link {
    width: 50%;
    padding-left: 8%;
  }
}
.top__content .contact__btn {
  display: block;
  width: 190px;
  background: #3e3029;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
@media screen and (max-width: 767px) {
  .top__content .contact__btn {
    margin-bottom: 60px;
  }
}
.top__content .contact__btn .animate__btn-inner {
  height: 57px;
}
.top__content .contact__btn .animate__btn-content {
  height: 57px;
  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;
}
.top__content .contact__btn:hover {
  background: #5c6db2;
}
.top__content .contact__btn img {
  width: 13px;
  margin-left: 15px;
}
.top__content .contact__logo {
  fill: #3e3029;
  margin-bottom: clamp(20px, 2.9vw, 50px);
}
.top__content .contact__linklist {
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: clamp(14px, 0.83vw, 26px);
  letter-spacing: 0.05em;
}
.top__content .contact__linklist li {
  margin-bottom: 1em;
}
.top__content .contact__linklist a {
  position: relative;
  display: inline-block;
}
.top__content .contact__linklist a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3e3029;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.top__content .contact__linklist a:hover::after {
  width: 100%;
}

.top .footer {
  background: #cedada;
  color: #3e3029;
}
@media screen and (max-width: 767px) {
  .top .pagetransition-overlay .curtain {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@media print, screen and (min-width: 768px) {
  .top .pagetransition-overlay .curtain {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.division {
  background: #407f3e;
}
.division .header {
  color: #dbd468;
}
.division .header__logo {
  fill: #dbd468;
}
.division .header__gnavi_toggle::before, .division .header__gnavi_toggle::after {
  background: #dbd468;
}
.division .header__gnavi a::after {
  background: #dbd468;
}
.division .pageheading__img {
  width: clamp(290px, 50.1vw, 842px);
}
.division .pageheading__ttl {
  color: #dbd468;
}
.division .section_marquee {
  color: #659943;
}
.division__list {
  overflow: hidden;
}
.division__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.division__list a::before {
  margin-right: 0.5em;
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0;
  font-size: clamp(32px, 5.5vw, 120px);
}
@media screen and (max-width: 767px) {
  .division__list a {
    padding: 25px 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .division__list a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 25px 80px;
  }
}
.division__list .inner {
  position: relative;
}
.division__list .divisionname {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  font-size: clamp(14px, 1.1vw, 20px);
}
.division__list .divisionname::before {
  content: attr(data-en);
  display: block;
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0;
  line-height: 1.4;
  font-size: clamp(23px, 2.7vw, 60px);
}
.division__list .divisionname .text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
@media screen and (max-width: 767px) {
  .division__list .description {
    font-size: 14px;
  }
}
.division__list .infra {
  background: #2f4a2e;
  color: #dbd468;
}
.division__list .infra::before {
  content: "01";
}
.division__list .infra:hover {
  background: #3e3029;
}
.division__list .system {
  background: #21595e;
  color: #dbd468;
}
.division__list .system::before {
  content: "02";
}
.division__list .system:hover {
  background: #dbd468;
  color: #407f3e;
}
.division__list .media {
  background: #354765;
  color: #dbd468;
}
.division__list .media::before {
  content: "03";
}
.division__list .media:hover {
  background: #cedada;
  color: #354765;
}
.division__list .branding {
  background: #c76363;
  color: #dbd468;
}
.division__list .branding::before {
  content: "04";
}
.division__list .branding:hover {
  background: #df3e0b;
  color: #fff;
}
.division .content-sub {
  background: #407f3e;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .division .content-sub .content-sub__division {
    width: 89vw;
    max-width: 1700px;
    margin-right: auto;
    margin-left: auto;
  }
}
.division .content-sub__btn {
  background: #fff;
  color: #407f3e;
}
.division .content-sub__btn svg {
  fill: #407f3e;
}
.division .content-sub__btn:hover {
  background: #dbd468;
  color: #2f4a2e;
}
.division .content-sub__btn:hover svg {
  fill: #2f4a2e;
}
.division .footer {
  background: #407f3e;
  color: #dbd468;
}
@media print, screen and (min-width: 768px) {
  .division .footer__link li:nth-of-type(n+2) {
    border-left: 1px solid #dbd468;
  }
}

.infra .header {
  color: #dbd468;
}
.infra .header__logo {
  fill: #dbd468;
}
.infra .header__gnavi_toggle::before, .infra .header__gnavi_toggle::after {
  background: #dbd468;
}
.infra .header__gnavi a::after {
  background: #dbd468;
}
.infra .pageheading {
  background: #407f3e;
}
@media print, screen and (min-width: 768px) {
  .infra .pageheading__img {
    width: 89vw;
    max-width: 1700px;
  }
}
.infra .pageheading__ttl {
  color: #dbd468;
}
.infra .section_marquee {
  color: #659943;
}
.infra .maincont {
  background: #2f4a2e;
}
.infra .division-intro {
  color: #dbd468;
}
.infra .division-intro__txt ul {
  padding-left: 1.2em;
  margin-bottom: 15px;
}
.infra .division-intro__txt ul li {
  list-style-type: disc;
}
.infra .service {
  background: #407f3e;
}
.infra .service .section_ttl {
  color: #dbd468;
}
@media print, screen and (min-width: 768px) {
  .infra .service__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.infra .service__list li {
  background: url(../images/service_bg.jpg);
}
@media screen and (max-width: 767px) {
  .infra .service__list li {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .infra .service__list li {
    width: 47.5%;
    margin-bottom: 3.5%;
    padding: clamp(20px, 2.9vw, 60px);
  }
  .infra .service__list li:nth-of-type(odd) {
    margin-right: 5%;
  }
}
.infra .service__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.infra .service__ttl img {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 15px;
}
.infra .service__ttl .ttl {
  margin-bottom: clamp(20px, 2.3vw, 50px);
  line-height: 1.2;
  font-size: clamp(18px, 1.36vw, 26px);
  text-align: left;
}
.infra .service__ttl .ttl::before {
  display: block;
  content: attr(data-en);
  margin-bottom: 0;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-style: normal;
  font-size: 2em;
  letter-spacing: 0;
}
.infra .service__btn {
  position: relative;
  display: block;
  width: 190px;
  background: #000000;
  margin-top: 30px;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.infra .service__btn .animate__btn-inner {
  height: 57px;
}
.infra .service__btn .animate__btn-content {
  height: 57px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
}
.infra .service__btn:hover {
  background: #407f3e;
}
.infra .service__btn img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 13px;
  margin: auto 0;
}
@media screen and (min-width: 1301px) {
  .infra .content-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.infra .information .section_ttl {
  color: #dbd468;
}
@media screen and (min-width: 1301px) {
  .infra .information {
    width: 50%;
  }
}
.infra .information__inner {
  background: #fff;
  padding: clamp(20px, 1.8vw, 50px);
}
.infra .information__list li {
  border-bottom: 1px solid #000000;
}
.infra .information__list a {
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  .infra .information__list a {
    display: block;
  }
}
@media print, screen and (min-width: 768px) {
  .infra .information__list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: clamp(14px, 1vw, 18px);
  }
}
.infra .information__list .date {
  letter-spacing: 0.01em;
  font-size: 0.875em;
}
@media screen and (max-width: 767px) {
  .infra .information__list .date {
    margin-bottom: 5px;
  }
}
@media print, screen and (min-width: 768px) {
  .infra .information__list .date {
    width: 7em;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.infra .information .service__btn {
  margin: 30px 0 0 auto;
}
.infra .customer {
  background: #fff;
  /*
  @include mq-pcw {
      width: 50%;
  }
  */
}
.infra .customer .section_ttl {
  color: #407f3e;
}
.infra .content-sub {
  color: #dbd468;
}
@media print, screen and (min-width: 768px) {
  .infra .content-sub .content-sub__division {
    width: 89vw;
    max-width: 1700px;
    margin-right: auto;
    margin-left: auto;
  }
}
.infra .content-sub__btn {
  background: #fff;
  color: #2f4a2e;
}
.infra .content-sub__btn svg {
  fill: #2f4a2e;
}
.infra .content-sub__btn:hover {
  background: #407f3e;
  color: #fff;
}
.infra .content-sub__btn:hover svg {
  fill: #fff;
}
.infra .modal__toplead {
  font-weight: 900;
  font-size: clamp(20px, 2.3vw, 48px);
  color: #2f4a2e;
  line-height: 1.6;
}
.infra .modal__enttl {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-style: normal;
  font-size: clamp(32px, 3.5vw, 80px);
  color: #dbd468;
  line-height: 1.4;
}
.infra .modal__detail-ttl {
  font-size: clamp(18px, 1.7vw, 26px);
  color: #dbd468;
  font-weight: 900;
  line-height: 1.4;
}
.infra .modal__detail-lead {
  font-size: clamp(16px, 1.4vw, 24px);
  line-height: 1.4;
}
.infra .datacenter__detail {
  background: #407f3e;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .infra .datacenter__detaillist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.infra .datacenter__detaillist li {
  padding: 15px;
  background: #fff;
  color: #000000;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .infra .datacenter__detaillist li {
    font-size: 14px;
  }
  .infra .datacenter__detaillist li:nth-of-type(n+2) {
    margin-top: 15px;
  }
}
@media print, screen and (min-width: 768px) {
  .infra .datacenter__detaillist li {
    width: calc((100% - 30px) / 2);
  }
  .infra .datacenter__detaillist li:nth-of-type(n+3) {
    margin-top: 15px;
  }
}
.infra .datacenter__detaillist span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.infra .datacenter__detaillist.security li {
  text-align: center;
}
.infra .datacenter__detaillist.security span {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.infra .datacenter__detaillist-ttl {
  margin-bottom: 10px;
  color: #407f3e;
  font-weight: 900;
}
.infra .datacenter__managed {
  background: #2f4a2e;
  color: #fff;
}
.infra .datacenter__managedlist > li {
  padding: clamp(20px, 4vw, 30px) clamp(15px, 2.5vw, 25px);
  background: #fff;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .infra .datacenter__managedlist > li {
    font-size: 14px;
  }
}
@media print, screen and (min-width: 768px) {
  .infra .datacenter__managedlist > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.infra .datacenter__managedlist > li:nth-of-type(n+2) {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .infra .datacenter__managedlist img {
    display: block;
    margin: 0 auto 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .infra .datacenter__managedlist img {
    width: 90px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 30px;
  }
}
.infra .datacenter__managedlist-ttl {
  margin-bottom: 10px;
  font-weight: 900;
  color: #407f3e;
  font-size: clamp(16px, 1.8vw, 22px);
}
@media screen and (max-width: 767px) {
  .infra .datacenter__managedlist-ttl {
    text-align: center;
  }
}
.infra .datacenter__case {
  background: #407f3e;
  padding: clamp(20px, 4vw, 30px) clamp(15px, 2.5vw, 25px);
}
.infra .datacenter__case-ttl {
  line-height: 1.4;
}
.infra .datacenter__case-ttl::before {
  display: block;
  content: attr(data-en);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-style: normal;
  font-size: clamp(22px, 2.5vw, 55px);
}
.infra .datacenter__case-ttl .bold {
  font-size: clamp(18px, 1.7vw, 26px);
  color: #dbd468;
  font-weight: 900;
}
.infra .datacenter__case-point li {
  background: #ebe8d6;
  padding: clamp(20px, 3.5vw, 20px) clamp(15px, 2.5vw, 20px);
  color: #000000;
}
.infra .datacenter__case-point li:nth-of-type(n+2) {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .infra .datacenter__case-point li {
    font-size: 14px;
  }
}
.infra .datacenter__case-point-ttl {
  margin-bottom: 10px;
  font-weight: 900;
  color: #407f3e;
  font-size: clamp(16px, 1.8vw, 22px);
}
.infra .s2scan__detail {
  background: #407f3e;
  color: #fff;
}
.infra .s2scan__box_img {
  background: #fff;
  padding: 20px 15px;
  color: #000000;
  text-align: center;
}
.infra .s2scan__box_img .copy {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .infra .s2scan__box_img .copy {
    font-size: 12px;
  }
}
@media print, screen and (min-width: 768px) {
  .infra .s2scan__box_img .copy {
    font-size: 14px;
  }
}
@media print, screen and (min-width: 768px) {
  .infra .s2scan__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.infra .s2scan__list li {
  padding: 15px;
  background: #fff;
  color: #000000;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .infra .s2scan__list li {
    font-size: 14px;
  }
  .infra .s2scan__list li:nth-of-type(n+2) {
    margin-top: 15px;
  }
}
@media print, screen and (min-width: 768px) {
  .infra .s2scan__list li {
    width: calc((100% - 30px) / 2);
  }
  .infra .s2scan__list li:nth-of-type(n+3) {
    margin-top: 15px;
  }
}
.infra .s2scan__list div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.infra .s2scan__list span {
  font-weight: 900;
  color: #407f3e;
}
.infra .s2scan__test {
  background: #ebe8d6;
  padding: clamp(20px, 4vw, 30px) clamp(15px, 2.5vw, 25px);
  color: #000000;
}
@media print, screen and (min-width: 768px) {
  .infra .s2scan__testlist {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
.infra .footer {
  background: #2f4a2e;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .infra .footer__link li:nth-of-type(n+2) {
    border-left: 1px solid #fff;
  }
}

.system .header {
  color: #dbd468;
}
.system .header__logo {
  fill: #dbd468;
}
.system .header__gnavi_toggle::before, .system .header__gnavi_toggle::after {
  background: #dbd468;
}
.system .header__gnavi a::after {
  background: #dbd468;
}
.system .pageheading {
  background: #227777;
}
@media print, screen and (min-width: 768px) {
  .system .pageheading__img {
    width: 63.5vw;
    max-width: 1500px;
  }
}
.system .pageheading__ttl {
  color: #dbd468;
}
.system .section_marquee {
  color: #2e8986;
}
.system .maincont {
  background: #21595e;
}
.system .division-intro {
  color: #dbd468;
}
.system .service {
  background: #227777;
}
.system .service .section_ttl {
  color: #dbd468;
}
.system .service__list li {
  background: url(../images/service_bg.jpg);
}
@media screen and (max-width: 767px) {
  .system .service__list li {
    padding: 30px 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .system .service__list li {
    padding: clamp(20px, 2.9vw, 60px);
  }
}
.system .service__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.system .service__ttl img {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 15px;
}
.system .service__ttl .ttl {
  margin-bottom: clamp(20px, 2.3vw, 50px);
  line-height: 1.2;
  font-size: clamp(18px, 1.36vw, 26px);
  text-align: left;
}
.system .service__ttl .ttl::before {
  display: block;
  content: attr(data-en);
  margin-bottom: 0;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-style: normal;
  font-size: 2em;
  letter-spacing: 0;
}
.system .service__btn {
  position: relative;
  display: block;
  width: 190px;
  background: #000000;
  margin-top: 30px;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.system .service__btn .animate__btn-inner {
  height: 57px;
}
.system .service__btn .animate__btn-content {
  height: 57px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
}
.system .service__btn:hover {
  background: #227777;
}
.system .service__btn img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 13px;
  margin: auto 0;
}
@media screen and (min-width: 1301px) {
  .system .content-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.system .customer {
  background: #fff;
}
.system .customer .section_ttl {
  color: #21595e;
}
.system .content-sub {
  color: #dbd468;
}
@media print, screen and (min-width: 768px) {
  .system .content-sub .content-sub__division {
    width: 89vw;
    max-width: 1700px;
    margin-right: auto;
    margin-left: auto;
  }
}
.system .content-sub__btn {
  background: #fff;
  color: #2f4a2e;
}
.system .content-sub__btn svg {
  fill: #2f4a2e;
}
.system .content-sub__btn:hover {
  background: #407f3e;
  color: #fff;
}
.system .content-sub__btn:hover svg {
  fill: #fff;
}
.system .footer {
  background: #21595e;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .system .footer__link li:nth-of-type(n+2) {
    border-left: 1px solid #fff;
  }
}

.media .header {
  color: #dbd468;
}
.media .header__logo {
  fill: #dbd468;
}
.media .header__gnavi_toggle::before, .media .header__gnavi_toggle::after {
  background: #dbd468;
}
.media .header__gnavi a::after {
  background: #dbd468;
}
.media .pageheading {
  background: #354765;
}
@media print, screen and (min-width: 768px) {
  .media .pageheading__img {
    width: 47.3vw;
    max-width: 900px;
  }
}
.media .pageheading__ttl {
  color: #dbd468;
}
.media .section_marquee {
  color: #275f89;
}
.media .maincont {
  background: #1f244c;
}
.media .division-intro {
  color: #dbd468;
}
.media .division-intro__lead {
  max-width: 13.5em;
}
.media .service {
  background: #354765;
}
.media .service .section_ttl {
  color: #dbd468;
}
@media print, screen and (min-width: 768px) {
  .media .service__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.media .service__list li {
  background: url(../images/service_bg.jpg);
}
@media screen and (max-width: 767px) {
  .media .service__list li {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .media .service__list li {
    width: 47.5%;
    margin-bottom: 3.5%;
    padding: clamp(20px, 2.9vw, 60px);
  }
  .media .service__list li:nth-of-type(odd) {
    margin-right: 5%;
  }
}
.media .service__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.media .service__ttl img {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 15px;
}
.media .service__ttl .ttl {
  margin-bottom: clamp(20px, 2.3vw, 50px);
  line-height: 1.2;
  font-size: clamp(18px, 1.36vw, 26px);
  text-align: left;
}
.media .service__ttl .ttl::before {
  display: block;
  content: attr(data-en);
  margin-bottom: 0;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-style: normal;
  font-size: 2em;
  letter-spacing: 0;
}
.media .service__btn {
  position: relative;
  display: block;
  width: 190px;
  background: #000000;
  margin-top: 30px;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.media .service__btn .animate__btn-inner {
  height: 57px;
}
.media .service__btn .animate__btn-content {
  height: 57px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
}
.media .service__btn:hover {
  background: #354765;
}
.media .service__btn img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 13px;
  margin: auto 0;
}
@media screen and (min-width: 1301px) {
  .media .content-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.media .customer {
  background: #fff;
}
.media .customer .section_ttl {
  color: #354765;
}
.media .content-sub {
  color: #dbd468;
}
@media print, screen and (min-width: 768px) {
  .media .content-sub .content-sub__division {
    width: 47.3vw;
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
  }
}
.media .content-sub__btn {
  background: #fff;
  color: #1f244c;
}
.media .content-sub__btn svg {
  fill: #1f244c;
}
.media .content-sub__btn:hover {
  background: #354765;
  color: #fff;
}
.media .content-sub__btn:hover svg {
  fill: #fff;
}
.media .modal__toplead {
  font-weight: 900;
  font-size: clamp(20px, 2.3vw, 48px);
  color: #1f244c;
  line-height: 1.6;
}
.media .modal__enttl {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-style: normal;
  font-size: clamp(32px, 3.5vw, 80px);
  color: #dbd468;
  line-height: 1.4;
}
.media .modal__detail-ttl {
  font-size: clamp(18px, 1.7vw, 26px);
  color: #dbd468;
  font-weight: 900;
  line-height: 1.4;
}
.media .modal__detail-lead {
  font-size: clamp(16px, 1.4vw, 24px);
  line-height: 1.4;
}
.media .modal__detail {
  background: #354765;
  color: #fff;
}
.media .modal__detail2 {
  background: #1f244c;
  color: #fff;
}
.media .footer {
  background: #1f244c;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .media .footer__link li:nth-of-type(n+2) {
    border-left: 1px solid #fff;
  }
}

.branding .header {
  color: #dbd468;
}
.branding .header__logo {
  fill: #dbd468;
}
.branding .header__gnavi_toggle::before, .branding .header__gnavi_toggle::after {
  background: #dbd468;
}
.branding .header__gnavi a::after {
  background: #dbd468;
}
.branding .pageheading {
  background: #c76363;
}
@media print, screen and (min-width: 768px) {
  .branding .pageheading__img {
    width: 48.6vw;
    max-width: 950px;
  }
}
.branding .pageheading__ttl {
  color: #dbd468;
}
.branding .section_marquee {
  color: #ee7c76;
}
.branding .maincont {
  background: #aa2c13;
}
.branding .division-intro {
  color: #dbd468;
}
.branding .service {
  background: #c76363;
}
.branding .service .section_ttl {
  color: #dbd468;
}
@media print, screen and (min-width: 768px) {
  .branding .service__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.branding .service__list li {
  background: url(../images/service_bg.jpg);
}
@media screen and (max-width: 767px) {
  .branding .service__list li {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .branding .service__list li {
    width: 47.5%;
    margin-bottom: 3.5%;
    padding: clamp(20px, 2.9vw, 60px);
  }
  .branding .service__list li:nth-of-type(odd) {
    margin-right: 5%;
  }
}
.branding .service__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.branding .service__ttl img {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 15px;
}
.branding .service__ttl .ttl {
  margin-bottom: clamp(20px, 2.3vw, 50px);
  line-height: 1.2;
  font-size: clamp(18px, 1.36vw, 26px);
  text-align: left;
}
.branding .service__ttl .ttl::before {
  display: block;
  content: attr(data-en);
  margin-bottom: 0;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-style: normal;
  font-size: 2em;
  letter-spacing: 0;
}
.branding .service__btn {
  position: relative;
  display: block;
  width: 190px;
  background: #000000;
  margin-top: 30px;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.branding .service__btn .animate__btn-inner {
  height: 57px;
}
.branding .service__btn .animate__btn-content {
  height: 57px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
}
.branding .service__btn:hover {
  background: #d57373;
}
.branding .service__btn img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 13px;
  margin: auto 0;
}
@media screen and (min-width: 1301px) {
  .branding .content-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.branding .customer {
  background: #fff;
}
.branding .customer .section_ttl {
  color: #df3e0b;
}
.branding .content-sub {
  color: #dbd468;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .branding .content-sub .content-sub__division {
    width: 48.6vw;
    max-width: 950px;
    margin-right: auto;
    margin-left: auto;
  }
}
.branding .content-sub__btn {
  background: #fff;
  color: #aa2c13;
}
.branding .content-sub__btn svg {
  fill: #aa2c13;
}
.branding .content-sub__btn:hover {
  background: #c76363;
  color: #fff;
}
.branding .content-sub__btn:hover svg {
  fill: #fff;
}
.branding .footer {
  background: #aa2c13;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .branding .footer__link li:nth-of-type(n+2) {
    border-left: 1px solid #fff;
  }
}

.services {
  background: #354765;
}
.services .header {
  color: #fff;
}
.services .header__logo {
  fill: #fff;
}
.services .header__gnavi_toggle::before, .services .header__gnavi_toggle::after {
  background: #fff;
}
.services .header__gnavi a::after {
  background: #fff;
}
.services .pageheading__img {
  width: clamp(315px, 57.2vw, 961px);
}
.services .pageheading__ttl {
  color: #fff;
}
.services .section_marquee {
  color: #383754;
}
.services .maincont {
  background: #5c6db2;
}
.services .section_ttl {
  color: #1f244c;
}
@media print, screen and (min-width: 768px) {
  .services__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.services__list li {
  background: url(../images/service_bg.jpg);
}
@media screen and (max-width: 767px) {
  .services__list li {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .services__list li {
    width: 47.5%;
    margin-bottom: 3.5%;
    padding: clamp(20px, 2.9vw, 60px);
  }
  .services__list li:nth-of-type(odd) {
    margin-right: 5%;
  }
}
.services__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.services__ttl img {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 15px;
}
.services__ttl .ttl {
  margin-bottom: clamp(20px, 2.3vw, 50px);
  line-height: 1.2;
  font-size: clamp(18px, 1.36vw, 26px);
}
.services__ttl .ttl::before {
  display: block;
  content: attr(data-en);
  margin-bottom: 0;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-style: normal;
  font-size: 2em;
  letter-spacing: 0;
  text-align: left;
}
.services__btn {
  position: relative;
  display: block;
  width: 190px;
  background: #000000;
  margin-top: 30px;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.services__btn .animate__btn-inner {
  height: 57px;
}
.services__btn .animate__btn-content {
  height: 57px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
}
.services__btn:hover {
  background: #407f3e;
}
.services__btn img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 13px;
  margin: auto 0;
}
.services__special {
  background: #383754;
}
.services__special-ttl {
  font-size: clamp(26px, 3.5vw, 50px);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-style: normal;
  letter-spacing: 0;
  color: #fff;
}
.services__special-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .services__special-list li {
    width: calc((100% - 15px) / 2);
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .services__special-list li {
    width: 47.5%;
    margin-bottom: 3.5%;
  }
}
@media screen and (min-width: 1301px) {
  .services__special-list li {
    width: 22%;
  }
}
.services__special-list a {
  display: block;
}
.services__special-list a img {
  opacity: 1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.services__special-list a:hover img {
  opacity: 0;
}
.services__special-list a.matagi {
  background: url(../images/service_matagi_on.jpg) no-repeat 0 0/cover;
}
.services__special-list a.server {
  background: url(../images/service_s2server_on.jpg) no-repeat 0 0/cover;
}
.services__special-list a.web {
  background: url(../images/service_s2webservice_on.jpg) no-repeat 0 0/cover;
}
.services__special-list a.furusato {
  background: url(../images/service_furusatoplus_on.jpg) no-repeat 0 0/cover;
}
.services .content-sub {
  background: #354765;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .services .content-sub .content-sub__division {
    width: 89vw;
    max-width: 1700px;
    margin-right: auto;
    margin-left: auto;
  }
}
.services .content-sub__btn {
  background: #fff;
  color: #354765;
}
.services .content-sub__btn svg {
  fill: #354765;
}
.services .content-sub__btn:hover {
  background: #354765;
  color: #fff;
}
.services .content-sub__btn:hover svg {
  fill: #fff;
}
.services .footer {
  background: #354765;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .services .footer__link li:nth-of-type(n+2) {
    border-left: 1px solid #fff;
  }
}

.corporate {
  background: #5c6db2;
}
.corporate .header {
  color: #1f244c;
}
.corporate .header__logo {
  fill: #1f244c;
}
.corporate .header__gnavi_toggle::before, .corporate .header__gnavi_toggle::after {
  background: #1f244c;
}
.corporate .header__gnavi a::after {
  background: #1f244c;
}
.corporate .pageheading__img {
  width: clamp(315px, 57.2vw, 961px);
}
.corporate .pageheading__ttl {
  color: #1f244c;
}
.corporate .section_marquee {
  color: #fff;
}
.corporate .maincont {
  background: #354765;
}
.corporate .division-intro {
  color: #fff;
}
.corporate .division-intro__txt ul {
  padding-left: 1.2em;
  margin-bottom: 15px;
}
.corporate .division-intro__txt ul li {
  list-style-type: disc;
}
.corporate .division-intro:nth-child(2n) {
  background: #5c6db2;
}
.corporate .division-intro:nth-child(3n) {
  background: #1f244c;
}
.corporate .content-sub {
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .corporate .content-sub .content-sub__division {
    width: 89vw;
    max-width: 1700px;
    margin-right: auto;
    margin-left: auto;
  }
}
.corporate .content-sub__btn {
  background: #fff;
  color: #1f244c;
}
.corporate .content-sub__btn svg {
  fill: #1f244c;
}
.corporate .content-sub__btn:hover {
  background: #1f244c;
  color: #fff;
}
.corporate .content-sub__btn:hover svg {
  fill: #fff;
}
.corporate .footer {
  background: #354765;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .corporate .footer__link li:nth-of-type(n+2) {
    border-left: 1px solid #fff;
  }
}

.recruit.mainpage {
  background: #ee7c76;
}
.recruit.mainpage .header {
  color: #df3e0b;
}
.recruit.mainpage .header__logo {
  fill: #df3e0b;
}
.recruit.mainpage .header__gnavi_toggle::before, .recruit.mainpage .header__gnavi_toggle::after {
  background: #df3e0b;
}
.recruit.mainpage .header__gnavi a::after {
  background: #df3e0b;
}
.recruit.mainpage .pageheading {
  background: #ee7c76;
}
.recruit.mainpage .pageheading__img {
  width: clamp(270px, 49.8vw, 838px);
}
.recruit.mainpage .pageheading__ttl {
  color: #000000;
}
.recruit.mainpage .section_marquee {
  color: #fa8d87;
}
.recruit.mainpage .maincont {
  background: #ec908b;
}
.recruit.mainpage .recruit-intro .division-intro__lead {
  color: #df3e0b;
}
.recruit.mainpage .recruit-intro .division-intro__txt {
  color: #000000;
}
.recruit.mainpage .recruit-intro .division-intro__txt ul {
  padding-left: 1.2em;
  margin-bottom: 15px;
}
.recruit.mainpage .recruit-intro .division-intro__txt ul li {
  list-style-type: disc;
}
.recruit.mainpage .recruit-intro__btn-wrap {
  text-align: left;
}
.recruit.mainpage .recruit-division {
  background: #ee7c76;
}
.recruit.mainpage .recruit-division .section_ttl {
  color: #df3e0b;
}
@media print, screen and (min-width: 768px) {
  .recruit.mainpage .recruit-division__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.recruit.mainpage .recruit-division__list li {
  background: url(../images/service_bg.jpg);
}
@media screen and (max-width: 767px) {
  .recruit.mainpage .recruit-division__list li {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .recruit.mainpage .recruit-division__list li {
    width: 47.5%;
    margin-bottom: 3.5%;
    padding: clamp(20px, 2.9vw, 60px);
  }
  .recruit.mainpage .recruit-division__list li:nth-of-type(odd) {
    margin-right: 5%;
  }
}
.recruit.mainpage .recruit-division__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.recruit.mainpage .recruit-division__ttl img {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 15px;
}
.recruit.mainpage .recruit-division__ttl .ttl {
  margin-bottom: clamp(20px, 2.3vw, 50px);
  line-height: 1.2;
  font-size: clamp(18px, 1.36vw, 26px);
}
.recruit.mainpage .recruit-division__ttl .ttl::before {
  display: block;
  content: attr(data-en);
  margin-bottom: 0;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-style: normal;
  font-size: 2em;
  letter-spacing: 0;
  text-align: left;
}
.recruit.mainpage .recruit-division__btn {
  position: relative;
  display: block;
  width: 290px;
  background: #000000;
  margin-top: 30px;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.recruit.mainpage .recruit-division__btn .animate__btn-inner {
  height: 57px;
}
.recruit.mainpage .recruit-division__btn .animate__btn-content {
  height: 57px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
}
.recruit.mainpage .recruit-division__btn:hover {
  background: #df3e0b;
}
.recruit.mainpage .recruit-division__btn img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 13px;
  margin: auto 0;
}
.recruit.mainpage .recruit-interview {
  background: #ee7c76;
}
.recruit.mainpage .recruit-interview .section__ttl {
  color: #df3e0b;
}
@media print, screen and (min-width: 768px) {
  .recruit.mainpage .recruit-interview .interview-item {
    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: 50px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .recruit.mainpage .recruit-interview .interview-item__img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .recruit.mainpage .recruit-interview .interview-item__img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 35%;
  }
}
.recruit.mainpage .recruit-interview .interview-item__content {
  color: #000000;
  text-align: left;
}
@media print, screen and (min-width: 768px) {
  .recruit.mainpage .recruit-interview .interview-item__content {
    width: 65%;
  }
}
.recruit.mainpage .recruit-interview .interview-item__ttl {
  font-size: clamp(20px, 2vw, 38px);
  font-weight: bold;
  margin-bottom: 15px;
}
.recruit.mainpage .recruit-interview .interview-item__name {
  margin-bottom: 30px;
}
.recruit.mainpage .recruit-interview .interview-item__summary {
  font-size: clamp(16px, 1.4vw, 24px);
  line-height: 1.8;
  margin-bottom: 30px;
}
.recruit.mainpage .recruit-interview .interview-item__btn-wrap {
  text-align: left;
}
.recruit.mainpage .recruit-workstyle .section_ttl {
  color: #df3e0b;
}
.recruit.mainpage .recruit-workstyle .list_outline {
  font-size: clamp(16px, 1.1vw, 24px);
}
.recruit.mainpage .recruit-workstyle .list_outline__btn {
  background: #fff;
  color: #2f4a2e;
}
.recruit.mainpage .recruit-workstyle .list_outline__btn svg {
  fill: #2f4a2e;
}
.recruit.mainpage .recruit-workstyle .list_outline__btn:hover {
  background: #407f3e;
  color: #fff;
}
.recruit.mainpage .recruit-workstyle .list_outline__btn:hover svg {
  fill: #fff;
}
@media print, screen and (min-width: 768px) {
  .recruit.mainpage .recruit-workstyle .list_outline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.recruit.mainpage .recruit-workstyle .list_outline dt {
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .recruit.mainpage .recruit-workstyle .list_outline dt {
    margin-bottom: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .recruit.mainpage .recruit-workstyle .list_outline dt {
    width: 15em;
    margin-bottom: 30px;
  }
}
.recruit.mainpage .recruit-workstyle .list_outline dd {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .recruit.mainpage .recruit-workstyle .list_outline dd {
    font-size: 14px;
  }
}
@media print, screen and (min-width: 768px) {
  .recruit.mainpage .recruit-workstyle .list_outline dd {
    width: calc(100% - 15em);
  }
}
.recruit.mainpage .recruit-workstyle .sub__ttl {
  margin-bottom: 30px;
  font-size: clamp(20px, 1.9vw, 40px);
  font-weight: 900;
  color: #407f3e;
}
.recruit.mainpage .recruit-workstyle .sub__ttl2 {
  margin-bottom: 20px;
  font-size: clamp(18px, 1.6vw, 34px);
}
.recruit.mainpage .recruit-workstyle .legal .list_outline dt {
  color: #407f3e;
}
.recruit.mainpage .recruit-jobs {
  background: #ee7c76;
}
.recruit.mainpage .recruit-jobs .section_ttl {
  color: #000000;
}
.recruit.mainpage .recruit-jobs__list {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  .recruit.mainpage .recruit-jobs__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
  }
}
.recruit.mainpage .recruit-jobs__list li iframe {
  border: none;
  max-width: 100%;
  min-width: 240px;
  width: 500px;
}
.recruit.mainpage .content-sub {
  background: #101010;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .recruit.mainpage .content-sub .content-sub__division {
    width: 89vw;
    max-width: 1700px;
    margin-right: auto;
    margin-left: auto;
  }
}
.recruit.mainpage .content-sub__btn {
  background: #fff;
  color: #df3e0b;
}
.recruit.mainpage .content-sub__btn svg {
  fill: #df3e0b;
}
.recruit.mainpage .content-sub__btn:hover {
  background: #df3e0b;
  color: #fff;
}
.recruit.mainpage .content-sub__btn:hover svg {
  fill: #fff;
}
.recruit.mainpage .footer {
  background: #101010;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .recruit.mainpage .footer__link li:nth-of-type(n+2) {
    border-left: 1px solid #fff;
  }
}

.contactus {
  background: #cedada;
}
.contactus .header {
  color: #3e3029;
}
.contactus .header__logo {
  fill: #3e3029;
}
.contactus .header__gnavi_toggle::before, .contactus .header__gnavi_toggle::after {
  background: #3e3029;
}
.contactus .header__gnavi a::after {
  background: #3e3029;
}
.contactus .pageheading__img {
  width: clamp(310px, 44.9vw, 755px);
}
.contactus .pageheading__ttl {
  color: #3e3029;
}
.contactus .section_marquee {
  color: #b6d0d0;
}
.contactus .maincont {
  background: #b6d0d0;
  color: #3e3029;
}
.contactus .furusatoplus__btn {
  position: relative;
  display: block;
  width: 270px;
  background: #354765;
  margin-top: 15px;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  font-weight: 900;
}
.contactus .furusatoplus__btn .animate__btn-inner {
  height: 57px;
}
.contactus .furusatoplus__btn .animate__btn-content {
  height: 57px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
}
.contactus .furusatoplus__btn:hover {
  background: #354765;
  color: #fff;
}
.contactus .furusatoplus__btn img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 13px;
  margin: auto 0;
}
.contactus__form-ttl {
  font-size: clamp(20px, 2.3vw, 48px);
  font-weight: 900;
}
.contactus__form-layout {
  max-width: 800px;
}
.contactus__form-layout dt span {
  display: inline-block;
  margin-left: 1em;
  color: #df3e0b;
}
.contactus__form-layout dd {
  margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) {
  .contactus__form-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contactus__form-layout dt {
    width: 15em;
    padding-top: 5px;
  }
  .contactus__form-layout dd {
    width: calc(100% - 15em);
  }
}
.contactus__note {
  font-size: 14px;
}
.contactus input[type=submit].contactus__btn-submit {
  display: block;
  width: 100%;
  max-width: 450px;
  padding: 25px 0;
  background: #3e3029;
  text-align: center;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  font-weight: 900;
}
.contactus .content-sub {
  background: #3e3029;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .contactus .content-sub .content-sub__division {
    width: 89vw;
    max-width: 1700px;
    margin-right: auto;
    margin-left: auto;
  }
}
.contactus .content-sub__btn {
  background: #fff;
  color: #3e3029;
}
.contactus .content-sub__btn svg {
  fill: #3e3029;
}
.contactus .content-sub__btn:hover {
  background: #cedada;
  color: #3e3029;
}
.contactus .content-sub__btn:hover svg {
  fill: #3e3029;
}
.contactus .footer {
  background: #3e3029;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .contactus .footer__link li:nth-of-type(n+2) {
    border-left: 1px solid #fff;
  }
}

input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]), textarea {
  width: 100%;
  background: #fff;
  padding: 10px 5px;
  border-radius: 0;
}
input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):focus, textarea:focus {
  -webkit-box-shadow: 0 0 3px #3e3029;
          box-shadow: 0 0 3px #3e3029;
}

input:not([type=radio]), input:not([type=checkbox]), select, button {
  border-radius: 0;
}

textarea {
  height: 200px;
}

@media print, screen and (min-width: 768px) {
  .select_radio {
    padding-top: 5px;
  }
}
.select_radio label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-size: 16px;
  position: relative;
}
.select_radio input[type=radio] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.select_radio .wpcf7-list-item {
  display: block;
}

.wpcf7-response-output {
  background: #fff;
}

.sub .header {
  color: #407f3e;
}
.sub .header__logo {
  fill: #407f3e;
}
.sub .header__gnavi_toggle::before, .sub .header__gnavi_toggle::after {
  background: #407f3e;
}
.sub .header__gnavi a::after {
  background: #407f3e;
}
.sub .pageheading {
  background: #ebe8d6;
  position: relative;
}
.sub .pageheading__img {
  margin-top: 0;
  font-size: clamp(40px, 6.5vw, 170px);
  color: #407f3e;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-style: normal;
  letter-spacing: 0;
}
.sub .pageheading__ttl {
  color: #407f3e;
}
.sub .maincont {
  background: #ebe8d6;
}
@media screen and (max-width: 767px) {
  .sub .maincont {
    font-size: 14px;
  }
}
.sub .content-sub {
  background: #407f3e;
  color: #dbd468;
}
.sub .content-sub__btn {
  background: #fff;
  color: #407f3e;
}
.sub .content-sub__btn svg {
  fill: #407f3e;
}
.sub .content-sub__btn:hover {
  background: #dbd468;
  color: #407f3e;
}
.sub .content-sub__btn:hover svg {
  fill: #407f3e;
}
.sub .footer {
  background: #407f3e;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .sub .footer__link li:nth-of-type(n+2) {
    border-left: 1px solid #fff;
  }
}

.list_outline {
  font-size: clamp(16px, 1.1vw, 24px);
}
.list_outline__btn {
  background: #fff;
  color: #2f4a2e;
}
.list_outline__btn svg {
  fill: #2f4a2e;
}
.list_outline__btn:hover {
  background: #407f3e;
  color: #fff;
}
.list_outline__btn:hover svg {
  fill: #fff;
}
@media print, screen and (min-width: 768px) {
  .list_outline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.list_outline dt {
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .list_outline dt {
    margin-bottom: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .list_outline dt {
    width: 15em;
    margin-bottom: 30px;
  }
}
.list_outline dd {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .list_outline dd {
    font-size: 14px;
  }
}
@media print, screen and (min-width: 768px) {
  .list_outline dd {
    width: calc(100% - 15em);
  }
}

.sub__ttl {
  margin-bottom: 30px;
  font-size: clamp(20px, 1.9vw, 40px);
  font-weight: 900;
  color: #407f3e;
}

.sub__ttl2 {
  margin-bottom: 20px;
  font-size: clamp(18px, 1.6vw, 34px);
}

.legal .list_outline dt {
  color: #407f3e;
}

.privacy .list_decimal > li {
  margin-bottom: 1.5em;
}
@media print, screen and (min-width: 768px) {
  .privacy__license {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .privacy__license p {
    margin-bottom: 15px;
  }
}
@media print, screen and (min-width: 768px) {
  .privacy__license p {
    margin-right: 30px;
  }
}
.privacy__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  padding: 20px 15px;
}
.privacy__logo img {
  width: clamp(120px, 8.5vw, 200px);
  margin: 15px;
}
@media print, screen and (min-width: 768px) {
  .privacy__logo {
    width: 500px;
  }
}

.terms__list li {
  margin-bottom: 20px;
}
.terms__list .animate__btn {
  display: block;
  width: 100%;
  max-width: 600px;
  background: #407f3e;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  font-weight: 900;
}
.terms__list .animate__btn .animate__btn-inner {
  height: 57px;
}
.terms__list .animate__btn .animate__btn-content {
  height: 57px;
  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;
}
.terms__list .animate__btn:hover {
  background: #dbd468;
  color: #000000;
}

.news__list {
  width: 100%;
  max-width: 1000px;
}
.news__list li {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .news__list li {
    font-size: 14px;
  }
}
.news__list p {
  display: inline;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#000000));
  background-image: linear-gradient(#000000, #000000);
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: left bottom;
  -webkit-transition: background-size 0.5s ease-out;
  transition: background-size 0.5s ease-out;
}
.news__list p:hover {
  background-size: 100% 2px;
}
.news__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875em;
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0.03em;
}
.news__category {
  display: inline-block;
  padding: 0 0.5em;
  margin-left: 10px;
  color: #fff;
}
.news__category.category-news {
  background: #407f3e;
}
.news__category.category-topics {
  background: #354765;
}
.news__ttl-inner {
  width: 100%;
  max-width: 1000px;
}
.news__content {
  width: 100%;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .news__content {
    font-size: 14px;
  }
}
.news__content h3 {
  font-weight: 900;
  font-size: 1.2em;
}
.news__content p {
  margin-bottom: 1.7em;
}
.news__content strong {
  font-weight: 900;
}
.news__back-btn {
  position: relative;
  display: block;
  width: 300px;
  background: #407f3e;
  margin-top: 15px;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  font-weight: 900;
}
.news__back-btn .animate__btn-inner {
  height: 57px;
}
.news__back-btn .animate__btn-content {
  height: 57px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
}
.news__back-btn:hover {
  background: #2f4a2e;
  color: #fff;
}
.news__back-btn img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 13px;
  margin: auto 0;
}