@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Hina+Mincho&family=M+PLUS+2:wght@100..900&display=swap");
/* ----------------------------------------------------------
 media query
---------------------------------------------------------- */
/* ----------------------------------------------------------
 color
---------------------------------------------------------- */
/* ----------------------------------------------------------
 shadow
---------------------------------------------------------- */
/* ----------------------------------------------------------
 font size
---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
}

/* ----------------------------------------------------------
 base css
---------------------------------------------------------- */
.offnone {
  display: none !important;
}

/* body
--------------------------------------- */
* {
  box-sizing: border-box;
  transition: 0.3s;
  font-feature-settings: "palt";
  line-height: 1.75em;
}

html {
  scroll-behavior: smooth;
  font-family: "M PLUS 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(18px, 0.4vw + 12.54px, 22px);
  line-height: 1.75em;
}
@media screen and (max-width: 743px) {
  html {
    font-size: 16px;
  }
}

body {
  overflow-x: hidden;
  color: #231815;
  background-color: #ffffff;
  isolation: isolate;
}
@media print, screen and (min-width: 744px) {
  body {
    min-width: 1100px;
  }
}
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.wrapper {
  overflow-x: hidden;
}

textarea {
  resize: vertical;
}

#cookie-notice {
  z-index: 1000 !important;
}

/* layout
--------------------------------------- */
.wrap {
  margin: 0 auto;
  width: 85%;
}
@media print, screen and (min-width: 744px) {
  .wrap {
    width: 50rem;
    max-width: 75rem;
    margin: 2rem auto;
  }
}

body:not(.home) main {
  visibility: hidden;
  animation: fadeUp 0.6s ease-out forwards;
}

@keyframes fadeUp {
  from {
    visibility: hidden;
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}
/* responsive
--------------------------------------- */
@media print, screen and (min-width: 744px) {
  .sp {
    display: none !important;
  }
  main {
    padding-bottom: 2rem;
  }
}
@media screen and (max-width: 743px) {
  .pc {
    display: none !important;
  }
  main {
    overflow-x: hidden;
    padding-top: 60px;
  }
}
/* GTranslate
--------------------------------------- */
main {
  position: relative;
}

.translate {
  position: absolute;
  z-index: 1;
  top: 1rem;
  right: 2rem;
}
@media screen and (max-width: 743px) {
  .translate {
    top: calc(60px + 1rem);
    right: 1rem;
    z-index: 10;
  }
}

.gt_float_switcher {
  font-size: 16px !important;
}
@media screen and (max-width: 743px) {
  .gt_float_switcher {
    font-size: 14px !important;
  }
}

.gt_float_switcher .gt-selected .gt-current-lang {
  padding: 6px 8px !important;
}

/* img
--------------------------------------- */
img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* font size
--------------------------------------- */
p {
  font-size: 1rem;
  line-height: 1.75em;
}

/* ブロックエディタ用 */
.has-xs-font-size {
  font-size: 0.75rem;
}

.has-sm-font-size {
  font-size: 0.9rem;
}

.has-base-font-size {
  font-size: 1rem;
}

.has-lg-font-size {
  font-size: 1.25rem;
}

.has-xl-font-size {
  font-size: 1.75rem;
}

strong,
b {
  font-weight: 500;
}

/* button
--------------------------------------- */
.wp-block-buttons {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  margin: 1rem auto !important;
}

.wp-block-button__link {
  padding: 0.5rem 2rem !important;
  color: #ffffff !important;
  background-color: #231815 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  font-size: 1rem !important;
}
.wp-block-button__link:hover {
  background-color: #0756a0 !important;
}

/* link
--------------------------------------- */
p.link-inline a {
  text-decoration: underline;
}
p.link-inline a:hover {
  color: #0756a0;
}

/* page - title
--------------------------------------- */
main.page h1.title, main.page h2.title {
  text-align: center;
}
main.page h1.title span, main.page h2.title span {
  display: block;
  line-height: 1.5em;
}
main.page h1.title span.en, main.page h2.title span.en {
  font-weight: 500;
  font-size: 1.75rem;
}

/* fadein
--------------------------------------- */
.fadein-contents {
  opacity: 0;
  transition: all 1s;
}
@media print, screen and (min-width: 744px) {
  .fadein-contents {
    transform: translate(0, 20px);
  }
}

.fadein-contents.active {
  opacity: 1;
}
@media print, screen and (min-width: 744px) {
  .fadein-contents.active {
    transform: translate(0, 0);
  }
}

/* ----------------------------------------------------------
 header
---------------------------------------------------------- */
header {
  position: relative;
  width: 100%;
  z-index: 100;
  background-color: #ffffff;
  transition: 0.3s;
}
@media screen and (max-width: 743px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
  }
}
header::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: var(--dropdown-height, 0);
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: opacity 0.3s ease, height 0.3s ease;
  z-index: -1;
  pointer-events: none;
}
header.submenu-open::before {
  opacity: 1;
}
header .inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 70%;
  margin: 0 auto;
  padding: 1.5rem 1rem 1rem 1rem;
}
@media print, screen and (min-width: 744px) {
  header .inner {
    min-width: 1100px;
  }
}
@media screen and (max-width: 743px) {
  header .inner {
    width: 100%;
    height: 60px;
    padding: 0;
  }
}
header .inner .sitename {
  width: 18rem;
  margin-right: auto;
}
@media screen and (max-width: 743px) {
  header .inner .sitename {
    width: 45vw;
    padding-left: 1rem;
  }
}
header .inner .sitename a {
  display: inline-block;
  width: 100%;
}
header .inner .sitename:hover {
  transform: translate(1px, 1px);
}
header .inner button#js-hamburger {
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background-color: #0756a0;
}
header .inner button#js-hamburger span {
  position: absolute;
  left: 20%;
  display: block;
  width: 60%;
  height: 2px;
  background-color: #ffffff;
}
header .inner button#js-hamburger span:nth-of-type(1) {
  top: 22px;
}
header .inner button#js-hamburger span:nth-of-type(2) {
  top: 30px;
  opacity: 1;
}
header .inner button#js-hamburger span:nth-of-type(3) {
  top: 38px;
}
header .inner button#js-hamburger.menu-open span:nth-of-type(1) {
  top: 30px;
  transform: rotate(45deg);
}
header .inner button#js-hamburger.menu-open span:nth-of-type(2) {
  opacity: 0;
}
header .inner button#js-hamburger.menu-open span:nth-of-type(3) {
  top: 30px;
  transform: rotate(-45deg);
}
header .inner ul.special-menu {
  display: flex;
  gap: 0.5rem;
}
@media screen and (max-width: 743px) {
  header .inner ul.special-menu {
    flex-direction: column;
    margin-top: 1rem;
    width: 100%;
  }
}
header .inner ul.special-menu > li {
  width: 7.5rem;
}
@media screen and (max-width: 743px) {
  header .inner ul.special-menu > li {
    width: 100%;
    margin: 0 auto;
  }
}
header .inner ul.special-menu > li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #0756a0;
  color: #fff;
  border-radius: 5px;
  font-size: 0.75rem;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 743px) {
  header .inner ul.special-menu > li a {
    margin: 0;
    height: 3rem;
    font-size: 0.9rem;
  }
}
header .inner ul.special-menu > li:hover a {
  box-shadow: none;
  transform: translate(1px, 1px);
}
header .inner ul.special-menu > li:first-child a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #006934;
}
header .inner ul.special-menu > li:first-child a::before {
  content: "";
  display: block;
  margin-right: 0.75rem;
  width: 2rem;
  height: 2rem;
  background: url(../images/icon/icon-request.svg) no-repeat center center/contain;
}
header .inner ul.special-menu > li:nth-child(2) a {
  background-color: #e83828;
}
header .inner ul.special-menu > li:nth-child(2) a::before {
  content: "";
  display: block;
  margin-right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/icon/icon-contact.svg) no-repeat center center/contain;
}
header .inner ul.special-menu > li:last-child a {
  flex-direction: column;
  padding: 0.25rem 0;
}
header .inner ul.special-menu > li:last-child a img {
  width: 6rem;
}
@media screen and (max-width: 743px) {
  header .inner ul.special-menu > li:last-child a img {
    width: 8rem;
  }
}
header .inner ul.special-menu > li:last-child a span {
  margin-top: 4px;
  font-size: 0.55rem;
  line-height: 1em;
}
header .inner #globalNav {
  width: 100%;
}
@media print, screen and (min-width: 744px) {
  header .inner #globalNav {
    margin-top: 1rem;
  }
}
header .inner #globalNav .basic-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media print, screen and (min-width: 744px) {
  header .inner #globalNav .basic-menu {
    height: 100%;
  }
}
header .inner #globalNav .basic-menu > li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 25%;
  padding: 0.25rem 0;
  text-align: center;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.75em;
  cursor: pointer;
}
@media print, screen and (min-width: 744px) {
  header .inner #globalNav .basic-menu > li {
    border-right: 2px solid #0756a0;
  }
}
header .inner #globalNav .basic-menu > li > a {
  display: flex;
  align-items: center;
}
header .inner #globalNav .basic-menu > li > a div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header .inner #globalNav .basic-menu > li > a:hover {
  color: #0756a0;
}
header .inner #globalNav .basic-menu > li > a::before {
  content: "";
  display: block;
  margin-right: 1rem;
  width: 2rem;
  height: 2rem;
  background: url(../images/icon/icon-home.svg) no-repeat center center/contain;
}
@media print, screen and (min-width: 744px) {
  header .inner #globalNav .basic-menu > li:nth-child(1) {
    border-left: 2px solid #0756a0;
  }
}
header .inner #globalNav .basic-menu > li:nth-child(1) a::before {
  width: 2.25rem;
  background: url(../images/icon/icon-home.svg) no-repeat center center/contain;
}
header .inner #globalNav .basic-menu > li:nth-child(2) a::before {
  width: 2.75rem;
  height: 2.5rem;
  background: url(../images/icon/icon-product.svg) no-repeat center center/contain;
}
header .inner #globalNav .basic-menu > li:nth-child(3) a::before {
  width: 2.25rem;
  height: 2.25rem;
  background: url(../images/icon/icno-env.svg) no-repeat center center/contain;
}
header .inner #globalNav .basic-menu > li:nth-child(4) a::before {
  background: url(../images/icon/icon-company.svg) no-repeat center center/contain;
}
header .inner #globalNav .basic-menu > li span {
  display: block;
  font-weight: 500;
  font-size: 0.55rem;
  line-height: 1.5em;
}
@media print, screen and (min-width: 744px) {
  header .inner #globalNav .basic-menu > li ul {
    position: absolute;
    top: calc(100% + 0.3rem);
    left: 0;
    z-index: 100;
    width: max-content;
    padding: 1.5rem 0 0.25rem 0;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
  }
  header .inner #globalNav .basic-menu > li ul li {
    padding: 0;
    width: 100%;
    text-align: left;
  }
  header .inner #globalNav .basic-menu > li ul li a {
    display: block;
    padding: 0.125rem 0;
  }
  header .inner #globalNav .basic-menu > li ul li a:hover {
    color: #0756a0;
    transform: translateX(1px);
  }
  header .inner #globalNav .basic-menu > li:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media screen and (max-width: 743px) {
  header .inner #globalNav {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    padding: 1rem 17.5%;
    background-color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  header .inner #globalNav .basic-menu {
    flex-direction: column;
  }
  header .inner #globalNav .basic-menu > li {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0756a0;
  }
  header .inner #globalNav .basic-menu > li > a {
    width: 100%;
  }
  header .inner #globalNav .basic-menu > li > a::before {
    width: 2rem !important;
    margin-right: 1rem;
  }
  header .inner #globalNav .basic-menu > li > a div {
    align-items: flex-start;
  }
  header .inner #globalNav .basic-menu > li:nth-child(4) a::before {
    height: 1.8rem;
  }
  header .inner #globalNav .basic-menu > li > ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 0.25rem;
    padding-left: 3rem;
  }
  header .inner #globalNav .basic-menu > li > ul > li a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
  }
  header .inner #globalNav .basic-menu > li > ul > li a:before {
    content: "";
    display: block;
    transform: rotate(45deg);
    width: 0.5rem !important;
    height: 0.5rem !important;
    margin-right: 0.5rem;
    border-top: 2px solid #0756a0;
    border-right: 2px solid #0756a0;
    background: initial !important;
  }
  header .inner #globalNav .basic-menu > li .sp-none {
    display: none;
  }
  header .inner #globalNav.menu-open {
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
  }
}
header.is-animation {
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.3s;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
header.is-animation .inner {
  padding: 0.5rem 1rem 0.75rem 1rem;
}
@media screen and (max-width: 743px) {
  header.is-animation .inner {
    padding: 0;
  }
}
@media print, screen and (min-width: 744px) {
  header.is-animation .inner #globalNav {
    margin-top: 0.75rem;
  }
  header.is-animation .inner #globalNav > ul > li {
    padding: 0;
  }
  header.is-animation .inner .sitename img {
    width: 14rem;
  }
}

