@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
:root {
  --font-lato: "Lato", sans-serif;
  --font-montserrat: "Montserrat", sans-serif;
  --font-gothic: "Noto Sans JP", sans-serif;
  --font-ming: "Noto Serif JP", serif;
}

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

*,
html,
body {
  font-family: var(--font-gothic);
  font-size: 16px;
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}
html body {
  align-items: center;
  color: #444444;
}
html body header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1rem auto;
  width: calc(100% - 80px);
}
html body header img {
  display: block;
  width: 156px;
  margin-top: 0.1rem;
  margin-left: 1rem;
}
html body header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  width: 85%;
  font-weight: 500;
  margin-right: 1rem;
}
html body header nav a {
  color: #ffffff;
}
html body header nav a:hover {
  color: #ffffff;
  text-decoration: none;
}
html body header nav .humburger-wrap {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: space-between;
  position: relative;
}
html body header nav .humburger-wrap span {
  display: block;
  height: 3px;
  background-color: #1f70d8;
  border-radius: 2px;
}
html body header nav .humburger-wrap.open span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 5px);
}
html body header nav .humburger-wrap.open span:nth-child(2) {
  opacity: 0;
}
html body header nav .humburger-wrap.open span:nth-child(3) {
  transform: rotate(-45deg) translate(11px, -7px);
}
html body header nav .navi-wrap {
  display: flex;
  justify-content: space-evenly;
  gap: 2.2rem;
  align-items: center;
}
html body header nav li {
  position: relative;
  margin: 0 auto;
}
html body header nav li a {
  font-size: 1.0625rem;
  color: #444444;
}
html body header nav li a:hover {
  text-decoration: none;
  color: #444444;
  opacity: 0.5;
}
html body header nav li.nav-contact-icon {
  background-color: #1f70d8;
  background-image: url(../img/contact-icon.svg);
  background-repeat: no-repeat;
  background-position: 50% 35%;
  background-size: 50px auto;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  padding: 0 1.5rem 1rem 1.5rem;
}
html body header nav li.nav-contact-icon:hover {
  opacity: 0.5;
}
html body header nav li.nav-contact-icon a {
  color: #ffffff;
}
html body header nav li.nav-contact-icon span {
  vertical-align: -60px;
  font-size: 0.9rem;
}
html body header nav li .submenu-toggle {
  display: none;
}
html body header nav li .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background-color: #efefef;
  list-style: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
