@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
/**************
Sass Mixin
**************/
/**************
Basic Setting
**************/
html {
  font-size: 62.5%;
}
html * {
  box-sizing: border-box;
  word-wrap: break-word;
}

body {
  color: #0A0A09;
  font-size: 1.5em;
  font-family: "Noto Sans JP", -apple-system-body, BlinkMacSystemFont, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  padding: 0;
  margin: 0;
  vertical-align: baseline;
  letter-spacing: 0.04em;
}
body.admin-bar {
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

#pagetop {
  background: url(../images/common/pagetop2.png);
  background-size: contain;
  position: fixed;
  right: 8px;
  text-indent: -9999px;
  outline: none;
  opacity: 0.7;
  z-index: 10;
  bottom: -60px;
}
@media (min-width: 560px) {
  #pagetop {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 820.9px) {
  #pagetop {
    width: 40px;
    height: 40px;
  }
}
#pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
}

/**************
Layout Set
**************/
.wrap {
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1200px) {
  .wrap {
    max-width: 1160px;
  }
  .wrap.w1300 {
    max-width: 1300px;
  }
}
@media (min-width: 821px) and (max-width: 999.9px) {
  .wrap {
    width: 92%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .wrap {
    width: 92%;
  }
}
@media (max-width: 559.9px) {
  .wrap {
    width: 88%;
  }
}

.middlewrap {
  width: 92%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 559.9px) {
  .middlewrap {
    width: 88%;
  }
}

.shortwrap {
  width: 92%;
  max-width: 856px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 559.9px) {
  .shortwrap {
    width: 88%;
  }
}

.page_section {
  padding: 80px 0;
  width: 100%;
}
@media (max-width: 820.9px) {
  .page_section {
    padding: 40px 0 40px;
  }
}
.page_section__bgGray {
  background-color: #D9D9D9;
}
.page_section.pb0 {
  padding-bottom: 0;
}

.float_link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.anchor {
  scroll-margin-top: 100px;
}

/**************
INDEX - Header
**************/
.header {
  position: fixed;
  top: 1.6rem;
  left: 3.4rem;
  right: 3.4rem;
  width: auto;
  height: 6.4rem;
  background-color: #FFFFFF;
  z-index: 1000;
  border-radius: 3.2rem;
  overflow: visible;
  transition: all 0.3s ease 0s;
}
@media (max-width: 820.9px) {
  .header {
    top: 1rem;
    left: 1rem;
    right: 1rem;
    height: 6rem;
    border-radius: 2rem;
  }
}
@media (max-width: 559.9px) {
  .header {
    top: 0.8rem;
    height: 4.6rem;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 2rem;
  overflow: visible;
}
@media (max-width: 559.9px) {
  .header__inner {
    padding: 0 1.6rem;
  }
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo a {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.header__logo-img {
  width: 250px;
}
@media (max-width: 559.9px) {
  .header__logo-img {
    width: 180px;
  }
}
.header__right {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
@media (max-width: 1199.9px) {
  .header__right {
    gap: 1.5rem;
  }
}
@media (max-width: 559.9px) {
  .header__right {
    gap: 0;
  }
}
.header__nav {
  display: flex;
  align-items: center;
}
@media (max-width: 1199.9px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    width: 46rem;
    height: 100vh;
    overflow-y: auto;
    background-color: #E8E3DD;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    align-items: flex-start;
  }
}
@media (max-width: 1199.9px) and (max-width: 820.9px) {
  .header__nav {
    width: 60%;
    max-width: inherit;
  }
}
@media (max-width: 1199.9px) and (max-width: 559.9px) {
  .header__nav {
    width: 100%;
    padding: 3rem;
  }
}
@media (max-width: 1199.9px) {
  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .header__nav.is-open .header__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    min-width: auto;
    margin-top: 0.5rem;
  }
}
@media (max-width: 1199.9px) and (max-width: 559.9px) {
  .header__nav.is-open .header__dropdown {
    margin-top: 0;
  }
}
@media (max-width: 1199.9px) {
  .header__nav.is-open .header__dropdown li a {
    padding: 0.2rem 0 0.2rem 2rem;
    font-size: 16px;
    color: #333;
    position: relative;
  }
}
@media (max-width: 1199.9px) and (max-width: 559.9px) {
  .header__nav.is-open .header__dropdown li a {
    font-size: 15px;
  }
}
@media (max-width: 1199.9px) {
  .header__nav.is-open .header__dropdown li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.4rem;
    height: 0.1rem;
    background-color: #0066cc;
    border-radius: 50%;
  }
}
@media (max-width: 1199.9px) {
  .header__nav.is-open .header__dropdown li a:hover {
    color: #175E95;
  }
}
@media (max-width: 1199.9px) {
  .header__nav.is-open .header__nav-arrow {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
}
@media (max-width: 1199.9px) {
  .header__nav-list {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
@media (max-width: 559.9px) {
  .header__nav-list {
    gap: 0.8rem;
  }
}
.header__nav-list li a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 1.45rem;
  font-weight: 700;
  color: #101010;
  letter-spacing: 0.01em;
  position: relative;
}
@media (max-width: 559.9px) {
  .header__nav-list li a {
    font-size: 1.3rem;
  }
}
@media (max-width: 999.9px) and (max-width: 1199.9px) {
  .header__nav-list li a:hover {
    color: #175E95;
  }
}
@media (max-width: 559.9px) {
  .header__nav-list li a {
    font-size: 15px;
  }
}
.header__nav-list li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #079ffa;
  transition: all 0.3s ease 0s;
}
.header__nav-list li a:hover::after {
  width: 100%;
}
@media (max-width: 1199.9px) {
  .header__nav-list li a:hover::after {
    width: 0;
  }
}
.header__nav-arrow {
  flex-shrink: 0;
  color: #101010;
}
.header__nav-item--dropdown {
  position: relative;
}
.header__nav-item--dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.header__nav-item--dropdown:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
}
.header__nav-item--dropdown:hover .header__nav-arrow {
  transform: rotate(180deg);
}
.header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  min-width: 20rem;
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 1.2rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
  z-index: 100;
}
.header__dropdown li a {
  display: block;
  padding: 0.4rem 2rem;
  font-size: 1.4rem;
  color: #101010;
  white-space: nowrap;
  transition: all 0.3s ease 0s;
}
.header__dropdown li a::after {
  display: none;
}
.header__dropdown li a:hover {
  color: #00A1E9;
}
.header__nav-arrow {
  transition: all 0.3s ease 0s;
}
.header__contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2rem;
  background-color: #1D1B52;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 50px;
}
@media (max-width: 1199.9px) {
  .header__contact-btn {
    display: none;
  }
}
.header__contact-btn:hover {
  background-color: #0088e0;
}
.header__download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2rem;
  background-color: #1D1B52;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 50px;
}
@media (max-width: 1199.9px) {
  .header__download-btn {
    display: none;
  }
}
.header__download-btn:hover {
  background-color: #383832;
}
.header__download-icon {
  width: 20px;
}
.header__btn_flex {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.header__contact-btn--mobile {
  display: none;
}
@media (max-width: 1199.9px) {
  .header__contact-btn--mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.4rem 3rem;
    background-color: #079ffa;
    color: #FFFFFF;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 50px;
    margin-top: 1.6rem;
  }
}
@media (max-width: 1199.9px) and (max-width: 559.9px) {
  .header__contact-btn--mobile {
    font-size: 1.3rem;
  }
}
@media (max-width: 1199.9px) {
  .header__contact-btn--mobile:hover {
    background-color: #0088e0;
  }
}
.header__download-btn--mobile {
  display: none;
}
@media (max-width: 1199.9px) {
  .header__download-btn--mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.4rem 3rem;
    background-color: #0A0A09;
    color: #FFFFFF;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 50px;
    margin-top: 3rem;
  }
}
@media (max-width: 1199.9px) and (max-width: 559.9px) {
  .header__download-btn--mobile {
    font-size: 1.3rem;
  }
}
@media (max-width: 1199.9px) {
  .header__download-btn--mobile:hover {
    background-color: #383832;
  }
}
.header__contact-icon {
  width: 2rem;
  height: auto;
}
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  width: 3rem;
  height: 3rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 1199.9px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #0A0A09;
  transition: all 0.3s ease 0s;
  transform-origin: center;
}
.header__hamburger.is-active {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1001;
  gap: 0;
}
.header__hamburger.is-active span:nth-child(1) {
  transform: translateY(2px) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
}

/**************
INDEX - Hero Section
**************/
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
}
@media (max-width: 999.9px) {
  .hero {
    height: 90rem;
  }
}
@media (max-width: 559.9px) {
  .hero {
    height: 43rem;
  }
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 3rem);
  background-color: #cadae9;
  z-index: 9;
}
.hero__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background-color: #CADAE9;
  z-index: 9;
  mix-blend-mode: multiply;
}
.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.hero__catch {
  position: absolute;
  left: 9rem;
  top: 50%;
  z-index: 10;
  max-width: 90rem;
  width: 80%;
  opacity: 0;
  transform: translateY(3rem);
  -webkit-animation: heroFadeUp 1.8s ease-out 0.8s forwards;
          animation: heroFadeUp 1.8s ease-out 0.8s forwards;
}
@media (max-width: 820.9px) {
  .hero__catch {
    left: 4rem;
    width: 72%;
  }
}
@media (max-width: 559.9px) {
  .hero__catch {
    left: 2rem;
    width: 89%;
    top: 20rem;
  }
}
.hero__lead {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 2.7rem;
  font-weight: 300;
  line-height: 1;
  font-style: italic;
  color: white;
  letter-spacing: 0.24em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}
@media (max-width: 820.9px) {
  .hero__lead {
    font-size: 2.2rem;
  }
}
@media (max-width: 559.9px) {
  .hero__lead {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}
.hero__news {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
  padding: 2rem 4rem;
  background-color: #175e95;
  border-radius: 30px 0 0 0;
  z-index: 10;
}
@media (max-width: 559.9px) {
  .hero__news {
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 1.6rem 2rem;
    width: calc(100% - 2rem);
    border-radius: 20px 0 0 0;
  }
}
.hero__news-label {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  font-style: italic;
  color: #FFFFFF;
}
.hero__news_item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.hero__news-date {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  font-style: italic;
  color: #FFFFFF;
}
.hero__news-text {
  font-size: 1.6rem;
  color: #FFFFFF;
}
@media (max-width: 559.9px) {
  .hero__news-text {
    width: 100%;
    font-size: 1.4rem;
  }
}

/**************
INDEX - About Section
**************/
.about {
  position: relative;
  padding: 13.5rem 0 8rem 20rem;
  background-color: #FFFFFF;
  overflow: hidden;
}
@media (max-width: 999.9px) {
  .about {
    padding: 10rem 0 4rem 10rem;
  }
}
@media (max-width: 820.9px) {
  .about {
    padding: 6rem 0 6rem 4rem;
  }
}
@media (max-width: 559.9px) {
  .about {
    padding: 4rem 0 4rem 0;
  }
}
.about__heading {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6.4rem;
  margin-bottom: 7rem;
  position: relative;
  z-index: 3;
}
@media (max-width: 820.9px) {
  .about__heading {
    gap: 3.4rem;
    margin-bottom: 6.5rem;
  }
}
@media (max-width: 559.9px) {
  .about__heading {
    gap: 2rem;
    margin-bottom: 4rem;
    padding-left: 2rem;
  }
}
.about__bg-shape {
  position: absolute;
  top: 16rem;
  right: 0;
  width: 50rem;
  height: 70rem;
  background-color: #175E95;
  z-index: 0;
  -webkit-clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 999.9px) {
  .about__bg-shape {
    width: 40rem;
  }
}
@media (max-width: 820.9px) {
  .about__bg-shape {
    width: 30rem;
    height: 30rem;
    top: 37rem;
  }
}
@media (max-width: 559.9px) {
  .about__bg-shape {
    width: 26rem;
    height: 24rem;
  }
}
.about__bar {
  display: block;
  width: 5.7rem;
  height: 27.3rem;
  background-color: #1D1B52;
  flex-shrink: 0;
  -webkit-clip-path: polygon(0 22%, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 22%, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 559.9px) {
  .about__bar {
    width: 3rem;
    height: 14rem;
  }
}
.about__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-top: 3rem;
  max-width: 72rem;
}
@media (max-width: 820.9px) {
  .about__title-wrap {
    width: 63%;
  }
}
@media (max-width: 559.9px) {
  .about__title-wrap {
    gap: 0.4rem;
    width: 100%;
  }
}
.about__title-en {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 8.8rem;
  font-weight: 900;
  line-height: 1;
  font-size: min(8.8rem, 8vw);
  font-style: italic;
  color: #1D1B52;
  line-height: 1;
}
@media (max-width: 999.9px) {
  .about__title-en {
    font-size: 6rem;
  }
}
@media (max-width: 559.9px) {
  .about__title-en {
    font-size: 3rem;
  }
}
.about__title-ja {
  font-size: min(3rem, 2.6vw);
  font-weight: 700;
  color: #1D1B52;
  line-height: 1.2;
}
@media (max-width: 559.9px) {
  .about__title-ja {
    font-size: 1.6rem;
  }
}
.about__text {
  font-size: 1.6rem;
  line-height: 2.1;
  color: #1E1C1C;
  margin-top: 2rem;
}
@media (max-width: 559.9px) {
  .about__text {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}
.about__image-area {
  position: relative;
  z-index: 2;
  min-height: 50rem;
}
@media (max-width: 999.9px) {
  .about__image-area {
    min-height: 40rem;
  }
}
@media (max-width: 820.9px) {
  .about__image-area {
    min-height: 21rem;
    height: 27rem;
  }
}
@media (max-width: 559.9px) {
  .about__image-area {
    min-height: 21rem;
    height: 21rem;
  }
}
.about__circle-btn {
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
  width: 45rem;
  height: 45rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 999.9px) {
  .about__circle-btn {
    width: 38rem;
    height: 38rem;
  }
}
@media (max-width: 820.9px) {
  .about__circle-btn {
    width: 33.2rem;
    height: 33.2rem;
  }
}
@media (max-width: 559.9px) {
  .about__circle-btn {
    width: 24rem;
    height: 24rem;
    left: 1rem;
  }
}
.about__circle-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: rotateCircle 32s linear infinite;
          animation: rotateCircle 32s linear infinite;
}
.about__btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 23.2rem;
  padding: 1.8rem 2.4rem;
  background-color: #1D1B52;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: all 0.3s ease 0s;
}
.about__btn:hover {
  background-color: #333;
}
@media (max-width: 559.9px) {
  .about__btn {
    width: 18rem;
    padding: 1.2rem 2rem;
    font-size: 13px;
  }
}
.about__btn svg {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
.about__main-image {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 68%;
  height: 50rem;
  overflow: hidden;
  z-index: 1;
  -webkit-clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 100%);
          clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 100%);
}
@media (max-width: 999.9px) {
  .about__main-image {
    height: 40rem;
  }
}
@media (max-width: 820.9px) {
  .about__main-image {
    width: 60%;
    height: 27rem;
  }
}
@media (max-width: 559.9px) {
  .about__main-image {
    width: 82%;
    height: 21rem;
  }
}
.about__main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__industries {
  margin-top: 6rem;
}
@media (max-width: 559.9px) {
  .about__industries {
    margin-top: 4rem;
    padding: 0 2rem;
  }
}
.about__industries-inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.8rem;
  padding-right: 10rem;
}
@media (max-width: 820.9px) {
  .about__industries-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 559.9px) {
  .about__industries-inner {
    padding-right: 0;
  }
}
.about__industry-card {
  flex: 1;
  text-align: center;
  width: 22.5rem;
  aspect-ratio: 22.5/17.6;
}
@media (max-width: 820.9px) {
  .about__industry-card {
    flex: 0 0 calc(100% - 4.8rem)/5;
  }
}
@media (max-width: 559.9px) {
  .about__industry-card {
    flex: 0 0 calc(50% - 0.6rem);
  }
}
.about__industry-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1.4rem;
}
@media (max-width: 559.9px) {
  .about__industry-card img {
    height: 12rem;
    margin-bottom: 1rem;
  }
}
.about__industry-card p {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0a0a09;
  letter-spacing: 0.04em;
}
@media (max-width: 559.9px) {
  .about__industry-card p {
    font-size: 1.3rem;
  }
}

@-webkit-keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim-fadeUp {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.anim-fadeUp.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-stagger {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.anim-stagger.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/**************
INDEX - Technology Section
**************/
.tech {
  margin-top: 8rem;
  padding: 5rem 0 0;
  height: 103rem;
  background-color: #FFFFFF;
  position: relative;
  z-index: 3;
}
@media (max-width: 1199.9px) {
  .tech {
    height: auto;
    width: 100%;
    aspect-ratio: 130/103;
  }
}
@media (max-width: 820.9px) {
  .tech {
    height: 66rem;
    margin-top: 0;
  }
}
@media (max-width: 559.9px) {
  .tech {
    padding: 5rem 0;
    height: 94rem;
  }
}
.tech__bg-under {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 103rem;
  background-color: #1D1B52;
  z-index: 2;
  mix-blend-mode: multiply;
  -webkit-clip-path: polygon(33% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(33% 0, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 1199.9px) {
  .tech__bg-under {
    aspect-ratio: 107/103;
    height: auto;
  }
}
@media (max-width: 820.9px) {
  .tech__bg-under {
    aspect-ratio: 103/103;
    height: auto;
  }
}
@media (max-width: 559.9px) {
  .tech__bg-under {
    aspect-ratio: inherit;
    height: 90rem;
  }
}
.tech__bg-upper {
  position: absolute;
  top: 5rem;
  left: 0;
  width: 68%;
  height: 103rem;
  background-color: #175E95;
  z-index: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 61% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 61% 100%, 0 100%);
}
@media (max-width: 1199.9px) {
  .tech__bg-upper {
    aspect-ratio: 91/103;
    height: auto;
  }
}
@media (max-width: 559.9px) {
  .tech__bg-upper {
    top: 3rem;
    aspect-ratio: inherit;
    height: 90rem;
  }
}
.tech__bg-triangle01 {
  position: absolute;
  bottom: -20%;
  right: 17%;
  width: 24rem;
  z-index: 1;
}
@media (max-width: 820.9px) {
  .tech__bg-triangle01 {
    bottom: -18%;
    right: 17%;
    width: 19rem;
  }
}
@media (max-width: 559.9px) {
  .tech__bg-triangle01 {
    bottom: -2%;
    width: 9rem;
  }
}
.tech__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 820.9px) {
  .tech__inner {
    max-width: none;
    width: 100%;
  }
}
@media (max-width: 559.9px) {
  .tech__inner {
    padding: 0 5.6vw;
  }
}
.tech__heading {
  margin-bottom: 8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 6rem;
}
@media (max-width: 559.9px) {
  .tech__heading {
    margin-bottom: 3rem;
  }
}
.tech__title-en {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 8.8rem;
  font-weight: 900;
  line-height: 1;
  font-size: min(8.8rem, 8vw);
  font-style: italic;
  color: #FFFFFF;
  line-height: 1;
  display: block;
}
@media (max-width: 999.9px) {
  .tech__title-en {
    font-size: 6rem;
  }
}
@media (max-width: 559.9px) {
  .tech__title-en {
    font-size: 3rem;
  }
}
.tech__title-ja {
  font-size: min(3rem, 2.6vw);
  font-weight: 700;
  color: #FFFFFF;
}
@media (max-width: 559.9px) {
  .tech__title-ja {
    font-size: 1.6rem;
  }
}
.tech__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 559.9px) {
  .tech__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.tech__card {
  position: relative;
  display: block;
  aspect-ratio: 68/34;
  overflow: hidden;
  max-width: 68rem;
}
@media (max-width: 559.9px) {
  .tech__card {
    width: 100%;
  }
}
.tech__card.mt-3 {
  margin-top: -3rem;
}
@media (max-width: 559.9px) {
  .tech__card.mt-3 {
    margin-top: 0;
  }
}
.tech__card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tech__card-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}
.tech__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: transform 0.5s ease;
}
.tech__card:hover .tech__card-image img {
  transform: scale(1.05);
}
.tech__card-content {
  position: absolute;
  bottom: 2.4rem;
  left: 2.4rem;
  right: 2.4rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 2rem;
  z-index: 10;
}
@media (max-width: 559.9px) {
  .tech__card-content {
    bottom: 1.6rem;
    left: 1.6rem;
    right: 1.6rem;
  }
}
.tech__card-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: right;
}
@media (max-width: 559.9px) {
  .tech__card-text {
    gap: 0.6rem;
  }
}
.tech__card-en {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  font-style: italic;
  color: white;
  letter-spacing: 0.3rem;
}
@media (max-width: 559.9px) {
  .tech__card-en {
    font-size: 1.2rem;
  }
}
.tech__card-title {
  font-size: min(3.2rem, 2.6vw);
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1;
}
@media (max-width: 559.9px) {
  .tech__card-title {
    font-size: 1.8rem;
  }
}
.tech__card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  background-color: #FFFFFF;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease 0s;
}
@media (max-width: 559.9px) {
  .tech__card-arrow {
    width: 3.6rem;
    height: 3.6rem;
  }
}
.tech__card-arrow svg {
  color: #0A0A09;
}
.tech__card:hover .tech__card-arrow {
  background-color: #003366;
}
.tech__card:hover .tech__card-arrow svg {
  color: #FFFFFF;
}

/**************
INDEX - Why Choose Section
**************/
.why {
  padding: 13rem 0 10rem;
  background-color: #FFFFFF;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .why {
    padding: 4rem 0;
  }
}
@media (max-width: 559.9px) {
  .why {
    padding: 4rem 0;
  }
}
.why__bg-triangle02 {
  position: absolute;
  top: 6%;
  right: -5%;
  width: 33rem;
  z-index: 1;
}
@media (max-width: 820.9px) {
  .why__bg-triangle02 {
    right: -16%;
    width: 30rem;
  }
}
@media (max-width: 559.9px) {
  .why__bg-triangle02 {
    top: 1%;
    right: -25%;
    width: 19rem;
  }
}
.why__bg-triangle03 {
  position: absolute;
  top: 16%;
  left: -10%;
  width: 55rem;
  z-index: 1;
}
@media (max-width: 820.9px) {
  .why__bg-triangle03 {
    width: 46rem;
  }
}
@media (max-width: 559.9px) {
  .why__bg-triangle03 {
    width: 22rem;
    top: 24%;
  }
}
.why__bg-triangle04 {
  position: absolute;
  top: 68%;
  left: -3%;
  width: 23rem;
  z-index: 1;
}
@media (max-width: 559.9px) {
  .why__bg-triangle04 {
    width: 15rem;
    top: 73%;
  }
}
.why__inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 559.9px) {
  .why__inner {
    padding: 0 5.6vw;
  }
}
.why__heading {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2.4rem;
  margin-bottom: 6rem;
}
@media (max-width: 559.9px) {
  .why__heading {
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
  }
}
.why__bar {
  display: block;
  width: 5.7rem;
  height: 27.3rem;
  background-color: #1D1B52;
  flex-shrink: 0;
  -webkit-clip-path: polygon(0 22%, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 22%, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 559.9px) {
  .why__bar {
    width: 3rem;
    height: 12rem;
  }
}
.why__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  justify-content: center;
  height: 27.3rem;
}
@media (max-width: 559.9px) {
  .why__title-wrap {
    height: auto;
    gap: 0.4rem;
  }
}
.why__title-en {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 8.8rem;
  font-weight: 900;
  line-height: 1;
  font-size: min(8.8rem, 8vw);
  font-style: italic;
  color: #1D1B52;
  line-height: 1;
}
@media (max-width: 999.9px) {
  .why__title-en {
    font-size: 6rem;
  }
}
@media (max-width: 559.9px) {
  .why__title-en {
    font-size: 3rem;
  }
}
.why__title-ja {
  font-size: min(3rem, 2.6vw);
  font-weight: 700;
  color: #1D1B52;
}
@media (max-width: 559.9px) {
  .why__title-ja {
    font-size: 1.6rem;
  }
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.8rem;
  aspect-ratio: 518/300;
}
@media (max-width: 820.9px) {
  .why__grid {
    gap: 2rem;
  }
}
@media (max-width: 559.9px) {
  .why__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.why__card {
  padding: 2rem;
  background-color: #788BD0;
  border-radius: 0.8rem;
  height: 100%;
}
@media (max-width: 559.9px) {
  .why__card {
    padding: 2rem;
  }
}
.why__card-inner {
  padding: 3.2rem;
  background-color: #FFFFFF;
  border-radius: 0.8rem;
  height: 100%;
}
@media (max-width: 559.9px) {
  .why__card-inner {
    padding: 2rem;
  }
}
.why__card-header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 559.9px) {
  .why__card-header {
    gap: 1.2rem;
  }
}
.why__card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.7rem;
  height: 7.7rem;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  background-color: #175e95;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 820.9px) {
  .why__card-number {
    width: 5rem;
    height: 5rem;
    font-size: 2.4rem;
  }
}
.why__card-title {
  font-size: min(2rem, 1.8vw);
  font-weight: 900;
  line-height: 1.5;
  color: #0A0A09;
  padding-top: 1.2rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .why__card-title {
    padding-top: 0;
  }
}
@media (max-width: 559.9px) {
  .why__card-title {
    font-size: 1.6rem;
    padding-top: 0.6rem;
  }
}
.why__card-divider {
  width: 100%;
  height: 2px;
  background-color: #0A0A09;
  margin: 1.6rem 0;
}
@media (max-width: 559.9px) {
  .why__card-divider {
    margin: 1.2rem 0;
  }
}
.why__card-text {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #0A0A09;
}
@media (max-width: 559.9px) {
  .why__card-text {
    font-size: 1.3rem;
  }
}