/* ----------------------------------------------------------
 footer
---------------------------------------------------------- */
footer {
  position: relative;
  color: #ffffff;
  background-color: #0756a0;
  overflow: hidden;
}
footer > .footer-img {
  position: relative;
}
footer > .footer-img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #898989;
  mix-blend-mode: multiply;
}
footer::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  background-color: #005bac;
}
footer .wrap {
  position: relative;
  padding: 2rem 0;
}
@media print, screen and (min-width: 744px) {
  footer .wrap {
    display: flex;
    width: 90%;
    max-width: initial;
  }
}
@media print, screen and (min-width: 744px) {
  footer .wrap .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
footer .wrap .info .title {
  margin-bottom: auto;
  font-family: "Hina Mincho", serif;
  font-size: 2rem;
  line-height: 1.45em;
}
footer .wrap .info .sitename {
  margin: 1.5rem 0 1rem 0;
}
footer .wrap .info .sitename img {
  width: 21rem;
}
footer .wrap .info .detail {
  margin-bottom: 1rem;
  font-size: 0.75rem;
}
footer .wrap .info small {
  display: block;
  font-size: 0.6rem;
}
footer .wrap .link {
  flex: 1;
  padding-left: 2rem;
}
@media print, screen and (min-width: 744px) {
  footer .wrap .link nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media print, screen and (min-width: 744px) {
  footer .wrap .link nav > ul {
    width: calc((100% - 1.5rem) / 2);
  }
}
footer .wrap .link nav > ul > li {
  font-weight: 500;
  font-size: 0.9rem;
}
footer .wrap .link nav > ul > li ul {
  margin-bottom: 1rem;
}
footer .wrap .link nav > ul > li ul li {
  font-size: 0.75rem;
}
footer .wrap .link nav ul li a {
  display: inline-block;
  color: #ffffff;
}
footer .wrap .link nav ul li a:hover {
  opacity: 0.5;
  transform: translateX(1px);
}
footer .wrap .link nav .title {
  margin-bottom: 0.25rem;
  padding-bottom: 0.125rem;
  border-bottom: 1px solid #ffffff;
}
footer .wrap .link #pagetop {
  margin-top: 1rem;
  text-align: right;
}
footer .wrap .link #pagetop a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 2.5rem;
}
footer .wrap .link #pagetop a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 2rem;
  height: 2rem;
  margin-top: -1rem;
  border-radius: 100%;
  background-color: #ffffff;
  transition: 0.1s;
}
footer .wrap .link #pagetop a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  display: block;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  color: #231815;
  line-height: 1;
  box-sizing: border-box;
  transform: translate(50%, -25%) rotate(-45deg);
  transition: 0.1s;
}
footer .wrap .link #pagetop a:hover {
  color: #231815;
}
footer .wrap .link #pagetop a:hover::before {
  background-color: #231815;
  transition: 0.1s;
}
footer .wrap .link #pagetop a:hover::after {
  color: #ffffff;
  transition: 0.1s;
}

