@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;1,600&display=swap");
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?l8zkfa");
  src: url("../fonts/icomoon.eot?l8zkfa#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?l8zkfa") format("truetype"), url("../fonts/icomoon.woff?l8zkfa") format("woff"), url("../fonts/icomoon.svg?l8zkfa#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow:before {
  content: "\e904";
}

.icon-phone:before {
  content: "\e903";
}

.icon-texture:before {
  content: "\e900";
}

.icon-mail:before {
  content: "\e901";
}

.icon-logo:before {
  content: "\e902";
}

:root {
  --blue: #CE0000;
  --blue: #00428E;
  font-size: 10px;
  --en: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

body.under {
  opacity: 0;
  animation-duration: 1.2s;
  animation-name: fadein;
  animation-fill-mode: forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

main {
  overflow-x: hidden;
}

#loading {
  width: 100%;
  height: 100vh;
  background-color: #000;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation-name: loading-bg;
  animation-duration: 3s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
}

.reload#loading {
  animation-delay: 5s !important;
}

.loading-bl {
  width: 300px;
  height: auto;
  overflow: hidden;
  margin-bottom: 40px;
}
.loading-bl img {
  transform: translateY(101%);
  animation-name: loading;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-delay: 2.1s;
  width: 100%;
}

.reload .loading-bl img {
  animation-delay: 5s !important;
}

@keyframes loading {
  0% {
    transform: translateY(101%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes loading-bg {
  0% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  80% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  99% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
    z-index: -1;
  }
}
.wrapper {
  display: flex;
  /* 要素を横並び */
  height: 100vh;
  /* 要素の高さを画面いっぱい */
  width: 500%;
  /* 要素の数×100% */
  margin-left: calc(50% - 600px);
}

.side-nav-bl {
  background-color: var(--blue);
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}
@media screen and (min-width: 1200px) {
  .side-nav-bl {
    width: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    height: 100vh;
  }
}

.icon-logo {
  color: #000;
}
@media screen and (max-width: 1199px) {
  .icon-logo {
    color: #fff;
  }
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.side-nav li a {
  width: 35px;
  height: 35px;
  display: flex;
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: var(--blue);
  transition-duration: 0.3s;
  border: 1px solid #fff;
}
.side-nav li a:hover {
  background-color: var(--blue);
  color: #fff;
  transition-duration: 0.3s;
}
.side-nav li:first-of-type a {
  padding: 2px;
}
.side-nav li:nth-of-type(2) a {
  padding: 2px;
}
.side-nav li:nth-of-type(3) a {
  background-color: transparent;
}

.scroll-bar {
  writing-mode: vertical-rl;
  color: #fff;
  padding-top: 10px;
  height: 120px;
  position: relative;
  font-family: var(--en);
  letter-spacing: 0.5px;
}
.scroll-bar::before {
  height: 62px;
  width: 1px;
  position: absolute;
  background-color: #fff;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  content: "";
  display: block;
}
.scroll-bar::after {
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  content: "";
  display: block;
  left: 50%;
  bottom: 62px;
  animation-duration: 3s;
  animation-name: scroll;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  2% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  98% {
    opacity: 1;
    transform: translate(-50%, 62px);
  }
  100% {
    transform: translate(-50%, 62px);
    opacity: 0;
  }
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 12;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  height: 70px;
  align-items: center;
  padding-left: 20px;
}
header.active {
  background-color: var(--blue);
  position: fixed;
}
header.active .gnav__mail-sp {
  background-color: #fff;
  position: relative;
  color: var(--blue);
}
@media screen and (min-width: 1200px) {
  header {
    background-color: transparent;
    left: 60px;
    width: calc(100% - 60px);
    padding-left: 0;
  }
}

.logo {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2.4rem;
}
@media screen and (min-width: 1200px) {
  .logo {
    font-size: 3.5rem;
    padding: 0 30px;
  }
}
@media screen and (min-width: 1400px) {
  .logo {
    font-size: 4.5rem;
  }
}

.gnavi__wrap {
  display: none;
}
@media screen and (min-width: 1200px) {
  .gnavi__wrap {
    width: calc(100% - 360px);
    max-width: 1300px;
    height: 80px;
    display: block;
  }
}
@media screen and (min-width: 1400px) {
  .gnavi__wrap {
    width: calc(100% - 460px);
  }
}

.gnavi__lists {
  background-color: #000;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.gnavi__lists li a {
  color: #fff;
  font-size: 1.5rem;
}

/* グローバルナビゲーションアニメーション */
.gnavi__wrap {
  width: calc(100% - 400px);
  max-width: initial;
  margin: 0;
}
@media screen and (min-width: 1200px) {
  .gnavi__wrap {
    width: calc(100% - 300px);
  }
}
@media screen and (min-width: 1400px) {
  .gnavi__wrap {
    width: calc(100% - 400px);
  }
}

.gnavi__lists {
  display: flex;
}

.gnavi__list {
  width: calc((100% - 250px) / 5);
  height: 80px;
  background-color: #000;
  position: relative;
  transition: all 0.3s;
}
@media screen and (min-width: 1200px) {
  .gnavi__list {
    width: calc((100% - 160px) / 5);
  }
}
@media screen and (min-width: 1400px) {
  .gnavi__list {
    width: 16.6666666667%;
  }
}

.gnavi__list:hover {
  background-color: #333;
}

.gnavi__list-contact .icon-mail {
  display: inline-block;
  margin-right: 4px;
}

.gnavi__list.gnavi__list-contact:hover {
  background-color: #fff;
}
.gnavi__list.gnavi__list-contact:hover a {
  color: var(--blue);
}

.gnavi__list:not(:first-child)::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
}

.gnavi__list:hover::before {
  background-color: #333;
}

.gnavi__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #000;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  transition: all 0.3s;
}

.gnavi__list:hover a {
  color: #fff;
}

.dropdown__lists {
  transform: scaleY(0);
  /*デフォルトでは非表示の状態にしておく*/
  transform-origin: center top;
  /*変形を適応する基準をtopとする*/
  transition: all 0.3s;
  /*表示の変化を0.3秒に指定*/
  width: 100%;
  position: absolute;
  top: 80px;
  left: 0;
}
@media screen and (min-width: 1200px) {
  .dropdown__lists li a {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 1400px) {
  .dropdown__lists li a {
    font-size: 1.3rem;
  }
}

.gnavi__list:hover .dropdown__lists {
  transform: scaleY(1);
  /*Gナビメニューにホバーしたら表示*/
}

.dropdown__list {
  background-color: #000;
  height: 60px;
  transition: all 0.3s;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .dropdown__list {
    height: 45px;
  }
}
@media screen and (min-width: 1400px) {
  .dropdown__list {
    height: 60px;
  }
}

.dropdown__list:not(:first-child)::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
}

.dropdown__list:hover {
  background-color: #333;
}

.dropdown__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.gnavi__list-contact {
  width: 250px;
  background-color: var(--blue);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  .gnavi__list-contact {
    width: 160px;
  }
}
@media screen and (min-width: 1400px) {
  .gnavi__list-contact {
    width: 16.6666666667%;
  }
}
.gnavi__list-contact .mail-icon {
  display: inline-block;
  width: 24px;
  margin-right: 7px;
  transform: translateY(-3px);
}

#Go_Beyond_The_Limit {
  stroke: transparent;
  stroke-width: 0.5px;
  fill: transparent;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: textAnimeSp 4s linear 1s forwards;
}
@media screen and (min-width: 835px) {
  #Go_Beyond_The_Limit {
    animation: textAnime 4s linear 1s forwards;
  }
}

