@charset "UTF-8";
/*変数*/
/*color*/
/*font-size*/
/*font-family*/
/*----------------------------------------
--font weight--
IBM Plex Sans JP   400,500,600,700
Noto Sans JP   400,500,600,700
Josefin Sans   600
Lato   400,700,900  italic 400,700,900
Zen Antique Soft   400
------------------------------------------*/
/*line-height*/
/*------------------------ここから------------------------------*/
.wrapper {
  font-family: "Noto Sans JP", "メイリオ", "Yu Gothic", sans-serif;
  vertical-align: bottom;
  color: #333333;
  line-height: 1.6;
  box-sizing: border-box;
  overflow: hidden;
  font-size: clamp(14px, 0.83vw, 16px);
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #333333;
}

img {
  width: 100%;
  vertical-align: bottom;
}

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

.slide_r {
  transform: translateX(100%);
  opacity: 0;
}

.slide_l {
  transform: translateX(-100%);
  opacity: 0;
}

.slide {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.3s;
  transition: transform 0.4s ease-out, opacity 0.8s;
}

.fadeIn {
  opacity: 1;
  transition: 2s;
  transition-delay: 0.5s;
}

.fadeOut {
  opacity: 0;
}

.menu_hide {
  display: none;
}

.menu_show {
  display: block;
}

/*-----------------------写真用スライドアニメ-----------------------------*/
/* .imgSlideAnime {
    animation: slideAnime 0.8s ease;
}



@keyframes slideAnime {
    0% {
        transform: translateX(-100%);
    }

    80% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
} */
/*-----------------------Block Reveal Effects-----------------------------*/
.block-revealer__element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  pointer-events: none;
  opacity: 0;
}

/*---------------------------スマホ用------------------------------------*/
@media screen and (max-width: 520px) {
  .wrapper {
    overflow: hidden;
  }
}
/*変数*/
/*color*/
/*font-size*/
/*font-family*/
/*----------------------------------------
--font weight--
IBM Plex Sans JP   400,500,600,700
Noto Sans JP   400,500,600,700
Josefin Sans   600
Lato   400,700,900  italic 400,700,900
Zen Antique Soft   400
------------------------------------------*/
/*line-height*/
/*------------------------ここから------------------------------*/
#header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 2px #009143;
}
#header .logo {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: flex-end;
  width: clamp(200px, 15.625vw, 350px);
  padding-left: 2%;
}
#header .logo a:hover {
  opacity: 0.8;
  transition: all 0.3s;
}
#header .nav {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(4, 200px);
  grid-template-rows: 1fr;
}
#header .nav span {
  display: block;
}
#header .nav .en {
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 0.93vw, 18px);
  padding: 3% 0;
}
#header .nav .jp {
  font-size: clamp(10px, 0.68vw, 13px);
}
#header .nav a {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 5% 0;
}
#header .nav a::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: linear-gradient(90deg, rgb(14, 21, 75), rgb(103, 161, 172));
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.7;
  transform: scale(0, 1);
  transform-origin: left bottom;
  transition: transform 0.3s;
  z-index: -1;
  margin: auto;
}
#header .nav a:hover::after {
  transform: scale(1, 1);
  transition: transform 0.3s;
}
#header .nav a:hover {
  color: rgb(255, 255, 255);
}
#header .nav li {
  text-align: center;
  line-height: 1;
  width: 200px;
}
#header .drop_list {
  position: relative;
}
#header .drop_list:hover .has_child::after {
  transform: rotate(-135deg);
  transition: transform 0.3s;
}
#header .has_child {
  position: relative;
  background-color: rgb(255, 255, 255);
  z-index: 50;
}
#header .has_child::after {
  content: "";
  width: 5px;
  height: 5px;
  border-bottom: solid 2px #333333;
  border-right: solid 2px #333333;
  position: absolute;
  right: 5%;
  top: 40%;
  display: inline-block;
  transform: rotate(45deg);
  transition: transform 0.3s;
}
#header .inner {
  position: absolute;
  left: 0;
  top: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
  display: none;
}
#header .inner li {
  overflow: hidden;
}