/* ----------------------------------------------------------
 opening
---------------------------------------------------------- */
body.home #opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0756a0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}
body.home .logo-wrapper {
  width: 7rem;
  opacity: 0;
  transform: translateY(10px);
  will-change: opacity, transform;
}
body.home .logo-wrapper .logo-mark {
  width: 100%;
}
body.home header {
  filter: blur(8px);
}
body.home p.slogan,
body.home p.logo {
  opacity: 0;
  filter: blur(8px);
}

/* ----------------------------------------------------------
 home css
---------------------------------------------------------- */
main.home {
  /* firstview
  ---------------------------- */
  /* menu
  ---------------------------- */
  /* intro
  ---------------------------- */
  /* news
  ---------------------------- */
  /* recruit
  ---------------------------- */
}
@media print, screen and (min-width: 744px) {
  main.home .wrap {
    width: 75%;
    min-width: 1100px;
  }
}
main.home h2 {
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.5em;
}
@media print, screen and (min-width: 744px) {
  main.home h2 {
    text-align: center;
  }
}
@media screen and (max-width: 743px) {
  main.home h2 {
    font-size: 1.5rem;
  }
}
main.home .firstview .mv {
  position: relative;
  margin-bottom: 2rem;
}
@media screen and (max-width: 743px) {
  main.home .firstview .mv {
    height: calc(100vh - 60px);
    max-height: 670px;
  }
}
@media print, screen and (min-width: 744px) {
  main.home .firstview .mv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 200%;
    height: 100%;
    background: url(../images/cloud01.png) 0 100% repeat-x;
    animation: cloudLoop01 90s linear infinite;
    z-index: 2;
    pointer-events: none;
    opacity: 0.15;
    filter: blur(10px);
  }
  @keyframes cloudLoop01 {
    0% {
      transform: translate3d(0, 0px, 0);
      opacity: 0;
    }
    5% {
      opacity: 0.15;
    }
    25% {
      transform: translate3d(-12.5%, -50px, 0);
    }
    50% {
      transform: translate3d(-25%, 50px, 0);
    }
    75% {
      transform: translate3d(-37.5%, -50px, 0);
    }
    95% {
      opacity: 0.15;
    }
    100% {
      transform: translate3d(-50%, 0px, 0);
      opacity: 0;
    }
  }
}
main.home .firstview .mv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 200%;
  height: 100%;
  background: url(../images/cloud02.png) 0 100% repeat-x;
  animation: cloudLoop02 20s linear infinite;
  z-index: 2;
  pointer-events: none;
  opacity: 0.25;
  filter: blur(15px);
}
@media screen and (max-width: 743px) {
  main.home .firstview .mv::after {
    top: -65vw;
    animation: cloudLoop02 10s linear infinite;
    opacity: 1;
  }
}
@keyframes cloudLoop02 {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  5% {
    opacity: 0.25;
    @media screen and (max-width: 743px) {
      main.home .firstview .mv {
        opacity: 1;
      }
    }
  }
  95% {
    opacity: 0.25;
    @media screen and (max-width: 743px) {
      main.home .firstview .mv {
        opacity: 1;
      }
    }
  }
  100% {
    transform: translate3d(-50%, 0, 0);
    opacity: 0;
  }
}
main.home .firstview .mv figure {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 743px) {
  main.home .firstview .mv figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
main.home .firstview .mv div {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 50%;
  height: 100%;
  padding: 2rem 4rem;
  color: #ffffff;
}
@media screen and (max-width: 743px) {
  main.home .firstview .mv div {
    justify-content: flex-end;
    width: 100%;
    left: 0;
    padding: 2rem;
  }
}
main.home .firstview .mv div::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #898989;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 743px) {
  main.home .firstview .mv div::before {
    background: linear-gradient(to top, #898989, rgba(137, 137, 137, 0));
  }
}
main.home .firstview .mv div * {
  position: relative;
}
main.home .firstview .mv div .slogan {
  font-family: "Hina Mincho", serif;
  font-size: 5.5rem;
  line-height: 1.35em;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 743px) {
  main.home .firstview .mv div .slogan {
    font-size: 4.5rem;
  }
}
main.home .firstview .special {
  max-width: 70%;
  margin: 2rem auto 0 auto;
  text-align: center;
}
@media screen and (max-width: 743px) {
  main.home .firstview .special {
    max-width: initial;
    width: calc(100% - 4rem);
  }
}
main.home .firstview .special a {
  display: inline-flex;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  border: 2px solid #0756a0;
}
@media screen and (max-width: 743px) {
  main.home .firstview .special a {
    flex-direction: column;
  }
}
main.home .firstview .special a time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7rem;
  padding: 0 0.75em;
  margin-right: 1rem;
  color: #ffffff;
  background-color: #0756a0;
  white-space: nowrap;
}
@media screen and (max-width: 743px) {
  main.home .firstview .special a time {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
main.home .firstview .special a .title {
  text-align: left;
}
main.home .firstview .special a:hover {
  color: #0756a0;
  transform: translate(1px, 1px);
}
main.home .firstview .special a:hover time {
  background-color: #231815;
}
main.home .menu {
  padding: 0;
}
@media screen and (max-width: 743px) {
  main.home .menu {
    padding-top: 3rem;
  }
}
@media print, screen and (min-width: 744px) {
  main.home .menu p {
    text-align: center;
  }
}
main.home .menu ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 3rem;
}
@media screen and (max-width: 743px) {
  main.home .menu ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
}
main.home .menu ul li {
  color: white;
  aspect-ratio: 1/1;
  position: relative;
  background: url(../images/home/menu01.webp) no-repeat center center/100%;
  transition: background-size 0.3s ease;
}
@media screen and (max-width: 743px) {
  main.home .menu ul li {
    width: 100%;
    height: auto;
    aspect-ratio: 3/1;
  }
}
main.home .menu ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #898989;
  mix-blend-mode: multiply;
  transition: 0.3s;
  opacity: 1;
}
main.home .menu ul li:hover {
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.95);
  background-size: 105%;
}
main.home .menu ul li:hover::before {
  opacity: 0;
  transition: 0.3s;
}
main.home .menu ul li:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/2;
  background-image: url(../images/home/menu01.webp);
}
main.home .menu ul li:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/2;
  background-image: url(../images/home/menu02.webp);
}
main.home .menu ul li:nth-child(3) {
  grid-column: 3/5;
  grid-row: 1/3;
  background-image: url(../images/home/menu03.webp);
}
main.home .menu ul li:nth-child(4) {
  grid-column: 1/3;
  grid-row: 2/4;
  background-image: url(../images/home/menu04.webp);
}
main.home .menu ul li:nth-child(5) {
  grid-column: 3/4;
  grid-row: 3/4;
  background-image: url(../images/home/menu05.webp);
}
main.home .menu ul li:nth-child(6) {
  grid-column: 4/5;
  grid-row: 3/4;
  background-image: url(../images/home/menu06.webp);
}
main.home .menu ul li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 1rem;
  line-height: 1.5em;
}
@media screen and (max-width: 743px) {
  main.home .menu ul li a {
    display: flex;
    align-items: center;
  }
}
main.home .menu ul li a::before {
  content: "";
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  background-color: #ffffff;
}
@media screen and (max-width: 743px) {
  main.home .menu ul li a::before {
    bottom: initial;
    right: 0.75rem;
  }
}
main.home .menu ul li a::after {
  content: "";
  position: absolute;
  bottom: 0.9rem;
  right: 1.025rem;
  display: block;
  transform: translate(-100%, -100%) rotate(45deg);
  width: 0.75rem;
  height: 0.75rem;
  border-top: 3px solid #231815;
  border-right: 3px solid #231815;
}
@media screen and (max-width: 743px) {
  main.home .menu ul li a::after {
    bottom: initial;
    right: 0.75rem;
    transform: translateX(-100%) rotate(45deg);
  }
}
main.home .menu ul li a:hover::before {
  background-color: #0756a0;
  transition: 0.3s;
}
main.home .menu ul li a:hover::after {
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transition: 0.3s;
}
main.home .intro {
  padding: 2rem 0;
}
main.home .intro h2 {
  font-size: 1.15rem;
}
@media print, screen and (min-width: 744px) {
  main.home .intro p {
    text-align: center;
  }
}
main.home .intro p:nth-of-type(1) {
  margin-bottom: 1em;
}
main.home .news .wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem 0;
  border-top: 2px solid #231815;
}
main.home .news .wrap h2 {
  width: 100%;
  text-align: left;
}
@media screen and (max-width: 743px) {
  main.home .news .wrap h2 {
    text-align: center;
  }
}
main.home .news .wrap nav {
  width: 12rem;
  padding-top: 0.5rem;
}
@media screen and (max-width: 743px) {
  main.home .news .wrap nav {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 743px) {
  main.home .news .wrap nav ul {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 743px) {
  main.home .news .wrap nav ul li {
    width: 50%;
  }
}
main.home .news .wrap nav ul li::before {
  content: "・";
}
main.home .news .wrap nav ul li a:hover {
  color: #0756a0;
}
main.home .news .wrap article {
  width: calc(100% - 12rem);
}
@media screen and (max-width: 743px) {
  main.home .news .wrap article {
    width: 100%;
  }
}
main.home .news .wrap article ul {
  opacity: 1;
  transition: opacity 0.1s ease;
}
main.home .news .wrap article ul.is-fading {
  opacity: 0;
}
main.home .news .wrap article ul li {
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #231815;
}
main.home .news .wrap article ul li a {
  position: relative;
  display: block;
  padding: 0.5rem;
  font-size: 0.9rem;
}
main.home .news .wrap article ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  display: block;
  width: 7em;
  height: 3px;
  background-color: #231815;
}
main.home .news .wrap article ul li a time {
  margin-right: 1rem;
}
main.home .news .wrap article ul li a .cat {
  display: inline-block;
  width: 6em;
  margin-right: 1rem;
  padding: 0 0.5em;
  color: #ffffff;
  background-color: #0756a0;
  text-align: center;
}
main.home .news .wrap article ul li a .cat.video {
  background-color: #c30d23;
}
main.home .news .wrap article ul li a .cat.exhibition {
  background-color: #f39800;
}
main.home .news .wrap article ul li a .title {
  display: inline-block;
}
main.home .news .wrap article ul li a:hover {
  opacity: 0.7;
}
main.home .news .wrap article ul li a:hover .title {
  transform: translateX(0.25em);
}
main.home .news .wrap article .link {
  margin-top: 2rem;
  font-size: 0.9rem;
}
main.home .news .wrap article .link a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  padding-right: 3rem;
}
main.home .news .wrap article .link a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  background-color: #231815;
  margin-top: -1rem;
  transition: 0.3s;
}
main.home .news .wrap article .link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  transform: translate(-100%, -50%) rotate(45deg);
  width: 0.75rem;
  height: 0.75rem;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
}
main.home .news .wrap article .link a:hover {
  color: #0756a0;
}
main.home .news .wrap article .link a:hover::before {
  background-color: #0756a0;
  transition: 0.3s;
}
main.home .recruit {
  margin-top: 2rem;
}
@media screen and (max-width: 743px) {
  main.home .recruit {
    padding-bottom: 2rem;
  }
}
@media print, screen and (min-width: 744px) {
  main.home .recruit .wrap {
    display: flex;
  }
}
main.home .recruit .wrap .detail {
  flex: 1;
}
@media print, screen and (min-width: 744px) {
  main.home .recruit .wrap .detail {
    padding-right: 1rem;
  }
}
main.home .recruit .wrap .detail h2 {
  text-align: left;
  line-height: 1.5em;
}
main.home .recruit .wrap .detail h2 span {
  display: block;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.5em;
}
main.home .recruit .wrap .detail h3 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.5em;
}
@media screen and (max-width: 743px) {
  main.home .recruit .wrap .detail h3 {
    font-size: 1.5rem;
  }
}
main.home .recruit .wrap .detail .link {
  margin-top: 1rem;
}
@media screen and (max-width: 743px) {
  main.home .recruit .wrap .detail .link {
    text-align: center;
  }
}
main.home .recruit .wrap .detail .link a {
  display: inline-block;
  padding: 0.25rem 4rem;
  color: #ffffff;
  background-color: #0756a0;
}
main.home .recruit .wrap .detail .link a:hover {
  background-color: #231815;
}
main.home .recruit figure {
  flex: 1;
  padding: 1rem 0;
}