@keyframes textAnime {
  0% {
    stroke-dashoffset: 300;
    stroke: transparent;
    stroke: #fff;
    fill: transparent;
    stroke-width: 1px;
  }
  10% {
    stroke: #fff;
  }
  40% {
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.6);
  }
  100% {
    stroke-dashoffset: 0;
    stroke: #fff;
    fill: #fff;
  }
}
@keyframes textAnimeSp {
  0% {
    stroke-dashoffset: 300;
    stroke: transparent;
    stroke: #000;
    fill: transparent;
    stroke-width: 1px;
  }
  10% {
    stroke: #000;
  }
  40% {
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: rgba(255, 255, 255, 0.6);
  }
  100% {
    stroke-dashoffset: 0;
    stroke: #000;
    fill: #fff;
  }
}
.mv__anim-ttl svg {
  width: 630px;
  max-width: 80%;
  animation: mv-txt-shadow 3s forwards;
}
@media screen and (min-width: 835px) {
  .mv__anim-ttl svg {
    animation: initial;
  }
}

@keyframes mv-txt-shadow {
  0% {
    filter: drop-shadow(0 0 0.9rem rgba(0, 0, 0, 0));
  }
  100% {
    filter: drop-shadow(0 0 0.9rem rgba(0, 0, 0, 0.5));
  }
}
#mv {
  width: 100%;
  height: 100vh;
  position: relative;
  right: 0;
  top: 0;
  overflow: hidden;
  background-color: #fff;
}

video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
}

#ham {
  display: block;
  width: 55px;
  height: 55px;
  position: absolute;
  right: 10px;
  cursor: pointer;
}
#ham .ham {
  position: relative;
  width: 100%;
  height: 100%;
}
#ham .ham span {
  width: 60%;
  left: 20%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 40%;
  display: block;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-name: ham1-2;
}
#ham .ham span:last-of-type {
  top: 60%;
  left: 20%;
  width: 40%;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-name: ham2-2;
}
#ham.active .ham span {
  width: 60% !important;
  top: 25px;
  transform: rotate(45deg);
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-name: ham1;
}
#ham.active .ham span:last-of-type {
  top: 25px;
  transform: rotate(-45deg);
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-name: ham2;
}
@media screen and (min-width: 1200px) {
  #ham {
    display: none;
  }
}

@keyframes ham1 {
  0% {
    top: 40%;
    transform: rotate(0deg);
  }
  50% {
    top: 50%;
    transform: rotate(0);
  }
  100% {
    top: 25px;
    transform: rotate(45deg);
  }
}
@keyframes ham2 {
  0% {
    top: 60%;
    transform: rotate(0deg);
  }
  50% {
    top: 50%;
    transform: rotate(0);
  }
  100% {
    top: 25px;
    transform: rotate(-45deg);
  }
}
@keyframes ham1-2 {
  0% {
    top: 25px;
    transform: rotate(45deg);
  }
  50% {
    top: 50%;
    transform: rotate(0);
  }
  100% {
    top: 40%;
    transform: rotate(0deg);
  }
}
@keyframes ham2-2 {
  0% {
    top: 25px;
    transform: rotate(-45deg);
  }
  50% {
    top: 50%;
    width: 60%;
    transform: rotate(0);
  }
  100% {
    top: 60%;
    transform: rotate(0deg);
  }
}
.gnav__sp-wrapper {
  padding: 30px 30px 100px;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 100%;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.gnav__sp {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
}
.gnav__sp li {
  width: calc(50% - 10px);
}
@media screen and (max-width: 500px) {
  .gnav__sp li {
    width: 100%;
  }
}
.gnav__sp li .gnav__sp-small li {
  width: 50%;
  margin-left: auto;
  min-width: 150px;
}
.gnav__sp li .gnav__sp-small li a {
  font-weight: 400;
  text-align: left;
  padding: 0;
  margin-top: 10px;
}

.gnav__mail-sp {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--blue);
  position: relative;
  border-radius: 50%;
  right: 70px;
  color: #fff;
  font-size: 1.8rem;
}
@media screen and (min-width: 1200px) {
  .gnav__mail-sp {
    width: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    height: 100vh;
    display: none;
  }
}

.header__mail-sp {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 18px;
}

.gnav__sp-bl {
  display: block;
  position: fixed;
  top: -130%;
  left: 0;
  transition-duration: 0.5s;
  z-index: 11;
  background-color: var(--blue);
  width: 100%;
  height: 100%;
}
.gnav__sp-bl.active {
  top: 70px;
  transition-duration: 0.5s;
}
@media screen and (min-width: 1200px) {
  .gnav__sp-bl {
    display: none;
  }
}

.gnav__sp > li > a {
  color: #fff;
  font-size: 1.5rem;
  display: block;
  text-align: center;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  padding: 13px;
  font-weight: bold;
  position: relative;
}
.gnav__sp > li > a::before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  background-color: #fff;
  border-radius: 50%;
  color: var(--blue);
  content: "→";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 80%;
}

.gnav__sp-bl::-webkit-scrollbar {
  display: none;
}

.gnav__sp-wrapper::-webkit-scrollbar {
  display: none;
}

.gnav__sp-small {
  margin-bottom: 10px;
  margin-top: 10px;
}
.gnav__sp-small a {
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  display: block;
  padding: 5px;
}

.gnavi__contact-bl-sp {
  background-color: #e8e8e8;
  padding: 30px 15px;
  margin-top: 40px;
}
.gnavi__contact-bl-sp .gnavi__tel-sp-title {
  text-align: center;
  margin-bottom: 10px;
}