h1 {
  width: 100%;
  text-align: center;
  padding: 13% 0;
  color: rgb(255, 255, 255);
  line-height: 1;
}
h1 span {
  display: block;
}
h1 span:nth-child(1) {
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  font-size: clamp(24px, 3.1vw, 60px);
}
h1 span:nth-child(2) {
  font-size: clamp(14px, 1.042vw, 20px);
  font-weight: 500;
}

/*---------------------------PC(小)用------------------------------------*/
@media screen and (max-width: 1200px) {
  #header {
    display: block;
    height: 70px;
    padding-bottom: 0.5%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgb(255, 255, 255);
    z-index: 30;
  }
  #header .logo {
    position: fixed;
    margin-top: 1%;
  }
  #header #menu_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 999;
    cursor: pointer;
    border: none;
  }
  #header #menu_icon.menu_active {
    border: solid 1px rgb(255, 255, 255);
  }
  #header #menu_icon.menu_active span {
    background-color: transparent;
  }
  #header #menu_icon.menu_active span::before {
    transform: rotate(40deg);
    background-color: rgb(255, 255, 255);
    bottom: 0;
    transition: transform 0.1s;
  }
  #header #menu_icon.menu_active span::after {
    transform: rotate(-40deg);
    background-color: rgb(255, 255, 255);
    top: 0;
    transition: transform 0.1s;
  }
  #header #menu_icon span,
  #header #menu_icon span::before,
  #header #menu_icon span::after {
    content: "";
    width: 25px;
    height: 3px;
    background-color: #333333;
    display: block;
    position: absolute;
    border-radius: 3px;
  }
  #header #menu_icon span::before {
    bottom: 8px;
    left: 0;
    transform: rotate(0deg);
    transition: transform 0.1s;
  }
  #header #menu_icon span::after {
    top: 8px;
    left: 0;
    transform: rotate(0deg);
    transition: transform 0.1s;
  }
  #header .nav {
    background-color: rgba(53, 73, 112, 0.9);
    color: rgb(255, 255, 255);
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 990;
    padding: 8% 0 5% 8%;
    width: 50%;
  }
  #header .nav .en {
    font-size: 16px;
    padding: initial;
  }
  #header .nav .jp {
    font-size: 12px;
  }
  #header .nav a {
    color: rgb(255, 255, 255);
    width: 100%;
    height: 100%;
    display: block;
    padding: 2% 0 2% 5%;
  }
  #header .nav a::after {
    visibility: hidden;
  }
  #header .nav a:hover {
    background-color: rgba(255, 255, 255, 0.5);
  }
  #header .nav a:active {
    background-color: rgba(255, 255, 255, 0.5);
  }
  #header .nav li {
    text-align: left;
    width: auto;
  }
  #header .nav span {
    display: inline-block;
    padding: 0 1%;
  }
  #header .has_child {
    background-color: transparent;
  }
  #header .has_child::after {
    display: none;
  }
  #header .inner {
    position: static;
    background-color: transparent;
    opacity: 1;
    color: rgb(255, 255, 255);
    visibility: visible;
    margin-left: 20%;
    border-left: solid 1px rgb(255, 255, 255);
  }
  #header .header_list::after {
    display: none;
  }
  h1 {
    margin-top: 70px;
  }
}
/*---------------------------タブレット用------------------------------------*/
@media screen and (max-width: 900px) {
  #header {
    height: 63px;
  }
  #header #menu_icon {
    top: 5px;
    width: 50px;
    height: 50px;
  }
  #header .nav {
    width: 100%;
  }
  #header .nav a {
    padding: 2% 0 2% 5%;
  }
  h1 {
    margin-top: 63px;
  }
}
/*---------------------------スマホ用------------------------------------*/
/*------------------------------------横向き----------------------*/
@media (orientation: landscape) and (max-width: 1000px) {
  #header .nav {
    width: 100%;
    padding: 0.5% 0;
  }
  #header .nav .en {
    padding: initial;
  }
  #header .nav a {
    padding: 0.6% 0 0.6% 5%;
  }
  #header .inner {
    margin-left: 10%;
  }
}
@media screen and (max-width: 520px) {
  #header {
    height: 56px;
  }
  #header .nav {
    width: 100%;
    padding-top: 30px;
  }
  h1 {
    padding: 30% 0;
    margin-top: 56px;
  }
  h1 span:nth-child(2) {
    font-weight: 400;
  }
}
/*変数*/
/*color*/
/*font-size*/
/*font-family*/
/*----------------------------------------
--font weight--
IBM Plex Sans JP   400,500,600,700
Noto Sans JP   400,500,600,700
Josefin Sans   600
Lato   400,700,900  italic 400,700,900
Zen Antique Soft   400
------------------------------------------*/
/*line-height*/
/*------------------------ここから------------------------------*/
footer {
  background-image: url(image/footer.jpg);
  background-color: transparent;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top -10px;
  color: rgb(255, 255, 255);
  padding: 5% 0 2% 8%;
  margin: 0;
}
footer a {
  color: rgb(255, 255, 255);
}
footer .logo {
  width: clamp(300px, 20.833vw, 500px);
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: flex-end;
}
footer .logo a {
  display: block;
  width: 100%;
  height: 100%;
}
footer .logo a:hover {
  opacity: 0.8;
  transition: all 0.3s;
}
footer .logo p:nth-child(2) {
  padding-top: 1%;
}
footer nav {
  margin: 3% 0;
}
footer .toggle {
  display: flex;
  align-items: center;
  padding: 1% 0;
}
footer .label {
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  padding-right: 2%;
  font-size: clamp(16px, 1.15vw, 22px);
}
footer .inner {
  display: flex;
  flex-wrap: wrap;
}
footer .inner li {
  width: 150px;
  text-align: center;
  padding: 0 2%;
  font-size: clamp(14px, 0.94vw, 18px);
}
footer .inner li.sp {
  display: none;
}
footer .inner li:not(:last-child) {
  position: relative;
}
footer .inner li:not(:last-child)::after {
  content: "|";
  position: absolute;
  top: 0;
  right: 0;
}
footer .inner a {
  display: inline-block;
  position: relative;
}
footer .inner a::after {
  content: "";
  height: 1px;
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgb(255, 255, 255);
  transform: scale(0, 1);
  transform-origin: left bottom;
}
footer .inner a:hover::after {
  transform: scale(1, 1);
  transition: transform 0.3s;
}
footer .info_wrapper {
  display: flex;
}
footer .sns {
  display: grid;
  grid-template-columns: repeat(2, 180px);
  grid-template-rows: repeat(2, 1fr);
  align-items: center;
  -moz-column-gap: 2%;
       column-gap: 2%;
  text-align: center;
  padding-top: 5%;
  padding-right: 5%;
  border-right: solid 1px #555;
}
footer .sns p:nth-child(1) {
  grid-column: 2 span;
  font-size: clamp(16px, 1.15vw, 22px);
}
footer .sns p:not(:first-child) {
  width: 100%;
}
footer .sns a {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 3% 0;
  border: solid 1px rgb(255, 255, 255);
  border-radius: 6px;
}
footer .sns a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transition: background-color 0.3s;
}
font-size footer .sns a:active {
  background-color: rgb(53, 73, 112);
}
footer .sns a .fa-brands,
footer .sns a .fa-solid {
  display: block;
  font-size: 1.5rem;
}
footer .sns a .fa-solid {
  font-size: 1rem;
  color: #C8C8C8;
}
footer .sns a span {
  padding-right: 6px;
  padding-left: 2px;
  display: inline-block;
}
footer .info {
  padding-left: 5%;
  margin-top: 2%;
}
footer .info li {
  padding: 3px 0;
}
footer .info li:nth-child(1) {
  font-size: clamp(14px, 0.94vw, 18px);
}
footer .copy {
  text-align: center;
  margin-top: 5%;
  font-size: clamp(10px, 0.73vw, 16px);
}

