@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #E0E1E0;
  color: #222222;
}

a,
a:hover,
a:visited {
  color: inherit;
}

img {
  width: 100%;
}

/*
共通クラス
================================================ */
.inner {
  max-width: 1360px;
  width: 87.2%;
  margin: auto;
}

.h2 {
  font-size: 2.625rem;
  font-weight: bold;
  letter-spacing: 1.28px;
}

@media screen and (max-width: 1080px) {
  .h2 {
    font-size: 1.5rem;
  }
}
.title-sub {
  letter-spacing: 1.28px;
  font-weight: bold;
  font-size: 1.125rem;
  color: #EB7931;
  margin-top: 11px;
  margin-bottom: 88px;
}

@media screen and (max-width: 1080px) {
  .title-sub {
    font-size: 1rem;
    margin-bottom: 66px;
  }
}
.accent {
  color: #EB7931;
}

.red {
  color: #FF0000;
}

.nowrap {
  white-space: nowrap;
}

@media screen and (max-width: 1080px) {
  .nowrap {
    white-space: wrap;
  }
}
.bold {
  font-weight: 600;
}

.fadein {
  opacity: 0;
}

/*
HEADER
================================================ */
.header {
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-radius: 0 0 15px 15px;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header-inner {
  transition: 0.3s;
  width: 95.2777777778%;
}

@media screen and (max-width: 1080px) {
  .header-inner {
    width: 90%;
  }
}
.header-contents {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1080px) {
  .header-contents {
    height: 60px;
  }
}
.header-img {
  width: 160px;
  height: auto;
  margin-top: 3px;
}

@media screen and (max-width: 1080px) {
  .header-img {
    width: 130px;
    margin-top: 5px;
  }
}
.header-nav {
  font-size: 0.875rem;
}

@media screen and (max-width: 1080px) {
  .header-nav {
    display: none;
  }
}
.header-nav-ul {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.875rem;
  z-index: 5;
}

.header-nav-li:last-child a {
  display: flex;
  align-items: center;
  gap: 7px;
  background-color: #0B2E54;
  color: #E0E1E0;
  padding: 8px 27px;
  border-radius: 50px;
  transition: 0.3s;
}

.header-nav-li:last-child a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 10px;
  background-image: url("../img/mail.png");
  background-size: 16px 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.header-nav-li:last-child a:hover {
  background-color: #222222;
}

.header-nav-li {
  transition: 0.3s;
}

.header-nav-li:hover {
  color: #EB7931;
}

/*
Slide Menu
================================================ */
.hero-nav {
  display: none;
}

@media screen and (max-width: 1080px) {
  .hero-nav {
    display: block;
  }
}
.btn-open {
  position: fixed;
  top: 15px;
  right: 5%;
  z-index: 999;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  flex-direction: column;
  cursor: pointer;
  background: linear-gradient(#5BCCFF, #009DE3);
  border-radius: 50%;
}

@media screen and (max-width: 1080px) {
  .btn-open {
    top: 12px;
    width: 33px;
    height: 33px;
  }
}
.open-bar {
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media screen and (max-width: 1080px) {
  .open-bar {
    width: 20px;
  }
}
.btn-open.active .open-bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.btn-open.active .open-bar:nth-child(2) {
  opacity: 0;
}

.btn-open.active .open-bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

#nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 998;
  width: 100vw;
  height: 100vh;
  background-color: #E0E1E0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#nav-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-panel-inner {
  font-size: 1.125rem;
  color: #40220F;
  position: fixed;
  width: 75%;
  margin: 0 auto;
  top: 85px;
  left: 50%;
  transform: translateX(-50%);
}

.nav-panel-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: 0.3s;
  font-weight: 500;
}

.nav-panel-list a {
  transition: 0.3s;
}

.nav-panel-list a:hover {
  color: #EB7931;
}

.nav-panel-li {
  border-bottom: 1px solid rgba(64, 34, 15, 0.3);
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 20px;
}

.nav-panel-li:last-child {
  border-bottom: none;
}

.nav-panel-li::before {
  content: " ";
  display: block;
  width: 10px;
  height: 10px;
  background: linear-gradient(#5BCCFF, #009DE3);
  border-radius: 50%;
}

.nav-footer {
  position: fixed;
  top: 525px;
  left: 0;
  width: 100%;
}

.nav-footer .footer-logo {
  padding-bottom: 25px;
  width: 150px;
}

.nav-footer .footer-bg-img {
  margin-top: 0;
  height: 30px;
}

.footer-nav-logo {
  width: 160px;
  height: auto;
  display: block;
  margin: 50px auto 0;
}

/*
MV
================================================ */
#hero {
  padding-top: 230px;
}

@media screen and (max-width: 1080px) {
  #hero {
    padding-top: 110px;
  }
}
#hero a {
  transition: 0.3s;
}

