@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

img {
  -o-object-fit: contain;
     object-fit: contain;
}

/* ===============================================
# ヘッダー
=============================================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  height: 84px;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 3.9285714286%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.header .logo a:nth-child(2) {
  display: none;
}

.nav {
  height: inherit;
}

.nav-list {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-list li {
  height: inherit;
}

.nav-list a {
  height: inherit;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
  padding: 15px;
}

.nav-list li:nth-child(4) a {
  padding-right: 34px;
}

.header .nav-list a:hover {
  opacity: 1;
  background-color: #16636e;
}

.header .nav-list li:last-child a {
  width: 194px;
}

.nav-list li:last-child a {
  background-color: #16636e;
}

.nav-list li:last-child a:hover {
  background-color: #fff;
  color: #16636e;
}

.header .hamburger {
  display: none;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 20px;
  right: 20px;
  width: 28px;
  height: 20px;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  right: 0;
  display: inline-block;
  width: 100%;
  height: 3px;
  background-color: white;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, background-color 0.3s;
  transition: transform 0.3s, background-color 0.3s, -webkit-transform 0.3s;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
          box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.hamburger span:nth-child(1) {
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.hamburger span:nth-child(2) {
  top: 10px;
  width: 72%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.hamburger span:nth-child(3) {
  bottom: 0;
  width: 43%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.hamburger.is-active span {
  background-color: white;
}

.hamburger.is-active span:nth-child(1) {
  top: 8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 8px;
  width: 100%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (max-width: 992px) {
  .header .nav-list a {
    padding: 12px;
  }
  .header .nav-list li:last-child a {
    width: 148px;
  }
}
@media screen and (min-width: 835px) {
  .header.bg-white,
  .header.subpage {
    background-color: #fff;
  }
  .header.bg-white .logo a:first-child,
  .header.subpage .logo a:first-child {
    display: none;
  }
  .header.bg-white .logo a:nth-child(2),
  .header.subpage .logo a:nth-child(2) {
    display: block;
  }
  .header.bg-white .nav-list li:not(:last-child) a,
  .header.subpage .nav-list li:not(:last-child) a {
    color: #16636e;
  }
  .header.bg-white .nav-list li:not(:last-child) a:hover,
  .header.subpage .nav-list li:not(:last-child) a:hover {
    color: #fff;
  }
}
@media screen and (max-width: 834px) {
  .header {
    height: 60px;
    background: -webkit-gradient(linear, left top, left bottom, from(#1c5d8d), to(#16636e));
    background: linear-gradient(to bottom, #1c5d8d, #16636e);
  }
  .header .logo {
    width: 193px;
  }
  .header .nav {
    display: none;
  }
  .header .hamburger {
    display: block;
  }
}
.drawer-menu {
  position: fixed;
  z-index: 5000;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(#1c5d8d), to(#16636e));
  background: linear-gradient(to bottom, #1c5d8d, #16636e);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s, visibility 0.4s;
  transition: opacity 0.4s, visibility 0.4s;
  padding: 14.5px 20px 20px;
}

.drawer-menu.is-active {
  opacity: 1;
  visibility: visible;
}

.drawer-menu .logo {
  width: 193px;
}

.drawer-menu ul {
  margin-top: 16px;
}

.drawer-menu li {
  position: relative;
}

.drawer-menu li::after {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 15px;
  content: "";
  display: block;
  width: 13.11px;
  height: 13.11px;
  background-image: url(../img/common/drawer-arrow@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.drawer-menu li a {
  display: block;
  padding: 20px 0 20px;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #fff;
}

.drawer-menu .privacy {
  margin-top: 28px;
  display: inline-block;
  color: #fff;
  font-size: 14px;
}

.drawer-menu .tel {
  margin-top: 73.5px;
}

.drawer-menu .tel a {
  margin-top: 16px;
}

.drawer-menu .mail {
  margin-top: 36px;
}

.drawer-menu .mail a {
  margin-top: 16px;
  width: 292.25px;
  margin-inline: auto;
}

@media screen and (max-width: 375px) {
  .drawer-menu li a {
    padding: 12px 0 12px;
  }
  .drawer-menu .privacy,
  .drawer-menu .tel,
  .drawer-menu .tel a,
  .drawer-menu .mail {
    margin-top: 16px;
  }
}
/* ===============================================
# MV
=============================================== */
.mv {
  height: 100vh;
  display: block;
  background-image: url(../img/top/mv-bg@2x.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 20px solid #16636e;
  position: relative;
  overflow: hidden;
}

.mv .img-wrapper {
  position: absolute;
  top: 84px;
  left: 50%;
  translate: -50% 0;
  width: 86vw;
  max-width: 1120px;
  height: 80.2120141343vh;
}

.mv .img-wrapper .img {
  width: calc(50% + 50vw);
  height: 100%;
  opacity: 0;
}

.mv .img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv .inner {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  height: 100vh;
}

.mv .inner .title {
  margin-top: 58.5394581861vh;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}

.mv .inner .subtitle {
  margin-top: 24px;
  color: #fff;
}

.mv .title,
.mv .subtitle {
  opacity: 0;
}

@media screen and (max-width: 834px) {
  .mv {
    background: unset;
    border-bottom: 12px solid #16636e;
  }
  .mv .img-wrapper {
    top: 60px;
    left: 0;
    translate: unset;
    width: 100%;
    height: calc(100vh - 60px - 12px);
  }
  .mv .inner .title {
    margin-top: 43vh;
  }
}
/* ===============================================
# DAIWA ALUMINUM
=============================================== */
.daiwa-aluminum {
  margin-top: 0;
  position: relative;
  padding: 102px 0 77px;
}

.daiwa-aluminum .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.daiwa-aluminum .bg-text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-transform: uppercase;
  color: #f5f5f5;
  font-size: 121px;
  font-weight: 700;
  line-height: 0.9917355372;
}

