@charset "UTF-8";
:root {
  --f13:clamp(0.75rem, 0.728rem + 0.099vw, 0.813rem);
  --f14:clamp(0.813rem, 0.790rem + 0.099vw, 0.875rem);
  --f16:clamp(0.875rem, 0.830rem + 0.199vw, 1rem);
  --f17:clamp(0.938rem, 0.886rem + 0.235vw, 1.063rem);
  --f20:clamp(1.063rem, 0.995rem + 0.298vw, 1.25rem);
  --f22:clamp(1.063rem, 0.951rem + 0.497vw, 1.375rem);
  --f24:clamp(1.313rem, 1.245rem + 0.298vw, 1.5rem);
  --f28:clamp(1.32rem, 1.311rem + 0.398vw, 1.65rem);
  --f32:clamp(1.5rem, 1.321rem + 0.795vw, 1.9rem);
  --f36:clamp(1.6rem, 1.236rem + 1.127vw, 2.25rem);
  --f40:clamp(1.7rem, 1.548rem + 1.502vw, 2.5rem);
  --f42:clamp(1.9rem, 1.597rem + 1.789vw, 2.625rem);
  --f48:clamp(2rem, 1.642rem + 1.59vw, 3rem);
  --f54:clamp(2.25rem, 1.847rem + 1.789vw, 3.375rem);
  --f64:clamp(2.625rem, 2.133rem + 2.187vw, 4rem);
  --f72:clamp(2.7rem, 2.263rem + 2.386vw, 4.5rem);
  --f106:clamp(3rem, 1.703rem + 5.765vw, 6.625rem);
  --f160:clamp(3.25rem, 0.873rem + 10.141vw, 10rem);
}

#global-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.5em 4.5em 0.5em 2em;
  z-index: 999;
}
@media screen and (max-width: 480px) {
  #global-header {
    padding: 0.5em 3.4em 0.5em 1em;
  }
}
#global-header .logo {
  transition: all ease 0.5s;
  width: 168px;
  margin: 8px 0;
}
@media screen and (max-width: 480px) {
  #global-header .logo {
    width: 140px;
    padding: 0.1em 0;
  }
}
#global-header .logo:hover {
  opacity: 0.5;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

.ab-icon:before {
  font-family: inherit;
}

html {
  scroll-behavior: smooth;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-size: var(--f17);
  font-family: "Noto Sans JP";
  color: #343434;
  font-weight: 300;
  background: #F8F8F6;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  line-height: 1.5;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: underline;
  color: #343434;
  text-decoration: none;
  transition: all ease 0.5s;
}

a:hover {
  opacity: 0.5;
}

img {
  max-width: 100%;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
     -moz-appearance: checkbox;
          appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
     -moz-appearance: radio;
          appearance: radio;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

#global-footer {
  background: #F8F8F6;
  padding-top: max(80px, 8vw);
}
#global-footer .cta-area {
  background: url(../images/cta-bg.webp) no-repeat center;
  background-size: cover;
  padding: max(60px, 8vw) 0;
}
#global-footer .cta-area .title, #global-footer .cta-area p, #global-footer .cta-area .btn {
  text-align: center;
  color: #fff;
}
#global-footer .cta-area p {
  text-align: left;
  margin: 1em auto;
  width: min(616px, 90%);
}
#global-footer .cta-area .btn {
  margin: 0 auto;
}
#global-footer .cta-area .btn::after {
  background: url(../images/arrow2.svg);
  background-size: contain;
}
#global-footer .footer-inner {
  padding: 80px 0 0 0;
}
#global-footer .footer-inner .logo {
  display: block;
  width: min(200px, 35vw);
  margin: 0 auto;
}
#global-footer .footer-inner .logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#global-footer .footer-inner .address {
  text-align: center;
  font-size: var(--f17);
  line-height: 1.4;
  margin: 1em 0;
}
#global-footer .footer-inner .address a {
  pointer-events: none;
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  #global-footer .footer-inner .address a {
    pointer-events: all;
    text-decoration: underline;
  }
}
#global-footer .footer-inner .g-navi {
  margin: 1.5em auto 4em auto;
}
#global-footer .footer-inner .g-navi .navi-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
#global-footer .footer-inner .g-navi li {
  margin-right: 2em;
}
#global-footer .footer-inner .g-navi li:last-child {
  margin-right: 0;
}
#global-footer p.copy_small {
  font-size: var(--f13);
  text-align: center;
  padding: 3em 0 2em 0;
}