/* ----------------------------------------------------------
 company css
---------------------------------------------------------- */
main.company {
  /* company
  ---------------------------- */
  /* history
  ---------------------------- */
  /* group
  ---------------------------- */
}
main.company h2 {
  margin-bottom: 3rem;
}
main.company .company {
  padding-bottom: 2rem;
}
main.company .company dl {
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 744px) {
  main.company .company dl {
    margin: 3rem auto;
  }
}
@media screen and (max-width: 743px) {
  main.company .company dl {
    margin: 2rem auto;
    flex-direction: column;
  }
}
main.company .company dl dt {
  position: relative;
  border-bottom: 1px solid #231815;
  padding: 0.5rem;
  width: 9em;
}
@media print, screen and (min-width: 744px) {
  main.company .company dl dt {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 743px) {
  main.company .company dl dt {
    width: 100%;
  }
}
main.company .company dl dt::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  display: block;
  width: 7em;
  height: 3px;
  background-color: #231815;
}
main.company .company dl dd {
  width: calc(100% - 9em);
  padding: 0.5rem;
  margin-bottom: 1rem;
}
@media print, screen and (min-width: 744px) {
  main.company .company dl dd {
    border-bottom: 1px solid #231815;
  }
}
@media screen and (max-width: 743px) {
  main.company .company dl dd {
    width: 100%;
  }
}
main.company .company .map {
  width: 100%;
  padding: 1rem;
  border: 1px solid #898989;
}
@media print, screen and (min-width: 744px) {
  main.company .company .map {
    width: 50rem;
    margin: 1rem auto;
  }
}
main.company .company .map iframe {
  width: 100%;
}
main.company .history .wrap {
  padding: 2rem 0;
}
main.company .history .wrap dl {
  display: flex;
  flex-wrap: wrap;
}
main.company .history .wrap dl dt {
  color: #0756a0;
  padding: 0.5rem 0;
  border-bottom: 1px solid #898989;
  width: 7em;
}
@media screen and (max-width: 743px) {
  main.company .history .wrap dl dt {
    width: 5em;
  }
}
main.company .history .wrap dl dt::before {
  content: "○";
  margin-right: 0.25rem;
}
main.company .history .wrap dl dd {
  padding: 0.5rem 0;
  border-bottom: 1px solid #898989;
  width: calc(100% - 7em);
}
@media screen and (max-width: 743px) {
  main.company .history .wrap dl dd {
    width: calc(100% - 5em);
  }
}
main.company .group .wrap {
  padding: 2rem 0;
}
@media print, screen and (min-width: 744px) {
  main.company .group .wrap {
    min-width: initial;
    max-width: initial;
    margin: 3rem auto;
  }
}
main.company .group .wrap h3 {
  margin-top: 2rem;
  font-weight: 500;
  font-size: 1.5rem;
}
main.company .group .wrap dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 1rem;
}
@media screen and (max-width: 743px) {
  main.company .group .wrap dl {
    flex-direction: column;
  }
}
main.company .group .wrap dl dt {
  position: relative;
  padding: 0.5rem;
  width: 9em;
  border-bottom: 1px solid #231815;
}
@media print, screen and (min-width: 744px) {
  main.company .group .wrap dl dt {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 743px) {
  main.company .group .wrap dl dt {
    width: 100%;
  }
}
main.company .group .wrap dl dt::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  display: block;
  width: 7em;
  height: 3px;
  background-color: #231815;
}
main.company .group .wrap dl dd {
  padding: 0.5rem;
  margin-bottom: 1rem;
  width: calc(100% - 9em);
}
@media print, screen and (min-width: 744px) {
  main.company .group .wrap dl dd {
    border-bottom: 1px solid #231815;
  }
}
@media screen and (max-width: 743px) {
  main.company .group .wrap dl dd {
    width: 100%;
  }
}
main.company .group .wrap .link-partner {
  margin-top: 1rem;
  text-align: center;
}
main.company .group .wrap .link-partner a {
  display: inline-block;
  align-content: center;
  height: 100%;
  padding: 0.5rem 2rem;
  color: #ffffff;
  background-color: #231815;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  font-size: 1rem;
  box-sizing: border-box;
  text-align: center;
  word-break: break-word;
}
main.company .group .wrap .link-partner a:hover {
  background-color: #0756a0;
}