html body header nav li .sub-menu li a {
  padding: 0.5rem 1rem;
  white-space: nowrap;
  color: #444;
  display: block;
}
html body header nav li .sub-menu li a:hover {
  background-color: #1f70d8;
  color: #ffffff;
  opacity: 1;
}
html body header nav li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
html body .content-wrap {
  display: block;
  margin: 0 auto;
}
html body .content-wrap .inner .main-visual {
  position: relative;
  height: 800px;
  width: 100%;
  overflow: visible;
  margin: 0 auto;
}
html body .content-wrap .inner .main-visual h2 {
  max-width: 1092px;
  margin: 0 auto;
  font-size: 3.25rem;
  font-weight: 500;
  line-height: 4.2rem;
  margin-top: 3rem;
}
html body .content-wrap .inner .main-visual .slider {
  position: absolute;
  left: 0;
  width: calc(100% - 75px);
  height: 77%;
  border-radius: 0 60px 60px 0;
  margin: 2.5rem 0;
  display: block;
  z-index: -1;
}
html body .content-wrap .inner .main-visual .slider .slick-list,
html body .content-wrap .inner .main-visual .slider .slick-track,
html body .content-wrap .inner .main-visual .slider .slick-slide,
html body .content-wrap .inner .main-visual .slider .slick-slide > div {
  height: 100%;
}
html body .content-wrap .inner .main-visual .slider img {
  width: 110vw;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 0% 85%;
  display: block;
  border-radius: 0 60px 60px 0;
}
html body .content-wrap .inner .main-visual .slider img.position-item {
  object-position: 0% 46%;
  width: 93vw;
}
html body .content-wrap .inner .main-visual .slider .slick-arrow {
  display: none !important;
}
html body .content-wrap .inner .main-visual .slick-dots {
  position: relative;
  bottom: 0;
}
html body .content-wrap .inner .main-visual .slick-dots li button {
  font-size: 0.5rem;
}
html body .content-wrap .inner .main-visual .slider-controls {
  position: absolute;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
html body .content-wrap .inner .main-visual .slider-controls .slick-dots-custom {
  display: flex !important;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
html body .content-wrap .inner .main-visual .slider-controls .slick-dots-custom li {
  margin: 0 5px;
}
html body .content-wrap .inner .main-visual .slider-controls .slick-dots-custom li button:before {
  font-size: 16px;
  color: #000;
  opacity: 0.5;
}
html body .content-wrap .inner .main-visual .slider-controls .slick-dots-custom li.slick-active button:before {
  opacity: 1;
  color: #1f70d8;
}
html body .content-wrap .inner .main-visual .slider-controls .toggle-play {
  background: #1f70d8;
  border: none;
  cursor: pointer;
  margin: 5px 0 2px 0;
  margin-left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  z-index: 999;
  text-align: center;
  align-items: center;
  font: inherit;
  font-size: 0.85rem;
}
html body .content-wrap .inner .main-visual .slider-controls .toggle-play.plyaing {
  font-size: 0.3rem;
}
html body .content-wrap .inner .main-visual .slider-controls .toggle-play.paused {
  font-size: 0.6rem;
  align-items: center;
  justify-content: flex-start;
}
html body .content-wrap .inner .main-visual .slider-controls .toggle-play:focus {
  outline: none;
}
html body .content-wrap .inner .main-visual .seagull {
  position: absolute;
  top: 27%;
  right: 12%;
  width: 280px;
  height: 133px;
  background: url(../img/seagull.svg) no-repeat center/cover;
  z-index: 5;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.45s ease, transform 0.45s ease;
  will-change: opacity, transform;
}
html body .content-wrap .inner .main-visual .seagull.is-off {
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  html body .content-wrap .inner .main-visual .seagull {
    transition: none;
  }
}
html body .content-wrap .inner section {
  position: relative;
  overflow: visible;
  margin: 5rem auto;
}
html body .content-wrap .inner section.sub-sec {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}
html body .content-wrap .inner section.sub-sec.main-content-wrap {
  margin-top: 3.5rem;
  margin-bottom: 10rem;
}
html body .content-wrap .inner section.sub-sec.main-content-wrap h2 {
  text-align: center;
  color: #1f70d8;
  font-weight: bold;
  font-size: 2rem;
}
html body .content-wrap .inner section.sub-sec.main-content-wrap h2.mb-title {
  margin-bottom: 2.875rem;
}
html body .content-wrap .inner section.sub-sec.main-content-wrap .main-copy {
  text-align: center;
  margin: 1.5rem 0;
}
html body .content-wrap .inner section.sub-sec.main-content-wrap .main-copy.contact-copy {
  margin: 3rem 0;
}
html body .content-wrap .inner section.sub-sec.privacy-content-wrap {
  max-width: 1028px;
}
html body .content-wrap .inner section.sec02 {
  min-height: 50vh;
}
html body .content-wrap .inner section.sec03 {
  display: block;
  max-width: 1092px;
  width: 100%;
}
html body .content-wrap .inner section.sec04 {
  z-index: 1000;
}
html body .content-wrap .inner section.sec04::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #1f70d8;
  border-radius: 0 50px 50px 0;
  z-index: -1;
  transition: width 1.3s ease;
}
html body .content-wrap .inner section.sec04.show-sec04::before {
  width: calc(100% - 75px);
}
html body .content-wrap .inner section.sec04 .sec-title::after {
  background-color: #ffffff;
}
html body .content-wrap .inner section.sec04 .sec-title h3 {
  color: #ffffff;
  font-weight: 300;
}
html body .content-wrap .inner section.sec05::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100vw;
  background-color: #efefef;
  z-index: -10;
  padding-top: 40rem;
  margin-top: -35rem;
}
html body .content-wrap .inner section.sec05::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #efefef;
  z-index: -10;
  padding-top: 70rem;
}
html body .content-wrap .inner section.sec06 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1092px;
  margin: 0 auto;
}
html body .content-wrap .inner section.sec06::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100vw;
  background-color: #006552;
  z-index: -10;
  height: 100%;
}
html body .content-wrap .inner section.sec07 {
  width: 100%;
}
html body .content-wrap .inner section.sub-sec-title {
  height: 230px;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  z-index: -5;
}
html body .content-wrap .inner section.sub-sec-title::before {
  border-radius: 0 80px 80px 0;
}
html body .content-wrap .inner section.article-wrap {
  max-width: 1028px;
}
html body .content-wrap .inner section .sec-title {
  display: flex;
  align-items: center;
  position: relative;
}
html body .content-wrap .inner section .sec-title::after {
  position: absolute;
  content: "";
  background-color: #1f70d8;
  width: 60px;
  height: 1px;
  bottom: -20px;
  left: 0;
}
html body .content-wrap .inner section .sec-title.news-sec-title {
  margin-bottom: 4.5rem;
}
html body .content-wrap .inner section .sec-title.contact-title::after {
  bottom: -10px;
}
html body .content-wrap .inner section .sec-title h3 {
  margin: 0;
  font-weight: 500;
  color: #1f70d8;
  font-size: 2.8rem;
}
html body .content-wrap .inner section .sec-title p {
  color: #1f70d8;
  font-size: 1.2rem;
  font-weight: 500;
  padding-left: 1rem;
}
html body .content-wrap .inner section .sec-title p.contact-text {
  padding-left: 0;
}
html body .content-wrap .inner section .sec-title.white::after {
  background-color: #ffffff;
}
html body .content-wrap .inner section .sec-title.white h3 {
  color: #ffffff;
}
html body .content-wrap .inner section .sec-title.white p {
  color: #ffffff;
}
html body .content-wrap .inner section .sub-sec-title {
  display: block;
  position: relative;
  padding-top: 2.5rem;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}