/*---------------------------PC(小)用------------------------------------*/
@media screen and (max-width: 1200px) {
  footer {
    padding: 5% 0 2% 5%;
  }
  footer .label {
    padding-right: 3%;
  }
  footer .inner li {
    padding: 0 1rem;
  }
}
/*---------------------------タブレット用------------------------------------*/
@media screen and (max-width: 900px) {
  footer {
    background-image: none;
    background-color: #000;
    padding: 5% 0 2% 0;
  }
  footer .logo {
    margin: auto;
  }
  footer nav {
    margin: 8% 2%;
  }
  footer .toggle {
    display: block;
  }
  footer .label {
    padding: 3% 0 2% 5%;
    border-bottom: solid 1px #333333;
    display: block;
    position: relative;
    cursor: pointer;
  }
  footer .label::before {
    content: "";
    display: inline-block;
    background-color: rgb(255, 255, 255);
    position: absolute;
    bottom: 50%;
    right: 5%;
    width: 15px;
    height: 3px;
    transform: rotate(0deg) scale(1);
    opacity: 1;
    transition: all 0.3s;
  }
  footer .label::after {
    content: "";
    display: inline-block;
    background-color: rgb(255, 255, 255);
    position: absolute;
    bottom: 50%;
    right: 5%;
    width: 15px;
    height: 3px;
    transform: rotate(90deg) scale(1);
    transition: all 0.3s;
  }
  footer .close_icon::before {
    transform: rotate(-90deg) scale(0);
    opacity: 0;
    transition: all 0.3s;
  }
  footer .close_icon::after {
    transform: rotate(180deg) scale(0.9);
    transition: all 0.3s;
  }
  footer .footer_inner {
    display: none;
  }
  footer .inner li.sp {
    display: block;
  }
  footer .inner li {
    margin: initial;
    padding: initial;
    width: auto;
    position: relative;
  }
  footer .inner li:not(:last-child)::after {
    content: "";
    display: block;
    width: 1.1vw;
    height: 1px;
    background-color: #8e8e8e;
    position: absolute;
    top: 55%;
    right: 20%;
    transform: rotate(45deg);
    transform-origin: bottom right;
  }
  footer .inner li::before {
    content: "";
    display: block;
    width: 6.67vw;
    height: 1px;
    background-color: #8e8e8e;
    position: absolute;
    top: 55%;
    right: 20%;
  }
  footer .inner li::after {
    content: "";
    display: block;
    width: 1.1vw;
    height: 1px;
    background-color: #8e8e8e;
    position: absolute;
    top: 55%;
    right: 20%;
    transform: rotate(45deg);
    transform-origin: bottom right;
  }
  footer .inner li:hover,
  footer .inner li:active {
    background-color: rgba(255, 255, 255, 0.3);
  }
  footer .inner a {
    padding: 2% 0 2% 15%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
  }
  footer .inner a::after {
    display: none;
  }
  footer .info_wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    margin-bottom: 10%;
  }
  footer .sns {
    display: flex;
    flex-flow: column;
    padding: initial;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  footer .sns p {
    margin: 2% 0;
  }
  footer .sns p:not(:first-child) {
    width: clamp(160px, 26vw, 220px);
  }
  footer .info {
    margin: 5%;
  }
}
/*---------------------------スマホ用------------------------------------*/
@media screen and (max-width: 520px) {
  footer .logo {
    width: 50%;
    margin: auto;
  }
  footer .sns {
    margin: auto;
  }
  footer .sns p:nth-child(1) {
    font-size: 14px;
  }
  footer .sns a {
    border: solid 1px #555;
  }
  footer .info {
    padding: initial;
  }
  footer .info li {
    padding: initial;
  }
  footer .info li:nth-child(1) {
    padding-bottom: 1%;
  }
}
/*変数*/
/*color*/
/*font-size*/
/*font-family*/
/*----------------------------------------
--font weight--
IBM Plex Sans JP   400,500,600,700
Noto Sans JP   400,500,600,700
Josefin Sans   600
Lato   400,700,900  italic 400,700,900
Zen Antique Soft   400
------------------------------------------*/
/*line-height*/
/*------------------------ここから------------------------------*/
* {
  box-sizing: border-box;
}