/* ----------------------------------------------------------
 recruit css
---------------------------------------------------------- */
main.recruit {
  /* recruit
  ---------------------------- */
  /* contact
  ---------------------------- */
}
main.recruit .pagetitle-img {
  margin-bottom: 4rem;
}
@media print, screen and (min-width: 744px) {
  main.recruit .wrap {
    margin: 0 auto;
    min-width: initial;
    max-width: initial;
  }
}
main.recruit h2 {
  border-bottom: 1px solid #898989;
  margin-bottom: 2rem;
  padding-bottom: 0.25rem;
  font-weight: 500;
  font-size: 1.5rem;
}
main.recruit h3 {
  position: relative;
  border-bottom: 1px solid #898989;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
  padding-bottom: 0.25rem;
  font-weight: 500;
  font-size: 1rem;
}
main.recruit h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  display: block;
  width: 15%;
  height: 3px;
  background-color: #231815;
}
main.recruit h3 + p {
  padding-left: 0.5rem;
}
main.recruit dl {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 3rem);
  margin-left: 3rem;
  margin-bottom: 3rem;
}
main.recruit dl dt {
  position: relative;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  border-bottom: 1px solid #898989;
  font-weight: 500;
}
@media print, screen and (min-width: 744px) {
  main.recruit dl dt {
    width: 7em;
  }
}
main.recruit dl dt::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #231815;
}
main.recruit dl dd {
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  border-bottom: 1px solid #898989;
}
@media print, screen and (min-width: 744px) {
  main.recruit dl dd {
    width: calc(100% - 7em);
    padding-left: 1em;
  }
}
main.recruit .recruit-cf > p img {
  width: initial;
  max-width: initial;
  margin: 0.5rem 0;
}
main.recruit .contact {
  margin: 3rem 0 4rem 0;
}
main.recruit .contact h2 {
  margin-bottom: 1rem;
}

/* ----------------------------------------------------------
 product css
---------------------------------------------------------- */
main.product {
  /* product-top
  ---------------------------- */
  /* product-detail
  ---------------------------- */
}
main.product .pagetitle-img {
  margin-bottom: 4rem;
}
main.product .pagetitle-img .title {
  text-align: center;
}
main.product .pagetitle-img .title span {
  display: block;
  line-height: 1.5em;
}
main.product .pagetitle-img .title span.en {
  font-weight: 500;
  font-size: 1.75rem;
}
@media print, screen and (min-width: 744px) {
  main.product .product-top .wrap {
    width: 55rem;
    margin: 0 auto;
    min-width: initial;
    max-width: initial;
  }
}
main.product .product-top article {
  margin-bottom: 4rem;
}
main.product .product-top article h2 {
  margin-bottom: 1.5rem;
  color: #ffffff;
  background-color: #0756a0;
  text-align: center;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5em;
}
@media screen and (max-width: 743px) {
  main.product .product-top article h2 {
    padding: 0.5rem;
  }
}
@media print, screen and (min-width: 744px) {
  main.product .product-top article > div {
    display: flex;
  }
}
@media screen and (max-width: 743px) {
  main.product .product-top article > div {
    padding: 0 0.5rem;
  }
}
main.product .product-top article > div figure {
  width: 45%;
  aspect-ratio: 2/1.25;
  overflow: hidden;
}
@media print, screen and (min-width: 744px) {
  main.product .product-top article > div figure {
    padding-right: 2rem;
  }
}
@media screen and (max-width: 743px) {
  main.product .product-top article > div figure {
    width: 100%;
    margin-bottom: 1rem;
  }
}
main.product .product-top article > div figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main.product .product-top article > div .detail {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 743px) {
  main.product .product-top article > div .detail {
    width: 100%;
  }
}
main.product .product-top article > div .detail .des {
  margin-bottom: 1rem;
}
main.product .product-top article > div .detail .usage {
  display: flex;
  margin: auto 0 1rem 0;
  font-weight: 500;
}
@media screen and (max-width: 743px) {
  main.product .product-top article > div .detail .usage {
    flex-direction: column;
  }
}
main.product .product-top article > div .detail .link {
  margin-top: 1rem;
  text-align: center;
}
main.product .product-top article > div .detail .link a {
  display: block;
  align-content: center;
  height: 100%;
  padding: 0.5rem 3rem;
  color: #ffffff;
  background-color: #231815;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  font-size: 1rem;
  box-sizing: border-box;
  text-align: center;
  word-break: break-word;
}
main.product .product-top article > div .detail .link a:hover {
  background-color: #0756a0;
}
main.product .product-top p.link {
  margin-top: 6rem;
  text-align: center;
}
main.product .product-top p.link a {
  display: inline-block;
  align-content: center;
  height: 100%;
  padding: 0.5rem 3rem;
  color: #ffffff;
  background-color: #231815;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  font-size: 1rem;
  box-sizing: border-box;
  text-align: center;
  word-break: break-word;
}
main.product .product-top p.link a:hover {
  background-color: #0756a0;
}
@media print, screen and (min-width: 744px) {
  main.product .product-detail .wrap {
    width: 60rem;
    margin: 0 auto;
    min-width: initial;
    max-width: initial;
  }
}
main.product .product-detail h1 {
  margin-bottom: 2rem;
  color: #ffffff;
  background-color: #0756a0;
  text-align: center;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5em;
}
@media screen and (max-width: 743px) {
  main.product .product-detail h1 {
    padding: 0.5rem;
  }
}
main.product .product-detail section {
  margin-bottom: 4rem;
}
@media screen and (max-width: 743px) {
  main.product .product-detail section {
    padding: 0 0.5rem;
  }
}
main.product .product-detail section h2 {
  margin-bottom: 1.5rem;
  border-top: 2px solid #231815;
  border-bottom: 2px solid #231815;
  background-color: #dcdddd;
  text-align: center;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5em;
}
@media screen and (max-width: 743px) {
  main.product .product-detail section h2 {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    font-size: 1.25rem;
  }
}
main.product .product-detail section h2 + p {
  text-align: center;
  font-weight: 500;
  font-size: 1.15rem;
}
@media screen and (max-width: 743px) {
  main.product .product-detail section h2 + p {
    text-align: left;
  }
}
main.product .product-detail section h2 + p + ul.caution {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}
@media screen and (max-width: 743px) {
  main.product .product-detail section h2 + p + ul.caution {
    text-align: left;
  }
}
main.product .product-detail section h2 + p + ul.caution li {
  padding-left: 1em;
  text-indent: -1em;
}
main.product .product-detail section h2 + p + ul.caution li:before {
  content: "※";
}
main.product .product-detail section article {
  margin: 3rem auto 4rem auto;
}
@media screen and (max-width: 743px) {
  main.product .product-detail section article {
    margin: 2rem auto;
  }
}
@media print, screen and (min-width: 744px) {
  main.product .product-detail section article {
    display: flex;
  }
}
main.product .product-detail section article:last-of-type {
  margin-bottom: 3rem;
}
@media print, screen and (min-width: 744px) {
  main.product .product-detail section article figure {
    width: 37.5%;
  }
}
@media screen and (max-width: 743px) {
  main.product .product-detail section article figure {
    margin-bottom: 1rem;
  }
}
main.product .product-detail section article figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media print, screen and (min-width: 744px) {
  main.product .product-detail section article > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 62.5%;
    padding-left: 1.5rem;
  }
}
main.product .product-detail section article > div h3 {
  border-bottom: 3px solid #231815;
  margin-bottom: 1rem;
  font-weight: 500;
}
@media print, screen and (min-width: 744px) {
  main.product .product-detail section article > div h3 {
    margin-bottom: auto;
  }
}
main.product .product-detail section article > div dl {
  width: 100%;
  font-size: 0.85rem;
}
main.product .product-detail section article > div dl div {
  display: flex;
  border-bottom: 2px solid #231815;
  margin-bottom: 0.5rem;
  min-height: 2rem;
}
main.product .product-detail section article > div dl div dt {
  margin-right: 1em;
  white-space: nowrap;
}
@media screen and (max-width: 743px) {
  main.product .product-detail section article > div dl div dt {
    flex: 0 1 auto;
  }
}
main.product .product-detail section article > div dl div:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 743px) {
  main.product .product-detail section article > div dl div dd {
    flex: 1 1 0;
  }
}
main.product .product-detail section p.link {
  text-align: center;
}
main.product .product-detail section p.link a {
  display: inline-block;
  align-content: center;
  height: 100%;
  padding: 0.5rem 3rem;
  color: #ffffff;
  background-color: #231815;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  font-size: 1rem;
  box-sizing: border-box;
  text-align: center;
  word-break: break-word;
}
main.product .product-detail section p.link a:hover {
  background-color: #0756a0;
}