html body .content-wrap .inner section .sub-sec-title::after {
  position: absolute;
  content: "";
  background-color: #ffffff;
  width: 60px;
  height: 1px;
  bottom: 30px;
  left: 0;
}
html body .content-wrap .inner section .sub-sec-title h3 {
  color: #ffffff;
  font-weight: 400;
  font-size: 2.1rem;
}
html body .content-wrap .inner section .sub-sec-title p {
  color: #ffffff;
  font-size: 1.1rem;
  margin-top: 1rem;
}
html body .content-wrap .inner section .news-wrap {
  display: flex;
  justify-content: center;
  max-width: 1092px;
  width: 100%;
  margin: 0 auto;
}
html body .content-wrap .inner section .news-wrap .news-box {
  width: 516px;
}
html body .content-wrap .inner section .news-wrap .news-box.media-box {
  margin-left: 60px;
}
html body .content-wrap .inner section .news-list.sub-list {
  max-width: 1028px;
  width: 100%;
  margin: 0 auto;
}
html body .content-wrap .inner section .news-list.sub-list > a.is-hidden {
  display: none;
}
html body .content-wrap .inner section .news-list a {
  display: block;
}
html body .content-wrap .inner section .news-list a:hover {
  text-decoration: none;
}
html body .content-wrap .inner section .news-list a.bot-border {
  display: block;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 0.5rem;
}
html body .content-wrap .inner section .news-list:last-of-type > a.bot-border {
  border-bottom: none;
}
html body .content-wrap .inner section .news-list li {
  margin: 1.5rem 0;
  margin-bottom: 0;
  transition: transform 0.3s ease;
}
html body .content-wrap .inner section .news-list li:hover {
  transform: translateX(20px);
}
html body .content-wrap .inner section .news-list li p {
  font-weight: 500;
}
html body .content-wrap .inner section .news-list li p.category-list {
  display: flex;
  align-items: center;
  color: #444444;
}
html body .content-wrap .inner section .news-list li p .category {
  display: block;
  width: 130px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  padding: 0.2rem 0;
  border-radius: 3rem;
  margin-right: 1rem;
}
html body .content-wrap .inner section .news-list li p .category.green {
  background-color: #5ca37e;
}
html body .content-wrap .inner section .news-list li p .category.orange {
  background-color: #e29852;
}
html body .content-wrap .inner section .news-list li p .category.navy {
  background-color: #3c5a75;
}
html body .content-wrap .inner section .news-list li p .category.pink {
  background-color: #c16b6b;
}
html body .content-wrap .inner section .news-list li p .category.yellow {
  background-color: #d4b65d;
}
html body .content-wrap .inner section .news-list li .news-title {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 1rem 0;
  color: #444444;
}
html body .content-wrap .inner section .link-box {
  display: inline-flex;
  align-items: center;
  margin-top: 3.5rem;
  color: #444444;
}
html body .content-wrap .inner section .link-box:hover {
  text-decoration: none;
}
html body .content-wrap .inner section .link-box:hover .arrow {
  transform: scale(1.3);
  transform-origin: left center;
}
html body .content-wrap .inner section .link-box:hover p {
  transform: translateX(20px);
}
html body .content-wrap .inner section .link-box.about {
  margin-top: 2.5rem;
}
html body .content-wrap .inner section .link-box.works {
  margin-top: 2rem;
}
html body .content-wrap .inner section .link-box.contact {
  margin-top: 2rem;
}
html body .content-wrap .inner section .link-box.contact .arrow {
  width: 50px;
  height: 50px;
}
html body .content-wrap .inner section .link-box .arrow {
  background-color: #1f70d8;
  color: #ffffff;
  display: flex;
  align-items: center;
  width: 70px;
  height: 70px;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  transition: transform 0.2s ease-out, background 0.2s ease-in-out;
}
html body .content-wrap .inner section .link-box .arrow.works {
  background-color: #ffffff;
  color: #1f70d8;
}
html body .content-wrap .inner section .link-box .arrow.recruit {
  background-color: #ffffff;
  color: #006552;
}
html body .content-wrap .inner section .link-box p {
  font-weight: 500;
  transition: transform 0.2s ease;
}
html body .content-wrap .inner section .link-box p.white {
  color: #ffffff;
}
html body .content-wrap .inner section .sec02-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 75px);
  height: 100%;
  background: url(../img/green.jpg) no-repeat left center/cover;
  background-attachment: fixed;
  border-radius: 60px 0 0 60px;
  z-index: 0;
}
html body .content-wrap .inner section .about-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
html body .content-wrap .inner section .about-wrap .text-box {
  margin-top: 3rem;
  width: 52%;
}
html body .content-wrap .inner section .about-wrap .text-box h3 {
  font-size: 2.25rem;
  line-height: 3.5rem;
  margin-bottom: 2.5rem;
}
html body .content-wrap .inner section .about-wrap .text-box p {
  font-weight: 400;
  line-height: 2.2rem;
}
html body .content-wrap .inner section .about-wrap .text-box .link-box p {
  font-size: 1.1rem;
  font-weight: 500;
}
html body .content-wrap .inner section .about-wrap img {
  width: 40%;
  height: 330px;
  object-fit: cover;
  border-radius: 10px;
}
html body .content-wrap .inner section .sec04-wrap {
  display: block;
  position: relative;
  max-width: 1092px;
  width: 100%;
  padding: 3rem 0;
  margin: 0 auto;
  z-index: 1;
}
html body .content-wrap .inner section .sec04-wrap .works-wrap {
  display: flex;
  justify-content: space-between;
}
html body .content-wrap .inner section .sec04-wrap .works-wrap .works-box {
  width: 49%;
  margin-top: 3rem;
}
html body .content-wrap .inner section .sec04-wrap .works-wrap .works-box.recycle-box {
  margin-left: 35px;
}
html body .content-wrap .inner section .sec04-wrap .works-wrap .works-box img {
  width: 100%;
  height: 35vh;
  object-fit: cover;
  border-radius: 10px;
}
html body .content-wrap .inner section .sec04-wrap .works-wrap .works-box h4 {
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 2.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
html body .content-wrap .inner section .sec04-wrap .works-wrap .works-box p {
  color: #ffffff;
  font-weight: 300;
  line-height: 2rem;
}
html body .content-wrap .inner section .sec04-wrap .works-wrap .works-box p.category {
  display: block;
  width: 130px;
  padding: 0.2rem 0;
  text-align: center;
  color: #1f70d8;
  background-color: #ffffff;
  border-radius: 3rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: normal;
}
html body .content-wrap .inner section .works-title {
  font-family: var(--font-lato);
  color: #ffffff;
  display: block;
  text-align: right;
  margin-top: 2rem;
  margin-right: 100px;
  font-size: 10rem;
  font-weight: 100;
}
html body .content-wrap .inner section .works-seagull {
  position: absolute;
  width: 250px;
  height: 117px;
  bottom: 15rem;
  right: 7rem;
  background: url(../img/seagull02.svg) no-repeat center/cover;
}
html body .content-wrap .inner section .works-seagull.fadein-up {
  transition: opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1) 1.5s, transform 1.8s cubic-bezier(0.22, 1, 0.36, 1) 1.5s;
}
html body .content-wrap .inner section .works-seagull.sub-title-seagull {
  width: 180px;
  height: 84px;
  bottom: 0;
  top: 2.5rem;
  right: 12rem;
}
html body .content-wrap .inner section .works-seagull.sub-title-seagull.fadein-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s, transform 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
  will-change: opacity, transform;
}
html body .content-wrap .inner section .works-seagull.sub-title-seagull.fadein-up.show-up {
  opacity: 1;
  transform: translateY(0);
}
html body .content-wrap .inner section .initiatives-wrap {
  max-width: 1092px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 5rem;
}
html body .content-wrap .inner section .initiatives-wrap .initiatives-box {
  width: 100%;
  margin: 5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
html body .content-wrap .inner section .initiatives-wrap .initiatives-box .initiatives-item {
  width: 23%;
  height: 230px;
  background-color: #ffffff;
  padding: 1rem 0;
  border-radius: 10px;
  color: #444444;
  position: relative;
  overflow: hidden;
}
html body .content-wrap .inner section .initiatives-wrap .initiatives-box .initiatives-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1f70d8;
  transform: translateX(-101%);
  z-index: 10;
}
html body .content-wrap .inner section .initiatives-wrap .initiatives-box .initiatives-item.overlay-animate::before {
  animation: slideOverlay 1.5s ease forwards;
}
html body .content-wrap .inner section .initiatives-wrap .initiatives-box .initiatives-item:hover {
  text-decoration: none;
  opacity: 0.7;
}
html body .content-wrap .inner section .initiatives-wrap .initiatives-box img {
  width: 70px;
  display: block;
  margin: 0 auto;
  margin-top: 2.5rem;
}
html body .content-wrap .inner section .initiatives-wrap .initiatives-box .text-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 50px;
  width: 100%;
  margin-top: 2rem;
}
html body .content-wrap .inner section .initiatives-wrap .initiatives-box .text-item .text {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  display: block;
  width: 100%;
}
html body .content-wrap .inner section .initiatives-wrap .initiatives-box .text-item .arrow {
  position: absolute;
  right: 5px;
  font-size: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #1f70d8;
  font-weight: 600;
}
html body .content-wrap .inner section .initiatives-wrap .initiatives-box .text-item .arrow.arrow-son {
  right: 15px;
  height: 43px;
}
html body .content-wrap .inner section .initiatives-wrap .initiatives-box .text-item .arrow img {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-top: 0;
}
html body .content-wrap .inner section .recruit-wrap {
  padding: 3rem 2.5rem;
  padding-left: 0;
}
html body .content-wrap .inner section .recruit-wrap .text-item {
  color: #ffffff;
  margin-top: 3rem;
  line-height: 2rem;
  font-weight: 300;
}
html body .content-wrap .inner section .recruit-wrap .link-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
html body .content-wrap .inner section .recruit-wrap .link-wrap .link-box {
  margin-right: 2.2rem;
}
html body .content-wrap .inner section .img-wrap {
  position: absolute;
  top: 0;
  left: 550px;
  width: calc(50vw + 620px - 550px);
  height: 100%;
  background: url(../img/recruit.jpg) no-repeat left center/cover;
  border-radius: 40px 0 0 40px;
}
html body .content-wrap .inner section .recruit-img {
  width: 100%;
  height: fit-content;
  object-fit: cover;
  transform: scale(1.5);
  transform-origin: 35% 80%;
}
html body .content-wrap .inner section .contact-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1092px;
  width: 100%;
  margin: 0 auto;
}
html body .content-wrap .inner section .contact-wrap .contact-item {
  margin-top: 3rem;
  font-weight: 500;
}
html body .content-wrap .inner section .contact-wrap .tel-wrap h4 {
  margin-top: 2rem;
}
html body .content-wrap .inner section .contact-wrap .tel-wrap h4 span {
  font-size: 2.2rem;
}
html body .content-wrap .inner section .breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
html body .content-wrap .inner section .breadcrumbs li .blue {
  color: #1f70d8;
}
html body .content-wrap .inner section .breadcrumbs li .blue:hover {
  text-decoration: none;
}
html body .content-wrap .inner section .breadcrumbs li.breadcrumbs-item {
  margin-left: 0.8rem;
}
html body .content-wrap .inner section .news-category {
  max-width: 1028px;
  width: 100%;
  margin: 3.5rem auto;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #cccccc;
}
html body .content-wrap .inner section .news-category li {
  display: block;
  width: 160px;
  text-align: center;
}
html body .content-wrap .inner section .news-category li.is-active {
  background-color: #1f70d8;
  padding: 1rem 0;
}
html body .content-wrap .inner section .news-category li.is-active a {
  color: #ffffff;
}
html body .content-wrap .inner section .news-category li a {
  color: #444;
  font-size: 16px;
  font-weight: 500;
}
html body .content-wrap .inner section .news-category li a:hover {
  text-decoration: none;
}
html body .content-wrap .inner section .page-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 3.5rem;
}
html body .content-wrap .inner section .page-wrap li.number-box.active a {
  background-color: #1f70d8;
}
html body .content-wrap .inner section .page-wrap li.number-box a {
  color: #ffffff;
  padding: 0.7rem 1rem;
  background-color: #c9caca;
}
html body .content-wrap .inner section .page-wrap li a {
  color: #444;
  font-size: 1.1rem;
}
html body .content-wrap .inner section .page-wrap li a:hover {
  text-decoration: none;
}
html body .content-wrap .inner section .article-box .date-item {
  display: flex;
  align-items: center;
}
html body .content-wrap .inner section .article-box .date-item span {
  display: block;
  width: 130px;
  text-align: center;
  color: #fff;
  padding: 0.2rem 0;
  border-radius: 3rem;
  background-color: #5ca37e;
  margin-right: 1rem;
}
html body .content-wrap .inner section .article-box h4 {
  margin: 2rem 0;
  font-size: 2rem;
}
html body .content-wrap .inner section .article-box .text-box {
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  padding: 1.5rem 0;
}
html body .content-wrap .inner section .article-box .text-box p {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  line-height: 1.8rem;
}
html body .content-wrap .inner section .article-box .text-box img {
  margin: 1.3rem 0;
}
html body .content-wrap .inner section .article-box .btn-item {
  display: block;
  text-align: center;
  padding: 1.7rem 0;
  width: 320px;
  color: #fff;
  background-color: #1f70d8;
  border: 2px solid #1f70d8;
  margin: 3rem auto;
  font-size: 1.2rem;
  position: relative;
}
html body .content-wrap .inner section .article-box .btn-item span {
  font-size: 1.1rem;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}