#hero a :hover .news-text {
  color: #EB7931;
}

.hero-inner {
  max-width: 960px;
}
@media screen and (min-width: 1440px) {
  .hero-inner {
    max-width: 66.6666666667%;
  }
}

.hero-contents {
  display: flex;
  justify-content: space-between;
  gap: 9.8958333333%;
  align-items: center;
}

@media screen and (max-width: 1080px) {
  .hero-contents {
    flex-direction: column-reverse;
  }
}
.hero-text-wrap {
  margin-top: 33px;
  width: 45.3125%;
}

@media screen and (max-width: 1080px) {
  .hero-text-wrap {
    width: 100%;
  }
}
.hero-subtitle {
  color: #EB7931;
  font-size: 1.125rem;
  letter-spacing: 1.28px;
}

.hero-title {
  font-size: clamp(32px, 3.7vw, 52px);
  font-weight: bold;
  letter-spacing: 1.28px;
  white-space: nowrap;
}

.hero-news {
  margin-top: 83px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #777777;
  white-space: nowrap;
}

@media screen and (max-width: 1080px) {
  .hero-news {
    margin-top: 40px;
  }
}
.news-date {
  font-size: 0.8125rem;
  color: #777777;
}

.news-category {
  display: flex;
  align-items: center;
  font-size: 0.625rem;
  color: #555555;
  background-color: #FFC733;
  border-radius: 50px;
  padding: 2px 11px;
}

.news-text {
  font-size: 0.8125rem;
  display: inline-block;
  max-width: 18em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.3s;
}

.news-detail {
  font-size: 0.8125rem;
  color: #EB7931;
  margin-left: auto;
}

.hero-img-wrap {
  width: 430px;
  height: auto;
  aspect-ratio: 430/400;
}
@media screen and (min-width: 1440px) {
  .hero-img-wrap {
    width: 50%;
  }
}

@media screen and (max-width: 1080px) {
  .hero-img-wrap {
    min-width: 330px;
    width: 60%;
    margin: 0 auto;
  }
}
.mv-video-container {
  position: relative;
}

.mv-video {
  width: 430px;
  height: auto;
  border-radius: 15px;
}
@media screen and (min-width: 1440px) {
  .mv-video {
    width: 100%;
  }
}

@media screen and (max-width: 1080px) {
  .mv-video {
    min-width: 330px;
    width: 100%;
    margin: 0 auto;
  }
}
.mv-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 430px;
  height: auto;
  aspect-ratio: 430/400;
  z-index: 1;
  opacity: 0.2;
  background-image: url("../img/texture.png");
  border-radius: 15px;
}
@media screen and (min-width: 1440px) {
  .mv-video-overlay {
    width: 100%;
  }
}

@media screen and (max-width: 1080px) {
  .mv-video-overlay {
    min-width: 330px;
    width: 100%;
    margin: 0 auto;
  }
}
/*
motto
================================================ */
#motto {
  text-align: center;
  font-size: 1.125rem;
  letter-spacing: 1.28px;
  line-height: 3;
  padding-top: 270px;
}

@media screen and (max-width: 1080px) {
  #motto {
    font-size: 1rem;
  }
}
.motto-text {
  margin-top: 18px;
}

.motto-phrase {
  font-size: 1.5rem;
}

.motto-btn a {
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  border: 3px solid #EB7931;
  color: #EB7931;
  border-radius: 50px;
  transition: 0.3s;
  padding: 8px 27px;
  width: 253px;
  height: 54px;
  white-space: nowrap;
  margin: 0 auto;
  margin-top: 36px;
  letter-spacing: 0px;
}

