@charset "UTF-8";
html, body {
  font-size: 62.5%;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 900;
  font-style: normal;
}
a {
  transition: 0.3s;
}
.c-sp {
  display: none;
}
/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}
/* fadeLeft */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeLeftTrigger {
  opacity: 0;
}
/* fadeRight */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeRightTrigger {
  opacity: 0;
}
/* Delay */
.delay-1 {
  animation-delay: 0.3s;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}
@media screen and (max-width:) {
  .c-sp {
    display: block;
  }
}
header {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(22, 73, 74, 0.6);
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  height: 18rem;
  z-index: 9998;
}
header h1 {
  display: inline-block;
}
header h1 img {
  width: 9.8vw;
}
header h2 {
  display: flex;
  font-size: 3vw;
  font-family: zen-old-mincho, sans-serif;
  font-weight: 700;
  font-style: normal;
  flex-direction: column;
  text-align: center;
  color: #fff;
}
header h2 span {
  font-size: 4vw;
}
.head-txt {
  position: absolute;
  top: max(2vw, 2rem);
  right: 11vw;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4vw;
}
.head-txt li:nth-of-type(1) {
  font-size: max(1vw, 1.3rem);
}
.head-txt li:nth-of-type(2) {
  font-size: max(2vw, 2.5rem);
  position: relative;
}
.head-txt li:nth-of-type(2)::after {
  position: absolute;
  content: "";
  background: url(../images/icon-h-tel.png) no-repeat;
  width: max(1.9vw, 2rem);
  height: max(1.7vw, 1.9rem);
  background-size: max(1.9vw, 2rem);
  top: 57%;
  left: -2.5vw;
  transform: translateY(-50%);
}
/* Navigation */
.head-nav {
  font-size: max(1vw, 1.4rem);
  color: #fff;
  line-height: 1.3;
  display: inline-block;
  position: absolute;
  right: 5vw;
  top: max(3vw, 4rem);
}
.head-nav-menu {
  display: flex;
  gap: 3vw;
  align-items: baseline;
}
.head-nav-menu li {
  text-align: center;
}
.head-nav-menu li:last-child {
  display: flex;
  align-items: center;
}
.head-nav-menu li a {
  position: relative;
  padding: 1rem 0;
}
.head-nav-menu > li:not(:last-child) a::before {
  position: absolute;
  content: "";
  width: 2rem;
  height: 3px;
  background-color: #fff;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: 0.3s;
}
.head-nav-menu li a:hover::before {
  opacity: 1;
}
.head-nav-menu li a img {
  width: max(3vw, 4rem);
}
/* Toggle */
.nav-toggle {
  display: none;
}
.sub-nav {
  display: none;
}
.sp-on {
  height: 100%;
  overflow: hidden;
}
/* Floating */
.fix-nav {
  position: fixed;
  right: 3vw;
  bottom: 3vw;
  z-index: 1000;
  opacity: 0;
  transition: 0.5s;
}
.active {
  opacity: 1;
}
/* footer */
.f-box {
  padding: 3vw 0;
  background: url(../images/bg-footer.png) no-repeat center / cover;
  display: flex;
  color: #16494a;
}
.f-box-l {
  width: 35%;
  padding: 0 5vw 0;
}
.f-box-r {
  width: 65%;
  display: flex;
  align-items: center;
  padding: 0 0 0 5vw;
}
.f-box-r img {
  width: 3vw;
  height: 3vw;
}
.f-box-l p {
  font-size: max(1vw, 1.4rem);
  margin: 0 0 1vw;
  line-height: 1.5;
}
.f-box-l h3 {
  font-size: 2vw;
  margin: 0 0 0 2vw;
}
.f-box-l h3 a {
  position: relative;
  padding: 0 0 0 2.5vw;
}
.f-box-l h3 a::after {
  position: absolute;
  content: "";
  background: url(../images/icon-f-tel.png) no-repeat;
  width: 1.9vw;
  height: 1.6vw;
  background-size: 1.9vw;
  left: 0;
  top: 53%;
  transform: translateY(-50%);
}
.f-logo {
  display: flex;
  align-items: center;
  gap: 1vw;
  margin: 0 0 1vw 2vw;
  width: 70%;
}
.f-logo li {
  width: 50%;
}
.f-logo li img {
  width: 98%;
}
.f-logo li h2 {
  font-size: 2vw;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.f-logo li h2 span {
  font-size: 2.7vw;
}
.f-nav {
  font-size: max(1vw, 1.4rem);
  display: flex;
  flex-wrap: wrap;
  width: 60rem;
  max-width: 70%;
  gap: 1vw 0;
}
.f-nav li {
  width: 33%;
}
.copy {
  background: #16494a;
  color: #fff;
  font-size: max(0.9vw, 1.2rem);
  text-align: center;
  line-height: 4vw;
}
/* Map */
footer iframe {
  width: 100%;
  min-width: initial;
  height: 48rem;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 896px) {
  html, body {
    font-size: 62.5%;
    font-family: zen-old-mincho, sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  a {
    transition: 0.3s;
  }
  .c-sp {
    display: none;
  }
  /* fadeUp */
  .fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes fadeUpAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .fadeUpTrigger {
    opacity: 0;
  }
  /* fadeLeft */
  .fadeLeft {
    animation-name: fadeLeftAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes fadeLeftAnime {
    from {
      opacity: 0;
      transform: translateX(-100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .fadeLeftTrigger {
    opacity: 0;
  }
  /* fadeRight */
  .fadeRight {
    animation-name: fadeRightAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes fadeRightAnime {
    from {
      opacity: 0;
      transform: translateX(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .fadeRightTrigger {
    opacity: 0;
  }
  /* Delay */
  .delay-1 {
    animation-delay: 0.3s;
  }
  @keyframes fadeUpAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .fadeUpTrigger {
    opacity: 0;
  }
  .c-sp {
    display: block;
  }
  header {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(22, 73, 74, 0.6);
    width: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 8rem;
    z-index: 9998;
  }
  header h1 {
    display: inline-block;
  }
  header h1 img {
    width: 7rem;
  }
  header h2 {
    display: flex;
    font-size: 2.2rem;
    font-family: zen-old-mincho, sans-serif;
    font-weight: 700;
    font-style: normal;
    flex-direction: column;
    text-align: center;
    color: #fff;
  }
  header h2 span {
    font-size: 3rem;
  }
  .head-txt {
    display: none;
  }
  /* Navigation */
  .head-nav {
    display: none;
  }
  /* Toggle */
  .nav-toggle {
    width: 8rem;
    height: 8rem;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999;
    display: block;
  }
  .nav-toggle span {
    position: absolute;
    font-size: 0.9em;
    color: #fff;
    bottom: 5px;
    left: 13px;
  }
  .nav-toggle ul {
    display: flex;
  }
  .nav-toggle ul li {
    position: relative;
    width: 100%;
  }
  .nav-toggle ul li span {
    display: inline-block;
    position: absolute;
    height: 2px;
    background: #fff;
    width: 50%;
    left: 2rem;
    transition: all 0.4s;
  }
  .nav-toggle ul li span:nth-child(1) {
    top: 2.5rem;
  }
  .nav-toggle ul li span:nth-child(2) {
    top: 4rem;
  }
  .nav-toggle ul li span:nth-child(3) {
    top: 5.5rem;
  }
  .sp-active span:nth-child(1) {
    transform: translateY(1.5rem) rotate(-45deg);
  }
  .sp-active span:nth-child(2) {
    opacity: 0;
  }
  .sp-active span:nth-child(3) {
    transform: translateY(-1.5rem) rotate(45deg);
  }
  .head-l-sp {
    width: 50px;
    height: 8rem;
  }
  .sub-nav {
    background: rgba(0, 0, 0, 0.9);
    width: 100vw;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    opacity: 0;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    visibility: hidden;
  }
  .sub-disp {
    opacity: 1;
    visibility: visible;
  }
  .sp-menu {
    width: 80%;
    margin: auto;
    font-size: 1.8rem;
    font-weight: 500;
    font-style: normal;
    color: #fff;
  }
  .sp-menu li {
    width: 100%;
    text-align: center;
    margin: 0 0 5px;
  }
  .sp-menu li img {
    width: 5rem;
  }
  .sp-menu li a {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  .sp-menu li a span {
    position: relative;
    color: #82000a;
    font-family: "Book Antiqua", sans-serif;
  }
  .sp-on {
    height: 100%;
    overflow: hidden;
  }
  /* Floating */
  .fix-nav {
    position: fixed;
    right: 3vw;
    bottom: 3vw;
    z-index: 1000;
    opacity: 0;
    transition: 0.5s;
  }
  .active {
    opacity: 1;
  }
  /* footer */
  .f-box {
    padding: 5rem 0;
    background: url(../images/bg-footer.png) no-repeat center / cover;
    display: flex;
    color: #16494a;
    flex-direction: column;
  }
  .f-box-l {
    width: 35rem;
    padding: 0;
    margin: auto;
  }
  .f-box-r {
    width: 35rem;
    display: flex;
    align-items: center;
    padding: 0;
    flex-direction: column;
    gap: 4rem;
    margin: auto;
  }
  .f-box-r img {
    width: 5rem;
    height: 5rem;
  }
  .f-box-l p {
    font-size: 1.5rem;
    margin: 0 0 3rem;
    line-height: 1.5;
    text-align: center;
  }
  .f-box-l h3 {
    font-size: 3.5rem;
    margin: 0 auto 3rem;
    width: 30rem;
    max-width: 90%;
  }
  .f-box-l h3 a {
    position: relative;
    padding: 0 0 0 4rem;
  }
  .f-box-l h3 a::after {
    position: absolute;
    content: "";
    background: url(../images/icon-f-tel.png) no-repeat;
    width: 3rem;
    height: 3rem;
    background-size: 3rem;
    left: 0;
    top: 58%;
    transform: translateY(-50%);
  }
  .f-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 auto 3rem;
    width: 30rem;
  }
  .f-logo li {
    width: 50%;
  }
  .f-logo li img {
    width: 98%;
  }
  .f-logo li h2 {
    font-size: 3rem;
    display: flex;
    flex-direction: column;
    white-space: nowrap;
  }
  .f-logo li h2 span {
    font-size: 4rem;
  }
  .f-nav {
    font-size: max(1vw, 1.5rem);
    display: flex;
    flex-wrap: wrap;
    width: 40rem;
    max-width: 100%;
    gap: 2rem 0;
  }
  .f-nav li {
    width: 33%;
    text-align: center;
  }
  .copy {
    background: #16494a;
    color: #fff;
    font-size: 1.3rem;
    text-align: center;
    line-height: 6rem;
  }
  /* Map */
  footer iframe {
    width: 100%;
    min-width: initial;
    height: 40rem;
    aspect-ratio: 16/9;
  }
}
/*------------------------------------------------------------

下層ページ

-----------------------------------------------------------*/
.h2_ttl {
  text-align: center;
  font-size: max(3.2vw, 4rem);
  color: #FFFFFF;
  padding: 20vw 0 12vw;
  background: url("../images/h2_ttl.png") no-repeat center;
  background-size: cover;
}
.h3_ttl {
  font-size: max(2.6vw, 3rem);
  margin: 0 auto 3vw;
  text-align: center;
}
.container {
  width: calc(1400px + 6%);
  max-width: 90%;
  margin: 0 auto;
  padding: 4vw 3% 2vw;
}
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.img {
  width: 48%;
  display: flex;
  align-items: center;
}
.txt {
  width: 48%;
}
.txt p {
  font-size: max(1vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
.manufacturing .img {
  width: 30%;
}
.manufacturing .txt {
  width: 62%;
}
.img img {
  max-width: 100%;
}
.h4_ttl {
  font-size: max(1.4vw, 1.8rem);
  margin-bottom: 2vw;
  padding-bottom: 2vw;
  border-bottom: 1px solid #333333;
}
.t16 {
  font-size: max(1vw, 1.4rem);
  font-weight: 400;
  margin-bottom: 2vw;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
.tc {
  text-align: center;
}
.wrap {
  margin-bottom: 3vw;
}
.sub_ttl {
  text-align: center;
  font-size: max(1.4vw, 1.8rem);
  margin-bottom: 3vw;
}
.list_wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.list_box_l {
  width: calc(48% + 4vw);
  padding-left: 10rem;
}
.list_box_r {
  width: calc(48% - 5vw);
  padding-left: 5vw;
}
.list_box_l li, .list_box_r li {
  font-size: max(1vw, 1.4rem);
  line-height: 1.8;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  .list_box_l {
    width: 100%;
    padding-left: 0;
  }
  .list_box_r {
    width: 100%;
    padding-left: 0;
  }
    main .h2_ttl {
  padding: 40vw 0 23vw;
}
    .manufacturing .img {
  width: 100%;
}
    .manufacturing .txt {
  width: 100%;
}
    .wrap .list_img_box
{
    width: calc(100% / 2 - 2vw);
    margin-bottom: 2vw;
}
}
.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
@media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
  }
}
.Form-Item {

  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {

}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #d04444;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #004aad;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
    text-align: center;
}
@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}
.list_img
{
    gap: 2vw;
}
.list_img_box
{
    width: calc(100% / 4 - 2vw);
    margin-bottom: 2vw;
}
.list_img_box img
{
    max-width: 100%;
}