/**************
INDEX - product Section
**************/
.product {
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
  height: 113rem;
}
@media (max-width: 820.9px) {
  .product {
    padding: 6rem 0 9rem;
    height: auto;
  }
}
@media (max-width: 559.9px) {
  .product {
    padding: 4rem 0;
  }
}
.product__bg-upper {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 105rem;
  background-color: #1D1B52;
  z-index: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
}
@media (max-width: 820.9px) {
  .product__bg-upper {
    width: 86%;
    height: 86rem;
  }
}
@media (max-width: 559.9px) {
  .product__bg-upper {
    height: 52rem;
  }
}
.product__bg-under {
  position: absolute;
  top: 10rem;
  right: 0;
  width: 85%;
  height: 103rem;
  background-color: #1d1b52;
  z-index: 0;
  opacity: 0.6;
  -webkit-clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 820.9px) {
  .product__bg-under {
    width: 85%;
    height: 84rem;
    top: 4rem;
  }
}
@media (max-width: 559.9px) {
  .product__bg-under {
    height: 52rem;
  }
}
.product__inner {
  margin: 0 auto;
  padding: 0 0 0 20rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media (max-width: 999.9px) {
  .product__inner {
    padding: 0 0 0 10rem;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .product__inner {
    padding: 0 0 0 4rem;
  }
}
@media (max-width: 559.9px) {
  .product__inner {
    padding: 0 5.6vw;
  }
}
.product__heading {
  margin-bottom: 8rem;
}
@media (max-width: 820.9px) {
  .product__heading {
    margin-bottom: 6rem;
  }
}
@media (max-width: 559.9px) {
  .product__heading {
    margin-bottom: 3rem;
  }
}
.product__title-en {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 8.8rem;
  font-weight: 900;
  line-height: 1;
  font-size: min(8.8rem, 8vw);
  font-style: italic;
  color: #FFFFFF;
  line-height: 1;
  display: block;
}
@media (max-width: 999.9px) {
  .product__title-en {
    font-size: 6rem;
  }
}
@media (max-width: 559.9px) {
  .product__title-en {
    font-size: 3rem;
  }
}
.product__title-ja {
  font-size: min(3rem, 2.6vw);
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 0.8rem;
}
@media (max-width: 559.9px) {
  .product__title-ja {
    font-size: 1.6rem;
    margin-top: 0.4rem;
  }
}
.product__slider {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  cursor: -webkit-grab;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product__slider::-webkit-scrollbar {
  display: none;
}
.product__slider.is-dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.product__slider-track {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4rem;
  padding-right: 12rem;
}
@media (max-width: 999.9px) {
  .product__slider-track {
    padding-right: 0;
  }
}
@media (max-width: 559.9px) {
  .product__slider-track {
    gap: 1.6rem;
  }
}
.product__card {
  flex-shrink: 0;
  width: 30rem;
  display: block;
  transition: all 0.3s ease 0s;
}
@media (max-width: 820.9px) {
  .product__card {
    width: 22rem;
  }
}
@media (max-width: 559.9px) {
  .product__card {
    width: calc((94.4vw - 2.24rem) / 2.4);
  }
}
.product__card-image {
  aspect-ratio: 290/409;
  overflow: hidden;
  margin-bottom: 2.3rem;
  position: relative;
}
@media (max-width: 559.9px) {
  .product__card-image {
    aspect-ratio: 290/409;
    margin-bottom: 1.2rem;
  }
}
.product__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease;
}
.product__card-image img:hover {
  transform: scale(1.1);
}
.product__card-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media (max-width: 559.9px) {
  .product__card-info {
    gap: 0.8rem;
  }
}
.product__card-tag {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}
@media (max-width: 559.9px) {
  .product__card-tag {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.product__card-tag-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.9rem;
  padding: 0.6rem 1.2rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: #FFFFFF;
  background-color: #175e95;
}
@media (max-width: 559.9px) {
  .product__card-tag-label {
    font-size: 1rem;
    min-width: auto;
    padding: 0.3rem 0.6rem;
  }
}
.product__card-tag-value {
  font-size: 1.6rem;
  color: #FFFFFF;
}
@media (max-width: 559.9px) {
  .product__card-tag-value {
    font-size: 1.2rem;
  }
}
.product__action {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6rem;
}
@media (max-width: 559.9px) {
  .product__action {
    margin-top: 3rem;
  }
}
.product__btn {
  min-width: 22rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 2rem 8rem;
  background-color: #FFFFFF;
  color: #0A0A09;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 4px;
  position: relative;
  border: 1px solid #0A0A09;
  transition: all 0.3s ease 0s;
}
@media (max-width: 559.9px) {
  .product__btn {
    padding: 1.2rem 4rem;
    font-size: 15px;
  }
}
.product__btn svg {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
.product__btn:hover {
  background-color: #f0f0f0;
}

/**************
INDEX - Quality Section
**************/
.quality {
  position: relative;
  height: 66rem;
}
@media (max-width: 820.9px) {
  .quality {
    height: auto;
  }
}
.quality__bg {
  position: relative;
  width: 100%;
  height: 66rem;
}
@media (max-width: 820.9px) {
  .quality__bg {
    height: 50rem;
  }
}
@media (max-width: 559.9px) {
  .quality__bg {
    height: 40rem;
  }
}
.quality__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.quality__inner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 50%;
  height: 100%;
}
@media (max-width: 820.9px) {
  .quality__inner {
    width: 100%;
  }
}
.quality__content {
  width: 100%;
  height: 100%;
  padding: 6rem 4rem;
  background-color: rgba(13, 13, 13, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 559.9px) {
  .quality__content {
    padding: 2rem;
  }
}
.quality__heading {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3rem;
  margin-bottom: 3.2rem;
}
@media (max-width: 559.9px) {
  .quality__heading {
    gap: 1.6rem;
    margin-bottom: 2rem;
  }
}
.quality__bar {
  display: block;
  width: 3.3rem;
  height: 30.2rem;
  background-color: #FFFFFF;
  flex-shrink: 0;
  -webkit-clip-path: polygon(0 22%, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 22%, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 559.9px) {
  .quality__bar {
    width: 2rem;
    height: 20rem;
  }
}
.quality__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  padding-top: 2.5rem;
}
.quality__title-main {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media (max-width: 559.9px) {
  .quality__title-main {
    flex-wrap: wrap;
    gap: 0;
  }
}
.quality__title-en {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  font-size: min(4.5rem, 4vw);
  font-style: italic;
  color: #FFFFFF;
  line-height: 1;
}
@media (max-width: 559.9px) {
  .quality__title-en {
    font-size: 3rem;
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.quality__line {
  display: block;
  width: 7.2rem;
  height: 1px;
  background-color: #d9d9d9;
}
@media (max-width: 559.9px) {
  .quality__line {
    width: 4rem;
  }
}
.quality__title-sub {
  font-size: min(2.4rem, 2vw);
  font-weight: 900;
  color: #FFFFFF;
}
@media (max-width: 559.9px) {
  .quality__title-sub {
    font-size: 1.8rem;
  }
}
.quality__text {
  font-size: 1.5rem;
  line-height: 1.75;
  color: #FFFFFF;
  max-width: 44.3rem;
}
@media (max-width: 559.9px) {
  .quality__text {
    font-size: 1.3rem;
  }
}
.quality__btn {
  min-width: 22rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.4rem 5.6rem;
  background-color: #FFFFFF;
  color: #0A0A09;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  transition: all 0.3s ease 0s;
  position: relative;
}
@media (max-width: 559.9px) {
  .quality__btn {
    padding: 1.2rem 4rem;
    font-size: 14px;
  }
}
.quality__btn svg {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
.quality__btn:hover {
  background-color: transparent;
  color: #FFFFFF;
}

/**************
INDEX - Equipment Section
**************/
.equip {
  position: relative;
  height: 66rem;
}
@media (max-width: 820.9px) {
  .equip {
    height: auto;
  }
}
.equip__bg {
  position: relative;
  width: 100%;
  height: 66rem;
}
@media (max-width: 820.9px) {
  .equip__bg {
    height: 50rem;
  }
}
@media (max-width: 559.9px) {
  .equip__bg {
    height: 40rem;
  }
}
.equip__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.equip__inner {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 50%;
  height: 100%;
}
@media (max-width: 820.9px) {
  .equip__inner {
    width: 100%;
  }
}
.equip__content {
  width: 100%;
  height: 100%;
  padding: 6rem 4rem;
  background-color: rgba(13, 13, 13, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 559.9px) {
  .equip__content {
    padding: 2rem;
  }
}
.equip__heading {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3rem;
  margin-bottom: 3.2rem;
}
@media (max-width: 559.9px) {
  .equip__heading {
    gap: 1.6rem;
    margin-bottom: 2rem;
  }
}
.equip__bar {
  display: block;
  width: 3.3rem;
  height: 30.2rem;
  background-color: #FFFFFF;
  flex-shrink: 0;
  -webkit-clip-path: polygon(0 22%, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 22%, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 559.9px) {
  .equip__bar {
    width: 2rem;
    height: 20rem;
  }
}
.equip__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  padding-top: 2.5rem;
}
.equip__title-main {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media (max-width: 559.9px) {
  .equip__title-main {
    flex-wrap: wrap;
    gap: 0;
  }
}
.equip__title-en {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  font-size: min(4.5rem, 4vw);
  font-style: italic;
  color: #FFFFFF;
  line-height: 1;
}
@media (max-width: 559.9px) {
  .equip__title-en {
    font-size: 3rem;
    width: 100%;
    margin-bottom: 0.4rem;
  }
}
.equip__line {
  display: block;
  width: 7.2rem;
  height: 1px;
  background-color: #d9d9d9;
}
@media (max-width: 559.9px) {
  .equip__line {
    width: 4rem;
  }
}
.equip__title-sub {
  font-size: min(2.4rem, 2vw);
  font-weight: 900;
  color: #FFFFFF;
}
@media (max-width: 559.9px) {
  .equip__title-sub {
    font-size: 1.8rem;
  }
}
.equip__text {
  font-size: 1.5rem;
  line-height: 1.75;
  color: #FFFFFF;
  max-width: 44.3rem;
}
@media (max-width: 559.9px) {
  .equip__text {
    font-size: 1.3rem;
  }
}
.equip__btn {
  min-width: 22rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.4rem 5.6rem;
  background-color: #FFFFFF;
  color: #0A0A09;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  transition: all 0.3s ease 0s;
  position: relative;
}
@media (max-width: 559.9px) {
  .equip__btn {
    padding: 1.2rem 4rem;
    font-size: 14px;
  }
}
.equip__btn svg {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
.equip__btn:hover {
  background-color: transparent;
  color: #FFFFFF;
}

/**************
INDEX - Group Section
**************/
.group {
  margin-top: 5rem;
  position: relative;
  height: 100rem;
}
@media (max-width: 820.9px) {
  .group {
    height: auto;
    padding: 6rem 0;
  }
}
@media (max-width: 559.9px) {
  .group {
    margin-top: 2rem;
    padding: 4rem 0;
    overflow: hidden;
  }
}
.group__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.group__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.group__inner {
  position: relative;
  max-width: 1340px;
  margin: 0 auto;
  padding: 5rem 9.4rem 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 820.9px) {
  .group__inner {
    padding: 0 4rem;
  }
}
@media (max-width: 559.9px) {
  .group__inner {
    padding: 0 2rem;
  }
}
.group__header {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 820.9px) {
  .group__header {
    gap: 3rem;
  }
}
@media (max-width: 559.9px) {
  .group__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
.group__heading {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}
@media (max-width: 820.9px) {
  .group__heading {
    gap: 2rem;
  }
}
.group__bar {
  display: block;
  width: 5.7rem;
  height: 21.6rem;
  background-color: #1D1B52;
  flex-shrink: 0;
  -webkit-clip-path: polygon(0 22%, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 22%, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 820.9px) {
  .group__bar {
    width: 4rem;
    height: 20rem;
  }
}
@media (max-width: 559.9px) {
  .group__bar {
    width: 3rem;
    height: 12rem;
  }
}
.group__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 3.6rem;
}
@media (max-width: 559.9px) {
  .group__title-wrap {
    gap: 0.4rem;
  }
}
.group__title-en {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 8.8rem;
  font-weight: 900;
  line-height: 1;
  font-size: min(8.8rem, 6vw);
  font-style: italic;
  color: #1D1B52;
  line-height: 1;
}
@media (max-width: 820.9px) {
  .group__title-en {
    font-size: 4.5rem;
  }
}
@media (max-width: 559.9px) {
  .group__title-en {
    font-size: 3rem;
  }
}
.group__title-ja {
  font-size: min(3rem, 2vw);
  font-weight: 700;
  color: #1D1B52;
}
@media (max-width: 820.9px) {
  .group__title-ja {
    font-size: 1.8rem;
  }
}
@media (max-width: 559.9px) {
  .group__title-ja {
    font-size: 1.6rem;
  }
}
.group__text {
  font-size: 1.6rem;
  line-height: 2;
  color: #0A0A09;
  max-width: 51.2rem;
}
@media (max-width: 820.9px) {
  .group__text {
    font-size: 1.4rem;
  }
}
.group__bottom {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 820.9px) {
  .group__bottom {
    margin: 11rem 0 5rem;
  }
}
@media (max-width: 559.9px) {
  .group__bottom {
    margin: 6rem 0 3rem;
  }
}
.group__circle {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 62.4rem;
  height: 62.4rem;
}
@media (max-width: 999.9px) {
  .group__circle {
    width: 50rem;
    height: 50rem;
  }
}
@media (max-width: 820.9px) {
  .group__circle {
    width: 35rem;
    height: 35rem;
  }
}
.group__circle-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: rotateCircle 40s linear infinite;
          animation: rotateCircle 40s linear infinite;
}
.group__links {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.7rem;
}
@media (max-width: 559.9px) {
  .group__links {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
.group__link-btn {
  min-width: 26rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 2rem 3rem;
  background-color: #1D1B52;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease 0s;
}
@media (max-width: 559.9px) {
  .group__link-btn {
    padding: 1.4rem 2rem;
    font-size: 15px;
  }
}
.group__link-btn svg {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
.group__link-btn:hover {
  background-color: #1D1B52;
  color: #FFFFFF;
}

/**************
INDEX - Recruit Section
**************/
.recruit {
  position: relative;
  overflow: hidden;
  margin: 5rem 0;
}
@media (max-width: 559.9px) {
  .recruit {
    margin-top: 2rem;
  }
}
.recruit__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.recruit__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.recruit__overlay {
  position: relative;
  z-index: 2;
  padding-top: 26rem;
  padding-bottom: 13rem;
}
@media (max-width: 820.9px) {
  .recruit__overlay {
    padding-top: 23rem;
    padding-bottom: 6rem;
  }
}
@media (max-width: 559.9px) {
  .recruit__overlay {
    padding-top: 12rem;
    padding-bottom: 19rem;
  }
}
.recruit__header {
  background-color: #175E95;
  padding: 4rem 0 4rem 12%;
}
@media (max-width: 820.9px) {
  .recruit__header {
    padding: 2rem 3.4rem;
  }
}
@media (max-width: 559.9px) {
  .recruit__header {
    padding: 2.5rem 5.6vw;
  }
}
.recruit__heading {
  max-width: 52%;
}
@media (max-width: 820.9px) {
  .recruit__heading {
    width: 39rem;
  }
}
@media (max-width: 559.9px) {
  .recruit__heading {
    width: 100%;
    max-width: inherit;
  }
}
.recruit__title-en {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 8.8rem;
  font-weight: 900;
  line-height: 1;
  font-size: min(8.8rem, 6vw);
  font-style: italic;
  color: #FFFFFF;
  line-height: 1;
}
@media (max-width: 999.9px) {
  .recruit__title-en {
    font-size: 5rem;
  }
}
@media (max-width: 559.9px) {
  .recruit__title-en {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}
.recruit__text {
  font-size: min(1.8rem, 1.3vw);
  margin-top: 1rem;
  line-height: 1.75;
  color: #FFFFFF;
}
@media (max-width: 559.9px) {
  .recruit__text {
    font-size: 1.3rem;
    line-height: 1.7;
  }
}
.recruit__line {
  margin-top: 2.8rem;
  display: block;
  width: 100%;
}
@media (max-width: 559.9px) {
  .recruit__line {
    margin-top: 1.5rem;
  }
}
.recruit__ellipse {
  position: absolute;
  z-index: 3;
}
.recruit__ellipse--large {
  max-width: 46rem;
  width: 28%;
  top: -31%;
  left: 26%;
}
@media (max-width: 1199.9px) {
  .recruit__ellipse--large {
    top: -20%;
  }
}
@media (max-width: 820.9px) {
  .recruit__ellipse--large {
    width: 36rem;
    height: 36rem;
    top: -29%;
    left: 8%;
  }
}
@media (max-width: 559.9px) {
  .recruit__ellipse--large {
    width: 21rem;
    height: 21rem;
    top: -19%;
    left: 2%;
  }
}
.recruit__ellipse--medium {
  max-width: 30rem;
  width: 20%;
  top: 14%;
  right: 11%;
}
@media (max-width: 820.9px) {
  .recruit__ellipse--medium {
    width: 24rem;
    height: 24rem;
    top: 10%;
    right: 18%;
  }
}
@media (max-width: 559.9px) {
  .recruit__ellipse--medium {
    width: 12rem;
    height: 12rem;
    top: 10%;
    right: 18%;
  }
}
.recruit__ellipse--small {
  max-width: 19.9rem;
  width: 14%;
  bottom: 4%;
  left: 7%;
}
@media (max-width: 820.9px) {
  .recruit__ellipse--small {
    width: 13.9rem;
    height: 13.9rem;
    bottom: 1%;
    left: 7%;
  }
}
@media (max-width: 559.9px) {
  .recruit__ellipse--small {
    display: none;
  }
}
.recruit__img {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
}
.recruit__img--43 {
  max-width: 40.8rem;
  width: 25%;
  top: -12%;
  right: -2%;
}
@media (max-width: 1199.9px) {
  .recruit__img--43 {
    top: -10%;
  }
}
@media (max-width: 820.9px) {
  .recruit__img--43 {
    width: 29.8rem;
    top: -15%;
    right: -2%;
  }
}
@media (max-width: 559.9px) {
  .recruit__img--43 {
    width: 18.8rem;
    top: -8%;
    right: -4%;
  }
}
.recruit__img--44 {
  max-width: 18.6rem;
  width: 15%;
  top: -2%;
  left: 28%;
}
@media (max-width: 820.9px) {
  .recruit__img--44 {
    width: 15.6rem;
    top: -3%;
    left: 12%;
  }
}
@media (max-width: 559.9px) {
  .recruit__img--44 {
    width: 10.6rem;
    top: -3%;
    left: 4%;
  }
}
.recruit__img--45 {
  max-width: 16.1rem;
  width: 13%;
  bottom: 1%;
  left: 45%;
}
@media (max-width: 820.9px) {
  .recruit__img--45 {
    width: 11.1rem;
    height: 11.1rem;
    bottom: 1%;
    left: 35%;
  }
}
@media (max-width: 559.9px) {
  .recruit__img--45 {
    display: none;
  }
}
.recruit__staff {
  position: absolute;
  z-index: 4;
  bottom: 0;
  right: 21rem;
  max-width: 48rem;
  width: 31%;
}
@media (max-width: 1199.9px) {
  .recruit__staff {
    right: -10%;
    width: 42%;
  }
}
@media (max-width: 999.9px) {
  .recruit__staff {
    right: -10%;
    width: 41%;
  }
}
@media (max-width: 559.9px) {
  .recruit__staff {
    width: 19rem;
    right: -12%;
  }
}
.recruit__circle-btn {
  position: absolute;
  bottom: 2%;
  right: 6%;
  width: 37.2rem;
  aspect-ratio: 1/1;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1199.9px) {
  .recruit__circle-btn {
    width: 30.2rem;
  }
}
@media (max-width: 820.9px) {
  .recruit__circle-btn {
    width: 28.2rem;
    bottom: 2%;
    right: 5%;
  }
}
@media (max-width: 559.9px) {
  .recruit__circle-btn {
    width: 22rem;
    height: 22rem;
    right: 35%;
  }
}
.recruit__circle-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: rotateCircle 40s linear infinite;
          animation: rotateCircle 40s linear infinite;
}
.recruit__btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 23.2rem;
  padding: 1.8rem 2.4rem;
  background-color: #FFFFFF;
  color: #0a0a09;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 4px;
  border: 1px solid #0A0A09;
  transition: all 0.3s ease 0s;
}
@media (max-width: 820.9px) {
  .recruit__btn {
    width: 18rem;
    padding: 1.4rem 2rem;
    font-size: 1.4rem;
  }
}
@media (max-width: 559.9px) {
  .recruit__btn {
    width: 18rem;
    padding: 1.2rem 2rem;
    font-size: 15px;
  }
}
.recruit__btn svg {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
@media (max-width: 820.9px) {
  .recruit__btn svg {
    right: 1.5rem;
    width: 1.6rem;
    height: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .recruit__btn svg {
    right: 1.2rem;
    width: 1.4rem;
    height: 1.4rem;
  }
}
.recruit__btn:hover {
  background-color: #0a0a09;
  color: #FFFFFF;
}

/**************
INDEX - Contact Section
**************/
.contact {
  position: relative;
  padding: 10rem 0;
}
@media (max-width: 820.9px) {
  .contact {
    padding: 6rem 0;
  }
}
@media (max-width: 559.9px) {
  .contact {
    padding: 4rem 0;
  }
}
.contact__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  isolation: isolate;
}
.contact__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  position: relative;
  z-index: 0;
}
.contact__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(148, 153, 160, 0.7);
  mix-blend-mode: multiply;
  z-index: 1;
}
.contact__inner {
  position: relative;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 4rem;
  text-align: center;
  z-index: 2;
}
@media (max-width: 559.9px) {
  .contact__inner {
    padding: 0 5.6vw;
  }
}
.contact__title-wrap {
  margin-bottom: 2.4rem;
}
.contact__title-en {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 12.8em;
  font-weight: 900;
  line-height: 1;
  font-size: min(12.8rem, 10vw);
  font-style: italic;
  color: #FFFFFF;
  line-height: 1;
}
@media (max-width: 999.9px) {
  .contact__title-en {
    font-size: 8rem;
  }
}
@media (max-width: 559.9px) {
  .contact__title-en {
    font-size: 5rem;
  }
}
.contact__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2rem;
}
@media (max-width: 559.9px) {
  .contact__title {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }
}
.contact__text {
  font-size: min(4rem, 3.6vw);
  font-weight: 900;
  line-height: 1.4;
  color: #FFFFFF;
  margin-bottom: 4rem;
}
@media (max-width: 820.9px) {
  .contact__text {
    font-size: 2.4rem;
  }
}
@media (max-width: 559.9px) {
  .contact__text {
    font-size: 1.8rem;
    margin-bottom: 2.4rem;
  }
}
.contact__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  margin-top: 5rem;
}
@media (max-width: 1199.9px) {
  .contact__bottom {
    flex-direction: column;
    gap: 4rem;
  }
}
@media (max-width: 820.9px) {
  .contact__bottom {
    gap: 3rem;
  }
}
.contact__buttons {
  text-align: center;
}
.contact__actions {
  margin-bottom: 2.4rem;
}
@media (max-width: 559.9px) {
  .contact__actions {
    margin-bottom: 1.6rem;
  }
}
.contact__main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: 47.5rem;
  height: 11.1rem;
  padding: 0 4rem;
  background-color: #1D1B52;
  border: 1px #FFFFFF solid;
  color: #FFFFFF;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  border-radius: 7rem;
  transition: all 0.3s ease 0s;
  position: relative;
}
@media (max-width: 1199.9px) {
  .contact__main-btn {
    width: 42rem;
    height: 10rem;
    font-size: 2.4rem;
  }
}
@media (max-width: 820.9px) {
  .contact__main-btn {
    width: 38rem;
    height: 9rem;
    font-size: 2rem;
  }
}
@media (max-width: 559.9px) {
  .contact__main-btn {
    width: 100%;
    height: 7rem;
    font-size: 1.6rem;
  }
}
.contact__main-btn svg {
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
}
@media (max-width: 559.9px) {
  .contact__main-btn svg {
    right: 2rem;
  }
}
.contact__main-btn:hover {
  background-color: #007eb6;
}
.contact__sub-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}
@media (max-width: 559.9px) {
  .contact__sub-actions {
    flex-direction: column;
    gap: 1.2rem;
  }
}
.contact__sub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 26.4rem;
  height: 7.2rem;
  padding: 0 2rem;
  background-color: #175E95;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  transition: all 0.3s ease 0s;
  position: relative;
}
@media (max-width: 1199.9px) {
  .contact__sub-btn {
    width: 24rem;
    height: 6.5rem;
  }
}
@media (max-width: 820.9px) {
  .contact__sub-btn {
    width: 22rem;
    height: 6rem;
  }
}
@media (max-width: 559.9px) {
  .contact__sub-btn {
    width: 22rem;
    height: auto;
    padding: 1.2rem 4rem;
    font-size: 15px;
  }
}
.contact__sub-btn svg {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
.contact__sub-btn:hover {
  background-color: #0A0A09;
  color: #FFFFFF;
}
.contact__phone {
  text-align: left;
}
@media (max-width: 1199.9px) {
  .contact__phone {
    text-align: center;
  }
}
.contact__phone-label {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.4;
  margin-bottom: 2rem;
}
@media (max-width: 559.9px) {
  .contact__phone-label {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
}
.contact__phone-box {
  display: inline-block;
  padding: 1rem 2.8rem;
  background-color: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
}
@media (max-width: 559.9px) {
  .contact__phone-box {
    padding: 1.6rem 2rem;
    width: 100%;
  }
}
.contact__phone-numbers p {
  font-size: 2.1rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.8;
}
@media (max-width: 559.9px) {
  .contact__phone-numbers p {
    font-size: 1.5rem;
  }
}
.contact__phone-hours {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.8;
  margin-top: 2rem;
}
@media (max-width: 559.9px) {
  .contact__phone-hours {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}

/**************
PAGE - Page Hero (Common)
**************/
.page-hero {
  position: relative;
  height: 70rem;
}
@media (max-width: 820.9px) {
  .page-hero {
    height: 50rem;
  }
}
@media (max-width: 559.9px) {
  .page-hero {
    height: 40rem;
  }
}
.page-hero.single_page {
  height: 32rem;
}
.page-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-hero__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background-color: rgba(12, 12, 12, 0.3);
  z-index: 1;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.page-hero__bg .breadcrumb {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2rem 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
}
@media (max-width: 559.9px) {
  .page-hero__bg .breadcrumb {
    padding: 1.5rem 0;
  }
}
.page-hero__bg .breadcrumb__inner {
  max-width: 120rem;
  padding: 0 12rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  font-size: 1.4rem;
  color: #444444;
}
@media (max-width: 820.9px) {
  .page-hero__bg .breadcrumb__inner {
    padding: 0 4rem;
  }
}
@media (max-width: 559.9px) {
  .page-hero__bg .breadcrumb__inner {
    padding: 0 5.6vw;
    font-size: 1.2rem;
  }
}
.page-hero__bg .breadcrumb__inner a {
  color: #444444;
}
.page-hero__bg .breadcrumb__inner a:hover {
  color: #00A1E9;
}
.page-hero__bg .breadcrumb__separator {
  color: #444444;
}
.page-hero__bg .breadcrumb__current {
  color: #444444;
}
.page-hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.page-hero__en {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  font-style: italic;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
@media (max-width: 559.9px) {
  .page-hero__en {
    margin-bottom: 1rem;
  }
}
.page-hero__title {
  font-size: 6.4rem;
  font-size: min(6.4rem, 6vw);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 559.9px) {
  .page-hero__title {
    font-size: 3rem;
  }
}
.page-hero__title.single {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .page-hero__title.single {
    font-size: 3rem;
  }
}
@media (max-width: 559.9px) {
  .page-hero__title.single {
    font-size: 2rem;
  }
}

/**************
COMMON - Section Heading
**************/
.section-heading {
  text-align: center;
  margin-bottom: 4rem;
  color: #1D1B52;
}
@media (max-width: 559.9px) {
  .section-heading {
    margin-bottom: 2rem;
  }
}
.section-heading__title-en {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  font-size: min(6rem, 5.6vw);
  font-style: italic;
  line-height: 1;
  display: block;
}
@media (max-width: 999.9px) {
  .section-heading__title-en {
    font-size: 4.5rem;
  }
}
@media (max-width: 559.9px) {
  .section-heading__title-en {
    font-size: 2.8rem;
  }
}
.section-heading__title-ja {
  font-size: 2.4rem;
  font-weight: 900;
  margin-top: 1rem;
}
@media (max-width: 559.9px) {
  .section-heading__title-ja {
    font-size: 16px;
    margin-top: 0;
  }
}
.section-heading.white {
  color: #FFFFFF;
}

/**************
COMPANY PAGE - Message Section
**************/
.company-message {
  padding: 10rem 0;
  background-color: #FFFFFF;
}
@media (max-width: 820.9px) {
  .company-message {
    padding: 6rem 0;
  }
}
@media (max-width: 559.9px) {
  .company-message {
    padding: 4rem 0;
  }
}
.company-message__flex {
  display: flex;
  align-items: center;
}
@media (max-width: 820.9px) {
  .company-message__flex {
    flex-direction: column;
  }
}
.company-message__content {
  width: calc(100% - 400px);
  margin: 0 auto;
  padding-right: 3rem;
}
@media (max-width: 820.9px) {
  .company-message__content {
    width: 100%;
  }
}
.company-message__president {
  width: 400px;
}
@media (max-width: 820.9px) {
  .company-message__president {
    width: 300px;
  }
}
.company-message__text {
  font-size: 1.6rem;
  line-height: 2.1;
  color: #0A0A09;
  margin-bottom: 2rem;
}
@media (max-width: 559.9px) {
  .company-message__text {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
}
.company-message__text:last-of-type {
  margin-bottom: 3rem;
}
.company-message__signature {
  font-size: 2.4rem;
  margin-top: 1.6rem;
  text-align: center;
  font-weight: 700;
}
@media (max-width: 559.9px) {
  .company-message__signature {
    font-size: 15px;
  }
}

/**************
COMPANY PAGE - Philosophy Section
**************/
.company-philosophy {
  padding: 0 0 10rem;
  background-color: #FFFFFF;
}
@media (max-width: 820.9px) {
  .company-philosophy {
    padding: 0 0 6rem;
  }
}
@media (max-width: 559.9px) {
  .company-philosophy {
    padding: 0 0 4rem;
  }
}
.company-philosophy__box {
  background-color: #EFEEEE;
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem;
}
@media (max-width: 559.9px) {
  .company-philosophy__box {
    padding: 0.8rem;
  }
}
.company-philosophy__image {
  max-width: 87rem;
  width: 86%;
  position: relative;
}
@media (max-width: 820.9px) {
  .company-philosophy__image {
    width: 100%;
    max-width: 50rem;
  }
}
.company-philosophy__image img {
  width: 100%;
  height: auto;
}
.company-philosophy__head {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
}
.company-philosophy__head .eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  font-size: min(6rem, 5.6vw);
  font-style: italic;
  color: #1D1B52;
  line-height: 1;
}
@media (max-width: 999.9px) {
  .company-philosophy__head .eng {
    font-size: 4.5rem;
  }
}
@media (max-width: 559.9px) {
  .company-philosophy__head .eng {
    font-size: 2.1rem;
  }
}
.company-philosophy__head .jp {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
  color: #1D1B52;
  margin-top: 1rem;
}
@media (max-width: 559.9px) {
  .company-philosophy__head .jp {
    font-size: 15px;
    margin-top: 0;
  }
}
.company-philosophy__logo {
  position: absolute;
  width: 23rem;
  top: 50%;
  transform: translateY(-50%);
  left: 15%;
}
@media (max-width: 1199.9px) {
  .company-philosophy__logo {
    width: 20rem;
  }
}
@media (max-width: 999.9px) {
  .company-philosophy__logo {
    left: 12%;
  }
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .company-philosophy__logo {
    width: 140px;
  }
}
@media (max-width: 559.9px) {
  .company-philosophy__logo {
    width: 78px;
  }
}
.company-philosophy__ics {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 7%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 559.9px) {
  .company-philosophy__ics {
    gap: 1rem;
    right: 5%;
  }
}
.company-philosophy__ics-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
}
@media (max-width: 559.9px) {
  .company-philosophy__ics-item {
    gap: 0.4rem;
  }
}
.company-philosophy__ics-bullet {
  width: 2.1rem;
  height: 2.1rem;
  background-color: #175E95;
}
@media (max-width: 559.9px) {
  .company-philosophy__ics-bullet {
    width: 13px;
    height: 13px;
  }
}
.company-philosophy__ics-text {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  font-size: min(3rem, 2.6vw);
  color: #0A0A09;
  letter-spacing: 0.1em;
}
@media (max-width: 559.9px) {
  .company-philosophy__ics-text {
    font-size: 15px;
  }
}
.company-philosophy__catch {
  font-size: 2rem;
  font-weight: 900;
  color: #0A0A09;
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media (max-width: 999.9px) {
  .company-philosophy__catch {
    font-size: 1.8rem;
  }
}
@media (max-width: 820.9px) {
  .company-philosophy__catch {
    white-space: inherit;
  }
}
@media (max-width: 559.9px) {
  .company-philosophy__catch {
    font-size: 13px;
    bottom: 10%;
    text-align: center;
  }
}
@media (min-width: 560px) {
  .company-philosophy__catch br {
    display: none;
  }
}

/**************
COMPANY PAGE - Quality Section
**************/
.company-quality {
  padding: 0 0 10rem;
  background-color: #FFFFFF;
}
@media (max-width: 820.9px) {
  .company-quality {
    padding: 0 0 6rem;
  }
}
@media (max-width: 559.9px) {
  .company-quality {
    padding: 0 0 4rem;
  }
}
.company-quality__box {
  background-color: #175E95;
  border-radius: 8px;
  padding: 11.9rem 0;
}
@media (max-width: 999.9px) {
  .company-quality__box {
    padding: 6rem 0;
  }
}
@media (max-width: 820.9px) {
  .company-quality__box {
    padding: 5rem 0;
  }
}
@media (max-width: 559.9px) {
  .company-quality__box {
    padding: 2rem;
  }
}
.company-quality__lead {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 559.9px) {
  .company-quality__lead {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.company-quality__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 559.9px) {
  .company-quality__list {
    gap: 1.6rem;
    width: 100%;
  }
}
.company-quality__item {
  display: flex;
  gap: 2.4rem;
  height: 80px;
}
@media (max-width: 559.9px) {
  .company-quality__item {
    gap: 0.8rem;
    flex-direction: column;
    align-items: center;
    height: auto;
  }
}
.company-quality__item-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  width: 13.1rem;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  background-color: #1D1B52;
  border-radius: 0.5rem;
  flex-shrink: 0;
}
@media (max-width: 559.9px) {
  .company-quality__item-number {
    width: 6rem;
    height: 3.6rem;
    font-size: 2rem;
  }
}
.company-quality__item-text {
  border-radius: 0.5rem;
  flex: 1;
  padding: 1.5rem 2.5rem;
  font-size: 1.6rem;
  color: #0A0A09;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 559.9px) {
  .company-quality__item-text {
    padding: 0.8rem;
    font-size: 14px;
    width: 100%;
  }
}

/**************
COMPANY PAGE - Environment Section
**************/
.company-environment {
  padding: 0 0 10rem;
  background-color: #FFFFFF;
}
@media (max-width: 820.9px) {
  .company-environment {
    padding: 0 0 6rem;
  }
}
@media (max-width: 559.9px) {
  .company-environment {
    padding: 0 0 4rem;
  }
}
.company-environment__box {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 559.9px) {
  .company-environment__box {
    padding: 2rem;
  }
}
.company-environment__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.company-environment__content {
  position: relative;
  z-index: 2;
  padding: 11.9rem 0;
}
@media (max-width: 820.9px) {
  .company-environment__content {
    padding: 5rem 0;
  }
}
@media (max-width: 559.9px) {
  .company-environment__content {
    padding: 0;
  }
}
.company-environment__section {
  margin-bottom: 3rem;
  text-align: center;
  width: 80%;
  margin: 0 auto 3rem;
}
@media (max-width: 559.9px) {
  .company-environment__section {
    margin-bottom: 2rem;
    width: 100%;
  }
}
.company-environment__section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2.5rem;
  background-color: #1D1B52;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 559.9px) {
  .company-environment__section-label {
    padding: 1rem 1.5rem;
    font-size: 1.3rem;
  }
}
.company-environment__section-text {
  font-size: 18px;
  line-height: 1.75;
  color: #0A0A09;
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  font-weight: 700;
}
@media (max-width: 559.9px) {
  .company-environment__section-text {
    font-size: 1.3rem;
    padding: 1.5rem;
  }
}
.company-environment__policies {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 559.9px) {
  .company-environment__policies {
    gap: 1.5rem;
    width: 100%;
  }
}
.company-environment__policy {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #FFFFFF;
  border-radius: 1rem;
  padding: 2rem;
}
@media (max-width: 559.9px) {
  .company-environment__policy {
    padding: 1.5rem;
    align-items: flex-start;
  }
}
.company-environment__policy--large {
  flex-direction: row;
  align-items: flex-start;
}
.company-environment__policy--large .company-environment__policy-number {
  margin-bottom: 0;
  margin-right: 2rem;
}
.company-environment__policy--large .company-environment__policy-content {
  flex: 1;
}
.company-environment__policy-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  background-color: #1D1B52;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 2rem;
}
@media (max-width: 559.9px) {
  .company-environment__policy-number {
    width: 3rem;
    height: 3rem;
    font-size: 14px;
    margin-right: 1rem;
  }
}
.company-environment__policy-text {
  line-height: 1.7;
  color: #0A0A09;
  flex: 1;
}
@media (max-width: 559.9px) {
  .company-environment__policy-text {
    font-size: 1.3rem;
  }
}
.company-environment__policy-content {
  width: 100%;
}
.company-environment__policy-list {
  margin-top: 1.5rem;
  margin-left: 1.5rem;
}
@media (max-width: 559.9px) {
  .company-environment__policy-list {
    margin-left: 0;
  }
}
.company-environment__policy-list li {
  margin-bottom: 1rem;
}
.company-environment__policy-list li span {
  font-weight: 700;
  color: #0A0A09;
  display: block;
  margin-bottom: 0.3rem;
}
@media (max-width: 559.9px) {
  .company-environment__policy-list li span {
    font-size: 1.2rem;
  }
}
.company-environment__policy-list li p {
  line-height: 1.6;
  color: #0A0A09;
  margin-left: 1.5rem;
}
@media (max-width: 559.9px) {
  .company-environment__policy-list li p {
    font-size: 1.2rem;
    margin-left: 1rem;
  }
}

/**************
COMPANY PAGE - Info Section
**************/
.company-info {
  padding: 0 0 10rem 0;
  background-color: #FFFFFF;
}
@media (max-width: 820.9px) {
  .company-info {
    padding: 6rem 0;
  }
}
@media (max-width: 559.9px) {
  .company-info {
    padding: 4rem 0;
  }
}
.company-info__table-wrap {
  width: 100%;
}
.company-info__table {
  width: 100%;
  border-collapse: collapse;
}
.company-info__table tr {
  border-top: 1px solid #ddd;
}
.company-info__table tr:last-child {
  border-bottom: 1px solid #ddd;
}
.company-info__table th, .company-info__table td {
  padding: 2.4rem 2rem;
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}
@media (max-width: 559.9px) {
  .company-info__table th, .company-info__table td {
    padding: 1.6rem 0 0;
    font-size: 1.4rem;
    display: block;
    width: 100%;
  }
}
.company-info__table th {
  width: 18rem;
  font-weight: 700;
  color: #0A0A09;
  flex-shrink: 0;
}
@media (max-width: 820.9px) {
  .company-info__table th {
    width: 14rem;
  }
}
@media (max-width: 559.9px) {
  .company-info__table th {
    width: 100%;
    margin-bottom: 0;
  }
}
.company-info__table td {
  color: #0A0A09;
  margin-bottom: 1.6rem;
}
.company-info__table td ul {
  margin-bottom: 1.2rem;
}
.company-info__table .access_link {
  display: block;
  margin-top: 0.8rem;
}
.company-info__table .access_link a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 6px 24px;
  background-color: #1D1B52;
  color: #FFFFFF;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  font-style: italic;
  border-radius: 3px;
  transition: all 0.3s ease 0s;
}
.company-info__table .access_link a:hover {
  background-color: #124872;
}
.company-info__table .access_link a:hover .access_link__arrow {
  transform: translateX(4px);
}
.company-info__table .access_link .access_link__arrow {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  vertical-align: middle;
  transition: all 0.3s ease 0s;
}
.company-info__table .access_link .access_link__arrow svg:last-child {
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s ease 0s;
}
.company-info__table .access_link a:hover .access_link__arrow {
  transform: translateX(3px);
}
.company-info__table .access_link a:hover .access_link__arrow svg:last-child {
  opacity: 1;
  transform: translateX(0);
}
.company-info__location {
  margin-bottom: 2rem;
}
.company-info__location:last-child {
  margin-bottom: 0;
}
.company-info__location-name {
  font-weight: 700;
  margin-bottom: 0.4rem;
}

/**************
COMPANY PAGE - History Section
**************/
.company-history {
  padding: 0 0 10rem;
  background-color: #FFFFFF;
}
@media (max-width: 820.9px) {
  .company-history {
    padding: 0 0 6rem;
  }
}
@media (max-width: 559.9px) {
  .company-history {
    padding: 0 0 4rem;
  }
}
.company-history__table-wrap {
  width: 100%;
}
.company-history__table {
  width: 100%;
  border-collapse: collapse;
}
.company-history__table tr {
  border-top: 1px solid #ddd;
}
.company-history__table tr:last-child {
  border-bottom: 1px solid #ddd;
}
.company-history__table th, .company-history__table td {
  padding: 2rem;
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}
@media (max-width: 559.9px) {
  .company-history__table th, .company-history__table td {
    padding: 1.4rem 0;
    font-size: 1.4rem;
    display: block;
    width: 100%;
  }
}
.company-history__table th {
  width: 14rem;
  font-weight: 700;
  color: #0A0A09;
  white-space: nowrap;
}
@media (max-width: 559.9px) {
  .company-history__table th {
    width: 100%;
    padding-bottom: 0.4rem;
  }
}
.company-history__table td {
  color: #0A0A09;
}
.company-history__event {
  font-weight: 700;
}
.company-history__detail {
  color: #666;
  margin-top: 0.4rem;
}
@media (max-width: 559.9px) {
  .company-history__detail {
    font-size: 1.3rem;
  }
}

/**************
INDEX - Footer
**************/
.footer__locations {
  padding: 4.4rem 0 0;
}
@media (max-width: 820.9px) {
  .footer__locations {
    padding: 4rem 0 0;
  }
}
@media (max-width: 559.9px) {
  .footer__locations {
    padding: 3rem 0;
  }
}
.footer__logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 4rem;
}
@media (max-width: 559.9px) {
  .footer__logo-area {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
  }
}
.footer__logo-img {
  height: auto;
  width: auto;
  max-height: 7.4rem;
}
@media (max-width: 559.9px) {
  .footer__logo-img {
    max-height: 5rem;
  }
}
.footer__locations-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0.1rem solid #FFFFFF;
}
@media (max-width: 820.9px) {
  .footer__locations-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 559.9px) {
  .footer__locations-row {
    grid-template-columns: 1fr;
  }
}
.footer__locations-row--first .footer__location {
  border-right: 0.1rem solid #FFFFFF;
}
@media (max-width: 820.9px) {
  .footer__locations-row--first .footer__location:nth-child(2n) {
    border-right: none;
  }
  .footer__locations-row--first .footer__location:nth-child(n+3) {
    border-top: 0.1rem solid #FFFFFF;
  }
}
@media (max-width: 559.9px) {
  .footer__locations-row--first .footer__location {
    border-right: none;
  }
  .footer__locations-row--first .footer__location:nth-child(n+2) {
    border-top: 0.1rem solid #FFFFFF;
  }
}
.footer__locations-row--first .footer__location:last-child {
  border-right: none;
}
.footer__locations-row--second {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 820.9px) {
  .footer__locations-row--second {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 559.9px) {
  .footer__locations-row--second {
    grid-template-columns: 1fr;
  }
}
.footer__locations-row--second .footer__location {
  border-right: 0.1rem solid #FFFFFF;
}
@media (max-width: 820.9px) {
  .footer__locations-row--second .footer__location:nth-child(2n) {
    border-right: none;
  }
  .footer__locations-row--second .footer__location:nth-child(n+3) {
    border-top: 0.1rem solid #FFFFFF;
  }
  .footer__locations-row--second .footer__location:nth-child(3) {
    width: 100%;
    grid-column: 1/-1;
  }
}
@media (max-width: 559.9px) {
  .footer__locations-row--second .footer__location {
    border-right: none;
  }
  .footer__locations-row--second .footer__location:nth-child(n+2) {
    border-top: 0.1rem solid #FFFFFF;
  }
}
.footer__locations-row--second .footer__location:last-child {
  border-right: none;
}
.footer__location {
  text-align: center;
  padding: 4.4rem 2rem;
}
@media (max-width: 559.9px) {
  .footer__location {
    padding: 2.4rem 1.5rem;
  }
}
.footer__location h3 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 559.9px) {
  .footer__location h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
}
.footer__location p {
  font-size: 1.5rem;
  line-height: 1.6;
}
@media (max-width: 559.9px) {
  .footer__location p {
    font-size: 1.3rem;
  }
}
.footer__top_wrap {
  background-color: #FFFFFF;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8rem;
  padding: 8rem 4rem 0;
}
@media (max-width: 820.9px) {
  .footer__top_wrap {
    padding: 5rem 4rem;
  }
}
@media (max-width: 559.9px) {
  .footer__top_wrap {
    padding: 3rem 2rem;
    flex-direction: column;
    gap: 2.4rem;
  }
}
.footer__logo_img {
  display: block;
  width: 200px;
}
@media (max-width: 559.9px) {
  .footer__logo_img {
    width: 120px;
  }
}
.footer__com_info {
  color: #0A0A09;
}
.footer__com_info dt {
  font-weight: 700;
}
.footer__bottom-wrap {
  background-color: #FFFFFF;
}
.footer__nav {
  padding: 8rem 4rem;
}
@media (max-width: 820.9px) {
  .footer__nav {
    display: none;
  }
}
.footer__nav-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 120rem;
  margin: 0 auto;
}
@media (max-width: 820.9px) {
  .footer__nav-inner {
    flex-wrap: wrap;
    gap: 3.2rem;
  }
}
@media (max-width: 820.9px) {
  .footer__nav-inner {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
}
.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer__nav-col a {
  font-size: 1.5rem;
  color: #121b37;
  letter-spacing: 0.04em;
}
@media (max-width: 559.9px) {
  .footer__nav-col a {
    font-size: 1.3rem;
  }
}
.footer__nav-col a:hover {
  color: #175e95;
  text-decoration: underline;
}
.footer__nav-sub::before {
  content: "一";
  margin-right: 0.4rem;
  color: #121b37;
  text-decoration: none;
  display: inline-block;
}
.footer__emidas {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__emidas img {
  border-radius: 4px;
}
.footer__bottom {
  padding: 2.4rem 4rem;
  text-align: center;
  background-color: #FFFFFF;
}
@media (max-width: 559.9px) {
  .footer__bottom {
    padding: 2rem 5.6vw;
  }
}
.footer__copyright {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  font-style: italic;
  color: #121b37;
}
@media (max-width: 559.9px) {
  .footer__copyright {
    font-size: 1.1rem;
  }
}

/**************
Common parts (共通パーツ)
**************/
.mauto {
  margin-left: auto;
  margin-right: auto;
}

.sp-scroll {
  width: 100%;
  overflow-x: auto;
}

/**************
Common Title Component (共通タイトル)
**************/
.common-title {
  margin-bottom: 6rem;
  position: relative;
  padding-left: 4.6rem;
}
@media (max-width: 999.9px) {
  .common-title {
    padding-left: 4rem;
  }
}
@media (max-width: 820.9px) {
  .common-title {
    margin-bottom: 4rem;
  }
}
@media (max-width: 559.9px) {
  .common-title {
    padding-left: 3rem;
  }
}
.common-title::before {
  content: "";
  display: block;
  width: 2.6rem;
  height: 130%;
  background-color: #1D1B52;
  -webkit-clip-path: polygon(0 22%, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 22%, 100% 0, 100% 100%, 0 100%);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 999.9px) {
  .common-title::before {
    width: 2rem;
  }
}
@media (max-width: 559.9px) {
  .common-title::before {
    width: 1.6rem;
  }
}
.common-title__text {
  display: flex;
  flex-direction: column;
}
.common-title__en {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  font-size: min(6rem, 5vw);
  font-style: italic;
  display: block;
  line-height: 1;
  color: #1D1B52;
}
@media (max-width: 820.9px) {
  .common-title__en {
    font-size: 4rem;
  }
}
@media (max-width: 559.9px) {
  .common-title__en {
    font-size: 2.4rem;
  }
}
.common-title__ja {
  font-size: 2.1rem;
  font-weight: 700;
  color: #1D1B52;
  margin-top: 0.8rem;
}
@media (max-width: 820.9px) {
  .common-title__ja {
    font-size: 1.8rem;
    margin-top: 0;
  }
}
@media (max-width: 559.9px) {
  .common-title__ja {
    font-size: 15px;
    margin-top: 0.4rem;
  }
}

/**************
Common Button (共通ボタン)
**************/
.common-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 28rem;
  padding: 1.6rem 4rem;
  background-color: #00A1E9;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid #00A1E9;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease 0s;
}
@media (max-width: 559.9px) {
  .common-btn {
    min-width: 24rem;
    padding: 1.4rem 3rem;
    font-size: 1.4rem;
    margin: 0 auto;
  }
}
.common-btn:hover {
  background-color: #0A0A09;
  color: #FFFFFF;
}
.common-btn svg {
  transition: all 0.3s ease 0s;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
.common-btn--blue {
  background-color: #00a1e9;
  color: #FFFFFF;
  border-color: #00a1e9;
}
.common-btn--blue:hover {
  background-color: #007eb6;
  border-color: #007eb6;
}

/**************
Common Link Button (共通リンクボタン)
**************/
.common-link-btn {
  min-width: 22rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 2rem 8rem;
  background-color: #00a1e9;
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s ease 0s;
  position: relative;
}
@media (max-width: 559.9px) {
  .common-link-btn {
    padding: 1.2rem 2.4rem;
    font-size: 15px;
  }
}
.common-link-btn svg {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
.common-link-btn:hover {
  opacity: 0.8;
}

/**************
Common Button Box (共通ButtonBox)
**************/
.button-box2 {
  margin-top: 2rem;
}
@media (max-width: 559.9px) {
  .button-box2 {
    margin-top: 0.8rem;
  }
}

.button-box3 {
  margin-top: 3rem;
}
@media (max-width: 559.9px) {
  .button-box3 {
    margin-top: 2rem;
  }
}

.button-box4 {
  margin-top: 4rem;
}
@media (max-width: 559.9px) {
  .button-box4 {
    margin-top: 2rem;
  }
}

.button-box5 {
  margin-top: 5rem;
}
@media (max-width: 559.9px) {
  .button-box5 {
    margin-top: 2rem;
  }
}

.button-box6 {
  margin-top: 6rem;
}
@media (max-width: 559.9px) {
  .button-box6 {
    margin-top: 3rem;
  }
}

/**************
Section Title (共通セクションタイトル)
**************/
.section-title {
  width: 500px;
  display: flex;
  justify-content: center;
  margin: 0 auto 5rem;
  background-color: #1D1B52;
  border-radius: 50px;
}
@media (max-width: 999.9px) {
  .section-title {
    width: 450px;
  }
}
@media (max-width: 820.9px) {
  .section-title {
    margin: 5rem auto 3rem;
  }
}
@media (max-width: 559.9px) {
  .section-title {
    margin: 4rem auto 2rem;
    width: 100%;
  }
}
.section-title span {
  display: inline-block;
  padding: 0.8rem;
  color: #FFFFFF;
  font-size: 3.6rem;
  font-weight: 700;
}
@media (max-width: 999.9px) {
  .section-title span {
    font-size: 2.8rem;
  }
}
@media (max-width: 559.9px) {
  .section-title span {
    font-size: 17px;
  }
}
.section-title--mt6 {
  margin-top: 6rem;
}
@media (max-width: 820.9px) {
  .section-title--mt6 {
    margin-top: 4rem;
  }
}
@media (max-width: 559.9px) {
  .section-title--mt6 {
    margin-top: 3rem;
  }
}

/**************
ACCESS PAGE - Location Sections
**************/
.access-category {
  margin-bottom: 6rem;
}
@media (max-width: 820.9px) {
  .access-category {
    margin-bottom: 4rem;
  }
}
@media (max-width: 559.9px) {
  .access-category {
    margin-bottom: 3rem;
  }
}
.access-category:last-child {
  margin-bottom: 0;
}
.access-category__heading {
  margin-bottom: 3rem;
  text-align: center;
}
@media (max-width: 820.9px) {
  .access-category__heading {
    margin-bottom: 2rem;
  }
}
@media (max-width: 559.9px) {
  .access-category__heading {
    margin-bottom: 1.6rem;
  }
}
.access-category__title {
  font-size: 3.6rem;
  font-weight: 900;
  color: #0A0A09;
}
@media (max-width: 820.9px) {
  .access-category__title {
    font-size: 3rem;
  }
}
@media (max-width: 559.9px) {
  .access-category__title {
    font-size: 2.4rem;
  }
}

.location-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  margin-bottom: 2.4rem;
  padding: 2.8rem;
}
@media (max-width: 820.9px) {
  .location-card {
    margin-bottom: 2rem;
    padding: 2rem;
  }
}
@media (max-width: 559.9px) {
  .location-card {
    margin-bottom: 1.6rem;
    padding: 1.6rem;
  }
}
.location-card:last-child {
  margin-bottom: 0;
}
.location-card__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #0A0A09;
  line-height: 1.5;
  margin-bottom: 2.4rem;
}
@media (max-width: 820.9px) {
  .location-card__title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 559.9px) {
  .location-card__title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }
}
.location-card__body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}
@media (max-width: 820.9px) {
  .location-card__body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 559.9px) {
  .location-card__body {
    gap: 1.6rem;
  }
}
.location-card__left {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (max-width: 559.9px) {
  .location-card__left {
    gap: 1.2rem;
  }
}
.location-card__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #EFEEEE;
  border-radius: 12px;
  padding: 2rem 2.4rem;
}
@media (max-width: 559.9px) {
  .location-card__info {
    padding: 1.6rem;
    gap: 0.8rem;
  }
}
.location-card__info-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
@media (max-width: 559.9px) {
  .location-card__info-row {
    gap: 0.8rem;
  }
}
.location-card__info-icon {
  position: relative;
  width: 18px;
  height: 18px;
}
.location-card__info-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.location-card__info-text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #0A0A09;
}
@media (max-width: 559.9px) {
  .location-card__info-text {
    font-size: 1.4rem;
  }
}
.location-card__access {
  background-color: #FFFFFF;
  border: 2px dashed #1B1689;
  padding: 1.6rem 2.4rem;
  border-radius: 12px;
}
@media (max-width: 559.9px) {
  .location-card__access {
    padding: 1.4rem 1.6rem;
  }
}
.location-card__access-item {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #0A0A09;
  margin-bottom: 1rem;
}
@media (max-width: 559.9px) {
  .location-card__access-item {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
}
.location-card__access-item span {
  font-weight: 700;
}
.location-card__access-item:last-child {
  margin-bottom: 0;
}
.location-card__website-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 1.6rem auto 0;
  padding: 1.4rem 3rem;
  background-color: #FFFFFF;
  color: #175E95;
  border: 2px solid #175E95;
  border-radius: 50px;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  font-style: italic;
  transition: all 0.3s ease 0s;
}
@media (max-width: 559.9px) {
  .location-card__website-btn {
    padding: 1.2rem 2rem;
    font-size: 14px;
  }
}
.location-card__website-btn:hover {
  background-color: #175E95;
  color: #FFFFFF;
}
.location-card__website-btn-icon {
  transition: all 0.3s ease 0s;
}
.location-card__website-btn:hover .location-card__website-btn-icon {
  transform: translate(3px, -3px);
}
.location-card__map {
  border-radius: 12px;
  overflow: hidden;
  background-color: #f5f5f5;
}
@media (max-width: 820.9px) {
  .location-card__map {
    aspect-ratio: 16/9;
  }
}
.location-card__map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
}
@media (max-width: 820.9px) {
  .location-card__map iframe {
    min-height: auto;
  }
}

/**************
ACCESS PAGE - ICS BASES Section
**************/
.ics-bases__title {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 9.6rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  font-size: min(9.6rem, 8.8vw);
  color: #0A0A09;
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 820.9px) {
  .ics-bases__title {
    font-size: 6rem;
    margin-bottom: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .ics-bases__title {
    font-size: 4rem;
    margin-bottom: 0.4rem;
  }
}
.ics-bases__subtitle {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
  color: #0A0A09;
  margin-bottom: 9rem;
}
@media (max-width: 820.9px) {
  .ics-bases__subtitle {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 559.9px) {
  .ics-bases__subtitle {
    font-size: 16px;
    margin-bottom: 3rem;
  }
}
.ics-bases__maps {
  display: flex;
  gap: 2rem;
  width: 100%;
  aspect-ratio: 1160/820;
}
@media (max-width: 999.9px) {
  .ics-bases__maps {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    aspect-ratio: inherit;
    max-width: 750px;
    margin: 0 auto;
  }
}
@media (max-width: 559.9px) {
  .ics-bases__maps {
    gap: 3rem;
  }
}
.ics-bases__map-item {
  position: relative;
  height: 100%;
}
.ics-bases__map-item img {
  max-width: 100%;
  height: auto;
  display: block;
}
.ics-bases__map-item__text {
  position: absolute;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #0A0A09;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  transition: all 0.2s ease;
  font-size: 1.4rem;
}
@media (max-width: 1199.9px) {
  .ics-bases__map-item__text {
    height: 34px;
    padding: 0 1rem;
  }
}
@media (max-width: 559.9px) {
  .ics-bases__map-item__text {
    font-size: 14px;
    height: 30px;
    padding: 0 0.8rem;
  }
}
.ics-bases__map-item__text_01 {
  top: 40%;
  left: 40%;
}
@media (max-width: 999.9px) {
  .ics-bases__map-item__text_01 {
    top: 41%;
  }
}
@media (max-width: 559.9px) {
  .ics-bases__map-item__text_01 {
    top: 37%;
    left: 35%;
  }
}
.ics-bases__map-item__text_01:hover {
  background-color: rgba(10, 10, 9, 0.8);
}
.ics-bases__map-item__text_02 {
  top: 47%;
  left: 19%;
}
@media (max-width: 1199.9px) {
  .ics-bases__map-item__text_02 {
    left: 18%;
  }
}
@media (max-width: 999.9px) {
  .ics-bases__map-item__text_02 {
    left: 21%;
  }
}
@media (max-width: 559.9px) {
  .ics-bases__map-item__text_02 {
    top: 43%;
    left: -3%;
  }
}
.ics-bases__map-item__text_02:hover {
  background-color: rgba(10, 10, 9, 0.8);
}
.ics-bases__map-item__text_03 {
  top: 53%;
  left: 19%;
}
@media (max-width: 1199.9px) {
  .ics-bases__map-item__text_03 {
    left: 18%;
  }
}
@media (max-width: 999.9px) {
  .ics-bases__map-item__text_03 {
    left: 21%;
  }
}
@media (max-width: 559.9px) {
  .ics-bases__map-item__text_03 {
    left: -3%;
  }
}
.ics-bases__map-item__text_03:hover {
  background-color: rgba(10, 10, 9, 0.8);
}
.ics-bases__map-item__text_04 {
  bottom: 27%;
  right: 14%;
}
@media (max-width: 999.9px) {
  .ics-bases__map-item__text_04 {
    right: 15%;
  }
}
@media (max-width: 559.9px) {
  .ics-bases__map-item__text_04 {
    right: 1%;
  }
}
.ics-bases__map-item__text_05 {
  bottom: 19%;
  right: 11%;
}
@media (max-width: 559.9px) {
  .ics-bases__map-item__text_05 {
    bottom: 15%;
    right: -4%;
  }
}
.ics-bases__map-item__text_05:hover {
  background-color: rgba(10, 10, 9, 0.8);
}
.ics-bases__map-item__text_06 {
  bottom: 12%;
  right: 36%;
}
@media (max-width: 559.9px) {
  .ics-bases__map-item__text_06 {
    bottom: 8%;
    right: 39%;
  }
}
.ics-bases__map-item__text_06:hover {
  background-color: rgba(10, 10, 9, 0.8);
}
.ics-bases__map-item__text_07 {
  top: 47%;
  left: 0;
}
@media (max-width: 999.9px) {
  .ics-bases__map-item__text_07 {
    top: 31%;
    left: 31%;
  }
}
@media (max-width: 559.9px) {
  .ics-bases__map-item__text_07 {
    top: 32%;
    left: 19%;
  }
}
.ics-bases__map-item__text_07:hover {
  background-color: rgba(10, 10, 9, 0.8);
}
.ics-bases__map-item--domestic {
  flex: 1;
  width: 70%;
}
@media (max-width: 999.9px) {
  .ics-bases__map-item--domestic {
    width: 100%;
  }
}
.ics-bases__map-item--overseas {
  display: flex;
  align-items: flex-end;
  flex: 0 0 auto;
  width: 30%;
}
@media (max-width: 999.9px) {
  .ics-bases__map-item--overseas {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 999.9px) {
  .ics-bases__map-item--overseas img {
    width: 300px;
    padding-top: 200px;
  }
}
@media (max-width: 559.9px) {
  .ics-bases__map-item--overseas img {
    width: 200px;
    padding-top: 150px;
  }
}
.ics-bases__map-label {
  position: absolute;
  font-size: min(4.8rem, 3.6vw);
  font-weight: 900;
  color: #0A0A09;
  z-index: 1;
  background-color: #EFEEEE;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 4rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 820.9px) {
  .ics-bases__map-label {
    font-size: 2.6rem;
  }
}
@media (max-width: 559.9px) {
  .ics-bases__map-label {
    font-size: 16px;
    padding: 0 2rem;
  }
}
.ics-bases__map-label--domestic {
  top: 0;
  left: 0;
}
.ics-bases__map-label--overseas {
  top: 0;
  right: 0;
}
@media (max-width: 999.9px) {
  .ics-bases__map-label--overseas {
    top: 0;
    right: auto;
    left: 0;
  }
}
.ics-bases__map-item--domestic .ics-bases__map-label {
  left: 0;
}
.ics-bases__map-item--overseas .ics-bases__map-label {
  right: 0;
}

/**************
Technology Intro Section (技術紹介ページ)
**************/
.tech-intro {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media (max-width: 820.9px) {
  .tech-intro {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.tech-intro__lead {
  margin-left: 4.6rem;
  margin-bottom: 6rem;
  font-size: min(2.4rem, 2.4vw);
  font-weight: 400;
  line-height: 1.6;
  color: #0A0A09;
}
@media (max-width: 820.9px) {
  .tech-intro__lead {
    font-size: 2rem;
    margin-bottom: 4rem;
    margin-left: 3.6rem;
  }
}
@media (max-width: 559.9px) {
  .tech-intro__lead {
    font-size: 16px;
    margin-bottom: 3rem;
    margin-left: 0;
  }
}
.tech-intro__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media (max-width: 820.9px) {
  .tech-intro__cards {
    gap: 3rem;
  }
}
@media (max-width: 559.9px) {
  .tech-intro__cards {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.tech-intro__card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease 0s;
}
.tech-intro__card:hover {
  opacity: 0.85;
}
.tech-intro__card:hover .tech-intro__card-img img {
  transform: scale(1.05);
}
.tech-intro__card:hover .tech-intro__card-arrow {
  background-color: #f2f2f2;
}
.tech-intro__card-deco {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 0.8rem;
  width: 36px;
}
@media (max-width: 559.9px) {
  .tech-intro__card-deco {
    margin: 0 auto 0.5rem;
  }
}
.tech-intro__card-title {
  font-size: min(3rem, 3vw);
  font-weight: 700;
  color: #1D1B52;
  margin-bottom: 1.6rem;
}
@media (max-width: 820.9px) {
  .tech-intro__card-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 559.9px) {
  .tech-intro__card-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
}
.tech-intro__card-desc {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  color: #0A0A09;
  margin-bottom: 2rem;
}
@media (max-width: 559.9px) {
  .tech-intro__card-desc {
    font-size: 15px;
    margin-bottom: 1.6rem;
  }
}
.tech-intro__card-img {
  position: relative;
  aspect-ratio: 560/298;
  overflow: hidden;
}
.tech-intro__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease 0s;
}
.tech-intro__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(102, 102, 102, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}
.tech-intro__card-en {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: "Inter", sans-serif;
  font-size: min(2.8rem, 2vw);
  font-weight: 300;
  font-style: italic;
  color: #FFFFFF;
  letter-spacing: 0.04em;
}
@media (max-width: 820.9px) {
  .tech-intro__card-en {
    font-size: 1.8rem;
  }
}
@media (max-width: 559.9px) {
  .tech-intro__card-en {
    font-size: 1.8rem;
    bottom: 1.5rem;
    left: 1.5rem;
  }
}
.tech-intro__card-en-wrap {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}
@media (max-width: 559.9px) {
  .tech-intro__card-en-wrap {
    bottom: 1.5rem;
    left: 1.5rem;
  }
}
.tech-intro__card-en-wrap .tech-intro__card-en {
  position: static;
  display: block;
  line-height: 1.3;
}
@media (max-width: 559.9px) {
  .tech-intro__card-en-wrap .tech-intro__card-en {
    font-size: 1.6rem;
  }
}
.tech-intro__card-arrow {
  position: absolute;
  bottom: 1.8rem;
  right: 2rem;
  width: 4.8rem;
  height: 4.8rem;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease 0s;
}
@media (max-width: 820.9px) {
  .tech-intro__card-arrow {
    right: 1rem;
  }
}
@media (max-width: 559.9px) {
  .tech-intro__card-arrow {
    width: 3rem;
    height: 3.6rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
.tech-intro__card-arrow svg {
  color: #0A0A09;
}

/**************
Heat Treatment Detail Page (熱処理技術詳細ページ)
**************/
.heat-detail {
  padding-bottom: 0;
}
.heat-detail__headline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 4rem;
}
@media (max-width: 820.9px) {
  .heat-detail__headline {
    margin-top: 3rem;
  }
}
@media (max-width: 559.9px) {
  .heat-detail__headline {
    gap: 0;
  }
}
.heat-detail__badge {
  display: inline-block;
  padding: 0.8rem 3.2rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #00a1e9;
  border-radius: 8px;
}
@media (max-width: 820.9px) {
  .heat-detail__badge {
    font-size: 2rem;
    padding: 1rem 2rem;
  }
}
@media (max-width: 559.9px) {
  .heat-detail__badge {
    font-size: 16px;
    padding: 0.8rem 1.6rem;
  }
}
.heat-detail__cross {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  margin: 0 1rem;
}
.heat-detail__cross::before, .heat-detail__cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.7rem;
  height: 0.5rem;
  background-color: #0A0A09;
}
.heat-detail__cross::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.heat-detail__cross::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.heat-detail__headline-text {
  font-size: 2rem;
  font-weight: 700;
  color: #0A0A09;
  line-height: 3;
  margin-left: 1rem;
}
@media (max-width: 820.9px) {
  .heat-detail__headline-text {
    font-size: 1.8rem;
  }
}
@media (max-width: 559.9px) {
  .heat-detail__headline-text {
    font-size: 1.6rem;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}
.heat-detail__desc {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #0A0A09;
  text-align: center;
}
@media (max-width: 559.9px) {
  .heat-detail__desc {
    font-size: 15px;
  }
}
.heat-detail__challenge {
  background-color: #175E95;
  padding: 6rem 0;
  margin-top: 6rem;
}
@media (max-width: 820.9px) {
  .heat-detail__challenge {
    padding: 4rem 0;
    margin-top: 4rem;
  }
}
@media (max-width: 559.9px) {
  .heat-detail__challenge {
    padding: 3rem 0;
    margin-top: 3rem;
  }
}
.heat-detail__challenge-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 820.9px) {
  .heat-detail__challenge-title {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 559.9px) {
  .heat-detail__challenge-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.heat-detail__challenge-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
@media (max-width: 999.9px) {
  .heat-detail__challenge-cards {
    gap: 0.8rem;
  }
}
@media (max-width: 820.9px) {
  .heat-detail__challenge-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
  }
}
@media (max-width: 559.9px) {
  .heat-detail__challenge-cards {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.heat-detail__challenge-cards--3col {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 820.9px) {
  .heat-detail__challenge-cards--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 559.9px) {
  .heat-detail__challenge-cards--3col {
    grid-template-columns: 1fr;
  }
}
.heat-detail__challenge-card {
  display: flex;
  flex-direction: column;
}
.heat-detail__challenge-header {
  background-color: #e8e3dd;
  border-radius: 8px;
  padding: 1.5rem 0.5rem;
  text-align: center;
}
@media (max-width: 1199.9px) {
  .heat-detail__challenge-header {
    height: 85px;
  }
}
@media (max-width: 820.9px) {
  .heat-detail__challenge-header {
    height: auto;
  }
}
.heat-detail__challenge-header > span {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0A0A09;
  display: block;
}
@media (max-width: 559.9px) {
  .heat-detail__challenge-header > span {
    font-size: 14px;
  }
}
.heat-detail__challenge-header-issue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
}
.heat-detail__challenge-header-label {
  background-color: #0A0A09;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
}
@media (max-width: 559.9px) {
  .heat-detail__challenge-header-label {
    font-size: 12px;
  }
}
.heat-detail__challenge-header-text {
  font-size: 1.7rem;
  font-weight: 700;
  color: #0A0A09;
}
@media (max-width: 559.9px) {
  .heat-detail__challenge-header-text {
    font-size: 15px;
  }
}
.heat-detail__challenge-img {
  margin-top: 1.8rem;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 559.9px) {
  .heat-detail__challenge-img {
    margin-top: 1rem;
  }
}
.heat-detail__challenge-img img {
  width: 100%;
  display: block;
}
.heat-detail__challenge-proposal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 1rem;
  padding: 0.5rem 0;
}
@media (max-width: 820.9px) {
  .heat-detail__challenge-proposal {
    margin: 1rem 0;
  }
}
@media (max-width: 559.9px) {
  .heat-detail__challenge-proposal {
    margin: 0.8rem 0;
  }
}
.heat-detail__challenge-arrow {
  width: 1.2rem;
}
.heat-detail__challenge-arrow img {
  width: 100%;
  display: block;
}
.heat-detail__challenge-proposal-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
}
@media (max-width: 820.9px) {
  .heat-detail__challenge-proposal-text {
    font-size: 16px;
  }
}
.heat-detail__challenge-solution {
  flex: 1;
  background-color: #FFFFFF;
  border: 2px solid #1b1689;
  border-radius: 8px;
  padding: 1.7rem 2rem 2rem;
  margin-top: 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 821px) and (max-width: 999.9px) {
  .heat-detail__challenge-solution {
    padding: 1.7rem 1rem 2rem;
  }
}
.heat-detail__challenge-solution-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0A0A09;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media (max-width: 559.9px) {
  .heat-detail__challenge-solution-title {
    font-size: 1.8rem;
  }
}
.heat-detail__challenge-solution-desc {
  line-height: 1.6;
  color: #0A0A09;
  flex: 1;
}
.heat-detail__challenge-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #00a1e9;
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 4px;
  margin-top: 1.5rem;
  transition: all 0.3s ease 0s;
}
@media (max-width: 559.9px) {
  .heat-detail__challenge-btn {
    width: 220px;
    margin: 1.5rem auto 0;
  }
}
.heat-detail__challenge-btn:hover {
  opacity: 0.8;
}
.heat-detail__challenge-btn svg {
  color: #FFFFFF;
}
.heat-detail__challenge-action {
  text-align: center;
  margin-top: 5rem;
}
@media (max-width: 820.9px) {
  .heat-detail__challenge-action {
    margin-top: 4rem;
  }
}
@media (max-width: 559.9px) {
  .heat-detail__challenge-action {
    margin-top: 3rem;
  }
}

/**************
Joining Detail Page (接合技術詳細ページ)
**************/
.join-detail__headline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 4rem;
}
@media (max-width: 820.9px) {
  .join-detail__headline {
    margin-top: 3rem;
  }
}
@media (max-width: 559.9px) {
  .join-detail__headline {
    gap: 0;
  }
}
.join-detail__badge {
  display: inline-block;
  padding: 0.8rem 3.2rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #00a1e9;
  border-radius: 8px;
}
@media (max-width: 820.9px) {
  .join-detail__badge {
    font-size: 2rem;
    padding: 1rem 2rem;
  }
}
@media (max-width: 559.9px) {
  .join-detail__badge {
    font-size: 16px;
    padding: 0.8rem 1.6rem;
  }
}
.join-detail__cross {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  margin: 0 1rem;
}
.join-detail__cross::before, .join-detail__cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.7rem;
  height: 0.5rem;
  background-color: #0A0A09;
}
.join-detail__cross::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.join-detail__cross::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.join-detail__headline-text {
  font-size: 2rem;
  font-weight: 700;
  color: #0A0A09;
  line-height: 3;
  margin-left: 1rem;
}
@media (max-width: 820.9px) {
  .join-detail__headline-text {
    font-size: 1.8rem;
  }
}
@media (max-width: 559.9px) {
  .join-detail__headline-text {
    font-size: 1.6rem;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}
.join-detail__desc {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #0A0A09;
  text-align: center;
}
@media (max-width: 559.9px) {
  .join-detail__desc {
    font-size: 15px;
  }
}
@media (max-width: 559.9px) {
  .join-detail__desc br {
    display: none;
  }
}

/**************
Coating Intro (コーティング技術イントロ)
**************/
.coat-intro__title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-top: 4rem;
  line-height: 1.6;
}
@media (max-width: 820.9px) {
  .coat-intro__title {
    font-size: 2rem;
    margin-top: 3rem;
  }
}
@media (max-width: 559.9px) {
  .coat-intro__title {
    font-size: 18px;
    margin-top: 2rem;
  }
}

/**************
Why Choose Section (共通：選ばれる理由)
**************/
.why-choose {
  background-color: #1D1B52;
  padding: 8rem 0;
}
.why-choose--bg {
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.why-choose--bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.why-choose--bg .why-choose__inner {
  position: relative;
  z-index: 1;
}
@media (max-width: 820.9px) {
  .why-choose {
    padding: 6rem 0;
  }
}
@media (max-width: 559.9px) {
  .why-choose {
    padding: 4rem 0;
  }
}
.why-choose__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
}
.why-choose__title-en {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 6.4rem;
  font-weight: 900;
  line-height: 1;
  font-size: min(6.4rem, 5.8vw);
  font-style: italic;
  color: #FFFFFF;
  letter-spacing: 0.3rem;
  line-height: 1.2;
}
@media (max-width: 820.9px) {
  .why-choose__title-en {
    font-size: 4rem;
  }
}
@media (max-width: 559.9px) {
  .why-choose__title-en {
    font-size: 28px;
    text-align: center;
  }
}
.why-choose__subtitle {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
@media (max-width: 559.9px) {
  .why-choose__subtitle {
    margin-top: 1.5rem;
  }
}
.why-choose__subtitle-text {
  font-size: 3rem;
  font-weight: 700;
  color: #00a1e9;
}
@media (max-width: 820.9px) {
  .why-choose__subtitle-text {
    font-size: 2.4rem;
  }
}
@media (max-width: 559.9px) {
  .why-choose__subtitle-text {
    font-size: 16px;
  }
}
.why-choose__subtitle-num {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 7.8rem;
  font-weight: 900;
  line-height: 1;
  font-size: min(7.8rem, 7vw);
  font-style: italic;
  color: #FFFFFF;
  line-height: 1;
  margin: 0 0.6rem 0 1rem;
}
@media (max-width: 820.9px) {
  .why-choose__subtitle-num {
    font-size: 6rem;
  }
}
@media (max-width: 559.9px) {
  .why-choose__subtitle-num {
    font-size: 44px;
  }
}
.why-choose__coating__subtitle {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
@media (max-width: 559.9px) {
  .why-choose__coating__subtitle {
    margin-top: 1.5rem;
    flex-direction: column;
  }
}
.why-choose__coating__subtitle .why-choose__subtitle-text {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
}
@media (max-width: 820.9px) {
  .why-choose__coating__subtitle .why-choose__subtitle-text {
    font-size: 2.4rem;
  }
}
@media (max-width: 559.9px) {
  .why-choose__coating__subtitle .why-choose__subtitle-text {
    font-size: 16px;
  }
}
.why-choose__coating__subtitle .why-choose__subtitle-num {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 7.8rem;
  font-weight: 900;
  line-height: 1;
  font-size: min(7.8rem, 7vw);
  font-style: italic;
  color: #00A1E9;
  line-height: 1;
  margin: 0 0.6rem 0 1rem;
}
@media (max-width: 820.9px) {
  .why-choose__coating__subtitle .why-choose__subtitle-num {
    font-size: 6rem;
  }
}
@media (max-width: 559.9px) {
  .why-choose__coating__subtitle .why-choose__subtitle-num {
    font-size: 44px;
  }
}
.why-choose__coating__subtitle .flex_box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-choose__circles {
  display: flex;
  gap: 1.6rem;
  margin-top: 5rem;
}
@media (max-width: 820.9px) {
  .why-choose__circles {
    gap: 1rem;
    margin-top: 3rem;
  }
}
@media (max-width: 559.9px) {
  .why-choose__circles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-top: 2.5rem;
  }
}
.why-choose__circles--center {
  justify-content: center;
  margin-top: 1.6rem;
}
@media (max-width: 820.9px) {
  .why-choose__circles--center {
    margin-top: 1rem;
  }
}
@media (max-width: 559.9px) {
  .why-choose__circles--center {
    display: flex;
    margin-top: 1.2rem;
  }
}
.why-choose__circles--center .why-choose__circle {
  flex: 0 0 auto;
  width: 282px;
}
@media (max-width: 559.9px) {
  .why-choose__circles--center .why-choose__circle {
    width: 160px;
  }
}
.why-choose__circle {
  background-color: #FFFFFF;
  border-radius: 50%;
  aspect-ratio: 1/1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .why-choose__circle {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 559.9px) {
  .why-choose__circle {
    padding: 1.2rem;
  }
}
.why-choose__circle-num {
  font-size: 5rem;
  font-weight: 900;
  font-style: italic;
  color: #00a1e9;
  line-height: 1;
}
@media (max-width: 999.9px) {
  .why-choose__circle-num {
    font-size: 3.6rem;
  }
}
@media (max-width: 559.9px) {
  .why-choose__circle-num {
    font-size: 32px;
  }
}
.why-choose__circle-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0A0A09;
  line-height: 1.4;
  margin-top: 1.5rem;
}
@media (max-width: 999.9px) {
  .why-choose__circle-title {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
}
@media (max-width: 559.9px) {
  .why-choose__circle-title {
    font-size: 14px;
    margin-top: 0.8rem;
  }
}
.why-choose__circle-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0A0A09;
  line-height: 1.6;
  margin-top: 3.2rem;
}
@media (max-width: 999.9px) {
  .why-choose__circle-text {
    font-size: 1.5rem;
    margin-top: 2rem;
  }
}
@media (max-width: 820.9px) {
  .why-choose__circle-text {
    margin-top: 0.5rem;
  }
}
@media (max-width: 559.9px) {
  .why-choose__circle-text {
    font-size: 14px;
    line-height: 1.5;
  }
}
.why-choose__circle-title + .why-choose__circle-text {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 1rem;
}
@media (max-width: 999.9px) {
  .why-choose__circle-title + .why-choose__circle-text {
    font-size: 1.2rem;
    margin-top: 0.8rem;
  }
}
@media (max-width: 559.9px) {
  .why-choose__circle-title + .why-choose__circle-text {
    font-size: 12px;
    margin-top: 0.5rem;
  }
}

.why-choose__circles_thermal {
  width: 100%;
  display: flex;
  margin: 5rem auto 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 85%;
}
@media (max-width: 820.9px) {
  .why-choose__circles_thermal {
    margin-top: 3rem;
    width: 100%;
  }
}
@media (max-width: 559.9px) {
  .why-choose__circles_thermal {
    margin-top: 2.5rem;
    width: 230px;
  }
}
.why-choose__circles_thermal .why-choose__circle {
  flex: 0 0 auto;
  width: calc(33.3333333333% - 1.6rem);
  margin: 0 0.8rem;
}
@media (max-width: 559.9px) {
  .why-choose__circles_thermal .why-choose__circle {
    width: 100%;
    margin: 0 0 1.6rem;
  }
}
.why-choose__circles_thermal .why-choose__circle__circle-num {
  font-size: 5rem;
  font-weight: 900;
  font-style: italic;
  color: #00a1e9;
  line-height: 1;
}
@media (max-width: 999.9px) {
  .why-choose__circles_thermal .why-choose__circle__circle-num {
    font-size: 3.6rem;
  }
}
@media (max-width: 559.9px) {
  .why-choose__circles_thermal .why-choose__circle__circle-num {
    font-size: 32px;
  }
}
.why-choose__circles_thermal .why-choose__circle-num {
  font-size: 5rem;
  font-weight: 900;
  font-style: italic;
  color: #00a1e9;
  line-height: 1;
}
@media (max-width: 999.9px) {
  .why-choose__circles_thermal .why-choose__circle-num {
    font-size: 3.6rem;
  }
}
@media (max-width: 559.9px) {
  .why-choose__circles_thermal .why-choose__circle-num {
    font-size: 32px;
  }
}
.why-choose__circles_thermal .why-choose__circle-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0A0A09;
  line-height: 1.4;
  margin-top: 1.5rem;
}
@media (max-width: 999.9px) {
  .why-choose__circles_thermal .why-choose__circle-title {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
}
@media (max-width: 559.9px) {
  .why-choose__circles_thermal .why-choose__circle-title {
    font-size: 16px;
  }
}
.why-choose__circles_thermal .why-choose__circle-text {
  font-size: 1.8rem;
  color: #0A0A09;
  line-height: 1.6;
  margin-top: 3.2rem;
}
@media (max-width: 1199.9px) {
  .why-choose__circles_thermal .why-choose__circle-text {
    margin-top: 2rem;
    font-size: 1.6rem;
  }
}
@media (max-width: 999.9px) {
  .why-choose__circles_thermal .why-choose__circle-text {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}
@media (max-width: 820.9px) {
  .why-choose__circles_thermal .why-choose__circle-text {
    margin-top: 0.5rem;
  }
}
@media (max-width: 559.9px) {
  .why-choose__circles_thermal .why-choose__circle-text {
    font-size: 15px;
    margin-top: 2rem;
    line-height: 1.5;
  }
}

/**************
Heat Features Section (熱処理の3つの特長)
**************/
.heat-features .section-title {
  margin-top: 0;
}
.heat-features__item {
  margin-bottom: 8rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .heat-features__item {
    margin-bottom: 4rem;
  }
}
@media (max-width: 559.9px) {
  .heat-features__item {
    margin-bottom: 3rem;
  }
}
.heat-features__item-header {
  display: flex;
  align-items: center;
  background-color: #175E95;
  border-radius: 8px;
  padding: 2rem 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 820.9px) {
  .heat-features__item-header {
    padding: 1.5rem 2rem;
  }
}
@media (max-width: 559.9px) {
  .heat-features__item-header {
    padding: 1.2rem;
    margin-bottom: 1.2rem;
  }
}
.heat-features__item-num {
  width: 7rem;
  margin-right: 2rem;
}
@media (max-width: 1199.9px) {
  .heat-features__item-num {
    width: 6rem;
  }
}
@media (max-width: 820.9px) {
  .heat-features__item-num {
    width: 5rem;
  }
}
@media (max-width: 559.9px) {
  .heat-features__item-num {
    width: 3rem;
    margin-right: 0;
  }
}
.heat-features__item-num img {
  width: 100%;
}
.heat-features__item-header-text {
  text-align: center;
  flex: 1;
}
.heat-features__item-en {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  color: #FFFFFF;
  display: block;
  margin-bottom: 0.5rem;
  font-style: italic;
}
@media (max-width: 559.9px) {
  .heat-features__item-en {
    font-size: 1.2rem;
  }
}
.heat-features__item-title {
  font-size: 4.8rem;
  font-weight: 700;
  color: #FFFFFF;
}
@media (max-width: 1199.9px) {
  .heat-features__item-title {
    font-size: 3rem;
  }
}
@media (max-width: 559.9px) {
  .heat-features__item-title {
    font-size: 18px;
  }
}
.heat-features__item-body {
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: 4rem;
  align-items: flex-start;
}
@media (max-width: 820.9px) {
  .heat-features__item-body {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 559.9px) {
  .heat-features__item-body {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
.heat-features__item-img {
  border-radius: 8px;
  overflow: hidden;
}
.heat-features__item-img img {
  width: 100%;
  display: block;
}
.heat-features__item-content {
  padding-top: 1rem;
}
.heat-features__item-subtitle {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0A0A09;
  margin-bottom: 2rem;
}
@media (max-width: 999.9px) {
  .heat-features__item-subtitle {
    font-size: 2rem;
  }
}
@media (max-width: 559.9px) {
  .heat-features__item-subtitle {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
}
.heat-features__item-desc {
  line-height: 1.8;
  color: #0A0A09;
}
@media (max-width: 559.9px) {
  .heat-features__item-desc {
    font-size: 15px;
  }
}
.heat-features__process {
  margin: 6rem auto 8rem;
  width: 90%;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .heat-features__process {
    margin: 4rem auto;
  }
}
@media (max-width: 559.9px) {
  .heat-features__process {
    margin: 3rem auto;
    width: 100%;
  }
}
.heat-features__range {
  margin-top: 10rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .heat-features__range {
    margin-top: 6rem;
  }
}
@media (max-width: 559.9px) {
  .heat-features__range {
    margin-top: 4rem;
  }
}
.heat-features__equip {
  margin-top: 10rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .heat-features__equip {
    margin-top: 6rem;
  }
}
@media (max-width: 559.9px) {
  .heat-features__equip {
    margin-top: 4rem;
  }
}
.heat-features__qa {
  margin-top: 10rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .heat-features__qa {
    margin-top: 6rem;
  }
}
@media (max-width: 559.9px) {
  .heat-features__qa {
    margin-top: 4rem;
  }
}
.heat-features__process-table {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
@media (max-width: 559.9px) {
  .heat-features__process-table {
    width: 640px;
    gap: 0.5rem;
  }
}
.heat-features__process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5%;
}
@media (max-width: 559.9px) {
  .heat-features__process-row {
    gap: 0.5rem;
  }
}
.heat-features__process-row--header {
  background-color: #1D1B52;
  color: white;
  font-weight: 800;
  font-size: 1.6rem;
  text-align: center;
  padding: 1.5rem 2rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 559.9px) {
  .heat-features__process-row--header {
    font-size: 1.4rem;
    padding: 1.2rem 1.5rem;
  }
}
.heat-features__process-cell {
  padding: 0.8rem;
  background-color: #efeeee;
  border-radius: 5px;
  font-weight: 700;
  color: #0A0A09;
  display: flex;
  align-items: center;
  min-height: 100px;
}
@media (max-width: 999.9px) {
  .heat-features__process-cell {
    font-size: 14px;
  }
}
@media (max-width: 559.9px) {
  .heat-features__process-cell {
    padding: 1rem;
    font-size: 12px;
  }
}
.heat-features__process-cell:first-child {
  background-color: #175E95;
  color: #FFFFFF;
  font-size: 1.6rem;
  justify-content: center;
  text-align: center;
}
@media (max-width: 999.9px) {
  .heat-features__process-cell:first-child {
    font-size: 15px;
  }
}
@media (max-width: 559.9px) {
  .heat-features__process-cell:first-child {
    font-size: 14px;
  }
}
.heat-features__process-cell.blueSite {
  background-color: #175E95;
}
.heat-features__process-cell.blue {
  background-color: #175E95;
}
.heat-features__process-row--5col {
  grid-template-columns: 15% 14% 23% 23% 23%;
}
.heat-features__process-table--4col .heat-features__process-row {
  grid-template-columns: 19% 30% 13% 38%;
}
@media (max-width: 559.9px) {
  .heat-features__process-table--4col .heat-features__process-row {
    grid-template-columns: 150px 230px 100px 280px;
  }
}
.heat-features__process-table--thermal .heat-features__process-row {
  grid-template-columns: 19% 53% 28%;
}
@media (max-width: 559.9px) {
  .heat-features__process-table--thermal .heat-features__process-row {
    grid-template-columns: 120px 400px 230px;
  }
}
.heat-features__process-table--thermal .heat-features__process-cell {
  height: auto;
  min-height: 80px;
}
@media (max-width: 559.9px) {
  .heat-features__process-table--thermal .heat-features__process-cell {
    min-height: 69px;
  }
}
@media (max-width: 559.9px) {
  .heat-features__process-table--7col {
    width: 1100px;
  }
}
.heat-features__process-table--7col .heat-features__process-row {
  grid-template-columns: repeat(7, 1fr);
}
.heat-features__process-table--7col .heat-features__process-cell {
  height: auto;
  min-height: 60px;
  font-size: 1.3rem;
}
@media (max-width: 559.9px) {
  .heat-features__process-table--7col .heat-features__process-cell {
    font-size: 12px;
    min-height: 50px;
  }
}
.heat-features__process-table--7col .heat-features__process-cell:first-child {
  font-size: 1.4rem;
}
@media (max-width: 559.9px) {
  .heat-features__process-table--7col .heat-features__process-cell:first-child {
    font-size: 13px;
  }
}
.heat-features__process-table--7col .heat-features__process-row--header {
  font-size: 1.4rem;
  padding: 1rem;
}
@media (max-width: 559.9px) {
  .heat-features__process-table--7col .heat-features__process-row--header {
    font-size: 12px;
    padding: 0.8rem;
  }
}

/**************
Coating Table (コーティング技術テーブル)
**************/
.coating-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  min-width: 1000px;
}
@media (max-width: 559.9px) {
  .coating-table {
    font-size: 12px;
    min-width: 900px;
  }
}
.coating-table__section-header th {
  background-color: #FFFFFF;
  color: #0A0A09;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: left;
  padding: 1.5rem 1rem;
  border-bottom: 2px solid #0A0A09;
}
@media (max-width: 559.9px) {
  .coating-table__section-header th {
    font-size: 14px;
    padding: 1rem;
  }
}
.coating-table thead tr:not(.coating-table__section-header) th {
  background-color: #efeeee;
  color: #0A0A09;
  font-weight: 600;
  text-align: center;
  padding: 1rem 0.5rem;
  border: 1px solid #ddd;
  line-height: 1.4;
}
@media (max-width: 559.9px) {
  .coating-table thead tr:not(.coating-table__section-header) th {
    font-size: 11px;
    padding: 0.8rem 0.3rem;
  }
}
.coating-table tbody td {
  background-color: #FFFFFF;
  border: 1px solid #ddd;
  padding: 1rem 0.8rem;
  text-align: center;
  vertical-align: middle;
  line-height: 1.5;
}
@media (max-width: 559.9px) {
  .coating-table tbody td {
    padding: 0.6rem 0.4rem;
  }
}
.coating-table tbody td:first-child {
  background-color: #175E95;
  color: #FFFFFF;
  font-weight: 700;
  white-space: nowrap;
}
.coating-table__features {
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
  width: 300px;
}
@media (max-width: 559.9px) {
  .coating-table__features {
    font-size: 12px;
  }
}
.coating-table__features li {
  padding-left: 1rem;
  position: relative;
}
.coating-table__features li::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 4px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #0A0A09;
  top: 9px;
  left: 0;
}
.coating-table__color {
  display: inline-block;
  width: 30px;
  height: 18px;
  vertical-align: middle;
}
.coating-table__color--gold {
  background-color: #FECA0A;
}
.coating-table__color--silver {
  background-color: #BCBDC0;
}
.coating-table__color--purple {
  background-color: #90268F;
}
.coating-table__color--blue {
  background-color: #717DBD;
}
.coating-table__color--orange {
  background-color: #F48232;
}
.coating-table__color--darkgray {
  background-color: #6C6D70;
}
.coating-table__color--gray {
  background-color: #BCBDC0;
}
.coating-table__color--black {
  background-color: #231F20;
}
.coating-table__color--sigma {
  position: relative;
  overflow: hidden;
}
.coating-table__color--sigma img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.coating-table__note {
  font-size: 1.3rem;
  color: #666;
  margin-top: 2rem;
}
@media (max-width: 559.9px) {
  .coating-table__note {
    font-size: 11px;
    margin-top: 1.5rem;
  }
}

/**************
Thermal Intro Box (溶射とは？)
**************/
.thermal-intro-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  background-color: #EFEEEE;
  border-radius: 8px;
  padding: 4rem;
  margin-top: 4rem;
}
@media (max-width: 820.9px) {
  .thermal-intro-box {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem;
    margin-top: 3rem;
  }
}
@media (max-width: 559.9px) {
  .thermal-intro-box {
    padding: 2rem;
    margin-top: 2rem;
  }
}
.thermal-intro-box__content {
  flex: 1;
  max-width: 500px;
}
@media (max-width: 820.9px) {
  .thermal-intro-box__content {
    max-width: 100%;
    order: 1;
  }
}
.thermal-intro-box__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 559.9px) {
  .thermal-intro-box__title {
    margin-bottom: 1.5rem;
  }
}
.thermal-intro-box__title-dot {
  width: 12px;
  height: 12px;
  background-color: #175E95;
  border-radius: 50%;
  flex-shrink: 0;
}
.thermal-intro-box__title-text {
  font-size: 2rem;
  font-weight: 700;
  color: #0A0A09;
}
@media (max-width: 559.9px) {
  .thermal-intro-box__title-text {
    font-size: 16px;
  }
}
.thermal-intro-box__desc {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #0A0A09;
}
@media (max-width: 559.9px) {
  .thermal-intro-box__desc {
    font-size: 13px;
  }
}
.thermal-intro-box__img {
  flex-shrink: 0;
  width: 50%;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 999.9px) {
  .thermal-intro-box__img {
    width: 45%;
  }
}
@media (max-width: 820.9px) {
  .thermal-intro-box__img {
    width: 100%;
    order: 2;
  }
}
.thermal-intro-box__img img {
  width: 100%;
  display: block;
}

.thermal-intro-gallery {
  display: grid;
  grid-template-columns: repeat(2, 370px);
  gap: 4.8rem;
  justify-content: center;
}
@media (max-width: 820.9px) {
  .thermal-intro-gallery {
    gap: 3rem;
    grid-template-columns: repeat(2, 300px);
  }
}
@media (max-width: 559.9px) {
  .thermal-intro-gallery {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 200px;
    margin: 0 auto;
  }
}
.thermal-intro-gallery__item {
  overflow: hidden;
}
.thermal-intro-gallery__item img {
  width: 100%;
  display: block;
}

.thermal-process-section {
  margin-top: 8rem;
}
@media (max-width: 820.9px) {
  .thermal-process-section {
    margin-top: 4rem;
  }
}
@media (max-width: 559.9px) {
  .thermal-process-section {
    margin-top: 3rem;
  }
}
.thermal-process-section .thermal-section-title {
  margin-top: 0;
}

.thermal-area-section {
  margin-top: 8rem;
}
@media (max-width: 820.9px) {
  .thermal-area-section {
    margin-top: 5rem;
  }
}
@media (max-width: 559.9px) {
  .thermal-area-section {
    margin-top: 4rem;
  }
}
.thermal-area-section .thermal-section-title {
  margin-top: 0;
}

.thermal-section-title {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
}
@media (max-width: 820.9px) {
  .thermal-section-title {
    margin-top: 4rem;
  }
}
@media (max-width: 559.9px) {
  .thermal-section-title {
    margin-top: 3rem;
  }
}
.thermal-section-title__text {
  display: inline-block;
  background-color: #1D1B52;
  color: #FFFFFF;
  font-size: 3.2rem;
  font-weight: 700;
  padding: 1.2rem 6rem;
  border-radius: 50px;
}
@media (max-width: 820.9px) {
  .thermal-section-title__text {
    font-size: 2.4rem;
    padding: 1rem 4rem;
  }
}
@media (max-width: 559.9px) {
  .thermal-section-title__text {
    font-size: 18px;
    padding: 0.8rem 3rem;
  }
}

.thermal-process-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.8rem;
  margin-top: 6rem;
}
@media (max-width: 820.9px) {
  .thermal-process-cards {
    gap: 3rem;
    margin-top: 3rem;
  }
}
@media (max-width: 559.9px) {
  .thermal-process-cards {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
  }
}

.thermal-process-card__header {
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1px;
  background-color: #0A0A09;
}
@media (max-width: 559.9px) {
  .thermal-process-card__header {
    gap: 1rem;
    margin-bottom: 2rem;
  }
}
.thermal-process-card__name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0A0A09;
  white-space: nowrap;
  padding: 0 3rem;
  background-color: #FFFFFF;
}
@media (max-width: 820.9px) {
  .thermal-process-card__name {
    padding: 1.6rem;
  }
}
@media (max-width: 559.9px) {
  .thermal-process-card__name {
    font-size: 14px;
  }
}
.thermal-process-card__img {
  overflow: hidden;
}
.thermal-process-card__img img {
  width: 100%;
  display: block;
}
.thermal-process-card__body {
  margin-top: 1.5rem;
}
@media (max-width: 559.9px) {
  .thermal-process-card__body {
    margin-top: 1rem;
  }
}
.thermal-process-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0A0A09;
  line-height: 1.6;
}
@media (max-width: 559.9px) {
  .thermal-process-card__feature {
    font-size: 14px;
    gap: 0.8rem;
  }
}
.thermal-process-card__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}
@media (max-width: 559.9px) {
  .thermal-process-card__icon {
    width: 24px;
    height: 24px;
  }
}
.thermal-process-card__example {
  font-size: 1.6rem;
  color: #666;
  margin-top: 0.5rem;
}
@media (max-width: 559.9px) {
  .thermal-process-card__example {
    font-size: 13px;
  }
}

.thermal-spec-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}
@media (max-width: 820.9px) {
  .thermal-spec-overview {
    gap: 0.8rem;
    margin-top: 3rem;
  }
}
@media (max-width: 559.9px) {
  .thermal-spec-overview {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 2rem;
  }
}
.thermal-spec-overview__item {
  text-align: center;
}
.thermal-spec-overview__header {
  background-color: #175E95;
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 700;
  padding: 1.6rem 1.5rem;
  border-radius: 5px;
}
@media (max-width: 820.9px) {
  .thermal-spec-overview__header {
    font-size: 1.6rem;
    padding: 0.8rem 1rem;
  }
}
@media (max-width: 559.9px) {
  .thermal-spec-overview__header {
    font-size: 14px;
    padding: 0.6rem 0.8rem;
  }
}
.thermal-spec-overview__value {
  background-color: #EFEEEE;
  font-size: 1.6rem;
  font-weight: 500;
  color: #0A0A09;
  padding: 1.6rem 1rem;
  border-radius: 5px;
  margin-top: 0.6rem;
}
@media (max-width: 820.9px) {
  .thermal-spec-overview__value {
    font-size: 1.4rem;
    padding: 1rem 0.8rem;
  }
}
@media (max-width: 559.9px) {
  .thermal-spec-overview__value {
    font-size: 13px;
    padding: 0.8rem 0.6rem;
    margin-top: 0.6rem;
  }
}

.thermal-table-heading {
  font-size: 3.2rem;
  font-weight: 700;
  color: #0A0A09;
  margin-top: 6rem;
  margin-bottom: 2rem;
}
@media (max-width: 820.9px) {
  .thermal-table-heading {
    font-size: 2.4rem;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 559.9px) {
  .thermal-table-heading {
    font-size: 20px;
    margin-top: 3rem;
    margin-bottom: 1rem;
  }
}
.thermal-table-heading.mt0 {
  margin-top: 0;
}

.thermal-table-note {
  font-size: 1.4rem;
  color: #0A0A09;
  margin-top: 1rem;
}
@media (max-width: 559.9px) {
  .thermal-table-note {
    font-size: 12px;
  }
}

.thermal-detail-section {
  background-color: #b8e1f0;
}

.thermal-table-heading--mt8 {
  margin-top: 8rem;
}
@media (max-width: 820.9px) {
  .thermal-table-heading--mt8 {
    margin-top: 5rem;
  }
}
@media (max-width: 559.9px) {
  .thermal-table-heading--mt8 {
    margin-top: 4rem;
  }
}

.thermal-detail-desc {
  font-size: 1.6rem;
  color: #0A0A09;
  line-height: 1.8;
  margin-bottom: 3rem;
}
@media (max-width: 559.9px) {
  .thermal-detail-desc {
    font-size: 14px;
    margin-bottom: 2rem;
  }
}

.thermal-cermet {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  margin-top: 4rem;
}
@media (max-width: 820.9px) {
  .thermal-cermet {
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
  }
}
@media (max-width: 559.9px) {
  .thermal-cermet {
    gap: 0;
  }
}
.thermal-cermet__standard {
  flex-shrink: 0;
  width: 350px;
}
@media (max-width: 820.9px) {
  .thermal-cermet__standard {
    margin: 0 auto;
    width: 68%;
  }
}
@media (max-width: 559.9px) {
  .thermal-cermet__standard {
    width: 100%;
  }
}
.thermal-cermet__header {
  background-color: #1D1B52;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  padding: 1.2rem 2rem;
  border-radius: 8px 8px 0 0;
}
@media (max-width: 559.9px) {
  .thermal-cermet__header {
    font-size: 16px;
    padding: 1rem 1.5rem;
  }
}
.thermal-cermet__content {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 0 0 8px 8px;
}
@media (max-width: 559.9px) {
  .thermal-cermet__content {
    padding: 1.5rem;
  }
}
.thermal-cermet__arrow {
  display: flex;
  align-items: center;
  padding-top: 4rem;
  flex-shrink: 0;
}
@media (max-width: 820.9px) {
  .thermal-cermet__arrow {
    justify-content: center;
    padding-top: 0;
    margin: 0 auto;
  }
  .thermal-cermet__arrow svg {
    transform: rotate(90deg);
  }
}
.thermal-cermet__categories {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 820.9px) {
  .thermal-cermet__categories {
    margin: 0 auto;
    width: 68%;
  }
}
@media (max-width: 559.9px) {
  .thermal-cermet__categories {
    gap: 1rem;
    width: 100%;
  }
}
.thermal-cermet__category-header {
  background-color: #1D1B52;
  color: #FFFFFF;
  border-radius: 8px 8px 0 0;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  padding: 1.6rem 2rem;
}
@media (max-width: 559.9px) {
  .thermal-cermet__category-header {
    font-size: 16px;
    padding: 1rem 1.5rem;
  }
}
.thermal-cermet__category-content {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 0 0 8px 8px;
}
@media (max-width: 559.9px) {
  .thermal-cermet__category-content {
    padding: 1.5rem;
  }
}
.thermal-cermet__item-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0A0A09;
  margin-bottom: 0.5rem;
}
@media (max-width: 559.9px) {
  .thermal-cermet__item-title {
    font-size: 14px;
  }
}
.thermal-cermet__item-desc {
  font-size: 1.4rem;
  color: #0A0A09;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.thermal-cermet__item-desc:last-child {
  margin-bottom: 0;
}
@media (max-width: 559.9px) {
  .thermal-cermet__item-desc {
    font-size: 13px;
  }
}
.thermal-cermet__dot {
  width: 12px;
  height: 12px;
  background-color: #00A1E9;
  border-radius: 50%;
  flex-shrink: 0;
}

/**************
Coating Quality Section (品質保証、分析評価)
**************/
.coat-quality {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  background-color: #EFEEEE;
  border-radius: 8px;
  padding: 4rem;
  margin-top: 6rem;
}
@media (max-width: 820.9px) {
  .coat-quality {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem;
    margin-top: 4rem;
  }
}
@media (max-width: 559.9px) {
  .coat-quality {
    padding: 2rem;
    margin-top: 3rem;
  }
}
.coat-quality__content {
  flex: 1;
  max-width: 500px;
}
@media (max-width: 820.9px) {
  .coat-quality__content {
    max-width: 100%;
    order: 1;
  }
}
@media (max-width: 820.9px) {
  .coat-quality__content .common-btn {
    margin: 0 auto;
  }
}
.coat-quality__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 559.9px) {
  .coat-quality__title {
    margin-bottom: 1.5rem;
  }
}
.coat-quality__title-dot {
  width: 12px;
  height: 12px;
  background-color: #175E95;
  border-radius: 50%;
  flex-shrink: 0;
}
.coat-quality__title-text {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0A0A09;
}
@media (max-width: 559.9px) {
  .coat-quality__title-text {
    font-size: 18px;
  }
}
.coat-quality__desc {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #0A0A09;
  margin-bottom: 2rem;
}
@media (max-width: 559.9px) {
  .coat-quality__desc {
    font-size: 14px;
    margin-bottom: 1.5rem;
  }
}
.coat-quality__img {
  flex-shrink: 0;
  width: 560px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 999.9px) {
  .coat-quality__img {
    width: 45%;
  }
}
@media (max-width: 820.9px) {
  .coat-quality__img {
    width: 100%;
    order: 2;
  }
}
.coat-quality__img img {
  width: 100%;
  display: block;
}

.heat-features__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 6rem;
}
@media (max-width: 820.9px) {
  .heat-features__gallery {
    gap: 1.5rem;
    margin-top: 3rem;
  }
}
@media (max-width: 559.9px) {
  .heat-features__gallery {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
  }
}
.heat-features__gallery-item {
  overflow: hidden;
}
.heat-features__gallery-item img {
  width: 100%;
  display: block;
}
.heat-features__materials {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.heat-features__material-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 559.9px) {
  .heat-features__material-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.heat-features__material-card {
  background-color: #FFFFFF;
}
.heat-features__material-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.heat-features__material-dot {
  width: 2rem;
  height: 2rem;
  border-radius: 4px;
  flex-shrink: 0;
  background-color: #1D1B52;
}
.heat-features__material-title {
  font-size: 16px;
  font-weight: 700;
  color: #0A0A09;
}
@media (max-width: 559.9px) {
  .heat-features__material-title {
    font-size: 1.4rem;
  }
}
.heat-features__material-body {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 1.5rem 2rem;
}
.heat-features__material-body p {
  line-height: 1.8;
  color: #0A0A09;
}
@media (max-width: 559.9px) {
  .heat-features__material-body p {
    font-size: 1.3rem;
  }
}
.heat-features__material-body--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 2rem;
}
@media (max-width: 559.9px) {
  .heat-features__material-body--grid {
    grid-template-columns: 1fr;
  }
}
.heat-features__material-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding-top: 2rem;
}
@media (max-width: 559.9px) {
  .heat-features__material-note {
    padding-top: 0;
  }
}
.heat-features__material-note span {
  color: #0A0A09;
  padding-top: 2rem;
}
@media (max-width: 559.9px) {
  .heat-features__material-note span {
    padding-top: 0;
  }
}
.heat-features__equipment {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 559.9px) {
  .heat-features__equipment {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.heat-features__equipment-item {
  position: relative;
  overflow: hidden;
}
.heat-features__equipment-item img {
  width: 100%;
  display: block;
}
.heat-features__equipment-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 559.9px) {
  .heat-features__equipment-label {
    font-size: 1.6rem;
    padding: 1rem;
  }
}
.heat-features__equipment-note {
  text-align: center;
  margin: 4rem auto 0;
  font-size: 16px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
}
.heat-features__equipment-note::before, .heat-features__equipment-note::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2px;
  height: 20px;
  background-color: #000;
  display: inline-block;
}
.heat-features__equipment-note::before {
  left: -16px;
  transform: translateY(-50%) rotate(-30deg);
}
.heat-features__equipment-note::after {
  right: -16px;
  transform: translateY(-50%) rotate(30deg);
}
.heat-features__equipment-arrow {
  color: #00a1e9;
}
.heat-features__equipment-btn-wrap {
  text-align: center;
  margin-top: 2rem;
}
.heat-features__quality {
  position: relative;
  overflow: hidden;
}
.heat-features__quality-img {
  width: 100%;
  display: block;
}
.heat-features__quality-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 820.9px) {
  .heat-features__quality-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
}
@media (max-width: 559.9px) {
  .heat-features__quality-content {
    display: none;
  }
}
.heat-features__quality-desc {
  font-size: 1.8rem;
  color: #FFFFFF;
  width: 68%;
}
@media (max-width: 1199.9px) {
  .heat-features__quality-desc {
    font-size: 1.6rem;
  }
}
@media (max-width: 820.9px) {
  .heat-features__quality-desc {
    width: 100%;
    margin-bottom: 1.6rem;
    font-size: 15px;
  }
}
.heat-features__quality-content-sp {
  margin: 1.2rem 0 0;
}
@media (min-width: 560px) {
  .heat-features__quality-content-sp {
    display: none;
  }
}
.heat-features__quality-desc-sp {
  font-size: 16px;
  color: #0A0A09;
  margin-bottom: 2rem;
}

