@charset "UTF-8";
html, body {
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
}

body {
  background-color: #ececec;
}

html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
  vertical-align: bottom;
}

figure, p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

.min {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}

main {
  width: 100%;
  overflow: hidden;
}

.wrap {
  width: 81.25rem;
  margin: 0 auto;
}

.wrapw {
  margin: 0 auto;
  margin-left: 3.125rem;
  margin-right: 3.125rem;
}

.rwd_show {
  display: none;
}

@media screen and (min-width: 2000px) and (-webkit-min-device-pixel-ratio: 2) {
  body, html {
    font-size: 32px;
  }
}
@media screen and (max-width: 1550px) {
  body, html {
    font-size: 1vw;
  }
}
@media screen and (max-width: 1000px) {
  body, html {
    font-size: 3.7vw;
  }
  .rwd_show {
    display: inline;
  }
  .rwd_hide {
    display: none;
  }
  .wrapw {
    margin-left: 5vw;
    margin-right: 5vw;
  }
}
.site_header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 1.875rem 3.125rem;
  background: linear-gradient(rgba(0, 36, 81, 0.431372549), rgba(0, 36, 81, 0));
  transition: all ease 0.3s;
}
.site_header .site_header_in {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site_header .site_header_in h1 {
  width: 24.5625rem;
}
.site_header .site_header_in h1 a {
  display: flex;
}
.site_header .site_nav {
  display: flex;
  gap: 3.2em;
  align-items: center;
}
.site_header .site_nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2em;
  align-content: center;
}
.site_header .site_nav > ul > li {
  position: relative;
}
.site_header .site_nav > ul > li > a {
  display: block;
  text-decoration: none;
  color: #fff;
  transition: all ease 0.3s;
  padding: 1em 0;
}
.site_header .site_nav > ul > li > a:hover {
  opacity: 0.7;
}
.site_header .site_nav > ul > li.hasChild span {
  display: none;
}
.site_header .site_nav > ul > li > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  visibility: hidden;
  transition: all ease 0.3s;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 100%;
  width: 10em;
  margin-left: -2.9em;
  padding: 0.7em 0;
  background-color: #fff;
  transform: translate3d(0, -0.2em, 0);
}
.site_header .site_nav > ul > li > ul:before {
  content: "";
  position: absolute;
  border: 0.5em solid #fff;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top: 0;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 100%;
  width: 0;
  height: 0;
}
.site_header .site_nav > ul > li > ul li a {
  transition: all ease 0.3s;
  white-space: nowrap;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  padding: 0.5em 2em;
  padding-left: 1.5em;
  display: block;
  text-align: center;
  position: relative;
}
.site_header .site_nav > ul > li > ul li a:hover {
  color: #000;
  opacity: 0.7;
}
.site_header .site_nav > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.site_header .site_nav > ul > li.current > a {
  opacity: 0.7;
}
.site_header .header_contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(228, 51, 54, 0.7490196078);
  color: #fff;
  text-decoration: none;
  padding: 1.2em 2em;
  /*padding-right: 3em;
  /*padding-left: 1.5em;*/
  font-size: 90%;
  gap: 0.3em;
  transition: all ease 0.3s;
}
.site_header .header_contact a:before {
  content: "";
  width: 2.5em;
  height: 1.5em;
  background-image: url(../img/mail.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.site_header .header_contact a:hover {
  opacity: 0.7;
}
.site_header.hide {
  transform: translate3d(0, -100%, 0);
  opacity: 0;
}

.sp_button {
  position: absolute;
  border: 0;
  background-color: transparent;
  display: block;
  width: 7vw;
  height: 7vw;
  right: 6vw;
  top: 4vw;
  z-index: 10000;
  transition: all ease 0.3s;
  display: none;
}
.sp_button > span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transition: all ease 0.3s;
}
.sp_button > span:before {
  content: "";
  display: block;
  background-color: #fff;
  width: 100%;
  height: 1px;
  position: absolute;
  top: -2vw;
  left: 0;
  transition: all ease 0.3s;
  transform-origin: center;
}
.sp_button > span:after {
  content: "";
  display: block;
  background-color: #fff;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -2vw;
  left: 0;
  transition: all ease 0.3s;
  transform-origin: center;
}
.sp_button.open {
  transform: rotate(45deg);
}
.sp_button.open > span {
  background-color: transparent;
}
.sp_button.open > span:before {
  top: 0;
  transform: rotate(90deg);
}
.sp_button.open > span:after {
  bottom: 0;
}

@media screen and (max-width: 1000px) {
  .site_header {
    padding: 0;
  }
  .header_contact {
    width: 100%;
  }
  .site_header .site_nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 100%;
    flex-direction: column;
    background-color: #002451;
    overflow-y: auto;
    padding-top: 17vw;
    padding-left: 5vw;
    padding-right: 5vw;
    box-sizing: border-box;
    font-size: 4vw;
  }
  .site_header .site_nav > ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .site_header .site_nav > ul > li {
    border-bottom: 1px solid #fff;
    padding: 0 1em;
    padding-left: 0;
  }
  .site_header .site_nav > ul > li > a {
    padding-left: 1em;
  }
  .site_header .site_nav > ul > li:last-child {
    border-bottom: 0;
  }
  .site_nav {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
    opacity: 0;
    transition: all ease 0.3s;
  }
  .site_nav.open {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  .sp_button {
    display: block;
  }
  .site_header .site_header_in h1 a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4vw;
    text-align: left;
    max-width: 393px;
    width: 65%;
  }
  .site_header .site_nav > ul > li > ul {
    visibility: visible;
    opacity: 1;
    position: relative;
    display: block;
    bottom: auto;
    top: 0;
    left: 0;
    right: 0;
    margin-left: 0;
    background-color: transparent;
    width: auto;
    display: none;
  }
  .site_header .site_nav > ul > li > ul:before {
    display: none;
  }
  .site_header .site_nav > ul > li > ul li a {
    color: #fff;
    padding: 0.8em 0;
    -moz-text-align-last: left;
         text-align-last: left;
    font-weight: 400;
    padding-left: 1em;
    border-top: 1px dashed rgba(255, 255, 255, 0.2196078431);
  }
  .site_header .site_nav > ul > li > a:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    width: 0.4375rem;
    height: 0.4375rem;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
  }
  .site_header .site_nav > ul > li {
    padding-right: 0;
  }
  .site_header .site_nav > ul > li.hasChild {
    transition: none;
  }
  .site_header .site_nav > ul > li.hasChild > ul {
    transition: none;
  }
  .site_header .site_nav > ul > li.hasChild > a {
    position: relative;
    display: flex;
    transition: none;
  }
  .site_header .site_nav > ul > li.hasChild > a:before {
    display: none;
  }
  .site_header .site_nav > ul > li.hasChild > a span {
    display: block;
    width: 3.125rem;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    transition: all ease 0.3s;
  }
  .site_header .site_nav > ul > li.hasChild > a span:before {
    content: "";
    position: absolute;
    width: 0.9375rem;
    height: 1px;
    background-color: #fff;
    top: 0;
    right: 0.4375rem;
    transform: rotate(0);
    bottom: 0;
    margin: auto;
    border: 0;
    transform-origin: center;
    transition: all ease 0.3s;
  }
  .site_header .site_nav > ul > li.hasChild > a span:after {
    content: "";
    position: absolute;
    width: 0.9375rem;
    height: 1px;
    background-color: #fff;
    top: 0;
    right: 0.4375rem;
    transform: rotate(90deg);
    transform-origin: center;
    bottom: 0;
    margin: auto;
    border: 0;
    transform-origin: center;
    transition: all ease 0.3s;
  }
  .site_header .site_nav > ul > li.hasChild > a span.open:before {
    transform: rotate(-90deg);
  }
  .site_header .site_nav > ul > li.hasChild > a span.open:after {
    transform: rotate(0deg);
  }
}
.sb h2 {
  font-size: 300%;
}
.sb .en {
  height: 7.5rem;
}
.sb .en img {
  height: 100%;
  width: auto;
}
.sb .wrap {
  padding: 0 2.1875rem;
}