html body .content-wrap .inner section .article-box .btn-item:hover {
  text-decoration: none;
  background-color: #ffffff;
  color: #1f70d8;
}
html body .content-wrap .inner section .recruit-page-wrap {
  max-width: 1028px;
  width: 100%;
  margin: 0 auto;
}
html body .content-wrap .inner section .recruit-page-wrap .rec-copy {
  text-align: center;
  font-weight: bold;
  margin-bottom: 4rem;
}
html body .content-wrap .inner section .recruit-page-wrap .rec-copy h4 {
  line-height: 2.25rem;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
html body .content-wrap .inner section .recruit-page-wrap .rec-copy p {
  margin: 0.5rem 0;
  font-weight: 400;
  line-height: 2rem;
}
html body .content-wrap .inner section .details {
  max-width: 1028px;
  margin: 1.5rem auto;
}
html body .content-wrap .inner section .details .details-summary {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  font-size: 1.5rem;
  font-weight: bold;
  background-color: #e9f1fb;
  align-items: center;
}
html body .content-wrap .inner section .details .details-summary:hover {
  cursor: default;
}
html body .content-wrap .inner section .details .details-summary .jobtype {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
html body .content-wrap .inner section .details .details-summary .jobtype.employment {
  margin-bottom: 0;
}
html body .content-wrap .inner section .details .details-summary .jobtype p {
  margin-left: 1.5rem;
  font-weight: 400;
}
html body .content-wrap .inner section .details .details-summary .jobtype p.category {
  width: 100px;
  text-align: center;
  background-color: #1f70d8;
  border: 1px solid #1f70d8;
  color: #ffffff;
  font-weight: 400;
  border-radius: 4px;
  padding: 0.3rem 0;
  margin-left: 0;
}
html body .content-wrap .inner section .details .details-summary .jobtype p.category.white {
  color: #1f70d8;
  background-color: #ffffff;
}
html body .content-wrap .inner section .details .details-summary .btn-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #595757;
  padding: 0 4.5rem;
  width: 300px;
  height: 60px;
  border-radius: 2px;
  cursor: pointer;
}
html body .content-wrap .inner section .details .details-summary .btn-wrap .btn-text {
  color: #fff;
  font-weight: 400;
}
html body .content-wrap .inner section .details .details-summary .btn-wrap .btn {
  position: relative;
}
html body .content-wrap .inner section .details .details-summary .btn-wrap .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 200%;
  width: 25px;
  height: 1px;
  background-color: #ffffff;
  z-index: 10;
}
html body .content-wrap .inner section .details .details-summary .btn-wrap .btn::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 260%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 25px;
  background-color: #ffffff;
  z-index: 11;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
