@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Noto+Sans+JP:wght@100..900&display=swap");
#globalNav {
  display: flex;
  align-items: center;
}
#globalNav .header-brand-logo {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
#globalNav .header-brand-logo img {
  max-width: 100%;
  width: auto;
  height: 30px;
}
#globalNav ul.menuLv1 {
  display: none;
}

@media screen and (max-width: 767px) {
  #gNavSP .header-brand-logo {
    display: none;
  }
}

#contents {
  background-color: #E2E1E2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
#contents .en {
  font-family: "Figtree", sans-serif;
  font-style: normal;
}
#contents .ly_inner {
  max-width: 1390px;
}
#contents .inview-fade {
  opacity: 0;
}
#contents .inview-fade.active {
  animation-name: fadeAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
#contents .inview {
  opacity: 0;
}
#contents .inview.active {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
#contents .zoom .image {
  overflow: hidden;
}
#contents .zoom .image img {
  transition: all 1.5s ease;
}
#contents .zoom:hover .image img {
  transform: scale(1.1, 1.1);
}
#contents sup {
  font-size: 60%;
  vertical-align: super;
  line-height: 1;
  top: 0;
}
#contents sub {
  font-size: 60%;
  line-height: 1;
  bottom: 0;
}

@keyframes fadeAnime {
  from {
    opacity: 0;
    filter: blur(5px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(2rem);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
#page-nav {
  position: fixed;
  bottom: 50px;
  left: 25px;
  z-index: 10;
  width: 125px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  #page-nav {
    display: none;
  }
}
#page-nav ul {
  padding: 10px 0;
}
#page-nav ul li {
  position: relative;
}
#page-nav ul li a {
  display: block;
  width: 128px;
  padding: 5px 20px;
  font-size: 1.4rem;
  color: #000;
}
#page-nav ul li a.active {
  color: #004098;
}
#page-nav ul li a.coming {
  pointer-events: none;
  opacity: 0.5;
}