/**************
Tech Links Section (技術紹介 - 共通セクション)
**************/
.tech-links {
  background-color: #1D1B52;
  padding: 6rem 0;
  margin-bottom: 8rem;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .tech-links {
    margin-bottom: 4rem;
  }
}
@media (max-width: 559.9px) {
  .tech-links {
    padding: 4rem 0;
    margin-bottom: 3rem;
  }
}
.tech-links__inner {
  max-width: 1380px;
  margin: 0 auto;
  width: 94%;
}
@media (max-width: 559.9px) {
  .tech-links__inner {
    width: 90%;
  }
}
.tech-links__title {
  margin-bottom: 4rem;
}
@media (max-width: 559.9px) {
  .tech-links__title {
    margin-bottom: 3rem;
  }
}
.tech-links__title-en {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 8.8rem;
  font-weight: 900;
  line-height: 1;
  font-size: min(8.8rem, 6.8vw);
  font-style: italic;
  color: #FFFFFF;
  letter-spacing: 0.05em;
}
@media (max-width: 559.9px) {
  .tech-links__title-en {
    font-size: 3rem;
  }
}
.tech-links__title-ja {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 0.5rem;
}
@media (max-width: 559.9px) {
  .tech-links__title-ja {
    font-size: 1.4rem;
  }
}
.tech-links__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 559.9px) {
  .tech-links__cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.tech-links__card {
  position: relative;
  aspect-ratio: 68/37;
  overflow: hidden;
  display: block;
  transition: all 0.3s ease 0s;
}
.tech-links__card:hover img {
  transform: scale(1.05);
}
.tech-links__card:hover .tech-links__card-arrow {
  background-color: #FFFFFF;
}
.tech-links__card:hover .tech-links__card-arrow svg {
  color: #0A0A09;
}
.tech-links__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease 0s;
}
.tech-links__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.6) 100%);
}
.tech-links__card-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 2rem;
}
@media (max-width: 559.9px) {
  .tech-links__card-content {
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
  }
}
.tech-links__card-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.tech-links__card-en {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  font-style: italic;
  color: white;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
@media (max-width: 559.9px) {
  .tech-links__card-en {
    font-size: 1rem;
  }
}
.tech-links__card-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #FFFFFF;
}
@media (max-width: 559.9px) {
  .tech-links__card-title {
    font-size: 1.8rem;
  }
}
.tech-links__card-arrow {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #00A1E9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease 0s;
}
@media (max-width: 559.9px) {
  .tech-links__card-arrow {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.tech-links__card-arrow svg {
  width: 1.6rem;
  height: 1.6rem;
  color: white;
}
@media (max-width: 559.9px) {
  .tech-links__card-arrow svg {
    width: 1.2rem;
    height: 1.2rem;
  }
}

/* 採用情報 */
.center-title {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 559.9px) {
  .center-title {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
}

.recruit_top {
  padding-bottom: 10rem;
}
@media (max-width: 559.9px) {
  .recruit_top {
    padding-bottom: 4rem;
  }
}
.recruit_top .head-1 {
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
}
@media (max-width: 559.9px) {
  .recruit_top .head-1 {
    font-size: 2.2rem;
  }
}
.recruit_top .head-2 {
  text-align: center;
  margin-top: 2.4rem;
}
.recruit_top .recruit_top_circles {
  width: 100%;
  max-width: 1040px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  margin: 4rem auto 0;
}
.recruit_top .recruit_top_circles img {
  display: block;
  width: calc(33.3333333333% - 1.6rem);
}

.recruit_panel_section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 559.9px) {
  .recruit_panel_section {
    gap: 20px;
  }
}
.recruit_panel_section .reruit_panel {
  position: relative;
  width: 100%;
}
@media (max-width: 1199.9px) {
  .recruit_panel_section .reruit_panel {
    height: 560px;
  }
}
@media (max-width: 559.9px) {
  .recruit_panel_section .reruit_panel {
    height: 500px;
  }
}
.recruit_panel_section .reruit_panel .reruit_panel_img {
  display: block;
  width: 100%;
}
@media (max-width: 1199.9px) {
  .recruit_panel_section .reruit_panel .reruit_panel_img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
}
.recruit_panel_section .reruit_panel .recruit_panel_inner {
  background: rgba(10, 10, 9, 0.8);
  padding: 0 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 48vw;
  min-width: 592px;
  gap: 24px;
}
@media (max-width: 559.9px) {
  .recruit_panel_section .reruit_panel .recruit_panel_inner {
    padding: 0 24px;
    min-width: inherit;
    width: 100%;
    gap: 18px;
  }
}
.recruit_panel_section .reruit_panel .recruit_panel_inner .title_area {
  display: flex;
  flex-direction: column-reverse;
}
.recruit_panel_section .reruit_panel .recruit_panel_inner .title_area .jp {
  color: white;
  font-weight: bold;
  font-size: 2.4rem;
}
@media (max-width: 559.9px) {
  .recruit_panel_section .reruit_panel .recruit_panel_inner .title_area .jp {
    font-size: 15px;
  }
}
.recruit_panel_section .reruit_panel .recruit_panel_inner .title_area .eng {
  color: white;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 6.4rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
}
@media (max-width: 559.9px) {
  .recruit_panel_section .reruit_panel .recruit_panel_inner .title_area .eng {
    font-size: 3rem;
  }
}
.recruit_panel_section .reruit_panel .recruit_panel_inner .text-white {
  color: white;
  line-height: 1.8;
}
.recruit_panel_section .reruit_panel:nth-child(even) .recruit_panel_inner {
  left: 0;
}

.btn-viewmore {
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  height: 56px;
  width: 264px;
  position: relative;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0);
}
.btn-viewmore:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn-viewmore .txt {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: white;
  font-style: italic;
  padding-right: 16px;
}
.btn-viewmore .icon {
  display: block;
  width: 14px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.blue_title {
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  padding-left: 12px;
  color: white;
}
@media (max-width: 559.9px) {
  .blue_title {
    font-size: 18px;
  }
}
.blue_title::before {
  content: "";
  width: 3px;
  height: 90%;
  background-color: #00A1E9;
  position: absolute;
  left: 0;
  top: 10%;
}

.recruit_interview_section {
  padding: 100px 0;
  background: url(../images/page/recruit/interview_bg.png) repeat-x top;
  background-size: 524px 524px;
}
@media (max-width: 559.9px) {
  .recruit_interview_section {
    padding: 40px 0;
    background-color: #0A0A09;
  }
}

.recruit_interveiw_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  gap: 30px;
}
@media (max-width: 559.9px) {
  .recruit_interveiw_list {
    gap: 18px;
    justify-content: center;
  }
}
.recruit_interveiw_list > li {
  width: calc(33.3333333333% - 20px);
  position: relative;
}
@media (max-width: 559.9px) {
  .recruit_interveiw_list > li {
    width: 180px;
  }
}
.recruit_interveiw_list > li .thumb {
  width: 100%;
  aspect-ratio: 2/3;
  position: relative;
  overflow: hidden;
}
.recruit_interveiw_list > li .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease;
}
.recruit_interveiw_list > li:hover .thumb img {
  transform: scale(1.1);
}
.recruit_interveiw_list > li .name_area {
  background: rgba(29, 27, 89, 0.6);
  width: 160px;
  height: 120px;
  padding: 16px 24px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 559.9px) {
  .recruit_interveiw_list > li .name_area {
    width: 140px;
    height: 100px;
  }
}
.recruit_interveiw_list > li .name_area .initial {
  color: #FFFFFF;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  letter-spacing: 0.1em;
}
@media (max-width: 559.9px) {
  .recruit_interveiw_list > li .name_area .initial {
    font-size: 2rem;
  }
}
.recruit_interveiw_list > li .name_area .belonging {
  color: white;
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 4px;
}
@media (max-width: 559.9px) {
  .recruit_interveiw_list > li .name_area .belonging {
    font-size: 13px;
  }
}