.dw-header {
  position: fixed;
  z-index: 9999 !important;
  top: 16px;
  right: 1.7em;
}
@media screen and (max-width: 480px) {
  .dw-header {
    right: 0.7em;
  }
}

.hamburger {
  display: block;
  margin-left: auto;
  position: relative;
  z-index: 9997 !important;
  border: none;
  width: 28px;
  height: 28px;
}
.hamburger .hamburger__line {
  display: block;
  height: 2px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  background-color: #343434;
  transition: 0.4s;
  z-index: 99;
}

.hamburger.-active {
  transition: all ease 0.5s !important;
}

.hamburger.-active .hamburger__line {
  background-color: transparent;
}

.hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}

.hamburger__line:before,
.hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: #343434;
  transition: inherit;
  z-index: 99;
}

.hamburger__line:before {
  top: -9px;
}

.hamburger__line:after {
  top: 9px;
}

.header__nav-area {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9996 !important;
  height: 100vh;
  width: 100%;
  visibility: hidden;
  background-color: #F8F8F6;
  transition: all ease 0.7s;
  opacity: 0;
}

.header__nav-area.-active {
  visibility: visible;
  z-index: 999;
  opacity: 1;
}

.drawer-logo {
  width: 156px;
  margin: 0 0 1em 0;
}
.drawer-logo img {
  width: 100%;
  margin: 0 auto 16px auto;
  display: block;
}

.global-navigation {
  height: 100%;
}

.dw-wrap {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.dw-wrap .dw-img {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .dw-wrap .dw-img {
    display: none;
  }
}
.dw-wrap .dw-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dw-wrap .dw-contents {
  width: 50%;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 1024px) {
  .dw-wrap .dw-contents {
    width: 100%;
  }
}
.dw-wrap .dw-contents .contents-wrap {
  width: min(650px, 70%);
}
.dw-wrap .d-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 12px;
}
.dw-wrap .d-main:last-child {
  border-top: 1px solid #9C9C9C;
  padding-top: 1em;
  margin-top: 1em;
}
.dw-wrap .d-main:last-child a {
  color: #9C9C9C !important;
}
.dw-wrap .d-main .menu {
  display: flex;
}
.dw-wrap .d-main .menu a {
  font-size: var(--f17);
  line-height: 1.3;
  color: #2E2E2E;
  font-weight: 400;
  display: block;
  padding: 12px 0;
  width: auto;
}
@media screen and (max-width: 480px) {
  .dw-wrap .d-main .menu a {
    padding: 12px 0;
  }
}
.dw-wrap .d-main .menu a img {
  width: 100%;
  display: block;
}
.dw-wrap .dw-hover a {
  opacity: 1;
}
.dw-wrap .dw-hover a::before {
  content: "";
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  position: absolute;
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.5s;
}
@media screen and (max-width: 1024px) {
  .dw-wrap .dw-hover a::before {
    display: none;
  }
}
.dw-wrap .dw-hover a:hover {
  color: #9C9C9C;
}
.dw-wrap .dw-hover a:hover::before {
  visibility: visible !important;
  opacity: 1;
}
.dw-wrap .dw-hover li:nth-child(1) a::before {
  content: "";
  background: url(../images/dw-bg01.webp) no-repeat;
  background-size: cover;
}
.dw-wrap .dw-hover li:nth-child(2) a::before {
  content: "";
  background: url(../images/dw-bg02.webp) no-repeat;
  background-size: cover;
}
.dw-wrap .dw-hover li:nth-child(3) a::before {
  content: "";
  background: url(../images/dw-bg03.webp) no-repeat;
  background-size: cover;
}
.dw-wrap .dw-hover li:nth-child(4) a::before {
  content: "";
  background: url(../images/dw-bg04.webp) no-repeat;
  background-size: cover;
}
.dw-wrap .dw-hover li:nth-child(5) a::before {
  content: "";
  background: url(../images/dw-bg05.webp) no-repeat;
  background-size: cover;
}
.dw-wrap .dw-hover li:nth-child(6) a::before {
  content: "";
  background: url(../images/dw-bg06.webp) no-repeat;
  background-size: cover;
}
.dw-wrap .dw-hover li:nth-child(7) a::before {
  content: "";
  background: url(../images/dw-bg07.webp) no-repeat;
  background-size: cover;
}
.dw-wrap .dw-hover li:nth-child(8) a::before {
  content: "";
  background: url(../images/dw-bg08.webp) no-repeat;
  background-size: cover;
}