/* ----------------------------------------------------------
 page css
---------------------------------------------------------- */
main.page {
  /* pagetitle
  ---------------------------- */
  /* link
  ---------------------------- */
}
main.page .pagetitle-img img {
  margin-bottom: 2rem;
}
@media screen and (max-width: 743px) {
  main.page .pagetitle-img img {
    height: auto;
    aspect-ratio: 3/1;
    object-fit: cover;
  }
}
@media screen and (max-width: 743px) {
  main.page .pagetitle-img .title {
    padding: 0 1rem;
  }
}
main.page p.link-back {
  margin: 2rem auto !important;
  text-align: center;
}
main.page p.link-back a {
  position: relative;
  padding-right: 2.75rem;
  transition: 0.3s;
}
main.page p.link-back a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  background-color: #231815;
  margin-top: -1rem;
  transition: 0.3s;
}
main.page p.link-back a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  transform: translate(-75%, -50%) rotate(-45deg);
  width: 0.75rem;
  height: 0.75rem;
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
}
main.page p.link-back a:hover {
  color: #0756a0;
  transition: 0.3s;
}
main.page p.link-back a:hover::before {
  background-color: #0756a0;
  transition: 0.3s;
}

/* ----------------------------------------------------------
 simple-page css
---------------------------------------------------------- */
main.simple-page {
  /* page-contents
  ---------------------------- */
}
main.simple-page .pagetitle-img {
  margin-bottom: 4rem;
}
@media print, screen and (min-width: 744px) {
  main.simple-page .page-contents > .wrap {
    margin: 0 auto;
    min-width: initial;
    max-width: initial;
  }
}
main.simple-page .page-contents section {
  margin-bottom: 4rem;
}
main.simple-page .page-contents h2 {
  border-bottom: 1px solid #898989;
  margin-bottom: 1rem;
  padding-bottom: 0.25rem;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5em;
}
main.simple-page .page-contents h3 {
  position: relative;
  border-bottom: 1px solid #898989;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
  padding-bottom: 0.25rem;
  font-weight: 500;
  font-size: 1rem;
}
main.simple-page .page-contents h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  display: block;
  width: 55%;
  height: 3px;
  background-color: #231815;
}
main.simple-page .page-contents h3 + p {
  padding-left: 0.5rem;
}
main.simple-page .page-contents p {
  margin-bottom: 1em;
}

/* ----------------------------------------------------------
 環境方針 css
---------------------------------------------------------- */
main.environmental-policy .ol-kankyohoushin01 {
  list-style: none;
  margin-top: 2rem;
  padding-left: 1.5em;
}
main.environmental-policy .ol-kankyohoushin01 > li {
  position: relative;
  margin-bottom: 2rem;
}
main.environmental-policy .ol-kankyohoushin01 > li:nth-child(1)::before {
  content: "❶";
}
main.environmental-policy .ol-kankyohoushin01 > li:nth-child(2)::before {
  content: "❷";
}
main.environmental-policy .ol-kankyohoushin01 > li:nth-child(3)::before {
  content: "❸";
}
main.environmental-policy .ol-kankyohoushin01 > li:nth-child(4)::before {
  content: "❹";
}
main.environmental-policy .ol-kankyohoushin01 > li:nth-child(5)::before {
  content: "❺";
}
main.environmental-policy .ol-kankyohoushin01 > li:nth-child(6)::before {
  content: "❻";
}
main.environmental-policy .ol-kankyohoushin01 > li:nth-child(7)::before {
  content: "❼";
}
main.environmental-policy .ol-kankyohoushin01 > li:nth-child(8)::before {
  content: "❽";
}
main.environmental-policy .ol-kankyohoushin01 > li:nth-child(9)::before {
  content: "❾";
}
main.environmental-policy .ol-kankyohoushin01 > li:nth-child(10)::before {
  content: "❿";
}
main.environmental-policy .ol-kankyohoushin01 > li::before {
  position: absolute;
  left: -1em;
  width: 1.5em;
  display: inline-block;
}
main.environmental-policy .ol-kankyohoushin01 > li > div {
  position: relative;
  border-bottom: 1px solid #898989;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  font-weight: 500;
  font-size: 1rem;
}
main.environmental-policy .ol-kankyohoushin01 > li > div::before {
  content: "";
  position: absolute;
  left: -1.5em;
  bottom: -2px;
  display: block;
  width: 60%;
  height: 3px;
  background-color: #231815;
}
main.environmental-policy .ol-kankyohoushin01 > li > ol {
  list-style: none;
  counter-reset: number;
  margin-top: 1rem;
  padding-left: 1rem;
}
main.environmental-policy .ol-kankyohoushin01 > li > ol li {
  counter-increment: number;
  position: relative;
}
main.environmental-policy .ol-kankyohoushin01 > li > ol li::before {
  content: "（" counter(number) "）";
  position: absolute;
  left: -2.5em;
}