.motto-btn a:hover {
  color: #E0E1E0;
  background: #EB7931;
}

/*
product
================================================ */
.product-bg {
  width: 100%;
  height: auto;
  margin-top: 250px;
}

#product {
  margin-top: -8px;
  color: #E0E1E0;
  background: #0B2E54;
  padding-top: 125px;
  padding-bottom: 75px;
}

.product-inner {
  max-width: 1100px;
}

.product-text-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1080px) {
  .product-text-contents {
    justify-content: center;
  }
}
.product-text-contents-img {
  width: 215px;
  height: auto;
}

@media screen and (max-width: 1080px) {
  .product-text-contents-img {
    display: none;
  }
}
.product-text-wrap {
  text-align: center;
}

.product-text {
  margin-top: 25px;
}

@media screen and (max-width: 1080px) {
  .product-text {
    font-size: 0.875rem;
  }
}
.product-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 18px;
}

@media screen and (max-width: 1080px) {
  .product-title {
    font-size: 1.5rem;
  }
}
.product-title-sub {
  font-size: 1.5rem;
  margin-top: 42px;
}

@media screen and (max-width: 1080px) {
  .product-title-sub {
    font-size: 1.125rem;
  }
}
.swiper {
  position: relative;
  margin-top: 77px;
  overflow: hidden;
}

.swiper-slide {
  box-sizing: border-box;
  width: 250px;
  height: 350px;
}

.product-img {
  width: 250px;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
}

.swiper-pagination {
  position: relative;
  margin-top: 60px;
}

.swiper-pagination-bullet-active {
  background-color: #E0E1E0;
}

.swiper-button-prev,
.swiper-button-next {
  color: #E0E1E0;
  width: 16px;
  height: 16px;
}

.swiper-button-prev {
  left: 16%;
}

@media screen and (max-width: 767px) {
  .swiper-button-prev {
    left: 5%;
  }
}
.swiper-button-next {
  right: 16%;
}

@media screen and (max-width: 767px) {
  .swiper-button-next {
    right: 5%;
  }
}
.product-btn a {
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  border: 3px solid #E0E1E0;
  color: #E0E1E0;
  border-radius: 50px;
  transition: 0.3s;
  padding: 8px 27px;
  width: 253px;
  height: 54px;
  white-space: nowrap;
  margin: 0 auto;
  margin-top: 24px;
  letter-spacing: 0px;
}

.product-btn a:hover {
  color: #0B2E54;
  background: #E0E1E0;
}

/*
strength
================================================ */
#strength {
  padding-top: 126px;
}

.strength-inner {
  max-width: 1100px;
}

.strength-contents {
  height: 250vh;
  position: relative;
}

.strength-contents:first-of-type {
  height: 325vh;
}

.strength-title {
  text-align: center;
}

.strength-title-sub {
  text-align: center;
}