html body .content-wrap .inner section .details .details-summary.is-active .btn::after {
  opacity: 0;
  transform: rotate(180deg) scale(0.5);
}
html body .content-wrap .inner section .details .details-summary::-webkit-details-marker {
  display: none;
}
html body .content-wrap .inner section .details .details-content {
  padding: 20px;
  background-color: #e9f1fb;
}
html body .content-wrap .inner section .details .details-content p {
  margin: 0 0 20px;
  color: #000;
  font-size: 1.125rem;
  text-align: left;
}
html body .content-wrap .inner section .details .details-content p:last-of-type {
  margin: 0 0 0;
}
html body .content-wrap .inner section .details .details-content .details-content-box {
  background-color: #ffffff;
  padding: 16px 0;
}
html body .content-wrap .inner section .details .details-content .details-content-box table {
  border: 1px solid #cccccc;
  width: calc(100% - 32px);
  margin: 0 auto;
}
html body .content-wrap .inner section .details .details-content .details-content-box table tbody tr {
  border-bottom: 1px solid #cccccc;
}
html body .content-wrap .inner section .details .details-content .details-content-box table tbody tr th {
  background-color: #f3f3f3;
  border-right: 1px solid #cccccc;
  padding: 0.5rem 1.5rem;
  width: 135px;
}
html body .content-wrap .inner section .details .details-content .details-content-box table tbody tr td {
  padding-left: 1.5rem;
}
html body .content-wrap .inner section .details .details-content .application-wrap {
  width: 320px;
  height: 60px;
  margin: 3rem auto;
  background-color: #ea5514;
  border: 2px solid #ea5514;
  display: flex;
  align-items: center;
  border-radius: 2px;
}
html body .content-wrap .inner section .details .details-content .application-wrap .application-btn {
  display: block;
  text-align: center;
  width: 100%;
  color: #fff;
  font-size: 1.2rem;
  position: relative;
}
html body .content-wrap .inner section .details .details-content .application-wrap .application-btn span {
  font-size: 1.5rem;
  font-weight: 300;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
html body .content-wrap .inner section .details .details-content .application-wrap:hover {
  background-color: #ffffff;
}
html body .content-wrap .inner section .details .details-content .application-wrap:hover .application-btn {
  text-decoration: none;
  color: #ea5514;
}
html body .content-wrap .inner section .form-container {
  max-width: 1028px;
  margin: 0 auto;
}
html body .content-wrap .inner section .form-container .form-table {
  width: 100%;
}
html body .content-wrap .inner section .form-container .form-table tbody {
  border-top: 1px solid #cccccc;
}
html body .content-wrap .inner section .form-container .form-table tbody tr {
  border-bottom: 1px solid #cccccc;
  display: flex;
  align-items: center;
}
html body .content-wrap .inner section .form-container .form-table tbody tr th {
  background-color: #f3f3f3;
  width: 30%;
  padding: 2.3rem 1rem;
  font-weight: 500;
  position: relative;
}
html body .content-wrap .inner section .form-container .form-table tbody tr th.area-item {
  height: 420px;
  align-items: flex-start;
}
html body .content-wrap .inner section .form-container .form-table tbody tr th p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
html body .content-wrap .inner section .form-container .form-table tbody tr th span.required {
  display: block;
  background-color: #e83828;
  color: #ffffff;
  padding: 0.1rem 0.5rem;
}
html body .content-wrap .inner section .form-container .form-table tbody tr th span.attention {
  font-size: 0.875rem;
  position: absolute;
  left: 1rem;
  top: 70%;
}
html body .content-wrap .inner section .form-container .form-table tbody tr td {
  width: 70%;
  padding: 0 1rem;
}
html body .content-wrap .inner section .form-container .form-table tbody tr td .form-item {
  width: 100%;
  padding: 1rem;
}
html body .content-wrap .inner section .form-container .form-table tbody tr td .form-item.form-select {
  width: 70%;
}
html body .content-wrap .inner section .form-container .form-table tbody tr td .form-text {
  margin: 0;
}
html body .content-wrap .inner section .form-container .form-table tbody tr td .form-select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
html body .content-wrap .inner section .form-container .form-table tbody tr td .select-wrap {
  position: relative;
}
html body .content-wrap .inner section .form-container .form-table tbody tr td .select-wrap::after {
  content: "▼";
  position: absolute;
  right: 33%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1rem;
  color: #444444;
}
html body .content-wrap .inner section .form-container .form-table tbody tr td .select-wrap select {
  color: #444;
  background-color: #ffffff;
  border: 1px solid light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
}
html body .content-wrap .inner section .form-container .form-table tbody tr td input {
  border: 1px solid light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
}
html body .content-wrap .inner section .form-container .form-table tbody tr td textarea {
  border: 1px solid light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
}
html body .content-wrap .inner section .form-container .form-table tbody tr td .form-textarea {
  height: 366px;
}
html body .content-wrap .inner section .privacypolicy-wrap {
  margin: 3rem auto;
  max-width: 1028px;
}
html body .content-wrap .inner section .privacypolicy-wrap .title {
  text-align: center;
  font-weight: 500;
}
html body .content-wrap .inner section .privacypolicy-wrap .privacypolicy-box {
  margin: 1.5rem 0;
  border: 1px solid #cccccc;
  padding: 1.5rem 1.3rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 200px;
}
html body .content-wrap .inner section .privacypolicy-wrap .privacypolicy-box ul {
  margin: 0.5rem 0;
}
html body .content-wrap .inner section .privacypolicy-wrap .privacypolicy-box ul li {
  text-align: justify;
  margin: 0.5rem 0;
}
html body .content-wrap .inner section .privacypolicy-wrap .consent-btn-wrap {
  background-color: #f3f3f3;
  padding: 2rem 0;
}
html body .content-wrap .inner section .privacypolicy-wrap .consent-btn-wrap .wpcf7-list-item {
  margin: 0;
}
html body .content-wrap .inner section .privacypolicy-wrap .consent-btn-wrap .wpcf7-list-item label {
  margin: 0 !important;
}
html body .content-wrap .inner section .privacypolicy-wrap .consent-btn-wrap .check-btn {
  background-color: #1f70d8;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 520px;
  margin: 0 auto;
  color: #ffffff;
}
html body .content-wrap .inner section .privacypolicy-wrap .consent-btn-wrap .check-btn input {
  width: 16px;
  height: 16px;
}
html body .content-wrap .inner section .privacypolicy-wrap .consent-btn-wrap a {
  display: block;
  text-align: center;
  width: fit-content;
  margin: 0.5rem auto;
  color: #444444;
}
html body .content-wrap .inner section .privacypolicy-wrap .consent-btn-wrap a:hover {
  text-decoration: none;
}
html body .content-wrap .inner section .privacypolicy-wrap .contact-btn {
  width: 320px;
  height: 60px;
  margin: 3rem auto;
  position: relative;
}
html body .content-wrap .inner section .privacypolicy-wrap .contact-btn .btn-submit {
  width: 320px;
  height: 60px;
  background-color: #1f70d8;
  border: 2px solid #1f70d8;
  display: flex;
  align-items: center;
  border-radius: 2px;
  color: #ffffff;
  text-align: center;
  font-size: 1.2rem;
}
html body .content-wrap .inner section .privacypolicy-wrap .contact-btn::after {
  content: "〉";
  color: #ffffff;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
}
html body .content-wrap .inner section .privacypolicy-wrap .contact-btn:hover::after {
  color: #1f70d8;
}
html body .content-wrap .inner section .privacypolicy-wrap .contact-btn:hover .btn-submit {
  background-color: #ffffff;
  color: #1f70d8;
}
html body .content-wrap .inner section .privacy-box li {
  margin-top: 1.5rem;
}
html body .content-wrap .inner section .privacy-box li span {
  color: #1f70d8;
}
html body .content-wrap .inner section .privacy-box li p {
  margin-left: 1.85rem;
  margin-top: 0.3rem;
  line-height: 1.7rem;
}
html body .content-wrap .inner section .privacy-box li .info-box {
  margin-left: 2.85rem;
}
html body .content-wrap .inner section .privacy-box li .info-box li {
  margin: 0.3rem;
  font-weight: 500;
}
html body .content-wrap .inner section .privacy-text {
  margin-left: 1.85rem;
  margin-top: 1rem;
  line-height: 1.7rem;
}
html body .content-wrap .inner section .ga4-box {
  border: 1px solid #cccccc;
  margin: 1.5rem 1.85rem;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  padding-right: 1.85rem;
}
html body .content-wrap .inner section .ga4-box p {
  font-size: 0.875rem;
}
html body .content-wrap .inner section .ga4-box a {
  margin-left: 1.85rem;
  color: #444;
  font-size: 0.875rem;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}
html body .content-wrap .inner section .ga4-box a:hover {
  text-decoration: none;
  opacity: 0.7;
}
html body .content-wrap .inner .sub-content-wrap {
  display: flex;
  align-items: start;
  max-width: 1240px;
  width: 100%;
  margin: 3rem auto;
  position: relative;
  gap: 106px;
}
html body .content-wrap .inner .sub-content-wrap .side-nav {
  width: fit-content;
  position: sticky;
  top: 30px;
  z-index: 10;
  width: 286px;
}
html body .content-wrap .inner .sub-content-wrap .side-nav li {
  margin: 0.9rem 0;
}
html body .content-wrap .inner .sub-content-wrap .side-nav li.title {
  background-color: #1f70d8;
  text-align: center;
  width: 100%;
  padding: 1rem 0;
  color: #ffffff;
  font-size: 1.125rem;
  margin-top: 0;
}
html body .content-wrap .inner .sub-content-wrap .side-nav li.bot-border {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #cccccc;
}
html body .content-wrap .inner .sub-content-wrap .side-nav li a {
  color: #444;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
  font-weight: 500;
  width: fit-content;
}
html body .content-wrap .inner .sub-content-wrap .side-nav li a:hover {
  text-decoration: none;
  transform: translateX(20px);
}
html body .content-wrap .inner .sub-content-wrap .side-nav li a:hover span {
  transform: scale(1.3);
  transform-origin: left center;
}
html body .content-wrap .inner .sub-content-wrap .side-nav li a span {
  color: #1f70d8;
  font-size: 2rem;
  border: 1px solid #1f70d8;
  border-radius: 50%;
  text-align: center;
  margin-right: 1.5rem;
  transition: transform 0.2s ease-out;
  width: 57px;
  height: 57px;
  font-weight: 300;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap {
  width: 848px;
  margin: 0;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap h2 {
  color: #1f70d8;
  position: relative;
  margin-bottom: 2.7rem;
  font-size: 2.375rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap h2::before {
  position: absolute;
  content: "";
  background-color: #1f70d8;
  width: 75px;
  height: 1px;
  bottom: -15px;
  left: 0;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap h2.works-mb {
  margin-bottom: 4rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap h2.business-title::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: fit-content;
  height: auto;
  background-image: url(../img/business-mark.svg);
  background-repeat: no-repeat;
  display: block;
  white-space: nowrap;
  padding: 1.5rem 2rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .about01 .greeting-wrap {
  display: flex;
  justify-content: space-between;
  margin: 2.3rem 0;
  gap: 32px;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .about01 .greeting-wrap .text-item h4 {
  font-size: 1.7rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .about01 .greeting-wrap .text-item p {
  margin: 1.5rem 0;
  line-height: 2rem;
  text-align: justify;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .about01 .greeting-wrap .image-item .president {
  width: 1000px;
  margin-bottom: 0.7rem;
  border-radius: 15px;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .about01 .greeting-wrap .image-item p {
  font-weight: 500;
  margin: 0.7rem auto;
  margin-top: 0;
  width: calc(100% - 40px);
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .about01 .greeting-wrap .image-item .name-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 40px);
  margin: 0 auto;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .about01 .greeting-wrap .image-item .name-box img {
  width: 75%;
  height: auto;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .about01 .greeting-wrap .image-item .name-box img.signature {
  width: 20%;
  height: auto;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .about02 {
  margin: 2rem 0;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .about02 .overview-wrap li {
  display: flex;
  padding: 1.5rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .about02 .overview-wrap li.gray {
  background-color: #f3f3f3;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .about02 .overview-wrap li.blue {
  background-color: #1f70d8;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .about02 .overview-wrap li.blue p {
  color: #fff;
  margin-left: 32px;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .about02 .overview-wrap li.blue p.year {
  position: relative;
  width: 80px;
  margin-left: 0;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .about02 .overview-wrap li.blue p.year::before {
  position: absolute;
  content: "";
  background-color: #ffffff;
  width: 2px;
  height: 25px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .about02 .overview-wrap li.bot-border {
  border-bottom: 1px solid #cccccc;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .about02 .overview-wrap li p {
  font-weight: 500;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .about02 .overview-wrap li p.title {
  width: 80px;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .about02 .overview-wrap li p.detail {
  margin-left: 32px;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .about02 .overview-wrap li p.detail span {
  display: block;
  margin: 0.5rem 0;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .about02 .overview-wrap li p.content-text {
  margin-left: 55px;
  width: 670px;
  text-align: justify;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01 {
  margin-bottom: 4.75rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01.works02 .recycle-text {
  line-height: 2rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01 h4 {
  font-size: 1.75rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01 .works-content-wrap {
  margin: 1.3rem 0;
  display: flex;
  justify-content: space-between;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01 .works-content-wrap.works-mt {
  margin: 4.1875rem 0;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01 .works-content-wrap .text-wrap {
  width: 424px;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01 .works-content-wrap .text-wrap p {
  line-height: 2rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01 .works-content-wrap .text-wrap h4 {
  font-size: 1.5rem;
  position: relative;
  margin-bottom: 2.7rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01 .works-content-wrap .text-wrap h4::before {
  position: absolute;
  content: "";
  background-color: #1f70d8;
  width: 75px;
  height: 1px;
  bottom: -15px;
  left: 0;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01 .works-content-wrap .works-img-wrap {
  width: 392px;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01 .works-content-wrap .works-img-wrap img {
  width: 100%;
  border-radius: 10px;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01 .works-content-wrap .service-img {
  width: 392px;
  height: 263px;
  border-radius: 10px;
  object-fit: cover;
  overflow: hidden;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01 .title {
  background-color: #1f70d8;
  color: #ffffff;
  padding: 1rem;
  font-size: 1.125rem;
  margin-top: 2.8125rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01 .purchase-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 21px;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01 .purchase-wrap .purchase-item {
  margin-top: 2.1rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01 .purchase-wrap .purchase-item p span {
  color: #1f70d8;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01 .purchase-wrap .purchase-item img {
  width: 268px;
  border-radius: 10px;
  margin-top: 0.5rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01 .tel-wrap {
  display: flex;
  align-items: center;
  margin-top: 3.90625rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01 .tel-wrap p {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  border: 2px solid #ea5514;
  font-size: 1.25rem;
  font-weight: 500;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01 .tel-wrap p.bg-org {
  background-color: #ea5514;
  width: 248px;
  color: #ffffff;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01 .tel-wrap p.tel-item {
  width: 600px;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01 .tel-wrap p.tel-item a {
  color: #444444;
  font-size: 1.25rem;
  margin: 0 1.25rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .works01 .tel-wrap p.tel-item a:hover {
  text-decoration: none;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .access01 {
  margin-bottom: 4.75rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .access01 .access-wrap.factory-wrap {
  margin-top: 4.75rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .access01 .access-wrap h4 {
  font-size: 1.5rem;
  position: relative;
  margin-bottom: 2.7rem;
  display: flex;
  align-items: center;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .access01 .access-wrap h4::before {
  position: absolute;
  content: "";
  background-color: #1f70d8;
  width: 75px;
  height: 1px;
  bottom: -15px;
  left: 0;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .access01 .access-wrap h4 span {
  display: block;
  width: 265px;
  text-align: center;
  background-color: #ea5514;
  color: #ffffff;
  font-weight: 400;
  padding: 0.3rem 0;
  margin-left: 1rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .access01 .access-wrap iframe {
  width: 100%;
  height: 369px;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .access01 p {
  margin-top: 0.5rem;
  line-height: 2rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .business01 {
  margin-bottom: 4.75rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .business01 .text-item {
  line-height: 2rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .business01 .business-img-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.375rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .business01 .business-img-wrap .img-box {
  width: 240px;
  margin: 0 1rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .business01 .business-img-wrap .img-box img {
  height: 267.5971px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .business01 .business-img-wrap .img-box p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  text-align: center;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .business01 .business-img-wrap .img-box p span {
  font-size: 0.75rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .business01 .business-wrap li {
  display: flex;
  gap: 20px;
  margin-bottom: 1rem;
  align-items: center;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .business01 .business-wrap li span {
  background-color: #1f70d8;
  color: #ffffff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.125rem;
}
html body .content-wrap .inner .sub-content-wrap .about-wrap .business01 .business-wrap li p {
  width: 787px;
  height: fit-content;
  font-size: 1.125rem;
}
html body .content-wrap .inner .pdf-box {
  border: 1px solid #cccccc;
  width: 426px;
  margin: 2.5rem 0;
}
html body .content-wrap .inner .pdf-box.license-pdf-box {
  margin: 1.7rem 0;
}
html body .content-wrap .inner .pdf-box a {
  color: #444444;
  position: relative;
  display: block;
  padding: 1rem;
  padding-left: 4rem;
}
html body .content-wrap .inner .pdf-box a:hover {
  text-decoration: none;
  opacity: 0.7;
}
html body .content-wrap .inner .pdf-box a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  width: fit-content;
  height: auto;
  background-image: url(../img/pdf-icon.svg);
  background-repeat: no-repeat;
  display: block;
  white-space: nowrap;
  padding: 0.8rem;
}
html body .content-wrap .inner .fadein {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
html body .content-wrap .inner .fadein.show {
  opacity: 1;
  transform: translateY(0);
}
html body .content-wrap .inner .fadein-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1), transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
html body .content-wrap .inner .fadein-up.show-up {
  opacity: 1;
  transform: translateY(0);
}
html body .content-wrap .inner .fadein-right {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
html body .content-wrap .inner .fadein-right.show-right {
  opacity: 1;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  html body .content-wrap .inner .fadein-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
html body .content-wrap .inner .br-sp {
  display: none;
}
html body footer {
  color: #ffffff;
  margin-top: 6rem;
}
html body footer .footer-wrap {
  position: relative;
}
html body footer .footer-wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1f70d8;
  z-index: -5;
  height: 100%;
}
html body footer .footer-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 720px;
  left: 0;
  width: calc(50vw + 620px - 720px);
  height: 100%;
  background-color: #444444;
  border-radius: 0 40px 40px 0;
  z-index: -1;
}
html body footer .footer-wrap a {
  color: #ffffff;
}
html body footer .footer-wrap a:hover {
  text-decoration: none;
}
html body footer .footer-wrap .footer-inner .link-box {
  max-width: 1092px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
html body footer .footer-wrap .footer-inner .link-box .company-box {
  padding-top: 2.2rem;
  padding-bottom: 1.5rem;
}
html body footer .footer-wrap .footer-inner .link-box .company-box img {
  width: 180px;
  margin-left: -4rem;
}
html body footer .footer-wrap .footer-inner .link-box .company-box h4 {
  font-weight: 500;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}
html body footer .footer-wrap .footer-inner .link-box .company-box .text-box p {
  margin: 0.5rem 0;
  line-height: 1.7rem;
  font-size: 0.9rem;
}
html body footer .footer-wrap .footer-inner .link-box .company-box .text-box p.company-title {
  background-color: #ffffff;
  color: #444444;
  font-size: 0.8rem;
  font-weight: 500;
  width: 80px;
  border-radius: 1rem;
  text-align: center;
  margin: 0;
  margin-top: 1rem;
  line-height: normal;
}
html body footer .footer-wrap .footer-inner .link-box .item-wrap {
  display: flex;
  justify-content: flex-start;
  margin: 5rem 0;
  margin-bottom: 3.5rem;
  width: 60%;
  position: relative;
}
html body footer .footer-wrap .footer-inner .link-box .item-wrap .item-box {
  margin-left: 12%;
}
html body footer .footer-wrap .footer-inner .link-box .item-wrap .item-box.left-box {
  margin-left: 10%;
}
html body footer .footer-wrap .footer-inner .link-box .item-wrap .item-box ul li {
  margin: 0.5rem 0;
}
html body footer .footer-wrap .footer-inner .link-box .item-wrap .item-box ul li.mt-15 {
  margin-top: 1.5rem;
}
html body footer .footer-wrap .footer-inner .link-box .item-wrap .item-box ul li a.item span {
  padding-right: 0.3rem;
}
html body footer .footer-wrap .footer-inner .link-box .item-wrap .item-box ul li a:hover {
  opacity: 0.7;
}
html body footer .footer-wrap .footer-inner .link-box .item-wrap .item-box ul li a.external {
  display: flex;
  align-items: center;
}
html body footer .footer-wrap .footer-inner .link-box .item-wrap .item-box ul li a span.external-span {
  display: block;
  height: 29px;
}
html body footer .footer-wrap .footer-inner .link-box .item-wrap .item-box ul li a span img {
  width: 15px;
  height: 15px;
}
html body footer .copyright {
  color: #444444;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 500;
  margin: 0.5rem 0;
}
html body .grecaptcha-badge {
  visibility: hidden !important;
}
html body .mb0 {
  margin-bottom: 0;
}

@keyframes slideOverlay {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}