/* ----------------------------------------------------------
 環境活動 css
---------------------------------------------------------- */
main.environmental-activities .ul_green-guideline {
  display: none;
  padding-left: 0.5rem;
}
main.environmental-activities .ul_green-guideline li {
  margin-bottom: 0.5rem;
  line-height: 1.5em;
}
@media print, screen and (min-width: 744px) {
  main.environmental-activities .ul_green-guideline li {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 743px) {
  main.environmental-activities .ul_green-guideline li {
    position: relative;
  }
}
main.environmental-activities .ul_green-guideline li::before {
  content: "";
  display: block;
  transform: rotate(45deg);
  width: 0.5rem !important;
  height: 0.5rem !important;
  margin-right: 0.5rem;
  border-top: 2px solid #c30d23;
  border-right: 2px solid #c30d23;
}
@media screen and (max-width: 743px) {
  main.environmental-activities .ul_green-guideline li::before {
    position: absolute;
    top: 0.75em;
    left: 0;
  }
}
@media screen and (max-width: 743px) {
  main.environmental-activities .ul_green-guideline li a {
    padding-left: 1em;
  }
}
main.environmental-activities .ul_green-guideline li a::after {
  content: "";
  display: inline-block;
  width: 1em !important;
  height: 1em !important;
  margin-left: 0.25rem;
  background: url(../images/icon/icon-pdf.svg) no-repeat center bottom/contain;
  transform: translateY(1px);
}
main.environmental-activities .ul_green-guideline li a:hover {
  color: #c30d23;
}

/* ----------------------------------------------------------
 プライバシーポリシー css
---------------------------------------------------------- */
@media print, screen and (min-width: 744px) {
  main.privacy-policy .privacy-des {
    text-align: center;
  }
}
main.privacy-policy p a:hover {
  color: #0756a0;
}

/* ----------------------------------------------------------
 news css / page-news.php,archive.php
---------------------------------------------------------- */
main.news {
  /* category list
  ---------------------------- */
  /* postlist list
  ---------------------------- */
}
@media print, screen and (min-width: 744px) {
  main.news .wrap {
    width: 60em;
  }
}
main.news .pagetitle-img {
  margin-bottom: 3rem;
}
@media print, screen and (min-width: 744px) {
  main.news .flex {
    display: flex;
  }
}
@media print, screen and (min-width: 744px) {
  main.news aside {
    width: 8em;
    padding-top: 0.5rem;
  }
}
main.news aside ul {
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 744px) {
  main.news aside ul {
    flex-direction: column;
  }
}
main.news aside ul li {
  margin-bottom: 0.5rem;
  width: 100%;
}
@media screen and (max-width: 743px) {
  main.news aside ul li {
    width: calc(50% - 0.25rem);
  }
}
main.news aside ul li:nth-child(odd) {
  margin-right: 0.5rem;
}
main.news aside ul li a {
  display: block;
  padding: 0 0.5rem;
  color: #ffffff;
  background-color: #c9caca;
  border: 2px solid #c9caca;
}
main.news aside ul li a:hover {
  background-color: #231815;
}
@media screen and (max-width: 743px) {
  main.news aside ul li a {
    text-align: center;
  }
}
main.news aside ul li.now {
  padding: 0 0.5rem;
  border: 2px solid #231815;
  color: #231815;
  background-color: #ffffff;
}
@media screen and (max-width: 743px) {
  main.news aside ul li.now {
    text-align: center;
  }
}
@media print, screen and (min-width: 744px) {
  main.news .postlist {
    width: calc(100% - 8em);
    padding-left: 3rem;
  }
}
@media screen and (max-width: 743px) {
  main.news .postlist {
    margin-top: 1rem;
  }
}
main.news .postlist ul li {
  margin-bottom: 1rem;
  border-bottom: 1px solid #231815;
}
main.news .postlist ul li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.5rem;
  font-size: 0.9rem;
}
@media screen and (max-width: 743px) {
  main.news .postlist ul li a {
    flex-wrap: wrap;
    padding-bottom: 0.75rem;
  }
}
main.news .postlist ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  display: block;
  width: 7em;
  height: 3px;
  background-color: #231815;
}
main.news .postlist ul li a time {
  margin-right: 1.5rem;
}
main.news .postlist ul li a .cat {
  min-width: 6.5em;
  margin-right: 1rem;
  padding: 0 0.5em;
  color: #ffffff;
  background-color: #0756a0;
  text-align: center;
}
main.news .postlist ul li a .cat.video {
  background-color: #c30d23;
}
main.news .postlist ul li a .cat.exhibition {
  background-color: #f39800;
}
@media screen and (max-width: 743px) {
  main.news .postlist ul li a h2 {
    margin-top: 0.5rem;
  }
}
main.news .postlist ul li a:hover {
  opacity: 0.7;
}
main.news .postlist ul li a:hover h2 {
  transform: translateX(0.25em);
}
main.news .postlist .pagination {
  margin: 2rem 0;
  text-align: right;
}
main.news .postlist .pagination a.prev,
main.news .postlist .pagination a.next {
  position: relative;
  padding-right: 3rem;
}
main.news .postlist .pagination a.prev::before,
main.news .postlist .pagination a.next::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  background-color: #231815;
  margin-top: -1rem;
  transition: 0.3s;
}
main.news .postlist .pagination a.prev::after,
main.news .postlist .pagination a.next::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  transform: translate(-100%, -50%) rotate(45deg);
  width: 0.75rem;
  height: 0.75rem;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
}
main.news .postlist .pagination a.prev::after {
  transform: translate(-75%, -50%) rotate(-135deg);
}
main.news .postlist .pagination a:hover::before {
  background-color: #0756a0;
  transition: 0.3s;
}