.strength-item {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1080px) {
  .strength-item {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
.strength-item:first-of-type {
  margin-top: 400px;
}

@media screen and (max-width: 1080px) {
  .strength-item:first-of-type {
    margin-top: 500px;
  }
}
.strength-text-wrap {
  max-width: 380px;
}

.strength-item-title {
  font-size: 2.25rem;
  letter-spacing: 3.68px;
  font-weight: 600;
  color: #EB7931;
  white-space: nowrap;
}

@media screen and (max-width: 1080px) {
  .strength-item-title {
    font-size: 1.5rem;
  }
}
.strength-item-subtitle {
  font-size: 1.375rem;
  letter-spacing: 1.76px;
  font-weight: 600;
  margin-top: 40px;
}

@media screen and (max-width: 1080px) {
  .strength-item-subtitle {
    font-size: 1.125rem;
    margin-top: 20px;
  }
}
.strength-item-text {
  margin-top: 28px;
  letter-spacing: 1.28px;
}

@media screen and (max-width: 1080px) {
  .strength-item-text {
    margin-top: 20px;
  }
}
.strength-btn a {
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  border: 3px solid #EB7931;
  color: #EB7931;
  border-radius: 50px;
  transition: 0.3s;
  padding: 8px 27px;
  width: 214px;
  height: 54px;
  white-space: nowrap;
  margin-top: 36px;
  letter-spacing: 0px;
}

@media screen and (max-width: 1080px) {
  .strength-btn a {
    margin: 0 auto;
    margin-top: 36px;
  }
}
.strength-btn a:hover {
  color: #E0E1E0;
  background: #EB7931;
}

.strength-scroll {
  display: flex;
  gap: 5px;
  margin-top: 55px;
}

.strength-scroll-bar-active {
  width: 3px;
  height: 0px;
  background: #EB7932;
  transition: height 0.05s linear;
}

.strength-scroll-bar {
  width: 3px;
  height: 72px;
  background: #777777;
}

@media screen and (max-width: 1080px) {
  .strength-scroll-bar {
    display: none;
  }
}
.strength-scroll-text {
  writing-mode: vertical-rl;
  color: #EB7931;
  font-size: 0.875rem;
}

@media screen and (max-width: 1080px) {
  .strength-scroll-text {
    display: none;
  }
}
.strength-img {
  width: 500px;
  height: 500px;
  border-radius: 50%;
}

@media screen and (max-width: 1080px) {
  .strength-img {
    width: 300px;
    height: 300px;
  }
}
.strength-number-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  align-self: flex-start;
}

@media screen and (max-width: 1080px) {
  .strength-number-wrap {
    flex-direction: row;
  }
}
.strength-number {
  font-size: 2.125rem;
  color: #000;
  font-weight: 600;
  box-sizing: border-box;
  width: 85px;
  height: 85px;
  border: 1px solid #EB7931;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.strength-number-text {
  writing-mode: vertical-rl;
  font-size: 1.375rem;
  letter-spacing: 1.76px;
  font-weight: 600;
}

@media screen and (max-width: 1080px) {
  .strength-number-text {
    writing-mode: horizontal-tb;
  }
}
/*
about
================================================ */
#about {
  margin-top: 180px;
  padding-top: 180px;
  position: relative;
}

.about-inner {
  max-width: 1100px;
}

@media screen and (max-width: 1080px) {
  .about-title {
    text-align: center;
  }
}
@media screen and (max-width: 1080px) {
  .about-title-sub {
    text-align: center;
  }
}
.about-item-wrap {
  display: flex;
  justify-content: center;
  gap: 30px;
}

@media screen and (max-width: 1080px) {
  .about-item-wrap {
    width: 300px;
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
  }
}
#about a {
  transition: 0.3s;
}

#about a:hover {
  opacity: 0.8;
}

.about-item {
  color: #E0E1E0;
  background: #0B2E54;
  border-radius: 15px;
  width: 300px;
  height: 270px;
  box-sizing: border-box;
  padding: 34px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-text {
  writing-mode: vertical-rl;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 1.76px;
  align-self: flex-start;
}

.about-img {
  width: 110px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.about-arrow {
  width: 22px;
  height: auto;
  align-self: flex-end;
}

.about-bg {
  width: 100%;
  height: 523px;
  position: absolute;
  top: 0;
  z-index: -5;
  object-fit: cover;
}

/*
recruit
================================================ */
#recruit {
  box-sizing: border-box;
  background: #fff;
  width: 90%;
  margin: 0 auto;
  margin-top: 180px;
  border-radius: 15px;
  padding-top: 70px;
  padding-bottom: 105px;
}

@media screen and (max-width: 1080px) {
  #recruit {
    text-align: center;
  }
}
.recruit-inner {
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1080px) {
  .recruit-inner {
    flex-direction: column;
  }
}
.recruit-title-sub {
  margin-bottom: 44px;
}

.recruit-text {
  letter-spacing: 1.28px;
}

.recruit-btn a {
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  border: 3px solid #EB7931;
  color: #EB7931;
  border-radius: 50px;
  transition: 0.3s;
  padding: 8px 27px;
  width: 214px;
  height: 54px;
  white-space: nowrap;
  letter-spacing: 0px;
}

@media screen and (max-width: 1080px) {
  .recruit-btn a {
    margin-top: 50px;
  }
}
.recruit-btn a:hover {
  color: #E0E1E0;
  background: #EB7931;
}