.recruit_greet_section {
  background-color: #F7F7FF;
}

.recruit_greet_head {
  display: flex;
  gap: 10px;
}
@media (max-width: 559.9px) {
  .recruit_greet_head {
    flex-direction: column;
  }
}
.recruit_greet_head .img_area {
  width: 56%;
  position: relative;
  padding: 140px 0 0 110px;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .recruit_greet_head .img_area {
    padding: 110px 0 0 56px;
  }
}
@media (max-width: 559.9px) {
  .recruit_greet_head .img_area {
    width: 100%;
    padding: 40px 0 0 74px;
  }
}
.recruit_greet_head .img_area::before {
  content: "";
  display: block;
  background-color: #175E95;
  position: absolute;
  left: 0;
  top: 0;
  width: 90%;
  height: 84%;
}
@media (min-width: 560px) and (max-width: 820.9px) {
  .recruit_greet_head .img_area::before {
    width: 78%;
    height: 46%;
  }
}
.recruit_greet_head .img_area img {
  display: block;
  position: relative;
}
.recruit_greet_head .text_area {
  flex: 1;
  padding-top: 24px;
}
.recruit_greet_head .text_area .t_texts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.recruit_greet_head .text_area .t_texts > p {
  background-color: #0A0A09;
  color: white;
  padding: 24px;
  font-size: 3.4rem;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
}
.recruit_greet_head .text_area .t_texts > p:nth-child(2) {
  margin-left: auto;
}
@media (max-width: 999.9px) {
  .recruit_greet_head .text_area .t_texts > p {
    font-size: 2.6rem;
  }
}
@media (max-width: 559.9px) {
  .recruit_greet_head .text_area .t_texts > p {
    font-size: 2rem;
  }
}
.recruit_greet_head .text_area .greet_name_area {
  margin-top: 64px;
  padding-left: 40px;
}
@media (max-width: 559.9px) {
  .recruit_greet_head .text_area .greet_name_area {
    padding-left: 0;
    margin-top: 34px;
  }
}
.recruit_greet_head .text_area .greet_name_area .eng_corp {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  font-style: italic;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.recruit_greet_head .text_area .greet_name_area .eng_name {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 6.4rem;
  font-weight: 500;
  line-height: 1;
  font-style: italic;
  letter-spacing: 0.08em;
}
@media (max-width: 999.9px) {
  .recruit_greet_head .text_area .greet_name_area .eng_name {
    font-size: 5rem;
  }
}
@media (max-width: 559.9px) {
  .recruit_greet_head .text_area .greet_name_area .eng_name {
    font-size: 3rem;
  }
}
.recruit_greet_head .text_area .greet_name_area .eng_name.eng_name-1 {
  margin-left: 56px;
}
@media (max-width: 559.9px) {
  .recruit_greet_head .text_area .greet_name_area .eng_name.eng_name-1 {
    margin-left: 44px;
  }
}
.recruit_greet_head .text_area .greet_name_area .eng_name.eng_name-2 {
  margin-left: 104px;
  margin-top: 5px;
}
.recruit_greet_head .text_area .greet_name_area .jp_name {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: 16px;
}

.recruit_greet_text {
  width: 100%;
  max-width: 960px;
  margin: 80px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 559.9px) {
  .recruit_greet_text {
    margin-top: 30px;
  }
}

.recruit_buttons_section {
  width: 92%;
  max-width: 1000px;
  margin: 100px auto;
}
.recruit_buttons_section .mynavi {
  margin: 60px auto 0;
  display: block;
}

.recruit_buttons {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 559.9px) {
  .recruit_buttons {
    margin: 40px auto;
    gap: 20px;
  }
}
.recruit_buttons .recruit_button {
  display: flex;
}
@media (max-width: 559.9px) {
  .recruit_buttons .recruit_button {
    flex-direction: column;
  }
}
.recruit_buttons .recruit_button .text_side {
  background-color: #1D1B52;
  width: 54%;
  padding: 48px;
}
@media (max-width: 559.9px) {
  .recruit_buttons .recruit_button .text_side {
    width: 100%;
    padding: 28px;
  }
}
.recruit_buttons .recruit_button .text_side .eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  color: white;
  margin-bottom: 5px;
}
@media (max-width: 559.9px) {
  .recruit_buttons .recruit_button .text_side .eng {
    font-size: 2rem;
  }
}
.recruit_buttons .recruit_button .text_side .jp {
  font-size: 2.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
}
@media (max-width: 559.9px) {
  .recruit_buttons .recruit_button .text_side .jp {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.recruit_buttons .recruit_button .img_side {
  flex: 1;
  position: relative;
  width: 44%;
}
@media (max-width: 559.9px) {
  .recruit_buttons .recruit_button .img_side {
    display: none;
  }
}
.recruit_buttons .recruit_button .img_side img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.career-header {
  position: relative;
  padding: 100px 0 80px;
  background: #175E95;
}
@media (max-width: 820.9px) {
  .career-header {
    padding: 60px 0 50px;
  }
}
.career-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.career-header__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
}
.career-header__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(23, 94, 149, 0.95) 0%, rgba(23, 94, 149, 0.85) 50%, transparent 50%);
}
@media (max-width: 820.9px) {
  .career-header__overlay {
    background: linear-gradient(135deg, rgba(23, 94, 149, 0.95) 0%, rgba(23, 94, 149, 0.85) 60%, transparent 60%);
  }
}
.career-header__content {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 60px;
}
@media (max-width: 820.9px) {
  .career-header__content {
    padding-left: 20px;
  }
}
.career-header__eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 820.9px) {
  .career-header__eng {
    font-size: 3.6rem;
    margin-bottom: 15px;
  }
}
@media (max-width: 559.9px) {
  .career-header__eng {
    font-size: 2.8rem;
  }
}
.career-header__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 30px;
}
@media (max-width: 820.9px) {
  .career-header__title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.career-header__text {
  font-size: 1.5rem;
  color: #FFFFFF;
  line-height: 2;
}
@media (max-width: 820.9px) {
  .career-header__text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.career-header .arrow_up {
  position: absolute;
  bottom: -80px;
  display: block;
  width: 800px;
  right: 10vw;
}
@media (max-width: 820.9px) {
  .career-header .arrow_up {
    bottom: -60px;
    width: 540px;
  }
}

.career-steps {
  padding: 50px 0 80px;
  background: #FFFFFF;
}
@media (max-width: 999.9px) {
  .career-steps {
    padding: 50px 0;
  }
}
.career-steps__title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  color: #175E95;
}
.career-steps__inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
.career-steps__list {
  display: flex;
  justify-content: center;
  gap: 48px;
}
@media (max-width: 559.9px) {
  .career-steps__list {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.career-steps__item {
  background: #FFFFFF;
  border: 2px solid #175E95;
  border-radius: 8px;
  padding: 20px 15px;
  text-align: center;
  width: calc(33.3333333333% - 32px);
  min-width: 150px;
  position: relative;
}
.career-steps__item:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -43px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolygon points='5,4 19,12 5,20' fill='%23175E95'/%3E%3C/svg%3E") no-repeat center/contain;
}
@media (max-width: 559.9px) {
  .career-steps__item {
    width: 100%;
  }
  .career-steps__item:not(:last-child)::after {
    top: auto;
    bottom: -36px;
    right: 50%;
    transform: translateX(50%) rotate(90deg);
  }
}
.career-steps__number {
  display: block;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: #175E95;
  margin-bottom: 10px;
}
.career-steps__number strong {
  font-size: 2rem;
}
.career-steps__role {
  font-size: 1.6rem;
  font-weight: 700;
  color: #175E95;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #175E95;
}
.career-steps__desc {
  font-size: 1.3rem;
  color: #444444;
  line-height: 1.6;
  text-align: left;
}

.career-senior {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #EFEEEE 0%, #FFFFFF 100%);
  overflow: hidden;
}
@media (max-width: 820.9px) {
  .career-senior {
    padding: 50px 0;
  }
}
.career-senior__bg-text {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 18rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  color: rgba(23, 94, 149, 0.08);
  white-space: nowrap;
  pointer-events: none;
}
@media (max-width: 820.9px) {
  .career-senior__bg-text {
    font-size: 10rem;
    right: -10%;
  }
}
@media (max-width: 559.9px) {
  .career-senior__bg-text {
    font-size: 6rem;
  }
}
.career-senior__inner {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 820.9px) {
  .career-senior__inner {
    flex-direction: column;
    gap: 30px;
  }
}
.career-senior__header {
  flex: 1;
}
.career-senior__eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  color: #175E95;
  line-height: 1;
  margin-bottom: 20px;
}
@media (max-width: 820.9px) {
  .career-senior__eng {
    font-size: 2.8rem;
    text-align: center;
  }
}
@media (max-width: 559.9px) {
  .career-senior__eng {
    font-size: 2.2rem;
  }
}
.career-senior__title {
  font-size: 2rem;
  font-weight: 700;
  color: #0A0A09;
}
@media (max-width: 820.9px) {
  .career-senior__title {
    font-size: 1.6rem;
    text-align: center;
  }
}
.career-senior__circles {
  display: flex;
  gap: 20px;
}
@media (max-width: 820.9px) {
  .career-senior__circles {
    gap: 15px;
  }
}
.career-senior__circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 820.9px) {
  .career-senior__circle {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 559.9px) {
  .career-senior__circle {
    width: 100px;
    height: 100px;
  }
}
.career-senior__circle--01 {
  transform: translateY(20px);
}
@media (max-width: 820.9px) {
  .career-senior__circle--01 {
    transform: translateY(10px);
  }
}
.career-senior__circle--02 {
  transform: translateY(-20px);
}
@media (max-width: 820.9px) {
  .career-senior__circle--02 {
    transform: translateY(-10px);
  }
}

.career-detail {
  padding: 40px 0;
  background: #FFFFFF;
}
@media (max-width: 820.9px) {
  .career-detail {
    padding: 50px 0;
  }
}
.career-detail__inner {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 820.9px) {
  .career-detail__inner {
    gap: 50px;
  }
}
.career-detail__item {
  background: #FFFFFF;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}
.career-detail__header {
  display: flex;
  background: #175E95;
}
@media (max-width: 820.9px) {
  .career-detail__header {
    flex-direction: column;
  }
}
.career-detail__info {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 820.9px) {
  .career-detail__info {
    padding: 30px;
    order: 2;
  }
}
.career-detail__initial {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  color: #FFFFFF;
  margin-bottom: 20px;
}
@media (max-width: 820.9px) {
  .career-detail__initial {
    font-size: 4rem;
    margin-bottom: 15px;
  }
}
.career-detail__meta {
  display: flex;
  gap: 10px;
}
.career-detail__date, .career-detail__type {
  display: inline-block;
  background: #FFFFFF;
  color: #175E95;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 4px;
}
@media (max-width: 820.9px) {
  .career-detail__date, .career-detail__type {
    font-size: 1.2rem;
    padding: 6px 12px;
  }
}
.career-detail__photo {
  width: 45%;
  min-height: 280px;
  position: relative;
}
@media (max-width: 820.9px) {
  .career-detail__photo {
    width: 100%;
    min-height: 200px;
    order: 1;
  }
}
.career-detail__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.career-detail__content {
  padding: 40px;
}
@media (max-width: 820.9px) {
  .career-detail__content {
    padding: 30px 20px;
  }
}
.career-detail__dl {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dashed #ddd;
}
.career-detail__dl:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.career-detail__dl dt {
  font-size: 1.8rem;
  font-weight: 700;
  color: #175E95;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 820.9px) {
  .career-detail__dl dt {
    font-size: 1.6rem;
  }
}
.career-detail__dl dd {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #444444;
}
@media (max-width: 820.9px) {
  .career-detail__dl dd {
    font-size: 1.4rem;
  }
}
.career-detail__dl--summary {
  background: #f8f9fa;
  padding: 25px !important;
  border-radius: 8px;
  border-bottom: none;
}
.career-detail__dl--summary dt {
  color: #175E95;
}
.career-detail__dl--summary dt i {
  font-size: 2rem;
}
.career-detail__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #175E95;
  color: #FFFFFF;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 50%;
  flex-shrink: 0;
}

.recruit-cta {
  background: #EFEEEE;
  padding: 80px 0;
}
@media (max-width: 820.9px) {
  .recruit-cta {
    padding: 50px 0;
  }
}
.recruit-cta__inner {
  width: 92%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.recruit-cta__item {
  display: block;
  background: #0A0A09;
  padding: 40px;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
@media (max-width: 820.9px) {
  .recruit-cta__item {
    padding: 30px;
  }
}
.recruit-cta__item:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}
.recruit-cta__content {
  text-align: center;
}
.recruit-cta__eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  color: #FFFFFF;
  margin-bottom: 5px;
}
@media (max-width: 820.9px) {
  .recruit-cta__eng {
    font-size: 2.4rem;
  }
}
.recruit-cta__jp {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
}
@media (max-width: 820.9px) {
  .recruit-cta__jp {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
.recruit-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #FFFFFF;
  padding: 10px 25px;
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: 500;
  transition: all 0.3s ease 0s;
}
.recruit-cta__btn-icon {
  width: 16px;
  height: auto;
}

.inter_content {
  margin-bottom: 6rem;
  padding: 4rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
@media (max-width: 559.9px) {
  .inter_content {
    padding: 2rem;
  }
}

.top_img_box {
  display: flex;
  gap: 8rem;
  align-items: center;
}
@media (max-width: 999.9px) {
  .top_img_box {
    gap: 4rem;
  }
}
@media (max-width: 820.9px) {
  .top_img_box {
    flex-direction: column;
    gap: 3rem;
  }
}
.top_img_box .staff_img_box .staff_img {
  max-width: 350px;
  position: relative;
  padding-left: 3rem;
}
@media (max-width: 999.9px) {
  .top_img_box .staff_img_box .staff_img {
    width: 300px;
  }
}
@media (max-width: 559.9px) {
  .top_img_box .staff_img_box .staff_img {
    width: 100%;
  }
}
.top_img_box .staff_img_box .staff_img .inter {
  position: absolute;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  top: 14%;
  left: 0;
  line-height: 0.8;
  writing-mode: sideways-lr;
  letter-spacing: 0.4rem;
}
.top_img_box .staff_img_box .staff_img .inter::after {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: 14rem;
  top: 15rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0A0A09;
}
@media (max-width: 559.9px) {
  .top_img_box .staff_img_box .staff_img .inter::after {
    height: 8rem;
  }
}
.top_img_box .staff_img_box .staff_img .name {
  position: absolute;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  bottom: -8%;
  left: 0;
  line-height: 0.8;
}
@media (max-width: 559.9px) {
  .top_img_box .staff_img_box .staff_img .name {
    font-size: 5rem;
  }
}
.top_img_box .staff_img_box .staff_img .ffiliation {
  position: absolute;
  font-size: 16px;
  bottom: -9%;
  right: 0;
  font-weight: 700;
}
.top_img_box .staff_img_box .inter_career {
  font-size: 13px;
  padding-top: 4rem;
  text-align: right;
  font-weight: 700;
  line-height: 1.3;
}
.top_img_box .qa_side {
  width: calc(100% - 350px - 8rem);
}
@media (max-width: 999.9px) {
  .top_img_box .qa_side {
    width: calc(100% - 300px - 4rem);
  }
}
@media (max-width: 820.9px) {
  .top_img_box .qa_side {
    width: 100%;
  }
}
.top_img_box_r {
  flex-direction: row-reverse;
}
@media (max-width: 820.9px) {
  .top_img_box_r {
    flex-direction: column;
  }
}

.qa {
  margin-top: 4rem;
}
.qa.mt30 {
  margin-top: 3rem;
}
.qa.mt100 {
  margin-top: 10rem;
}
@media (max-width: 820.9px) {
  .qa.mt100 {
    margin-top: 4rem;
  }
}
.qa .ques {
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: #1D1B52;
}
@media (max-width: 999.9px) {
  .qa .ques {
    font-size: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 559.9px) {
  .qa .ques {
    font-size: 18px;
  }
}
.qa .ques::before {
  line-height: 0.8;
  content: "Q";
  display: inline-block;
  color: #1D1B52;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  margin-right: 0.8rem;
}
@media (max-width: 559.9px) {
  .qa .ques::before {
    font-size: 2.6rem;
    padding-top: 3px;
  }
}
.qa .ans {
  margin-top: 1rem;
  display: flex;
  border-left: 2px solid #0A0A09;
  padding: 0.4rem 0 0.4rem 1rem;
  margin-left: 1.1rem;
}
@media (max-width: 559.9px) {
  .qa .ans {
    margin-left: 0;
  }
}

.staff_messsage {
  margin-top: 4rem;
  padding: 24px;
  border-radius: 4px;
  background-color: #1D1B52;
}
.staff_messsage .staff_message_title {
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 559.9px) {
  .staff_messsage .staff_message_title {
    margin-bottom: 2rem;
  }
}
.staff_messsage .staff_message_title h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
}
@media (max-width: 559.9px) {
  .staff_messsage .staff_message_title h2 {
    font-size: 2rem;
  }
}
.staff_messsage .staff_message_title .eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  font-style: italic;
  margin-top: 8px;
  color: #FFFFFF;
}
.staff_messsage .text {
  color: #fff;
}

.work-numbers {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: #175E95;
}
@media (max-width: 820.9px) {
  .work-numbers {
    padding: 50px 0;
  }
}
.work-numbers__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.work-numbers__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
}
.work-numbers__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(23, 94, 149, 0.95) 0%, rgba(23, 94, 149, 0.85) 60%, transparent 60%);
}
@media (max-width: 820.9px) {
  .work-numbers__overlay {
    background: linear-gradient(135deg, rgba(23, 94, 149, 0.95) 0%, rgba(23, 94, 149, 0.85) 70%, transparent 70%);
  }
}
@media (max-width: 559.9px) {
  .work-numbers__overlay {
    background: rgba(23, 94, 149, 0.9);
  }
}
.work-numbers__inner {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
.work-numbers__header {
  margin-bottom: 50px;
  padding-left: 20px;
}
@media (max-width: 820.9px) {
  .work-numbers__header {
    margin-bottom: 30px;
    padding-left: 0;
    text-align: center;
  }
}
.work-numbers__eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  color: #FFFFFF;
  margin-bottom: 10px;
}
@media (max-width: 820.9px) {
  .work-numbers__eng {
    font-size: 3.2rem;
  }
}
@media (max-width: 559.9px) {
  .work-numbers__eng {
    font-size: 2.6rem;
  }
}
.work-numbers__title {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
}
@media (max-width: 820.9px) {
  .work-numbers__title {
    font-size: 1.6rem;
  }
}
.work-numbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 820.9px) {
  .work-numbers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 559.9px) {
  .work-numbers__grid {
    grid-template-columns: 1fr;
  }
}
.work-numbers__card {
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.work-numbers__card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (max-width: 820.9px) {
  .work-numbers__card {
    min-height: 150px;
    padding: 20px 15px;
  }
}
.work-numbers__card--white {
  background: #FFFFFF;
}
.work-numbers__card--blue {
  background: #175E95;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.work-numbers__label {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 15px;
}
@media (max-width: 820.9px) {
  .work-numbers__label {
    font-size: 1.2rem;
    padding: 5px 12px;
  }
}
.work-numbers__label--blue {
  background: #175E95;
  color: #FFFFFF;
}
.work-numbers__label--yellow {
  background: #EAFF00;
  color: #0A0A09;
}
.work-numbers__label--white {
  background: #FFFFFF;
  color: #175E95;
}
.work-numbers__value {
  color: #175E95;
  line-height: 1;
}
.work-numbers__value strong {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
}
@media (max-width: 820.9px) {
  .work-numbers__value strong {
    font-size: 4rem;
  }
}
.work-numbers__value--white {
  color: #FFFFFF;
}
.work-numbers__unit {
  font-size: 2rem;
  font-weight: 700;
  margin-left: 5px;
}
@media (max-width: 820.9px) {
  .work-numbers__unit {
    font-size: 1.6rem;
  }
}
.work-numbers__sub {
  font-size: 1.2rem;
  color: #444444;
  margin-top: 10px;
}
.work-numbers__ratio {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
.work-numbers__ratio-item {
  font-size: 1.2rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}
.work-numbers__ratio-item--male {
  background: #e3f2fd;
  color: #1976d2;
}
.work-numbers__ratio-item--female {
  background: #fce4ec;
  color: #c2185b;
}
.work-numbers__dual {
  display: flex;
  align-items: center;
  gap: 15px;
}
.work-numbers__dual-item {
  text-align: center;
}
.work-numbers__dual-label {
  font-size: 1.2rem;
  color: #444444;
  margin-bottom: 5px;
}
.work-numbers__dual-value {
  color: #175E95;
  line-height: 1;
}
.work-numbers__dual-value strong {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
}
@media (max-width: 820.9px) {
  .work-numbers__dual-value strong {
    font-size: 3rem;
  }
}
.work-numbers__dual-value span {
  font-size: 1.4rem;
  font-weight: 700;
}
.work-numbers__dual-separator {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: #175E95;
}
.work-numbers__img {
  max-width: 100%;
  max-height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
.work-numbers__chart {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 820.9px) {
  .work-numbers__chart {
    gap: 15px;
  }
}
.work-numbers__pie {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(var(--color1) 0% calc(var(--percent1) * 1%), var(--color2) calc(var(--percent1) * 1%) 100%);
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 820.9px) {
  .work-numbers__pie {
    width: 80px;
    height: 80px;
  }
}
.work-numbers__pie::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  border-radius: 50%;
}
@media (max-width: 820.9px) {
  .work-numbers__pie::before {
    width: 40px;
    height: 40px;
  }
}
.work-numbers__legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.work-numbers__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  color: #444444;
}
@media (max-width: 820.9px) {
  .work-numbers__legend-item {
    font-size: 1.2rem;
    gap: 6px;
  }
}
.work-numbers__legend-item::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--color);
  border-radius: 2px;
  flex-shrink: 0;
}
.work-numbers__legend-item strong {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #175E95;
  margin-left: 3px;
}
@media (max-width: 820.9px) {
  .work-numbers__legend-item strong {
    font-size: 1.6rem;
  }
}