/* ----------------------------------------------------------
 news css / single.php
---------------------------------------------------------- */
main.news.single .pagetitle-img .title {
  text-align: center;
}
main.news.single .pagetitle-img .title span {
  display: block;
  line-height: 1.5em;
}
main.news.single .pagetitle-img .title span.en {
  font-weight: 500;
  font-size: 1.75rem;
}
@media print, screen and (min-width: 744px) {
  main.news.single .contents {
    width: calc(100% - 8em);
    padding-left: 3rem;
  }
}
@media screen and (max-width: 743px) {
  main.news.single .contents {
    margin-top: 1rem;
  }
}
main.news.single .contents article {
  margin-bottom: 4rem;
}
main.news.single .contents article .post-info {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #231815;
  margin-bottom: 1rem;
  padding: 0.5rem;
  font-size: 0.9rem;
}
main.news.single .contents article .post-info time {
  margin-right: 1.5rem;
}
main.news.single .contents article .post-info .cat {
  width: 6.5em;
  margin-right: 1rem;
  padding: 0 0.5em;
  color: #ffffff;
  background-color: #0756a0;
  text-align: center;
}
main.news.single .contents article .post-info .cat.video {
  background-color: #c30d23;
}
main.news.single .contents article .post-info .cat.exhibition {
  background-color: #f39800;
}
main.news.single .contents article .post-info::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  display: block;
  width: 7em;
  height: 3px;
  background-color: #231815;
}
main.news.single .contents article .post-contents {
  /* 画像 */
  /* リンクボタン */
  /* ダウンロードボタン */
  /* table */
}
@media print, screen and (min-width: 744px) {
  main.news.single .contents article .post-contents {
    padding: 0 1em;
  }
}
main.news.single .contents article .post-contents h1 {
  margin-bottom: 2rem;
  font-weight: 500;
}
main.news.single .contents article .post-contents a {
  display: inline;
}
main.news.single .contents article .post-contents h2 {
  margin-top: 2.5em;
  margin-bottom: 1em;
  padding: 0.5em;
  color: #ffffff;
  background-color: #0756a0;
  font-weight: 500;
  font-size: 1rem;
}
main.news.single .contents article .post-contents h3 {
  position: relative;
  margin-top: 2em;
  margin-bottom: 1em;
  padding-bottom: 0.25em;
  border-bottom: 1px solid #0756a0;
  font-weight: 500;
  font-size: 1rem;
  color: #0756a0;
}
main.news.single .contents article .post-contents h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  display: block;
  width: 12em;
  height: 3px;
  background-color: #0756a0;
}
main.news.single .contents article .post-contents h4 {
  margin-top: 2.5em;
  margin-bottom: 1em;
  padding-bottom: 0.125em;
  border-bottom: 2px solid #231815;
  font-size: 1rem;
  font-weight: 500;
}
main.news.single .contents article .post-contents h5 {
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  padding-bottom: 0.125em;
  border-bottom: 1px dotted #231815;
  font-weight: 500;
  font-size: 1rem;
}
main.news.single .contents article .post-contents h6 {
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  font-weight: 500;
  font-size: 1rem;
}
main.news.single .contents article .post-contents * + ul,
main.news.single .contents article .post-contents * + ol {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
main.news.single .contents article .post-contents ul li {
  padding-left: 1em;
  text-indent: -1em;
}
main.news.single .contents article .post-contents ul li:before {
  content: "・";
}
main.news.single .contents article .post-contents ol {
  list-style: decimal;
  margin-left: 1.5em;
  padding-left: 0;
}
main.news.single .contents article .post-contents p {
  margin: 1em 0;
}
main.news.single .contents article .post-contents p a, main.news.single .contents article .post-contents li a {
  display: inline;
  color: #231815;
  text-decoration: underline;
}
main.news.single .contents article .post-contents iframe {
  margin: 1rem auto !important;
}
main.news.single .contents article .post-contents .wp-block-image,
main.news.single .contents article .post-contents .wp-block-gallery {
  margin: 1.5rem auto;
}
main.news.single .contents article .post-contents .wp-block-image.is-style-shadow img {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
main.news.single .contents article .post-contents .wp-block-image.is-style-border img {
  border: 1px solid #ccc;
  padding: 4px;
}
main.news.single .contents article .post-contents .wp-block-button {
  margin-bottom: 1.5em;
}
main.news.single .contents article .post-contents .wp-block-button .wp-block-button__link {
  display: inline-block;
  padding: 0.75em 2em;
  background-color: #c30d23;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 9999px;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
main.news.single .contents article .post-contents .wp-block-button .wp-block-button__link:hover {
  background-color: #231815;
  opacity: 0.9;
  text-decoration: none;
}
main.news.single .contents article .post-contents .wp-block-button .is-style-outline .wp-block-button__link {
  background-color: transparent;
  color: #c30d23;
  border: 2px solid #c30d23;
}
main.news.single .contents article .post-contents .wp-block-button .is-style-outline .wp-block-button__link:hover {
  background-color: #c30d23;
  color: #ffffff;
}
main.news.single .contents article .post-contents .wp-element-button {
  display: inline-block;
  padding: 0.75em 2em;
  background-color: #c30d23;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 9999px;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
main.news.single .contents article .post-contents .wp-element-button:hover {
  background-color: #231815;
  opacity: 0.9;
  text-decoration: none;
}
main.news.single .contents article .post-contents table {
  width: 100%;
  margin: 0.5rem auto;
}
main.news.single .contents article .post-contents thead {
  border-bottom: 0 !important;
  background-color: #efefef !important;
}

/* ----------------------------------------------------------
 contact css
---------------------------------------------------------- */
main.contact {
  /* pagetitle
  ---------------------------- */
  /* pagetitle
  ---------------------------- */
  /* form
  ---------------------------- */
}
main.contact .pagetitle-img {
  margin-bottom: 4rem;
}
main.contact section.privacy h2 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 1.15rem;
}
main.contact section.privacy ul li {
  font-size: 0.9rem;
}
main.contact section.privacy ul li a {
  color: #c30d23;
  border-bottom: 1px solid #c30d23;
}
main.contact section.privacy ul li a:hover {
  opacity: 0.7;
}
main.contact section.form dl.formbox {
  margin: 4rem auto 2rem auto;
}
main.contact section.form dl.formbox > dt {
  position: relative;
  border-bottom: 1px solid #898989;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  padding-bottom: 0.25rem;
  font-size: 1rem;
}
main.contact section.form dl.formbox > dt::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  display: block;
  width: 12em;
  height: 3px;
  background-color: #231815;
}
main.contact section.form dl.formbox > dt p {
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 744px) {
  main.contact section.form dl.formbox > dt p {
    justify-content: space-between;
  }
}
@media screen and (max-width: 743px) {
  main.contact section.form dl.formbox > dt p {
    flex-wrap: wrap;
  }
}
main.contact section.form dl.formbox > dt p span.required {
  display: inline-block;
  margin-right: auto;
  padding-left: 0.25em;
  color: #c30d23;
}
main.contact section.form dl.formbox > dt p span.caution {
  font-size: 0.75rem;
}
@media print, screen and (min-width: 744px) {
  main.contact section.form dl.formbox > dt p span.caution {
    padding-right: 1em;
  }
}
@media screen and (max-width: 743px) {
  main.contact section.form dl.formbox > dt p span.caution {
    width: 100%;
    font-size: 0.9rem;
  }
}
main.contact section.form dl.formbox > dd {
  padding: 0 0.5rem;
  margin-bottom: 2rem;
}
@media print, screen and (min-width: 744px) {
  main.contact section.form dl.formbox > dd > dl {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 4rem);
    margin: 2.5rem auto 1rem 4rem;
  }
}
@media print, screen and (min-width: 744px) {
  main.contact section.form dl.formbox > dd > dl dt {
    display: flex;
    align-items: center;
    width: 8rem;
    margin-bottom: 1rem;
  }
}
@media print, screen and (min-width: 744px) {
  main.contact section.form dl.formbox > dd > dl dd {
    width: calc(100% - 8rem);
    margin-bottom: 1rem;
  }
}
main.contact section.form dl.formbox > dd input, main.contact section.form dl.formbox > dd textarea {
  width: 100%;
  padding: 0.25em;
  border: 2px solid #231815;
  font-size: 1rem;
  background-color: #ffffff !important;
}
main.contact section.form dl.formbox > dd input[type=checkbox] {
  width: initial;
}
main.contact section.form dl.formbox > dd .select-wrapper {
  display: inline-block;
  position: relative;
  border: 2px solid #231815;
  font-size: 1rem;
  background-color: #ffffff !important;
}
main.contact section.form dl.formbox > dd .select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.5rem;
  width: 0.5em;
  height: 0.5em;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #231815;
  border-bottom: 0;
  pointer-events: none;
  transform: translateY(-45%);
}
main.contact section.form dl.formbox > dd .select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  font-size: 1rem;
  padding: 0.25rem 3em 0.25rem 2em;
}
main.contact section.form p.accept {
  text-align: center;
}
main.contact section.form .cf7-cf-turnstile {
  margin: 2rem auto 0 auto !important;
  text-align: center;
}
main.contact section.form .submit-button {
  margin: 2rem auto 4rem auto;
  text-align: center;
}
main.contact section.form .submit-button p {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main.contact section.form .submit-button p input {
  display: inline-block;
  align-content: center;
  height: 100%;
  padding: 0.75rem 4rem;
  color: #ffffff;
  background-color: #231815;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1em;
  box-sizing: border-box;
  text-align: center;
  word-break: break-word;
}
main.contact section.form .submit-button p input:hover {
  background-color: #0756a0;
}
main.contact section.form .submit-button p input:disabled {
  opacity: 0.5;
}
main.contact section.form .submit-button p input:disabled:hover {
  background-color: #c30d23;
}/*# sourceMappingURL=theme-styles.css.map */