.gnavi__tel-sp-link {
  font-size: 2.8rem;
  color: var(--blue);
  margin-bottom: 30px;
  text-decoration: none;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 7px;
}
.gnavi__tel-sp-link .icon-phone {
  background: var(--blue);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  width: 24px;
  height: 24px;
  justify-content: center;
  display: inline-flex;
  align-items: center;
}

.gnavi__mail-sp-link {
  background-color: #fff;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--blue);
  text-decoration: none;
  display: flex;
  gap: 6px;
}
.gnavi__mail-sp-link .icon-mail {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--blue);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 8px;
}

.gnavi__sns-link-bl {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}
.gnavi__sns-link-bl li {
  width: 35px;
}
.gnavi__sns-link-bl li .icon-texture {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: var(--blue);
  font-size: 1.3rem;
}

/* top page */
.mv__cont {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: 80px;
  left: 5%;
  top: auto;
}
@media screen and (min-width: 835px) {
  .mv__cont {
    left: 10%;
    bottom: 100px;
  }
}

.mv__obi-bl {
  display: block;
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}
@media screen and (min-width: 835px) {
  .mv__obi-bl {
    margin-bottom: 20px;
  }
}

.obi1 {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--blue);
  color: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  font-size: 7.2vw;
  animation-delay: 2.8s;
  animation-name: obi1;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  padding: 0 20px;
}
@media screen and (min-width: 835px) {
  .obi1 {
    font-size: 5.5rem;
  }
}
@media screen and (min-width: 1400px) {
  .obi1 {
    font-size: 6.5rem;
  }
}

.obi2 {
  animation-delay: 2.8s;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--blue);
  transform: scale(0, 1);
  transform-origin: left top;
  width: 100%;
  height: 100%;
  animation-name: obi2;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: absolute;
  top: 0;
  left: 0;
}

.mv__obi-bl.small .obi1 {
  font-size: 1.6rem;
  background-color: transparent;
}
@media screen and (min-width: 1200px) {
  .mv__obi-bl.small .obi1 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 400px) {
  .mv__obi-bl.small .obi1 {
    font-size: 1.4rem;
  }
}
.mv__obi-bl.small .obi2 {
  background-color: #fff;
}

@keyframes obi1 {
  0% {
    transform: scale(0, 1);
  }
  50% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes obi2 {
  0% {
    transform: scale(0, 1);
  }
  50% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1) translateX(120%);
  }
}
.mv__50th-logo {
  width: 50px;
  position: absolute;
  top: 90px;
  right: 20px;
}
@media screen and (min-width: 835px) {
  .mv__50th-logo {
    width: 70px;
    top: 110px;
    right: 30px;
  }
}

#top-about {
  padding: 175px 0 150px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #fff;
}
#top-about .cont {
  overflow: hidden;
}
#top-about .cont .cont-inner {
  width: 600px;
  margin-right: 0;
  margin-left: auto;
}
#top-about .cont .cont-inner .txt {
  font-size: 1.7rem;
  margin-bottom: 20px;
  margin-left: 45px;
}
#top-about .cont .base__title {
  width: 100%;
}
#top-about .img {
  padding-left: 50px;
}
#top-about .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.base__title {
  margin-bottom: 60px;
  width: 50%;
}
.base__title .en {
  width: 550px;
  margin-right: 0;
  margin-left: auto;
  position: relative;
  color: var(--blue);
  font-family: var(--en);
  font-style: italic;
  font-weight: 700;
  font-size: 9rem;
  line-height: 1;
  display: block;
}
.base__title .en::before {
  width: 2000px;
  height: 1px;
  background-color: var(--blue);
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-101%, -50%);
}
.base__title .ja {
  font-size: 1.8rem;
  font-weight: bold;
  display: block;
  width: 550px;
  margin-right: 0;
  margin-left: auto;
  margin-top: 10px;
}
.base__title.white .en {
  color: #fff;
}
.base__title.white .en::before {
  background-color: #fff;
}
.base__title.white .ja {
  color: #fff;
}

.top-about__title-middle {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 30px;
  margin-left: 45px;
}

.js-scroll {
  width: 70vw;
  display: flex;
}
.js-scroll .img {
  width: 40%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: rgba(255, 255, 255, 0.24) 0px 3px 8px;
  height: -moz-fit-content;
  height: fit-content;
}
.js-scroll .cont {
  width: 60%;
  padding: 50px 80px 100px 50px;
  color: #fff;
}
.js-scroll .cont .txt {
  font-size: 1.7rem;
}

.strength__title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  align-items: center;
}
.strength__title .num {
  font-family: var(--en);
  font-style: italic;
  font-size: 5rem;
  font-weight: 600;
}

#top-product {
  padding-top: 150px;
  position: relative;
  background: #fff;
  z-index: 0;
}
#top-product::after {
  content: "";
  display: block;
  width: 100%;
  height: 675px;
  background-color: var(--blue);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#top-product > .txt {
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  margin-bottom: 30px;
  max-width: 90%;
  font-size: 1.7rem;
}