.daiwa-aluminum .img {
  width: 46%;
  max-width: 492px;
}

.daiwa-aluminum .img img {
  -o-object-fit: cover;
     object-fit: cover;
}

.daiwa-aluminum .inside-inner {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.daiwa-aluminum .inside-inner p:first-child {
  margin-top: 180px;
  font-size: 40px;
  line-height: 1.5;
  color: #16636e;
}

.daiwa-aluminum .inside-inner p + p {
  margin-top: 60px;
  width: 50%;
  font-weight: 400;
  line-height: 2.3125;
}

@media screen and (max-width: 834px) {
  .daiwa-aluminum {
    padding: 60px 0;
  }
  .daiwa-aluminum .inside-inner {
    position: initial;
    translate: unset;
  }
  .daiwa-aluminum .inner {
    position: absolute;
    z-index: -1;
  }
  .daiwa-aluminum .inside-inner p:first-child {
    margin-top: 40px;
  }
  .daiwa-aluminum .inside-inner p + p {
    margin-top: 24px;
    width: 100%;
  }
  .daiwa-aluminum .img {
    margin-top: 24px;
    width: 100%;
    max-width: unset;
  }
}
/* ===============================================
# COMPANY
=============================================== */
.company {
  padding-top: 128px;
  position: relative;
}

.company .section-title,
.company .section-subtitle {
  text-align: left;
}

.company .section-title {
  margin-top: 16px;
  position: relative;
}

.company .img {
  margin-top: 40px;
  max-width: 648px;
  overflow: hidden;
  cursor: pointer;
}

.company .img img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.company .img:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.company .img a:hover {
  opacity: 1;
}

.company .btn {
  margin-top: 40px;
}

@media screen and (max-width: 834px) {
  .company {
    padding-top: 80px;
  }
}
/* ===============================================
# 背景の斜めの帯
=============================================== */
.company .container {
  position: relative;
}

.company .container::before,
.works .inside-inner::before,
.works .inside-inner::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 320px;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(#1c5d8d), to(#16636e));
  background: linear-gradient(to bottom, #1c5d8d, #16636e);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: skewY(9deg);
          transform: skewY(9deg);
}

.company .container::before {
  margin-top: -30px;
  margin-left: calc(50% - 50vw);
}

.works .inside-inner {
  position: relative;
}

.works .inside-inner::before,
.works .inside-inner::after {
  margin-left: calc(50% - 50vw - 20px);
}

.works .inside-inner::before {
  margin-top: -150px;
}

.works .inside-inner::after {
  margin-top: -260px;
}

/* ===============================================
# WORKS
=============================================== */
.works {
  margin-top: 30px;
}

.works .container {
  max-width: 648px;
  margin-left: auto;
}

.works .section-title,
.works .section-subtitle {
  text-align: left;
}

.works .section-title {
  margin-top: 16px;
}

.works .img {
  margin-top: 40px;
  overflow: hidden;
  cursor: pointer;
}

.works .img img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.works .img a:hover {
  opacity: 1;
}

.works .btn {
  margin-top: 40px;
}

/* ===============================================
# PRODUCTS
=============================================== */
.products {
  padding-top: 60px;
  overflow: hidden;
}

.products .container {
  position: relative;
  cursor: pointer;
}

.products .img {
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.products .img img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.products .container:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.products .container a:hover {
  opacity: 1;
}

.products .title-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
}

.products .section-title,
.products .section-subtitle {
  color: #000;
}


/* ===============================================
# RECRUIT
=============================================== */
.recruit {
  margin-top: 66px;
  padding-bottom: 103px;
  overflow: hidden;
}

.recruit .container {
  position: relative;
  cursor: pointer;
}

.recruit .img {
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

.recruit .img img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.recruit .container:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.recruit .container a:hover {
  opacity: 1;
}

.recruit .title-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
}

/* ===============================================
# CONTACT
=============================================== */
.contact {
  background: -webkit-gradient(linear, left top, left bottom, from(#1c5d8d), to(#16636e));
  background: linear-gradient(to bottom, #1c5d8d, #16636e);
  padding: 80px 0 70px;
}

.contact .section-subtitle {
  margin-top: 16px;
}

.contact .flex {
  margin-top: 56px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tel {
  color: #fff;
  text-align: center;
}

.contact .tel {
  padding-right: 85px;
}

.tel a {
  display: block;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.contact .tel a {
  margin-top: 28px;
}

.mail {
  color: #fff;
  text-align: center;
}

.contact .mail {
  padding-left: 85px;
  border-left: 1px solid #fff;
}

.mail a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 12px 40px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.contact .mail a {
  margin-top: 26px;
}

.mail a:hover {
  opacity: 1;
  background-color: #fff;
  color: #16636e;
}

.mail a:hover svg path {
  stroke: #16636e;
}

@media screen and (max-width: 834px) {
  .contact {
    padding: 50px 0 60px;
  }
  .contact .section-subtitle {
    margin-top: 14px;
  }
  .contact .flex {
    margin-top: 53px;
    padding-top: 55px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
  .contact .flex::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50%;
    width: 30px;
    height: 1px;
    background-color: #fff;
  }
  .contact .tel,
  .contact .mail {
    padding: 0;
  }
  .contact .tel p,
  .contact .mail p {
    font-size: 14px;
  }
  .contact .tel a,
  .contact .mail a {
    margin-top: 16px;
  }
  .contact .mail {
    margin-top: 36px;
    border: unset;
  }
}
/* ===============================================
# フッター
=============================================== */
.footer {
  padding: 90px 0 72px;
}

.footer .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 32px;
}

.footer .nav-list li:first-child a {
  padding-left: 0;
}

.footer .nav-list li:not(:last-child) a {
  color: #000;
}

.footer .nav-list li:not(:last-child) a:hover {
  opacity: 1;
  color: #16636e;
}

.footer .nav-list li:last-child a {
  padding: 4px 16px;
  border-radius: 50px;
  border: 2px solid #16636e;
}

.footer .nav-list a,
.footer .privacy,
.footer small {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

.footer .privacy,
.footer small {
  color: #7c7c7c;
}

.footer small {
  margin-top: 32px;
  display: block;
}

.footer small span {
  text-transform: uppercase;
}

.footer .address p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 834px) {
  .footer {
    padding: 55px 0 20px;
  }
  .footer .flex {
    display: block;
  }
  .footer .nav-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
  .footer .nav-list a {
    font-size: 16px;
  }
  .footer .nav-list:not(#_) a {
    padding: 15px 0;
  }
  .footer .nav-list li:last-child a {
    border: unset;
    background-color: unset;
    color: #000;
  }
  .footer .container {
    row-gap: 16px;
    margin-bottom: 2rem;
  }
  .footer .address {
    margin-top: 77px;
  }
  .footer small {
    margin-top: 51px;
    font-size: 12px;
  }
}
/* ===============================================
#  COMPANYページ
=============================================== */
.greeting {
  margin-top: 80px;
  padding-bottom: 132px;
  position: relative;
}

.greeting .inner {
  padding-left: min(120px, 7.1428571429vw + 20px);
}

.greeting h2 {
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.greeting h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #16636e;
}

.greeting .title-wrapper {
  text-align: center;
}

.greeting .title-wrapper + p {
  margin-top: 80px;
  font-size: 18px;
  font-weight: 400;
}

.greeting ul {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: min(116px, 8.2857142857vw);
     -moz-column-gap: min(116px, 8.2857142857vw);
          column-gap: min(116px, 8.2857142857vw);
}

.greeting li {
  text-align: center;
}

.greeting li p {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #16636e;
}

.greeting li p:first-child {
  font-size: 44px;
}

.greeting li p:nth-child(2) {
  font-size: 15px;
}

.greeting li p:first-child span {
  display: inline-block;
}

.greeting li + li {
  position: relative;
}

.greeting li + li::before {
  content: "";
  position: absolute;
  left: max(-58px, -4.1428571429vw);
  width: 1px;
  height: 100%;
  background-color: #16636e;
  rotate: 20deg;
}

.greeting-text {
  margin-top: 80px;
}

.greeting-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.1875;
}

.greeting-text p + p {
  margin-top: 32px;
}

.greeting .img {
  position: absolute;
  right: 0;
  bottom: -100px;
  width: min(460px, 32.8571428571vw);
}

.greeting .img img {
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 834px) {
  .greeting {
    margin-top: 48px;
    padding-bottom: 48px;
    position: relative;
  }
  .greeting .inner {
    padding-left: 20px;
  }
  .greeting .title-wrapper + p {
    margin-top: 48px;
    font-size: 16px;
    font-weight: 400;
  }
  .greeting ul {
    margin-top: 36px;
    display: block;
  }
  .greeting li + li::before {
    display: none;
  }
  .greeting li + li {
    margin-top: 16px;
  }
  .greeting-text {
    margin-top: 56px;
  }
  .greeting .img {
    margin-top: 48px;
    position: initial;
    width: 100%;
  }
  .greeting li p:first-child {
    font-size: 36px;
  }
}
/* ===============================================
#  COMPANYページ 会社概要
=============================================== */
.company-overview {
  margin-top: 214px;
  padding-bottom: 120px;
}

.company-overview .inner {
  padding-inline: min(120px, 7.1428571429vw + 20px);
}

.company-overview dl {
  margin-top: 77px;
}

.dl-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.company-overview dt {
  width: 25%;
}

.company-overview dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.company-overview dt,
.company-overview dd {
  line-height: 3.125;
}

.company-overview .dl-row + .dl-row {
  margin-top: 24px;
}
.company-overview dd .half_list {
	display: flex;
	flex-wrap: wrap;
	max-width: 550px;
}
.company-overview dd .half_list li {
	margin: 0 4% 0 0;
	width: 48%;
}
.company-overview dd .half_list li:nth-child(2n) {
	margin: 0;
}

@media screen and (max-width: 834px) {
  .company-overview {
    margin-top: 48px;
    padding-bottom: 48px;
  }
  .company-overview dl {
    margin-top: 56px;
  }
  .dl-row {
    display: block;
  }
  .company-overview dt {
    width: 100%;
  }
  .company-overview dd {
    margin-top: 8px;
    padding-left: 20px;
  }
  .company-overview dt,
  .company-overview dd {
    line-height: 2;
  }
	
	.company-overview dd .half_list {
		display: block;
	}
	.company-overview dd .half_list li {
		width: 100%;
		margin: 0 !important;
	}
}
/* ===============================================
#  COMPANYページ 沿革
=============================================== */
.history {
  margin-top: 38px;
  padding-bottom: 240px;
}

.history .inner {
  padding-inline: min(120px, 7.1428571429vw + 20px);
}

.history dl {
  margin-top: 77px;
}

.history dt {
  width: 25%;
}

.history dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.history dt,
.history dd {
  line-height: 3.125;
}

.history .dl-row + .dl-row {
  margin-top: 24px;
}

@media screen and (max-width: 834px) {
  .history {
    padding-bottom: 48px;
  }
  .history dl {
    margin-top: 56px;
  }
  .history dt {
    width: 100%;
  }
  .history dd {
    padding-left: 20px;
  }
  .history dt,
  .history dd {
    line-height: 2;
  }
}
/* ===============================================
#  WORKSページ 製造内容
=============================================== */
.production-detail {
  margin-top: 105px;
  padding-bottom: 105px;
}

.production-detail .dl {
  margin-top: 59px;
  width: 100%;
}

.production-detail .dl-row {
  width: 100%;
}

.production-detail dt {
  width: 17.7%;
  font-size: 22px;
  font-weight: 500;
  color: #16636e;
  text-align: center;
}

.production-detail dd:first-child {
  line-height: 2.1875;
  min-width: 16%;
}

.production-detail .dl-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.production-detail .dd-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.production-detail .dl-border-range {
  border: 1px solid #27636e;
  min-height: 93px;
}

.production-detail .dl-border-range + .dl-border-range {
  margin-top: 18px;
}

.production-detail .dd-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 16px 5%;
  position: relative;
}

.production-detail .dd-wrapper::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #27636e;
  position: absolute;
  left: 0;
  top: 0;
}

.production-detail .dd-wrapper.single::before {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20%, transparent), color-stop(20%, #27636e), color-stop(80%, #27636e), color-stop(80%, transparent), to(transparent));
  background: linear-gradient(to bottom, transparent 0%, transparent 20%, #27636e 20%, #27636e 80%, transparent 80%, transparent 100%);
}

.production-detail .dd-wrapper.upper::before {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20%, transparent), color-stop(20%, #27636e), to(#27636e));
  background: linear-gradient(to bottom, transparent 0%, transparent 20%, #27636e 20%, #27636e 100%);
}

.production-detail .dd-wrapper.bottom::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#27636e), color-stop(80%, #27636e), color-stop(80%, transparent), to(transparent));
  background: linear-gradient(to bottom, #27636e 0%, #27636e 80%, transparent 80%, transparent 100%);
}

.production-detail .dd-wrapper.bottom {
  padding-bottom: 60px;
}

.production-detail .dd-wrapper-min-height {
  min-height: 93px;
}

.production-detail .subpage-section-title {
	margin-bottom: 55px;
}
.production-detail .pddl {
	display: flex;
	border: 1px solid #27636E;
	padding: 20px 0;
	margin-bottom: 20px;
}
.production-detail .pddl .ttl {
	width: 17.7%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.production-detail .pddl .ttl.noc {
	display: block;
}
.production-detail .pddl .contents {
	width: calc(100% - 17.7%);
	border-left: 1px solid #27636E;
	padding: 0 50px;
	line-height: 2.188;
}
.production-detail .pddl .contents.min {
	padding: 0 34px;
}
.production-detail .pddl .contents dl {
	display: flex;
	flex-wrap: wrap;
	padding: 14px 0 30px;
}
.production-detail .pddl .contents dl dt {
	width: 150px;
	color: #000000;
	font-size: 16px;
	font-weight: 400;
	text-align: left;
	margin-bottom: 40px;
}
.production-detail .pddl .contents dl dd {
	width: calc(100% - 150px);
	margin-bottom: 40px;
}
.production-detail .pddl .contents dl dt:nth-last-child(2),
.production-detail .pddl .contents dl dd:last-child{
	margin-bottom: 0;
}
.production-detail .pddl .contents .flex {
	align-items: flex-start;
	margin: 10px 0 0;
}
.production-detail .pddl .contents .flex .left {
	width: calc(100% - 34.57%);
	padding-right: 20px;
}
.production-detail .pddl .contents .flex .left dl {
	padding: 0 0 30px;
}
.production-detail .pddl .contents .flex .right {
	width: 34.57%;
	line-height: 0;
	text-align: center;
}
.production-detail .pddl .contents .flex .right img {
	object-fit: inherit;
	vertical-align: top;
	display: inline;
	height: auto;
}

.production-detail .dl + p,
.production-detail .pddl + p {

  margin-top: 67px;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 2;
}

@media screen and (max-width: 834px) {
  .production-detail {
    margin-top: 48px;
    padding-bottom: 48px;
  }
  .production-detail .dl {
    margin-top: 48px;
  }
  .production-detail .dl + p,
	.production-detail .pddl + p{
    margin-top: 40px;
    font-size: 14px;
  }
  .production-detail .dl-row,
  .production-detail .dd-wrapper {
    display: block;
  }
  .production-detail dt {
    width: 100%;
    text-align: left;
    padding: 0 0 8px;
  }
  .dl-border-range .dl-row:first-child dt {
    border-bottom: 1px solid #27636e;
  }
  .dl-border-range .dl-row:first-child .dd-wrapper {
    margin-top: 8px;
  }
  .production-detail .dd-wrapper:not(#_) {
    padding: 0 0 8px;
    min-height: unset;
  }
  .production-detail .dd-wrapper::before {
    display: none;
  }
  .production-detail .dd-wrapper dd:nth-child(2) {
    padding-left: 8px;
  }
  .production-detail dd {
    line-height: 2;
  }
  .production-detail .dl-border-range {
    padding: 16px;
  }
	
	.production-detail .subpage-section-title {
	  margin-bottom: 40px;
	}
	.production-detail .pddl {
		display: block;
		padding: 16px;
	}
	.production-detail .pddl dt,.production-detail .pddl dd {
		width: 100% !important;
	}
	.production-detail .pddl .ttl {
		padding-bottom: 8px;
		border-bottom: 1px solid #27636E;
		display: block;
	}
	.production-detail .pddl .contents,
	.production-detail .pddl .contents.min{
		padding: 8px 0 0;
		border: none;
	}
	.production-detail .pddl .contents.min{
		padding: 0;
	}
	.production-detail .pddl .contents dl {
		display: block;
	}
	.production-detail .pddl .contents dl dt {
		margin-bottom: 0;
		padding-bottom: 0;
	}
	.production-detail .pddl .contents dl dd {
		padding-left: 8px;
		margin-bottom: 25px;
	}
	.production-detail .pddl .contents .flex {
		display: block;
		margin: 0;
	}
	.production-detail .pddl .contents .flex .left,
	.production-detail .pddl .contents .flex .right{
		width: 100%;
	}
	.production-detail .pddl .contents .flex .left {
		padding-right: 0;
	}
}
/* ===============================================
#  WORKSページ 工程の流れ
=============================================== */
.process-flow {
  margin-top: 69px;
  padding-bottom: 105px;
}

.process-flow .img {
  margin-top: 83px;
  max-width: 544px;
  margin-inline: auto;
}

@media screen and (max-width: 834px) {
  .process-flow {
    margin-top: 48px;
    padding-bottom: 48px;
  }
  .process-flow .img {
    margin-top: 40px;
  }
}
/* ===============================================
#  WORKSページ 主要設備
=============================================== */
.main-equipment {
  margin-top: 45px;
  padding-bottom: 105px;
}

.main-equipment .table {
  margin-top: 75px;
}

.main-equipment ul {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(335px, 1fr));
  gap: 34px 25px;
}

.main-equipment li img + p {
  margin-top: 20px;
  text-align: center;
}

@media screen and (max-width: 834px) {
  .main-equipment {
    padding-bottom: 48px;
  }
  .main-equipment .table {
    margin-top: 56px;
  }
  .main-equipment li img + p {
    margin-top: 12px;
  }
}
/* ===============================================
#  WORKSページ 物流
=============================================== */
.logistics {
  margin-top: 40px;
  padding-bottom: 105px;
}

.logistics table {
  margin-top: 56px;
  width: 55%;
  border-spacing: 0 24px;
}

.logistics table th {
  width: 30%;
  vertical-align: baseline;
  text-align: left;
}

.logistics table tr + tr {
  margin-top: 16px;
}

@media screen and (max-width: 834px) {
  .logistics {
    padding-bottom: 48px;
  }
  .logistics table {
    margin-top: 48px;
    width: 100%;
  }
}
/* ===============================================
#  WORKSページ 在庫一覧
=============================================== */
.inventory {
  margin-top: 99px;
  padding-bottom: 105px;
}

.inventory h2 + p {
  margin-top: 80px;
}

.inventory .table-title {
  margin-top: 56px;
  font-size: 22px;
  font-weight: 500;
  color: #16636e;
}

.inventory .table {
  margin-top: 37px;
}

.inventory .table + P {
  margin-top: 75px;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 2;
}

.inventory ul {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: min(26px, 2.4%);
     -moz-column-gap: min(26px, 2.4%);
          column-gap: min(26px, 2.4%);
}

.inventory .direct-inquiry {
  margin-top: 80px;
}

.inventory .direct-inquiry p {
  line-height: 2.1875;
}

.inventory .direct-inquiry p + p {
  margin-top: 60px;
}

@media screen and (max-width: 834px) {
  .inventory {
    margin-top: 48px;
    padding-bottom: 48px;
  }
  .inventory h2 + p {
    margin-top: 56px;
  }
  .inventory .table-title {
    margin-top: 32px;
    font-size: 18px;
  }
  .inventory .table {
    margin-top: 24px;
  }
  .works .inventory .table td {
    min-width: 30px;
  }
  .inventory .table + P {
    margin-top: 24px;
    font-size: 14px;
  }
  .inventory ul {
    margin-top: 48px;
    display: block;
  }
  .inventory li + li {
    margin-top: 16px;
  }
  .inventory .direct-inquiry {
    margin-top: 32px;
  }
  .inventory .direct-inquiry p + p {
    margin-top: 32px;
  }
}

.master_wrap {
    overflow: auto;
    margin: 60px 0 70px;
}
table.master {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 16px;
    min-width: 780px;
}
table.master th {
    background: #16636e;
    color: #fff;
    padding: 23px 16px;
    width: calc(calc(100% - 173px) / 4);
    border-right: 1px solid #ddd;
}
table.master th:first-child {
    width: 173px;
    position: relative;
}
table.master th:first-child:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 1px;
    height: 234%;
    transform: rotate(-70deg);
    background: #fff;
    margin: auto;
}
table.master th:first-child span {
    position: absolute;
    display: block;
}
table.master th:first-child span:first-child {
    top: 12px;
    right: 30px;
}
table.master th:first-child span:last-child {
    bottom: 12px;
    left: 30px;
}
table.master td {
    padding: 16px;
    border-right: 1px solid #ddd;
}
table.master th:last-child,table.master td:last-child {
    border-right: none;
}
@media screen and (max-width: 930px) {
    table.master th {
        width: calc(calc(100% - 130px) / 4);
    }
    table.master th:first-child {
        width: 130px;
    }
    table.master th:first-child span:first-child {
        right: 14px;
    }
    table.master th:first-child span:last-child {
        left: 14px;
    }
    table.master th:first-child::after {
        height: 178%;
        transform: rotate(-66deg);
    }
}


/* ===============================================
#  WORKSページ 共通
=============================================== */
.inner.works-inner {
  padding-left: min(120px, 7.1428571429vw + 20px);
}
@media screen and (max-width: 834px) {
  .inner.works-inner {
    padding-left: 20px;
  }
}

#works .subpage-section-title::after {
  left: 180px;
  width: calc(50vw + 50% - 180px - min(50px, 3.5714285714vw));
}
@media screen and (max-width: 834px) {
  #works .subpage-section-title::after {
    width: calc(50vw + 50% - 180px);
  }
}

.works .table {
  border: none;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  width: 100%;
  border-spacing: 0;
}

.works .table thead {
  background-color: #16636e;
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}

.works .table th {
  padding: 16px;
  border-left: 1px solid #ddd;
}

.works .table td {
  padding: 16px;
  border-left: 1px solid #ddd;
  text-align: center;
}

.works .table td.text-left {
  text-align: left;
}

.works .table td.border-bottom {
  border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 834px) {
  .works .table th,
  .works .table td {
    padding: 5px;
    min-width: 60px;
    font-size: 14px;
  }
  .works .table td {
    vertical-align: baseline;
  }
}
/* ===============================================
# PRODUCTSページ
=============================================== */
.material-feature {
  margin-top: 105px;
}

.material-feature .container {
  padding: 80px 0;
}

.manufacturable-range {
  margin-top: 80px;
}

.manufacturable-range .container {
  padding: 80px 0;
}

#products .subpage-section-title::after {
  left: 200px;
  width: calc(50vw + 50% - 200px - min(50px, 3.5714285714vw));
}
@media screen and (max-width: 834px) {
  #products .subpage-section-title::after {
    width: calc(50vw + 50% - 200px);
  }
}