/*
footer
================================================ */
.footer {
  color: #E0E1E0;
  background-color: #3C3C3C;
  padding: 59px 0 19px;
  margin-top: 120px;
  white-space: nowrap;
}

.footer-inner {
  max-width: 1100px;
}

.footer-logo-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-logo-wrap a:last-child {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #E0E1E0;
  border: 1px solid #E0E1E0;
  padding: 13px 34px;
  border-radius: 50px;
  transition: 0.3s;
}

@media screen and (max-width: 1080px) {
  .footer-logo-wrap a:last-child {
    font-size: 0.875rem;
  }
}
.footer-logo-wrap a:last-child::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 10px;
  background-image: url("../img/mail.png");
  background-size: 16px 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.footer-logo {
  width: 160px;
  height: auto;
}

.footer-contents {
  letter-spacing: 1.3px;
  display: flex;
  gap: 13.0909090909%;
}

@media screen and (max-width: 1080px) {
  .footer-contents {
    flex-wrap: wrap;
    gap: 13.0909090909%;
  }
}
.footer-item {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
}

.footer-item-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-item-text {
  font-size: 0.75rem;
  margin-left: 7px;
  margin-top: 10px;
}

.footer-border {
  height: 1px;
  background-color: #E0E1E0;
  width: 100%;
  margin-top: 52px;
}

.footer-buttom {
  font-size: 0.75rem;
  margin-top: 19px;
}

.footer-copyright {
  text-align: center;
}

/*
page-title
================================================ */
.page-title {
  text-align: center;
  width: 94%;
  max-width: 1360px;
  margin: 0 auto;
  margin-top: 116px;
  padding: 90px 0;
  background: #fff;
  border-radius: 30px;
}

@media screen and (max-width: 1080px) {
  .page-title {
    padding: 60px 0;
    margin-top: 80px;
  }
}
.page-title-sub {
  font-size: 1.125rem;
  color: #EB7931;
  letter-spacing: 1.28px;
}

@media screen and (max-width: 1080px) {
  .page-title-sub {
    font-size: 1rem;
  }
}
.page-title-text {
  margin-top: 5px;
  font-size: 2.625rem;
  font-weight: 600;
  letter-spacing: 1.28px;
}

@media screen and (max-width: 1080px) {
  .page-title-text {
    font-size: 2rem;
  }
}
/*
breadcrumb
================================================ */
.breadcrumb {
  margin-top: 20px;
  font-size: 0.75rem;
}

.news-breadcrumb {
  margin-top: 116px;
}

.breadcrumb img {
  width: 5px;
  height: auto;
}

.breadcrumb-inner {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 1080px) {
  .breadcrumb-inner {
    justify-content: start;
  }
}
/*
side-nav
================================================ */
.content {
  max-width: 1320px;
  width: 87.2%;
  width: 93%;
  margin: auto;
  display: flex;
}

@media screen and (max-width: 1080px) {
  .content {
    flex-direction: column;
    width: 100%;
    font-size: 0.875rem;
  }
}
.side-nav {
  width: 270px;
}

@media screen and (max-width: 1080px) {
  .side-nav {
    width: 87.2%;
    margin: 0 auto;
    border-top: 1px solid #B5B5B5;
    border-bottom: 1px solid #B5B5B5;
    padding-bottom: 35px;
    margin-top: 20px;
  }
}
.side-nav ul {
  margin-top: 32px;
}

.side-nav li {
  margin-top: 12px;
}

.side-nav li:first-of-type {
  margin-top: 0;
}

.side-nav li::before {
  content: "・";
  color: #EB7931;
  margin-right: 4px;
}

.side-nav-number {
  margin-right: 10px;
}

.side-nav-br {
  margin-left: 50px;
}

/*
policy-page
message
================================================ */
.content-inner {
  border-left: 1px solid #B5B5B5;
  padding: 50px 0;
  padding-left: 6.4393939394%;
  width: 925px;
}

@media screen and (max-width: 1080px) {
  .content-inner {
    border: none;
    padding-left: 0;
    width: 87.2%;
    margin: auto;
  }
}
#message {
  padding-top: 35px;
}

.message-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  padding: 0 20%;
}

.message-text {
  margin-top: 27px;
}