h1 {
  background-image: url(image/facility/facility.jpg);
  background-position: center;
  background-size: cover;
  width: 100%;
}

.message {
  width: clamp(860px, 55vw, 1200px);
  width: clamp(900px, 70vw, 1500px);
  background-image: url(image/facility/facility_3.jpg);
  background-size: cover;
  background-position: center;
  margin: 10% auto;
  position: relative;
  padding: 15% 0;
  min-height: 460px;
}
.message .inner {
  position: absolute;
  left: 2%;
  top: 0;
  background-color: rgba(255, 255, 255, 0.9);
  width: clamp(400px, 40%, 800px);
  padding: 4% 3%;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.message h2 {
  font-size: clamp(20px, 1.8vw, 34px);
  font-weight: 500;
  font-family: "IBM Plex Sans JP", "Noto Sans JP", sans-serif;
  margin: 6% 0;
  position: relative;
  line-height: 1.2;
}
.message h2::after {
  content: "";
  width: 15%;
  height: 1px;
  background-color: #333333;
  display: block;
  position: absolute;
  bottom: -30%;
  left: 0;
}
.message p {
  padding: 6% 0;
}
.message p span {
  display: block;
  padding: 2% 0;
}

h3 {
  width: 100%;
  text-align: center;
  font-size: 150%;
  color: rgb(255, 255, 255);
  padding: 5% 0;
  background-position: center;
  background-size: cover;
  font-weight: 500;
}

h4 {
  font-size: 3rem;
  padding: 0 3%;
  border-bottom: solid 0.1rem #333333;
  font-weight: 500;
}

h5 {
  background-color: #354970;
  color: rgb(255, 255, 255);
  font-weight: 400;
  text-align: center;
  padding: 1% 0;
}

.container {
  width: 60%;
  margin: 5% auto;
}

.box .inner,
.small_box .inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2% 0;
}