/* ===============================================
# RECRUITページ
=============================================== */
#recruit .container {
  padding: 75px 0 112px;
}

/* ===============================================
# CONTACTページ
=============================================== */
#contact {
  margin-top: 84px;
}

.contact-container {
  padding-top: 123px;
  padding-bottom: 73px;
  background-color: #f5f5f5;
  text-align: center;
  padding-inline: min(120px, 7.1428571429vw + 20px);
}

.contact-title {
  font-size: 59px;
  font-weight: 700;
  color: #16636e;
  text-transform: uppercase;
}

.contact-title + p {
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.5555555556;
  color: #393939;
}

.form {
  margin-top: 64px;
  text-align: left;
}

.form-supplement {
  text-align: right;
}

.form-list {
  margin-top: 22px;
}

.form-list dd {
  margin-top: 22px;
}

.form-list input {
  width: 100%;
  height: 58px;
  padding: 8px 12px;
  background-color: #fff;
}

.form-list dd + dt {
  margin-top: 30px;
}

.form-list dt p {
  color: #393939;
}

dd.form-radio {
  margin-top: 39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15%;
     -moz-column-gap: 15%;
          column-gap: 15%;
}

.form-radio label {
  position: relative;
  padding-left: 36px;
}

.form-radio input[type=radio] + label::before {
  position: absolute;
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.form-radio input[type=radio] + label::after {
  position: absolute;
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #16636e;
  left: 4.2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.form-radio input[type=radio]:checked + label::after {
  opacity: 1;
}

.form-list textarea {
  background-color: #fff;
  width: 100%;
  height: 298px;
  resize: none;
  padding: 8px 12px;
}

.form-button-wrapper {
  margin-top: 63px;
  width: 100%;
  position: relative;
}

.form-button-wrapper::before {
  content: "";
  display: block;
  width: 23px;
  height: 23px;
  background-image: url(../img/sub/contact-arrow@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 35%;
  -webkit-transition: left 0.3s;
  transition: left 0.3s;
}

.form-button-wrapper:hover::before {
  left: 36%;
}

.form-button {
  width: 100%;
  background-color: #16636e;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  padding: 38px;
}

@media screen and (max-width: 834px) {
  #contact {
    margin-top: 60px;
  }
  #contact .inner {
    padding-inline: 0;
  }
  .contact-container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .contact-title {
    font-size: 40px;
  }
  .contact-title + p {
    font-size: 16px;
    text-align: left;
  }
  .contact-container {
    padding-inline: 20px;
  }
  .form {
    margin-top: 40px;
  }
  dd.form-radio {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    row-gap: 16px;
  }
  .form-button-wrapper {
    margin-top: 56px;
  }
  .form-button-wrapper::before {
    left: 12%;
  }
  .form-button {
    padding: 24px;
  }
}
/* ===============================================
# 個人情報保護方針
=============================================== */
.privacy.subpage {
  margin-top: 185px;
  padding-bottom: 180px;
}

.privacy .inner {
  padding-inline: min(120px, 7.1428571429vw + 20px);
}

.privacy .title-wrapper {
  text-align: center;
}

.privacy-title {
  display: inline-block;
  font-size: 32px;
  font-weight: 400;
  position: relative;
}

.privacy-title::after {
  content: "";
  display: block;
  width: 40%;
  height: 2px;
  background-color: #16636e;
  position: relative;
  left: 50%;
  translate: -50% 0;
  bottom: -20px;
}

.privacy .content {
  margin-top: 140px;
}

.privacy .content p,
.privacy .content li {
  font-size: 18px;
  line-height: 2.2222222222;
  font-weight: 400;
}

.privacy .content p span,
.privacy .content li span {
  font-weight: 500;
}

.privacy .content ol {
  margin-top: 40px;
  list-style-type: decimal;
  padding-left: 2%;
}

.privacy .content > ol > li + li,
.privacy .content ol + li {
  margin-top: 24px;
}

@media screen and (max-width: 834px) {
  .privacy.subpage {
    margin-top: 120px;
    padding-bottom: 80px;
  }
  .privacy .inner {
    padding-inline: 20px;
  }
  .privacy-title {
    font-size: 28px;
  }
  .privacy .content {
    margin-top: 72px;
  }
  .privacy .content p,
  .privacy .content li {
    font-size: 16px;
  }
  .privacy .content ol {
    padding-left: 5%;
  }
}
/* ===============================================
# 下層ページ共通
=============================================== */
.subpage .title-container {
  margin-top: 190px;
  padding-bottom: 45px;
  position: relative;
}

.subpage-subtitle {
  color: #16636e;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.subpage-title {
  color: #000;
  font-size: 59px;
  text-transform: uppercase;
}

.subpage-bgtitle {
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 173px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #f5f5f5;
  line-height: 1;
  z-index: -1;
}

.subpage-title-img {
  margin-top: -14px;
  height: 420px;
}

.subpage-title-img img {
  -o-object-fit: cover;
     object-fit: cover;
}

.subpage-section-title {
  font-size: 32px;
  font-weight: 500;
  color: #16636e;
  line-height: 1;
  position: relative;
}

.subpage-section-title::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 160px;
  width: calc(50vw + 50% - 160px);
  height: 2px;
  background-color: #16636e;
}