.child {
  display: none;
  position: fixed;
  bottom: 15px;
  left: 152px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 4px;
  transform: translateY(-50%);
  opacity: 0;
}
.child.active {
  display: block;
  animation-name: menuFadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.child ul li a {
  font-size: 1.4rem;
  color: #000;
}
.child ul li a:hover {
  color: #004098;
}

@keyframes menuFadeUpAnime {
  from {
    opacity: 0;
    bottom: 0;
    filter: blur(5px);
  }
  to {
    opacity: 1;
    bottom: 15px;
    filter: blur(0);
  }
}
.toppage #visual {
  position: relative;
}
.toppage #visual h1 {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 1;
}
.toppage #visual h1 img {
  max-width: 454px;
}
@media screen and (max-width: 767px) {
  .toppage #visual h1 img {
    width: 80%;
  }
}
.toppage #visual #vis-slider {
  position: relative;
  height: calc(100svh - 50px);
  width: 100vw;
}
.toppage #visual #vis-slider .image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  animation: fadeInOut 15s ease-in-out infinite;
}
.toppage #visual #vis-slider .image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: calc(100svh - 50px);
  width: 100vw;
}
.toppage #visual #vis-slider .image:nth-child(1) {
  animation-delay: 0s;
}
.toppage #visual #vis-slider .image:nth-child(2) {
  animation-delay: 5s;
}
.toppage #visual #vis-slider .image:nth-child(3) {
  animation-delay: 10s;
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  13.33% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  46.67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.toppage #news {
  display: flex;
  justify-content: flex-end;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  .toppage #news {
    margin-bottom: 0;
  }
}
.toppage #news h2 {
  font-size: 1.8rem;
  font-weight: 500;
}
.toppage #about {
  padding-bottom: 200px;
  padding-top: 180px;
  color: #004098;
  background: url(../image/top/about-bg.webp) no-repeat center top/cover;
  position: relative;
}
.toppage #about::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 25, 51, 0.6);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .toppage #about {
    margin-bottom: 50px;
  }
}
.toppage #about .ly_inner {
  position: relative;
  z-index: 1;
  display: flex;
}
@media screen and (max-width: 767px) {
  .toppage #about .ly_inner {
    flex-direction: column;
  }
}
.toppage #about .txt {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .toppage #about .txt {
    width: 100%;
  }
}
.toppage #about .txt .txt-inner {
  max-width: 516px;
  margin: auto;
}
.toppage #about .txt {
  color: #fff;
}
.toppage #about .txt h2 {
  font-size: 4.4rem;
  font-weight: 500;
}
.toppage #about .txt .brand-name {
  width: 280px;
}
.toppage #about .txt .logo-text {
  color: #fff;
  font-size: 2.2rem;
  padding-block: 1.5rem;
}
.toppage #about .txt .copy {
  font-size: clamp(1.6rem, 0.904rem + 0.9vw, 2.2rem);
  font-weight: 500;
  line-height: 2;
  margin-bottom: 60px;
}
.toppage #about .txt .lead {
  line-height: 2;
  font-size: clamp(1.4rem, 1.124rem + 0.4vw, 1.7rem);
}
.toppage #about .image {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .toppage #about .image {
    width: 100%;
    margin-bottom: 20px;
  }
}
.toppage #features {
  margin-bottom: 150px;
  background-color: #004EBC;
}
@media screen and (max-width: 767px) {
  .toppage #features {
    margin-bottom: 50px;
  }
}
.toppage #features .feature_top_bottom {
  padding: 0 0 0;
  text-align: center;
  margin-top: -2px;
}
.toppage #features .feature_top_bottom .image {
  margin: auto;
}
.toppage #features .feature_content {
  padding: 100px 0;
  color: white;
}
@media screen and (max-width: 767px) {
  .toppage #features .feature_content {
    padding: 50px 0;
  }
}
.toppage #features .feature_content h2 {
  text-align: center;
  margin-bottom: 100px;
}
.toppage #features .feature_content h2 .en {
  font-size: 4.4rem;
  font-weight: 500;
}
.toppage #features .feature_content h2 .jp {
  font-size: 1.8rem;
  font-weight: 500;
}
.toppage #features .feature_content .intro {
  display: flex;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 767px) {
  .toppage #features .feature_content .intro {
    flex-wrap: wrap;
  }
}
.toppage #features .feature_content .intro .col {
  width: 25%;
  text-align: center;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .toppage #features .feature_content .intro .col {
    width: 50%;
    padding: 5% 0;
  }
}
@media screen and (max-width: 767px) {
  .toppage #features .feature_content .intro .col:nth-child(1) {
    border-right: 1px solid rgba(202, 202, 202, 0.5);
    border-bottom: 1px solid rgba(202, 202, 202, 0.5);
  }
}
.toppage #features .feature_content .intro .col:nth-child(2) {
  border-left: 1px solid rgba(202, 202, 202, 0.5);
  border-right: 1px solid rgba(202, 202, 202, 0.5);
}
@media screen and (max-width: 767px) {
  .toppage #features .feature_content .intro .col:nth-child(2) {
    border: none;
    border-bottom: 1px solid rgba(202, 202, 202, 0.5);
  }
}
.toppage #features .feature_content .intro .col:nth-child(3) {
  border-right: 1px solid rgba(202, 202, 202, 0.5);
}
.toppage #features .feature_content .intro .col .icon {
  margin-bottom: 20px;
}
.toppage #features .feature_content .intro .col .icon img {
  width: auto;
}
.toppage #features .feature_content .intro .col h3 {
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  margin-bottom: 10px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .toppage #features .feature_content .intro .col h3 {
    font-size: 1.8rem;
  }
}
.toppage #features .feature_content .intro .col p {
  font-size: 1.3rem;
}
.toppage #features .feature_content #feature-detail {
  display: flex;
  justify-content: space-between;
}
.toppage #features .feature_content #feature-detail .images {
  width: 47%;
  transition: opacity 0.6s ease-in-out;
}
@media screen and (max-width: 767px) {
  .toppage #features .feature_content #feature-detail .images {
    display: none;
  }
}
.toppage #features .feature_content #feature-detail .images:first-child {
  position: relative;
  opacity: 1;
}
.toppage #features .feature_content #feature-detail .images:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
.toppage #features .feature_content #feature-detail .txt {
  width: 47%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .toppage #features .feature_content #feature-detail .txt {
    width: 100%;
  }
  .toppage #features .feature_content #feature-detail .txt .big-image {
    margin-bottom: 20px;
    padding: 0 20%;
  }
}
.toppage #features .feature_content #feature-detail .txt .feature-item {
  display: flex;
  flex-direction: column;
}
.toppage #features .feature_content #feature-detail .txt .feature-item h3 {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
  border-top: 1px solid rgba(202, 202, 202, 0.5);
  padding-top: 40px;
}
.toppage #features .feature_content #feature-detail .txt .feature-item h3 .num {
  width: 75px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .toppage #features .feature_content #feature-detail .txt .feature-item h3 .num {
    width: 60px;
  }
}
.toppage #features .feature_content #feature-detail .txt .feature-item h3 .num span {
  padding-right: 40px;
  display: block;
  font-size: 3.4rem;
  font-weight: 500;
  border-right: 1px solid #aaa;
}
.toppage #features .feature_content #feature-detail .txt .feature-item h3 .title.jp {
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  padding-left: 5%;
  line-height: 1.5;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .toppage #features .feature_content #feature-detail .txt .feature-item h3 .title.jp {
    font-size: 2.2rem;
  }
}
.toppage #features .feature_content #feature-detail .txt .feature-item h3 .title.en {
  font-size: 1.5rem;
  text-align: right;
  padding-left: 20px;
}
.toppage #features .feature_content #feature-detail .txt .feature-item p {
  line-height: 3;
  margin-bottom: 50px;
  font-size: 1.8rem;
}
.toppage .content_header {
  position: relative;
  padding-top: 60px;
  margin-bottom: 130px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .toppage .content_header {
    margin-bottom: 50px;
    display: block;
  }
}
.toppage .content_header::before {
  content: "";
  display: block;
  position: absolute;
  width: 60px;
  height: 1px;
  background-color: #000;
  top: 0;
  left: 0;
}
.toppage .content_header h2 .en {
  font-size: 4.4rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 20px;
}
.toppage .content_header h2 .jp {
  font-size: 1.8rem;
  font-weight: 500;
}
.toppage #products {
  padding: 0 5%;
  margin-bottom: 200px;
}
@media screen and (max-width: 920px) {
  .toppage #products {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .toppage #products {
    margin-bottom: 50px;
  }
}
.toppage #products .content_header h2 {
  color: #004098;
}
@media screen and (max-width: 767px) {
  .toppage #products .content_header h2 {
    margin-bottom: 30px;
  }
}
.toppage #products .content_header p {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .toppage #products .content_header p {
    width: 100%;
  }
}
.toppage #products .ly_layout {
  display: flex;
  gap: 5%;
}
@media screen and (max-width: 920px) {
  .toppage #products .ly_layout {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .toppage #products .ly_layout {
    flex-wrap: wrap;
  }
}
.toppage #products .ly_layout.col3 a {
  width: 33.333%;
}
@media screen and (max-width: 767px) {
  .toppage #products .ly_layout.col3 a {
    width: 100%;
  }
}
.toppage #products .ly_layout a {
  width: 25%;
}
@media screen and (max-width: 920px) {
  .toppage #products .ly_layout a {
    width: 47.5%;
    margin-bottom: 4rem;
  }
}
.toppage #products .ly_layout a .logo {
  width: 60%;
  max-width: 236px;
  margin: 30px auto 0;
}
.toppage #story {
  padding: 0 5%;
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .toppage #story {
    margin-bottom: 50px;
  }
}
.toppage #story h2 {
  display: flex;
  align-items: center;
  width: 100%;
  color: #004098;
}
.toppage #story h2 .en {
  padding-right: 5%;
}
.toppage #story .ly_layout {
  display: flex;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  .toppage #story .ly_layout {
    flex-wrap: wrap;
  }
}
.toppage #story .ly_layout a {
  width: 50%;
  color: #000;
}
@media screen and (max-width: 767px) {
  .toppage #story .ly_layout a {
    width: 100%;
    margin-bottom: 30px;
  }
}
.toppage #story .ly_layout a:hover {
  text-decoration: none;
}
.toppage #story .ly_layout a .image {
  margin-bottom: 30px;
}
.toppage #story .ly_layout a h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .toppage #story .ly_layout a h3 {
    margin-bottom: 15px;
  }
}
.toppage #story .ly_layout a p {
  font-size: 1.5rem;
  color: #152F34;
}
.toppage #story .ly_layout a p span {
  font-size: 1.2rem;
}
.toppage #factory {
  padding: 0 5%;
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .toppage #factory {
    margin-bottom: 50px;
  }
}
.toppage #factory .ly_inner {
  display: flex;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  .toppage #factory .ly_inner {
    flex-wrap: wrap;
  }
}
.toppage #factory .txt {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .toppage #factory .txt {
    width: 100%;
    margin-bottom: 30px;
  }
}
.toppage #factory .txt .content_header {
  margin-bottom: 50px;
}
.toppage #factory .txt .content_header h2 {
  display: flex;
  align-items: center;
  width: 100%;
  color: #004098;
}
.toppage #factory .txt .content_header h2 .en {
  padding-right: 5%;
}
.toppage #factory .txt .title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 2.5;
}
.toppage #factory .txt .copy {
  font-size: 1.5rem;
  line-height: 2.5;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .toppage #factory .txt .copy {
    margin-bottom: 20px;
  }
}
.toppage #factory .txt .more a {
  display: inline-block;
  border: 1px solid #000;
  padding: 16px 60px;
  line-height: 1;
  text-align: center;
  color: #000;
  transition: all 0.3s ease;
}
.toppage #factory .txt .more a:hover {
  text-decoration: none;
  background-color: #eee;
}
.toppage #factory .image-col {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .toppage #factory .image-col {
    width: 100%;
  }
}