.box {
  margin: 5% auto;
}
.box h4 {
  position: relative;
}
.box h4::after {
  content: "";
  width: 50px;
  height: 50px;
  background-size: cover;
  display: inline-block;
  position: absolute;
  top: 25%;
  right: 1rem;
}
.box h5 {
  width: 100%;
}
.box .box_r {
  width: 50%;
  padding: 2% 5% 3% 5%;
}
.box .box_r > p {
  padding: 2% 0;
}
.box .box_r > ul {
  margin: 5% auto 0 auto;
  border: solid 1px #354970;
  width: 90%;
}
.box .box_r > ul p {
  text-align: center;
  padding: 2% 0;
  font-size: 14px;
}

/*------------------レーザー---------------*/
#laser h3 {
  background-image: url(image/facility/laser.jpg);
}
#laser h4::after {
  background-image: url(image/facility/laser-icon.png);
}
#laser ul li p > span {
  display: inline-block;
  margin: 0 3%;
}

/*------------------C1--------------------*/
#c1 h3 {
  background-image: url(image/facility/c1.jpg);
}
#c1 h4::before {
  content: "";
  background-image: url(image/facility/laser-icon.png);
  width: 50px;
  height: 50px;
  background-size: cover;
  display: inline-block;
  position: absolute;
  top: 25%;
  right: 5rem;
}
#c1 h4::after {
  background-image: url(image/facility/punch-icon.png);
}

/*------------------曲げ--------------------*/
#bend h3 {
  background-image: url(image/facility/bend.jpg);
}
#bend h4::after {
  background-image: url(image/facility/bend-icon.png);
}