.work-training {
  padding: 80px 0;
  background: linear-gradient(180deg, #EFEEEE 0%, #FFFFFF 100%);
}
@media (max-width: 820.9px) {
  .work-training {
    padding: 50px 0;
  }
}
.work-training__inner {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
}
.work-training__header {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 820.9px) {
  .work-training__header {
    margin-bottom: 30px;
  }
}
.work-training__eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  color: #175E95;
  margin-bottom: 10px;
}
@media (max-width: 820.9px) {
  .work-training__eng {
    font-size: 2.8rem;
  }
}
@media (max-width: 559.9px) {
  .work-training__eng {
    font-size: 2.2rem;
  }
}
.work-training__title {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  background: #175E95;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 4px;
}
@media (max-width: 820.9px) {
  .work-training__title {
    font-size: 1.6rem;
    padding: 6px 20px;
  }
}
.work-training__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 820.9px) {
  .work-training__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 559.9px) {
  .work-training__grid {
    grid-template-columns: 1fr;
  }
}
.work-training__item {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease 0s;
}
@media (max-width: 820.9px) {
  .work-training__item {
    padding: 25px 15px;
  }
}
.work-training__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.work-training__item .kome {
  color: #4b4b4b;
  font-size: 1.3rem;
  margin-top: 0.4rem;
}
.work-training__icon {
  width: 70px;
  height: 70px;
  background: #EAFF00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}
@media (max-width: 820.9px) {
  .work-training__icon {
    width: 60px;
    height: 60px;
  }
}
.work-training__icon svg {
  width: 32px;
  height: 32px;
  color: #175E95;
}
@media (max-width: 820.9px) {
  .work-training__icon svg {
    width: 28px;
    height: 28px;
  }
}
.work-training__name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0A0A09;
  line-height: 1.5;
}
@media (max-width: 820.9px) {
  .work-training__name {
    font-size: 1.3rem;
  }
}
@media (max-width: 999.9px) {
  .work-training__name br {
    display: none;
  }
}