.top-product__list {
  width: 1100px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 70px;
}
.top-product__list li {
  position: relative;
  overflow: hidden;
}
.top-product__list li .product__name {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  left: 20px;
  bottom: 20px;
}
.top-product__list li img {
  width: 100%;
  height: auto;
  transition-duration: 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.top-product__list li a:hover img {
  transform: scale(1.1);
  transition-duration: 0.5s;
}
.top-product__list li .icon-arrow {
  color: #fff;
  text-decoration: none;
  position: absolute;
  right: 20px;
  bottom: 15px;
  font-size: 2rem;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #fff;
  transition-duration: 0.3s;
}
.top-product__list li a:hover .icon-arrow {
  background-color: var(--blue);
  border: 2px solid var(--blue);
  transition-duration: 0.3s;
  width: 55px;
  height: 55px;
  bottom: 10px;
  right: 15px;
}

.base__link {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 15px;
  text-decoration: none;
  margin-left: auto;
}
.base__link .txt {
  font-size: 3rem;
  font-family: var(--en);
  position: relative;
  display: block;
  border-bottom: 1px solid #000;
  text-decoration: none;
  z-index: 1;
  font-weight: 600;
  font-style: italic;
  color: #000 !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  margin-bottom: 0 !important;
}
.base__link .txt.white {
  color: #fff !important;
  border-bottom: 1px solid #fff;
}
.base__link .arrow {
  width: 90px;
  height: 90px;
  position: relative;
}
.base__link .arrow::before {
  width: 90px;
  height: 90px;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
  content: "";
  z-index: 0;
  transition-duration: 0.3s;
}
.base__link .arrow.white::before {
  background-color: #fff;
}
.base__link .arrow::after {
  color: #fff;
  content: "→";
  font-size: 2.2rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.base__link .arrow.white::after {
  color: #000;
}
.base__link:hover .arrow::before {
  background-color: var(--blue);
  width: 130px;
  height: 130px;
  transition-duration: 0.3s;
}
.base__link:hover .arrow.white::after {
  color: #fff;
}

.w1100 {
  width: 1100px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

#top-company {
  padding-top: 150px;
  overflow: hidden;
  padding-bottom: 150px;
  background-color: #fff;
}

.top-company__flex {
  display: flex;
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.top-company__flex .img {
  width: 550px;
  padding-right: 50px;
  position: relative;
  padding-top: 50px;
}
.top-company__flex .img img {
  position: relative;
  z-index: 1;
}
.top-company__flex .img .dot-bg {
  position: absolute;
  z-index: 0;
  top: -30px;
  right: 150px;
  height: 500px;
  width: 2000px;
  display: block;
  background-color: #fff;
  background-image: radial-gradient(var(--blue) 20%, transparent 30%);
  background-size: 15px 15px;
  background-repeat: repeat;
}
.top-company__flex .cont {
  width: 550px;
}
.top-company__flex .cont > .txt {
  font-size: 1.7rem;
}

.top-company__link {
  margin-top: 30px;
  margin-bottom: 50px;
}
.top-company__link li a {
  text-decoration: none;
  border-bottom: 1px solid var(--blue);
  display: block;
  position: relative;
  padding: 23px 0;
  font-size: 2rem;
  font-weight: bold;
  color: #000;
}
.top-company__link li a::before {
  width: 0;
  height: 1px;
  background-color: var(--blue);
  transition-duration: 0.3s;
  display: block;
  content: "";
  left: 0;
  bottom: 0;
  position: absolute;
}
.top-company__link li a:hover::before {
  width: 100%;
  transition-duration: 0.3s;
}
.top-company__link li .icon-arrow {
  color: #fff;
  text-decoration: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--blue);
  transition-duration: 0.3s;
}
.top-company__link li a:hover .icon-arrow {
  background-color: var(--blue);
  transition-duration: 0.3s;
  width: 50px;
  height: 50px;
  right: 15px;
}

.top-news__img {
  height: 655px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-image: url(../img/webp/top/news.webp);
}

.top-news__flex {
  display: flex;
  width: calc(50% + 550px);
  position: relative;
}
.top-news__flex .title-bl {
  padding: 30px 30px 50px 0;
  width: calc(100% - 750px);
  background-color: var(--blue);
  margin-top: -100px;
  z-index: 1;
  border: 40px solid #fff;
  border-left: none;
  box-sizing: border-box;
}
.top-news__flex .title-bl > .txt {
  color: #fff;
  font-size: 1.7rem;
  width: 320px;
  margin-right: 70px;
  margin-left: auto;
}

.news__list li {
  font-size: 1.7rem;
}
.news__list li a {
  border-bottom: 1px solid #8F8F8F;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 20px;
  text-decoration: none;
  align-items: center;
  position: relative;
}
.news__list li a .date {
  font-size: 1.5rem;
  color: #000;
}
.news__list li a .cate {
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 1.5rem;
  padding: 2px 20px 4px;
  border-radius: 30px;
}
.news__list li a::after {
  width: 0;
  height: 1px;
  background-color: #000;
  transition-duration: 0.3s;
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
}
.news__list li a:hover::after {
  width: 100%;
  transition-duration: 0.3s;
}
.news__list li:first-of-type a {
  border-top: 1px solid #8F8F8F;
  color: #000;
}

#top-news {
  background: #fff;
  padding-bottom: 120px;
}
#top-news .news__list {
  padding: 120px 0 120px;
}
#top-news .base__title {
  width: 100%;
}
#top-news .base__title .en {
  width: 320px;
  margin-right: 70px;
  margin-top: 80px;
}
#top-news .base__title .ja {
  width: 320px;
  margin-right: 70px;
}
#top-news .base__link {
  margin-right: 70px;
  margin-top: 50px;
}
#top-news .base__link .txt {
  margin-right: 0;
  transition-duration: 0.5s;
  border-bottom: 1px solid #fff;
}
#top-news .base__link:hover .arrow::before {
  background-color: #fff;
}
#top-news .base__link:hover .arrow::after {
  color: var(--blue);
}
#top-news .base__link:hover .txt {
  color: #000 !important;
  border-bottom: 1px solid #000;
  transition-duration: 0.5s;
}

.news__list-title {
  font-size: 1.7rem;
  color: #000;
  font-weight: 500;
  width: 100%;
}

#bnr-bl {
  display: flex;
  height: 665px;
}
#bnr-bl .bnr__rec {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
#bnr-bl .bnr__rec .base__link .txt.white {
  left: -101px;
}
#bnr-bl .bnr__rec img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#bnr-bl .bnr__rec > .txt {
  position: absolute;
  text-align: center;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.7;
  width: 100%;
  top: 60%;
}
#bnr-bl .bnr__rec .base__link-bl {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 78%;
}
#bnr-bl .bnr__rec .base__link-wrapper {
  position: relative;
  width: 180px;
}
#bnr-bl .bnr__rec .base__link .arrow {
  position: absolute;
  right: 0;
  top: -27px;
}
#bnr-bl .bnr__rec .txt {
  left: 0;
}
#bnr-bl .bnr__contact {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
#bnr-bl .bnr__contact img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  -o-object-position: top 27% left 50%;
     object-position: top 27% left 50%;
}
#bnr-bl .bnr__contact .txt {
  position: absolute;
  text-align: center;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.7;
  width: 100%;
  top: 46%;
}
#bnr-bl .bnr__contact .bnr__btn-flex {
  position: absolute;
  top: 62%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 580px;
  max-width: 90%;
  left: 50%;
  transform: translateX(-50%);
}
#bnr-bl .bnr__contact .bnr__btn-flex .tel-btn {
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  height: 75px;
  text-decoration: none;
  transition-duration: 0.3s;
}
#bnr-bl .bnr__contact .bnr__btn-flex .tel-btn:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  transition-duration: 0.3s;
}
#bnr-bl .bnr__contact .bnr__btn-flex .tel-btn .bnr-txt {
  font-size: 1.2rem;
  text-align: center;
}
#bnr-bl .bnr__contact .bnr__btn-flex .tel-btn .bnr-txt::before {
  display: inline-block;
  margin-right: 7px;
  width: 24px;
  height: 24px;
}
#bnr-bl .bnr__contact .bnr__btn-flex .tel-num {
  position: relative;
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: bold;
}
#bnr-bl .bnr__contact .bnr__btn-flex .tel-num::before {
  content: "";
  display: inline-block;
  margin-right: 5px;
  width: 21px;
  height: 21px;
  background-image: url(../img/common/tel-white.svg);
  background-size: contain;
  transform: translateY(2px);
}
#bnr-bl .bnr__contact .bnr__btn-flex .mail-btn {
  background-color: var(--blue);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  height: 75px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 0.3s;
}
#bnr-bl .bnr__contact .bnr__btn-flex .mail-btn::before {
  content: "";
  display: inline-block;
  margin-right: 5px;
  width: 21px;
  height: 21px;
  background-image: url(../img/common/mail-icon-white.svg);
  background-size: contain;
  transform: translateY(2px);
  transition-duration: 0.3s;
}
#bnr-bl .bnr__contact .bnr__btn-flex .mail-btn:hover {
  background-color: #fff;
  color: var(--blue);
  transition-duration: 0.3s;
}
#bnr-bl .bnr__contact .bnr__btn-flex .mail-btn:hover::before {
  transition-duration: 0.3s;
  background-image: url(../img/common/mail-icon-blue.svg);
}

