@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

li {
  list-style-type: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

html {
  font-size: 62.5%;
}

body, * {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}

p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.machinery {
  background-color: #0A1A2F;
}

@media (max-width: 960px) {
  .machinery .machinery-layout {
    padding: 4rem 0 6rem;
  }
  .machinery .machinery-layout__nav-label {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
  .machinery .machinery-layout__nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.4rem;
  }
  .machinery .machinery-layout__nav-link {
    padding: 0.8rem 2.8rem 0.8rem 1.8rem;
    border-radius: 999px;
    border: 1px solid #D6D6D6;
    letter-spacing: 0.05em;
    text-transform: none;
    position: relative;
    color: #fff !important;
  }
  .machinery .machinery-layout__nav-link::before {
    display: none;
  }
  .machinery .machinery-layout__nav-link::after {
    content: "";
    position: absolute;
    right: 1.4rem;
    top: 50%;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
  }
  .machinery .machinery-layout__nav-link:hover {
    color: #F7FAFF;
    background: #0032AF;
    border-color: #0032AF;
  }
}
.machinery-list {
  width: 100%;
  margin: 6rem 0 0;
  padding: 0;
}
.machinery-list__row {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 4rem;
  padding: 3.2rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.6);
}
.machinery-list__row:last-child {
  border-bottom: 1px solid rgba(148, 163, 184, 0.6);
}
.machinery-list__term {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.machinery-list__desc {
  margin: 0;
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #e5e7eb;
}
.machinery-list__more {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: max-height 0.4s ease, opacity 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.machinery-list__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4.8rem auto 0;
  padding: 1.2rem 3.2rem;
  border-radius: 999px;
  border: 1px solid #9ca3af;
  background: transparent;
  color: #e5e7eb;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.machinery-list__toggle::after {
  content: "＋";
  font-size: 1.4rem;
}
.machinery-list.is-open .machinery-list__more {
  max-height: 2000px;
  opacity: 1;
}
.machinery-list.is-open .machinery-list__toggle::after {
  content: "－";
}

@media (max-width: 960px) {
  .machinery-list__row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .machinery-list__term {
    font-size: 1.4rem;
  }
  .machinery-list__desc {
    font-size: 1.4rem;
  }
}