.message-text:first-of-type {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  margin-top: 50px;
}

@media screen and (max-width: 1080px) {
  .message-text:first-of-type {
    font-size: 1rem;
  }
}
.message-position {
  text-align: right;
  margin-top: 50px;
}

.message-name {
  text-align: right;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 1.76px;
}

@media screen and (max-width: 1080px) {
  .message-name {
    font-size: 1.125rem;
  }
}
/*
policy-page
philosophy
================================================ */
#philosophy {
  padding-top: 100px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 1.76px;
  line-height: 1.8;
}

@media screen and (max-width: 1080px) {
  #philosophy {
    font-size: 0.875rem;
  }
}
.philosophy-contents {
  background: #fff;
  padding: 45px 36px;
  border-radius: 15px;
}

.philosophy-item {
  display: flex;
  gap: 2.8985507246%;
  margin-top: 30px;
}

.philosophy-item:first-of-type {
  margin-top: 0;
}

/*
info-page
overview
================================================ */
#overview {
  padding-top: 35px;
}

.overview-table {
  margin-top: 80px;
}

.overview-title:first-of-type {
  margin-top: 0;
}

.overview-category {
  color: #0B2E54;
  width: 30%;
  border-bottom: 3px solid #0B2E54;
  padding: 13px 30px;
}

@media screen and (max-width: 1080px) {
  .overview-category {
    width: 100%;
  }
}
.overview-text {
  border-bottom: 1px solid #B5B5B5;
  padding: 14px 30px;
  margin-top: -2px;
  width: 70%;
}

@media screen and (max-width: 1080px) {
  .overview-text {
    border: none;
    width: 100%;
  }
}
.overview-two {
  padding: 26px 30px;
}

@media screen and (max-width: 1080px) {
  .overview-two {
    padding: 14px 30px;
  }
}
.overview-table-item {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1080px) {
  .overview-table-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
/*
info-page
access
================================================ */
#access {
  letter-spacing: 1.28px;
  line-height: 1.8;
  padding-top: 170px;
}

.access-text {
  margin-top: 26px;
}

.access-map-wrap {
  margin-top: 60px;
}

.access-map {
  border-radius: 15px;
}

@media screen and (max-width: 1080px) {
  .access-map {
    width: 100%;
  }
}
/*
info-page
equipment
================================================ */
#equipment {
  padding-top: 170px;
}

.equipment-contents {
  overflow-x: auto;
  margin-top: 92px;
}

.equipment-table {
  width: max-content;
  background-color: #fff;
  border-radius: 15px;
}

.equipment-table a {
  transition: 0.3s;
}

.equipment-table a:hover {
  color: #FE9384;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.equipment-table__th,
.equipment-table__td {
  padding: 20px 40px;
}

.equipment-table__th {
  background: #0B2E54;
  color: #fff;
}

.equipment-table__th:first-of-type {
  border-radius: 15px 0 0 0;
}

.equipment-table__th:last-of-type {
  border-radius: 0 15px 0 0;
}

.equipment-table__td {
  font-weight: normal;
}

/*
info-page
equipment
================================================ */
#history {
  padding-top: 170px;
}

.history-table {
  margin-top: 80px;
}

.history-title:first-of-type {
  margin-top: 0;
}

.history-category {
  color: #0B2E54;
  width: 30%;
  border-bottom: 3px solid #0B2E54;
  padding: 13px 30px;
}

@media screen and (max-width: 1080px) {
  .history-category {
    width: 100%;
  }
}
.history-text {
  border-bottom: 1px solid #B5B5B5;
  padding: 14px 30px;
  margin-top: -2px;
  width: 70%;
}

@media screen and (max-width: 1080px) {
  .history-text {
    border: none;
    width: 100%;
  }
}
.history-three {
  padding: 38px 30px;
}

.history-table-item {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1080px) {
  .history-table-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
/*
case-page
company
================================================ */
#company {
  padding-top: 37px;
}

.company-contents {
  display: flex;
  gap: 110px;
}

@media screen and (max-width: 1080px) {
  .company-contents {
    flex-direction: column;
    gap: 50px;
  }
}
.company-item .company-text:first-of-type {
  font-weight: 600;
  letter-spacing: 1.28px;
  margin-bottom: 15px;
}