.work-benefits {
  padding: 80px 0;
  background: #FFFFFF;
}
@media (max-width: 820.9px) {
  .work-benefits {
    padding: 50px 0;
  }
}
@media (max-width: 559.9px) {
  .work-benefits {
    padding-bottom: 0;
  }
}
.work-benefits__inner {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
}
.work-benefits__header {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 820.9px) {
  .work-benefits__header {
    margin-bottom: 30px;
  }
}
.work-benefits__eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  color: #175E95;
  margin-bottom: 10px;
}
@media (max-width: 820.9px) {
  .work-benefits__eng {
    font-size: 2.8rem;
  }
}
@media (max-width: 559.9px) {
  .work-benefits__eng {
    font-size: 2.2rem;
  }
}
.work-benefits__title {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  background: #175E95;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 4px;
}
@media (max-width: 820.9px) {
  .work-benefits__title {
    font-size: 1.6rem;
    padding: 6px 20px;
  }
}
.work-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 820.9px) {
  .work-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 559.9px) {
  .work-benefits__grid {
    grid-template-columns: 1fr;
  }
}
.work-benefits__item {
  background: #EFEEEE;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease 0s;
}
@media (max-width: 820.9px) {
  .work-benefits__item {
    padding: 25px 15px;
  }
}
.work-benefits__item:hover {
  background: #e8e6e6;
}
.work-benefits__icon {
  width: 60px;
  height: 60px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border: 2px solid #175E95;
}
@media (max-width: 820.9px) {
  .work-benefits__icon {
    width: 50px;
    height: 50px;
  }
}
.work-benefits__icon svg {
  width: 28px;
  height: 28px;
  color: #175E95;
}
@media (max-width: 820.9px) {
  .work-benefits__icon svg {
    width: 24px;
    height: 24px;
  }
}
.work-benefits__name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0A0A09;
  line-height: 1.5;
}
@media (max-width: 820.9px) {
  .work-benefits__name {
    font-size: 1.3rem;
  }
}