.___mt5 {
  margin-top: 4px;
}

.___mt10 {
  margin-top: 12px;
}

.___mt15 {
  margin-top: 16px;
}

.___mt20 {
  margin-top: clamp(10px, 2vw, 20px);
}

.___mt30 {
  margin-top: clamp(20px, 3vw, 30px);
}

.___mt40 {
  margin-top: clamp(25px, 4vw, 40px);
}

.___mt50 {
  margin-top: clamp(30px, 5vw, 50px);
}

.___mt60 {
  margin-top: clamp(35px, 6vw, 60px);
}

.___mt70 {
  margin-top: clamp(40px, 7vw, 70px);
}

.___mt80 {
  margin-top: clamp(45px, 8vw, 80px);
}

.___mt90 {
  margin-top: clamp(50px, 9vw, 90px);
}

.___mt100 {
  margin-top: clamp(55px, 10vw, 100px);
}

.___mt110 {
  margin-top: clamp(60px, 11vw, 110px);
}

.___mt120 {
  margin-top: clamp(65px, 11vw, 120px);
}

.___pb5 {
  padding-bottom: 4px;
}

.___pb10 {
  padding-bottom: 12px;
}

.___pb15 {
  padding-bottom: 16px;
}

.___pb20 {
  padding-bottom: clamp(10px, 2vw, 20px);
}

.___pb30 {
  padding-bottom: clamp(20px, 3vw, 30px);
}

.___pb40 {
  padding-bottom: clamp(25px, 4vw, 40px);
}

.___pb50 {
  padding-bottom: clamp(30px, 5vw, 50px);
}

.___pb60 {
  padding-bottom: clamp(35px, 6vw, 60px);
}

.___pb70 {
  padding-bottom: clamp(40px, 7vw, 70px);
}

.___pb80 {
  padding-bottom: clamp(45px, 8vw, 80px);
}

.___pb90 {
  padding-bottom: clamp(50px, 9vw, 90px);
}

.___pb100 {
  padding-bottom: clamp(55px, 10vw, 100px);
}

.___pb110 {
  padding-bottom: clamp(60px, 11vw, 110px);
}

.___pb120 {
  padding-bottom: clamp(65px, 11vw, 120px);
}

body {
  letter-spacing: 0.1em;
}

picture {
  display: block;
}

p a {
  display: inline-block;
  text-decoration: underline;
}

p + p {
  margin-top: 1.5rem;
}

a img {
  transition: 0.3s;
}

a:hover img {
  opacity: 0.8;
}

.sp_none {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp_none {
    display: inherit;
  }
}
.l-section {
  padding-bottom: clamp(4rem, 2.8645833333vw, 3.4375rem);
}

#wrap {
  overflow: hidden;
}

#pagetop {
  position: fixed;
  bottom: -70px;
  right: 1em;
  z-index: 1;
  transition: all ease 0.3s;
  display: block;
  width: 57px;
  height: 57px;
}
@media screen and (max-width: 480px) {
  #pagetop {
    width: 45px;
    height: 45px;
    right: 0.5em;
  }
}

.is-show {
  bottom: 1em !important;
}
@media screen and (max-width: 480px) {
  .is-show {
    bottom: 0.5em !important;
  }
}

.page-title-left .title {
  font-size: var(--f16);
  line-height: 1.4;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  .page-title-left .title {
    font-size: var(--f14);
  }
}
.page-title-left .title span {
  font-family: "Roboto";
  font-size: var(--f32);
  line-height: 1;
  letter-spacing: 0.001rem;
  font-weight: 600;
}

.btn {
  font-family: "Roboto";
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--16);
  display: block;
  transition: all ease 0.5s;
  font-weight: 400;
  display: flex;
  align-items: center;
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  .btn {
    font-size: var(--f14);
  }
}
.btn::after {
  content: "";
  background: url(../images/arrow.svg) no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
  display: block;
  margin-left: 8px;
  transition: all ease 0.5s;
}
@media screen and (max-width: 1024px) {
  .btn::after {
    width: 18px;
    height: 18px;
  }
}

.ly-width {
  width: min(1240px, 90%);
  margin: 0 auto;
}