@media screen and (max-width: 1000px) {
  .sb .en {
    text-align: left;
    height: 9vw;
    top: -1vw;
    left: 5vw;
    position: relative;
    transform: rotate(0);
    transform-origin: inherit;
  }
  .sb .en img {
    width: auto;
    height: 130%;
  }
  .sb .wrap {
    padding: 0 5vw;
  }
  .wrap {
    width: auto;
    padding: 0 5vw;
  }
  .sb h2 {
    font-size: 200%;
  }
}
.lfs {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.lfs .en {
  width: 6.25rem;
  position: absolute;
  top: 3.5em;
  left: 2.1875rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  z-index: 2;
  height: 100vw;
}
.lfs .en img {
  width: 100%;
  height: auto;
}
.lfs h2 {
  position: relative;
}
.lfs .lfs_content {
  width: 50%;
  position: relative;
  background-color: #002451;
  color: #fff;
  padding: 0 9.375rem;
  padding-right: 8.75rem;
  padding-bottom: 12em;
  box-sizing: border-box;
}
.lfs .lfs_content h2 {
  padding-top: 6rem;
  font-size: 300%;
  margin-bottom: 1.5rem;
  letter-spacing: -0.05em;
}
.lfs .lfs_content p {
  line-height: 2.2;
  font-size: 110%;
  margin-bottom: 3em;
}
.lfs .lfs_bg {
  width: calc(50% + 7em);
  z-index: 2;
  margin-left: -7em;
  margin-top: 5em;
}
.lfs .lfs_bg img {
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .lfs {
    display: block;
  }
  .lfs .en {
    height: auto;
    transform: rotate(-90deg);
    transform-origin: left top;
    width: 7vw;
    top: 17vw;
    left: 5vw;
  }
  .lfs .en img {
    height: auto;
    width: 130%;
  }
  .lfs .lfs_content {
    width: auto;
    padding: 0 5vw;
    padding-bottom: 50vw;
    padding-top: 4vw;
  }
  .lfs .lfs_content h2 {
    padding-top: 4.5rem;
    font-size: 200%;
    margin-bottom: 2.5rem;
  }
  .lfs .lfs_bg {
    width: calc(100% - 10vw);
    z-index: 2;
    margin-left: 5vw;
    margin-top: -11em;
    position: relative;
  }
  .lfs .pr {
    margin-left: auto;
    margin-right: auto;
  }
  .lfs .lfs_content p {
    line-height: 1.8;
    font-size: 100%;
    margin-bottom: 2em;
  }
}
.lfss {
  position: relative;
}
.lfss .lfss_content {
  z-index: 2;
  max-width: 75rem;
  padding: 0 3.125rem;
  position: relative;
  margin: 0 auto;
}
.lfss .lfss_bg {
  width: 68%;
  margin-right: 0;
  margin-left: auto;
  margin-top: -9em;
  position: relative;
}

@media screen and (max-width: 1000px) {
  .lfss .lfss_bg {
    margin-top: 0;
    width: calc(100% - 10vw);
    right: 5vw;
  }
  .lfss .lfss_content {
    max-width: none;
    padding: 0 5vw;
  }
}
.pr {
  display: flex;
  padding: 1em 2em;
  font-size: 120%;
  text-decoration: none;
  color: #fff;
  background-color: #00aeff;
  gap: 0.7em;
  text-align: center;
  width: 11em;
  justify-content: center;
  transition: all ease 0.3s;
}
.pr:after {
  content: "";
  width: 1.7em;
  height: 1.5em;
  background-image: url(../img/pointer_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all ease 0.3s;
}
.pr:hover {
  background-color: rgba(0, 174, 255, 0.5019607843);
}
.pr:hover:after {
  transform: translate3d(0.2em, 0, 0);
}

@media screen and (max-width: 1000px) {
  .pr:after {
    width: 1.2em;
  }
}
.prr {
  display: flex;
  border: none;
  padding: 1em 2em;
  font-size: 100%;
  text-decoration: none;
  color: #fff;
  outline: none;
  background-color: rgba(228, 51, 54, 0.7490196078);
  gap: 0.7em;
  text-align: center;
  justify-content: center;
  font-family: inherit;
  cursor: pointer;
}
.prr:after {
  content: "";
  width: 1.7em;
  height: 1.5em;
  background-image: url(../img/pointer_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.bgg {
  background-image: url(../img/top/bgg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  color: #fff;
  background-color: #dde1e6;
}

.site_links {
  display: flex;
}
.site_links a {
  display: flex;
  height: 23vw;
  padding-top: 9vw;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  justify-content: center;
  color: #fff;
  flex: 1;
  position: relative;
}
.site_links a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  position: absolute;
  transition: all ease 0.3s;
}
.site_links a > div {
  position: relative;
}
.site_links a:first-child {
  background-image: url(../img/link_rec.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.site_links a:last-child {
  background-image: url(../img/link_contact.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.site_links a button {
  transition: all ease 0.3s;
}
.site_links a button:after {
  transition: all ease 0.3s;
}
.site_links a:hover:before {
  background-color: rgba(0, 0, 0, 0.7);
}
.site_links a:hover button {
  background-color: #e43336;
}
.site_links a:hover button:after {
  transform: translate3d(0.2em, 0, 0);
}
.site_links a .site_links_in {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
}
.site_links a .site_links_in h3 {
  font-size: 300%;
}
.site_links a .site_links_inb {
  display: flex;
  gap: 2em;
  justify-content: center;
  margin-top: 1em;
}
.site_links .prrm:before {
  content: "";
  width: 2.5em;
  height: 1.5em;
  background-image: url(../img/mail.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.site_links .prrm:after {
  display: none;
}

@media screen and (max-width: 1000px) {
  .site_links {
    flex-direction: column;
    gap: 0.5em;
    padding-bottom: 0.5em;
  }
  .site_links a .site_links_in {
    display: block;
  }
  .site_links a .site_links_in h3 {
    font-size: 150%;
  }
  .site_links a {
    height: 56vw;
    padding-top: 0;
    flex: auto;
    align-items: center;
  }
  .site_links a button {
    margin: 0 auto;
    margin-top: 0.5em;
  }
}
.site_footer {
  background-color: #002451;
  color: #fff;
  text-decoration: none;
  padding-top: 6em;
}
.site_footer .site_footer_in {
  padding: 0 4.6875rem;
}
.site_footer .site_footer_logo {
  width: 27%;
  margin-bottom: 3em;
}
.site_footer .site_footer_map {
  margin-bottom: 5em;
  display: flex;
}
.site_footer .site_footer_map > div {
  flex: 1;
}
.site_footer .site_footer_map > div iframe {
  width: 35rem;
  aspect-ratio: 560/250;
}
.site_footer .site_footer_map > div > div {
  line-height: 2;
}
.site_footer .footer_nav {
  margin-bottom: 5em;
}
.site_footer .footer_nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
}
.site_footer .footer_nav > ul > li ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 1em;
  display: flex;
  flex-direction: column;
}
.site_footer .footer_nav > ul > li ul li {
  margin-top: 1em;
}
.site_footer .footer_nav > ul a {
  text-decoration: none;
  color: #fff;
  opacity: 1;
  transition: all ease 0.3s;
}
.site_footer .footer_nav > ul a:before {
  content: "・";
  margin-right: 0.3em;
}
.site_footer .footer_nav > ul a:hover {
  opacity: 0.7;
}
.site_footer .copy {
  text-align: right;
  font-size: 77%;
  padding: 1em 4em;
}

@media screen and (max-width: 1000px) {
  .site_footer .site_footer_map {
    flex-direction: column;
    gap: 3em;
  }
  .site_footer .site_footer_map > div iframe {
    width: 100%;
    aspect-ratio: 560/250;
  }
  .site_footer {
    padding-top: 4em;
  }
  .site_footer .site_footer_in {
    padding: 0 5vw;
  }
  .site_footer .site_footer_logo {
    width: 66%;
    margin-bottom: 2em;
  }
  .site_footer .footer_nav > ul > li ul li {
    margin-top: 0;
  }
  .site_footer .footer_nav > ul {
    flex-direction: column;
  }
  .site_footer .footer_nav > ul > li {
    margin-bottom: 1em;
  }
  .site_footer .footer_nav > ul > li > a {
    display: block;
    padding: 1.5em 0;
    border-bottom: 1px solid #fff;
  }
  .site_footer .footer_nav > ul > li > ul > li {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2705882353);
  }
  .site_footer .footer_nav > ul > li > ul > li a {
    display: block;
    padding: 1em 0;
  }
  .site_footer .footer_nav > ul > li > ul > li:last-child {
    border: 0;
  }
}
.mv {
  position: relative;
}
.mv .mv_in {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.mv .mv_in h2 {
  font-size: 400%;
  margin-bottom: 1.875rem;
}
.mv .mv_in p {
  line-height: 2.2;
  font-size: 110%;
  margin-bottom: 2em;
}
.mv > img {
  width: 100%;
}
.mv .mv_more {
  position: relative;
  text-decoration: none;
}
.mv .mv_more span {
  display: flex;
  padding: 1em 2em;
  font-size: 120%;
  text-decoration: none;
  color: #fff;
  background-color: rgba(0, 174, 255, 0.5019607843);
  gap: 0.7em;
  transition: all ease 0.3s;
	border: solid 1px #fff;
}
.mv .mv_more span i {
  display: block;
  width: 1.7em;
  height: 1.5em;
}
.mv .mv_more span i:before {
  display: block;
  content: "";
  width: 1.7em;
  height: 1.5em;
  background-image: url(../img/hand.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all ease 0.3s;
}
.mv .mv_more:hover:before {
  transform: scaleX(0);
}
.mv .mv_more:hover:after {
  transform: scaleX(0);
}
.mv .mv_more:hover span {
  background-color: #00aeff;
}
.mv .mv_more:hover span i:before {
  transform: translate3d(0, 0, 0);
}
.mv .mv_more:hover span:before {
  height: 0;
}
.mv .mv_more:hover span:after {
  height: 0;
}
.mv.mvP .mv_in {
  top: 33%;
}
.mv.mvP .mv_in h2 {
  font-size: 320%;
}
.mv.mvPU.mv.mvP {
  background-color: #002451;
  height: 25vw;
}
.mv.mvPU.mv.mvP .mv_in h2 {
  font-size: 250%;
}
.mv.mvPU.mv.mvP .mv_in {
  top: 36%;
}
@media screen and (max-width: 1000px) {
  .mv > figure {
    height: 109vw;
  }
  .mv > figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .mv .mv_in {
    top: 28vw;
  }
  .mv .mv_in h2 {
    font-size: 200%;
  }
  .mv {
    overflow: hidden;
  }
  .mv > img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 113vw;
  }
  .mv .mv_in p {
    line-height: 1.7;
    margin-left: 5vw;
    margin-right: 5vw;
    font-size: 100%;
  }
  .mv.mvP .mv_in {
    top: 40%;
  }
  .mv.mvP .mv_in h2 {
    font-size: 250%;
  }
  .mv.mvP .mv_in figure {
    height: 11vw;
  }
  .mv.mvP .mv_in figure img {
    width: auto;
    height: 100%;
  }
  .mv.mvP > img {
    height: 85vw;
  }
  .mv.mvPU.mv.mvP {
    height: 60vw;
  }
  .mv.mvPU.mv.mvP .mv_in h2 {
    font-size: 200%;
  }
}
.sbAbout {
  position: relative;
  padding-top: 3.5em;
  padding-bottom: 11em;
}

@media screen and (max-width: 1000px) {
  .sbAbout {
    padding-top: 0;
    padding-bottom: 6em;
  }
}
.sbComInfo {
  padding: 3em 0;
  text-align: right;
  padding-right: 2.1875rem;
}
.sbComInfo .en img {
  height: 100%;
  width: auto;
}
.sbComInfo h2 {
  margin-bottom: 2rem;
}
.sbComInfo p {
  margin-right: 1rem;
}
.sbComInfo .sbComInfo_fig {
  margin-left: 0;
  width: 62%;
  margin-top: -14vw;
}

@media screen and (max-width: 1000px) {
  .sbComInfo {
    padding-bottom: 3em;
  }
}
@media screen and (max-width: 1000px) {
  .sbComInfo > div {
    position: relative;
    z-index: 2;
  }
  .sbComInfo .en {
    text-align: left;
    height: 10vw;
    width: auto;
    top: 17vw;
    left: 5vw;
    top: -1vw;
    left: 5vw;
    position: relative;
    transform: rotate(0);
    transform-origin: inherit;
  }
  .sbComInfo .en img {
    width: auto;
    height: 100%;
  }
  .sbComInfo h2 {
    font-size: 200%;
    text-align: left;
    padding-left: 5vw;
  }
  .sbComInfo .sbComInfo_fig {
    width: 150%;
    margin-top: 7vw;
  }
  .sbComInfo p {
    padding-right: 0;
    padding-left: 5vw;
    text-align: left;
  }
}
.sbFactory {
  position: relative;
  padding: 2.1875rem 0;
  text-align: left;
  padding-left: 2.8125rem;
  padding-top: 9em;
  padding-bottom: 9rem;
  color: #fff;
}
.sbFactory .en img {
  height: 120%;
  width: auto;
}
.sbFactory h2 {
  margin-bottom: 2rem;
}
.sbFactory .sbFactory_fig {
  width: 61%;
  position: absolute;
  top: -12vw;
  right: 0;
}
.sbFactory .factories {
  display: flex;
  gap: 3em;
  list-style: none;
  padding: 0;
  justify-content: center;
  margin: 0 auto;
  max-width: 78.125rem;
  gap: 6.25rem;
}
.sbFactory .factories li a {
  display: block;
  border: 1px solid #fff;
  position: relative;
}
.sbFactory .factories li a > div {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 1rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.sbFactory .factories li a figure {
  overflow: hidden;
}
.sbFactory .factories li a figure img {
  transition: all ease 0.3s;
}
.sbFactory .factories li a button {
  transition: all ease 0.3s;
}
.sbFactory .factories li a button:after {
  transition: all ease 0.3s;
}
.sbFactory .factories li a:hover button {
  background-color: rgba(229, 52, 55, 0.5019607843);
}
.sbFactory .factories li a:hover button:after {
  transform: translate3d(0.2em, 0, 0);
}
.sbFactory .factories li a:hover figure img {
  transform: scale(1.05);
}
.sbFactory .factories button:after {
  content: "";
  width: 1.3em;
  height: 1.5em;
  background-image: url(../img/pointer_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.sbFactory.sbFactoryP {
  background-image: url(../img/strength/info_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 4em;
}

@media screen and (max-width: 1000px) {
  .sbFactory .factories {
    flex-direction: column;
    gap: 3em;
  }
  .sbFactory .sbFactory_fig {
    width: 88%;
    top: -28vw;
  }
  .sbFactory {
    padding-top: 5em;
    padding-left: 0;
    padding-bottom: 6rem;
  }
  .sbFactory > div {
    position: relative;
    z-index: 2;
  }
  .sbFactory h2 {
    padding-left: 5vw;
    font-size: 180%;
    margin-bottom: 4rem;
  }
  .sbFactory .factories {
    padding: 0 5vw;
  }
  .sbFactory .factories li a button {
    padding: 0.6em 1em;
  }
}
.sbMachine {
  text-align: center;
  padding-bottom: 7em;
}
.sbMachine .en img {
  height: 100%;
  width: auto;
}
.sbMachine .pr {
  width: 15em;
  padding-left: 0;
  padding-right: 0;
  margin: 0 auto;
  margin-top: 2em;
}

@media screen and (max-width: 1000px) {
  .sbMachine.sb .en {
    left: 0;
  }
}
.sbProduction {
  padding-top: 9em;
  padding-bottom: 10em;
  position: relative;
}
.sbProduction .lfs_content {
  padding-bottom: 0;
  margin-bottom: 4em;
}
.sbProduction .lfs_content h2 {
  padding: 1em 0;
  margin-bottom: 0;
}
.sbProduction .production_list {
  list-style: none;
  padding: 0;
  margin: 0 9.375rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  row-gap: 5em;
}
.sbProduction .production_list li {
  flex: 0 1 calc((100% - 6em) / 4);
}
.sbProduction .production_list li > * {
  display: block;
  text-decoration: none;
  color: #000;
}
.sbProduction .production_list li > * figure {
  margin-bottom: 2em;
  overflow: hidden;
}
.sbProduction .production_list li > * figure img {
  transition: all ease 0.3s;
}
.sbProduction .production_list li > * time {
  font-size: 80%;
  display: block;
  margin-bottom: 0.5em;
  transition: all ease 0.3s;
}
.sbProduction .production_list li > * p {
  font-weight: 500;
  transition: all ease 0.3s;
}

@media screen and (max-width: 1000px) {
  .sbProduction .production_list {
    margin: 0 5vw;
    gap: 1em;
    row-gap: 3em;
  }
  .sbProduction .production_list li {
    flex: 0 1 calc((100% - 1em) / 2);
  }
  .sbProduction .lfs_content {
    margin-bottom: 2em;
  }
  .sbProduction .production_list li figure {
    margin-bottom: 1em;
  }
  .sbProduction {
    padding-top: 0;
    padding-bottom: 5em;
  }
  .sbProduction .lfs_content {
    padding-top: 3em;
  }
  .sbProduction.lfs .en {
    top: 16vw;
  }
}
.slider {
  width: 100%;
  overflow: hidden;
  margin-bottom: 0.5em;
}
.slider .slider_in {
  display: flex;
  gap: 0.5em;
}
.slider .slider_in * {
  transform: skew(-15deg);
  overflow: hidden;
}
.slider .slider_in * img {
  transform: skew(15deg) scale(1.2);
}

.sbBusiness {
  position: relative;
  padding-top: 3.5em;
  padding-bottom: 7em;
}
.sbBusiness .lfs_content h2 {
  padding-top: 9rem;
}
@media screen and (max-width: 1000px) {
  .sbBusiness {
    padding-top: 0;
    padding-bottom: 3em;
  }
  .sbBusiness .lfs_content h2 {
    padding-top: 4rem;
  }
}
.sbProducts {
  padding-top: 2em;
  overflow: hidden;
}

.sbProducts_list {
  margin-top: 3.5em;
  margin-left: 8.125rem;
  margin-right: 8.125rem;
}
.sbProducts_list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5em;
}
.sbProducts_list ul li {
  position: relative;
  padding: 3em 5em;
  padding-left: 9em;
  padding-right: 4em;
  color: #fff;
  display: flex;
  gap: 6em;
}
.sbProducts_list ul li figure {
  flex: 0 1 36%;
}
.sbProducts_list ul li > div {
  flex: 1;
  position: relative;
}
.sbProducts_list ul li > div header {
  margin-top: 1.5em;
  margin-bottom: 2.5em;
  display: flex;
  gap: 2em;
  align-items: center;
}
.sbProducts_list ul li > div header h3 {
  font-size: 220%;
  padding-left: 0.5em;
  border-left: 0.2em solid #00aeff;
  font-weight: 600;
  font-weight: 500;
}
.sbProducts_list ul li > div header small {
  font-weight: 500;
  font-size: 100%;
}
.sbProducts_list ul li > div h4 {
  font-size: 150%;
  color: #00aeff;
  font-weight: 500;
  margin-bottom: 1em;
  line-height: 1.7;
}
.sbProducts_list ul li > div p {
  line-height: 2;
  margin-bottom: 1em;
  margin-right: 3em;
}
.sbProducts_list ul li > div .pr {
  width: 15em;
  padding-left: 0;
  padding-right: 0;
  margin-left: 6em;
  position: absolute;
  border: 0;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 3em;
}
.sbProducts_list ul li:nth-child(2n+1):before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background-color: #002451;
}
.sbProducts_list ul li:nth-child(2n):before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  background-color: #002451;
}

@media screen and (max-width: 1000px) {
  .sbProducts.sb .en {
    left: 0;
  }
  .sbProducts_list {
    margin-top: 2.5em;
    margin-left: 0;
    margin-right: 0;
  }
  .sbProducts_list ul li {
    padding: 5vw;
    flex-direction: column;
    gap: 0;
    padding-bottom: 10vw;
  }
  .sbProducts_list ul li figure {
    flex: auto;
  }
  .sbProducts_list ul li > div header {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .sbProducts_list ul li > div header small {
    padding-left: 6vw;
  }
  .sbProducts_list ul li > div header h3 {
    font-size: 180%;
  }
  .sbProducts_list ul li > div h4 {
    font-size: 130%;
  }
  .sbProducts_list ul li > div .pr {
    position: relative;
    bottom: auto;
    width: auto;
  }
  .sbProducts_list ul li:nth-child(2n+1):before {
    width: 100%;
  }
  .sbProducts_list ul li:nth-child(2n):before {
    width: 100%;
  }
  .sbProducts_list ul li > div header {
    margin-bottom: 1rem;
  }
  .sbProducts_list ul {
    gap: 2em;
  }
  .sbProducts_list ul li > div p {
    margin-right: 0;
  }
}
.sbMachiery {
  padding-top: 9em;
  overflow: hidden;
  padding-bottom: 6em;
  position: relative;
}
.sbMachiery > .wrapw {
  position: relative;
  z-index: 2;
}
.sbMachiery:after {
  content: "";
  display: block;
  width: 63%;
  height: 68%;
  background-image: url(../img/strength/sbg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  right: 0;
  top: 10em;
}
.sbMachiery .swiper {
  overflow: visible;
  margin-left: 13.5rem;
}
.sbMachiery .swiper-slide {
  margin-top: 4em;
  background-color: #fff;
  padding: 1.3em;
  box-sizing: border-box;
  box-shadow: 0.5em 0.5em 1em rgba(0, 0, 0, 0.2);
  padding-bottom: 3em;
}
.sbMachiery .swiper-slide figure {
  margin-bottom: 1em;
}
.sbMachiery .swiper-slide h3 {
  font-size: 185%;
  font-weight: 400;
  margin-bottom: 0.3em;
}
.sbMachiery .swiper-slide p {
  font-size: 130%;
}
.sbMachiery .swiper-button-next, .sbMachiery .swiper-button-prev {
  top: 6em;
  left: auto;
  border-radius: 100%;
  background-color: rgba(0, 174, 255, 0.7019607843);
  width: 5rem;
  height: 5rem;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  z-index: 2;
  transition: all ease 0.3s;
}
.sbMachiery .swiper-button-next:hover, .sbMachiery .swiper-button-prev:hover {
  transform: scale(1.05);
}
.sbMachiery .swiper-button-next {
  right: 5em;
}
.sbMachiery .swiper-button-next:after {
  content: "";
  display: block;
  width: 0.6em;
  height: 1em;
  background-image: url(../img/pointer_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.sbMachiery .swiper-button-prev {
  right: 12em;
}
.sbMachiery .swiper-button-prev:after {
  content: "";
  display: block;
  width: 0.6em;
  height: 1em;
  background-image: url(../img/pointer_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(180deg);
}

@media screen and (max-width: 1000px) {
  .sbMachiery {
    padding-top: 5em;
  }
  .sbMachiery .swiper {
    margin-left: 0;
  }
  .sbMachiery .swiper-slide {
    padding: 0.7em;
    padding-bottom: 1em;
  }
  .sbMachiery .swiper-slide h3 {
    font-size: 130%;
  }
  .sbMachiery .swiper-slide p {
    font-size: 100%;
  }
  .sbMachiery .swiper-slide figure {
    margin-bottom: 0.7em;
  }
  .sbMachiery .swiper-button-next, .sbMachiery .swiper-button-prev {
    top: 2.5em;
    width: 3rem;
    height: 3rem;
  }
  .sbMachiery .swiper-button-prev {
    right: 5.5em;
  }
  .sbMachiery .swiper-button-next {
    right: 1.5em;
  }
  .sbMachiery:after {
    height: 82%;
    width: 50%;
    top: 5em;
  }
  .sbMachiery.sb .en {
    left: 0;
  }
}
.achivement_list {
  margin-left: 6.25rem;
  margin-right: 6.25rem;
  padding-top: 6em;
  padding-bottom: 4em;
}
.achivement_list ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 6.875rem;
  flex-wrap: wrap;
}
.achivement_list ul li {
  flex: 0 1 calc((100% - 6.875rem) / 2);
}
.achivement_list ul li > * {
  display: block;
  text-decoration: none;
  color: #000;
}
.achivement_list ul li > * figure {
  margin-bottom: 1.5em;
}
.achivement_list ul li > * > div time {
  font-size: 155%;
}
.achivement_list ul li > * > div p {
  font-size: 195%;
  font-weight: 500;
}

@media screen and (max-width: 1000px) {
  .achivement_list {
    margin-left: 5vw;
    margin-right: 5vw;
  }
  .achivement_list {
    padding-top: 3em;
  }
  .achivement_list ul {
    gap: 1em;
    row-gap: 3em;
  }
  .achivement_list ul li {
    flex: 0 1 calc((100% - 1em) / 2);
  }
  .achivement_list ul li > * > div p {
    font-size: 100%;
  }
  .achivement_list ul li > * > div time {
    font-size: 80%;
  }
  .achivement_list ul li > * figure {
    margin-bottom: 1em;
  }
}
.sbPerformance {
  padding-top: 4em;
  padding-bottom: 4em;
}
.sbPerformance .sbPerformance_list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 2em;
}
.sbPerformance .sbPerformance_list li {
  border-bottom: 1px solid #c8c8c8;
}
.sbPerformance .sbPerformance_list li:hover {
  cursor: pointer;
}
.sbPerformance .sbPerformance_list_index {
  padding: 3em 2em;
  padding-bottom: 1.9em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sbPerformance .sbPerformance_list_index p {
  color: #002451;
  font-weight: 600;
  font-size: 200%;
}
.sbPerformance .sbPerformance_list_index button {
  display: block;
  width: 3.4375rem;
  height: 1.5625rem;
  background-color: transparent;
  border: 0;
  outline: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.sbPerformance .sbPerformance_list_index button:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/pointer_bottom.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.sbPerformance li.open button {
  transform: rotate(180deg);
}
.sbPerformance .sbPerformance_list_content {
  padding: 0 2em;
  padding-bottom: 3em;
  display: none;
}
.sbPerformance .sbPerformance_list_content table {
  width: 100%;
  color: #002451;
  border-collapse: collapse;
}
.sbPerformance .sbPerformance_list_content table td {
  border-bottom: 1px dashed #002451;
  padding: 0.8em 2rem;
  font-weight: 500;
}
.sbPerformance .sbPerformance_list_content table th {
  padding: 0.5em 2rem;
  font-size: 145%;
}
.sbPerformance .sbPerformance_list_content table tr td:first-child {
  padding-left: 0;
}
.sbPerformance .sbPerformance_list_content table tr th:first-child {
  padding-left: 0;
  width: 41%;
}
.sbPerformance .sbPerformance_list_content table tr th:nth-child(2) {
  width: 26%;
}
.sbPerformance .sbPerformance_list_content table tr:last-child td {
  border-bottom: 0;
}

@media screen and (max-width: 1000px) {
  .sbPerformance.sb .en {
    left: 0;
  }
  .sbPerformance .sbPerformance_list_index {
    padding: 2em 1em;
    padding-left: 0;
  }
  .sbPerformance .sbPerformance_list_index p {
    font-size: 180%;
  }
  .sbPerformance .sbPerformance_list_content {
    padding: 0;
    overflow-x: auto;
    margin-right: -5vw;
  }
  .sbPerformance .sbPerformance_list_content table {
    width: 50rem;
  }
  .sbPerformance .sbPerformance_list_content table th {
    font-size: 120%;
    white-space: nowrap;
  }
  .sbPerformance .sbPerformance_list_index button {
    width: 1.5em;
  }
  .sbPerformance .sbPerformance_list_content table tr th:first-child {
    width: 14em;
  }
}
.sbCompany {
  padding-bottom: 10em;
  padding-top: 3em;
}
.sbCompany .lfss_desc {
  background-color: #002451;
  color: #fff;
  padding: 2em 3em;
  position: absolute;
  bottom: -3em;
  left: -29%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30em;
  box-sizing: border-box;
  z-index: 3;
}
.sbCompany .lfss_desc .lfss_desc_in > p {
  margin-bottom: 1em;
}
.sbCompany .lfss_desc .lfss_desc_in > div {
  display: flex;
  align-items: center;
  gap: 2em;
}
.sbCompany .lfss_desc .lfss_desc_in > div p {
  font-size: 185%;
}
.sbCompany .lfss_desc .lfss_desc_in > div small {
  display: block;
  color: #00aeff;
  font-size: 110%;
}
.sbCompany .lfss_bg {
  margin-bottom: 8em;
}
.sbCompany .lfss_content_bottom {
  max-width: 75rem;
  padding: 0 3.125rem;
  position: relative;
  margin: 0 auto;
margin-top: 5em;
  /*display: flex;
  gap: 3em;*/
}
.sbCompany .lfss_content_bottom > div:first-child {
  flex: 1;
}
.sbCompany .lfss_content_bottom > div:last-child {
  flex: 0 1 50%;
}
.sbCompany .lfss_content_bottom > div:last-child p {
  line-height: 2.5;
}
.sbCompany .lfss_content_bottom h3 {
  font-size: 285%;
  font-weight: 500;
  color: #002451;
}

@media screen and (max-width: 1000px) {
  .sbCompany.sb .en {
    left: 0;
  }
  .sbCompany.lfss .lfss_content {
    margin-bottom: 1em;
  }
  .sbCompany .lfss_desc {
    position: relative;
    width: auto;
    bottom: 0;
    left: 0;
  }
  .sbCompany .lfss_bg {
    margin-bottom: 3em;
  }
  .sbCompany .lfss_content_bottom {
    max-width: none;
    flex-direction: column;
    gap: 1em;
    padding: 0 5vw;
  }
  .sbCompany .lfss_content_bottom h3 {
    font-size: 180%;
  }
}
.sbOutline {
  margin-top: -4em;
  padding-bottom: 8em;
}
.sbOutline .lfss_image {
  margin-left: calc((100% - 75rem) / 2);
  margin-bottom: 5em;
}
.sbOutline .lfss_image img {
  width: 100%;
}
.sbOutline .sbOutline_table {
  margin-top: 5em;
}
.sbOutline .sbOutline_table table {
  width: 100%;
  border-collapse: collapse;
}
.sbOutline .sbOutline_table table th {
  color: #00aeff;
  border-top: 1px solid #dee1e5;
  padding: 1em 0;
  font-size: 145%;
  -moz-text-align-last: left;
       text-align-last: left;
  width: 20%;
  vertical-align: top;
}
.sbOutline .sbOutline_table table td {
  border-top: 1px solid #dee1e5;
  padding: 1em 0;
  font-size: 145%;
  font-weight: 500;
  line-height: 1.7;
}

@media screen and (max-width: 1000px) {
  .sbOutline.sb .en {
    left: 0;
  }
  .sbOutline .sbOutline_table {
    margin-top: 2em;
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .sbOutline .sbOutline_table tr {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0.5em;
  }
  .sbOutline .sbOutline_table tr td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding-top: 0.5em;
  }
  .sbOutline .sbOutline_table tr th {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border-top: 0;
    padding-bottom: 0.5em;
  }
  .sbOutline .sbOutline_table table th {
    font-size: 110%;
  }
  .sbOutline .sbOutline_table table td {
    font-size: 110%;
  }
  .sbOutline {
    padding-bottom: 4em;
  }
}
.sbMachine {
  text-align: center;
  padding-bottom: 7em;
}
.sbMachine .en img {
  height: 108%;
  width: auto;
}
.sbMachine .pr {
  width: 15em;
  padding-left: 0;
  padding-right: 0;
  margin: 0 auto;
  margin-top: 2em;
}

.sbHistory {
  padding-bottom: 3em;
  background-color: #dee1e5;
}
.sbHistory .lfss_image {
  margin-left: calc((100% - 75rem) / 2);
  margin-bottom: 5em;
  position: relative;
}
.sbHistory .lfss_image img {
  width: 100%;
  position: relative;
  z-index: 2;
}
.sbHistory .lfss_image:before {
  content: "";
  display: block;
  width: 100vw;
  height: 50%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ececec;
}
.sbHistory .sbHistory_list {
  max-width: 50em;
  margin: 0 auto;
  margin-top: 5em;
}
.sbHistory .sbHistory_list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sbHistory .sbHistory_list ul li {
  margin: 5em 0;
  margin: 0;
  padding-bottom: 5em;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 7em;
  color: #002451;
  position: relative;
}
.sbHistory .sbHistory_list ul li > p {
  position: relative;
  font-size: 200%;
  line-height: 1;
  padding-left: 2em;
  margin-top: 0.1em;
}
.sbHistory .sbHistory_list ul li > p:before {
  content: "";
  background-color: #52acfc;
  position: absolute;
  border-radius: 100%;
  left: 0;
  top: 0.2em;
  width: 1.6875rem;
  height: 1.6875rem;
  z-index: 2;
}
.sbHistory .sbHistory_list ul li:after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  left: calc(0.9375rem - 2px);
  top: 0.9375rem;
  background-color: #fff;
}
.sbHistory .sbHistory_list ul li > div p {
  font-size: 135%;
  line-height: 2;
}
.sbHistory .sbHistory_list ul li:last-child:after {
  display: none;
}

@media screen and (max-width: 1000px) {
  .sbHistory .lfss_image {
    width: 100%;
    margin: 0;
    margin-bottom: 3em;
  }
  .sbHistory.sb .en {
    left: 0;
  }
  .sbHistory .sbHistory_list {
    margin-top: 2em;
  }
  .sbHistory .sbHistory_list ul li {
    flex-direction: column;
    gap: 1em;
  }
  .sbHistory .sbHistory_list ul li > div {
    padding-left: 2.5em;
  }
  .sbHistory .sbHistory_list ul li > p {
    font-size: 160%;
    padding-left: 1.5em;
  }
  .sbHistory .sbHistory_list ul li > div p {
    font-size: 120%;
  }
  .sbHistory .sbHistory_list ul li > div p br {
    display: none;
  }
}
.sbHatsushima {
  padding-top: 4.5em;
  padding-bottom: 7em;
}
.sbHatsushima .en {
  top: 4.5em;
}
.sbHatsushima.lfs .lfs_content p {
  padding-right: 6em;
}
.sbHatsushima.lfs .lfs_bg {
  margin-top: 6em;
}
.sbHatsushima.lfs .lfs_content {
  padding-bottom: 6em;
}

.factory_images {
  display: grid;
  grid-template-columns: 1fr 1fr 16.4% 1fr 1fr;
  gap: 1px;
}
.factory_images p {
  overflow: hidden;
}
.factory_images p img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.factory_images p:nth-child(2) {
  grid-row: 1/3;
  grid-column: 2/3;
}
.factory_images p:nth-child(8) {
  grid-row: 2/4;
  grid-column: 4/5;
}

@media screen and (max-width: 1000px) {
  .sbHatsushima {
    padding-top: 0;
	padding-bottom: 5em;
  }
  .sbHatsushima.lfs .lfs_content p {
    padding: 0;
  }
  .sbHatsushima.lfs .lfs_content {
    padding-bottom: 2em;
  }
  .sbHatsushima.lfs .lfs_bg {
    margin-top: -2em;
  }
}
.sbKoto {
  padding-top: 4.5em;
  margin-bottom: 7em;
}
.sbKoto .sbKoto_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sbKoto .sbKoto_list li {
  display: flex;
  gap: 0.5em;
  align-items: flex-start;
}
.sbKoto .sbKoto_list li b {
  display: flex;
  line-height: 2.3;
  align-items: center;
}
.sbKoto .sbKoto_list li b:before {
  content: "";
  display: inline-block;
  width: 2.0625rem;
  height: 1.875rem;
  background-image: url(../img/koto/check.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 0.5em;
}
.sbKoto .sbKoto_list li p {
  flex: 1;
  margin-bottom: 0;
}
.sbKoto.lfs .lfs_bg figure:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 33%;
}

.factory_images {
  display: block;
}
.factory_images p {
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .sbKoto {
    padding-top: 0;
  }
.sbKoto .sbKoto_list li b {
  line-height: 1.8;
}
  .sbKoto .sbKoto_list li b:before {
    width: 5vw;
    height: 5vw;
  }
  .sbKoto.lfs .lfs_bg figure:nth-child(2) {
    width: 73%;
    bottom: -13vw;
    width: 63%;
    right: -5vw;
  }
}
.mvPU_contents {
  max-width: 81.25rem;
  padding: 0 3.125rem;
  position: relative;
  margin: 0 auto;
  padding-top: 7em;
  padding-bottom: 12em;
}
.mvPU_contents h3 {
  text-align: center;
  font-size: 230%;
  margin-bottom: 3em;
}
.mvPU_contents p {
  font-size: 150%;
  font-weight: 500;
  line-height: 2;
}

.mvPU_contents_privacy {
  padding-top: 8em;
}
.mvPU_contents_privacy p {
  font-size: 110%;
}

.mvPU_contents_privacy_sign {
  font-size: 100%;
  margin-top: 6em;
}

@media screen and (max-width: 1000px) {
  .mvPU_contents h3 {
    font-size: 150%;
    margin-bottom: 1.5em;
  }
  .mvPU_contents {
    max-width: none;
    padding: 0 5vw;
    padding-top: 3em;
    padding-bottom: 4em;
  }
  .mvPU_contents p {
    font-size: 100%;
  }
}
.sbRecruit.lfs {
  position: relative;
  padding-top: 5vw;
  padding-bottom: 3em;
}
.sbRecruit.lfs .lfs_content {
  padding-bottom: 7em;
}
.sbRecruit.lfs .lfs_bg {
  width: calc(50% + 5em);
  z-index: 2;
  margin-left: -5em;
  margin-top: 5em;
}
.sbRecruit.lfs .en {
  top: 5em;
}

@media screen and (max-width: 1000px) {
  .sbRecruit.lfs {
    padding-top: 0;
  }
  .sbRecruit.lfs .lfs_bg {
    width: calc(100% - 10vw);
    z-index: 2;
    margin-left: 5vw;
    margin-top: -11em;
    position: relative;
    margin-top: -7em;
  }
}
.sbRecruit_content {
  padding-top: 2em;
  overflow: hidden;
  padding-bottom: 7em;
}
.sbRecruit_content .sbRecruit_content_in {
  width: 75rem;
  padding: 3.75rem 5rem;
  background-color: #fff;
  margin: 0 auto;
  margin-top: 3em;
  box-sizing: border-box;
}
.sbRecruit_content .sbRecruit_content_in > div {
  margin-bottom: 6em;
  font-weight: 500;
}
.sbRecruit_content .sbRecruit_content_in > div h3 {
  font-size: 230%;
  margin-bottom: 1em;
}
.sbRecruit_content .sbRecruit_content_in > div:last-child {
  margin-bottom: 0;
}
.sbRecruit_content .rec_decs table {
  width: 100%;
  border-collapse: collapse;
}
.sbRecruit_content .rec_decs table th {
  color: #00aeff;
  font-size: 150%;
  padding: 1em 0;
  border-bottom: 1px solid #333333;
  -moz-text-align-last: left;
       text-align-last: left;
  width: 24%;
  vertical-align: top;
}
.sbRecruit_content .rec_decs table td {
  font-size: 140%;
  padding: 1em 0;
  border-bottom: 1px solid #333333;
  line-height: 1.8;
}
.sbRecruit_content .rec_decs table .rec_desc_ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sbRecruit_content .rec_decs table .rec_desc_ul li {
  padding-left: 1em;
}
.sbRecruit_content .rec_decs table .rec_desc_ul li:before {
  content: "・";
  margin-left: -1em;
}
.sbRecruit_content .rec_decs table .rec_p_desc {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sbRecruit_content .rec_decs table .rec_p_desc li {
  display: flex;
}
.sbRecruit_content .rec_decs table .rec_p_desc li span {
  flex: 0 1 6em;
}
.sbRecruit_content .rec_decs table .rec_p_desc li p {
  flex: 1;
}
.sbRecruit_content .rec_request p {
  line-height: 2;
  font-size: 130%;
}
.sbRecruit_content .rec_request ol {
  margin-top: 4em;
  margin-left: -1em;
}
.sbRecruit_content .rec_request ol li {
  margin-bottom: 1em;
  font-size: 130%;
}
.sbRecruit_content .rec_request ol li:last-child {
  margin-bottom: 0;
}
.sbRecruit_content .rec_contact h3 {
  margin-bottom: 1em;
}
.sbRecruit_content .rec_contact > div {
  border: 1px solid #333333;
  padding: 3em 4em;
}
.sbRecruit_content .rec_contact table {
  width: 100%;
  border-collapse: collapse;
}
.sbRecruit_content .rec_contact table th {
  color: #00aeff;
  font-size: 130%;
  vertical-align: top;
  width: 24%;
  text-align: left;
}
.sbRecruit_content .rec_contact table td {
  font-size: 130%;
  line-height: 1.7;
}
.sbRecruit_content .rec_contact table td a {
  color: #000;
  text-decoration: none;
}
.sbRecruit_content .rec_contact table td hr {
  border: 0;
  border-bottom: 1px dashed #333333;
  margin: 1em 0;
}

@media screen and (max-width: 1000px) {
  .sbRecruit_content.sb .en {
    left: 0;
  }
  .sbRecruit_content .sbRecruit_content_in {
    width: auto;
    padding: 1em;
  }
  .sbRecruit_content .sbRecruit_content_in {
    margin-top: 2em;
  }
.sbRecruit_content .sbRecruit_content_in > div {
  margin-bottom: 4em;
}
  .sbRecruit_content .sbRecruit_content_in > div h3 {
    font-size: 150%;
  }
  .sbRecruit_content .rec_decs table {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .sbRecruit_content .rec_decs table tr, .sbRecruit_content .rec_decs table td, .sbRecruit_content .rec_decs table th {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .sbRecruit_content .rec_decs table th {
    font-size: 130%;
    padding-bottom: 0.5em;
  }
  .sbRecruit_content .rec_decs table td {
    font-size: 110%;
    padding-top: 0.5em;
    border-bottom: 0;
  }
.sbRecruit_content .rec_request p {
  line-height: 2;
  font-size: 110%;
}
.sbRecruit_content .rec_request ol li {
  margin-bottom: 1em;
  font-size: 105%;
}
  .sbRecruit_content .rec_contact > div {
    padding: 1em;
  }
  .sbRecruit_content .rec_contact > div table {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .sbRecruit_content .rec_contact > div table tr, .sbRecruit_content .rec_contact > div table td, .sbRecruit_content .rec_contact > div table th {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .sbRecruit_content {
    padding-bottom: 3em;
  }
.sbRecruit_content .rec_contact table td {
  font-size: 110%;
  line-height: 1.7;
}
.sbRecruit_content .rec_decs table .rec_p_desc li {
  display: block;
	margin-bottom: 1em;
}
.sbRecruit_content .rec_request ol {
  margin-top: 2em;
}
}
/*animation*/
.bg_black_amin {
  overflow: hidden;
  position: relative;
}

span.bg_black_amin {
  overflow: hidden;
  position: relative;
  display: inline-block;
}

.bg_black_amin:before {
  background: #002451;
  content: " ";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 1;
  transform: translateX(-100%);
}

.bg_black_amin:after {
  background: #ccc;
  content: " ";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 1;
  top: 0;
  transform: translateX(0%);
}

.bg_black_amin.active:before {
  transform: translateX(100%);
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: 0.4s;
}

.bg_black_amin.active:after {
  transform: translateX(100%);
  transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: 0.3s;
}

.left_to_right {
  opacity: 0;
  transform: translate3d(-550px, 0, 0) scale(1.1);
}

.left_to_right.active {
  animation: left_to_right 1s cubic-bezier(0.77, 0, 0.175, 1) 0.1s forwards;
}

@keyframes left_to_right {
  0% {
    opacity: 0;
    transform: translate3d(-550px, 0, 0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
.right_to_left {
  transform: translate3d(550px, 0, 0) scale(1);
  opacity: 0;
}

.right_to_left.active {
  animation: right_to_left 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0.1s forwards;
}

@keyframes right_to_left {
  0% {
    opacity: 0;
    transform: translate3d(550px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@media screen and (max-width: 600px) {
  .right_to_left {
    opacity: 0;
    transform: translate3d(-550px, 0, 0) scale(1.1);
  }
  .right_to_left.active {
    animation: right_to_left 1s cubic-bezier(0.77, 0, 0.175, 1) 0.1s forwards;
  }
  @keyframes right_to_left {
    0% {
      opacity: 0;
      transform: translate3d(-550px, 0, 0) scale(1);
    }
    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }
  }
}
.showup {
  opacity: 0;
  transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0.1s;
  transform: translate3d(0, 50px, 0);
}

.showup.active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.showvis {
  position: relative;
  opacity: 0;
}
.showvis.active {
  opacity: 1;
}

.showvis > span {
  position: relative;
  line-height: 1;
  display: inline-block;
  opacity: 0;
}

.showvis.active > span {
  opacity: 0;
  animation: visvis 1s ease 0s forwards;
}

@keyframes visvis {
  0% {
    opacity: 0;
    transform: translate(50px, -20px) scale(0.7) rotate(20deg);
  }
  100% {
    transform: translate(0) scale(1) rogate(0);
    opacity: 1;
  }
}
@keyframes bottom_to_top {
  0% {
    transform: translate3d(0, 3vw, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.bottom_to_top {
  opacity: 0;
}

.bottom_to_top.active {
  animation: bottom_to_top 1s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}/*# sourceMappingURL=style.css.map */