.subpage-overview {
  margin-top: 0;
  min-height: 248px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f5f5f5;
}

.subpage-overview .inner {
  padding-inline: min(120px, 7.1428571429vw + 20px);
}

.subpage-overview p {
  line-height: 2.1875;
}

@media screen and (max-width: 834px) {
  .subpage .title-container {
    margin-top: 100px;
    padding-bottom: 24px;
  }
  .subpage-bgtitle {
    font-size: 80px;
  }
  .subpage-section-title {
    font-size: 28px;
  }
  .subpage-overview .inner {
    padding: 48px 20px;
  }
}
/* ===============================================
# 共通
=============================================== */
.inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}

.inside-inner {
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  padding-inline: 20px;
}

.title {
  font-size: 53px;
  font-weight: 700;
  line-height: 1.358490566;
}
@media screen and (max-width: 834px) {
  .title {
    font-size: 33px;
  }
}

.subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 834px) {
  .subtitle {
    font-size: 12px;
  }
}

.section-margin {
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .section-margin {
    margin-top: 100px;
  }
}

.section-title {
  font-size: 59px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 834px) {
  .section-title {
    font-size: 40px;
  }
}

.section-subtitle {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .section-subtitle {
    font-size: 14px;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn {
  display: block;
  width: 312px;
  padding: 28px;
  background-color: #fff;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
  position: relative;
}

.btn::after {
  content: "";
  display: block;
  width: 55px;
  height: 55px;
  background-image: url(../img/top/arrow@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 12px;
  translate: -10px -50%;
  -webkit-transition: translate 0.3s;
  transition: translate 0.3s;
}

.btn:hover {
  opacity: 1;
}

.btn:hover::after {
  translate: 0 -50%;
}

.sp-only {
  display: none;
}
@media screen and (max-width: 834px) {
  .sp-only {
    display: block;
  }
}

@media screen and (max-width: 834px) {
  .pc-only {
    display: none;
  }
}

.text {
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  line-height: 0.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .text {
    font-size: 14px;
    line-height: 1.857;
  }
}

/* ===============================================
# PRODUCT
=============================================== */

#products .subpage-overview .inner {
	padding-top: 95px;
	padding-bottom: 70px;
}
#products .subpage-overview .inner ul {
	display: flex;
	margin-top: 40px;
}
#products .subpage-overview .inner ul li {
	width: 48.72%;
	margin: 0 2.56% 0 0;
	line-height: 0;
}
#products .subpage-overview .inner ul li:nth-child(2n) {
	margin: 0;
}