.company-text {
  letter-spacing: 1.28px;
}

/*
case-page
flow
================================================ */
#flow {
  padding-top: 170px;
}

@media screen and (max-width: 1080px) {
  #flow {
    font-size: 0.875rem;
  }
}
.flow-item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 45px;
  background: #fff;
  border-radius: 15px;
}

.flow-img {
  width: 63px;
  height: auto;
}

.flow-item-title {
  color: #EB7931;
  margin-bottom: 10px;
  font-weight: 600;
}

.flow-arrow-wrap {
  text-align: center;
}

.flow-arrow {
  width: 30px;
  height: auto;
  margin: 15px auto;
}

/*
case-page
effect
================================================ */
#effect {
  padding-top: 170px;
}

.effect-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

@media screen and (max-width: 1080px) {
  .effect-slide {
    flex-direction: column;
    gap: 30px;
  }
}
.effect-slide:last-child {
  margin-top: 75px;
}

.effect-img {
  width: 200px;
  height: auto;
}

@media screen and (max-width: 1080px) {
  .effect-img {
    width: 125px;
  }
}
.effect-text-wrap {
  width: 600px;
  font-size: 1.125rem;
}

@media screen and (max-width: 1080px) {
  .effect-text-wrap {
    width: 100%;
    font-size: 0.875rem;
  }
}
.effect-before,
.effect-after {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 14px 18px;
  border-radius: 15px;
}

@media screen and (max-width: 1080px) {
  .effect-before,
  .effect-after {
    flex-direction: column;
    gap: 10px;
  }
}
.effect-before {
  background: #F7F7F7;
}

.effect-before-category {
  box-sizing: border-box;
  width: 75px;
  padding: 2px 10px;
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  background: #7F7F7F;
  border-radius: 5px;
}

.effect-after {
  margin-top: 10px;
  color: #fff;
  background: #1B76B2;
}

@media screen and (max-width: 1080px) {
  .effect-after {
    margin-top: 20px;
  }
}
.effect-after-category {
  box-sizing: border-box;
  width: 75px;
  padding: 2px 14px;
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
  color: #1B76B2;
  background: #fff;
  border-radius: 5px;
}

/*
product-page
================================================ */
#productInfo {
  padding-top: 37px;
}

.productInfo-narrowDown-wrap {
  background: #fff;
  border-radius: 15px;
  box-sizing: border-box;
  width: 100%;
  padding: 30px 35px;
  display: flex;
  gap: 35px;
}

.productInfo-text {
  font-weight: 600;
  white-space: nowrap;
}

.productInfo-choice-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}

.productInfo-choice {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  margin-top: 2px;
  cursor: pointer;
}

@media screen and (max-width: 1080px) {
  .productInfo-choice {
    font-size: 0.75rem;
  }
}
.productInfo-choice::before {
  content: "";
  background: #fff;
  border: 0.5px solid #B5B5B5;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 10px;
  transition: background 0.2s;
}

.productInfo-choice.active::before {
  background: #0B2E54;
}

.productInfo-item-wrap {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 45px;
}

@media screen and (max-width: 1080px) {
  .productInfo-item-wrap {
    gap: 40px 20px;
  }
}
.productInfo-img {
  width: 200px;
  height: 200px;
  border-radius: 15px;
}

@media screen and (max-width: 1080px) {
  .productInfo-img {
    width: 150px;
    height: 150px;
  }
}
.productInfo-category {
  font-size: 0.625rem;
  color: #777777;
  margin-top: 5px;
}

/*
product-page
business
================================================ */
#business {
  padding-top: 150px;
}

.business-text {
  margin-top: 27px;
}

.business-text:first-of-type {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  margin-top: 50px;
}

.business-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin-top: 60px;
}

/*
recruit-page
================================================ */
.caution {
  font-size: 1.25rem;
  letter-spacing: 1.76px;
  font-weight: 600;
  margin-top: 46px;
}

@media screen and (max-width: 1080px) {
  .caution {
    font-size: 1rem;
  }
}
/*
recruit-page
job
================================================ */
#job {
  padding-top: 60px;
}

.job-table {
  margin-top: 80px;
}