.other-business {
  background: url(../image/footer-bg.webp) no-repeat center center/cover;
  padding: 75px 0;
}
.other-business .box {
  display: block;
  max-width: 530px;
  padding: 84px 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(30px) brightness(120%);
  margin: auto;
}
.other-business .box .image {
  max-width: 280px;
  margin: 0 auto 45px;
}
.other-business .box .btn {
  display: block;
  margin: auto;
  background-color: #272525;
  color: #fff;
  max-width: 280px;
  line-height: 1;
  padding: 12px;
  transition: all 0.3s ease;
}
.other-business .box .btn:hover {
  text-decoration: none;
  background-color: #000;
}

/* torain 
=========================*/
body.torain #globalNav .header-brand-logo img {
  height: 22px;
}
body.torain #contents {
  background-color: #DADEE2;
}
body.torain #about {
  color: #272525;
  background: none;
}
body.torain #about::after {
  display: none;
}
body.torain #about .brand-name {
  margin-bottom: 2rem;
}
body.torain #about .txt {
  color: #272525;
}
body.torain #about .txt .lead {
  line-height: 3;
}
body.torain #features .feature_content {
  background: url(../../torain/image/top/feature-bg.webp) no-repeat center center/cover;
}
body.torain #products .content_header h2 {
  color: #272525;
}
body.torain #story-train {
  padding: 0 5%;
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  body.torain #story-train {
    margin-bottom: 50px;
  }
}
body.torain #story-train .ly_inner {
  display: flex;
  flex-direction: row-reverse;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  body.torain #story-train .ly_inner {
    flex-wrap: wrap;
  }
}
body.torain #story-train .txt {
  width: 50%;
}
@media screen and (max-width: 767px) {
  body.torain #story-train .txt {
    width: 100%;
    margin-bottom: 30px;
  }
}
body.torain #story-train .txt .content_header {
  padding-top: 30px;
  margin-bottom: 30px;
}
body.torain #story-train .txt .content_header h2 {
  display: flex;
  align-items: center;
  width: 100%;
  color: #272525;
}
body.torain #story-train .txt .content_header h2 .en {
  padding-right: 5%;
}
body.torain #story-train .txt .title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 2.5;
}
body.torain #story-train .txt .copy {
  font-size: 1.5rem;
  line-height: 2.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  body.torain #story-train .txt .copy {
    margin-bottom: 20px;
  }
}
body.torain #story-train .txt .copy span {
  font-size: 1.3rem;
}
body.torain #story-train .txt .more a {
  display: inline-block;
  border: 1px solid #000;
  padding: 16px 60px;
  line-height: 1;
  text-align: center;
  color: #000;
  transition: all 0.3s ease;
}
body.torain #story-train .txt .more a:hover {
  text-decoration: none;
  background-color: #eee;
}
body.torain #story-train .image-col {
  width: 50%;
}
@media screen and (max-width: 767px) {
  body.torain #story-train .image-col {
    width: 100%;
  }
}
body.torain #factory .txt .content_header h2 {
  color: #272525;
}
body.torain .other-business {
  background: url(../../torain/image/footer-bg.webp) no-repeat center center/cover;
  padding: 75px 0;
}