.product-list {
  padding: 80px 0;
  background: #FFFFFF;
}
@media (max-width: 820.9px) {
  .product-list {
    padding: 50px 0;
  }
}
.product-list__inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}
@media (max-width: 820.9px) {
  .product-list__inner {
    flex-direction: column;
    gap: 30px;
  }
}
.product-list__sidebar {
  width: 250px;
  flex-shrink: 0;
}
@media (max-width: 820.9px) {
  .product-list__sidebar {
    width: 100%;
  }
}
.product-list__main {
  flex: 1;
}
.product-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 999.9px) {
  .product-list__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 559.9px) {
  .product-list__grid {
    grid-template-columns: 1fr;
  }
}
.product-list__grid .product-card.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

.product-filter {
  background: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
@media (max-width: 820.9px) {
  .product-filter {
    position: static;
  }
}
.product-filter__search {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #175E95;
  margin-bottom: 10px;
}
.product-filter__search i {
  font-size: 1.4rem;
}
.product-filter__input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.product-filter__input:focus {
  outline: none;
  border-color: #175E95;
}
.product-filter__input::-moz-placeholder {
  color: #999;
}
.product-filter__input::placeholder {
  color: #999;
}
.product-filter__group {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}
.product-filter__group:last-of-type {
  margin-bottom: 20px;
}
.product-filter__group--technology .product-filter__title {
  background: #1D1B52;
}
.product-filter__group--technology .product-filter__checkbox input[type=checkbox] {
  accent-color: #c5d600;
}
.product-filter__group--industry .product-filter__title {
  background: #b8e1f0;
}
.product-filter__group--industry .product-filter__checkbox input[type=checkbox] {
  accent-color: #7ec8e3;
}
.product-filter__group--issue .product-filter__title {
  background: #E8E3DD;
}
.product-filter__group--issue .product-filter__checkbox input[type=checkbox] {
  accent-color: #c9c2b8;
}
.product-filter__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0A0A09;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 4px;
}
.product-filter__title.white {
  color: white;
}
.product-filter__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  color: #444444;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.product-filter__checkbox:last-child {
  margin-bottom: 0;
}
.product-filter__checkbox:hover {
  color: #175E95;
}
.product-filter__checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #175E95;
  cursor: pointer;
}
.product-filter__btn {
  width: 100%;
  padding: 12px;
  background: #175E95;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.product-filter__btn:hover {
  background: #104269;
}

.product-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease 0s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.product-card__image {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #EFEEEE;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease 0s;
}
.product-card:hover .product-card__image img {
  transform: scale(1.05);
}
.product-card__body {
  padding: 20px;
}
@media (max-width: 820.9px) {
  .product-card__body {
    padding: 15px;
  }
}
.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.product-card__tag {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 3px;
}
@media (max-width: 820.9px) {
  .product-card__tag {
    font-size: 1rem;
    padding: 3px 8px;
  }
}
.product-card__tag--technology {
  background: #1D1B52;
  color: white;
  border: none;
}
.product-card__tag--industry {
  background: #b8e1f0;
  color: #0A0A09;
  border: none;
}
.product-card__tag--issue {
  background: #E8E3DD;
  color: #0A0A09;
  border: none;
}
.product-card__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0A0A09;
  margin-bottom: 10px;
  line-height: 1.4;
}
@media (max-width: 820.9px) {
  .product-card__title {
    font-size: 1.5rem;
  }
}
.product-card__desc {
  font-size: 1.4rem;
  color: #444444;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 820.9px) {
  .product-card__desc {
    font-size: 1.3rem;
  }
}

.product-single {
  padding: 80px 0;
  background: #FFFFFF;
}
@media (max-width: 820.9px) {
  .product-single {
    padding: 50px 0;
  }
}
.product-single__inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}
@media (max-width: 820.9px) {
  .product-single__inner {
    flex-direction: column;
    gap: 30px;
  }
}
.product-single__main {
  flex: 1;
}
.product-single__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0A0A09;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #175E95;
}
@media (max-width: 820.9px) {
  .product-single__title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.product-single__image {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}
.product-single__image img {
  width: 100%;
  height: auto;
  display: block;
}
.product-single__table {
  width: 100%;
  margin-bottom: 30px;
  border-collapse: collapse;
}
.product-single__table th, .product-single__table td {
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  text-align: left;
  vertical-align: middle;
}
@media (max-width: 820.9px) {
  .product-single__table th, .product-single__table td {
    padding: 12px 15px;
  }
}
.product-single__table th {
  width: 120px;
  background: #EFEEEE;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0A0A09;
}
@media (max-width: 820.9px) {
  .product-single__table th {
    width: 100px;
    font-size: 1.3rem;
  }
}
.product-single__table td {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-single__content {
  margin-bottom: 40px;
}
.product-single__content p {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #444444;
  margin-bottom: 20px;
}
@media (max-width: 820.9px) {
  .product-single__content p {
    font-size: 1.4rem;
  }
}
.product-single__content p:last-child {
  margin-bottom: 0;
}
.product-single__content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0A0A09;
  margin-top: 30px;
  margin-bottom: 15px;
}
@media (max-width: 820.9px) {
  .product-single__content h2 {
    font-size: 1.5rem;
  }
}
.product-single__lead {
  font-size: 1.6rem !important;
  font-weight: 700;
  color: #0A0A09 !important;
}
@media (max-width: 820.9px) {
  .product-single__lead {
    font-size: 1.5rem !important;
  }
}
.product-single__back {
  text-align: center;
  margin-top: 50px;
}
.product-single__back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 15px 40px;
  background: #175E95;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
@media (max-width: 820.9px) {
  .product-single__back-btn {
    min-width: 180px;
    padding: 12px 30px;
    font-size: 1.4rem;
  }
}
.product-single__back-btn:hover {
  background: #104269;
}

.product-related {
  padding: 80px 0;
  background: #EFEEEE;
}
@media (max-width: 820.9px) {
  .product-related {
    padding: 50px 0;
  }
}
.product-related__inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
.product-related__header {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 820.9px) {
  .product-related__header {
    margin-bottom: 30px;
  }
}
.product-related__eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  color: #175E95;
  margin-bottom: 10px;
}
@media (max-width: 820.9px) {
  .product-related__eng {
    font-size: 2.8rem;
  }
}
@media (max-width: 559.9px) {
  .product-related__eng {
    font-size: 2.2rem;
  }
}
.product-related__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0A0A09;
}
@media (max-width: 820.9px) {
  .product-related__title {
    font-size: 1.6rem;
  }
}
.product-related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
@media (max-width: 999.9px) {
  .product-related__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 559.9px) {
  .product-related__grid {
    grid-template-columns: 1fr;
  }
}

.equipment-intro {
  padding: 80px 0 40px;
}
@media (max-width: 820.9px) {
  .equipment-intro {
    padding: 50px 0 30px;
  }
}
.equipment-intro__inner {
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.equipment-intro__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0A0A09;
  margin-bottom: 30px;
}
@media (max-width: 820.9px) {
  .equipment-intro__title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.equipment-intro__tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 820.9px) {
  .equipment-intro__tabs {
    gap: 8px;
  }
}
.equipment-intro__tab {
  padding: 12px 24px;
  background: #FFFFFF;
  border: 2px solid #175E95;
  color: #175E95;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
@media (max-width: 820.9px) {
  .equipment-intro__tab {
    padding: 10px 18px;
    font-size: 1.3rem;
  }
}
@media (max-width: 559.9px) {
  .equipment-intro__tab {
    padding: 8px 14px;
    font-size: 1.2rem;
  }
}
.equipment-intro__tab:hover, .equipment-intro__tab.is-active {
  background: #175E95;
  color: #FFFFFF;
}

.equipment-main {
  padding: 60px 0 80px;
  background: #EFEEEE;
}
@media (max-width: 820.9px) {
  .equipment-main {
    padding: 40px 0 50px;
  }
}
.equipment-main__inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
.equipment-main__header {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 820.9px) {
  .equipment-main__header {
    margin-bottom: 30px;
  }
}
.equipment-main__eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  color: #175E95;
  margin-bottom: 10px;
}
@media (max-width: 820.9px) {
  .equipment-main__eng {
    font-size: 2.8rem;
  }
}
@media (max-width: 559.9px) {
  .equipment-main__eng {
    font-size: 2.2rem;
  }
}
.equipment-main__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0A0A09;
}
@media (max-width: 820.9px) {
  .equipment-main__title {
    font-size: 1.6rem;
  }
}
.equipment-main__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
@media (max-width: 820.9px) {
  .equipment-main__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (max-width: 559.9px) {
  .equipment-main__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.equipment-main__item {
  overflow: hidden;
  border-radius: 8px;
}
.equipment-main__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
  transition: all 0.3s ease 0s;
}
.equipment-main__item:hover img {
  transform: scale(1.05);
}

.equipment-list {
  padding: 80px 0;
}
@media (max-width: 820.9px) {
  .equipment-list {
    padding: 50px 0;
  }
}
.equipment-list__inner {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
}
.equipment-list__header {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 820.9px) {
  .equipment-list__header {
    margin-bottom: 40px;
  }
}
.equipment-list__eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  color: #175E95;
  margin-bottom: 10px;
}
@media (max-width: 820.9px) {
  .equipment-list__eng {
    font-size: 2.8rem;
  }
}
@media (max-width: 559.9px) {
  .equipment-list__eng {
    font-size: 2.2rem;
  }
}
.equipment-list__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0A0A09;
}
@media (max-width: 820.9px) {
  .equipment-list__title {
    font-size: 1.6rem;
  }
}
.equipment-list__section {
  margin-bottom: 50px;
}
@media (max-width: 820.9px) {
  .equipment-list__section {
    margin-bottom: 40px;
  }
}
.equipment-list__section:last-child {
  margin-bottom: 0;
}
.equipment-list__section-header {
  margin-bottom: 20px;
}
.equipment-list__section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0A0A09;
  padding: 12px 20px;
  background: #EFEEEE;
  border-left: 4px solid #175E95;
}
@media (max-width: 820.9px) {
  .equipment-list__section-title {
    font-size: 1.6rem;
    padding: 10px 15px;
  }
}
.equipment-list__table-wrap {
  overflow-x: auto;
}
.equipment-list__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
}
@media (max-width: 820.9px) {
  .equipment-list__table {
    font-size: 1.3rem;
  }
}
.equipment-list__table th, .equipment-list__table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
}
@media (max-width: 820.9px) {
  .equipment-list__table th, .equipment-list__table td {
    padding: 10px 12px;
  }
}
.equipment-list__table th {
  background: #175E95;
  color: #FFFFFF;
  font-weight: 700;
  white-space: nowrap;
}
.equipment-list__table tbody tr {
  transition: all 0.3s ease 0s;
}
.equipment-list__table tbody tr:nth-child(even) {
  background: #f9f9f9;
}
.equipment-list__table tbody tr:hover {
  background: rgba(23, 94, 149, 0.05);
}
.equipment-list__table td:first-child {
  font-weight: 700;
  color: #175E95;
  white-space: nowrap;
}

.quality-intro {
  padding: 80px 0 60px;
}
@media (max-width: 820.9px) {
  .quality-intro {
    padding: 50px 0 40px;
  }
}
.quality-intro__inner {
  width: 92%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.quality-intro__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0A0A09;
  margin-bottom: 20px;
  line-height: 1.6;
}
@media (max-width: 820.9px) {
  .quality-intro__title {
    font-size: 1.8rem;
  }
}
@media (max-width: 559.9px) {
  .quality-intro__title {
    font-size: 1.6rem;
  }
}
.quality-intro__text {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #444444;
  margin-bottom: 40px;
}
@media (max-width: 820.9px) {
  .quality-intro__text {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}
.quality-intro__cert-box {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #EFEEEE;
  padding: 20px 40px;
  border-radius: 8px;
}
@media (max-width: 820.9px) {
  .quality-intro__cert-box {
    flex-direction: column;
    gap: 15px;
    padding: 20px 25px;
  }
}
.quality-intro__cert-label {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0A0A09;
}
@media (max-width: 820.9px) {
  .quality-intro__cert-label {
    font-size: 1.4rem;
  }
}
.quality-intro__cert-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.quality-intro__cert-tag {
  display: inline-block;
  background: #1D1B52;
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 4px;
}
@media (max-width: 820.9px) {
  .quality-intro__cert-tag {
    font-size: 1.2rem;
    padding: 8px 16px;
  }
}

.quality-trading {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
@media (max-width: 820.9px) {
  .quality-trading {
    padding: 50px 0;
  }
}
.quality-trading__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.quality-trading__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
}
.quality-trading__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.quality-trading__inner {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}
.quality-trading__header {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 820.9px) {
  .quality-trading__header {
    margin-bottom: 30px;
  }
}
.quality-trading__eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  color: #175E95;
  margin-bottom: 10px;
}
@media (max-width: 820.9px) {
  .quality-trading__eng {
    font-size: 2.8rem;
  }
}
@media (max-width: 559.9px) {
  .quality-trading__eng {
    font-size: 2.2rem;
  }
}
.quality-trading__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0A0A09;
}
@media (max-width: 820.9px) {
  .quality-trading__title {
    font-size: 1.6rem;
  }
}
.quality-trading__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 820.9px) {
  .quality-trading__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media (max-width: 559.9px) {
  .quality-trading__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.quality-trading__item {
  text-align: center;
}
.quality-trading__icon {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
  border: 3px solid #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.quality-trading__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.quality-trading__label {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0A0A09;
}
@media (max-width: 820.9px) {
  .quality-trading__label {
    font-size: 1.2rem;
  }
}
.quality-trading__desc {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #444444;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 820.9px) {
  .quality-trading__desc {
    font-size: 1.3rem;
  }
}
.quality-trading__btn-wrap {
  text-align: center;
}
.quality-trading__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: #FFFFFF;
  border: 2px solid #175E95;
  color: #175E95;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
@media (max-width: 820.9px) {
  .quality-trading__btn {
    padding: 12px 30px;
    font-size: 1.3rem;
  }
}
.quality-trading__btn:hover {
  background: #175E95;
  color: #FFFFFF;
}
.quality-trading__btn svg {
  width: 18px;
  height: 18px;
}

.quality-equipment {
  padding: 80px 0;
  background: #175E95;
}
@media (max-width: 820.9px) {
  .quality-equipment {
    padding: 50px 0;
  }
}
.quality-equipment__inner {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}
.quality-equipment__header {
  text-align: center;
  margin-bottom: 40px;
  color: #FFFFFF;
}
@media (max-width: 820.9px) {
  .quality-equipment__header {
    margin-bottom: 30px;
  }
}
.quality-equipment__eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.5;
}
@media (max-width: 820.9px) {
  .quality-equipment__eng {
    font-size: 2rem;
  }
}
@media (max-width: 559.9px) {
  .quality-equipment__eng {
    font-size: 1.6rem;
  }
}
.quality-equipment__title {
  font-size: 1.8rem;
  font-weight: 700;
}
@media (max-width: 820.9px) {
  .quality-equipment__title {
    font-size: 1.6rem;
  }
}
.quality-equipment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 820.9px) {
  .quality-equipment__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 559.9px) {
  .quality-equipment__grid {
    grid-template-columns: 1fr;
  }
}
.quality-equipment__card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
}
.quality-equipment__card-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.quality-equipment__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.quality-equipment__card-body {
  padding: 15px;
}
.quality-equipment__card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0A0A09;
  margin-bottom: 8px;
}
@media (max-width: 820.9px) {
  .quality-equipment__card-title {
    font-size: 1.3rem;
  }
}
.quality-equipment__card-desc {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #444444;
}
@media (max-width: 820.9px) {
  .quality-equipment__card-desc {
    font-size: 1.1rem;
  }
}
.quality-equipment__btn-wrap {
  text-align: center;
}
.quality-equipment__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: #FFFFFF;
  color: #175E95;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
@media (max-width: 820.9px) {
  .quality-equipment__btn {
    padding: 12px 30px;
    font-size: 1.3rem;
  }
}
.quality-equipment__btn:hover {
  background: #00A1E9;
  color: #FFFFFF;
}
.quality-equipment__btn svg {
  width: 18px;
  height: 18px;
}

.quality-engineer {
  padding: 80px 0;
  background: #EFEEEE;
}
@media (max-width: 820.9px) {
  .quality-engineer {
    padding: 50px 0;
  }
}
.quality-engineer__inner {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}
.quality-engineer__content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  background: #FFFFFF;
  padding: 50px;
  border-radius: 8px;
}
@media (max-width: 820.9px) {
  .quality-engineer__content {
    flex-direction: column;
    padding: 30px 20px;
    gap: 25px;
  }
}
.quality-engineer__text {
  flex: 1;
}
.quality-engineer__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: 700;
  color: #0A0A09;
  margin-bottom: 20px;
}
@media (max-width: 820.9px) {
  .quality-engineer__title {
    font-size: 1.6rem;
  }
}
.quality-engineer__dot {
  width: 12px;
  height: 12px;
  background: #175E95;
  border-radius: 50%;
  flex-shrink: 0;
}
.quality-engineer__desc {
  font-size: 1.5rem;
  line-height: 2;
  color: #444444;
}
@media (max-width: 820.9px) {
  .quality-engineer__desc {
    font-size: 1.4rem;
  }
}
.quality-engineer__image {
  width: 45%;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 820.9px) {
  .quality-engineer__image {
    width: 100%;
  }
}
.quality-engineer__image img {
  width: 100%;
  height: auto;
  display: block;
}

.quality-column {
  padding: 60px 0 80px;
}
@media (max-width: 820.9px) {
  .quality-column {
    padding: 40px 0 50px;
  }
}
.quality-column__inner {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
}
.quality-column__box {
  display: flex;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 1px 1px 24px 0 rgba(0, 0, 0, 0.08);
}
@media (max-width: 820.9px) {
  .quality-column__box {
    flex-direction: column;
  }
}
.quality-column__icon-wrap {
  width: 140px;
  background: linear-gradient(135deg, #e8f4f8 0%, #d0e8f0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  flex-shrink: 0;
}
@media (max-width: 820.9px) {
  .quality-column__icon-wrap {
    width: 100%;
    flex-direction: row;
    gap: 15px;
    padding: 20px;
  }
}
.quality-column__icon {
  width: 50px;
  margin-bottom: 10px;
}
@media (max-width: 820.9px) {
  .quality-column__icon {
    margin-bottom: 0;
    width: 40px;
  }
}
.quality-column__icon img {
  width: 100%;
  height: auto;
}
.quality-column__label {
  display: inline-block;
  background: #175E95;
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
}
.quality-column__content {
  flex: 1;
  padding: 40px;
}
@media (max-width: 820.9px) {
  .quality-column__content {
    padding: 25px 20px;
  }
}
.quality-column__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0A0A09;
  margin-bottom: 15px;
}
@media (max-width: 820.9px) {
  .quality-column__title {
    font-size: 1.6rem;
  }
}
.quality-column__desc {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #444444;
}
@media (max-width: 820.9px) {
  .quality-column__desc {
    font-size: 1.3rem;
  }
}

.quality-certification {
  padding: 80px 0;
}
@media (max-width: 820.9px) {
  .quality-certification {
    padding: 50px 0;
  }
}
.quality-certification__inner {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
}
.quality-certification__header {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 820.9px) {
  .quality-certification__header {
    margin-bottom: 40px;
  }
}
.quality-certification__title {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  background: #1D1B52;
  padding: 20px 80px;
  border-radius: 50px;
}
@media (max-width: 820.9px) {
  .quality-certification__title {
    font-size: 1.6rem;
    padding: 15px 50px;
  }
}
.quality-certification__logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 820.9px) {
  .quality-certification__logos {
    gap: 30px;
  }
}
.quality-certification__logo-group {
  text-align: center;
}
.quality-certification__logo-images {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
}
.quality-certification__logo-images img {
  height: 70px;
  width: auto;
}
@media (max-width: 820.9px) {
  .quality-certification__logo-images img {
    height: 50px;
  }
}
.quality-certification__logo-text {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #444444;
}
@media (max-width: 820.9px) {
  .quality-certification__logo-text {
    font-size: 1.1rem;
  }
}
.quality-certification__logo-label {
  display: inline-block;
  background: #b8e1f0;
  color: #0A0A09;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 4px;
  margin-bottom: 10px;
}
@media (max-width: 820.9px) {
  .quality-certification__logo-label {
    font-size: 1.1rem;
    padding: 5px 15px;
  }
}
.quality-certification__btn-wrap {
  text-align: center;
}
.quality-certification__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: #175E95;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
@media (max-width: 820.9px) {
  .quality-certification__btn {
    padding: 12px 30px;
    font-size: 1.3rem;
  }
}
.quality-certification__btn:hover {
  background: #104269;
}
.quality-certification__btn svg {
  width: 18px;
  height: 18px;
}