.job-title:first-of-type {
  margin-top: 0;
}

.job-category {
  color: #0B2E54;
  width: 30%;
  border-bottom: 3px solid #0B2E54;
  padding: 13px 30px;
}

@media screen and (max-width: 1080px) {
  .job-category {
    width: 100%;
  }
}
.job-text {
  border-bottom: 1px solid #B5B5B5;
  padding: 14px 30px;
  margin-top: -2px;
  width: 70%;
}

@media screen and (max-width: 1080px) {
  .job-text {
    border: none;
    width: 100%;
  }
}
.overview-two {
  padding: 26px 30px;
}

@media screen and (max-width: 1080px) {
  .overview-two {
    padding: 14px 30px;
  }
}
.job-three {
  padding: 38px 30px;
}

@media screen and (max-width: 1080px) {
  .job-three {
    padding: 14px 30px;
  }
}
.job-table-item {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1080px) {
  .job-table-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
/*
recruit-page
condition
================================================ */
#condition {
  padding-top: 100px;
}

.condition-table {
  display: flex;
  margin-top: 80px;
}

.condition-title:first-of-type {
  margin-top: 0;
}

.condition-table-title {
  color: #0B2E54;
  width: 30%;
}

.condition-category {
  border-bottom: 3px solid #0B2E54;
  padding: 13px 30px;
}

.condition-table-text {
  margin-top: -1px;
  width: 70%;
}

.condition-text {
  border-bottom: 1px solid #B5B5B5;
  padding: 14px 30px;
}

.condition-three {
  padding: 39px 30px 38px;
}

.condition-two {
  padding: 26px 30px;
}

/*
news-page
================================================ */
.news {
  padding-top: 90px;
}

.news-inner {
  max-width: 900px;
}

.news-category {
  display: inline;
}

.news-update {
  margin-top: 25px;
  letter-spacing: 1.3px;
  font-size: 0.875rem;
}

.news-title {
  color: #EB7931;
  font-weight: 600;
  font-size: 2.25rem;
  margin-top: 19px;
  letter-spacing: 3.7px;
}

@media screen and (max-width: 1080px) {
  .news-title {
    font-size: 1.5rem;
  }
}
.news-content {
  margin-top: 25px;
  line-height: 1.7;
  letter-spacing: 1.3px;
}

@media screen and (max-width: 1080px) {
  .news-content {
    font-size: 0.875rem;
  }
}
/*
contact-page
================================================ */
#contact {
  padding-top: 37px;
}

.contact-text {
  text-align: center;
  letter-spacing: 1.28px;
}

.success-message {
  text-align: center;
  color: green;
  font-size: 1rem;
  margin-top: 70px;
}

.contact-contents {
  margin-top: 70px;
}

.contact-item {
  border-bottom: 1px solid #B5B5B5;
  padding: 14px 0;
  display: flex;
  align-items: center;
}

.contact-input {
  font-size: 0.875rem;
  background: #fff;
  border: 1px solid #777777;
  border-radius: 5px;
  width: 60%;
  margin-left: auto;
  padding: 4px 8px;
}

.contact-item:first-of-type .contact-input {
  width: 40%;
  margin-right: 20%;
}

textarea#message.contact-input {
  height: 150px;
  padding-top: 4px;
}

.contact-btn button {
  font-size: inherit;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  border: 3px solid #EB7931;
  color: #EB7931;
  border-radius: 50px;
  transition: 0.3s;
  padding: 8px 27px;
  width: 214px;
  height: 54px;
  white-space: nowrap;
  margin: 0 auto;
  margin-top: 60px;
  letter-spacing: 0px;
}

.contact-btn button:hover {
  color: #E0E1E0;
  background: #EB7931;
}

/*
contact-page
inquiries
================================================ */
#inquiries {
  padding-top: 150px;
}

.inquiries-contents {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px 2%;
}

@media screen and (max-width: 1080px) {
  .inquiries-contents {
    flex-direction: column;
    justify-content: center;
  }
}
.inquiries-img {
  max-width: 49%;
  height: auto;
}

@media screen and (max-width: 1080px) {
  .inquiries-img {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
}/*# sourceMappingURL=style.css.map */