.bnr__title {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
}
.bnr__title .en {
  text-align: center;
  font-family: var(--en);
  font-weight: 600;
  color: #fff;
  font-style: italic;
  font-size: 10rem;
  display: block;
  line-height: 1.1;
}
.bnr__title .ja {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  color: #fff;
  display: block;
}

.faq-bl {
  margin-bottom: 15px;
}
.faq-bl dt {
  background: #000;
  color: #fff;
  font-size: 1.8rem;
  padding: 20px 80px;
  position: relative;
  cursor: pointer;
}
.faq-bl dt::before {
  display: inline-block;
  content: "Q";
  color: #fff;
  font-size: 3.9rem;
  font-family: var(--en);
  position: absolute;
  left: 20px;
  top: 16px;
  line-height: 1;
}
.faq-bl dt::after {
  display: inline-block;
  content: "+";
  color: #fff;
  font-size: 5rem;
  top: 9px;
  font-family: var(--en);
  position: absolute;
  right: 20px;
  line-height: 1;
}
.faq-bl dd {
  display: none;
  padding: 25px 20px;
  font-size: 1.7rem;
}
.faq-bl.active dt::after {
  content: "-";
  font-size: 6rem;
  top: 5px;
}

#top-faq {
  position: relative;
  padding-bottom: 150px;
  background: #fff;
  padding-top: 120px;
}
#top-faq::after {
  content: "";
  opacity: 0.5;
  display: block;
  width: 70%;
  height: 66%;
  background-image: url(../img/webp/top/faq-bg.webp);
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 130px;
  right: 0;
  z-index: -1;
}

.faq-table {
  background: #fff;
  padding: 30px;
  margin-top: 20px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  font-size: 1.6rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.faq-table li {
  margin-bottom: 10px;
}
.faq-table li:last-of-type {
  margin-bottom: 0;
}
.faq-table .ttl {
  background: #d9d9d9;
  display: inline-block;
  padding: 0px 7px;
  width: 80px;
  text-align: center;
  margin-right: 10px;
  font-size: 85%;
}
.faq-table .dot {
  display: inline-block;
  margin-right: 10px;
}

.faq-other {
  width: 600px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 30px;
  margin-top: 40px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.faq-other__ttl {
  position: relative;
  margin-bottom: 20px;
}
.faq-other__ttl::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #000;
  display: block;
  content: "";
  z-index: 0;
}
.faq-other__ttl .ttl {
  font-size: 1.8rem;
  font-weight: bold;
  display: block;
  padding: 0 15px;
  background-color: #fff;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
}

.faq-other__list li {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: bold;
  padding-left: 1rem;
  text-indent: -1rem;
}
.faq-other__list li::before {
  content: "・";
  display: inline-block;
  margin-right: 0.5rem;
}

.faq-other__txt {
  font-size: 1.5rem;
  margin-top: 20px;
}

footer {
  background-color: #000;
  padding: 100px 0;
}
footer .w975 {
  width: 975px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.footer__logo {
  width: 357px;
  max-width: 80%;
  margin-bottom: 30px;
}

.footer__company-bl {
  display: flex;
  gap: 50px;
  border-bottom: 1px solid #fff;
  margin-bottom: 60px;
}

.footer__company-about {
  display: flex;
  gap: 20px;
  padding-bottom: 100px;
  flex-wrap: wrap;
}
.footer__company-about dt {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #fff;
  padding: 1px 12px 1px;
  font-size: 1.5rem;
  color: #fff;
  height: -moz-fit-content;
  height: fit-content;
}
.footer__company-about dd {
  font-size: 1.5rem;
  color: #fff;
}
.footer__company-about dd a {
  color: #fff;
  text-decoration: none;
}

.ajia-logo {
  width: 200px;
}

.footer__link {
  display: flex;
  flex-wrap: wrap;
}
.footer__link li {
  width: 16.6666666667%;
  margin-bottom: 20px;
}
.footer__link li a {
  font-size: 1.7rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition-duration: 0.3s;
  position: relative;
}
.footer__link li a::after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background-color: #fff;
  transition-duration: 0.3s;
  position: absolute;
  left: 0;
  bottom: 0;
}
.footer__link li a:hover::after {
  width: 100%;
  transition-duration: 0.3s;
}

.footer__ling-small {
  margin-top: 10px;
}
.footer__ling-small li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}
.footer__ling-small li::before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.footer__ling-small li a {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

#top-return-btn {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 0;
  bottom: 100px;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  cursor: pointer;
  opacity: 0;
  transition-duration: 0.3s;
}
#top-return-btn.active {
  opacity: 1;
  transition-duration: 0.3s;
}
#top-return-btn img {
  width: 21px;
}

.footer__contact-btn-pc {
  width: 325px;
  height: 85px;
  background-color: var(--blue);
  border-radius: 10px 0 0 0;
  border: 1px solid #fff;
  border-bottom: none;
  border-right: none;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  right: 0;
  text-decoration: none;
  z-index: 10;
  font-size: 1.6rem;
  opacity: 0;
  transition-duration: 0.3s;
}
.footer__contact-btn-pc.active {
  opacity: 1;
  transition-duration: 0.3s;
}
.footer__contact-btn-pc .icon-mail {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: var(--blue);
}
.footer__contact-btn-pc .txt {
  color: 1.6rem;
  color: #fff;
  text-decoration: none;
}