.cert-tabs {
  padding: 60px 0 40px;
}
@media (max-width: 820.9px) {
  .cert-tabs {
    padding: 40px 0 30px;
  }
}
.cert-tabs__inner {
  width: 92%;
  max-width: 600px;
  margin: 0 auto;
}
.cert-tabs__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 559.9px) {
  .cert-tabs__buttons {
    gap: 10px;
  }
}
.cert-tabs__btn {
  display: inline-block;
  padding: 15px 50px;
  background: #FFFFFF;
  border: 2px solid #175E95;
  color: #175E95;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
@media (max-width: 820.9px) {
  .cert-tabs__btn {
    padding: 12px 30px;
    font-size: 1.3rem;
  }
}
@media (max-width: 559.9px) {
  .cert-tabs__btn {
    padding: 10px 20px;
    font-size: 1.2rem;
  }
}
.cert-tabs__btn:hover, .cert-tabs__btn.is-active {
  background: #175E95;
  color: #FFFFFF;
}

.cert-iso {
  padding: 40px 0 80px;
}
@media (max-width: 820.9px) {
  .cert-iso {
    padding: 30px 0 50px;
  }
}
.cert-iso__inner {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
}
.cert-iso__item {
  gap: 40px;
  padding: 50px 0;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 820.9px) {
  .cert-iso__item {
    flex-direction: column;
    gap: 25px;
    padding: 40px 0;
  }
}
.cert-iso__item:first-child {
  padding-top: 0;
}
.cert-iso__item:last-child {
  border-bottom: none;
}
.cert-iso__logo {
  width: 180px;
  flex-shrink: 0;
  text-align: center;
}
@media (max-width: 820.9px) {
  .cert-iso__logo {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
.cert-iso__logo img {
  max-width: 150px;
  height: auto;
  margin-bottom: 10px;
}
@media (max-width: 820.9px) {
  .cert-iso__logo img {
    max-width: 100px;
    margin-bottom: 0;
  }
}
.cert-iso__logo-text {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #444444;
  margin-bottom: 15px;
}
@media (max-width: 820.9px) {
  .cert-iso__logo-text {
    font-size: 1.1rem;
    text-align: left;
  }
}
.cert-iso__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0A0A09;
  margin-bottom: 8px;
}
@media (max-width: 820.9px) {
  .cert-iso__title {
    font-size: 2rem;
  }
}
.cert-iso__desc {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #444444;
  margin-bottom: 30px;
}
@media (max-width: 820.9px) {
  .cert-iso__desc {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }
}
.cert-iso__info {
  background: #EFEEEE;
  padding: 25px 30px;
  border-radius: 8px;
}
@media (max-width: 820.9px) {
  .cert-iso__info {
    padding: 20px;
  }
}
.cert-iso__info-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0A0A09;
  margin-bottom: 15px;
}
@media (max-width: 820.9px) {
  .cert-iso__info-title {
    font-size: 1.4rem;
  }
}
.cert-iso__info-title span {
  width: 8px;
  height: 8px;
  background: #175E95;
  border-radius: 50%;
}
.cert-iso__table-wrap {
  background: #FFFFFF;
  padding: 20px 25px;
  border-radius: 6px;
}
@media (max-width: 820.9px) {
  .cert-iso__table-wrap {
    padding: 15px 20px;
  }
}
.cert-iso__table {
  width: 100%;
  font-size: 1.4rem;
}
@media (max-width: 820.9px) {
  .cert-iso__table {
    font-size: 1.3rem;
  }
}
.cert-iso__table tr {
  border-bottom: 1px solid #e5e5e5;
}
.cert-iso__table tr:last-child {
  border-bottom: none;
}
.cert-iso__table th, .cert-iso__table td {
  padding: 12px 0;
  vertical-align: top;
}
@media (max-width: 820.9px) {
  .cert-iso__table th, .cert-iso__table td {
    padding: 10px 0;
  }
}
.cert-iso__table th {
  width: 130px;
  font-weight: 700;
  color: #0A0A09;
}
@media (max-width: 820.9px) {
  .cert-iso__table th {
    width: 100px;
  }
}
@media (max-width: 559.9px) {
  .cert-iso__table th {
    display: block;
    width: 100%;
    padding-bottom: 5px;
  }
}
.cert-iso__table td {
  color: #444444;
}
@media (max-width: 559.9px) {
  .cert-iso__table td {
    display: block;
    padding-top: 0;
  }
}

.cert-special {
  padding: 80px 0;
  background: #EFEEEE;
}
@media (max-width: 820.9px) {
  .cert-special {
    padding: 50px 0;
  }
}
.cert-special__inner {
  width: 92%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.cert-special__title {
  font-size: 2rem;
  font-weight: 700;
  color: #0A0A09;
  margin-bottom: 20px;
}
@media (max-width: 820.9px) {
  .cert-special__title {
    font-size: 1.8rem;
  }
}
.cert-special__desc {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 30px;
}
@media (max-width: 820.9px) {
  .cert-special__desc {
    font-size: 1.3rem;
  }
}
.cert-special__downloads {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.cert-special__download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  background: #FFFFFF;
  border: 2px solid #175E95;
  color: #175E95;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
@media (max-width: 820.9px) {
  .cert-special__download-btn {
    padding: 15px 25px;
    font-size: 1.3rem;
  }
}
@media (max-width: 559.9px) {
  .cert-special__download-btn {
    padding: 12px 20px;
    font-size: 1.2rem;
  }
}
.cert-special__download-btn img {
  width: 20px;
  height: auto;
}
@media (max-width: 820.9px) {
  .cert-special__download-btn img {
    width: 18px;
  }
}
.cert-special__download-btn:hover {
  background: #175E95;
  color: #FFFFFF;
}

.contact-tel {
  padding: 80px 0;
  background: #FFFFFF;
}
@media (max-width: 820.9px) {
  .contact-tel {
    padding: 60px 0;
  }
}
.contact-tel__inner {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-tel__title {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #0A0A09;
}
@media (max-width: 820.9px) {
  .contact-tel__title {
    font-size: 2.4rem;
  }
}
.contact-tel__subtitle {
  font-size: 1.6rem;
  text-align: center;
  color: #0A0A09;
  line-height: 1.6;
  margin-bottom: 50px;
}
@media (max-width: 820.9px) {
  .contact-tel__subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}
.contact-tel__list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media (max-width: 820.9px) {
  .contact-tel__list {
    gap: 25px;
  }
}
.contact-tel__item {
  display: flex;
  gap: 36px;
  align-items: center;
}
@media (max-width: 820.9px) {
  .contact-tel__item {
    flex-direction: column;
    gap: 20px;
  }
}
.contact-tel__image {
  width: 370px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 820.9px) {
  .contact-tel__image {
    width: 100%;
  }
}
.contact-tel__image img {
  width: 100%;
  height: auto;
  display: block;
}
.contact-tel__info {
  flex: 1;
  background: #EFEEEE;
  border-radius: 8px;
  padding: 40px;
}
@media (max-width: 820.9px) {
  .contact-tel__info {
    width: 100%;
    padding: 25px 20px;
  }
}
.contact-tel__item-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0A0A09;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 820.9px) {
  .contact-tel__item-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.contact-tel__item-title span {
  width: 12px;
  height: 12px;
  background: #175E95;
  border-radius: 50%;
}
.contact-tel__table {
  background: linear-gradient(to right, #FFFFFF, #FFFFFF);
  border-radius: 5px;
  padding: 0 30px;
}
@media (max-width: 820.9px) {
  .contact-tel__table {
    padding: 0 20px;
  }
}
.contact-tel__row {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #E0E0E0;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (max-width: 820.9px) {
  .contact-tel__row {
    font-size: 1.4rem;
  }
}
.contact-tel__row:last-child {
  border-bottom: none;
}
.contact-tel__label {
  font-weight: 700;
  width: 96px;
}
@media (max-width: 820.9px) {
  .contact-tel__label {
    width: 60px;
  }
}
.contact-tel__value {
  font-weight: 400;
}

.contact-form {
  padding: 80px 0;
  background: #FFFFFF;
}
@media (max-width: 820.9px) {
  .contact-form {
    padding: 60px 0;
  }
}
.contact-form__inner {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-form__title {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #0A0A09;
}
@media (max-width: 820.9px) {
  .contact-form__title {
    font-size: 2.4rem;
  }
}
.contact-form__subtitle {
  font-size: 1.6rem;
  text-align: center;
  color: #0A0A09;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media (max-width: 820.9px) {
  .contact-form__subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}
.contact-form__required-note {
  color: #C71313;
}
.contact-form__form {
  background: #FFFFFF;
}
.contact-form__row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid #E0E0E0;
}
@media (max-width: 820.9px) {
  .contact-form__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 0;
  }
}
.contact-form__label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0A0A09;
  width: 224px;
  flex-shrink: 0;
}
@media (max-width: 820.9px) {
  .contact-form__label {
    font-size: 1.4rem;
    width: 100%;
  }
}
.contact-form__input-wrap {
  flex: 1;
}
@media (max-width: 820.9px) {
  .contact-form__input-wrap {
    width: 100%;
  }
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-size: 1.4rem;
  background: #FFFFFF;
  transition: all 0.3s ease 0s;
}
@media (max-width: 820.9px) {
  .contact-form__input, .contact-form__textarea {
    padding: 12px;
    font-size: 1.3rem;
  }
}
.contact-form__input:focus, .contact-form__textarea:focus {
  outline: none;
  border-color: #175E95;
}
.contact-form__textarea {
  resize: vertical;
  min-height: 150px;
}
.contact-form__checkbox-wrap, .contact-form__radio-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
}
@media (max-width: 820.9px) {
  .contact-form__checkbox-wrap, .contact-form__radio-wrap {
    gap: 12px 20px;
  }
}
.contact-form__checkbox, .contact-form__radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 1.4rem;
}
@media (max-width: 820.9px) {
  .contact-form__checkbox, .contact-form__radio {
    font-size: 1.3rem;
  }
}
.contact-form__checkbox input[type=checkbox],
.contact-form__checkbox input[type=radio], .contact-form__radio input[type=checkbox],
.contact-form__radio input[type=radio] {
  width: 20px;
  height: 20px;
  accent-color: #175E95;
  cursor: pointer;
}
.contact-form__checkbox--agree, .contact-form__radio--agree {
  justify-content: center;
}
.contact-form__section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0A0A09;
  text-align: center;
  padding: 50px 0 30px;
}
@media (max-width: 820.9px) {
  .contact-form__section-title {
    font-size: 1.8rem;
    padding: 30px 0 20px;
  }
}
.contact-form__privacy {
  margin: 40px 0 30px;
  background: #EFEEEE;
  border-radius: 8px;
  padding: 40px;
}
@media (max-width: 820.9px) {
  .contact-form__privacy {
    padding: 25px 20px;
  }
}
.contact-form__privacy-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.contact-form__privacy-dot {
  width: 12px;
  height: 12px;
  background: #175E95;
  border-radius: 50%;
}
.contact-form__privacy-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0A0A09;
}
@media (max-width: 820.9px) {
  .contact-form__privacy-title {
    font-size: 1.8rem;
  }
}
.contact-form__privacy-box {
  margin-bottom: 20px;
}
.contact-form__privacy-box p {
  font-size: 1.5rem;
  color: #0A0A09;
  line-height: 1.6;
}
@media (max-width: 820.9px) {
  .contact-form__privacy-box p {
    font-size: 1.4rem;
  }
}
.contact-form__privacy-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0A0A09;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
@media (max-width: 820.9px) {
  .contact-form__privacy-link {
    font-size: 1.4rem;
  }
}
.contact-form__privacy-link:hover {
  opacity: 0.7;
}
.contact-form__privacy-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #0A0A09;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 1.4rem;
}
.contact-form__agree {
  margin-bottom: 30px;
  text-align: center;
}
.contact-form__submit {
  text-align: center;
}
.contact-form__submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 272px;
  padding: 20px 16px;
  background: #00A1E9;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
@media (max-width: 820.9px) {
  .contact-form__submit-btn {
    min-width: 100%;
    padding: 15px;
    font-size: 1.4rem;
  }
}
.contact-form__submit-btn:hover {
  background: #007eb6;
}

.required {
  color: #C71313;
  font-weight: 400;
}

.faq {
  padding: 100px 0;
  background: #EFEEEE;
}
@media (max-width: 820.9px) {
  .faq {
    padding: 60px 0;
  }
}
.faq__inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
.faq__header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}
.faq__header-left {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 35px;
}
.faq__header-left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 100%;
  background: #175E95;
  border-radius: 4px;
}
.faq__en {
  font-size: 6.2rem;
  font-weight: 900;
  font-style: italic;
  color: #0A0A09;
  font-family: "Inter", sans-serif;
  line-height: 1;
}
@media (max-width: 820.9px) {
  .faq__en {
    font-size: 4rem;
  }
}
.faq__title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #0A0A09;
  line-height: 1.2;
}
@media (max-width: 820.9px) {
  .faq__title {
    font-size: 1.6rem;
  }
}
.faq__desc {
  font-size: 1.6rem;
  color: #0A0A09;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media (max-width: 820.9px) {
  .faq__desc {
    font-size: 1.4rem;
  }
}
.faq__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 80px;
}
@media (max-width: 820.9px) {
  .faq__links {
    margin-bottom: 50px;
    gap: 10px;
  }
}
.faq__link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #1D1B52;
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease 0s;
}
@media (max-width: 820.9px) {
  .faq__link-btn {
    padding: 10px 15px;
    font-size: 1.1rem;
  }
}
.faq__link-btn::after {
  content: "▼";
  font-size: 0.8rem;
}
.faq__link-btn:hover {
  background: #175E95;
}
.faq__category {
  margin-bottom: 96px;
}
@media (max-width: 820.9px) {
  .faq__category {
    margin-bottom: 60px;
  }
}
.faq__category:last-child {
  margin-bottom: 0;
}
.faq__category-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #0A0A09;
  text-align: center;
  margin-bottom: 56px;
}
@media (max-width: 820.9px) {
  .faq__category-title {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq__item {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 24px;
}
@media (max-width: 820.9px) {
  .faq__item {
    padding: 20px 15px;
  }
}
.faq__question {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 820.9px) {
  .faq__question {
    gap: 15px;
  }
}
.faq__question p {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0A0A09;
  line-height: 1.6;
}
@media (max-width: 820.9px) {
  .faq__question p {
    font-size: 1.4rem;
  }
}
.faq__q, .faq__a {
  font-size: 3.2rem;
  font-weight: 900;
  font-style: italic;
  font-family: "Inter", sans-serif;
  flex-shrink: 0;
}
@media (max-width: 820.9px) {
  .faq__q, .faq__a {
    font-size: 2.4rem;
  }
}
.faq__q {
  color: #175E95;
}
.faq__a {
  color: #00A1E9;
}
.faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #E0E0E0;
}
@media (max-width: 820.9px) {
  .faq__answer {
    gap: 15px;
  }
}
.faq__answer-text {
  flex: 1;
  padding-top: 3px;
}
.faq__answer-text p {
  font-size: 1.6rem;
  color: #0A0A09;
  line-height: 1.6;
}
@media (max-width: 820.9px) {
  .faq__answer-text p {
    font-size: 1.4rem;
  }
}
.faq__answer-text p + p {
  margin-top: 10px;
}

.privacywrap h3 {
  margin-top: 40px;
}
.privacywrap p {
  margin-top: 16px;
}
.privacywrap .pv_sign {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}

.interview_header_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 56px 40px;
  background: rgba(27, 22, 137, 0.6);
  top: 32px;
}
.interview_header_inner .initial {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 9rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  color: #EAFF00;
  letter-spacing: 0.05em;
}
.interview_header_inner .position {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 20px;
  line-height: 1.6;
  color: #FFFFFF;
}
.interview_header_inner .year {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
}

.interview_header_image img {
  width: 100%;
  display: block;
}

@media (min-width: 821px) {
  .page_section > .wrap > .interview_header {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  .interview_header_inner,
.interview_header_image {
    grid-column: 1/-1;
    grid-row: 1/-1;
  }
  .interview_header_inner {
    width: 300px;
    min-height: 480px;
    position: relative;
    z-index: 2;
    align-self: stretch;
    box-shadow: 12px 6px 40px rgba(0, 0, 0, 0.15);
  }
  .interview_header_image {
    margin-left: 220px;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .interview_header_image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
}
@media (min-width: 821px) and (max-width: 999.9px) {
  .interview_header_inner {
    width: 260px;
    min-height: 400px;
  }
  .interview_header_image {
    margin-left: 200px;
  }
}
@media (max-width: 820.9px) {
  .interview_header_inner {
    padding: 36px 20px;
  }
  .interview_header_inner .initial {
    font-size: 6.4rem;
  }
}
.interview_body {
  margin-top: 72px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 820.9px) {
  .interview_body {
    margin-top: 48px;
  }
}

.interview_item + .interview_item {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid #E0E0E0;
}
@media (max-width: 820.9px) {
  .interview_item + .interview_item {
    margin-top: 36px;
    padding-top: 36px;
  }
}
.interview_item .question {
  font-size: 2rem;
  font-weight: 700;
  padding-left: 52px;
  position: relative;
  line-height: 1.6;
}
@media (max-width: 820.9px) {
  .interview_item .question {
    font-size: 1.7rem;
    padding-left: 44px;
  }
}
@media (max-width: 559.9px) {
  .interview_item .question {
    padding-left: 40px;
  }
}
.interview_item .question::before {
  content: "Q";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #1B1689;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: -2px;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  color: #FFFFFF;
  line-height: 1;
}
@media (max-width: 820.9px) {
  .interview_item .question::before {
    width: 32px;
    height: 32px;
    font-size: 1.4rem;
    top: 0;
  }
}
@media (max-width: 559.9px) {
  .interview_item .question::before {
    width: 28px;
    height: 28px;
    font-size: 1.3rem;
  }
}
.interview_item .answer {
  margin-top: 20px;
  padding-left: 52px;
  line-height: 2;
  font-size: 1.5rem;
  color: #444444;
}
@media (max-width: 820.9px) {
  .interview_item .answer {
    padding-left: 44px;
    font-size: 1.4rem;
  }
}
@media (max-width: 559.9px) {
  .interview_item .answer {
    padding-left: 0;
    margin-top: 16px;
  }
}

.interview_bottom {
  margin-top: 88px;
}
@media (max-width: 820.9px) {
  .interview_bottom {
    margin-top: 56px;
  }
}

.interview_bottom_image {
  overflow: hidden;
}
.interview_bottom_image img {
  width: 100%;
  display: block;
  aspect-ratio: 16/7;
  -o-object-fit: cover;
     object-fit: cover;
}

.interview_bottom_message {
  text-align: center;
  padding: 64px 0 0;
}
@media (max-width: 820.9px) {
  .interview_bottom_message {
    padding: 40px 0 0;
  }
}
.interview_bottom_message .eng_title {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  font-style: italic;
  letter-spacing: 0.02em;
}
@media (max-width: 820.9px) {
  .interview_bottom_message .eng_title {
    font-size: 2.6rem;
  }
}
@media (max-width: 559.9px) {
  .interview_bottom_message .eng_title {
    font-size: 2.2rem;
  }
}
.interview_bottom_message .jp_title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 8px;
  color: #666666;
  letter-spacing: 0.1em;
}
.interview_bottom_message .interview_bottom_message_text {
  text-align: left;
  max-width: 780px;
  margin: 40px auto 0;
  line-height: 2;
  font-size: 1.5rem;
  position: relative;
  padding: 40px 48px;
  background-color: #F9F9F9;
  border-left: 3px solid #1B1689;
}
@media (max-width: 820.9px) {
  .interview_bottom_message .interview_bottom_message_text {
    font-size: 1.4rem;
    margin-top: 28px;
    padding: 28px 24px;
  }
}

.page_section__bgGray .center-title {
  position: relative;
  padding-bottom: 24px;
}
.page_section__bgGray .center-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #1B1689;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.app_lines {
  display: flex;
  gap: 5rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 820.9px) {
  .app_lines {
    flex-direction: column;
    gap: 40px;
  }
}
.app_lines > li {
  width: calc((100% - 5rem) / 2);
}
.app_lines > li .img_area {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.app_lines > li .img_area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: transform 0.3s ease;
}
.app_lines > li:hover .img_area img {
  transform: scale(1.05);
}
.app_lines > li .j_title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 820.9px) {
  .app_lines > li .j_title {
    font-size: 1.6rem;
  }
}
.app_lines > li .j_text {
  font-size: 1.4rem;
  margin-top: 12px;
  line-height: 1.8;
  color: #444444;
}
@media (max-width: 820.9px) {
  .app_lines > li .j_text {
    font-size: 1.3rem;
  }
}

.app_requirements {
  padding: 100px 0;
  background: #1D1B52;
}
@media (max-width: 820.9px) {
  .app_requirements {
    padding: 60px 0;
  }
}

.app_requirements_inner {
  width: 84%;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 559.9px) {
  .app_requirements_inner {
    width: 88%;
  }
}

.app_requirements_title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 820.9px) {
  .app_requirements_title {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
}

.app_accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app_accordion_item {
  background: #FFFFFF;
  overflow: hidden;
  border-radius: 4px;
}
.app_accordion_item.is-open .app_accordion_arrow {
  transform: rotate(180deg);
}
.app_accordion_item.is-open .app_accordion_body {
  max-height: 2000px;
  padding: 0 32px 32px;
}
@media (max-width: 559.9px) {
  .app_accordion_item.is-open .app_accordion_body {
    padding: 0 16px 24px;
  }
}

.app_accordion_header {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 32px;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  gap: 16px;
  transition: background 0.2s;
}
@media (max-width: 559.9px) {
  .app_accordion_header {
    padding: 16px;
    font-size: 1.4rem;
    gap: 10px;
  }
}
.app_accordion_header:hover {
  background: #F8F8FA;
}

.app_accordion_tag {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 2px;
  flex-shrink: 0;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.app_accordion_tag--new {
  background: #1B1689;
  color: #FFFFFF;
}
.app_accordion_tag--career {
  background: #00A1E9;
  color: #FFFFFF;
}

.app_accordion_job {
  flex: 1;
  color: #0A0A09;
}

.app_accordion_arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease;
}
.app_accordion_arrow::before, .app_accordion_arrow::after {
  content: "";
  position: absolute;
  background: #444444;
}
.app_accordion_arrow::before {
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-80%, -50%) rotate(45deg);
}
.app_accordion_arrow::after {
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-20%, -50%) rotate(-45deg);
}

.app_accordion_body {
  max-height: 0;
  padding: 0 32px;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
@media (max-width: 559.9px) {
  .app_accordion_body {
    padding: 0 16px;
  }
}

.app_table {
  width: 100%;
  border-top: 1px solid #E0E0E0;
}
.app_table tr {
  border-bottom: 1px solid #E0E0E0;
}
.app_table th,
.app_table td {
  padding: 14px 16px;
  font-size: 1.4rem;
  vertical-align: top;
  line-height: 1.6;
}
@media (max-width: 559.9px) {
  .app_table th,
.app_table td {
    display: block;
    padding: 8px 0;
    font-size: 1.3rem;
  }
}
.app_table th {
  width: 120px;
  font-weight: 700;
  white-space: nowrap;
  color: #1B1689;
}
@media (max-width: 559.9px) {
  .app_table th {
    width: 100%;
    padding-bottom: 0;
  }
}
.app_table td {
  color: #444444;
}
@media (max-width: 559.9px) {
  .app_table td {
    padding-top: 4px;
  }
}
.app_table td a {
  color: #00A1E9;
  text-decoration: underline;
}
.app_table td a:hover {
  text-decoration: none;
}
.app_table td strong {
  font-weight: 700;
  color: #0A0A09;
}

.app_entry_btn_wrap {
  text-align: center;
  margin-top: 40px;
}
.app_entry_btn_wrap--center {
  margin-top: 56px;
}

.app_entry_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 48px;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
.app_entry_btn:hover {
  background: rgba(255, 255, 255, 0.15);
}
.app_entry_btn svg {
  flex-shrink: 0;
}
.app_entry_btn--blue {
  border-color: #1B1689;
  color: #1B1689;
}
.app_entry_btn--blue:hover {
  background: #1B1689;
  color: #FFFFFF;
}

.app_flow_columns {
  display: flex;
  gap: 48px;
}
@media (max-width: 820.9px) {
  .app_flow_columns {
    flex-direction: column;
    gap: 48px;
  }
}

.app_flow_col {
  flex: 1;
  background: #FFFFFF;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
  padding: 40px 32px;
}
@media (max-width: 559.9px) {
  .app_flow_col {
    padding: 28px 20px;
  }
}

.app_flow_heading {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #1B1689;
}
@media (max-width: 820.9px) {
  .app_flow_heading {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
}

.app_flow_steps {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app_flow_step {
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 1.5rem;
  font-weight: 500;
}
@media (max-width: 820.9px) {
  .app_flow_step {
    font-size: 1.4rem;
    padding: 14px;
  }
}
.app_flow_step--blue {
  background: #1B1689;
  color: #FFFFFF;
}
.app_flow_step--light {
  background: #00A1E9;
  color: #FFFFFF;
}
.app_flow_step--text {
  background: #F0F4F8;
  color: #0A0A09;
}

.app_flow_arrow {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid #D9D9D9;
  margin: 8px 0;
  flex-shrink: 0;
}

.download_box {
  margin-top: 6rem;
}
.download_box .download_btn {
  width: 300px;
  font-size: 1.8rem;
}

.news-list {
  padding: 80px 0;
  background: #FFFFFF;
}
@media (max-width: 820.9px) {
  .news-list {
    padding: 50px 0;
  }
}
.news-list__inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}
@media (max-width: 820.9px) {
  .news-list__inner {
    flex-direction: column;
    gap: 30px;
  }
}
.news-list__sidebar {
  width: 250px;
  flex-shrink: 0;
}
@media (max-width: 820.9px) {
  .news-list__sidebar {
    width: 100%;
  }
}
.news-list__main {
  flex: 1;
}
.news-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 999.9px) {
  .news-list__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 559.9px) {
  .news-list__grid {
    grid-template-columns: 1fr;
  }
}

.news-filter {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 20px;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
@media (max-width: 820.9px) {
  .news-filter {
    position: static;
  }
}
.news-filter__group {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E0E0E0;
}
.news-filter__group:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.news-filter__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0A0A09;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 4px;
  background: #b8e1f0;
}
.news-filter__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-filter__list li {
  border-bottom: 1px solid #E0E0E0;
}
.news-filter__list li:last-child {
  border-bottom: none;
}
.news-filter__link {
  display: block;
  padding: 10px 12px;
  font-size: 1.4rem;
  color: #444444;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  position: relative;
}
.news-filter__link:hover {
  color: #175E95;
  background: rgba(23, 94, 149, 0.04);
}
.news-filter__link.is-active {
  color: #175E95;
  font-weight: 700;
}

.news-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease 0s;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.news-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-card__image {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #EFEEEE;
}
.news-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease 0s;
}
.news-card:hover .news-card__image img {
  transform: scale(1.05);
}
.news-card__body {
  padding: 16px 20px 20px;
}
@media (max-width: 820.9px) {
  .news-card__body {
    padding: 12px 15px 15px;
  }
}
.news-card__date {
  display: block;
  font-size: 1.3rem;
  color: #175E95;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.news-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0A0A09;
  line-height: 1.6;
}
@media (max-width: 820.9px) {
  .news-card__title {
    font-size: 1.3rem;
  }
}

.news-single {
  padding: 80px 0;
  background: #FFFFFF;
}
@media (max-width: 820.9px) {
  .news-single {
    padding: 50px 0;
  }
}
.news-single__inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}
@media (max-width: 820.9px) {
  .news-single__inner {
    flex-direction: column;
    gap: 30px;
  }
}
.news-single__main {
  flex: 1;
}
.news-single__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.news-single__date {
  font-size: 1.4rem;
  color: #175E95;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.news-single__category {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  background: #175E95;
  padding: 3px 12px;
  border-radius: 3px;
}
.news-single__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0A0A09;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #175E95;
  line-height: 1.5;
}
@media (max-width: 820.9px) {
  .news-single__title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.news-single__content {
  margin-bottom: 40px;
}
.news-single__content p {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #444444;
  margin-bottom: 20px;
}
@media (max-width: 820.9px) {
  .news-single__content p {
    font-size: 1.4rem;
  }
}
.news-single__content p:last-child {
  margin-bottom: 0;
}
.news-single__content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0A0A09;
  margin-top: 30px;
  margin-bottom: 15px;
  padding-left: 14px;
  border-left: 4px solid #175E95;
}
@media (max-width: 820.9px) {
  .news-single__content h2 {
    font-size: 1.6rem;
  }
}
.news-single__back {
  text-align: center;
  margin-top: 50px;
}
.news-single__back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 15px 40px;
  background: #175E95;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.news-single__back-btn:hover {
  opacity: 0.85;
}
@media (max-width: 820.9px) {
  .news-single__back-btn {
    padding: 12px 30px;
    font-size: 1.4rem;
  }
}

.news-related {
  padding: 80px 0;
  background: #EFEEEE;
}
@media (max-width: 820.9px) {
  .news-related {
    padding: 50px 0;
  }
}
.news-related__inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
.news-related__header {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 820.9px) {
  .news-related__header {
    margin-bottom: 30px;
  }
}
.news-related__eng {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  color: #175E95;
  margin-bottom: 10px;
}
@media (max-width: 820.9px) {
  .news-related__eng {
    font-size: 2.8rem;
  }
}
@media (max-width: 559.9px) {
  .news-related__eng {
    font-size: 2.2rem;
  }
}
.news-related__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0A0A09;
}
@media (max-width: 820.9px) {
  .news-related__title {
    font-size: 1.6rem;
  }
}
.news-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 999.9px) {
  .news-related__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 559.9px) {
  .news-related__grid {
    grid-template-columns: 1fr;
  }
}

.download_btn {
  background-color: #0A0A09;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  transition: all 0.2s ease;
  margin-bottom: 2.4rem;
  border-radius: 4px;
}
.download_btn:last-child {
  margin-bottom: 0;
}
.download_btn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 2rem 5rem;
}
.download_btn a .title {
  color: white;
  font-size: 2rem;
  font-weight: 700;
}
.download_btn a .download-icon {
  width: 30px;
}
.download_btn:hover, .download_btn:active {
  background-color: #393935;
}

/* ------------
PAGENATION
------------- */
.wp-pagenavi {
  padding: 12px 5px;
  background: #f3f3f3;
  border-radius: 4px;
  font-size: 100%;
  text-align: center;
  border: 1px #ddd solid;
  margin-top: 30px;
}

.all_seminar .wp-pagenavi {
  margin: 0 auto;
}

.wp-pagenavi span,
.wp-pagenavi a {
  padding: 5px 7px !important;
  border-radius: 3px;
}

.wp-pagenavi .page,
.wp-pagenavi .pages,
.wp-pagenavi .extend,
.wp-pagenavi .last,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .first {
  background: #fff;
}

.wp-pagenavi .current {
  background: #1eb0d6;
  color: #fff;
}
/*# sourceMappingURL=style.css.map */