#products .material-feature .inner .subpage-section-title {
	margin-bottom: 85px;
	
}
#products .material-feature .inner .container {
	padding: 0;
	margin-bottom: 110px;
}
#products .material-feature .inner .container .bule {
	color: #16636E;
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 20px;
}
#products .material-feature .inner .container .tablewrap {
	overflow: auto;
	margin: 40px 0 30px;
}
#products .material-feature .inner .container .tablewrap:last-child {
	margin: 0;
}
#products .material-feature .inner .container .tablewrap table {
	min-width: 570px;
	width: 100%;
	border: 1px solid #DDDDDD;
	border-collapse: collapse;
}
#products .material-feature .inner .container .tablewrap table th,
#products .material-feature .inner .container .tablewrap table td{
	border: 1px solid #DDDDDD;
	padding: 12px 26px;
	text-align: center;
}
#products .material-feature .inner .container .tablewrap table.min th,
#products .material-feature .inner .container .tablewrap table.min td{
	padding: 12px;
}
#products .material-feature .inner .container .tablewrap table th {
	color: #fff;
	background: #16636E;
	font-weight: 700;
	text-align: center;
	white-space: nowrap;
}
#products .material-feature .inner .container .tablewrap table td.left{
	text-align: left;
}
#products .material-feature .inner .container .right {
	text-align: right;
	margin-bottom: 15px;
	margin-top: -15px;
}
@media screen and (max-width: 834px) {
	#products .subpage-overview .inner {
		padding-top: 65px;
	}
	#products .subpage-overview .inner ul {
		display: block;
	}
	#products .subpage-overview .inner ul li {
		width: 100%;
		margin: 0 0 10px;
	}
	#products .subpage-overview .inner ul li:last-child {
		margin: 0;
	}
	#products .subpage-overview .inner ul li img {
		width: 100%;
		height: auto;
		object-fit: inherit;
	}
	
	#products .material-feature { 
		margin-top: 85px;
	}
	#products .material-feature .inner .subpage-section-title {
		margin-bottom: 45px;
	}
	#products .material-feature .inner .container {
		margin-bottom: 80px;
	}
	#products .material-feature .inner .container .bule {
		font-size: 20px;
	}
}

/* ===============================================
# RECURUIT
=============================================== */
#recruit .subpage-section-title {
	margin-bottom: 45px;
}
#recruit .subpage-section-title span {
	background: #fff;
	display: inline-block;
	padding-right: 20px;
	position: relative;
	z-index: 2;
}
#recruit .container ul {
	margin-bottom: 40px;
}
#recruit .container ul li {
	padding: 0 0 0 18px;
	position: relative;
	margin-bottom: 10px;
}
#recruit .container ul li:after {
	content: "";
	width: 12px;
	height: 12px;
	border-radius: 50%;
	position: absolute;
	top: 7px;
	left: 0;
	background: #16636E;
}
#recruit .container .blue {
	font-weight: 500;
	color: #16636E;
	margin-bottom: 8px;
}