body {
  font-family: "Noto Sans CJK JP", sans-serif;
  color: #271915;
  font-weight: 400;
  margin: 0;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body p {
  margin: 0;
}
body ul {
  margin: 0;
  padding: 0;
}
body li {
  list-style: none;
}
body a {
  color: inherit;
  text-decoration: none;
}
body img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}

.header-pc {
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
@media (max-width: 1023px) {
  .header-pc {
    display: none;
  }
}
.header-pc .inner {
  height: 128px;
  display: flex;
  justify-content: space-between;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  box-sizing: border-box;
}
.header-pc .inner .header_logo {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.header-pc .inner .header_logo .logo_top {
  width: 150px;
}
.header-pc .inner .header_logo h1 {
  font-size: 16px;
}
.header-pc .inner nav {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 100%;
}
.header-pc .inner nav .menu {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  height: 100%;
}
.header-pc .inner nav .menu li {
  text-align: center;
}
.header-pc .inner nav .menu li .top_name {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.2rem;
  position: relative;
  text-decoration: none;
}
.header-pc .inner nav .menu li .top_name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background-color: #E40000;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}
.header-pc .inner nav .menu li .top_name:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header-pc .inner .contact {
  padding: 8px 16px;
  box-sizing: border-box;
  background-color: #E40000;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  display: inline-block;
}
.header-pc .inner .contact:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
}
.header-pc .inner .sab_nav {
  z-index: 10;
  display: flex;
  align-items: center;
}

.header-sp {
  display: none;
}
@media (max-width: 1023px) {
  .header-sp {
    display: block;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
  }
}
.header-sp .hamburger {
  width: 100%;
  height: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.header-sp .hamburger .header_logo {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.header-sp .hamburger .header_logo .logo_top {
  width: 60px;
}
.header-sp .hamburger .header_logo h1 {
  font-size: 16px;
}
.header-sp .hamburger .btn-gNav {
  background-color: #E40000;
  padding: 12px;
  box-sizing: border-box;
  display: none;
  position: relative;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  z-index: 999;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.header-sp .hamburger .btn-gNav.open span:nth-child(1) {
  top: 28px;
  left: 30px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.header-sp .hamburger .btn-gNav.open span:nth-child(2) {
  display: none;
}
.header-sp .hamburger .btn-gNav.open span:nth-child(3) {
  top: 28px;
  left: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (max-width: 1279px) {
  .header-sp .hamburger .btn-gNav {
    display: block;
  }
}
.header-sp .hamburger .btn-gNav span {
  position: absolute;
  width: 28px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  right: 15px;
}
.header-sp .hamburger .btn-gNav span:nth-child(1) {
  top: 18px;
}
.header-sp .hamburger .btn-gNav span:nth-child(2) {
  top: 30px;
}
.header-sp .hamburger .btn-gNav span:nth-child(3) {
  top: 42px;
}
.header-sp nav .menu {
  padding-left: 20px;
}
.header-sp nav .top_name {
  font-weight: bold;
  letter-spacing: 0.15rem;
  font-size: 24px;
  display: flex;
  align-items: end;
}
@media (max-width: 1279px) {
  .header-sp nav .top_name {
    font-size: 8vw;
  }
}
.header-sp nav .contact {
  padding: 8px 16px;
  box-sizing: border-box;
  background-color: #E40000;
  display: inline-block;
  margin-top: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  display: inline-block;
}
@media (max-width: 1279px) {
  .header-sp .gNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    padding-top: 60px;
    transition: 0.3s;
    z-index: 99;
  }
}
.header-sp .gNav.open {
  right: 0;
}

footer {
  box-sizing: border-box;
  background-color: #F3F3F3;
  padding: 60px 0;
}
@media (max-width: 767px) {
  footer {
    padding: 20px 0;
  }
}
footer .inner {
  display: flex;
  justify-content: space-between;
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  box-sizing: border-box;
  align-items: center;
  padding: 0 10%;
}
@media (max-width: 1023px) {
  footer .inner {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 767px) {
  footer .inner {
    padding: 0 10px;
    justify-content: center;
    flex-direction: row;
    gap: 40px;
  }
}
@media (max-width: 450px) {
  footer .inner {
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  footer .inner {
    padding: 0 132px;
  }
}
footer .inner .header_logo {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
footer .inner .header_logo .logo_top {
  width: 150px;
}
@media (max-width: 450px) {
  footer .inner .header_logo .logo_top {
    width: 100px;
  }
}
@media (max-width: 350px) {
  footer .inner .header_logo .logo_top {
    font-size: 8px;
  }
}
footer .inner .header_logo h1 {
  font-size: 16px;
}
@media (max-width: 450px) {
  footer .inner .header_logo h1 {
    font-size: 12px;
  }
}
@media (max-width: 350px) {
  footer .inner .header_logo h1 {
    font-size: 10px;
  }
}
footer .inner nav {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 100%;
}
footer .inner nav .menu {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}
@media (max-width: 767px) {
  footer .inner nav .menu {
    flex-direction: column;
    gap: 4px;
  }
}
footer .inner nav .menu li {
  text-align: center;
}
footer .inner nav .menu li .top_name {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.2rem;
  position: relative;
  text-decoration: none;
}
@media (max-width: 450px) {
  footer .inner nav .menu li .top_name {
    font-size: 12px;
  }
}
@media (max-width: 350px) {
  footer .inner nav .menu li .top_name {
    font-size: 8px;
  }
}
footer .inner nav .menu li .top_name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background-color: #E40000;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}
footer .inner nav .menu li .top_name:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
footer .inner .sab_nav {
  display: flex;
  align-items: center;
}

.home-fv {
  width: 100%;
  height: 550px;
}
@media (max-width: 767px) {
  .home-fv {
    height: 450px;
  }
}
@media (max-width: 450px) {
  .home-fv {
    height: 350px;
  }
}
.home-fv .inner .background-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 550px;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .home-fv .inner .background-slider {
    height: 450px;
  }
}
@media (max-width: 450px) {
  .home-fv .inner .background-slider {
    height: 350px;
  }
}
.home-fv .inner .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideShow 15s infinite ease-in-out;
  transition: opacity 5s ease-in-out;
}
.home-fv .inner .slide .wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 8px;
  box-sizing: border-box;
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 0 0 10%;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .home-fv .inner .slide .wrap {
    padding: 0 10px 0 50px;
    padding-bottom: 80px;
  }
}
@media (max-width: 450px) {
  .home-fv .inner .slide .wrap {
    padding-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .home-fv .inner .slide .wrap {
    padding: 0 132px;
    padding-bottom: 80px;
  }
}
.home-fv .inner .slide .wrap h2 {
  font-size: 25px;
  color: #E40000;
  position: relative;
}
@media (max-width: 767px) {
  .home-fv .inner .slide .wrap h2 {
    font-size: 4vw;
  }
}
.home-fv .inner .slide .wrap h2::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 30px;
  height: 30px;
  background-image: url("../img/icon-1.png");
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .home-fv .inner .slide .wrap h2::before {
    top: -3.5vw;
    left: -3.5vw;
    width: 3.5vw;
    height: 3.5vw;
  }
}
.home-fv .inner .slide .wrap p {
  font-size: 18px;
}
@media (max-width: 767px) {
  .home-fv .inner .slide .wrap p {
    font-size: 3vw;
  }
}
.home-fv .inner .slide .wrap .white {
  color: #fff;
}
.home-fv .inner .slide1 {
  background-image: url("../img/fv-1.png");
  animation-delay: 0s;
}
.home-fv .inner .slide2 {
  background-image: url("../img/fv-2.png");
  animation-delay: 5s;
}
.home-fv .inner .slide3 {
  background-image: url("../img/fv-3.png");
  animation-delay: 10s;
}
@keyframes slideShow {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.home-appeal {
  padding: 80px 0;
}
@media (max-width: 639px) {
  .home-appeal {
    padding: 40px 0;
  }
}
.home-appeal .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 0 0 10%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .home-appeal .inner {
    padding: 0 10px;
    flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .home-appeal .inner {
    padding: 0 132px;
  }
}
.home-appeal .inner .content {
  width: 45%;
}
@media (max-width: 767px) {
  .home-appeal .inner .content {
    width: 100%;
  }
}
.home-appeal .inner .title_3 {
  font-size: 14px;
  color: #E40000;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05rem;
}
@media (max-width: 450px) {
  .home-appeal .inner .title_3 {
    font-size: 10px;
  }
}
.home-appeal .inner .title_2 {
  font-size: 28px;
  position: relative;
  margin-top: 8px;
}
@media (max-width: 450px) {
  .home-appeal .inner .title_2 {
    font-size: 20px;
    margin-top: 4px;
  }
}
.home-appeal .inner .title_2::before {
  position: absolute;
  border-bottom: 2px solid #E40000;
  bottom: -15px;
  left: 0;
  width: 50px;
  content: "";
}
@media (max-width: 450px) {
  .home-appeal .inner .title_2::before {
    bottom: -8px;
  }
}
.home-appeal .inner p {
  margin-top: 40px;
}
@media (max-width: 450px) {
  .home-appeal .inner p {
    font-size: 14px;
    margin-top: 30px;
  }
}
.home-appeal .inner .btn_more {
  text-align: right;
}
.home-appeal .inner .btn_more .more {
  color: #e40000;
  padding: 8px 16px;
  box-sizing: border-box;
  border: solid 1px #e40000;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  display: inline-block;
}
@media (max-width: 450px) {
  .home-appeal .inner .btn_more .more {
    padding: 4px 14px;
  }
}
.home-appeal .inner .btn_more .more:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
}
.home-appeal .inner .btn_more .more {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .home-appeal .inner .btn_more .more {
    margin-top: 16px;
  }
}
.home-appeal .inner .img_content {
  width: 45%;
}
@media (max-width: 767px) {
  .home-appeal .inner .img_content {
    width: 100%;
  }
}
.home-appeal .inner .img_content .img_1 {
  width: 100%;
}
.home-appeal .inner .img_content .img_2 {
  width: 70%;
  margin-top: 30px;
}

.home-news {
  padding: 80px 0;
  background-color: #F3F3F3;
}
@media (max-width: 639px) {
  .home-news {
    padding: 40px 0;
  }
}
.home-news .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .home-news .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .home-news .inner {
    padding: 0 132px;
  }
}
.home-news .inner .title_3 {
  font-size: 14px;
  color: #E40000;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05rem;
}
@media (max-width: 450px) {
  .home-news .inner .title_3 {
    font-size: 10px;
  }
}
.home-news .inner .title_2 {
  font-size: 28px;
  position: relative;
  margin-top: 8px;
}
@media (max-width: 450px) {
  .home-news .inner .title_2 {
    font-size: 20px;
    margin-top: 4px;
  }
}
.home-news .inner .title_2::before {
  position: absolute;
  border-bottom: 2px solid #E40000;
  bottom: -15px;
  left: 0;
  width: 50px;
  content: "";
}
@media (max-width: 450px) {
  .home-news .inner .title_2::before {
    bottom: -8px;
  }
}
.home-news .inner ul {
  margin-top: 50px;
  border-top: black solid 1px;
}
@media (max-width: 767px) {
  .home-news .inner ul {
    margin-top: 40px;
  }
}
.home-news .inner ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: black solid 1px;
  padding: 12px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .home-news .inner ul li {
    padding: 4px;
    flex-direction: column;
  }
}
.home-news .inner ul li h3 {
  font-size: 18px;
  width: 20%;
  position: relative;
}
@media (max-width: 767px) {
  .home-news .inner ul li h3 {
    font-size: 2vw;
    padding-left: 0;
    width: 100%;
    font-size: 16px;
  }
}
.home-news .inner ul li h4 {
  font-size: 20px;
  width: 38%;
}
@media (max-width: 767px) {
  .home-news .inner ul li h4 {
    font-size: 16px;
    width: 100%;
    margin-left: 30px;
  }
}
.home-news .inner ul li p {
  font-size: 20px;
  width: 38%;
}
@media (max-width: 767px) {
  .home-news .inner ul li p {
    display: none;
  }
}
.home-news .inner .btn_more {
  text-align: right;
}
.home-news .inner .btn_more .more {
  color: #e40000;
  padding: 8px 16px;
  box-sizing: border-box;
  border: solid 1px #e40000;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  display: inline-block;
}
@media (max-width: 450px) {
  .home-news .inner .btn_more .more {
    padding: 4px 14px;
  }
}
.home-news .inner .btn_more .more:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
}
.home-news .inner .btn_more .more {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .home-news .inner .btn_more .more {
    margin-top: 16px;
  }
}

.home-appeal_2 {
  padding: 80px 0;
}
@media (max-width: 639px) {
  .home-appeal_2 {
    padding: 40px 0;
  }
}
.home-appeal_2 .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10% 0 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .home-appeal_2 .inner {
    padding: 0 10px;
    flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .home-appeal_2 .inner {
    padding: 0 132px;
  }
}
.home-appeal_2 .inner .content {
  width: 45%;
}
@media (max-width: 767px) {
  .home-appeal_2 .inner .content {
    width: 100%;
  }
}
.home-appeal_2 .inner .title_3 {
  font-size: 14px;
  color: #E40000;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05rem;
}
@media (max-width: 450px) {
  .home-appeal_2 .inner .title_3 {
    font-size: 10px;
  }
}
.home-appeal_2 .inner .title_2 {
  font-size: 28px;
  position: relative;
  margin-top: 8px;
}
@media (max-width: 450px) {
  .home-appeal_2 .inner .title_2 {
    font-size: 20px;
    margin-top: 4px;
  }
}
.home-appeal_2 .inner .title_2::before {
  position: absolute;
  border-bottom: 2px solid #E40000;
  bottom: -15px;
  left: 0;
  width: 50px;
  content: "";
}
@media (max-width: 450px) {
  .home-appeal_2 .inner .title_2::before {
    bottom: -8px;
  }
}
.home-appeal_2 .inner p {
  margin-top: 40px;
}
@media (max-width: 450px) {
  .home-appeal_2 .inner p {
    font-size: 14px;
    margin-top: 30px;
  }
}
.home-appeal_2 .inner .btn_more {
  text-align: right;
}
.home-appeal_2 .inner .btn_more .more {
  color: #e40000;
  padding: 8px 16px;
  box-sizing: border-box;
  border: solid 1px #e40000;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  display: inline-block;
}
@media (max-width: 450px) {
  .home-appeal_2 .inner .btn_more .more {
    padding: 4px 14px;
  }
}
.home-appeal_2 .inner .btn_more .more:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
}
.home-appeal_2 .inner .btn_more .more {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .home-appeal_2 .inner .btn_more .more {
    margin-top: 16px;
  }
}
.home-appeal_2 .inner .img_content {
  width: 45%;
}
@media (max-width: 767px) {
  .home-appeal_2 .inner .img_content {
    width: 100%;
  }
}
.home-appeal_2 .inner .img_content .img_1 {
  width: 100%;
}
.home-appeal_2 .inner .img_content .img_2 {
  width: 70%;
  margin-top: 30px;
}

.home-machine {
  padding: 80px 0;
}
@media (max-width: 639px) {
  .home-machine {
    padding: 40px 0;
  }
}
.home-machine .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .home-machine .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .home-machine .inner {
    padding: 0 132px;
  }
}
.home-machine .inner .title_3 {
  font-size: 14px;
  color: #E40000;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05rem;
}
@media (max-width: 450px) {
  .home-machine .inner .title_3 {
    font-size: 10px;
  }
}
.home-machine .inner .title_2 {
  font-size: 28px;
  position: relative;
  margin-top: 8px;
}
@media (max-width: 450px) {
  .home-machine .inner .title_2 {
    font-size: 20px;
    margin-top: 4px;
  }
}
.home-machine .inner .title_2::before {
  position: absolute;
  border-bottom: 2px solid #E40000;
  bottom: -15px;
  left: 0;
  width: 50px;
  content: "";
}
@media (max-width: 450px) {
  .home-machine .inner .title_2::before {
    bottom: -8px;
  }
}
.home-machine .inner ul .reverse {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .home-machine .inner ul .reverse {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.home-machine .inner ul .reverse .right {
  margin-left: -20px;
}
@media (max-width: 767px) {
  .home-machine .inner ul .reverse .right {
    margin-left: 20px;
    align-self: flex-start;
  }
}
.home-machine .inner ul li {
  background-image: url("../img/bg-1.png");
  background-size: 60%;
  background-position: top;
  background-repeat: no-repeat;
  display: flex;
  align-items: end;
  justify-content: center;
  padding-top: 40px;
  margin-top: 80px;
}
.home-machine .inner ul li:nth-child(1) {
  margin-top: 40px;
}
@media (max-width: 450px) {
  .home-machine .inner ul li:nth-child(1) {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .home-machine .inner ul li {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    margin-top: 30px;
  }
}
@media (max-width: 450px) {
  .home-machine .inner ul li {
    padding-top: 10px;
    margin-top: 10px;
  }
}
.home-machine .inner ul li .text {
  border: solid 2px #e40000;
  height: 20rem;
  width: 20rem;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin-bottom: -20px;
  margin-right: -20px;
  z-index: 1;
}
@media (max-width: 1023px) {
  .home-machine .inner ul li .text {
    height: 20rem;
  }
}
@media (max-width: 767px) {
  .home-machine .inner ul li .text {
    align-self: flex-start;
    margin: 0 auto;
    height: 8rem;
    width: 90%;
    margin-bottom: -10px;
    padding: 20px 10px;
  }
}
@media (max-width: 450px) {
  .home-machine .inner ul li .text {
    height: 6.5rem;
    margin-bottom: -10px;
  }
}
.home-machine .inner ul li .text h3 {
  text-align: left;
}
.home-machine .inner ul li .text h4 {
  font-size: 20px;
  position: relative;
  margin-top: 8px;
}
@media (max-width: 1023px) {
  .home-machine .inner ul li .text h4 {
    font-size: 2.2vw;
  }
}
@media (max-width: 767px) {
  .home-machine .inner ul li .text h4 {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .home-machine .inner ul li .text h4 {
    font-size: 16px;
    margin-top: 4px;
  }
}
.home-machine .inner ul li .img {
  width: 550px;
  height: 360px;
}
.home-machine .inner ul li .img img {
  height: 100%;
}
@media (max-width: 767px) {
  .home-machine .inner ul li .img {
    width: 100%;
    height: 250px;
  }
}

.home-about {
  background-image: url("../img/footer-1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
}
@media (max-width: 639px) {
  .home-about {
    padding: 40px 0;
  }
}
.home-about .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .home-about .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .home-about .inner {
    padding: 0 132px;
  }
}
.home-about .inner .title_3 {
  font-size: 14px;
  color: #E40000;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05rem;
}
@media (max-width: 450px) {
  .home-about .inner .title_3 {
    font-size: 10px;
  }
}
.home-about .inner .title_2 {
  font-size: 28px;
  position: relative;
  margin-top: 8px;
}
@media (max-width: 450px) {
  .home-about .inner .title_2 {
    font-size: 20px;
    margin-top: 4px;
  }
}
.home-about .inner .title_2::before {
  position: absolute;
  border-bottom: 2px solid #E40000;
  bottom: -15px;
  left: 0;
  width: 50px;
  content: "";
}
@media (max-width: 450px) {
  .home-about .inner .title_2::before {
    bottom: -8px;
  }
}

.page-about .about-fv {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/about-fv.png");
}
.page-about .about-fv .inner {
  height: 100%;
}
.page-about .about-fv .inner .fv_wrap {
  height: 100%;
  box-sizing: border-box;
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 300px 0 80px 10%;
}
@media (max-width: 767px) {
  .page-about .about-fv .inner .fv_wrap {
    padding: 250px 10px 60px 50px;
  }
}
@media (max-width: 639px) {
  .page-about .about-fv .inner .fv_wrap {
    padding: 150px 10px 40px 35px;
  }
}
@media (min-width: 1440px) {
  .page-about .about-fv .inner .fv_wrap {
    padding: 300px 132px 80px;
    padding-bottom: 80px;
  }
}
.page-about .about-fv .inner .fv_wrap h2 {
  display: inline;
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-size: 85px;
  position: relative;
}
@media (max-width: 639px) {
  .page-about .about-fv .inner .fv_wrap h2 {
    font-size: 36px;
  }
}
.page-about .about-fv .inner .fv_wrap h2::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -30px;
  width: 30px;
  height: 30px;
  background-image: url("../img/icon-2.png");
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .page-about .about-fv .inner .fv_wrap h2::before {
    top: -2vw;
    left: -3.5vw;
    width: 3.5vw;
    height: 3.5vw;
  }
}
.page-about .about-fv .inner .fv_wrap h3 {
  color: #fff;
  font-size: 20px;
  margin-left: 340px;
}
@media (max-width: 639px) {
  .page-about .about-fv .inner .fv_wrap h3 {
    font-size: 16px;
    margin-left: 100px;
  }
}

.page-about .about-message {
  padding: 80px 0;
}
@media (max-width: 639px) {
  .page-about .about-message {
    padding: 40px 0;
  }
}
.page-about .about-message .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 0 0 10%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .page-about .about-message .inner {
    padding: 0 10px;
    flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .page-about .about-message .inner {
    padding: 0 132px;
  }
}
.page-about .about-message .inner .content {
  width: 45%;
}
@media (max-width: 767px) {
  .page-about .about-message .inner .content {
    width: 100%;
  }
}
.page-about .about-message .inner .title_3 {
  font-size: 14px;
  color: #E40000;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05rem;
}
@media (max-width: 450px) {
  .page-about .about-message .inner .title_3 {
    font-size: 10px;
  }
}
.page-about .about-message .inner .title_2 {
  font-size: 28px;
  position: relative;
  margin-top: 8px;
}
@media (max-width: 450px) {
  .page-about .about-message .inner .title_2 {
    font-size: 20px;
    margin-top: 4px;
  }
}
.page-about .about-message .inner .title_2::before {
  position: absolute;
  border-bottom: 2px solid #E40000;
  bottom: -15px;
  left: 0;
  width: 50px;
  content: "";
}
@media (max-width: 450px) {
  .page-about .about-message .inner .title_2::before {
    bottom: -8px;
  }
}
.page-about .about-message .inner p {
  margin-top: 40px;
}
@media (max-width: 450px) {
  .page-about .about-message .inner p {
    font-size: 14px;
    margin-top: 30px;
  }
}
.page-about .about-message .inner h4 {
  margin-top: 20px;
  text-align: right;
  font-size: 24px;
}
.page-about .about-message .inner h4 span {
  font-size: 16px;
  margin-right: 20px;
}
.page-about .about-message .inner .img_content {
  width: 45%;
}
@media (max-width: 767px) {
  .page-about .about-message .inner .img_content {
    width: 100%;
  }
}
.page-about .about-message .inner .img_content .img_1 {
  width: 100%;
}

.page-about .about-corporate {
  padding: 80px 0;
}
@media (max-width: 639px) {
  .page-about .about-corporate {
    padding: 40px 0;
  }
}
.page-about .about-corporate .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10% 0 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .page-about .about-corporate .inner {
    padding: 0 10px;
    flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .page-about .about-corporate .inner {
    padding: 0 132px;
  }
}
.page-about .about-corporate .inner .content {
  width: 45%;
}
@media (max-width: 767px) {
  .page-about .about-corporate .inner .content {
    width: 100%;
  }
}
.page-about .about-corporate .inner .content .name {
  text-align: right;
  margin-top: 40px;
}
.page-about .about-corporate .inner .content .copy {
  margin-top: 30px;
}
.page-about .about-corporate .inner .title_3 {
  font-size: 14px;
  color: #E40000;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05rem;
}
@media (max-width: 450px) {
  .page-about .about-corporate .inner .title_3 {
    font-size: 10px;
  }
}
.page-about .about-corporate .inner .title_2 {
  font-size: 28px;
  position: relative;
  margin-top: 8px;
}
@media (max-width: 450px) {
  .page-about .about-corporate .inner .title_2 {
    font-size: 20px;
    margin-top: 4px;
  }
}
.page-about .about-corporate .inner .title_2::before {
  position: absolute;
  border-bottom: 2px solid #E40000;
  bottom: -15px;
  left: 0;
  width: 50px;
  content: "";
}
@media (max-width: 450px) {
  .page-about .about-corporate .inner .title_2::before {
    bottom: -8px;
  }
}
.page-about .about-corporate .inner h4 {
  font-size: 22px;
  margin-top: 30px;
}
@media (max-width: 450px) {
  .page-about .about-corporate .inner h4 {
    font-size: 18px;
    margin-top: 20px;
  }
}
.page-about .about-corporate .inner h5 {
  font-size: 16px;
  margin-top: 10px;
}
@media (max-width: 450px) {
  .page-about .about-corporate .inner h5 {
    font-size: 14px;
    margin-top: 10px;
  }
}
@media (max-width: 450px) {
  .page-about .about-corporate .inner p {
    font-size: 14px;
  }
}
.page-about .about-corporate .inner .img_content {
  width: 45%;
}
@media (max-width: 767px) {
  .page-about .about-corporate .inner .img_content {
    width: 100%;
  }
}
.page-about .about-corporate .inner .img_content .img_1 {
  width: 100%;
}
.page-about .about-corporate .wrap-1 {
  padding: 0 10%;
}
@media (max-width: 767px) {
  .page-about .about-corporate .wrap-1 {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .page-about .about-corporate .wrap-1 {
    padding: 0 132px;
  }
}
.page-about .about-corporate .wrap-1 .content-1 {
  width: 100%;
}
.page-about .about-corporate .wrap-1 .content-1 .name {
  text-align: right;
  margin-top: 40px;
}
.page-about .about-corporate .wrap-1 .content-1 p {
  line-height: 2;
}
.page-about .about-corporate .wrap-2 {
  padding: 0 10%;
}
@media (max-width: 767px) {
  .page-about .about-corporate .wrap-2 {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .page-about .about-corporate .wrap-2 {
    padding: 0 132px;
  }
}
.page-about .about-corporate .wrap-2 .content-2 {
  width: 100%;
}
.page-about .about-corporate .wrap-2 .content-2 ul {
  margin-top: 40px;
  width: 80%;
}
@media (max-width: 767px) {
  .page-about .about-corporate .wrap-2 .content-2 ul {
    width: 100%;
  }
}
.page-about .about-corporate .wrap-2 .content-2 ul li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid black;
  padding: 10px 0;
}
.page-about .about-corporate .wrap-2 .content-2 ul li p {
  width: 20%;
  display: flex;
  align-items: center;
}
@media (max-width: 450px) {
  .page-about .about-corporate .wrap-2 .content-2 ul li p {
    width: 29%;
  }
}
.page-about .about-corporate .wrap-2 .content-2 ul li p:nth-child(2) {
  width: 78%;
  justify-content: left;
}
@media (max-width: 350px) {
  .page-about .about-corporate .wrap-2 .content-2 ul li p:nth-child(2) {
    width: 70%;
  }
}
.page-about .about-corporate .wrap-2 .content-2 p {
  line-height: 2;
}

.page-about .about-profile {
  padding: 80px 0;
}
@media (max-width: 639px) {
  .page-about .about-profile {
    padding: 40px 0;
  }
}
.page-about .about-profile .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .page-about .about-profile .inner {
    padding: 0 10px;
    flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .page-about .about-profile .inner {
    padding: 0 132px;
  }
}
.page-about .about-profile .inner .title_3 {
  font-size: 14px;
  color: #E40000;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05rem;
}
@media (max-width: 450px) {
  .page-about .about-profile .inner .title_3 {
    font-size: 10px;
  }
}
.page-about .about-profile .inner .title_2 {
  font-size: 28px;
  position: relative;
  margin-top: 8px;
}
@media (max-width: 450px) {
  .page-about .about-profile .inner .title_2 {
    font-size: 20px;
    margin-top: 4px;
  }
}
.page-about .about-profile .inner .title_2::before {
  position: absolute;
  border-bottom: 2px solid #E40000;
  bottom: -15px;
  left: 0;
  width: 50px;
  content: "";
}
@media (max-width: 450px) {
  .page-about .about-profile .inner .title_2::before {
    bottom: -8px;
  }
}
.page-about .about-profile .inner .container {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
@media (max-width: 1023px) {
  .page-about .about-profile .inner .container {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 450px) {
  .page-about .about-profile .inner .container {
    font-size: 14px;
  }
}
.page-about .about-profile .inner .container .content {
  width: 48%;
}
@media (max-width: 1023px) {
  .page-about .about-profile .inner .container .content {
    width: 100%;
  }
}
.page-about .about-profile .inner .container .content .wrap-1 ul {
  display: flex;
}
.page-about .about-profile .inner .container .content .wrap-1 ul li {
  width: 30%;
}
.page-about .about-profile .inner .container .content .wrap-1 ul li:nth-child(2) {
  border-left: solid 1px #271915;
  padding-left: 2em;
  box-sizing: border-box;
  width: 70%;
}
@media (max-width: 450px) {
  .page-about .about-profile .inner .container .content .wrap-1 ul li:nth-child(2) {
    padding-left: 0.5em;
  }
}
.page-about .about-profile .inner .container .content .wrap-1 ul li .none {
  display: none;
}
@media (max-width: 450px) {
  .page-about .about-profile .inner .container .content .wrap-1 ul li .none {
    display: block;
  }
}
.page-about .about-profile .inner .container .content-2 {
  width: 48%;
}
@media (max-width: 1023px) {
  .page-about .about-profile .inner .container .content-2 {
    width: 100%;
  }
}
.page-about .about-profile .inner .container .content-2 .wrap-2 ul {
  display: flex;
}
.page-about .about-profile .inner .container .content-2 .wrap-2 ul li {
  width: 30%;
}
.page-about .about-profile .inner .container .content-2 .wrap-2 ul li:nth-child(2) {
  border-left: solid 1px #271915;
  padding-left: 2em;
  box-sizing: border-box;
  width: 70%;
}
@media (max-width: 450px) {
  .page-about .about-profile .inner .container .content-2 .wrap-2 ul li:nth-child(2) {
    padding-left: 0.5em;
  }
}

.page-business .business-fv {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/business-fv.png");
}
.page-business .business-fv .inner {
  height: 100%;
}
.page-business .business-fv .inner .fv_wrap {
  height: 100%;
  box-sizing: border-box;
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 300px 0 80px 10%;
}
@media (max-width: 767px) {
  .page-business .business-fv .inner .fv_wrap {
    padding: 250px 10px 60px 50px;
  }
}
@media (max-width: 639px) {
  .page-business .business-fv .inner .fv_wrap {
    padding: 150px 10px 40px 35px;
  }
}
@media (min-width: 1440px) {
  .page-business .business-fv .inner .fv_wrap {
    padding: 300px 132px 80px;
    padding-bottom: 80px;
  }
}
.page-business .business-fv .inner .fv_wrap h2 {
  display: inline;
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-size: 85px;
  position: relative;
}
@media (max-width: 639px) {
  .page-business .business-fv .inner .fv_wrap h2 {
    font-size: 36px;
  }
}
.page-business .business-fv .inner .fv_wrap h2::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -30px;
  width: 30px;
  height: 30px;
  background-image: url("../img/icon-2.png");
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .page-business .business-fv .inner .fv_wrap h2::before {
    top: -2vw;
    left: -3.5vw;
    width: 3.5vw;
    height: 3.5vw;
  }
}
.page-business .business-fv .inner .fv_wrap h3 {
  color: #fff;
  font-size: 20px;
}
@media (max-width: 639px) {
  .page-business .business-fv .inner .fv_wrap h3 {
    font-size: 16px;
  }
}

.page-business .business-message {
  padding: 80px 0;
}
@media (max-width: 639px) {
  .page-business .business-message {
    padding: 40px 0;
  }
}
.page-business .business-message .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .page-business .business-message .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .page-business .business-message .inner {
    padding: 0 132px;
  }
}
.page-business .business-message .inner p {
  padding: 0 10%;
}
@media (max-width: 450px) {
  .page-business .business-message .inner p {
    font-size: 14px;
  }
}

.page-business .business-equipment {
  padding: 80px 0;
}
@media (max-width: 639px) {
  .page-business .business-equipment {
    padding: 40px 0;
  }
}
.page-business .business-equipment .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .page-business .business-equipment .inner {
    padding: 0 10px;
    flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .page-business .business-equipment .inner {
    padding: 0 132px;
  }
}
.page-business .business-equipment .inner .title_3 {
  font-size: 14px;
  color: #E40000;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05rem;
}
@media (max-width: 450px) {
  .page-business .business-equipment .inner .title_3 {
    font-size: 10px;
  }
}
.page-business .business-equipment .inner .title_2 {
  font-size: 28px;
  position: relative;
  margin-top: 8px;
}
@media (max-width: 450px) {
  .page-business .business-equipment .inner .title_2 {
    font-size: 20px;
    margin-top: 4px;
  }
}
.page-business .business-equipment .inner .title_2::before {
  position: absolute;
  border-bottom: 2px solid #E40000;
  bottom: -15px;
  left: 0;
  width: 50px;
  content: "";
}
@media (max-width: 450px) {
  .page-business .business-equipment .inner .title_2::before {
    bottom: -8px;
  }
}
.page-business .business-equipment .inner .container {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .page-business .business-equipment .inner .container {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 450px) {
  .page-business .business-equipment .inner .container {
    font-size: 14px;
  }
}
.page-business .business-equipment .inner .container .content {
  width: 35%;
}
@media (max-width: 1023px) {
  .page-business .business-equipment .inner .container .content {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .page-business .business-equipment .inner .container .content {
    width: 100%;
  }
}
.page-business .business-equipment .inner .container .content h4 {
  font-size: 22px;
}
.page-business .business-equipment .inner .container .content ul {
  margin-top: 1rem;
}
.page-business .business-equipment .inner .container .content ul li {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .page-business .business-equipment .inner .container .content ul li {
    justify-content: start;
    gap: 2rem;
  }
}
.page-business .business-equipment .inner .container .content ul li p {
  font-size: 20px;
}
@media (max-width: 767px) {
  .page-business .business-equipment .inner .container .content ul li p {
    font-size: 16px;
  }
}
.page-business .business-equipment .inner .container .img_content {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 1023px) {
  .page-business .business-equipment .inner .container .img_content {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .page-business .business-equipment .inner .container .img_content {
    width: 100%;
  }
}
.page-business .business-equipment .inner .container .img_content .img_1 {
  width: 45%;
}
.page-business .business-equipment .inner .container .img_content .img_1 img {
  width: 100%;
}

.page-business .business-corporate {
  padding: 80px 0;
  background-color: #F3F3F3;
}
@media (max-width: 639px) {
  .page-business .business-corporate {
    padding: 40px 0;
  }
}
.page-business .business-corporate .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
}
@media (max-width: 767px) {
  .page-business .business-corporate .inner {
    padding: 0 10px;
    flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 1440px) {
  .page-business .business-corporate .inner {
    padding: 0 132px;
  }
}

.page-work .work-fv {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/work-fv.png");
}
.page-work .work-fv .inner {
  height: 100%;
}
.page-work .work-fv .inner .fv_wrap {
  height: 100%;
  box-sizing: border-box;
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 300px 0 80px 10%;
}
@media (max-width: 767px) {
  .page-work .work-fv .inner .fv_wrap {
    padding: 250px 10px 60px 50px;
  }
}
@media (max-width: 639px) {
  .page-work .work-fv .inner .fv_wrap {
    padding: 150px 10px 40px 35px;
  }
}
@media (min-width: 1440px) {
  .page-work .work-fv .inner .fv_wrap {
    padding: 300px 132px 80px;
    padding-bottom: 80px;
  }
}
.page-work .work-fv .inner .fv_wrap h2 {
  display: inline;
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-size: 85px;
  position: relative;
}
@media (max-width: 639px) {
  .page-work .work-fv .inner .fv_wrap h2 {
    font-size: 36px;
  }
}
.page-work .work-fv .inner .fv_wrap h2::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -30px;
  width: 30px;
  height: 30px;
  background-image: url("../img/icon-2.png");
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .page-work .work-fv .inner .fv_wrap h2::before {
    top: -2vw;
    left: -3.5vw;
    width: 3.5vw;
    height: 3.5vw;
  }
}
.page-work .work-fv .inner .fv_wrap h3 {
  color: #fff;
  font-size: 20px;
}
@media (max-width: 639px) {
  .page-work .work-fv .inner .fv_wrap h3 {
    font-size: 16px;
  }
}

.page-work .work-message {
  padding: 80px 0;
}
@media (max-width: 639px) {
  .page-work .work-message {
    padding: 40px 0;
  }
}
.page-work .work-message .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .page-work .work-message .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .page-work .work-message .inner {
    padding: 0 132px;
  }
}
.page-work .work-message .inner .message {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .page-work .work-message .inner .message {
    font-size: 14px;
  }
}
.page-work .work-message .inner .message br {
  display: none;
}
@media (max-width: 450px) {
  .page-work .work-message .inner .message br {
    display: block;
  }
}
.page-work .work-message .inner ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .page-work .work-message .inner ul {
    gap: 4px;
    margin-top: 16px;
    justify-content: flex-start;
  }
}
.page-work .work-message .inner ul li {
  background-color: #F3F3F3;
  padding: 1rem;
  box-sizing: border-box;
  width: 300px;
}
@media (max-width: 767px) {
  .page-work .work-message .inner ul li {
    width: 100%;
    padding: 0.3rem 0;
    font-size: 12px;
    gap: 8px;
  }
  .page-work .work-message .inner ul li:nth-child(2) {
    margin-left: 1rem;
  }
  .page-work .work-message .inner ul li:nth-child(3) {
    margin-left: 2rem;
  }
  .page-work .work-message .inner ul li:nth-child(4) {
    margin-left: 3rem;
  }
  .page-work .work-message .inner ul li:nth-child(5) {
    margin-left: 4rem;
  }
  .page-work .work-message .inner ul li:nth-child(6) {
    margin-left: 5rem;
  }
}
.page-work .work-message .inner ul li a {
  display: flex;
}
.page-work .work-message .inner ul li a h4 {
  padding: 0 0.5rem;
}
.page-work .work-message .inner ul li a p {
  border-left: 1px solid black;
  padding: 0 0.5rem;
}

.page-work .work-flow {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .page-work .work-flow {
    padding: 0px 0;
  }
}
.page-work .work-flow .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .page-work .work-flow .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .page-work .work-flow .inner {
    padding: 0 132px;
  }
}
.page-work .work-flow .inner ul .right {
  background-image: url("../img/bg-1.png");
  background-size: 60%;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: flex-start;
  padding-top: 30px;
  z-index: 1;
}
@media (max-width: 1279px) {
  .page-work .work-flow .inner ul .right {
    padding-top: 50px;
  }
}
@media (max-width: 1023px) {
  .page-work .work-flow .inner ul .right {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .page-work .work-flow .inner ul .right {
    flex-direction: column;
    padding-top: 0px;
  }
}
.page-work .work-flow .inner ul .right .wrap-1 {
  width: 45%;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-work .work-flow .inner ul .right .wrap-1 {
    width: 90%;
    margin-bottom: -12px;
  }
}
.page-work .work-flow .inner ul .right .wrap-1 .title {
  display: flex;
  align-items: center;
  color: #e40000;
}
.page-work .work-flow .inner ul .right .wrap-1 .title h3 {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-size: 24px;
  font-weight: normal;
}
.page-work .work-flow .inner ul .right .wrap-1 .title h4 {
  font-size: 64px;
  line-height: 1;
}
.page-work .work-flow .inner ul .right .wrap-1 .text {
  border: #e40000 solid 1px;
  box-sizing: border-box;
  padding: 4rem;
  margin-top: 16px;
}
@media (max-width: 1279px) {
  .page-work .work-flow .inner ul .right .wrap-1 .text {
    padding: 2rem;
  }
}
@media (max-width: 1023px) {
  .page-work .work-flow .inner ul .right .wrap-1 .text {
    padding: 1rem;
  }
}
.page-work .work-flow .inner ul .right .wrap-1 .text h5 {
  font-size: 22px;
}
.page-work .work-flow .inner ul .right .wrap-1 .text p {
  font-size: 16px;
  margin-top: 16px;
}
.page-work .work-flow .inner ul .right .img-1 {
  width: 57%;
  position: absolute;
  bottom: 20px;
  right: 0;
  top: 50px;
}
@media (max-width: 767px) {
  .page-work .work-flow .inner ul .right .img-1 {
    position: static;
    width: 100%;
  }
}
.page-work .work-flow .inner ul .right .img-1 img {
  height: 100%;
}
.page-work .work-flow .inner ul .icon_li .icon {
  margin: 40px auto;
  width: 20px;
}
.page-work .work-flow .inner ul .left {
  background-image: url("../img/bg-1.png");
  background-size: 60%;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-top: 30px;
  z-index: 1;
}
@media (max-width: 1279px) {
  .page-work .work-flow .inner ul .left {
    padding-top: 50px;
  }
}
@media (max-width: 1023px) {
  .page-work .work-flow .inner ul .left {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .page-work .work-flow .inner ul .left {
    flex-direction: column;
    padding-top: 0px;
  }
}
.page-work .work-flow .inner ul .left .wrap-1 {
  width: 45%;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-work .work-flow .inner ul .left .wrap-1 {
    width: 90%;
    margin-bottom: -12px;
    margin-left: auto;
  }
}
.page-work .work-flow .inner ul .left .wrap-1 .title {
  display: flex;
  align-items: center;
  color: #e40000;
  justify-content: flex-end;
}
.page-work .work-flow .inner ul .left .wrap-1 .title h3 {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-size: 24px;
  font-weight: normal;
}
.page-work .work-flow .inner ul .left .wrap-1 .title h4 {
  font-size: 64px;
  line-height: 1;
}
.page-work .work-flow .inner ul .left .wrap-1 .text {
  border: #e40000 solid 1px;
  box-sizing: border-box;
  padding: 4rem;
  margin-top: 16px;
}
@media (max-width: 1279px) {
  .page-work .work-flow .inner ul .left .wrap-1 .text {
    padding: 2rem;
  }
}
@media (max-width: 1023px) {
  .page-work .work-flow .inner ul .left .wrap-1 .text {
    padding: 1rem;
  }
}
.page-work .work-flow .inner ul .left .wrap-1 .text h5 {
  font-size: 22px;
}
.page-work .work-flow .inner ul .left .wrap-1 .text p {
  font-size: 16px;
  margin-top: 16px;
}
.page-work .work-flow .inner ul .left .img-1 {
  width: 57%;
  position: absolute;
  bottom: 20px;
  left: 0;
  top: 50px;
}
@media (max-width: 767px) {
  .page-work .work-flow .inner ul .left .img-1 {
    position: static;
    width: 100%;
  }
}
.page-work .work-flow .inner ul .left .img-1 img {
  height: 100%;
}
.page-work .work-flow .inner ul .img_flex {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.page-work .work-flow .inner ul .top {
  background-image: url("../img/bg-1.png");
  background-size: 60%;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: flex-start;
  padding-top: 120px;
  z-index: 1;
}
@media (max-width: 1279px) {
  .page-work .work-flow .inner ul .top {
    padding-top: 100px;
  }
}
@media (max-width: 1023px) {
  .page-work .work-flow .inner ul .top {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .page-work .work-flow .inner ul .top {
    flex-direction: column;
    padding-top: 0px;
  }
}
.page-work .work-flow .inner ul .top .wrap-1 {
  width: 100%;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-work .work-flow .inner ul .top .wrap-1 {
    width: 90%;
    margin: 0 auto -12px;
  }
}
.page-work .work-flow .inner ul .top .wrap-1 .title {
  display: flex;
  align-items: center;
  color: #e40000;
}
.page-work .work-flow .inner ul .top .wrap-1 .title h3 {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-size: 24px;
  font-weight: normal;
}
.page-work .work-flow .inner ul .top .wrap-1 .title h4 {
  font-size: 64px;
  line-height: 1;
}
.page-work .work-flow .inner ul .top .wrap-1 .text {
  border: #e40000 solid 1px;
  box-sizing: border-box;
  padding: 4rem;
  margin-top: 16px;
}
@media (max-width: 1279px) {
  .page-work .work-flow .inner ul .top .wrap-1 .text {
    padding: 2rem;
  }
}
@media (max-width: 1023px) {
  .page-work .work-flow .inner ul .top .wrap-1 .text {
    padding: 1rem;
  }
}
.page-work .work-flow .inner ul .top .wrap-1 .text h5 {
  font-size: 22px;
}
.page-work .work-flow .inner ul .top .wrap-1 .text p {
  font-size: 16px;
  margin-top: 16px;
}
.page-work .work-flow .inner ul .top .img-1 {
  width: 65%;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media (max-width: 767px) {
  .page-work .work-flow .inner ul .top .img-1 {
    position: static;
    width: 100%;
    height: 100%;
  }
}
.page-work .work-flow .inner ul .top .img-1 img {
  height: 100%;
}

.page-recruitment .recruitment-fv {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/recruitment-fv.png");
}
.page-recruitment .recruitment-fv .inner {
  height: 100%;
}
.page-recruitment .recruitment-fv .inner .fv_wrap {
  height: 100%;
  box-sizing: border-box;
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 300px 0 80px 10%;
}
@media (max-width: 767px) {
  .page-recruitment .recruitment-fv .inner .fv_wrap {
    padding: 250px 10px 60px 50px;
  }
}
@media (max-width: 639px) {
  .page-recruitment .recruitment-fv .inner .fv_wrap {
    padding: 150px 10px 40px 35px;
  }
}
@media (min-width: 1440px) {
  .page-recruitment .recruitment-fv .inner .fv_wrap {
    padding: 300px 132px 80px;
    padding-bottom: 80px;
  }
}
.page-recruitment .recruitment-fv .inner .fv_wrap h2 {
  display: inline;
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-size: 85px;
  position: relative;
}
@media (max-width: 639px) {
  .page-recruitment .recruitment-fv .inner .fv_wrap h2 {
    font-size: 36px;
  }
}
.page-recruitment .recruitment-fv .inner .fv_wrap h2::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -30px;
  width: 30px;
  height: 30px;
  background-image: url("../img/icon-2.png");
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .page-recruitment .recruitment-fv .inner .fv_wrap h2::before {
    top: -2vw;
    left: -3.5vw;
    width: 3.5vw;
    height: 3.5vw;
  }
}
.page-recruitment .recruitment-fv .inner .fv_wrap h3 {
  color: #fff;
  font-size: 20px;
}
@media (max-width: 639px) {
  .page-recruitment .recruitment-fv .inner .fv_wrap h3 {
    font-size: 16px;
  }
}

.page-recruitment .recruitment-message {
  padding: 80px 0;
}
@media (max-width: 639px) {
  .page-recruitment .recruitment-message {
    padding: 40px 0;
  }
}
.page-recruitment .recruitment-message .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
}
.page-recruitment .recruitment-message .inner .content {
  padding: 40px 0;
}
.page-recruitment .recruitment-message .inner .content .message {
  padding: 0 10%;
  font-size: 2.5vw;
  font-weight: bold;
}
@media (max-width: 767px) {
  .page-recruitment .recruitment-message .inner .content .message {
    font-size: 18px;
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .page-recruitment .recruitment-message .inner .content .message {
    font-size: 34px;
  }
}
.page-recruitment .recruitment-message .inner .content .message br {
  display: none;
}
@media (max-width: 450px) {
  .page-recruitment .recruitment-message .inner .content .message br {
    display: block;
  }
}
.page-recruitment .recruitment-message .inner .content .name {
  padding: 0 10%;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .page-recruitment .recruitment-message .inner .content .name {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .page-recruitment .recruitment-message .inner .content .name {
    padding: 0 132px;
  }
}
.page-recruitment .recruitment-message .inner .content .name .title_3 {
  font-size: 14px;
  color: #E40000;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05rem;
  font-size: 14px;
  font-weight: normal;
}
@media (max-width: 450px) {
  .page-recruitment .recruitment-message .inner .content .name .title_3 {
    font-size: 10px;
  }
}
.page-recruitment .recruitment-message .inner .content .name .work_history {
  font-size: 16px;
  font-weight: normal;
  margin-top: 4px;
}
.page-recruitment .recruitment-message .inner .content .name .title_2 {
  font-size: 28px;
  position: relative;
  margin-top: 8px;
  margin-top: 0;
  font-size: 28px;
}
@media (max-width: 450px) {
  .page-recruitment .recruitment-message .inner .content .name .title_2 {
    font-size: 20px;
    margin-top: 4px;
  }
}
.page-recruitment .recruitment-message .inner .content .name .title_2::before {
  position: absolute;
  border-bottom: 2px solid #E40000;
  bottom: -15px;
  left: 0;
  width: 50px;
  content: "";
}
@media (max-width: 450px) {
  .page-recruitment .recruitment-message .inner .content .name .title_2::before {
    bottom: -8px;
  }
}
@media (max-width: 767px) {
  .page-recruitment .recruitment-message .inner .content .name .title_2 {
    font-size: 18px;
  }
}
.page-recruitment .recruitment-message .inner .content .wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .page-recruitment .recruitment-message .inner .content .wrap {
    flex-direction: column;
  }
}
.page-recruitment .recruitment-message .inner .content .wrap .img {
  width: 45%;
}
@media (max-width: 767px) {
  .page-recruitment .recruitment-message .inner .content .wrap .img {
    width: 100%;
  }
}
.page-recruitment .recruitment-message .inner .content .wrap ul {
  width: 50%;
}
@media (max-width: 767px) {
  .page-recruitment .recruitment-message .inner .content .wrap ul {
    width: 100%;
  }
}
.page-recruitment .recruitment-message .inner .content .wrap ul .text {
  margin-top: 20px;
}
.page-recruitment .recruitment-message .inner .content .wrap ul .text:nth-child(1) {
  margin-top: 0;
}
.page-recruitment .recruitment-message .inner .content .wrap ul .text .title_4 {
  font-size: 28px;
  position: relative;
  margin-top: 8px;
  margin-top: 0;
  font-size: 22px;
}
@media (max-width: 450px) {
  .page-recruitment .recruitment-message .inner .content .wrap ul .text .title_4 {
    font-size: 20px;
    margin-top: 4px;
  }
}
.page-recruitment .recruitment-message .inner .content .wrap ul .text .title_4::before {
  position: absolute;
  border-bottom: 2px solid #E40000;
  bottom: -15px;
  left: 0;
  width: 50px;
  content: "";
}
@media (max-width: 450px) {
  .page-recruitment .recruitment-message .inner .content .wrap ul .text .title_4::before {
    bottom: -8px;
  }
}
@media (max-width: 767px) {
  .page-recruitment .recruitment-message .inner .content .wrap ul .text .title_4 {
    font-size: 16px;
  }
}
.page-recruitment .recruitment-message .inner .content .wrap ul .text p {
  margin-top: 25px;
}
@media (max-width: 767px) {
  .page-recruitment .recruitment-message .inner .content .wrap ul .text p {
    font-size: 12px;
  }
}
.page-recruitment .recruitment-message .inner .content .left {
  padding: 0 10% 0 0;
}
@media (max-width: 767px) {
  .page-recruitment .recruitment-message .inner .content .left {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .page-recruitment .recruitment-message .inner .content .left {
    padding: 0 132px 0 0;
  }
}
.page-recruitment .recruitment-message .inner .content .img_wrap {
  display: flex;
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  margin-top: 40px;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .page-recruitment .recruitment-message .inner .content .img_wrap {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .page-recruitment .recruitment-message .inner .content .img_wrap {
    padding: 0 132px;
  }
}
.page-recruitment .recruitment-message .inner .content .img_wrap .img {
  width: 25%;
}
.page-recruitment .recruitment-message .inner .content .right {
  padding: 0 0 0 10%;
}
@media (max-width: 767px) {
  .page-recruitment .recruitment-message .inner .content .right {
    padding: 0 10px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .page-recruitment .recruitment-message .inner .content .right {
    flex-direction: column-reverse;
  }
}
@media (min-width: 1440px) {
  .page-recruitment .recruitment-message .inner .content .right {
    padding: 0 0 0 132px;
  }
}
.page-recruitment .recruitment-message .inner .content .right_img_wrap {
  display: flex;
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  margin-top: 40px;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .page-recruitment .recruitment-message .inner .content .right_img_wrap {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .page-recruitment .recruitment-message .inner .content .right_img_wrap {
    padding: 0 132px;
  }
}
.page-recruitment .recruitment-message .inner .content .right_img_wrap .img {
  width: 25%;
}

.page-recruitment .recruitment-information .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .page-recruitment .recruitment-information .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .page-recruitment .recruitment-information .inner {
    padding: 0 132px;
  }
}
.page-recruitment .recruitment-information .inner .title_2 {
  font-size: 28px;
  position: relative;
  margin-top: 8px;
  margin-top: 0;
  font-size: 28px;
}
@media (max-width: 450px) {
  .page-recruitment .recruitment-information .inner .title_2 {
    font-size: 20px;
    margin-top: 4px;
  }
}
.page-recruitment .recruitment-information .inner .title_2::before {
  position: absolute;
  border-bottom: 2px solid #E40000;
  bottom: -15px;
  left: 0;
  width: 50px;
  content: "";
}
@media (max-width: 450px) {
  .page-recruitment .recruitment-information .inner .title_2::before {
    bottom: -8px;
  }
}
.page-recruitment .recruitment-information .inner .is-style-regular {
  margin-top: 40px;
}
.page-recruitment .recruitment-information .inner .has-fixed-layout tbody tr td {
  background-color: #F3F3F3;
  width: 20%;
}
@media (max-width: 639px) {
  .page-recruitment .recruitment-information .inner .has-fixed-layout tbody tr td {
    font-size: 14px;
  }
}
@media (max-width: 450px) {
  .page-recruitment .recruitment-information .inner .has-fixed-layout tbody tr td {
    font-size: 12px;
  }
}
.page-recruitment .recruitment-information .inner .has-fixed-layout tbody tr td:nth-child(2) {
  background-color: #fff;
  width: 80%;
}
.page-recruitment .recruitment-information .inner .btn_more {
  text-align: right;
  text-align: center;
}
.page-recruitment .recruitment-information .inner .btn_more .more {
  color: #e40000;
  padding: 8px 16px;
  box-sizing: border-box;
  border: solid 1px #e40000;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  display: inline-block;
}
@media (max-width: 450px) {
  .page-recruitment .recruitment-information .inner .btn_more .more {
    padding: 4px 14px;
  }
}
.page-recruitment .recruitment-information .inner .btn_more .more:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
}
.page-recruitment .recruitment-information .inner .btn_more .more {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .page-recruitment .recruitment-information .inner .btn_more .more {
    margin-top: 16px;
  }
}

.page-recruitment .recruitment-information {
  padding: 80px 0;
}
@media (max-width: 639px) {
  .page-recruitment .recruitment-information {
    padding: 40px 0;
  }
}
.page-recruitment .recruitment-information .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
}
.page-recruitment .recruitment-information .inner .title_2 {
  font-size: 28px;
  position: relative;
  margin-top: 8px;
  margin-top: 0;
  font-size: 28px;
}
@media (max-width: 450px) {
  .page-recruitment .recruitment-information .inner .title_2 {
    font-size: 20px;
    margin-top: 4px;
  }
}
.page-recruitment .recruitment-information .inner .title_2::before {
  position: absolute;
  border-bottom: 2px solid #E40000;
  bottom: -15px;
  left: 0;
  width: 50px;
  content: "";
}
@media (max-width: 450px) {
  .page-recruitment .recruitment-information .inner .title_2::before {
    bottom: -8px;
  }
}

.page-privacy_policy .privacy_policy-fv {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/about-fv.png");
}
.page-privacy_policy .privacy_policy-fv .inner {
  height: 100%;
}
.page-privacy_policy .privacy_policy-fv .inner .fv_wrap {
  height: 100%;
  box-sizing: border-box;
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 300px 0 80px 10%;
}
@media (max-width: 767px) {
  .page-privacy_policy .privacy_policy-fv .inner .fv_wrap {
    padding: 250px 10px 60px 50px;
  }
}
@media (max-width: 639px) {
  .page-privacy_policy .privacy_policy-fv .inner .fv_wrap {
    padding: 150px 10px 40px 35px;
  }
}
@media (min-width: 1440px) {
  .page-privacy_policy .privacy_policy-fv .inner .fv_wrap {
    padding: 300px 132px 80px;
    padding-bottom: 80px;
  }
}
.page-privacy_policy .privacy_policy-fv .inner .fv_wrap h2 {
  display: inline;
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-size: 85px;
  position: relative;
}
@media (max-width: 639px) {
  .page-privacy_policy .privacy_policy-fv .inner .fv_wrap h2 {
    font-size: 36px;
  }
}
.page-privacy_policy .privacy_policy-fv .inner .fv_wrap h2::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -30px;
  width: 30px;
  height: 30px;
  background-image: url("../img/icon-2.png");
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .page-privacy_policy .privacy_policy-fv .inner .fv_wrap h2::before {
    top: -2vw;
    left: -3.5vw;
    width: 3.5vw;
    height: 3.5vw;
  }
}
.page-privacy_policy .privacy_policy-fv .inner .fv_wrap h3 {
  color: #fff;
  font-size: 20px;
  margin-left: 340px;
}
@media (max-width: 639px) {
  .page-privacy_policy .privacy_policy-fv .inner .fv_wrap h3 {
    font-size: 16px;
    margin-left: 100px;
  }
}

.page-privacy_policy .privacy_policy-message {
  padding: 80px 0;
}
@media (max-width: 639px) {
  .page-privacy_policy .privacy_policy-message {
    padding: 40px 0;
  }
}
.page-privacy_policy .privacy_policy-message .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .page-privacy_policy .privacy_policy-message .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .page-privacy_policy .privacy_policy-message .inner {
    padding: 0 132px;
  }
}

.archive .archive-fv {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/contact-fv.png");
}
.archive .archive-fv .inner {
  height: 100%;
}
.archive .archive-fv .inner .fv_wrap {
  height: 100%;
  box-sizing: border-box;
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 300px 0 80px 10%;
}
@media (max-width: 767px) {
  .archive .archive-fv .inner .fv_wrap {
    padding: 250px 10px 60px 50px;
  }
}
@media (max-width: 639px) {
  .archive .archive-fv .inner .fv_wrap {
    padding: 150px 10px 40px 35px;
  }
}
@media (min-width: 1440px) {
  .archive .archive-fv .inner .fv_wrap {
    padding: 300px 132px 80px;
    padding-bottom: 80px;
  }
}
.archive .archive-fv .inner .fv_wrap h2 {
  display: inline;
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-size: 85px;
  position: relative;
}
@media (max-width: 639px) {
  .archive .archive-fv .inner .fv_wrap h2 {
    font-size: 36px;
  }
}
.archive .archive-fv .inner .fv_wrap h2::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -30px;
  width: 30px;
  height: 30px;
  background-image: url("../img/icon-2.png");
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .archive .archive-fv .inner .fv_wrap h2::before {
    top: -2vw;
    left: -3.5vw;
    width: 3.5vw;
    height: 3.5vw;
  }
}
.archive .archive-fv .inner .fv_wrap h3 {
  color: #fff;
  font-size: 20px;
}
@media (max-width: 639px) {
  .archive .archive-fv .inner .fv_wrap h3 {
    font-size: 16px;
  }
}
.archive .news .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .archive .news .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .archive .news .inner {
    padding: 0 132px;
  }
}
.archive .news .inner ul {
  border-top: solid #E40000 1px;
  margin-top: 50px;
}
.archive .news .inner ul li {
  border-bottom: solid #E40000 1px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 16px 20px 16px 30px;
}
@media (max-width: 1279px) {
  .archive .news .inner ul li {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .archive .news .inner ul li {
    font-size: 16px;
    padding: 16px 8px 16px 8px;
    gap: 16px;
  }
}
@media (max-width: 639px) {
  .archive .news .inner ul li {
    font-size: 14px;
    padding: 8px 8px 8px 8px;
  }
}
@media (max-width: 639px) {
  .archive .news .inner ul li {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 639px) {
  .archive .news .inner ul li p {
    margin-right: auto;
  }
}
.archive .news .inner ul li h5 {
  font-size: 12px;
  font-weight: normal;
}
@media (max-width: 639px) {
  .archive .news .inner ul li h5 {
    margin-right: auto;
  }
}
.archive .news .inner ul li h4 {
  font-weight: normal;
}
.archive .news .inner .btn-wrap {
  margin-left: auto;
}
.archive .news .inner .btn-wrap a {
  background-color: #E40000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  border: solid #fff 2px;
  box-sizing: border-box;
  width: 150px;
  height: 30px;
  border-radius: 5px;
  position: relative;
}
@media (max-width: 639px) {
  .archive .news .inner .btn-wrap a {
    width: 120px;
  }
}
.archive .news .inner .past {
  padding: 24px 20px 0 30px;
}
.archive .news .inner .past a {
  margin-left: auto;
  background-color: #fff;
  border: solid #E40000 1px;
  color: #E40000;
}
.archive .news .inner .past a::after {
  border-top: 2px solid #E40000;
  border-right: 2px solid #E40000;
}
.archive .news .inner .pagination_wrap {
  margin: 60px 0;
}
.archive .news .inner .pagination_wrap .pagination {
  text-align: center;
  margin-top: 20px;
}
.archive .news .inner .pagination_wrap .pagination a,
.archive .news .inner .pagination_wrap .pagination span {
  display: inline-block;
  padding: 10px 15px;
  margin: 2px;
  background: #f4f4f4;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
}
.archive .news .inner .pagination_wrap .pagination .current {
  background: #E40000;
  color: #fff;
}

.single .single-fv {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/contact-fv.png");
}
.single .single-fv .inner {
  height: 100%;
}
.single .single-fv .inner .fv_wrap {
  height: 100%;
  box-sizing: border-box;
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 300px 0 80px 10%;
}
@media (max-width: 767px) {
  .single .single-fv .inner .fv_wrap {
    padding: 250px 10px 60px 50px;
  }
}
@media (max-width: 639px) {
  .single .single-fv .inner .fv_wrap {
    padding: 150px 10px 40px 35px;
  }
}
@media (min-width: 1440px) {
  .single .single-fv .inner .fv_wrap {
    padding: 300px 132px 80px;
    padding-bottom: 80px;
  }
}
.single .single-fv .inner .fv_wrap h2 {
  display: inline;
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-size: 85px;
  position: relative;
}
@media (max-width: 639px) {
  .single .single-fv .inner .fv_wrap h2 {
    font-size: 36px;
  }
}
.single .single-fv .inner .fv_wrap h2::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -30px;
  width: 30px;
  height: 30px;
  background-image: url("../img/icon-2.png");
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .single .single-fv .inner .fv_wrap h2::before {
    top: -2vw;
    left: -3.5vw;
    width: 3.5vw;
    height: 3.5vw;
  }
}
.single .single-fv .inner .fv_wrap h3 {
  color: #fff;
  font-size: 20px;
}
@media (max-width: 639px) {
  .single .single-fv .inner .fv_wrap h3 {
    font-size: 16px;
  }
}
.single .single_content {
  margin-top: 40px;
}
.single .single_content .inner {
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .single .single_content .inner {
    padding: 0 10px;
  }
}
@media (min-width: 1440px) {
  .single .single_content .inner {
    padding: 0 132px;
  }
}
.single .single_content .inner .content {
  padding-bottom: 100px;
}
.single .single_content .inner .content .title {
  color: #E40000;
  border-bottom: 1px solid #E40000;
  font-size: 28px;
  padding-bottom: 1rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .single .single_content .inner .content .title {
    font-size: 22px;
  }
}
.single .single_content .inner .content .wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .single .single_content .inner .content .wrap {
    margin-top: 20px;
  }
}
.single .single_content .inner .content .wrap .day {
  font-size: 24px;
}
@media (max-width: 767px) {
  .single .single_content .inner .content .wrap .day {
    font-size: 18px;
  }
}
.single .single_content .inner .content .text {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .single .single_content .inner .content .text {
    margin-top: 30px;
  }
}
.single .single_content .inner .content .text p {
  font-size: 14px;
}

.page-cta .cta-fv {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/contact-fv.png");
}
.page-cta .cta-fv .inner {
  height: 100%;
}
.page-cta .cta-fv .inner .fv_wrap {
  height: 100%;
  box-sizing: border-box;
  max-width: 1366px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 300px 0 80px 10%;
}
@media (max-width: 767px) {
  .page-cta .cta-fv .inner .fv_wrap {
    padding: 250px 10px 60px 50px;
  }
}
@media (max-width: 639px) {
  .page-cta .cta-fv .inner .fv_wrap {
    padding: 150px 10px 40px 35px;
  }
}
@media (min-width: 1440px) {
  .page-cta .cta-fv .inner .fv_wrap {
    padding: 300px 132px 80px;
    padding-bottom: 80px;
  }
}
.page-cta .cta-fv .inner .fv_wrap h2 {
  display: inline;
  font-family: "Roboto", sans-serif;
  color: #fff;
  font-size: 85px;
  position: relative;
}
@media (max-width: 639px) {
  .page-cta .cta-fv .inner .fv_wrap h2 {
    font-size: 36px;
  }
}
.page-cta .cta-fv .inner .fv_wrap h2::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -30px;
  width: 30px;
  height: 30px;
  background-image: url("../img/icon-2.png");
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .page-cta .cta-fv .inner .fv_wrap h2::before {
    top: -2vw;
    left: -3.5vw;
    width: 3.5vw;
    height: 3.5vw;
  }
}
.page-cta .cta-fv .inner .fv_wrap h3 {
  color: #fff;
  font-size: 20px;
}
@media (max-width: 639px) {
  .page-cta .cta-fv .inner .fv_wrap h3 {
    font-size: 16px;
  }
}
.page-cta .from {
  background-color: #F3F3F3;
  margin: 40px auto;
  max-width: 1100px;
  padding: 40px 100px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .page-cta .from {
    padding: 20px 10px;
  }
}
.page-cta .from-wrap table {
  width: 100%;
  padding: 50px 50px;
}
@media (max-width: 767px) {
  .page-cta .from-wrap table {
    padding: 20px 10px;
  }
}
.page-cta .from-wrap table tr {
  all: unset;
  display: flex;
  align-items: start;
  flex-direction: column;
}
.page-cta .from-wrap table tr .checkbox-wrap {
  padding: 16px 0;
  border-radius: 5px;
  background-color: #fff;
  padding: 16px 0;
}
.page-cta .from-wrap table tr .checkbox-wrap .form-label_checkbox {
  color: initial;
  display: flex;
  justify-content: start;
  padding: 5px 16px;
}
.page-cta .from-wrap table td {
  padding: 0;
}
.page-cta .from-wrap table .item {
  font-size: 18px;
  padding: 0.3rem 0rem;
}
.page-cta .from-wrap table .item .color {
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  color: #fff;
  box-sizing: border-box;
  padding: 0.3rem 1rem;
  margin-left: 48px;
}
@media (max-width: 767px) {
  .page-cta .from-wrap table .item .color {
    padding: 0.5em;
    font-size: 16px;
    margin-left: 16px;
  }
}
.page-cta .from-wrap table .item .necessary {
  background-color: #E62232;
}
@media (max-width: 767px) {
  .page-cta .from-wrap table .item .necessary {
    font-size: 14px;
  }
}
.page-cta .from-wrap table .item .optional {
  background-color: #0054AB;
}
.page-cta .from-wrap table .text {
  width: 100%;
  padding: 16px 0;
}
@media (max-width: 767px) {
  .page-cta .from-wrap table .text {
    width: 100%;
  }
}
.page-cta .from-wrap table .form-label {
  width: 100%;
  height: 100%;
  display: block;
}
.page-cta .from-wrap table .form-label .form-control {
  width: 100%;
  display: block;
  padding: 5px 16px;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 24px;
}
@media (max-width: 767px) {
  .page-cta .from-wrap table .form-label .form-control {
    font-size: 18px;
  }
}
.page-cta .from-wrap table .form-label_checkbox {
  display: flex;
  justify-content: center;
}
.page-cta .from-wrap .wpcf7-spinner {
  display: none;
}
.page-cta .from-wrap .page_btn {
  box-sizing: border-box;
  background-color: #E62232;
  display: block;
  color: #fff;
  font-size: 18px;
  padding: 18px 0;
  width: 315px;
  text-align: center;
  border-radius: 10px;
  letter-spacing: 0.15rem;
  cursor: pointer;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .page-cta .from-wrap .page_btn {
    width: 275px;
  }
}
.page-cta .from-wrap .page_btn:hover {
  opacity: 0.7;
}
.page-cta .wpcf7-submit {
  background-color: #E40000;
  color: white;
  padding: 10px 40px;
  border-radius: 5px;
  border: none;
  text-align: center;
  display: block;
  margin: 0 auto;
  font-size: 36px;
  cursor: pointer;
}
.page-cta .wpcf7-submit:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5);
}/*# sourceMappingURL=style.css.map */