.footer__contact-btn-sp {
  display: none;
}

footer small {
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  display: block;
  margin-top: 40px;
}

.footer__mold-tech-bl,
.footer__texture-bl {
  padding: 30px 0;
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__texture-bl {
  margin-bottom: 50px;
}

.footer__mold-tech-ttl {
  font-size: 1.5rem;
  color: #fff;
  border: 1px solid #fff;
  padding: 0 15px;
}

.footer__mold-tech-bnr {
  display: block;
  width: 234px;
  transition-duration: 0.3s;
}
.footer__mold-tech-bnr:hover {
  opacity: 0.8;
  transition-duration: 0.3s;
}

.footer__texture-ttl {
  font-weight: bold;
  font-size: 1.7rem;
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  line-height: 1;
}
.footer__texture-ttl .newtab {
  width: 16px;
  height: 16px;
  display: block;
  margin-left: 12px;
  transform: translateY(-2px);
}

.footer__texture-bnr {
  margin-left: 30px;
  width: 243px;
  transition-duration: 0.3s;
}
.footer__texture-bnr:hover {
  opacity: 0.8;
  transition-duration: 0.3s;
}

/* ================================
アニメーション
=================================*/
/* ふわっと現れる */
.fade {
  animation-name: fadeAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes fadeAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-fade {
  opacity: 0;
}

/* 下からふわっと現れる */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-fadeUp {
  opacity: 0;
}

.under834-only {
  display: none;
}

.mb60 {
  margin-bottom: 60px;
}

.grecaptcha-badge {
  visibility: hidden;
}

@media screen and (max-width: 1600px) {
  .strength__title {
    font-size: 3rem;
  }
  .top-news__flex .title-bl {
    width: calc(100% - 550px);
  }
  .js-scroll .cont {
    padding: 50px 80px 100px 50px;
  }
}
@media screen and (max-width: 1400px) {
  .js-scroll {
    width: 80vw;
  }
  .base__title .ja {
    width: 500px;
  }
  .base__title .en {
    width: 500px;
  }
  .top-about__title-middle {
    margin-left: 95px;
  }
  #top-about .cont .cont-inner .txt {
    margin-left: 95px;
  }
  .top-news__flex .title-bl {
    width: calc(100% - 450px);
  }
  .js-scroll .cont {
    padding: 0px 80px 0 50px;
  }
}
@media screen and (max-width: 1200px) {
  #top-about {
    padding: 100px 0;
  }
  #top-about .cont .cont-inner {
    width: 100%;
    margin-right: 0;
    margin-left: auto;
  }
  #top-about .cont .base__title {
    width: 100%;
    margin-right: 0;
    margin-left: auto;
    margin-bottom: 40px;
  }
  .top-about__title-middle {
    margin-left: 60px;
    font-size: 2.4rem;
  }
  #top-about .cont .cont-inner .txt {
    margin-left: 60px;
  }
  .base__title .en {
    font-size: 7rem;
    margin-left: 60px;
  }
  .base__title .ja {
    margin-left: 60px;
  }
  .js-scroll {
    width: 95vw;
  }
  .js-scroll .cont {
    padding: 0px 50px 0 30px;
  }
  .strength__title {
    font-size: 2.6rem;
  }
  .strength__title .num {
    font-size: 3.5rem;
  }
  #bnr-bl .bnr__rec .txt {
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.4rem;
    width: 90%;
    top: 55%;
  }
  #bnr-bl .bnr__rec .base__link .txt {
    left: 0;
    transform: translateX(19px);
    font-size: 1.4rem;
  }
  #bnr-bl .bnr__rec .base__link-bl {
    top: 72%;
  }
  .top-product__list li .product__name {
    font-size: 1.6rem;
    left: 10px;
  }
  .top-product__list li .icon-arrow {
    right: 15px;
    bottom: 15px;
    font-size: 1.6rem;
    width: 35px;
    height: 35px;
  }
  .top-product__list li a:hover .icon-arrow {
    width: 45px;
    height: 45px;
    right: 8px;
  }
  .top-news__flex {
    width: 100%;
  }
  .top-news__flex .title-bl {
    width: 50%;
    padding: 30px 30px 65px 0;
  }
  #top-news .news__list {
    padding: 60px 30px 60px 0;
    width: 50%;
  }
  .top-news__flex .title-bl .txt {
    width: calc(100% - 100px);
    margin-right: 30px;
    margin-left: 60px;
  }
  .wrapper {
    margin-left: 60px;
  }
  .top-company__flex {
    width: 95%;
    margin-left: 0;
    margin-right: auto;
  }
  #bnr-bl .bnr__rec .base__link .txt.white {
    left: -121px;
    font-size: 3rem;
  }
  #mv video {
    -o-object-position: top 50% right 33%;
       object-position: top 50% right 33%;
  }
}
@media screen and (max-width: 834px) {
  .loading-bl {
    width: 250px;
  }
  #top-about {
    padding: 60px 5%;
    flex-direction: column;
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .base__title .en {
    font-size: 4rem;
    margin-left: 0;
  }
  .base__title .en::before {
    width: 1px;
    height: 30px;
    top: 75px;
    left: 21px;
    transform: translate(0, 0);
  }
  .base__title .ja {
    margin-left: 0;
    font-size: 1.4rem;
    margin-top: 5px;
  }
  .top-about__title-middle {
    margin-left: 0;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  #top-about .cont .base__title {
    margin-bottom: 63px;
  }
  #top-about .cont .cont-inner .txt {
    margin-left: 0;
    font-size: 1.5rem;
  }
  #top-about .img {
    padding-left: 0;
  }
  #top-strength {
    padding: 60px 0 10px;
    width: 100%;
    height: auto;
    max-height: initial;
    background-position: top 0 right 31%;
  }
  .base__title {
    margin-bottom: 63px;
    width: 100%;
    margin-left: 5%;
  }
  .wrapper {
    flex-direction: column;
    height: auto;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }
  .js-scroll {
    width: 100%;
    flex-direction: column;
  }
  .js-scroll .img {
    width: 100%;
    margin-bottom: 20px;
  }
  .js-scroll .cont {
    padding: 0 0 50px;
    width: 100%;
  }
  .strength__title {
    margin-bottom: 10px;
  }
  .js-scroll .cont .txt {
    font-size: 1.5rem;
  }
  #top-product {
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #top-product .txt {
    font-size: 1.5rem;
  }
  #top-product::after {
    height: calc(100% - 155px);
  }
  #top-product .base__link:hover .arrow::before {
    background-color: var(--blue);
  }
  #top-product .base__link:hover .arrow::after {
    color: #fff;
  }
  .top-product__list {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 70px;
  }
  .base__link:hover .arrow::before {
    background-color: #fff;
  }
  .base__link:hover .arrow::after {
    color: var(--blue);
  }
  .top-product__list li img {
    aspect-ratio: 3/2;
  }
  #top-company {
    padding-top: 60px;
    padding-bottom: calc(90vw + 470px);
    position: relative;
  }
  #top-company .base__link {
    position: absolute;
    right: 0;
    top: calc(90vw + 453px);
  }
  .top-company__flex {
    width: 90%;
    flex-direction: column-reverse;
    position: relative;
    margin-left: auto;
  }
  .top-company__link li .icon-arrow {
    font-size: 1.5rem;
    width: 34px;
    height: 34px;
  }
  .top-company__link li a {
    padding: 15px 0;
    font-size: 1.5rem;
  }
  .top-company__flex .cont .txt {
    font-size: 1.5rem;
  }
  .top-company__link li a:hover .icon-arrow {
    width: 42px;
    height: 42px;
    right: 13px;
  }
  .top-company__link {
    position: absolute;
    width: 100%;
    bottom: calc(-90vw - 385px);
  }
  .top-company__flex .img {
    width: 100%;
    padding-right: 0;
    position: absolute;
    padding-top: 0;
    top: 125px;
    height: 90vw;
    overflow: inherit;
  }
  .top-company__flex .cont {
    width: 100%;
  }
  .top-company__flex .img .dot-bg {
    top: 50px;
    right: -50px;
    height: 93vw;
    width: 1000px;
  }
  .base__link .arrow::before {
    width: 73px;
    height: 73px;
  }
  .base__link .arrow {
    width: 73px;
    height: 73px;
  }
  .base__link {
    gap: 10px;
  }
  .base__link:hover .arrow::before {
    width: 100px;
    height: 100px;
  }
  #top-company .base__link:hover .arrow::before {
    background-color: var(--blue);
  }
  #top-company .base__link:hover .arrow::after {
    color: #fff;
  }
  .top-news__img {
    height: 255px;
    background-attachment: initial;
  }
  .top-news__flex .title-bl {
    width: 100%;
    border: none;
    border-top: 15px solid #fff;
    padding-bottom: 30px;
    margin-top: 0;
  }
  .top-news__flex .title-bl .txt {
    width: 90%;
    margin-right: 5%;
    margin-left: 5%;
    font-size: 1.5rem;
  }
  #top-news .base__title .en {
    width: 100%;
    margin-right: 0;
    margin-top: 30px;
  }
  .top-news__flex {
    position: relative;
  }
  #top-news .base__link {
    margin-right: 0;
    margin-top: 0;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  #top-news .news__list {
    padding: 30px 5%;
    width: 100%;
  }
  .news__list-title {
    font-size: 1.5rem;
  }
  .news__list li a .date {
    font-size: 1rem;
  }
  .news__list li a .cate {
    font-size: 1.2rem;
  }
  .news__list li a {
    gap: 7px 15px;
    padding: 15px 0;
  }
  .top-news__flex {
    flex-direction: column;
  }
  #top-news .base__link .txt {
    border-bottom: 1px solid #000;
    color: #000 !important;
    white-space: nowrap;
    font-size: 1.5rem;
  }
  #top-news {
    padding-bottom: 100px;
  }
  #top-news .base__link {
    right: 5%;
    bottom: -75px;
  }
  #top-news .base__link:hover .arrow::before {
    background-color: var(--blue);
  }
  #top-news .base__link:hover .arrow::after {
    color: #fff;
  }
  #bnr-bl {
    height: auto;
    margin: 0;
    flex-direction: column;
  }
  #bnr-bl .bnr__rec,
  #bnr-bl .bnr__contact {
    width: 100%;
    height: 470px;
  }
  .bnr__title .en {
    font-size: 4rem;
  }
  .bnr__title .ja {
    font-size: 1.3rem;
  }
  #bnr-bl .bnr__rec .txt {
    font-size: 1.4rem;
    top: 45%;
  }
  #bnr-bl .bnr__rec .base__link-wrapper {
    width: 166px;
  }
  .base__link:hover .arrow.white::after {
    color: #000;
  }
  #bnr-bl .bnr__contact .txt {
    top: 41%;
    font-size: 1.4rem;
  }
  .bnr__title {
    top: 23%;
  }
  #bnr-bl .bnr__rec .base__link-bl {
    top: 68%;
  }
  #bnr-bl .bnr__contact .bnr__btn-flex {
    width: 280px;
    max-width: 90%;
    top: 56%;
    grid-template-columns: 1fr;
  }
  #top-faq {
    padding-bottom: 60px;
    padding-top: 60px;
  }
  .faq-bl dt::after {
    font-size: 2.3rem;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
  }
  .faq-bl dt {
    font-size: 1.5rem;
    padding: 15px 35px;
  }
  .faq-bl dt::before {
    font-size: 1.8rem;
    left: 13px;
    top: 17px;
  }
  .faq-bl.active dd {
    padding: 20px 15px;
    font-size: 1.5rem;
  }
  .faq-bl.active dt::after {
    font-size: 3rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .faq-table .dot {
    display: none;
  }
  .faq-table .ttl {
    font-size: 85%;
    margin-bottom: 5px;
  }
  .faq-table {
    padding: 20px 15px;
    width: 100%;
    max-width: 100%;
    font-size: 1.4rem;
  }
  .faq-other__list li {
    font-size: 1.4rem;
  }
  .faq-other__ttl .ttl {
    font-size: 1.6rem;
  }
  .faq-other__ttl {
    margin-bottom: 10px;
  }
  .faq-other__txt {
    font-size: 1.4rem;
    margin-top: 10px;
  }
  footer {
    padding: 60px 0 130px;
  }
  .footer__company-about {
    gap: 10px;
    padding-bottom: 0;
    flex-direction: column;
  }
  .footer__company-bl {
    gap: 30px;
    margin-bottom: 40px;
    flex-direction: column;
    padding-bottom: 40px;
  }
  .footer__link li {
    width: 50%;
    margin-bottom: 30px;
  }
  .footer__ling-small li {
    margin-bottom: 5px;
  }
  footer small {
    font-size: 1rem;
  }
  .footer__link li a {
    font-size: 1.3rem;
  }
  .top-company__flex .img .dot-bg {
    background-size: 10px 10px;
  }
  #bnr-bl .bnr__rec .base__link .arrow {
    top: -23px;
  }
  .under834-only {
    display: inline-block;
  }
  .under834-none {
    display: none !important;
  }
  .base__link.under834-only {
    display: flex;
  }
  .base__link .txt {
    font-size: 1.5rem;
  }
  #bnr-bl .bnr__rec .base__link .txt.white {
    left: -101px;
    font-size: 1.5rem;
  }
  #top-news .news__list li {
    font-size: 1.5rem;
  }
  .company__message-cont .txt {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .footer__mold-tech-bl,
  .footer__texture-bl {
    padding: 20px 0;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }
  .footer__texture-bl {
    margin-bottom: 30px;
  }
  .footer__texture-ttl {
    font-size: 1.4rem;
  }
  .footer__texture-bnr {
    margin-left: 0;
  }
  #bnr-bl .bnr__contact .bnr__btn-flex .tel-num {
    font-size: 1.8rem;
  }
  #bnr-bl .bnr__contact .bnr__btn-flex .tel-num::before {
    margin-right: 2px;
    width: 17px;
    height: 16px;
  }
  .gnavi__tel-sp-link {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 540px) {
  .top-company__flex .img {
    top: 150px;
  }
  #top-company .base__link {
    top: calc(90vw + 477px);
  }
  .top-product__list {
    grid-template-columns: 1fr;
  }
  .strength__title {
    font-size: 2rem;
  }
  .strength__title .num {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 434px) {
  .top-company__flex .img {
    top: 175px;
  }
  #top-company .base__link {
    top: calc(90vw + 500px);
  }
  .footer__contact-btn-pc {
    display: none;
  }
  .footer__contact-btn-sp {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 5;
    height: 70px;
    border: 1px solid #fff;
    padding: 8px;
    width: 100%;
    background-color: var(--blue);
    transition-duration: 0.3s;
    opacity: 0;
  }
  .footer__contact-btn-sp.active {
    opacity: 1;
    transition-duration: 0.3s;
  }
  .footer__contact-btn-sp .txt {
    display: block;
    padding: 0 10px;
    border-bottom: 1px solid #fff;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 5px;
    font-size: 1.2rem;
    color: #fff;
  }
  .footer__contact-btn-sp .footer__contact-btn-sp-flex {
    display: flex;
    letter-spacing: 1px;
    gap: 10px;
    align-items: center;
  }
  .footer__contact-btn-sp .footer__contact-btn-sp-flex .tel,
  .footer__contact-btn-sp .footer__contact-btn-sp-flex .mail {
    display: flex;
    color: #fff;
    align-items: center;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    width: calc(50% - 5px);
  }
  .footer__contact-btn-sp .footer__contact-btn-sp-flex .tel i,
  .footer__contact-btn-sp .footer__contact-btn-sp-flex .mail i {
    background-color: #fff;
    color: var(--blue);
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 7px;
    width: 30px;
    height: 30px;
  }
  .footer__contact-btn-sp .footer__contact-btn-sp-flex .tel {
    width: 53%;
  }
  .footer__contact-btn-sp .footer__contact-btn-sp-flex .mail {
    font-size: 1rem;
    width: 47%;
  }
  .footer__contact-btn-sp .footer__contact-btn-sp-flex .mail i {
    font-size: 1.3rem;
    padding-left: 2px;
  }
  #top-return-btn {
    width: 40px;
    height: 40px;
    bottom: 85px;
  }
}
@media screen and (max-width: 400px) {
  .footer__contact-btn-sp .footer__contact-btn-sp-flex .tel,
  .footer__contact-btn-sp .footer__contact-btn-sp-flex .mail {
    font-size: 1rem;
  }
  .footer__contact-btn-sp .footer__contact-btn-sp-flex .tel i,
  .footer__contact-btn-sp .footer__contact-btn-sp-flex .mail i {
    font-size: 1.1rem;
    width: 20px;
    height: 20px;
  }
  .footer__contact-btn-sp .footer__contact-btn-sp-flex .mail i {
    font-size: 1rem;
    padding-left: 1px;
  }
}
@media screen and (max-width: 368px) {
  .top-company__flex .img {
    top: 190px;
  }
  #top-company .base__link {
    position: absolute;
    right: 0;
    top: calc(90vw + 522px);
  }
}
.l-hero {
  overflow: hidden;
  position: relative;
}
.l-hero::before {
  content: "";
  width: 100vw;
  height: 100vh;
  position: fixed;
  display: block;
  z-index: -1;
  top: 0;
  left: 0;
  background-image: url(../img/webp/top/strength-bg.webp);
  background-size: cover;
  background-position: center center;
}
.l-hero .l-hero-wrapper {
  width: 300%;
  height: 100vh;
  display: flex;
  flex-wrap: nowrap;
  will-change: auto;
}
.l-hero .l-hero-panel {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 180px;
}
.l-hero .l-hero-panel .img {
  width: 50%;
  padding-left: 15%;
}
.l-hero .l-hero-panel .img img {
  border-radius: 20px;
}
.l-hero .l-hero-panel .cont {
  width: 50%;
  padding: 0 10% 0 5%;
  color: #fff;
}
.l-hero .l-hero-panel .cont .txt {
  font-size: 1.7rem;
  line-height: 1.8;
}
.l-hero .l-hero-panel__contents {
  flex: 0 0 100%;
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-size: 24px;
  position: relative;
  text-transform: uppercase;
  z-index: 3;
}
.l-hero .z-index5 {
  z-index: 5;
  position: absolute;
  top: 100px;
  left: 0;
}
.l-hero .z-index5.fixed {
  position: fixed;
}

@media screen and (max-width: 834px) {
  .l-hero .z-index5 {
    position: relative;
    top: 0;
  }
  .l-hero .l-hero-wrapper {
    width: 100%;
    height: auto;
    flex-direction: column;
  }
  .l-hero .l-hero-panel {
    width: 100%;
    height: auto;
    flex-direction: column;
    padding-top: 0;
  }
  .l-hero .l-hero-panel .img {
    width: 90%;
    padding-left: 0;
  }
  .l-hero .l-hero-panel .cont {
    width: 100%;
    padding: 20px 5% 30px;
  }
}
@media screen and (max-width: 540px) {
  .l-hero .l-hero-panel .cont .txt {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=style.css.map */