.ly-pa {
  padding: max(80px, 8vw) 0 0 0;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .header-top {
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
  }
}

#subkey-visual {
  height: 430px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #subkey-visual {
    height: 320px;
  }
}
@media screen and (max-width: 480px) {
  #subkey-visual {
    height: 250px;
  }
}
#subkey-visual .key-txt {
  position: absolute;
  top: 3.5em;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 480px) {
  #subkey-visual .key-txt {
    top: 5em;
  }
}
#subkey-visual .key-txt .sub-txt {
  color: #fff;
  text-align: center;
  padding: 0.1em 0.3em 0.1em 0.7em;
  border: 1px solid #BBBBBB;
  margin: 1em auto 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.4;
}
#subkey-visual .key-txt .sub-txt br {
  display: none;
}
@media screen and (max-width: 480px) {
  #subkey-visual .key-txt .sub-txt {
    font-size: var(--f14);
    margin: 0.5em auto 0 auto;
  }
  #subkey-visual .key-txt .sub-txt br {
    display: block;
  }
}
#subkey-visual .subkey-title {
  font-size: var(--f20);
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  line-height: 1.2;
  color: #fff;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #subkey-visual .subkey-title {
    font-size: var(--f18);
  }
}
#subkey-visual .subkey-title span {
  font-size: var(--f54);
  font-weight: 600;
  font-family: "Roboto";
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #subkey-visual .subkey-title span {
    font-size: var(--f48);
  }
}

.pankuzu {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1em auto 0 auto;
}
@media screen and (max-width: 480px) {
  .pankuzu {
    margin: 0.3em auto 0 auto;
  }
}
.pankuzu li {
  padding-right: 2em;
  position: relative;
}
.pankuzu li::after {
  content: ">";
  font-size: var(--f14);
  color: #fff;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  right: 0.7em;
  top: 0;
  bottom: 0;
  margin: auto;
}
.pankuzu li:last-child {
  padding-right: 0;
}
.pankuzu li:last-child::after {
  display: none;
}
.pankuzu li a {
  font-size: var(--f14);
  font-family: "Roboto";
  font-weight: 400;
  color: #fff;
}

.key-service {
  background: url(../images/service/bg.webp) no-repeat center;
  background-size: cover;
}

.key-works {
  background: url(../images/works/bg.webp) no-repeat center;
  background-size: cover;
}

.key-history {
  background: url(../images/history/bg.webp) no-repeat center;
  background-size: cover;
}

.key-company {
  background: url(../images/company/bg.webp) no-repeat center;
  background-size: cover;
}

.key-factory {
  background: url(../images/factory/bg.webp) no-repeat center;
  background-size: cover;
}

.key-news {
  background: url(../images/news/bg.webp) no-repeat center;
  background-size: cover;
}

.key-sitemap {
  background: url(../images/sitemap/bg.webp) no-repeat center;
  background-size: cover;
}

.key-recruit {
  background: url(../images/recruit/bg.webp) no-repeat center;
  background-size: cover;
}

.key-contact {
  background: url(../images/contact/bg.webp) no-repeat center;
  background-size: cover;
}

.key-privacy {
  background: url(../images/privacy/bg.webp) no-repeat center;
  background-size: cover;
}

.info-list .info-item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .info-list .info-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5em 0;
  }
}
.info-list .info-item dt, .info-list .info-item dd {
  padding: 0.5em 0;
}
@media screen and (max-width: 768px) {
  .info-list .info-item dt, .info-list .info-item dd {
    padding: 0;
  }
}
.info-list .info-item dt {
  width: 180px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .info-list .info-item dt {
    width: 100%;
    font-weight: 600;
  }
}
.info-list .info-item dd {
  width: calc(100% - 180px);
}
.info-list .info-item dd a {
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  .info-list .info-item dd a {
    pointer-events: all;
    text-decoration: underline;
  }
}
.info-list .info-item dd .mail {
  pointer-events: all;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .info-list .info-item dd {
    width: 100%;
  }
}

/*---スクロール時遅れて表示、順番に表示---*/
.fadein {
  opacity: 0;
  transition: all 1.3s;
  transform: translate(0, 45px);
}

/*---TOP遅れて表示---*/
#post {
  opacity: 0;
}

.anchor {
  padding-top: 100px;
  margin-top: -100px !important;
}/*# sourceMappingURL=common.css.map */