@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
  font-size: 100%;
}
@media (max-width: 1166px) {
  html {
    font-size: 1.372212693vw;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  color: #070707;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

.inner {
  margin: auto;
  width: 100%;
  padding: 0 1.5625rem;
  max-width: 1216px;
}

.common-button {
  padding: 0.46875rem 0.9375rem 0.46875rem 1.59375rem;
  position: relative;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #005ab6;
  border-radius: 1.5625rem;
  line-height: 1.5;
  display: inline-block;
  text-align: center;
  font-family: "M PLUS 1p", sans-serif;
  width: 100%;
  border: 1px solid #005ab6;
  transition: all 0.3s ease;
}
.common-button:hover {
  background-color: #ffffff;
  color: #005ab6;
  opacity: 1;
}

.common-title {
  font-family: "Comfortaa", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.1666666667;
  color: #2f2f2f;
}

.common-title::before {
  content: "";
  display: block;
  width: 3.125rem;
  height: 3px;
  background-color: #005ab6;
  position: relative;
  top: -0.5rem;
}

.about-us {
  margin-top: 6.25rem;
  scroll-margin-top: 6.25rem;
}

.about-us.about-us--company-profile {
  margin-top: 7.5rem;
}

.about-us.about-us--history {
  margin-top: 8.125rem;
}

.about-us.about-us--nas {
  margin-top: 6.75rem;
  margin-bottom: 10.625rem;
}

.about-us__content-wrap {
  display: flex;
  gap: 3.125rem;
  align-items: flex-start;
}

.about-us__content-wrap.about-us__content-warp--reverse {
  flex-direction: row-reverse;
}


.about-us__content {
  max-width: 34.75rem;
  width: 100%;
}

.about-us__text {
  margin-top: 1.0625rem;
  font-size: 1.0625rem;
  line-height: 1.5882352941;
  font-weight: 500;
  color: #2f2f2f;
  font-family: "M PLUS 1p", sans-serif;
}

.about-us__name {
  margin-top: 1.5rem;
  font-family: "Caveat", cursive;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 600;
  color: #2f2f2f;
}

.about-us__position {
  margin-top: 0.3125rem;
  font-size: 1.0625rem;
  line-height: 1.5882352941;
  font-weight: 500;
  color: #2f2f2f;
  font-family: "M PLUS 1p", sans-serif;
}

.about-us__image {
  margin-top: -0.4375rem;
  margin-right: calc(-683px + 50%);
  height: auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1366px) {
  .about-us__image {
    width: 100vw;
    margin-right: calc(50% - 50vw);
  }
}

.about-us__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 66/50;
}

.about-us__image.about-us__image--reverse {
  margin-right: 0;
  margin-left: calc(-683px + 50%);
  width: 85.375rem;
}
@media screen and (max-width: 1366px) {
  .about-us__image.about-us__image--reverse {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}

.about-us__image.about-us__image--reverse img {
  aspect-ratio: 660/600;
}

.about-us__image.about-us__image--history img {
  aspect-ratio: 660/600;
}

.about-us__history {
  margin-top: 1.375rem;
}



.about-us__nas-group {
  margin-top: 1.25rem;
}

.all-news {
  margin-top: 6.25rem;
  margin-bottom: 11.125rem;
}

.all-news__list {
  margin-top: 2.875rem;
}

.all-news__item {
  display: flex;
  gap: 2.8125rem;
  padding: 1.25rem 0 4.375rem;
  border-top: 1px solid #a9b6d5;
}

.all-news__item:last-child {
  border-bottom: none;
  padding-bottom: unset;
}

.all-news__item:not(:first-child) {
  padding-top: 1rem;
}

.all-news__image {
  max-width: 20rem;
  width: 100%;
}

.all-news__image img {
  width: 100%;
  aspect-ratio: 320/210;
  -o-object-fit: cover;
     object-fit: cover;
}

.all-news__content {
  font-family: "Comfortaa", sans-serif;
}

.all-news__date {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.1176470588;
  color: #2f2f2f;
}

.all-news__headline {
  margin-top: 0.375rem;
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.0869565217;
  color: #2f2f2f;
}

.all-news__text {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.3888888889;
  color: #2f2f2f;
  letter-spacing: 0.003em;
}

.all-news__pdf.news__pdf {
  margin-top: 3.875rem;
}

.bread {
  margin-top: 1.1875rem;
  font-size: 1.0625rem;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  line-height: 1.4705882353;
  color: #b4b4b4;
}

.bread__inner {
  display: flex;
  align-items: center;
  max-width: 76rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}

.bread__inner.bread__inner--products {
  max-width: 82.25rem;
}

.bread__home {
  display: flex;
  align-items: center;
}
.bread span::before {
  content: "";
  display: block;
  position: relative;
  top: 0;
  left: 1px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #b4b4b4;
  border-right: 1px solid #b4b4b4;
  transform: rotate(45deg);
}

.bread__omit {
  margin-left: 0.4375rem;
  font-size: 1.0625rem;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  line-height: 1.4705882353;
  color: #b4b4b4;
}

.company-profile {
  margin-top: 0.1875rem;
}

.company-profile__info {
  display: flex;
  font-size: 1rem;
  line-height: 1.5625;
  border-bottom: 1px solid #b4b4b4;
  padding-top: 0.875rem;
  padding-bottom: 0.8125rem;
  font-weight: 500;
}

.company-profile__label {
  font-weight: 700;
  max-width: 8.125rem;
  width: 100%;
}

.company-profile__data {
  max-width: 25.375rem;
  width: 100%;
  margin-left: 1.25rem;
}

.company-profile__locations {
  display: flex;
  font-size: 1rem;
  line-height: 1.5625;
  margin-top: 0.8125rem;
}

.company-profile__subtitle {
  max-width: 8.125rem;
  width: 100%;
  font-weight: 700;
}

.company-profile__list {
  max-width: 25.375rem;
  width: 100%;
  margin-left: 1.25rem;
}

.company-profile__item {
  padding-bottom: 0.9375rem;
}

.company-profile__item:not(:first-child) {
  border-top: 2px dotted #B4B4B4;
  padding-top: 0.625rem;
}

.company-profile__name {
  font-weight: 900;
  letter-spacing: 0.01em;
}

.company-profile__address {
  font-weight: 500;
}

.company-profile__map.common-button {
  max-width: 3.75rem;
  font-size: 0.9375rem;
  line-height: 1;
  padding: 0.0625rem 0.5rem;
  border-radius: 0.625rem;
}

.company-profile__tel-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.company-profile__tel {
  font-weight: 500;
}

.contact {
  margin-top: 5.9375rem;
  margin-bottom: 10.75rem;
}

.contact__heading-text {
  margin-top: 1.8125rem;
  font-size: 1.0625rem;
  line-height: 1.7647058824;
  font-weight: 500;
  color: #b4b4b4;
}

.contact__form-body {
  margin: 6.25rem calc(50% - 50vw) 0;
  padding: 6.25rem 0;
  width: 100vw;
  background-color: #f9f8f3;
}

.contact__text {
  margin-top: 2.5rem;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

.contact__form {
  margin-top: 0.8125rem;
}

.contact__form-wrap {
  display: flex;
  align-items: center;
}

.contact__form-wrap.contact__form-wrap--textarea {
  align-items: flex-start;
}

.contact__form-wrap + .contact__form-wrap {
  margin-top: 3.5rem;
}

.contact__form-label {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  max-width: 20.4375rem;
  width: 100%;
  color: #2f2f2f;
}

.contact__form-wrap.contact__form-wrap--textarea .contact__form-label {
  padding-top: 0.4375rem;
  letter-spacing: 0.015em;
}

.contact__form-label span {
  margin-left: 0.3125rem;
  padding: 0.28125rem 0.5625rem;
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  border-radius: 0.625rem;
  background-color: #005ab6;
  position: relative;
  top: -0.1875rem;
}

.contact__form-input {
  margin-top: initial;
  flex-grow: 1;
}

.contact__form-input input {
  padding: 1.25rem 1.25rem;
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1;
  background-color: #f4f7fa;
  border-radius: 0.1875rem;
  border: 1px solid #b4b4b4;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: none;
}

.contact__form-input input:focus {
  outline: none;
}

.contact__form-input input::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.contact__form-input input::placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.contact__form-textarea {
  margin-top: initial;
  flex-grow: 1;
}

.contact__form-textarea textarea {
  padding: 0.75rem 1.25rem;
  width: 100%;
  height: 10.625rem;
  font-size: 0.9375rem;
  background-color: #f4f7fa;
  border: 1px solid #b4b4b4;
  border-radius: 0.1875rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: none;
  resize: none;
}

.contact__form-textarea.contact__form-textarea--email {
  height: 3.75rem;
}

.contact__form-textarea.contact__form-textarea--email textarea {
  height: 100%;
  overflow: hidden;
  line-height: 1.4;
  max-height: 4.75rem;
}

.contact__form-textarea textarea:focus {
  outline: none;
}

.contact__form-textarea textarea::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.contact__form-textarea textarea::placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.contact__form-submit {
  margin: 2.875rem auto 0;
  position: relative;
  max-width: 15.625rem;
  width: 100%;
  transition: 0.3s;
}


.contact__form-submit input {
  padding: 0.65625rem 1.25rem;
  max-width: 15.625rem;
  width: 100%;
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "M PLUS 1p", sans-serif;
  line-height: 1.45;
  color: #fff;
  background-color: #005ab6;
  background-image: none;
  border: 1px solid #005ab6;
  border-radius: 1.5625rem;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}
.contact__form-submit input:hover {
  background-color: #ffffff;
  color: #005ab6;
  opacity: 1;
}

.contact__form-submit input:hover,
.contact__form-submit input:focus {
  outline: none;
}

.contact__form-submit::-moz-focus-inner {
  padding: 0;
  border: none;
}

.contact__form-submit-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 1.5625rem;
  background-color: #005ab6;
  transition: all 0.3s ease;
}

.feature-category {
  margin-inline: auto;
  margin-top: 4.375rem;
  margin-bottom: 10.625rem;
}

.feature-category__inner.inner {
  max-width: 76rem;
}

.feature-category__content-wrap {
  display: flex;
  gap: 3.75rem;
  scroll-margin-top: 6.25rem;
}


.feature-category__content-wrap.feature-category__content-wrap--reverse {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.feature-category__content {
  max-width: 38.5rem;
  width: 100%;
  margin-bottom: 1.875rem;
}

.feature-category__content.feature-category__content--reverse {
  max-width: 39.375rem;
  padding-right: 1.25rem;
}

.feature-category__content.feature-category__content--electronic {
  margin-top: 11.5625rem;
  padding-right: 1.25rem;
}

.feature-category__content.feature-category__content--high {
  margin-top: 9.6875rem;
}

.feature-category__content.feature-category__content--non-magnetic {
  margin-top: 12.1875rem;
  padding-right: 1.25rem;
}

.feature-category__title {
  font-size: 1.875rem;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  line-height: 1.1666666667;
  color: #2f2f2f;
}

.feature-category__list {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
@media screen and (max-width: 549px) {
  .feature-category__list {
    grid-template-columns: 1fr;
  }
}

.feature-category__button.common-button {
  max-width: 18.75rem;
  padding: 0.6875rem 0.625rem;
  font-size: 1.1875rem;
  line-height: 1.4736842105;
}

.feature-category__application {
  margin-top: 1.875rem;
  font-size: 1.0625rem;
  font-weight: 700;
  font-family: "Comfortaa", sans-serif;
}

.feature-category__application-title {
  line-height: 1.1176470588;
  color: #4d4d4d;
}

.feature-category__application-text {
  margin-top: 0.625rem;
  line-height: 1.1764705882;
  color: #b4b4b4;
}

.feature-category__image {
  width: 85.375rem;
  max-width: 37.25rem;
  margin-right: calc(-683px + 50%);
  height: auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1366px) {
  .feature-category__image {
    width: 100vw;
    margin-right: calc(50% - 50vw);
  }
}

.feature-category__image.feature-category__image--reverse {
  margin-right: 0;
  margin-left: calc(-683px + 50%);
  width: 85.375rem;
}
@media screen and (max-width: 1366px) {
  .feature-category__image.feature-category__image--reverse {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}

.feature-category__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 596/630;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature-category__content-bg.feature-category__content-bg--reverse {
  background-color: #f4f7fa;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  scroll-margin-top: 6.25rem;
}

.feature {
  scroll-margin-top: 6.25rem;
}

.feature__inner.inner {
  max-width: 82.25rem;
}

.feature__content-wrap {
  margin-top: 5.625rem;
  display: flex;
  gap: 3.125rem;
  align-items: center;
}

.feature__image {
  max-width: 36.875rem;
  margin-left: calc(-683px + 50%);
  width: 85.375rem;
  height: auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1366px) {
  .feature__image {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}

.feature__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 59/40;
}

.feature__content {
  margin-top: 1.25rem;
  max-width: 36.25rem;
  width: 100%;
  color: #b4b4b4;
  font-family: "Comfortaa", sans-serif;
}

.feature__text {
  margin-top: 1.875rem;
  font-size: 1.1875rem;
  line-height: 1.1052631579;
  font-weight: 700;
}

.feature__list {
  display: flex;
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.2941176471;
  font-weight: 500;
  text-align: left;
}

.feature__list:first-of-type {
  margin-top: 0.625rem;
}

.feature__term {
  max-width: 9.875rem;
  width: 100%;
}

.feature__description {
  max-width: 26.125rem;
  width: 100%;
}

.feature__note {
  margin-top: 0.8125rem;
  font-size: 0.9375rem;
  line-height: 1.4666666667;
  font-weight: 700;
}

.footer {
  background-color: #ffffff;
  margin-bottom: 1.875rem;
}

.footer__inner.inner {
  max-width: 78.125rem;
}

.footer__logo {
  display: flex;
  align-items: flex-start;
}

.footer__logo img {
  max-width: 3.21875rem;
  aspect-ratio: 51.5/37;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__logo-text {
  margin-top: 0.125rem;
  margin-left: 0.375rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #070707;
  line-height: 1.45;
}

.footer__nav {
  max-width: 74.75rem;
  margin-top: 2.375rem;
  margin-left: 5.4375rem;
  display: flex;
}

.footer__nav-group {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.footer__nav-group.footer__nav-group--high {
  margin-left: 3.5rem;
}

.footer__nav-group.footer__nav-group--products {
  margin-left: 5.0625rem;
}

.footer__nav-group.footer__nav-group--about {
  margin-left: 3.5rem;
}

.footer__nav-item {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #2f2f2f;
  line-height: 1.4666666667;
  margin-top: 0.5625rem;
}

.footer__nav-item.footer__nav-item--title {
  font-weight: 800;
  margin-top: 0;
}

.footer__contact {
  margin-top: 3.25rem;
  display: flex;
  justify-content: center;
}

.footer__contact-button.common-button {
  max-width: 15.625rem;
  padding: 0.8125rem 1.25rem;
  font-size: 1rem;
  position: relative;
  display: flex;
}

.footer__contact-button.common-button:hover::after {
  background-image: url(/english/assets/images/mail-icon-reverse.svg);
}

.footer__contact-button.common-button::after {
  content: "";
  margin-left: 5.375rem;
  margin-top: 0.125rem;
  width: 1.6875rem;
  height: 1.1875rem;
  background-image: url(/english/assets/images/mail-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.3s ease;
}

.footer__copyright {
  text-align: center;
  margin-top: 4.0625rem;
}

.footer__copyright small {
  display: inline-block;
  font-size: 0.6875rem;
  color: #2f2f2f;
  text-align: center;
  line-height: 1.5454545455;
  letter-spacing: 0.01em;
}

.header {
  height: 8.75rem;
  background-color: #ffffff;
  font-family: "M PLUS 1p", sans-serif;
}

.header__inner {
  padding-inline: clamp(15px, -52.452173913px + 8.9130434783vw, 69.3px);
  padding-right: clamp(10px, -418.6746987952px + 35.7228915663vw, 69.3px);
  height: inherit;
}

.header__lang {
  padding-top: 1.875rem;
  margin-right: 1.90625rem;
  font-size: 1rem;
  font-weight: 700;
  color: #b4b4b4;
  line-height: 1.4375;
  text-align: end;
}

.header__lang-jp {
  padding-inline: 0.625rem;
}

.header__lang-en {
  color: #070707;
  padding-inline: 0.625rem;
}

.header__main {
  display: flex;
  justify-content: space-between;
}

.header__logo {
  max-width: 31.65625rem;
  width: 100%;
}

.header__logo a {
  padding: 0.9375rem 0;
  height: inherit;
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.header__logo img {
  max-width: 3.21875rem;
  aspect-ratio: 51.5/37;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__logo-text {
  margin-left: 0.3125rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #070707;
  line-height: 1.4;
}

.header__nav {
  margin-top: 1.125rem;
  display: block;
  height: inherit;
}

.header__nav-list {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item.header__nav-item--contact {
  display: flex;
  align-items: flex-start;
  margin-left: 0.9375rem;
}

.header__nav-item a {
  padding: 0 clamp(5px, -67.2891566265px + 6.0240963855vw, 15px);
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4375;
}

.header__nav-item.header__nav-item--contact a {
  padding-top: 0.46875rem;
  padding-bottom: 0.46875rem;
  padding-left: clamp(3px, -25.8963210702px + 3.762541806vw, 25.5px);
  padding-right: clamp(3px, -12.4113712375px + 2.0066889632vw, 15px);
  position: relative;
  font-size: clamp(10px, -0.2742474916px + 1.3377926421vw, 18px);
  font-weight: 700;
  color: #fff;
  background-color: #005ab6;
  border-radius: 1.25rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  height: initial;
  transition: all 0.3s ease;
  border: 1px solid #005ab6;
}
.header__nav-item.header__nav-item--contact a:hover {
  background-color: #ffffff;
  color: #005ab6;
  opacity: 1;
}

.header__nav-item.header__nav-item--contact a:hover::after {
  background-image: url(/english/assets/images/mail-icon-reverse.svg);
}

.header__nav-item.header__nav-item--contact a::after {
  content: "";
  margin-left: clamp(5px, -20.0434782609px + 3.2608695652vw, 24.5px);
  margin-top: 0.125rem;
  width: 1.0625rem;
  height: 0.75rem;
  background-image: url(/english/assets/images/mail-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.3s ease;
}

.header__navsp-wrap {
  display: none;
}

.header__navsp {
  display: none;
  height: inherit;
}


.header__hamburger {
  display: none;
  margin: 0;
  padding-inline: 0.625rem;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 2.8125rem;
  height: 50%;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s;
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.5625rem;
  height: 0.125rem;
  background-color: #005ab6;
  border-radius: 0.8rem;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.8125rem;
}

.header__hamburger span:nth-of-type(2) {
  top: -0.5rem;
}

.header__hamburger span:nth-of-type(3) {
  top: -0.1875rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: -0.3125rem;
  transform: translateX(-50%) rotate(44deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.5625rem;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  margin-top: 7.8125rem;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 7.8125rem);
  background-color: #ffffff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-nav {
  margin-top: 0.9375rem;
  max-width: 31.25rem;
  width: 100%;
  margin-inline: auto;
}

.header__drawer-list {
  padding-inline: 1.875rem;
  padding-bottom: 3.125rem;
}

.header__drawer-item:not(:first-of-type) {
  margin-top: 1.625rem;
}

.header__drawer-item a {
  padding: 0.3125rem 0;
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4666666667;
  color: #2f2f2f;
  transition: all 0.3s ease;
}
.header__drawer-item a:hover {
  color: #005ab6;
}

.header__drawer-item a.header__drawer-heading {
  font-weight: 800;
}

.header__drawer-item.header__drawer-item--contact-btn {
  margin-top: 2.125rem;
  display: flex;
  justify-content: center;
}

.header__drawer-contact.common-button {
  max-width: 15.625rem;
  padding: 0.8125rem 1.5rem;
  font-size: 1rem;
  position: relative;
  display: flex;
  color: #ffffff;
}

.header__drawer-contact.common-button::after {
  content: "";
  margin-left: 5.375rem;
  margin-top: 0.125rem;
  width: 1.6875rem;
  height: 1.1875rem;
  background-image: url(/english/assets/images/mail-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__drawer-contact.common-button:hover::after {
  background-image: url(/english/assets/images/mail-icon-reverse.svg);
}

.history-list__item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.history-list__item.history-list__item--1937 .history-list__term {
  margin-top: 1.4375rem;
}
.history-list__item.history-list__item--1937 .history-list__description::after {
  top: 1.625rem;
}
.history-list__item.history-list__item--1937 .history-list__text {
  padding-bottom: 1.125rem;
}

.history-list__item.history-list__item--1941 .history-list__term {
  margin-top: 1.5625rem;
}
.history-list__item.history-list__item--1941 .history-list__description::after {
  top: 1.875rem;
}
.history-list__item.history-list__item--1941 .history-list__text {
  padding-bottom: 1.4375rem;
}

.history-list__item.history-list__item--1973 .history-list__term {
  margin-top: 1.5625rem;
}
.history-list__item.history-list__item--1973 .history-list__description::after {
  top: 1.875rem;
}
.history-list__item.history-list__item--1973 .history-list__text {
  padding-bottom: 1.125rem;
}

.history-list__item.history-list__item--1981 .history-list__term {
  margin-top: 1.4375rem;
}
.history-list__item.history-list__item--1981 .history-list__description {
  padding-top: 1.1875rem;
}
.history-list__item.history-list__item--1981 .history-list__description::after {
  top: 1.625rem;
}
.history-list__item.history-list__item--1981 .history-list__text {
  padding-bottom: 1.125rem;
}

.history-list__item.history-list__item--1985 .history-list__term {
  margin-top: 1.5625rem;
}
.history-list__item.history-list__item--1985 .history-list__description {
  padding-top: 1.1875rem;
}
.history-list__item.history-list__item--1985 .history-list__description::after {
  top: 1.625rem;
}
.history-list__item.history-list__item--1985 .history-list__text {
  padding-bottom: 1.125rem;
}

.history-list__item.history-list__item--1986 .history-list__term {
  margin-top: 1.4375rem;
}
.history-list__item.history-list__item--1986 .history-list__description {
  padding-top: 1.5rem;
}
.history-list__item.history-list__item--1986 .history-list__description::after {
  top: 1.625rem;
}
.history-list__item.history-list__item--1986 .history-list__text {
  padding-bottom: 1.375rem;
}

.history-list__item.history-list__item--1995 .history-list__term {
  margin-top: 1.4375rem;
}
.history-list__item.history-list__item--1995 .history-list__description {
  padding-top: 1.5rem;
}
.history-list__item.history-list__item--1995 .history-list__description::after {
  top: 1.625rem;
}
.history-list__item.history-list__item--1995 .history-list__text {
  padding-bottom: 1.375rem;
}

.history-list__item.history-list__item--1998 .history-list__term {
  margin-top: 1.4375rem;
}
.history-list__item.history-list__item--1998 .history-list__description {
  padding-top: 1.5rem;
}
.history-list__item.history-list__item--1998 .history-list__description::after {
  top: 1.625rem;
}
.history-list__item.history-list__item--1998 .history-list__text {
  padding-bottom: 1.375rem;
}

.history-list__item.history-list__item--2001 .history-list__term {
  margin-top: 1.4375rem;
}
.history-list__item.history-list__item--2001 .history-list__description {
  padding-top: 1.5rem;
}
.history-list__item.history-list__item--2001 .history-list__description::after {
  top: 1.625rem;
}
.history-list__item.history-list__item--2001 .history-list__text {
  padding-bottom: 1.375rem;
}

.history-list__item.history-list__item--2003 .history-list__term {
  margin-top: 1.4375rem;
}
.history-list__item.history-list__item--2003 .history-list__description {
  padding-top: 1.5rem;
}
.history-list__item.history-list__item--2003 .history-list__description::after {
  top: 1.625rem;
}
.history-list__item.history-list__item--2003 .history-list__text {
  padding-bottom: 1.375rem;
}

.history-list__item.history-list__item--2013 .history-list__term {
  margin-top: 1.4375rem;
}
.history-list__item.history-list__item--2013 .history-list__description {
  padding-top: 1.5rem;
}
.history-list__item.history-list__item--2013 .history-list__description::after {
  top: 1.625rem;
}
.history-list__item.history-list__item--2013 .history-list__text {
  padding-bottom: 1.375rem;
}
.history-list__item.history-list__item--2013 .history-list__text {
  border-bottom: none;
}

.history-list__term {
  width: 15%;
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1;
  color: #005ab6;
}

.history-list__description {
  padding-top: 1.5625rem;
  padding-left: 1.625rem;
  width: 85%;
  position: relative;
}

.history-list__description::before,
.history-list__description::after {
  content: "";
  position: absolute;
  top: 0.1875rem;
}

.history-list__description::before {
  left: 0;
  width: 2px;
  height: 100%;
  background: #a9b6d5;
}

.history-list__item.history-list__item .history-list__description.history-list__description--dot {
  border-left: 2px dashed #a9b6d5;
  padding-top: 2.8125rem;
}
.history-list__item.history-list__item .history-list__description.history-list__description--dot::before {
  content: none;
}

.history-list__description::after {
  left: -0.375rem;
  width: 0.9375rem;
  height: 0.9375rem;
  border-radius: 50%;
  border: 1px solid #a9b6d5;
  background: #ffffff;
}

.history-list__description.history-list__description--dot::after {
  content: none;
}

.history-list__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5625;
  border-bottom: 1px solid #b4b4b4;
  padding-bottom: 1.125rem;
}

.history-list__item:first-child .history-list__description {
  padding-top: 0;
}

.history-list__item:last-child .history-list__text {
  border-bottom: none;
}

.material-table {
  margin-top: 7.3125rem;
  scroll-margin-top: 6.25rem;
}

.material-table__inner.inner {
  max-width: 82.25rem;
}


.material-table__table {
  margin-top: 0.5rem;
  max-width: 79.125rem;
  width: 100%;
}

.material-table__head {
  font-size: 0.75rem;
  font-family: "M PLUS 1p", sans-serif;
  color: #2f2f2f;
  font-weight: 700;
  line-height: 1.5;
}

.material-table__row {
  height: 5rem;
  display: flex;
  align-items: center;
  text-align: left;
  border-bottom: 1px solid #A9B6D5;
}

.material-table__row.material-table__row--th {
  height: 2.8125rem;
}

.material-table__row.material-table__row--th-stainless {
  height: 2.3125rem;
}

.material-table__header {
  display: inline-block;
}

.material-table__header.material-table__header--nas {
  width: 14.2%;
  padding-left: 1.625rem;/*250625*/
}

.material-table__header.material-table__header--uns {
  width: 10.8%;
  padding-left: 1.5625rem;/*250625*/
}

.material-table__header.material-table__header--din {
  width: 10.6%;
  padding-left: 1.75rem;/*250625*/
}

.material-table__header.material-table__header--chemical {
  width: 33.1%;
  padding-left: 1.875rem;/*250625*/
}

.material-table__header.material-table__header--trademark {
  width: 18.1%;
  padding-left: 1.1875rem;/*250625*/
  line-height: 1.1666666667;
}

.material-table__header.material-table__header--trademark span {
  display: block;
  /*text-align: center;*//*250625*/
}

.material-table__header.material-table__header--datasheet {
  width: 12.9%;
  padding-left: 1.875rem;/*250625*/
}

.material-table__cell {
  font-size: 1.375rem;
  font-family: "M PLUS 1p", sans-serif;
  color: #b4b4b4;
  line-height: 1.5;
}

.material-table__cell.material-table__cell--nas {
  width: 14.2%;
  padding-left: 1.625rem;
}

.material-table__cell.material-table__cell--uns {
  width: 10.8%;
  padding-left: 1.5625rem;
}

.material-table__cell.material-table__cell--din {
  width: 10.6%;
  padding-left: 1.75rem;
}

.material-table__cell.material-table__cell--chemical {
  width: 33.1%;
  padding-left: 1.875rem;
  letter-spacing: 0.01em;
}

.material-table__cell.material-table__cell--trademark {
  width: 18.1%;
  padding-left: 1.1875rem;
}

.material-table__cell.material-table__cell--datasheet {
  width: 12.9%;
  padding-left: 1.875rem;
  text-align: center;/*250625*/
}

.material-table__cell .up {
  font-size: 0.6em;
  vertical-align: top;
}

.material-table__note-wrap {
  margin-top: 1.25rem;
}

.material-table__note {
  font-size: 10px;
  line-height: 1.5;
  color: #b4b4b4;
  font-weight: 700;
}

.material-table.material-table--stainless {
  margin-top: 9.375rem;
  margin-bottom: 10.625rem;
}


.material-table__header.material-table__header--nas-stainless {
  width: 14.2%;
  padding-left: 3.125rem;/*250625*/
}

.material-table__header.material-table__header--jis-stainless {
  width: 16%;
  padding-left: 3.125rem;/*250625*/
}

.material-table__header.material-table__header--uns-stainless {
  width: 11.8%;
  padding-left: 3.125rem;/*250625*/
}

.material-table__header.material-table__header--chemical-stainless {
  width: 37.8%;
  padding-left: 3.125rem;/*250625*/
}

.material-table__header.material-table__header--datasheet-stainless {
  width: 18.2%;
  padding-left: 3.4375rem;/*250625*/
}

.material-table__cell.material-table__cell--nas-stainless {
  width: 14.2%;
  padding-left: 3.125rem;
  white-space: nowrap;
}

.material-table__cell.material-table__cell--jis-stainless {
  width: 16%;
  padding-left: 3.125rem;
}

.material-table__cell.material-table__cell--uns-stainless {
  width: 11.8%;
  padding-left: 3.125rem;
}

.material-table__cell.material-table__cell--chemical-stainless {
  width: 37.8%;
  padding-left: 3.125rem;
  letter-spacing: 0.01em;
}

.material-table__cell.material-table__cell--datasheet-stainless {
  width: 18.2%;
  padding-left: 7rem;
}

.material-table__cell.material-table__cell--datasheet-stainless:has(a) {
  padding-left: 3.4375rem;
}

.material {
  margin-inline: auto;
}

.material__content-wrap {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3.75rem;
}

.material__content-wrap.material__content-wrap--reverse {
  flex-direction: row-reverse;
}

.material__image {
  width: 100%;
  max-width: 40.625rem;
  margin-left: calc(-683px + 50%);
  width: 85.375rem;
  height: auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1366px) {
  .material__image {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}

.material__image.material__image--reverse {
  margin-left: 0;
}
@media screen and (max-width: 1366px) {
  .material__image.material__image--reverse {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
}

.material__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 650/560;
  -o-object-fit: cover;
     object-fit: cover;
}

.material__content {
  margin-top: 2.625rem;
  max-width: 34.75rem;
  width: 100%;
  margin-bottom: 3rem;
}

.material__content.material__content--reverse {
  margin-left: 6.25rem;
}

.material__content.material__content--stainless {
  margin-top: 3.875rem;
}

.material__content.material__content--nonmagnetic {
  margin-top: 4.5625rem;
}

.material__content.material__content--electronic {
  margin-top: 5.8125rem;
}

.material__label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #b4b4b4;
  line-height: 1.75;
  font-family: "Comfortaa", sans-serif;
}

.material__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #070707;
  line-height: 1.1666666667;
  font-family: "Comfortaa", sans-serif;
}

.material__title:first-of-type {
  margin-top: 1.25rem;
}

.material__description {
  margin-top: 1.375rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #b4b4b4;
  line-height: 1.1764705882;
  font-family: "Comfortaa", sans-serif;
  max-width: 34.75rem;
}

.material__button-list {
  margin-top: 3rem;
}

.material__button-item:not(:first-child) {
  margin-top: 0.625rem;
}

.material__button.common-button {
  max-width: 18.75rem;
  width: 100%;
  font-size: 1.1875rem;
  line-height: 1.4736842105;
  padding: 0.75rem 0.625rem;
}

.material__content-bg.material__content-bg--reverse {
  background-color: #f4f7fa;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.nas-group__block:not(:first-child) {
  margin-top: 2.1875rem;
}

.nas-group__category {
  font-size: 0.9375rem;
  line-height: 1.4666666667;
  font-weight: 700;
  color: #b4b4b4;
}

.nas-group__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid #b4b4b4;
}

.nas-group__item:last-child {
  border-bottom: none;
}

.nas-group__name {
  font-size: 1rem;
  line-height: 1.4375;
  font-weight: 700;
}

.nas-group__button.common-button {
  max-width: 8.125rem;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 700;
}

.news {
  margin-top: 7.5rem;
  margin-bottom: 17.8125rem;
}


.news__title-wrap {
  margin-left: 4.375rem;
}

.news__title {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.1142857143;
  font-family: "Comfortaa", sans-serif;
}

.news__list {
  margin-top: 1.3125rem;
  max-width: 64.125rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.0625rem;
}


.news__item-image {
  width: 100%;
  height: auto;
}

.news__item-image img {
  width: 100%;
  aspect-ratio: 32/20;
  -o-object-fit: cover;
     object-fit: cover;
}

.news__content-wrap {
  margin-top: 1.0625rem;
}


.news__date {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.1176470588;
  font-family: "Comfortaa", sans-serif;
  color: #2f2f2f;
}

.news__item-title {
  margin-top: 0.375rem;
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.0869565217;
  font-family: "Comfortaa", sans-serif;
  color: #2f2f2f;
}

.news__item-text {
  margin-top: 0.9375rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3888888889;
  font-family: "Comfortaa", sans-serif;
  color: #b4b4b4;
}

.news__pdf {
  margin-top: 1.1875rem;
}

.news__pdf-button.common-button {
  max-width: 7.5rem;
  font-size: 0.75rem;
  line-height: 1.5;
  padding: 0.0625rem 0.625rem;
  border-radius: 0.625rem;
}

.news__button-wrap {
  margin-top: 3.125rem;
  text-align: center;
}

.news__button.common-button {
  max-width: 15.625rem;
  font-size: 1.125rem;
  line-height: 1.5;
  padding: 0.78125rem 5.0625rem;
}







.swiper-button-prev {
  display: none;
}

.swiper-button-next {
  display: none;
}

.layout-page-top {
  position: fixed;
  right: 3.6%;
  bottom: 18%;
  z-index: 100;
}

.page-top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.8125rem;
  height: 2.8125rem;
  line-height: 1;
  color: #fff;
  border-radius: 5px;
  border: 1px solid #005ab6;
  background-color: white;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.7);
}

.page-top img {
  width: 0.875rem;
  aspect-ratio: 1/1;
}


.md-show {
  display: none;
}

body.is-scroll {
  overflow: hidden;
}
/*# sourceMappingURL=style.css.map */
