@charset "UTF-8";

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 62.5%;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  color: #252f30;
  background-color: #fefefe;
}
.en {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.f500 {
  font-weight: 500;
}
.f700 {
  font-weight: 700;
}
::selection {
  background: #d3d3d3;
}
::-moz-selection {
  background: #d3d3d3;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
input::placeholder,
textarea::placeholder {
  color: #999;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
}
img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
hr {
  margin: 0;
  border: none;
}
.green1 {
  background-color: #44af35;
}
.green2 {
  background-color: #009e41;
}
.pc {
  display: block;
}
.sp {
  display: none;
}

/* header */
.header {
  width: 100%;
  padding: 20px 30px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  width: 240px;
}
.header-inner nav {
  display: flex;
  align-items: center;
  margin-right: 60px;
}
.header-nav {
  font-size: 1.6em;
  display: flex;
  align-items: center;
}
.header-nav li {
  margin: 0 30px 0 0;
}
.header-nav li a {
  color: #fff;
}
.header-nav li.line {
  padding: 7px 0;
  position: relative;
}
.header-nav li.line::before {
  background: #fff;
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.header-nav.is-dark li.line::before {
  background: #44af35;
  height: 2px;
}
.header-nav li.line:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.header-btn {
  font-size: 1.5em;
}
.header-btn a {
  color: #fff;
  padding: 9px 38px 10px 18px;
  border: 1px solid #fff;
  border-radius: 20px;
  background: transparent;
  position: relative;
  overflow: visible;
  display: block;
}
.header-btn .btn-text {
  display: inline-block;
  transition: transform 0.35s ease;
}
.header-btn .arrow {
  width: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}
.header-btn .arrow-out {
  right: 15px;
  opacity: 1;
}
.header-btn .arrow-in {
  left: 0;
  opacity: 0;
  transform: translate(0, -50%);
}
.header-btn a:hover .btn-text {
  transform: translateX(20px);
}
.header-btn a:hover .arrow-out {
  transform: translate(14px, -50%);
  opacity: 0;
}
.header-btn a:hover .arrow-in {
  transform: translate(15px, -50%);
  opacity: 1;
}

/* top */
.top {
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: hidden;
}
.top-txt-wrap {
  color: #fff;
  position: absolute;
  left: 5%;
  bottom: 8%;
  z-index: 2;
}
.title {
  font-size: clamp(40px, 5.7vw, 80px);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.title-sub {
  font-size: clamp(14px, 1.6vw, 22px);
  padding: 25px 0 0 4px;
}
.video-wrap {
  position: absolute;
  inset: 0;
}
.video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* section */
.section-title {
  font-size: clamp(16px, 1.3vw, 20px);
  padding-left: 15px;
  position: relative;
}
.section-title::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 0.02em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section-txt-t {
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 2.2;
  color: #252f30;
  margin: 2em 0 0 0;
}
.section-txt {
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 2.2;
  color: #252f30;
  margin: 1em 0 0 0;
}
.btn {
  font-size: clamp(13px, 1.1vw, 16px);
}
.btn a {
  padding: 14px 38px 15px 18px;
  border-radius: 5px;
  position: relative;
  overflow: visible;
  display: inline-block;
}
.btn .btn-text {
  display: inline-block;
  transition: transform 0.35s ease;
}
.btn .arrow {
  width: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}
.btn .arrow-out {
  right: 15px;
  opacity: 1;
}
.btn .arrow-in {
  left: 0;
  opacity: 0;
  transform: translate(0, -50%);
}
.btn a:hover .btn-text {
  transform: translateX(20px);
}
.btn a:hover .arrow-out {
  transform: translate(14px, -50%);
  opacity: 0;
}
.btn a:hover .arrow-in {
  transform: translate(15px, -50%);
  opacity: 1;
}
.btn-g a {
  color: #009e41;
  background: transparent;
  border: 1px solid #009e41;
}
.btn-w a {
  color: #eeeeef;
  background: transparent;
  border: 1px solid #eeeeef;
}

/* value */
.value {
  padding: 100px 0
}
.value-title {
  margin-left: 5%;
}
.value-title::before {
  background: #44af35;
}
.value-inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.value-box {
  margin: 50px 0 0 0;
}
.value-l {
  width: 40%;
}
.value-r {
  width: 50%;
}
.value-box img {
  border-radius: 10px;
}
.value-title-sub {
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.6;
}
.value-btn {
  margin: 4em 0 0 0;
  display: flex;
  justify-content: flex-start;
}

/* service */
.service {
  padding: 100px 0;
  background-image: url(../img/top/service.jpg?var=260212);
  background-position: center;
  background-size: cover;
}
.service-inner {
  width: 90%;
  margin: 0 auto;
  padding: 0 0 0 5%;
}
.service-box {
  display: none;
}
.service-box img {
  border-radius: 10px;
}
.service-title {
  margin-left: 10%;
}
.service-title::before {
  background: #44af35;
}
.service-title-sub {
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.6;
  margin: 1em 0 0 0;
}
.service-btn {
  margin: 4em 0 0 0;
  display: flex;
  justify-content: flex-start;
}

/* cr */
.cr {
  background: #354244;
  padding: 100px 0;
}
.cr-inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.cr-title::before {
  background: #44af35;
}
.cr-box {
  width: 48%;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  padding: 5em 5em;
}
.cr-title {
  font-size: clamp(16px, 1.3vw, 20px);
  color: #eeeeef;
}
.cr-title-sub {
  font-size: clamp(18px, 1.43vw, 20px);
  line-height: 1.6;
  color: #eeeeef;
  margin: 25px 0 0 0;
}
.cr-txt {
  font-size: clamp(13px, 1vw, 14px);
  line-height: 1.8;
  color: #eeeeef;
  margin: 20px 0 25px 0;
}
.cr-btn {
  display: flex;
  justify-content: flex-end;
}

/* footer */
.footer {
  width: 100%;
  color: #252f30;
  margin: 0 auto;
}
.footer-inner {
  width: 90%;
  margin: 0 auto;
}
.footer-logo {
  width: 40%;
  max-width: 500px;
}
.footer-t {
  margin: 0;
  padding: 100px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-info-wrap {
  display: flex;
}
.footer-info {
  font-size: 13px;
  line-height: 1.8;
  border-top: 2px solid #f7f7f5;
  margin: 0 80px 0 0;
  padding: 20px 0 0 0;
}
.footer-nav {
  border-top: 2px solid #f7f7f5;
  margin: 0;
  padding: 20px 0 0 0;
  display: flex;
}
.footer-nav li {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 20px 0 0;
}
.footer-nav li:last-child {
  margin: 0;
}
.footer-nav li a {
  color: #252f30;
}
.footer-nav li a:hover {
  color: #009e41;
}
.footer-b {
  border-top: 2px solid #f7f7f5;
  margin: 100px 0 0 0;
  padding: 30px 0 35px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 12px;
}
.footer-copy a {
  color: #252f30;
}
.footer-copy a:hover {
  color: #009e41;
}

@media screen and (max-width:1380px) {
  /* footer */
  .footer-t {
    align-items: flex-start;
  }
  .footer-info-wrap {
    display: block;
  }
  .footer-info {
    text-align: right;
    margin: 0;
    padding: 30px 0 0 0;
  }
  .footer-nav {
    margin: 30px 0 0 0;
    padding: 30px 0 0 0;
  }
}

@media screen and (max-width:880px) {
  /* header */
  .header-inner nav {
    display: none;
  }
  /* value */
  .value-inner {
    display: block;
  }
  .value-l {
    width: 60%;
  }
  .value-r {
    width: 100%;
  }
  /* service */
  .service-inner {
    padding: 0;
  }
  .service-title {
    margin-left: 5%;
  }
}

@media screen and (max-width:767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /* header */
  .header {
    padding: 20px;
  }
  .header-logo {
    width: 200px;
  }
  /* top */
  .top-txt-wrap {
    left: 5%;
    bottom: 8%;
  }
  .title {
    line-height: 1.4;
  }
  .title-sub {
    padding: 15px 0 0 3px;
  }
  /* section */
  .section-txt-t {
    line-height: 2;
    margin: 20px 0 0 0;
  }
  .section-txt {
    line-height: 2;
    margin: 15px 0 0 0;
  }
  .btn .arrow {
    transform: translateY(-50%);
  }
  .btn a:hover .btn-text {
    transform: translateX(0);
  }
  .btn a:hover .arrow-out {
    transform: translate(0, -50%);
    opacity: 1;
  }
  .btn a:hover .arrow-in {
    transform: translate(0, -50%);
    opacity: 0;
  }
  .btn a {
    padding: 12px 38px 13px 18px;
  }
  /* value */
  .value {
    padding: 60px 0;
  }
  .value-title {
    margin-left: 5%;
  }
  .value-box {
    margin: 30px 0 0 0;
  }
  .value-l {
    width: 70%;
  }
  .value-title-sub {
    line-height: 1.8;
  }
  .value-btn {
    margin: 30px 0 0 0;
    justify-content: flex-end;
  }
  /* service */
  .service {
    padding: 60px 0;
    background-image: none;
    background-color: #f7f7f5;
  }
  .service-inner {
    padding: 0;
  }
  .service-box {
    width: 70%;
    margin: 30px 0 0 0;
    display: block;
  }
  .service-box img {
    border-radius: 10px;
  }
  .service-title {
    margin-left: 5%;
  }
  .service-title-sub {
    line-height: 1.8;
  }
  .service-btn {
    margin: 30px 0 0 0;
    justify-content: flex-end;
  }
  /* cr */
  .cr {
    padding: 0;
  }
  .cr-inner {
    width: 80%;
    margin: 0 auto;
    display: block;
  }
  .cr-box {
    width: 100%;
    border-radius: 0px;
    background: rgba(255,255,255,0);
    padding: 60px 0;
  }
  .cr-box:last-child {
    border-top: 1px solid rgba(255,255,255,0.3);
  }
  /* footer */
  .footer-logo {
    width: 80%;
  }
  .footer-t {
    margin: 0;
    padding: 60px 0 0 0;
    display: block;
  }
  .footer-info-wrap {
    display: block;
  }
  .footer-info {
    width: 100%;
    font-size: 12px;
    line-height: 2;
    text-align: left;
    border-top: 1px solid #f7f7f5;
    margin: 60px 0 0 0;
    padding: 30px 0;
  }
  .footer-nav {
    border-top: 1px solid #f7f7f5;
    margin: 0;
    padding: 25px 0 0 0;
    display: block;
  }
  .footer-nav li {
    font-size: 14px;
    line-height: 2.2;
    margin: 0;
  }
  .footer-nav li:last-child {
    margin: 0;
  }
  .footer-nav li a:hover {
    color: #252f30;
  }
  .footer-b {
    border-top: 1px solid #f7f7f5;
    margin: 25px 0 0 0;
    padding: 30px 0 35px 0;
  }
  .footer-copy a:hover {
    color: #252f30;
  }
}