.small_box {
  display: flex;
  justify-content: space-between;
}
.small_box > div {
  width: 48%;
}
.small_box h4 {
  position: relative;
}
.small_box h4::after {
  content: "";
  width: 50px;
  height: 50px;
  background-image: url(image/facility/bend-icon.png);
  background-size: cover;
  display: inline-block;
  position: absolute;
  top: 25%;
  right: 1rem;
}
.small_box ul {
  width: 50%;
  border: solid 1px #354970;
}
.small_box ul p {
  text-align: center;
  font-size: 14px;
  padding: 2% 0;
}

/*------------------窒素発生装置--------------------*/
#psa h3 {
  background-image: url(image/facility/psa.jpg);
}
#psa .box_r {
  width: 43%;
}
#psa .box_r > p {
  margin-bottom: 5%;
}

/*--------------------------------設備一覧------------------------------*/
#equipment_list h2 {
  width: 44vw;
  text-align: right;
  line-height: 1;
  position: relative;
  top: 100px;
}
#equipment_list h2 span {
  display: block;
}
#equipment_list h2 span:nth-child(1) {
  font-family: "Lato", "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(38px, 3.1vw, 60px);
  border-bottom: solid 1px #009143;
}
#equipment_list h2 span:nth-child(2) {
  font-size: clamp(15px, 1.25vw, 24px);
  font-weight: 500;
  padding: 0.5% 0 0 0;
}
#equipment_list .clm_2 {
  grid-column: 2 span;
}
#equipment_list .clm_3 {
  grid-column: 3 span;
}
#equipment_list .clm_8 {
  grid-column: 8 span;
}
#equipment_list .row_2 {
  grid-row: 2 span;
  display: grid;
  align-items: center;
}
#equipment_list .row_4 {
  grid-row: 4 span;
  display: grid;
  align-items: center;
}
#equipment_list .table {
  display: grid;
  grid-template-columns: 260px 160px 100px 600px 60px;
  grid-template-rows: 40px auto;
  margin: 10% auto;
  border-top: solid 1px #969696;
  border-left: solid 1px #969696;
  border-bottom: solid 1px #969696;
  width: 1180px;
}
#equipment_list .table p:not(:last-child) {
  border-bottom: solid 1px #C8C8C8;
}
#equipment_list .table p:nth-child(2n) {
  background-color: #eaeef1;
}
#equipment_list .table p span {
  display: flex;
  align-items: center;
  padding: 0 9px;
  margin: 0 -9px;
  height: 100%;
}
#equipment_list .table p span:not(:last-child) {
  border-bottom: dashed 1px #969696;
}
#equipment_list .type p,
#equipment_list .name p,
#equipment_list .ability p {
  padding: 0 10px;
}
#equipment_list .title {
  font-weight: 700;
  grid-area: 1/1/2/6;
  display: contents;
  text-align: center;
  font-size: 1rem;
}
#equipment_list .title p {
  background-color: #C8C8C8;
  border-right: solid 1px #969696;
  border-bottom: solid 1px #969696;
  display: flex;
  justify-content: center;
  align-items: center;
}
#equipment_list .title p:not(:last-child) {
  border-bottom: solid 1px #969696;
}
#equipment_list .title p:nth-child(2n) {
  background-color: #C8C8C8;
}
#equipment_list .type,
#equipment_list .name,
#equipment_list .ability,
#equipment_list .maker,
#equipment_list .number {
  border-right: solid 1px #969696;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(30, 36px);
}
#equipment_list .type {
  grid-area: 2/1/3/2;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(30, 36px);
}
#equipment_list .type p:not(.row_2, .row_4) {
  display: flex;
  flex-flow: column;
  justify-content: center;
}
#equipment_list .name {
  grid-area: 2/2/3/3;
}
#equipment_list .name p:not(.row_2, .row_4) {
  display: flex;
  flex-flow: column;
  justify-content: center;
}
#equipment_list .maker {
  grid-area: 2/3/3/4;
  text-align: center;
}
#equipment_list .maker span {
  justify-content: center;
}
#equipment_list .maker p:not(.row_2, .row_4) {
  display: flex;
  flex-flow: column;
  justify-content: center;
}
#equipment_list .ability {
  grid-area: 2/4/3/5;
}
#equipment_list .ability p:not(.row_2, .row_4) {
  display: flex;
  flex-flow: column;
  justify-content: center;
}
#equipment_list .number {
  grid-area: 2/5/3/6;
  text-align: center;
}
#equipment_list .number .row_2 span {
  padding: initial;
  margin: initial;
  justify-content: center;
}
#equipment_list .number p:not(.row_2, .row_4) {
  display: flex;
  flex-flow: column;
  justify-content: center;
}

/*----------------------------PC(小)用-----------------------------------
----------------------------------------------------------------------*/
@media screen and (max-width: 1200px) {
  h2 {
    font-size: 110%;
  }
  h4 {
    font-size: 220%;
  }
  .container {
    width: 90%;
    margin: 0 auto;
  }
  .box h4::after {
    width: 30px;
    height: 30px;
    top: 30%;
  }
  .box .box_r {
    padding: 1% 5%;
  }
  .box .box_r > ul {
    width: 100%;
  }
  .box .box_r > ul p {
    padding: initial;
  }
  #c1 h4::before {
    width: 30px;
    height: 30px;
    top: 30%;
    right: 3.5rem;
  }
  .small_box h4::after {
    width: 30px;
    height: 30px;
    top: 30%;
  }
  .small_box ul {
    width: 70%;
  }
  #equipment_list h2 {
    width: 65vw;
  }
  #equipment_list .table {
    grid-template-columns: repeat(5, auto);
    margin: 15% auto 10% auto;
    width: 96vw;
  }
  #equipment_list .type,
  #equipment_list .name,
  #equipment_list .ability,
  #equipment_list .maker,
  #equipment_list .number {
    grid-template-rows: repeat(30, 1fr);
  }
}
/*-----------------------------タブレット用----------------------------------
---------------------------------------------------------------------------*/
@media screen and (max-width: 900px) {
  .message {
    width: 92%;
    min-height: 400px;
  }
  .box .box_r {
    width: 100%;
    padding: 0 2%;
  }
  #equipment_list .table_wrapper {
    overflow: auto;
    white-space: nowrap;
    margin: 25% 2% 20% 2%;
  }
  #equipment_list .table {
    grid-template-columns: 160px 119px 62px 299px 30px;
    grid-template-rows: 30px auto;
    margin: 0 auto 2% auto;
    font-size: 12px;
    width: 670px;
    white-space: normal;
  }
  #equipment_list .title {
    font-size: 14px;
  }
  #equipment_list ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  #equipment_list ::-webkit-scrollbar-track {
    background-color: #dadada;
    border-radius: 3px;
  }
  #equipment_list ::-webkit-scrollbar-thumb {
    background-image: linear-gradient(90deg, rgba(99, 113, 174, 0.5), rgba(85, 184, 177, 0.5));
    border-radius: 3px;
  }
}
/*-----------------------------スマホ用----------------------------------
----------------------------------------------------------------------*/
@media screen and (max-width: 520px) {
  h1 {
    background-image: url(image/facility/facility_sp.jpg);
  }
  .message {
    width: 96%;
    padding: 20% 0 3% 0;
    min-height: 150px;
  }
  .message .inner {
    width: 94%;
    padding: 0 3%;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(255, 255, 255);
  }
  .message h2 {
    text-align: center;
    font-size: 16px;
  }
  .message h2::after {
    left: 50%;
    bottom: -100%;
    transform: translateX(-50%);
  }
  h3 {
    padding: 10% 0;
  }
  h4 {
    width: 94%;
    border: none;
    text-shadow: rgb(255, 255, 255) 3px 1px;
  }
  .container {
    padding: 8% 0;
  }
  main section:not(.message) {
    background-color: #EDEDED;
  }
  .box .inner,
  .small_box .inner {
    display: block;
    padding: initial;
    margin: 0 auto;
  }
  .box {
    margin: 10% auto 0 auto;
    padding: 0 2% 2% 2%;
    background-color: rgb(255, 255, 255);
    position: relative;
    border-radius: 1%;
    border: solid 1px #C8C8C8;
  }
  .box h4 {
    position: absolute;
    top: -2rem;
    left: 0%;
  }
  .box h4::after {
    width: 20px;
    height: 20px;
    position: static;
    display: inline-block;
    margin: 0 1%;
  }
  .box .box_r {
    width: 100%;
    padding: initial;
  }
  .box .box_r > ul {
    margin-top: 1%;
  }
  #laser {
    margin-top: 300px;
  }
  #laser h3 {
    background-position: 6% 0;
  }
  #laser .container .box:nth-child(2) .inner > p {
    width: 90%;
    margin: 0 auto;
    padding-top: 3%;
  }
  #c1 h3 {
    background-position: 90% 0;
  }
  #c1 h4 {
    display: flex;
    align-items: center;
  }
  #c1 h4::before {
    width: 20px;
    height: 20px;
    display: inline-block;
    position: static;
    margin-top: 3%;
    margin-left: 1%;
    order: 1;
  }
  #c1 h4::after {
    margin-top: 3%;
    order: 2;
  }
  #c1 .inner > p {
    width: 90%;
    margin: 0 auto;
    padding-top: 5%;
  }
  #bend h3 {
    background-position: 6% 0;
  }
  #bend .container .box:nth-child(3) .inner > p {
    padding-top: 5%;
  }
  .small_box {
    margin-top: 10%;
  }
  .small_box > div {
    position: relative;
    background-color: rgb(255, 255, 255);
    border-radius: 6px;
    width: 44%;
    padding: 0 2% 2% 2%;
    border: solid 1px #C8C8C8;
  }
  .small_box > div:nth-child(1) .inner > p {
    width: 90%;
    margin: 5% 0 1% 10%;
  }
  .small_box > div:nth-child(2) .inner > p {
    width: 90%;
    margin: 5% auto 1% auto;
  }
  .small_box h4 {
    position: absolute;
    top: -2rem;
    left: 0;
  }
  .small_box h4::after {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin: 0 2%;
    position: static;
  }
  .small_box ul {
    width: 100%;
  }
  #psa {
    padding: 0 0 10% 0;
  }
  #psa h3 {
    background-position: 95% 0;
  }
  #psa .inner > p {
    width: 60%;
    margin: 0 auto;
    padding-top: 5%;
  }
  #psa .box_r {
    width: 100%;
    padding: initial;
  }
  #equipment_list {
    background-color: rgb(255, 255, 255);
  }
  #equipment_list h2 {
    position: static;
    width: 100%;
    text-shadow: 0 0 1px #C8C8C8;
    text-align: center;
    color: rgb(255, 255, 255);
    padding: 30% 0;
    background-image: url(image/facility/facility_sp2.jpg);
    background-size: cover;
    top: 0;
  }
  #equipment_list h2 span {
    padding: 1% 0;
  }
  #equipment_list h2 span:nth-child(1) {
    font-size: 225%;
    border-bottom: none;
  }
  #equipment_list h2 span:nth-child(2) {
    font-size: 14px;
    border-top: solid 1px rgb(255, 255, 255);
    display: inline-block;
    padding: 1% 0 0 0;
  }
  #equipment_list .table_wrapper {
    height: 500px;
    margin: 15% 2%;
  }
  #equipment_list .table {
    border-top: none;
    margin: 0 1% 1% 0;
  }
  #equipment_list .title p {
    position: sticky;
    top: 0;
    left: 0;
    border-top: solid 1px #969696;
    outline: solid 1px rgb(255, 255, 255);
    outline-offset: -2px;
  }
}/*# sourceMappingURL=facility.css.map */