@charset "UTF-8";
@media screen and (min-width: 1024px) {
  [id] {
    scroll-margin-top: 100px;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  animation: fadeIn 0.5s ease-out forwards;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin: 0;
  padding: 0;
  font-size: clamp(13px, 3.467vw, 15px);
  color: #333333;
  opacity: 1;
  line-height: 1.7;
}
@media screen and (min-width: 1024px) {
  body {
    font-size: clamp(14px, 0.952vw, 16px);
  }
}

p {
  margin: 0;
  padding: 0;
  line-height: 1.7;
}
figure {
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

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

a {
  display: inline-block;
  color: inherit;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
a:hover {
  transition: all 0.3s ease-in-out;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
ul li::marker,
ol li::marker,
dl li::marker {
  display: none;
}
ul + p,
ol + p,
dl + p {
  margin-top: 1em;
}

div + p {
  margin-top: 1em;
}

@media print, screen and (min-width: 1024px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  .pc-only {
    display: block;
  }
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

@media screen and (min-width: 1024px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    color: inherit;
    text-decoration: none;
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  color: #fff;
}
@media print, screen and (min-width: 1024px) {
  .l-header {
    position: fixed;
    transform: translateY(-100%);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

@media print, screen and (min-width: 1024px) {
  .l-header.is-top {
    transform: translateY(0);
  }
}

@media print, screen and (min-width: 1024px) {
  .l-header.is-away {
    transform: translateY(-100%);
  }
}

@media print, screen and (min-width: 1024px) {
  .l-header.is-fixed {
    transform: translateY(0);
    color: #333;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
}

.l-header__inner {
  height: 85px;
  background-color: #fff;
  padding: 20px 0 0 25px;
}
@media print, screen and (min-width: 1024px) {
  .l-header__inner {
    height: 6.25vw;
    max-height: 120px;
    background: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 16.66vw 0 5.729vw;
  }
}

.l-header__logo {
  width: 50%;
  max-width: 195px;
}
@media print, screen and (min-width: 1024px) {
  .l-header__logo {
    width: 15.73vw;
    max-width: 302px;
  }
}

.l-header__gnav {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  .l-header__gnav {
    display: block;
  }
}

.l-header__gnav-language {
  display: flex;
  justify-content: end;
}
.l-header__gnav-language li {
  position: relative;
  display: inline-block;
}
.l-header__gnav-language li:nth-of-type(1) {
  padding-left: 1em;
}
.l-header__gnav-language li:nth-of-type(1)::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 1px;
  height: 1em;
  background-color: #fff;
}
.l-header__gnav-language li:nth-of-type(1)::after {
  content: "／";
  display: inline-block;
  margin: 0 0.694em;
}
.l-header__gnav-language li:nth-of-type(2) {
  padding-right: 1em;
}
.l-header__gnav-language li:nth-of-type(2)::after {
  content: "";
  position: absolute;
  top: 0.4em;
  right: 0;
  width: 1px;
  height: 1em;
  background-color: #fff;
}
.l-header__gnav-language li a:hover {
  opacity: 0.8;
  color: #333;
}

@media print, screen and (min-width: 1024px) {
  .l-header__gnav-list {
    display: flex;
    column-gap: 2.29vw;
    margin-top: 1.3vw;
    font-size: clamp(14px, 1.071vw, 18px);
  }
  .l-header__gnav-list li {
    line-height: 1;
  }
  .l-header__gnav-list a {
    position: relative;
    overflow: hidden;
    line-height: 1;
    padding-bottom: 3px;
    transition: color 0.3s ease;
  }
  .l-header__gnav-list a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  .l-header__gnav-list a:hover::after {
    transform: translateX(0);
  }
}

.l-header__gnav-contact {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  .l-header__gnav-contact {
    width: 7.19vw;
    height: 6.25vw;
    max-width: 138px;
    max-height: 120px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: clamp(73px, 7.19vw, 138px);
    align-content: center;
    top: 0;
    row-gap: 7.3%;
    background: linear-gradient(to bottom, #3baefd, #0079c0);
    overflow: hidden;
    z-index: 99;
  }
  .l-header__gnav-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #0079c0, #3baefd);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .l-header__gnav-contact svg,
  .l-header__gnav-contact span {
    position: relative;
    z-index: 1;
  }
  .l-header__gnav-contact svg {
    width: 31.15%;
    max-width: 43px;
    margin: 0 auto;
  }
  .l-header__gnav-contact span {
    font-size: clamp(11px, 0.885vw, 17px);
    font-weight: 700;
    line-height: 1.7;
    display: block;
    width: 100%;
    text-align: center;
    transition: color 0.3s ease;
  }
  .l-header__gnav-contact:hover::before {
    opacity: 1;
  }
}

.l-header__drawer {
  background-color: rgba(0, 121, 192, 0.95);
  width: 70.5%;
  height: calc(100vh - 85px - 62px);
  position: absolute;
  top: 85px;
  right: -70.5%;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
  padding: 13vh 20px 30px;
}
@media print, screen and (min-width: 1024px) {
  .l-header__drawer {
    width: 100%;
    height: 100vh;
    top: 0;
    right: auto;
    left: 0;
    padding: 160px 100px 100px;
  }
}
.l-header__drawer.is-open {
  right: 0;
  transition: all 0.3s ease;
  visibility: visible;
  opacity: 1;
  z-index: 999;
}

.l-header__toggle {
  position: fixed;
  top: 0;
  right: 0;
  width: 85px;
  height: 85px;
  background-color: #e60012;
  border: none;
  z-index: 1000;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 1024px) {
  .l-header__toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 7.19vw;
    height: 6.25vw;
    max-width: 138px;
    max-height: 120px;
  }
}
.l-header__toggle::after {
  content: "MENU";
  color: #fff;
  position: absolute;
  top: 63.53%;
  width: 100%;
  left: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 1024px) {
  .l-header__toggle::after {
    font-size: clamp(11px, 0.885vw, 17px);
  }
}
.l-header__toggle:hover {
  cursor: pointer;
  background-color: #ef636f;
  transition: all 0.3s ease;
}
.l-header__toggle span {
  position: absolute;
  left: 29.41%;
  background-color: #fff;
  height: 3px;
  width: 41.18%;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 1024px) {
  .l-header__toggle span {
    height: clamp(2px, 0.156vw, 3px);
  }
}
.l-header__toggle span:nth-of-type(1) {
  top: 24.71%;
}
.l-header__toggle span:nth-of-type(2) {
  top: 37.65%;
}
.l-header__toggle span:nth-of-type(3) {
  top: 51.76%;
}
.l-header__toggle.is-active::after {
  content: "";
  transition: all 0.3s ease;
}
.l-header__toggle.is-active span {
  transition: all 0.3s ease;
  height: 5px;
}
@media print, screen and (min-width: 1024px) {
  .l-header__toggle.is-active span {
    height: clamp(3px, 0.26vw, 5px);
  }
}
.l-header__toggle.is-active span:nth-of-type(1) {
  top: 44.71%;
  transform: rotate(45deg);
}
.l-header__toggle.is-active span:nth-of-type(2) {
  top: 44.71%;
  transform: rotate(-45deg);
}
.l-header__toggle.is-active span:nth-of-type(3) {
  opacity: 0;
}

@media print, screen and (min-width: 1024px) {
  .l-header__drawer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}

.l-header__drawer-list {
  font-size: clamp(16px, 4.615vw, 18px);
}
@media print, screen and (min-width: 1024px) {
  .l-header__drawer-list {
    font-size: clamp(16px, 1.071vw, 18px);
    display: flex;
    column-gap: 44px;
  }
}
.l-header__drawer-list li {
  text-align: center;
  margin-top: 1.65em;
  line-height: 1.11;
}
@media print, screen and (min-width: 1024px) {
  .l-header__drawer-list li {
    margin-top: 0;
  }
}
.l-header__drawer-list li a {
  position: relative;
  overflow: hidden;
  padding-bottom: 3px;
}
.l-header__drawer-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.l-header__drawer-list li a:hover::after {
  left: 0;
  transition: all 0.3s ease;
}

.l-header__drawer-language {
  font-size: clamp(16px, 4.615vw, 18px);
  display: flex;
  justify-content: center;
  margin-top: 2em;
}
@media print, screen and (min-width: 1024px) {
  .l-header__drawer-language {
    margin: 0;
  }
}
.l-header__drawer-language li {
  position: relative;
}
.l-header__drawer-language li:nth-of-type(1) {
  padding-left: 1em;
}
.l-header__drawer-language li:nth-of-type(1)::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 1px;
  height: 1em;
  background-color: #fff;
}
.l-header__drawer-language li:nth-of-type(1)::after {
  content: "／";
  display: inline-block;
  margin: 0 0.694em;
}
.l-header__drawer-language li:nth-of-type(2) {
  padding-right: 1em;
}
.l-header__drawer-language li:nth-of-type(2)::after {
  content: "";
  position: absolute;
  top: 0.4em;
  right: 0;
  width: 1px;
  height: 1em;
  background-color: #fff;
}
.l-header__drawer-language li a:hover {
  opacity: 0.8;
  color: #333;
}

.l-header__drawer-contact {
  margin-top: 20px;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .l-header__drawer-contact {
    margin-top: 0;
    width: 100%;
  }
}
.l-header__drawer-contact .l-header__contact {
  border: 1px solid #fff;
  width: 51.3%;
  max-width: 132px;
  display: block;
  margin: 0 auto;
  padding: 22px 10px 12px;
}
.l-header__drawer-contact .l-header__contact svg.c-icon {
  max-width: 34px;
}
.l-header__drawer-contact .l-header__contact span {
  display: block;
  margin: 2px auto 0;
  text-align: center;
  font-size: clamp(13px, 4.35vw, 17px);
  font-weight: 700;
  line-height: 1.7;
}
@media print, screen and (min-width: 1024px) {
  .l-header__drawer-contact .l-header__contact:hover {
    background: rgba(8, 21, 49, 0.4);
  }
}

@media print, screen and (min-width: 1024px) {
  .l-header.is-fixed .l-header__inner {
    padding-bottom: 1vw;
  }
}
.l-header.is-fixed .l-header__gnav-list {
  margin-top: 0.7vw;
}
.l-header.is-fixed .l-header__gnav-language li:nth-of-type(1)::before,
.l-header.is-fixed .l-header__gnav-language li:nth-of-type(2)::after {
  background-color: #333;
}
.l-header.is-fixed .l-header__gnav-contact span {
  color: #fff;
}
.l-header.is-fixed .l-header__gnav-list a::after {
  background-color: #333;
}
.l-header.is-fixed .l-header__gnav-list a:hover {
  color: #0079c0;
}
.l-header.is-fixed .l-header__gnav-list a:hover::after {
  background-color: #0079c0;
}
.l-header.is-fixed .l-header__gnav-language li a {
  transition: color 0.3s ease;
}
.l-header.is-fixed .l-header__gnav-language li a:hover {
  color: #0079c0;
  opacity: 1;
}

.l-header__drawer.is-open {
  color: #fff;
}

.l-diagonal-wrap {
  position: relative;
  overflow: hidden;
}

.l-diagonal-wrap__bg {
  display: none;
  pointer-events: none;
}
@media print, screen and (min-width: 1024px) {
  .l-diagonal-wrap__bg {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
  }
}
@media print, screen and (min-width: 1024px) {
  .l-diagonal-wrap__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 47.604vw;
    max-width: 914px;
    height: 100%;
    background-color: #f5fbff;
    transform: skewX(28deg);
    transform-origin: top left;
  }
}

@media print, screen and (min-width: 1024px) {
  .l-diagonal-wrap--inner .l-diagonal-wrap__bg::before {
    left: -14.115vw;
  }
}
@media screen and (min-width: 1920px) {
  .l-diagonal-wrap--inner .l-diagonal-wrap__bg::before {
    left: -271px;
  }
}

.l-diagonal-wrap section {
  position: relative;
  z-index: 1;
}

.p-pickup,
.p-top-products,
.p-products,
.p-production,
.p-case-study {
  background: #fff;
  min-height: 400px;
}
@media print, screen and (min-width: 1024px) {
  .p-pickup,
  .p-top-products,
  .p-products,
  .p-production,
  .p-case-study {
    background: transparent;
  }
}

.p-about--gray,
.l-diagonal-wrap__gray {
  background: rgba(0, 0, 0, 0.05);
  min-height: 400px;
}
@media print, screen and (min-width: 1024px) {
  .p-about--gray > *,
  .l-diagonal-wrap__gray > * {
    position: relative;
    z-index: 1;
  }
}

.l-footer {
  position: relative;
  z-index: 2;
  background: #0079c0;
  padding-top: 80px;
}
@media print, screen and (min-width: 1024px) {
  .l-footer {
    padding-top: 80px;
  }
}
@media print, screen and (min-width: 1440px) {
  .l-footer {
    padding-top: 55px;
  }
}

.l-main {
  margin-top: 85px;
}
@media print, screen and (min-width: 1024px) {
  .l-main {
    margin-top: 0;
  }
}

.l-inner {
  max-width: 1280px;
  margin: 0 auto;
}
@media print, screen and (min-width: 1024px) {
  .l-inner {
    margin-top: 0;
  }
}

.p-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: calc(100vh - 5px);
}
@media print, screen and (min-width: 1024px) {
  .p-hero {
    aspect-ratio: 960/473;
    height: 100%;
    min-height: 650px;
  }
}

.p-hero__bg {
  width: 100%;
  height: calc(100% - 80px);
}
@media print, screen and (min-width: 1024px) {
  .p-hero__bg {
    height: 100%;
  }
}

.p-hero__bg-img {
  width: 100%;
  height: calc(100% - 80px);
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media print, screen and (min-width: 1024px) {
  .p-hero__bg-img {
    height: 100%;
  }
}

.p-hero__watermark {
  position: absolute;
  left: 0;
  bottom: 80px;
  width: 100%;
}
@media print, screen and (min-width: 1024px) {
  .p-hero__watermark {
    width: 48.1%;
    bottom: 0;
  }
}

.p-hero__content {
  color: #fff;
  position: absolute;
  top: 20%;
  left: 6.15%;
}
@media print, screen and (min-width: 1024px) {
  .p-hero__content {
    top: 50%;
    left: 50%;
  }
}
.p-hero__content h1,
.p-hero__content .p-hero__title {
  line-height: 1.1;
  font-size: clamp(50px, 14.6vw, 57px);
  font-weight: 900;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
@media print, screen and (min-width: 1024px) {
  .p-hero__content h1,
  .p-hero__content .p-hero__title {
    font-size: clamp(50px, 5.2vw, 100px);
  }
}
.p-hero__content p,
.p-hero__content .p-hero__lead {
  line-height: 1.57;
  font-weight: 900;
  font-size: clamp(16px, 4.87vw, 19px);
  margin-top: 1em;
}

.p-hero__lead {
  opacity: 0;
  transform: translateY(0.5em);
  animation: p-hero-title-fade-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 1.6s;
}
@media print, screen and (min-width: 1024px) {
  .p-hero__lead {
    animation-delay: 0.9s;
  }
}

@media print, screen and (min-width: 1024px) {
  .p-hero__title-line {
    display: block;
    opacity: 0;
    transform: translateY(0.5em);
    animation: p-hero-title-fade-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
}

@media print, screen and (min-width: 1024px) {
  .p-hero__title-line--01 {
    animation-delay: 0.2s;
  }
}

@media print, screen and (min-width: 1024px) {
  .p-hero__title-line--02 {
    animation-delay: 0.5s;
  }
}

.p-hero__title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  animation: p-hero-title-fade-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@media print, screen and (min-width: 1024px) {
  .p-hero__title-word {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.p-hero__title-word--01 {
  animation-delay: 0.2s;
}

.p-hero__title-word--02 {
  animation-delay: 0.4s;
}

.p-hero__title-word--03 {
  animation-delay: 0.6s;
}

.p-hero__title-word--04 {
  animation-delay: 0.8s;
}

@keyframes p-hero-title-fade-in {
  from {
    opacity: 0;
    transform: translateY(0.5em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-hero__title-line,
  .p-hero__title-word,
  .p-hero__lead {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.p-hero__news {
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #0079c0;
  height: 80px;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 1024px) {
  .p-hero__news {
    max-width: 670px;
    width: 34.895%;
  }
}
.p-hero__news::after {
  content: "";
  background: url(../../assets/images/common/icon-arrow01.svg) center center no-repeat #e60012;
  background-size: 13px 11px;
  width: 21px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s ease;
}
@media print, screen and (min-width: 1024px) {
  .p-hero__news::after {
    width: 35px;
    background-size: 16px 13px;
  }
}
.p-hero__news:hover {
  background-color: #1897e1;
  transition: all 0.3s ease;
}
.p-hero__news:hover::after {
  background-color: #f62a3b;
  transition: all 0.3s ease;
}

.p-hero__news-item {
  height: 100%;
  color: #fff;
  display: flex;
  align-items: center;
}
.p-hero__news-heading {
  font-weight: 900;
  font-size: clamp(15px, 4.615vw, 18px);
  width: 89px;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .p-hero__news-heading {
    width: 22%;
  }
}

.p-hero__news-body {
  width: calc(100% - 89px - 21px);
}
@media print, screen and (min-width: 1024px) {
  .p-hero__news-body {
    width: calc(78% - 35px);
  }
}

.p-hero__news-time,
.p-hero__news-title {
  font-size: clamp(14px, 4vw, 16px);
  font-weight: 700;
  line-height: 1.8;
}

.p-pickup {
  padding: 50px 20px 60px;
}
@media print, screen and (min-width: 1024px) {
  .p-pickup {
    padding: clamp(40px, 4.47vw, 68px) 50px clamp(50px, 4.16vw, 70px);
  }
}

.p-pickup__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}
@media print, screen and (min-width: 600px) {
  .p-pickup__list {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 2.08vw, 40px);
    margin-top: clamp(30px, 2.6vw, 50px);
  }
}
@media print, screen and (min-width: 1024px) {
  .p-pickup__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-pickup__item {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  overflow: hidden;
  transition: box-shadow 0.3s ease, opacity 0.3s ease;
}
.p-pickup__item:hover {
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.12);
  opacity: 0.9;
}

.p-pickup__img {
  margin: 0;
  aspect-ratio: 400/260;
  overflow: hidden;
}
.p-pickup__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-pickup__text {
  background-color: #0079c0;
  color: #fff;
  margin: 0;
  padding: 16px 2em 16px 19px;
  font-size: clamp(14px, 3.73vw, 16px);
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}
@media print, screen and (min-width: 1024px) {
  .p-pickup__text {
    padding: 16px 20px;
    font-size: clamp(15px, 0.94vw, 18px);
  }
}
.p-pickup__text::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: url(../../assets/images/common/icon-arrow01.svg) no-repeat center center #e60012;
  background-size: 12px 9px;
}

.p-top-products {
  padding: 50px 20px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-products {
    padding: clamp(40px, 2.97vw, 50px) 50px clamp(50px, 3.57vw, 60px);
  }
}

.p-top-products__lead {
  margin: 30px 0 0;
  line-height: 1.7;
}
@media print, screen and (min-width: 1024px) {
  .p-top-products__lead {
    margin-top: clamp(20px, 1.56vw, 30px);
  }
}

.p-top-products__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 30px;
}
@media print, screen and (min-width: 600px) {
  .p-top-products__list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 30px;
    margin-top: clamp(30px, 2.6vw, 50px);
  }
}

.p-top-products__item {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  overflow: hidden;
  transition: box-shadow 0.3s ease, opacity 0.3s ease;
}
.p-top-products__item:hover {
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.12);
  opacity: 0.9;
}

.p-top-products__img {
  margin: 0;
  aspect-ratio: 620/330;
  overflow: hidden;
}
.p-top-products__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-top-products__text {
  margin: 0;
  padding: 5px 18px;
  font-size: clamp(14px, 3.73vw, 16px);
  font-weight: 700;
  line-height: 1.5;
  background-color: #0079c0;
  color: #fff;
  position: relative;
}
@media print, screen and (min-width: 1024px) {
  .p-top-products__text {
    padding: 5px 18px;
    font-size: clamp(14px, 1.07vw, 18px);
  }
}
.p-top-products__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 100%;
  background: url(../../assets/images/common/icon-arrow01.svg) no-repeat center center #e60012;
  background-size: 15px 11px;
}

.p-top-products__btn {
  margin-top: 30px;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .p-top-products__btn {
    margin-top: 44px;
  }
}

.p-breadcrumb {
  padding: 12px 20px;
}
@media print, screen and (min-width: 1024px) {
  .p-breadcrumb {
    position: relative;
    z-index: 1;
    padding: 27px 50px 33px;
    max-width: 1380px;
    margin: 0 auto;
  }
}

.p-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(12px, 3.2vw, 14px);
  line-height: 1.5;
}
@media print, screen and (min-width: 1024px) {
  .p-breadcrumb__list {
    font-size: clamp(14px, 0.93vw, 18px);
  }
}

.p-breadcrumb__item {
  display: flex;
  align-items: center;
}

.p-breadcrumb__link {
  color: #3e3937;
  text-decoration: none;
}
.p-breadcrumb__link::after {
  content: ">";
  margin-inline: 0.6em;
}
.p-breadcrumb__link:hover {
  opacity: 0.7;
}

.p-breadcrumb__text {
  color: inherit;
}

.p-footer-info {
  background: #0079c0;
  color: #fff;
  padding: 40px 20px 24px;
}
@media print, screen and (min-width: 600px) {
  .p-footer-info {
    padding: 50px 30px 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-footer-info {
    padding: 70px 50px 44px;
  }
}

.p-footer-info__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.p-footer-info__logo {
  width: 60%;
  max-width: 280px;
  margin: 0 auto;
}
@media print, screen and (min-width: 600px) {
  .p-footer-info__logo {
    max-width: 390px;
  }
}

.p-footer-info__address {
  margin-top: 30px;
  text-align: center;
}
@media print, screen and (min-width: 600px) {
  .p-footer-info__address {
    margin-top: 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-footer-info__address {
    margin-top: 54px;
    font-size: clamp(14px, 1.07vw, 18px);
  }
}

.p-footer-info__contact {
  text-align: center;
  font-weight: 900;
  font-size: clamp(14px, 4.4vw, 18px);
}
@media print, screen and (min-width: 1024px) {
  .p-footer-info__contact {
    font-size: clamp(18px, 14.28vw, 24px);
  }
}

.p-footer-info__privacy-policy {
  margin-top: 20px;
  text-align: center;
  margin: 20px auto 0;
}
@media print, screen and (min-width: 1024px) {
  .p-footer-info__privacy-policy {
    margin-top: 36px;
    font-size: clamp(14px, 1.07vw, 18px);
  }
}
.p-footer-info__privacy-policy a {
  text-decoration: underline;
}

.p-footer-info__copyright {
  text-align: center;
  margin-top: 50px;
}
@media print, screen and (min-width: 1024px) {
  .p-footer-info__copyright {
    margin-top: 80px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-footer-info__copyright {
    margin-top: 166px;
  }
}

.p-footer-contact {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1280px;
  background-color: #fff;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: -250px auto 0;
}
@media print, screen and (min-width: 600px) {
  .p-footer-contact {
    width: calc(100% - 60px);
    padding: 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-footer-contact {
    width: calc(100% - 100px);
    padding: 38px clamp(50px, 4.76vw, 80px);
  }
}
.p-footer-contact {
  /* &::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -20px;
    width: calc(100% + 40px);
    height: 50%;
    background-color: #0079c0;
    z-index: -1;
    @include min-screen($breakpoint-tablet) {
      left: -30px;
      width: calc(100% + 60px);
    }
    @include min-screen($breakpoint-pc) {
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      width: 100vw;
    }
  } */
}

.p-footer-contact__inner {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  justify-content: center;
}
@media print, screen and (min-width: 1024px) {
  .p-footer-contact__inner {
    column-gap: clamp(9.76%, 6.51vw, 125px);
    row-gap: 30px;
  }
}

.p-footer-contact__title {
  text-align: center;
  width: 100%;
}
.p-footer-contact__title p {
  line-height: 1;
}
.p-footer-contact__title--en {
  font-weight: 900;
  font-size: clamp(20px, 6.66vw, 26px);
  color: #0079c0;
}
@media print, screen and (min-width: 600px) {
  .p-footer-contact__title--en {
    font-size: clamp(28px, 4vw, 32px);
  }
}
@media print, screen and (min-width: 1024px) {
  .p-footer-contact__title--en {
    font-size: clamp(40px, 2.97vw, 50px);
  }
}
.p-footer-contact__title--en::first-letter {
  color: #e60012;
}
.p-footer-contact__title--ja {
  text-align: center;
  font-weight: 500;
  font-size: clamp(12px, 3.58vw, 14px);
  margin-top: 4px;
}
@media print, screen and (min-width: 1024px) {
  .p-footer-contact__title--ja {
    font-size: 15px;
  }
}

.p-footer-contact__tel {
  width: 100%;
}
@media print, screen and (min-width: 1024px) {
  .p-footer-contact__tel {
    width: 43.5%;
  }
}

.p-footer-contact__here {
  width: 100%;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .p-footer-contact__here {
    column-gap: clamp(16px, 1.07vw, 18px);
  }
}

.p-footer-contact__num {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
  color: #e60012 !important;
  font-weight: 900;
  font-size: clamp(20px, 7.17vw, 28px);
  line-height: 1.4;
}
@media print, screen and (min-width: 1024px) {
  .p-footer-contact__num {
    font-size: clamp(30px, 3.57vw, 60px);
    column-gap: clamp(10px, 1.78vw, 30px);
  }
}
.p-footer-contact__num .c-icon {
  width: 20px;
}
@media print, screen and (min-width: 1024px) {
  .p-footer-contact__num .c-icon {
    width: 7.5%;
  }
}

.p-footer-contact__time {
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .p-footer-contact__time {
    column-gap: clamp(17px, 1.19vw, 20px);
  }
}

.p-footer-contact__mail {
  margin-top: 10px;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .p-footer-contact__mail {
    margin-top: 0;
    width: 43.5%;
  }
}
.p-footer-contact__mail .c-btn--contact {
  background-color: #e60012;
  color: #fff;
  padding: 7px 20px;
  display: inline-flex;
  justify-content: center;
  column-gap: 10px;
  align-items: center;
  margin-top: 10px;
  font-weight: 700;
}
.p-footer-contact__mail .c-btn--contact:hover {
  background-color: #ef636f;
}
@media print, screen and (min-width: 1024px) {
  .p-footer-contact__mail .c-btn--contact {
    margin-top: 15px;
    width: 97.78%;
    padding: clamp(10px, 1.78vw, 18px) 20px;
    font-size: clamp(18px, 1.3vw, 22px);
  }
}
.p-footer-contact__mail .c-btn--contact .c-icon--mail {
  width: 10%;
  margin: 0;
}

.c-gray-last {
  padding-bottom: 200px;
}
.p-products__zinc {
  padding: 50px 20px 80px;
  background: url("../../assets/images/common/wm02.svg") no-repeat left bottom -2px;
  background-size: 60% auto;
  position: relative;
}
@media print, screen and (min-width: 600px) {
  .p-products__zinc {
    padding: 50px 30px 120px;
    background-size: 48.69% auto;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-products__zinc {
    padding: 100px 50px clamp(140px, 12.5vw, 240px);
  }
}
.p-products__zinc::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  width: 60%;
  height: auto;
  aspect-ratio: 467/94;
  opacity: 0.6;
}
@media print, screen and (min-width: 1024px) {
  .p-products__zinc::before {
    width: 48.69%;
  }
}

.p-products__intro {
  margin-top: 25px;
}
@media print, screen and (min-width: 600px) {
  .p-products__intro {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media print, screen and (min-width: 600px) {
  .p-products__intro-body {
    width: 70%;
  }
}
.p-products__intro-heading {
  color: #0079c0;
  font-weight: 900;
  font-size: clamp(15px, 4.5vw, 18px);
}
@media print, screen and (min-width: 1024px) {
  .p-products__intro-heading {
    font-size: clamp(18px, 1.42vw, 24px);
  }
}
.p-products__intro-text {
  line-height: 2;
  margin-top: 0.7em;
}
.p-products__intro-image {
  margin-top: 10px;
}
@media print, screen and (min-width: 600px) {
  .p-products__intro-image {
    width: 28.5%;
  }
}

.p-products__merit {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}
@media print, screen and (min-width: 1024px) {
  .p-products__merit {
    row-gap: 34px;
  }
}
.p-products__merit-item {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
}
.p-products__merit-heading {
  background-color: #fff;
  border: 1px solid #0079c0;
  text-align: center;
  color: #0079c0;
  width: 100%;
  padding: 0.5em;
  font-weight: 700;
}
@media print, screen and (min-width: 600px) {
  .p-products__merit-heading {
    width: 29.5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-products__merit-heading {
    font-size: clamp(16px, 1.19vw, 20px);
  }
}
@media print, screen and (min-width: 1024px) {
  .p-products__merit-heading.is-medium {
    font-size: clamp(16px, 1.19vw, 19px);
  }
}
.p-products__merit-body {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media print, screen and (min-width: 600px) {
  .p-products__merit-body {
    width: 70.5%;
    padding-left: 1.95%;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-products__merit-body {
    padding-left: 25px;
  }
}
.p-products__merit-text .p-products__merit-num {
  color: #0079c0;
  font-weight: 700;
  font-size: clamp(15px, 4.28vw, 18px);
  display: block;
}
.p-products__merit-text + p {
  margin-top: 0.5em;
}

.p-products__whisker {
  background-color: #fff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  margin-top: 30px;
}
@media print, screen and (min-width: 600px) {
  .p-products__whisker {
    margin-top: clamp(35px, 3.86vw, 65px);
  }
}
@media print, screen and (min-width: 600px) {
  .p-products__whisker-heading {
    display: flex;
  }
}
.p-products__whisker-heading--main {
  position: relative;
  display: flex;
  align-items: center;
  width: 190px;
  padding: 0.3em 0.7em;
  background-color: #0079c0;
  color: #fff;
  font-weight: 700;
  font-size: clamp(17px, 5.23vw, 22px);
}
@media print, screen and (min-width: 600px) {
  .p-products__whisker-heading--main {
    width: 35%;
    padding: 0.9em 1em 0.9em clamp(20px, 4vw, 88px);
  }
}
@media print, screen and (min-width: 1024px) {
  .p-products__whisker-heading--main {
    font-size: clamp(28px, 2.8vw, 36px);
    padding: 23px 1em 19px clamp(20px, 4vw, 88px);
  }
}
.p-products__whisker-heading--main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: clamp(20px, 2.5vw, 28px);
  height: 100%;
  background-color: #0079c0;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
@media print, screen and (min-width: 1024px) {
  .p-products__whisker-heading--main::after {
    font-size: clamp(28px, 2.8vw, 36px);
    width: clamp(30px, 2.38vw, 40px);
  }
}
.p-products__whisker-heading--sub {
  color: #0079c0;
  font-weight: 700;
  font-size: clamp(15px, 4.28vw, 18px);
  display: block;
  padding: 0.5em 0.5em 0;
}
@media print, screen and (min-width: 600px) {
  .p-products__whisker-heading--sub {
    display: flex;
    width: 65%;
    align-items: center;
    padding-left: 2em;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-products__whisker-heading--sub {
    font-size: clamp(20px, 1.54vw, 26px);
    padding: 0 0 0 clamp(40px, 3.57vw, 60px);
  }
}
.p-products__whisker-inner {
  padding: 20px 25px;
}
@media print, screen and (min-width: 600px) {
  .p-products__whisker-inner {
    padding: 26px 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-products__whisker-inner {
    padding: 31px 45px;
  }
}
.p-products__whisker-text {
  line-height: 2;
}
.p-products__whisker-test {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
}
@media print, screen and (min-width: 1024px) {
  .p-products__whisker-test {
    justify-content: space-between;
    row-gap: 50px;
  }
}
.p-products__whisker-test-heading, .p-products__whisker-longtime-heading {
  color: #0079c0;
  font-weight: 700;
  font-size: clamp(15px, 4.25vw, 17px);
}
@media print, screen and (min-width: 1024px) {
  .p-products__whisker-test-heading, .p-products__whisker-longtime-heading {
    font-size: clamp(18px, 1.3vw, 22px);
  }
}
.p-products__whisker-test-item {
  width: 100%;
}
@media print, screen and (min-width: 1024px) {
  .p-products__whisker-test-item {
    width: 46.72%;
    height: stretch;
    display: flex;
    flex-wrap: wrap;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-products__whisker-test-text {
    margin-top: 10px;
    font-size: clamp(13px, 0.952vw, 16px);
  }
}
.p-products__whisker-longtime .p-products__whisker-test-heading {
  margin-top: 20px;
}
@media print, screen and (min-width: 1024px) {
  .p-products__whisker-longtime .p-products__whisker-test-heading {
    margin-top: 38px;
  }
}
.p-products__whisker-longtime .p-products__whisker-test-text {
  margin-top: 10px;
  padding-bottom: 1em;
  border-bottom: 1px dotted #0079c0;
  line-height: 1.75;
}
.p-products__whisker-result {
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 1024px) {
  .p-products__whisker-result {
    justify-content: space-between;
  }
}
.p-products__whisker-test-body {
  width: 100%;
}
@media print, screen and (min-width: 1024px) {
  .p-products__whisker-test-body {
    width: 50%;
    padding-right: 2em;
  }
}
.p-products__whisker-test-table {
  width: 100%;
  margin-top: 10px;
}
@media print, screen and (min-width: 1024px) {
  .p-products__whisker-test-table {
    width: 46.5%;
    margin-top: 38px;
  }
}
.p-products__whisker-test-table-inner {
  width: 100%;
  border-top: 1px solid #707070;
  border-left: 1px solid #707070;
  border-collapse: collapse;
}
.p-products__whisker-test-table-inner th,
.p-products__whisker-test-table-inner td {
  text-align: center;
  width: 50%;
  font-weight: 700;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
@media print, screen and (min-width: 1024px) {
  .p-products__whisker-test-table-inner th,
  .p-products__whisker-test-table-inner td {
    font-size: 15px;
  }
}
.p-products__whisker-test-table-inner th {
  color: #fff;
  background-color: #707070;
}
@media print, screen and (min-width: 1024px) {
  .p-products__whisker-test-result {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.p-products__whisker-result-text {
  margin-top: 10px;
  line-height: 1.75;
}
@media print, screen and (min-width: 1024px) {
  .p-products__whisker-test-table-caption {
    font-size: 14px;
  }
}
.p-products__whisker-test-detail {
  margin-top: 20px;
  background-color: #f7f7f7;
  padding: 25px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 35px;
}
@media print, screen and (min-width: 1280px) {
  .p-products__whisker-test-detail {
    padding: 28px 28px 24px 28px;
  }
}
@media print, screen and (min-width: 600px) {
  .p-products__whisker-test-detail-item {
    width: 47%;
  }
}
@media print, screen and (min-width: 1280px) {
  .p-products__whisker-test-detail-item {
    width: 46.5%;
    display: flex;
    justify-content: space-between;
  }
}
.p-products__whisker-test-detail-img {
  text-align: center;
}
@media print, screen and (min-width: 1280px) {
  .p-products__whisker-test-detail-img {
    text-align: left;
    width: 49.8%;
  }
}
.p-products__whisker-test-detail-img img {
  display: inline-block;
}
.p-products__whisker-test-detail-img figcaption {
  font-size: 90%;
}
@media print, screen and (min-width: 1280px) {
  .p-products__whisker-test-detail-img figcaption {
    white-space: nowrap;
  }
}
.p-products__whisker-test-detail-text {
  margin-top: 0.8em;
  line-height: 1.75;
}
@media print, screen and (min-width: 1280px) {
  .p-products__whisker-test-detail-text {
    width: 50%;
    padding-left: 1.5em;
    margin-top: 0;
  }
}

@media print, screen and (min-width: 1024px) {
  .p-products__feature {
    display: flex;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-products__feature-list {
    width: 48.75%;
  }
}
.p-products__feature-list li {
  text-indent: -1em;
  margin-left: 1em;
  margin-top: 0.5em;
  line-height: 1.75;
}
@media print, screen and (min-width: 1024px) {
  .p-products__feature-list li {
    margin-top: 1em;
  }
}
.p-products__feature-list li:first-of-type {
  margin-top: 0;
}
.p-products__feature-img {
  margin-top: 20px;
}
@media print, screen and (min-width: 600px) {
  .p-products__feature-img {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 15px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-products__feature-img {
    justify-content: flex-start;
    width: 51.25%;
    margin-top: 0;
  }
}
.p-products__feature-img img {
  display: inline-block;
}
.p-products__feature-img .c-img-card {
  margin: 0 auto;
}
@media print, screen and (min-width: 600px) {
  .p-products__feature-img .c-img-card {
    margin: 0;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-products__feature-img .c-img-card {
    width: 50%;
  }
}
.p-products__feature-img .c-img-card--caption {
  width: 100%;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .p-products__feature-img .c-img-card--caption {
    text-align: left;
    margin-top: 4px;
  }
}

.p-products__whisker-cards {
  display: grid;
}
@media print, screen and (min-width: 600px) {
  .p-products__whisker-cards {
    margin-top: 20px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "own-top other-top" "own-btm other-btm";
  }
  .p-products__whisker-cards > :nth-child(1) {
    grid-area: own-top;
  }
  .p-products__whisker-cards > :nth-child(2) {
    grid-area: own-btm;
  }
  .p-products__whisker-cards > :nth-child(3) {
    grid-area: other-top;
  }
  .p-products__whisker-cards > :nth-child(4) {
    grid-area: other-btm;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-products__whisker-cards {
    margin-top: 28px;
  }
}

.p-products__nickel {
  padding: 40px 20px 60px;
}
@media print, screen and (min-width: 600px) {
  .p-products__nickel {
    padding: 60px 30px 80px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-products__nickel {
    padding: 97px 50px 120px;
  }
}

.p-products__tin {
  padding: 40px 20px 40px;
}
@media print, screen and (min-width: 600px) {
  .p-products__tin {
    padding: 60px 30px 60px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-products__tin {
    padding: 93px 50px 80px;
  }
}

.p-products__aluminum {
  padding: 40px 20px 260px;
}
@media print, screen and (min-width: 600px) {
  .p-products__aluminum {
    padding: 60px 30px 280px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-products__aluminum {
    padding: 97px 50px clamp(300px, 18.22vw, 350px);
  }
}

.p-products__whisker-video {
  margin: 30px auto 0;
  max-width: 700px;
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
}
@media print, screen and (min-width: 600px) {
  .p-products__whisker-video {
    margin: 50px auto 50px;
  }
}
.p-products__whisker-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-top-case-study {
  padding: 30px 20px 20px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-case-study {
    padding: clamp(30px, 2.67vw, 50px) 50px clamp(30px, 2.97vw, 40px);
  }
}

.p-top-case-study__wrap {
  padding: 40px 0 80px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-case-study__wrap {
    padding: clamp(50px, 4.17vw, 80px) 0 clamp(80px, 6.25vw, 120px);
  }
}

.p-top-case-study__btn {
  margin-top: 35px;
  text-align: center;
}

.p-production {
  padding: 30px 0;
}
@media print, screen and (min-width: 1024px) {
  .p-production {
    padding: clamp(40px, 2.97vw, 50px) 0 clamp(50px, 3.57vw, 60px);
  }
}
.p-production .l-inner {
  padding: 0 20px;
  max-width: 1380px;
}
@media print, screen and (min-width: 1024px) {
  .p-production .l-inner {
    padding: 0 50px;
  }
}

.p-production__full {
  width: 100%;
  margin-top: 20px;
  background-color: #0079c0;
}
@media print, screen and (min-width: 1024px) {
  .p-production__full {
    margin-top: clamp(20px, 1.78vw, 30px);
  }
}

.p-production__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 960/221;
  overflow: hidden;
}
.p-production__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-production__text-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 30px;
}
@media print, screen and (min-width: 1024px) {
  .p-production__text-wrap {
    padding: clamp(25px, 2.08vw, 35px) 0;
  }
}

.p-production__title {
  text-align: left;
  color: #fff;
  font-weight: 900;
  line-height: 1.52;
  font-size: clamp(18px, 5vw, 20px);
}
@media print, screen and (min-width: 1024px) {
  .p-production__title {
    font-size: clamp(30px, 2.14vw, 36px);
  }
}
@media print, screen and (min-width: 1280px) {
  .p-production__title {
    width: 50%;
  }
}

.p-production__text {
  color: #fff;
  line-height: 2;
  margin-top: 20px;
}
@media print, screen and (min-width: 1280px) {
  .p-production__text {
    margin-top: 0;
    width: 50%;
    padding-left: 2.8em;
  }
}

.p-production__btn {
  margin-top: 20px;
  text-align: right;
  width: 100%;
}
@media print, screen and (min-width: 1024px) {
  .p-production__btn {
    margin-top: 4px;
  }
}

.p-case-study__wrap {
  padding: 40px 20px 220px;
}
@media print, screen and (min-width: 600px) {
  .p-case-study__wrap {
    padding: 50px 30px 280px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-case-study__wrap {
    padding: 52px 50px clamp(300px, 20.3vw, 390px);
  }
}

.p-case-study__tab-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  margin-top: 0;
  padding: 0;
  list-style: none;
  row-gap: 8px;
}
@media print, screen and (min-width: 1024px) {
  .p-case-study__tab-list {
    flex-wrap: nowrap;
    column-gap: clamp(10px, 1.52vw, 22px);
  }
}

.p-case-study__tab-item {
  flex: 0 0 auto;
}
@media print, screen and (min-width: 1024px) {
  .p-case-study__tab-item {
    flex: 1 1 0;
    min-width: 0;
  }
  .p-case-study__tab-item:has([data-tab=all]) {
    flex: 0.6 1 0;
  }
  .p-case-study__tab-item:has([data-tab=zinc]) {
    flex: 1.6 1 0;
  }
}

.p-case-study__tab-btn {
  display: block;
  width: 100%;
  padding: 10px 16px;
  border: 1px solid #0079c0;
  background: none;
  color: #0079c0;
  font-size: clamp(14px, 3.8vw, 16px);
  line-height: 1.4;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
@media print, screen and (min-width: 1024px) {
  .p-case-study__tab-btn {
    padding: 13px clamp(24px, 2.5vw, 40px);
    font-size: clamp(16px, 1.19vw, 20px);
  }
}
.p-case-study__tab-btn.is-active {
  border-color: #0068b7;
  background-color: #0068b7;
  color: #fff;
}
.p-case-study__tab-btn:hover {
  background-color: #0079c0;
  color: #fff;
}

.p-case-study__tab-content {
  display: none;
  margin-top: 30px;
}
@media print, screen and (min-width: 1024px) {
  .p-case-study__tab-content {
    margin-top: 52px;
  }
}
.p-case-study__tab-content.is-active {
  display: block;
}

.p-case-study__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px 23px;
  margin-top: 20px;
}
@media print, screen and (min-width: 600px) {
  .p-case-study__list {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.08vw, 40px);
  }
}

.p-case-study__item.is-hidden {
  display: none;
}

.p-case-study__img {
  margin: 0;
  position: relative;
}
.p-case-study__img img {
  display: block;
  width: 100%;
  height: auto;
}
.p-case-study__img figcaption {
  display: inline-block;
  background-color: #e60012;
  color: #fff;
  padding: 0.3em 1em;
  position: absolute;
  top: 0;
  left: 0;
}

.p-case-study__title {
  margin-top: 7px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
@media print, screen and (min-width: 1024px) {
  .p-case-study__title {
    font-size: clamp(15px, 1.07vw, 18px);
  }
}

.p-top-about {
  margin-top: 30px;
  padding-top: clamp(20px, 1.67vw, 30px);
}
@media print, screen and (min-width: 1024px) {
  .p-top-about {
    margin-top: 40px;
    padding-top: 50px;
  }
}
@media print, screen and (min-width: 1280px) {
  .p-top-about {
    padding-top: clamp(50px, 3.92vw, 66px);
    padding-bottom: clamp(70px, 5.11vw, 86px);
  }
}

@media print, screen and (min-width: 1280px) {
  .p-top-about__inner {
    display: flex;
    padding: 0 50px;
    max-width: 1380px;
  }
}

.p-top-about__img {
  width: calc(100% - 40px);
  margin: 0 auto;
  max-width: 640px;
}
@media print, screen and (min-width: 1280px) {
  .p-top-about__img {
    width: 50%;
  }
}

.p-top-about__body {
  padding: 30px 20px 40px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-about__body {
    padding: clamp(50px, 3.92vw, 66px) 50px clamp(70px, 5.11vw, 86px);
  }
}
@media print, screen and (min-width: 1280px) {
  .p-top-about__body {
    width: 50%;
    padding: 0 0 0 clamp(40px, 3.57vw, 60px);
  }
}

.p-top-about__lead {
  margin-top: 30px;
  color: #0079c0;
  font-size: clamp(16px, 4.52vw, 19px);
  line-height: 1.66;
  font-weight: 900;
}
@media print, screen and (min-width: 1024px) {
  .p-top-about__lead {
    font-size: clamp(18px, 1.42vw, 24px);
    margin-top: 50px;
  }
}

.p-top-about__text {
  margin-top: 1.3em;
  line-height: 2;
}

.p-top-about__btn {
  margin-top: 30px;
}
@media print, screen and (min-width: 1024px) {
  .p-top-about__btn {
    margin-top: 35px;
  }
}

.p-page-lead {
  padding: 0 20px;
  margin-top: 20px;
}
@media print, screen and (min-width: 600px) {
  .p-page-lead {
    padding: 0 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-page-lead {
    font-size: clamp(21px, 1.42vw, 24px);
    padding: 0 50px;
    margin-top: 0;
  }
}
.p-page-lead--left {
  text-align: left;
}

.p-top-news {
  padding: clamp(30px, 1vw, 40px) 20px 230px;
}
@media print, screen and (min-width: 600px) {
  .p-top-news {
    padding: 40px 30px 250px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-top-news {
    padding: clamp(60px, 5.29vw, 89px) 50px clamp(300px, 8.8vw, 350px);
  }
}

@media print, screen and (min-width: 1024px) {
  .p-top-news__inner {
    display: flex;
    align-items: flex-start;
  }
}

@media print, screen and (min-width: 1024px) {
  .p-top-news__heading {
    width: 26.3%;
    align-content: stretch;
    height: stretch;
    display: flex;
    flex-wrap: wrap;
  }
}
.p-top-news__heading .c-heading {
  text-align: left;
}
.p-top-news__btn--pc {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  .p-top-news__btn--pc {
    display: flex;
    align-items: flex-end;
    width: 84.3%;
    max-width: 284px;
  }
}
.p-top-news__btn--pc .c-btn {
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  margin-top: 2em;
}

.p-top-news__btn--sp {
  margin-top: 40px;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .p-top-news__btn--sp {
    display: none;
  }
}

.p-news__list {
  margin-top: 30px;
  border-top: 1px solid #707070;
}
@media print, screen and (min-width: 1024px) {
  .p-news__list {
    margin-top: 0;
    width: 73.7%;
    min-height: 160px;
  }
}

.p-news__item {
  border-bottom: 1px solid #707070;
}
.p-news__item.p-news__item--empty {
  padding: 1.5em 0;
}

.p-news__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.7em 50px 0.7em 0.5em;
  position: relative;
}
@media print, screen and (min-width: 1024px) {
  .p-news__link {
    min-height: 65px;
  }
}
.p-news__link::after {
  content: "";
  position: absolute;
  top: calc(50% - 15px);
  right: 0;
  width: 30px;
  height: 30px;
  background: url("../../assets/images/common/icon-arrow01.svg") no-repeat center center #e60012;
  background-size: 14px 11px;
}
@media print, screen and (min-width: 1024px) {
  .p-news__link::after {
    top: calc(50% - 18px);
    width: 37px;
    height: 37px;
    background: url("../../assets/images/common/icon-arrow01.svg") no-repeat center center #e60012;
    background-size: 16px 13px;
  }
}
.p-news__link:hover {
  opacity: 0.7;
}

.p-news__time {
  width: 100%;
  color: #0079c0;
  font-size: clamp(13px, 3.75vw, 15px);
  font-weight: 700;
  line-height: 1.4;
}
@media print, screen and (min-width: 1024px) {
  .p-news__time {
    width: 13%;
  }
}

.p-news__title {
  width: 100%;
  margin-top: 0.3em;
  font-size: clamp(13px, 3.75vw, 15px);
  line-height: 1.4;
}
@media print, screen and (min-width: 1024px) {
  .p-news__title {
    width: 87%;
    margin-top: 0;
  }
}

.p-page-hero {
  margin-top: 85px;
}
@media print, screen and (min-width: 1024px) {
  .p-page-hero {
    font-size: clamp(21px, 1.42vw, 24px);
    margin-top: 0;
  }
}
.p-page-hero--left {
  text-align: left;
}
.p-page-hero + .l-main {
  margin-top: 0;
}
.p-bg-gray {
  background: rgba(0, 0, 0, 0.03);
}

.p-about__greeting {
  padding: 50px 20px 80px;
  background: url("../../assets/images/common/wm02.svg") no-repeat left bottom -2px;
  background-size: 60% auto;
  position: relative;
}
@media print, screen and (min-width: 600px) {
  .p-about__greeting {
    padding: 50px 30px 120px;
    background-size: 48.69% auto;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-about__greeting {
    padding: 100px 50px clamp(140px, 12.5vw, 240px);
  }
}
.p-about__greeting::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  width: 60%;
  height: auto;
  aspect-ratio: 467/94;
  opacity: 0.6;
}
@media print, screen and (min-width: 600px) {
  .p-about__greeting::before {
    width: 48.69%;
  }
}
.p-about__greeting-body {
  margin-top: 2em;
}
@media print, screen and (min-width: 1024px) {
  .p-about__greeting-body {
    margin-top: 40px;
  }
}
.p-about__greeting-text {
  line-height: 2;
  font-weight: 700;
  font-size: clamp(14px, 2.083vw, 16px);
}
@media print, screen and (min-width: 1024px) {
  .p-about__greeting-text {
    font-size: clamp(15px, 1.07vw, 18px);
  }
}
.p-about__greeting-text + .p-about__greeting-text {
  margin-top: 1.5em;
}
.p-about__greeting-name {
  font-weight: 700;
  text-align: right;
  font-size: clamp(18px, 5.71vw, 24px);
}
@media print, screen and (min-width: 1024px) {
  .p-about__greeting-name {
    font-size: clamp(26px, 2.02vw, 34px);
  }
}
.p-about__greeting-name span {
  font-size: clamp(15px, 4.52vw, 19px);
  display: inline-block;
  margin-right: 1em;
}
@media print, screen and (min-width: 1024px) {
  .p-about__greeting-name span {
    font-size: clamp(18px, 1.54vw, 26px);
  }
}

.p-about__company {
  padding: 40px 20px 50px;
}
@media print, screen and (min-width: 600px) {
  .p-about__company {
    padding: 60px 30px 70px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-about__company {
    padding: clamp(80px, 7.38vw, 124px) 50px clamp(90px, 7.85vw, 132px);
  }
}
.p-about__company-table {
  margin-top: 15px;
  border-collapse: separate;
  border-spacing: 5px;
  width: calc(100% + 20px);
  margin-left: -10px;
}
@media print, screen and (min-width: 600px) {
  .p-about__company-table {
    border-spacing: 10px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-about__company-table {
    margin-top: 30px;
  }
}
.p-about__company-table th,
.p-about__company-table td {
  font-size: clamp(14px, 2.083vw, 16px);
  font-weight: 500;
  line-height: 1.7;
  padding: 0.7em 1em;
}
@media print, screen and (min-width: 1024px) {
  .p-about__company-table th,
  .p-about__company-table td {
    font-size: clamp(15px, 1.07vw, 18px);
    padding: 1em 1.5em;
  }
}
.p-about__company-table th {
  background-color: #0079c0;
  color: #fff;
  width: 33%;
}
@media print, screen and (min-width: 1024px) {
  .p-about__company-table th {
    width: 20%;
    padding: 1em 0;
  }
}
.p-about__company-table td {
  background-color: #fff;
}

.p-about__map {
  width: 100%;
  height: 200px;
  position: relative;
}
@media print, screen and (min-width: 600px) {
  .p-about__map {
    height: 100%;
    aspect-ratio: 160/49;
  }
}
.p-about__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-about__history {
  padding: 40px 20px 35px;
}
@media print, screen and (min-width: 600px) {
  .p-about__history {
    padding: 50px 30px 65px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-about__history {
    padding: clamp(70px, 6.54vw, 110px) 50px clamp(70px, 5.65vw, 95px);
  }
}
.p-about__history-list {
  min-width: 500px;
  margin-top: 20px;
  padding-bottom: 10px;
}
@media print, screen and (min-width: 600px) {
  .p-about__history-list {
    margin-top: 40px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-about__history-list {
    margin-top: 52px;
  }
}
.p-about__history-list th,
.p-about__history-list td {
  line-height: 1.7;
  padding: 0.7em 0;
}
.p-about__history-list th {
  vertical-align: text-top;
  white-space: nowrap;
  text-align: left;
  color: #0079c0;
  font-weight: 700;
  font-size: clamp(15px, 4.04vw, 17px);
}
@media print, screen and (min-width: 1024px) {
  .p-about__history-list th {
    font-size: clamp(17px, 1.3vw, 22px);
    width: 110px;
  }
}
.p-about__history-list td {
  display: flex;
  column-gap: 1em;
  align-items: center;
  white-space: nowrap;
  padding-left: 40px;
  position: relative;
}
@media print, screen and (min-width: 1024px) {
  .p-about__history-list td {
    padding-left: 50px;
  }
}
.p-about__history-list td::before {
  content: "";
  position: absolute;
  left: 1em;
  top: 1em;
  width: 16px;
  height: 16px;
  border-radius: 100vw;
  background-color: #0079c0;
}
@media print, screen and (min-width: 1024px) {
  .p-about__history-list td::before {
    width: 25px;
    height: 25px;
    left: 0;
  }
}
.p-about__history-list td::after {
  content: "";
  position: absolute;
  left: 1.5em;
  top: 0;
  width: 1px;
  height: calc(100% + 5px);
  background-color: #0079c0;
}
@media print, screen and (min-width: 1024px) {
  .p-about__history-list td::after {
    height: calc(100% + 13px);
    left: 12px;
  }
}
.p-about__history-list td.p-about__history-item--first::after {
  height: 70%;
  top: 50%;
}
.p-about__history-list td.p-about__history-item--last::after {
  height: calc(100% + 7px);
  top: 0;
}
@media print, screen and (min-width: 1024px) {
  .p-about__history-list td.p-about__history-item--last::after {
    height: calc(100% + 20px);
  }
}
.p-about__history-month {
  white-space: nowrap;
  color: #0079c0;
  font-weight: 700;
  min-width: 2.5em;
  font-size: clamp(15px, 4.04vw, 17px);
}
@media print, screen and (min-width: 1024px) {
  .p-about__history-month {
    font-size: clamp(17px, 1.3vw, 22px);
  }
}
.p-about__history-content {
  font-weight: 500;
  font-size: clamp(14px, 3.8vw, 16px);
}
@media print, screen and (min-width: 1024px) {
  .p-about__history-content {
    font-size: clamp(15px, 1.19vw, 20px);
  }
}

.p-about__awards {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 35px;
}
@media print, screen and (min-width: 600px) {
  .p-about__awards {
    margin-top: 50px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-about__awards {
    margin-top: 64px;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.p-about__awards-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media print, screen and (min-width: 1024px) {
  .p-about__awards-list {
    width: 47.65%;
  }
}
.p-about__awards-title {
  font-weight: 700;
  padding-left: 1.2em;
  width: 100%;
  border-bottom: 1px solid #0079c0;
  padding-bottom: 0.2em;
  position: relative;
  font-size: clamp(15px, 4.28vw, 18px);
}
@media print, screen and (min-width: 1024px) {
  .p-about__awards-title {
    font-size: clamp(19px, 1.42vw, 24px);
  }
}
.p-about__awards-title::before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  background-color: #0079c0;
  position: absolute;
  top: 0.5em;
  left: 0;
}
.p-about__awards-item {
  width: 100%;
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}
.p-about__awards-item dt,
.p-about__awards-item dd {
  margin: 0;
  border-bottom: 1px dotted #0079c0;
  padding: 0.7em 0;
}
.p-about__awards-item dt span,
.p-about__awards-item dd span {
  font-weight: 700;
  color: #0079c0;
  display: block;
  font-size: clamp(15px, 4.28vw, 18px);
}
@media print, screen and (min-width: 1024px) {
  .p-about__awards-item dt span,
  .p-about__awards-item dd span {
    font-size: clamp(19px, 1.42vw, 24px);
    padding-bottom: 0.2em;
  }
}
.p-about__awards-item dt.last,
.p-about__awards-item dd.last {
  border-bottom: none;
  padding-bottom: 0;
}
.p-about__awards-item-title {
  color: #0079c0;
  font-weight: 700;
  width: 35%;
  font-size: clamp(15px, 4.28vw, 18px);
}
@media print, screen and (min-width: 1024px) {
  .p-about__awards-item-title {
    font-size: clamp(19px, 1.42vw, 24px);
  }
}
.p-about__awards-item-description {
  width: 65%;
  font-size: clamp(14px, 3.8vw, 17px);
}
@media print, screen and (min-width: 1024px) {
  .p-about__awards-item-description {
    font-size: clamp(17px, 1.19vw, 20px);
  }
}
.p-about__awards-item-description.p-about__awards-item-description--only {
  width: 100%;
  padding-bottom: 0.75em;
}

.p-about__iso {
  padding: 40px 20px 250px;
}
@media print, screen and (min-width: 600px) {
  .p-about__iso {
    padding: 50px 30px 260px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-about__iso {
    padding: clamp(70px, 5.1vw, 86px) 50px clamp(200px, 17.5vw, 295px);
  }
}
.p-about__iso-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 30px;
}
@media print, screen and (min-width: 600px) {
  .p-about__iso-wrap .p-about__iso-text {
    width: 69.3%;
  }
}
.p-about__iso-text {
  line-height: 2;
}
.p-about__iso-img {
  width: 70%;
  margin: 0 auto;
}
@media print, screen and (min-width: 600px) {
  .p-about__iso-img {
    width: 27.7%;
    margin: 0;
    max-width: 355px;
  }
}

.p-production-system__list {
  background: url("../../assets/images/common/wm02.svg") no-repeat left bottom -2px;
  background-size: 60% auto;
  position: relative;
  padding: 40px 20px 80px;
}
@media print, screen and (min-width: 600px) {
  .p-production-system__list {
    padding: 60px 30px 100px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-production-system__list {
    padding: 86px 50px clamp(110px, 7.8vw, 150px);
    background-size: 48.69% auto;
  }
}
.p-production-system__list::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  width: 60%;
  height: auto;
  aspect-ratio: 467/94;
  opacity: 0.6;
}
@media print, screen and (min-width: 1024px) {
  .p-production-system__list::before {
    width: 48.69%;
  }
}

.p-production-system__list-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 40px;
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 600px) {
  .p-production-system__list-inner {
    row-gap: clamp(50px, 4.86vw, 70px);
  }
}

.p-production-system__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 10px;
  width: 100%;
}
@media print, screen and (min-width: 600px) {
  .p-production-system__item {
    row-gap: 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-production-system__item {
    row-gap: 40px;
  }
}
.p-production-system__item h2 {
  width: 100%;
}

.p-production-system__img {
  width: 100%;
}
@media print, screen and (min-width: 600px) {
  .p-production-system__img {
    width: 52.8%;
  }
}

.p-production-system__body {
  width: 100%;
}
@media print, screen and (min-width: 600px) {
  .p-production-system__body {
    width: 47.2%;
    padding-left: 20px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-production-system__body {
    padding-left: 36px;
  }
}

.p-production-system__text dt,
.p-production-system__text dd {
  margin: 0;
}
.p-production-system__text dt {
  font-weight: 700;
  padding-left: 1.2em;
  width: 100%;
  padding-left: 0;
  color: #0079c0;
  font-size: clamp(15px, 4.28vw, 18px);
}
@media print, screen and (min-width: 1024px) {
  .p-production-system__text dt {
    font-size: clamp(19px, 1.42vw, 24px);
  }
}
.p-production-system__text dd {
  width: 100%;
  padding: 0.3em 0 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 1px dotted #0079c0;
}
@media print, screen and (min-width: 1024px) {
  .p-production-system__text dd {
    padding: 0.3em 0 0.7em;
    margin-bottom: 0.7em;
  }
}
.p-production-system__text dd:last-of-type {
  margin-bottom: 0;
}

.p-production-system__machine {
  padding: 40px 20px 220px;
}
@media print, screen and (min-width: 600px) {
  .p-production-system__machine {
    padding: 50px 30px 240px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-production-system__machine {
    padding: 78px 50px clamp(200px, 19.6vw, 376px);
  }
}
.p-production-system__machine-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 40px;
}
@media print, screen and (min-width: 600px) {
  .p-production-system__machine-list {
    row-gap: 20px;
    margin-top: clamp(30px, 2.64vw, 40px);
  }
}
.p-production-system__machine-item {
  width: 100%;
}
@media print, screen and (min-width: 600px) {
  .p-production-system__machine-item {
    width: 47.8%;
  }
}
@media print, screen and (min-width: 600px) {
  .p-production-system__machine-item figcaption {
    font-size: 14px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-production-system__machine-item figcaption {
    font-size: clamp(15px, 1.07vw, 18px);
    margin-top: 5px;
  }
}

.p-production-system__equipment {
  padding: 40px 20px 220px;
}
@media print, screen and (min-width: 600px) {
  .p-production-system__equipment {
    padding: 50px 30px 240px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-production-system__equipment {
    padding: 78px 50px clamp(200px, 19.6vw, 376px);
  }
}

.p-production-system__line-list span {
  margin-bottom: 0.8em;
  display: inline-block;
  padding-left: 1em;
}
.p-production-system__line-list span:last-of-type {
  margin-bottom: 0;
}

.p-news .l-diagonal-wrap {
  padding-bottom: 240px;
}
@media print, screen and (min-width: 1024px) {
  .p-news .l-diagonal-wrap {
    padding-bottom: clamp(280px, 17vw, 327px);
  }
}

.p-news__wrap {
  padding: 0 20px;
  padding-bottom: 12px;
}
@media print, screen and (min-width: 600px) {
  .p-news__wrap {
    padding: 0 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-news__wrap {
    padding: 0 50px;
  }
}
.p-news__wrap .l-inner {
  margin-top: 25px;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 10px 20px 40px;
}
@media print, screen and (min-width: 600px) {
  .p-news__wrap .l-inner {
    margin-top: 55px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-news__wrap .l-inner {
    padding: 87px clamp(40px, 5.35vw, 90px) 55px;
  }
}
.p-news__wrap .p-news__list {
  width: 100%;
}
.p-news-single .l-diagonal-wrap {
  padding-bottom: 240px;
}
@media print, screen and (min-width: 1024px) {
  .p-news-single .l-diagonal-wrap {
    padding-bottom: clamp(280px, 17vw, 327px);
  }
}

.p-news-single__wrap {
  padding: 0 20px;
  padding-bottom: 12px;
}
@media print, screen and (min-width: 600px) {
  .p-news-single__wrap {
    padding: 0 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-news-single__wrap {
    padding: 0 50px;
  }
}
.p-news-single__wrap .l-inner {
  margin-top: 25px;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 10px 20px 40px;
}
@media print, screen and (min-width: 600px) {
  .p-news-single__wrap .l-inner {
    margin-top: 55px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-news-single__wrap .l-inner {
    padding: 58px 40px;
  }
}

.p-news-single__time {
  display: inline-block;
  font-size: clamp(14px, 3.8vw, 16px);
}
@media print, screen and (min-width: 600px) {
  .p-news-single__time {
    font-size: clamp(16px, 2vw, 20px);
  }
}
@media print, screen and (min-width: 1024px) {
  .p-news-single__time {
    font-size: clamp(20px, 1.42vw, 24px);
  }
}

.p-news-single__title {
  font-weight: 700;
  line-height: 1.66;
  font-size: clamp(17px, 4.76vw, 20px);
}
@media print, screen and (min-width: 600px) {
  .p-news-single__title {
    font-size: clamp(20px, 2.4vw, 24px);
  }
}
@media print, screen and (min-width: 1024px) {
  .p-news-single__title {
    font-size: clamp(25px, 1.9vw, 32px);
  }
}

.p-news-single__content {
  margin-top: 30px;
}
@media print, screen and (min-width: 600px) {
  .p-news-single__content {
    margin-top: 45px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-news-single__content {
    margin-top: 58px;
  }
}
.p-news-single__content > *:first-child {
  margin-top: 0 !important;
}
.p-news-single__content h2 {
  color: #fff;
  background-color: #0079c0;
  border-left: 10px solid #e60012;
  font-size: clamp(14px, 4.04vw, 17px);
  padding: 0.4em 0.8em 0.3em;
  line-height: 1.66;
  font-weight: 700;
  margin: 1.2em 0 1em;
}
@media print, screen and (min-width: 1024px) {
  .p-news-single__content h2 {
    font-size: clamp(17px, 1.19vw, 20px);
    border-width: 16px;
    margin: 3em 0 2em;
  }
}
.p-news-single__content h3 {
  font-size: clamp(13px, 3.8vw, 16px);
  font-weight: 700;
  border-bottom: 1px solid #0079c0;
  padding-bottom: 0.2em;
  margin: 1.2em 0 1em;
}
@media print, screen and (min-width: 1024px) {
  .p-news-single__content h3 {
    font-size: clamp(16px, 1.07vw, 18px);
    margin: 3em 0 1.5em;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-news-single__content p {
    font-size: clamp(14px, 0.89vw, 15px);
    line-height: 2.13;
  }
}
.p-news-single__content p + p {
  margin-top: 1em;
}
.p-news-single__content p + ul, .p-news-single__content p + ol {
  margin-top: 0.5em;
}
.p-news-single__content ul,
.p-news-single__content ol {
  margin-top: 1em;
}
.p-news-single__content ul li,
.p-news-single__content ol li {
  line-height: 1.45;
  position: relative;
}
.p-news-single__content ul li {
  margin-top: 0.3em;
  padding-left: 1em;
}
.p-news-single__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background-color: #0079c0;
  border-radius: 50%;
}
.p-news-single__content ol {
  list-style-type: decimal;
}
.p-news-single__content ol li {
  margin-top: 0.3em;
  margin-left: 1em;
}
.p-news-single__content .wp-block-image {
  margin-top: 30px;
}
@media print, screen and (min-width: 600px) {
  .p-news-single__content .wp-block-image {
    margin-top: 45px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-news-single__content .wp-block-image {
    margin-top: 70px;
  }
}
.p-news-single__content .wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 10px;
  margin-top: 30px;
}
@media print, screen and (min-width: 600px) {
  .p-news-single__content .wp-block-gallery {
    margin-top: 45px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-news-single__content .wp-block-gallery {
    margin-top: 70px;
  }
}
.p-news-single__content .wp-block-gallery figure {
  width: 100%;
}
@media print, screen and (min-width: 600px) {
  .p-news-single__content .wp-block-gallery figure {
    width: 45.75%;
  }
}
.p-news-single__content figcaption,
.p-news-single__content wp-element-caption {
  font-size: 0.875em;
}
.p-news-single__content a {
  color: #0079c0;
  text-decoration: underline;
}
.p-news-single__content .wp-block-file {
  margin: 1em 0 0;
}

.p-news-single__eyecatch {
  display: block;
  text-align: center;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 600px) {
  .p-news-single__eyecatch {
    margin-bottom: 60px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-news-single__eyecatch {
    margin-bottom: 96px;
  }
}
.p-news-single__eyecatch img {
  display: inline-block;
}

.p-contact .l-diagonal-wrap,
.p-confirm .l-diagonal-wrap,
.p-thanks .l-diagonal-wrap {
  padding-bottom: 240px;
}
@media print, screen and (min-width: 1024px) {
  .p-contact .l-diagonal-wrap,
  .p-confirm .l-diagonal-wrap,
  .p-thanks .l-diagonal-wrap {
    padding-bottom: clamp(280px, 17vw, 327px);
  }
}
.p-contact .wpcf7 form .wpcf7-response-output,
.p-confirm .wpcf7 form .wpcf7-response-output,
.p-thanks .wpcf7 form .wpcf7-response-output {
  margin: 2em auto 1em;
  padding: 0.2em 1em;
  position: relative;
  max-width: 810px;
  text-align: center;
}

.p-contact__body {
  padding: 0 20px;
  margin-top: 30px;
}
@media print, screen and (min-width: 600px) {
  .p-contact__body {
    padding: 0 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-contact__body {
    padding: 0 50px;
    margin-top: 45px;
  }
}

.p-contact__thanks {
  margin-top: 30px;
  padding: 0 20px;
}
@media print, screen and (min-width: 600px) {
  .p-contact__thanks {
    padding: 0 30px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-contact__thanks {
    padding: 0 50px;
    margin-top: 45px;
  }
}
.p-contact__thanks .l-inner {
  max-width: 810px;
  margin: 0 auto;
}
.p-contact__thanks p {
  line-height: 2;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .p-contact__thanks p {
    font-size: clamp(16px, 1.07vw, 18px);
  }
}
.p-contact__thanks p:first-of-type {
  margin-top: 2em;
}
@media print, screen and (min-width: 1024px) {
  .p-contact__thanks p:first-of-type {
    margin-top: 3em;
  }
}
.p-contact__thanks p + p {
  margin-top: 1em;
}
.p-contact__thanks-btn {
  margin-top: 20px;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .p-contact__thanks-btn {
    margin-top: 40px;
  }
}

.p-contact__heading {
  color: #0079c0;
  font-weight: 700;
  text-align: center;
  font-size: clamp(18px, 4.76vw, 20px);
}
@media print, screen and (min-width: 1024px) {
  .p-contact__heading {
    font-size: clamp(20px, 1.66vw, 28px);
  }
}

.p-privacy-policy .l-diagonal-wrap {
  padding-bottom: 240px;
}
@media print, screen and (min-width: 1024px) {
  .p-privacy-policy .l-diagonal-wrap {
    padding-bottom: clamp(280px, 17vw, 327px);
  }
}
.p-privacy-policy__wrap {
  padding: 0 20px;
  margin-top: 30px;
}
@media print, screen and (min-width: 600px) {
  .p-privacy-policy__wrap {
    padding: 0 30px;
    margin-top: 45px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-privacy-policy__wrap {
    padding: 0 50px;
    margin-top: 14px;
  }
}
.p-privacy-policy__content {
  margin-top: 30px;
}
@media print, screen and (min-width: 600px) {
  .p-privacy-policy__content {
    margin-top: 45px;
  }
}
@media print, screen and (min-width: 1024px) {
  .p-privacy-policy__content {
    margin-top: 70px;
  }
}
.p-privacy-policy__content:first-of-type {
  margin-top: 20px;
}
@media print, screen and (min-width: 1024px) {
  .p-privacy-policy__content:first-of-type {
    margin-top: 84px;
  }
}
.p-privacy-policy__content ul {
  list-style: disc;
  padding-left: 1em;
  margin-left: 0.5em;
}
@media print, screen and (min-width: 1024px) {
  .p-privacy-policy__content ul {
    padding-left: 2em;
    margin-left: 0;
  }
}
.p-privacy-policy__content ul li {
  margin-top: 0.3em;
}
.p-privacy-policy__heading {
  color: #0079c0;
  font-weight: 700;
  font-size: clamp(18px, 4.76vw, 20px);
  border-bottom: 1px solid #0079c0;
  padding-bottom: 4px;
}
@media print, screen and (min-width: 1024px) {
  .p-privacy-policy__heading {
    font-size: clamp(20px, 1.66vw, 28px);
    padding-bottom: 8px;
  }
}
.p-privacy-policy__text {
  margin-top: 1em;
  line-height: 2.5;
}
@media print, screen and (min-width: 1024px) {
  .p-privacy-policy__text {
    margin-top: 30px;
  }
}

.c-icon {
  vertical-align: middle;
  color: inherit;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.c-btn--pill {
  border-radius: 100vw;
}

.c-btn--blue {
  background-color: #0079c0;
  color: #fff;
  padding: 12px 40px;
  font-size: clamp(14px, 3.73vw, 16px);
}
@media print, screen and (min-width: 1024px) {
  .c-btn--blue {
    padding: clamp(12px, 1.04vw, 15px) clamp(60px, 4.46vw, 75px);
    font-size: clamp(14px, 0.94vw, 18px);
  }
}
.c-btn--blue:hover {
  opacity: 0.85;
  background-color: #0488d4;
}

.c-btn--arrow {
  color: #fff;
  font-weight: 700;
}
.c-btn--arrow:hover {
  opacity: 0.85;
}
.c-btn--arrow .c-btn__label {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
  border-bottom: 1px solid #fff;
  line-height: 1.5;
}
.c-btn--arrow .c-btn__label::after {
  content: "＞";
  flex-shrink: 0;
  line-height: 1;
}

.c-pagination {
  margin-top: 40px;
}
@media print, screen and (min-width: 1024px) {
  .c-pagination {
    margin-top: 67px;
  }
}
.c-pagination.is-hidden {
  display: none;
}
.c-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.c-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0 8px;
  border: 1px solid #36a8eb;
  border-radius: 100vw;
  background-color: #36a8eb;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
@media print, screen and (min-width: 1024px) {
  .c-pagination .page-numbers {
    font-size: 18px;
    width: 55px;
    height: 55px;
    padding-bottom: 2px;
  }
}
.c-pagination .page-numbers.current {
  border-color: #0079c0;
  background-color: #0079c0;
  color: #fff;
}
.c-pagination .page-numbers:hover {
  border-color: #0079c0;
  color: #fff;
  background-color: #0079c0;
}
.c-pagination .page-numbers.current:hover {
  color: #fff;
}
.c-pagination .page-numbers.dots {
  width: auto;
  min-width: auto;
  padding: 0 4px;
  border: none;
  background-color: transparent;
  color: inherit;
  pointer-events: none;
}
.c-pagination .page-numbers.dots:hover {
  border: none;
  background-color: transparent;
  color: inherit;
}

.c-heading--lv1 {
  width: 100%;
  text-align: center;
}
@media print, screen and (min-width: 600px) {
  .c-heading--lv1 {
    column-gap: 16px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-heading--lv1 {
    column-gap: 23px;
  }
}
.c-heading--lv1 p {
  line-height: 1;
}
.c-heading--lv1 .c-heading--en {
  font-weight: 900;
  font-size: clamp(20px, 6.66vw, 26px);
  color: #0079c0;
}
@media print, screen and (min-width: 600px) {
  .c-heading--lv1 .c-heading--en {
    font-size: clamp(28px, 4vw, 32px);
  }
}
@media print, screen and (min-width: 1024px) {
  .c-heading--lv1 .c-heading--en {
    font-size: clamp(40px, 2.97vw, 50px);
  }
}
.c-heading--lv1 .c-heading--en::first-letter {
  color: #e60012;
}
.c-heading--lv1 .c-heading--ja {
  font-weight: 500;
  color: #3e3937;
  font-size: clamp(12px, 3.58vw, 14px);
  margin-top: 4px;
}
@media print, screen and (min-width: 1024px) {
  .c-heading--lv1 .c-heading--ja {
    font-size: clamp(15px, 1.07vw, 18px);
    margin-top: clamp(12px, 1.07vw, 18px);
  }
}

.c-heading--lv2 {
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
@media print, screen and (min-width: 600px) {
  .c-heading--lv2 {
    column-gap: 16px;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-heading--lv2 {
    column-gap: 23px;
  }
}
.c-heading--lv2 p {
  line-height: 1;
}
.c-heading--lv2 .c-heading--en {
  font-weight: 900;
  font-size: clamp(20px, 6.66vw, 26px);
  color: #0079c0;
  display: inline-block;
}
@media print, screen and (min-width: 600px) {
  .c-heading--lv2 .c-heading--en {
    font-size: clamp(28px, 4vw, 32px);
  }
}
@media print, screen and (min-width: 1024px) {
  .c-heading--lv2 .c-heading--en {
    font-size: clamp(40px, 2.97vw, 50px);
  }
}
.c-heading--lv2 .c-heading--en::first-letter {
  color: #e60012;
}
.c-heading--lv2 .c-heading--ja {
  display: inline-block;
  font-weight: 500;
  color: #3e3937;
  font-size: clamp(12px, 3.58vw, 14px);
  margin-top: 4px;
}
@media print, screen and (min-width: 1024px) {
  .c-heading--lv2 .c-heading--ja {
    font-size: clamp(12px, 0.95vw, 16px);
    margin-top: 0;
  }
}

.c-heading--left {
  text-align: left;
}

.c-heading--lv3 {
  color: #fff;
  background-color: #0079c0;
  border-left: 10px solid #e60012;
  font-size: clamp(15px, 4.5vw, 18px);
  padding: 0.4em 0.8em;
  line-height: 1.66;
  font-weight: 700;
}
@media print, screen and (min-width: 1024px) {
  .c-heading--lv3 {
    font-size: clamp(18px, 1.42vw, 24px);
    border-width: 18px;
  }
}

.c-heading--lv4 {
  border-bottom: 1px solid #0079c0;
  padding: 0 1em 0.2em 1.2em;
  position: relative;
  font-weight: 700;
  margin: 28px 0 18px;
  font-size: clamp(15px, 4.5vw, 18px);
}
@media print, screen and (min-width: 1024px) {
  .c-heading--lv4 {
    font-size: clamp(18px, 1.42vw, 24px);
    margin: 44px 0 25px;
  }
}
.c-heading--lv4::before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  background-color: #0079c0;
  position: absolute;
  top: 0.55em;
  left: 0;
}

.c-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.c-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-fade-in {
  animation: c-fade-in-show 0.6s ease forwards;
}

@keyframes c-fade-in-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.js-scroll-top {
  animation: c-fade-up-show 0.6s ease forwards;
}

.p-page-hero.js-fade-in ~ .l-main .js-scroll-top {
  animation: c-fade-up-show 0.6s ease 0.3s both;
}

@keyframes c-fade-up-show {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .js-scroll-top {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .js-fade-in {
    animation: none;
    opacity: 1;
  }
}
.c-lead {
  text-align: center;
  margin-top: 40px;
}
@media print, screen and (min-width: 1024px) {
  .c-lead {
    margin-top: 60px;
  }
}
.c-lead--main {
  color: #0079c0;
  font-weight: 900;
  font-size: clamp(19px, 1.25vw, 24px);
  line-height: 1.625;
}
@media print, screen and (min-width: 1024px) {
  .c-lead--main {
    font-size: clamp(26px, 1.9vw, 32px);
  }
}
.c-lead--sub {
  margin-top: 2em;
  line-height: 2.33;
  font-weight: 700;
  font-size: clamp(14px, 2.083vw, 16px);
}
@media print, screen and (min-width: 1024px) {
  .c-lead--sub {
    font-size: clamp(16px, 1.04vw, 18px);
    margin-top: 38px;
  }
}
.c-lead--coming {
  border: 1px solid #0079c0;
  text-align: center;
  color: #9dd0ee;
  font-weight: 900;
  padding: 0.5em;
  font-size: clamp(14px, 4.28vw, 18px);
  line-height: 1.625;
}
@media print, screen and (min-width: 1024px) {
  .c-lead--coming {
    font-size: clamp(36px, 2.39vw, 46px);
  }
}

.c-img-card {
  max-width: 511px;
}
.c-img-card__img {
  width: 100%;
  border: 1px solid;
  border-top: none;
  padding: 10px;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .c-img-card__img {
    padding: 12px;
  }
}
.c-img-card .c-img-card__heading {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and (min-width: 600px) {
  .c-img-card .c-img-card__heading {
    height: 36px;
  }
}
.c-img-card--blue .c-img-card__heading {
  background-color: #0079c0;
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 0.2em 0.5em;
}
.c-img-card--blue .c-img-card__img {
  border-color: #0079c0;
}
.c-img-card--blue.c-img-card--top {
  margin-top: 10px;
}
@media print, screen and (min-width: 600px) {
  .c-img-card--blue.c-img-card--top {
    margin-top: 0;
  }
}
.c-img-card--gray .c-img-card__heading {
  background-color: #707070;
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 0.2em 0.5em;
}
@media print, screen and (min-width: 600px) {
  .c-img-card--gray .c-img-card__heading--small {
    font-size: clamp(11px, 0.9vw, 13px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media print, screen and (min-width: 1024px) {
  .c-img-card--gray .c-img-card__heading--small {
    font-size: clamp(0.9rem, 0.9vw, 13px);
  }
}
.c-img-card--gray .c-img-card__img {
  border-color: #707070;
}
.c-img-card--gray.c-img-card--top {
  margin-top: 20px;
}
@media print, screen and (min-width: 600px) {
  .c-img-card--gray.c-img-card--top {
    margin-top: 0;
  }
}
.c-img-card--caption {
  font-size: 12px;
  line-height: 1.5;
}
@media print, screen and (min-width: 1024px) {
  .c-img-card--caption {
    font-size: clamp(12px, 0.83vw, 14px);
  }
}
.c-img-card img {
  display: inline-block;
}

@media print, screen and (min-width: 1024px) {
  .c-img-card__heading {
    min-height: 29px;
  }
}

.c-scroll-container {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 15px;
}
@media print, screen and (min-width: 1024px) {
  .c-scroll-container {
    overflow-x: visible;
    margin-top: 30px;
  }
}
.c-scroll-container__hint {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px 8px 48px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9) 45%, #fff 70%);
  color: #0079c0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
}
@media print, screen and (min-width: 1024px) {
  .c-scroll-container__hint {
    display: none;
  }
}
.c-scroll-container__hint-icon {
  display: inline-block;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background: url(../../assets/images/common/icon-arrow01.svg) no-repeat center center;
  background-size: contain;
  transform: rotate(-90deg);
  animation: c-scroll-hint-bounce 1.5s ease-in-out infinite;
}
.c-scroll-container.is-scrolled .c-scroll-container__hint, .c-scroll-container.is-no-scroll .c-scroll-container__hint {
  opacity: 0;
}
.c-scroll-container.is-scrolled .c-scroll-container__hint .c-scroll-container__hint-icon, .c-scroll-container.is-no-scroll .c-scroll-container__hint .c-scroll-container__hint-icon {
  animation: none;
}

@keyframes c-scroll-hint-bounce {
  0%, 100% {
    transform: rotate(-90deg) translateX(0);
  }
  50% {
    transform: rotate(-90deg) translateX(4px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-scroll-container__hint-icon {
    animation: none;
  }
}
.c-bg-gray {
  background: rgba(0, 0, 0, 0.03);
}

.c-form {
  max-width: 810px;
  margin: 0 auto;
}
.c-form__item {
  width: 100%;
  border-bottom: 1px solid #7d7d7d;
  padding-bottom: 12px;
  margin-bottom: 18px;
}
@media print, screen and (min-width: 1024px) {
  .c-form__item {
    padding-bottom: 20px;
    margin-bottom: 28px;
  }
}
.c-form__item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.c-form__label {
  font-size: clamp(14px, 2.083vw, 16px);
  font-weight: 500;
  line-height: 1.5;
  color: #333;
  border-radius: 0;
}
@media print, screen and (min-width: 1024px) {
  .c-form__label {
    font-size: clamp(16px, 1.04vw, 18px);
  }
}
.c-form__required, .c-form__any {
  display: inline-block;
  background-color: #ff0000;
  padding: 0 1em;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  margin-right: 5px;
}
.c-form__any {
  background-color: #707070;
}
.c-form__input-wrap {
  margin-top: 8px;
  font-size: 16px;
}
@media print, screen and (min-width: 1024px) {
  .c-form__input-wrap {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.5;
  }
}
.c-form__input {
  display: block;
  width: 100%;
  border: 1px solid #7d7d7d;
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  border-radius: 0;
}
@media print, screen and (min-width: 1024px) {
  .c-form__input {
    padding: 12px;
    font-size: 18px;
  }
}
.c-form__input--postal {
  width: 100%;
}
@media print, screen and (min-width: 1024px) {
  .c-form__input--postal {
    max-width: 220px;
  }
}
.c-form__address-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.c-form__address-row .c-form__input--select {
  width: 100%;
}
@media print, screen and (min-width: 1024px) {
  .c-form__address-row .c-form__input--select {
    max-width: 220px;
  }
}
.c-form__address-row .c-btn-address {
  border: 1px solid #7d7d7d;
  background-color: #7d7d7d;
  color: #fff;
  border-radius: 0;
  padding: 0.5em 1em;
  display: inline-block;
  margin-left: 10px;
  height: stretch;
  width: 40%;
  max-width: 170px;
  font-size: 16px;
}
@media print, screen and (min-width: 1024px) {
  .c-form__address-row .c-btn-address {
    font-size: 18px;
  }
}
.c-form__address-row .wpcf7-form-control-wrap {
  width: 100%;
  max-width: 220px;
  margin-top: 0;
}
.c-form {
  /* &__input--postal {
    width: 55%;
    max-width: 220px;
    margin-top: 0;
  }
  &__input--select {
    width: 55%;
    max-width: 220px;
  } */
}
.c-form__input-note {
  margin-top: 5px;
  font-size: 13px;
}
@media print, screen and (min-width: 1024px) {
  .c-form__input-note {
    font-size: 15px;
  }
}
.c-form__textarea {
  width: 100%;
  min-height: 180px;
  border: 1px solid #7d7d7d;
  padding: 10px;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  border-radius: 0;
}
@media print, screen and (min-width: 1024px) {
  .c-form__textarea {
    font-size: 18px;
    min-height: 240px;
    margin-top: 0;
  }
}
.c-form__privacy {
  margin-top: 30px;
  text-align: center;
}
@media print, screen and (min-width: 1024px) {
  .c-form__privacy {
    margin-top: 52px;
  }
}
.c-form__privacy a {
  color: #106ab5;
}
.c-form__btn {
  margin-top: 20px;
  row-gap: 10px;
  display: flex;
  column-gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
  position: relative;
}
@media print, screen and (min-width: 1024px) {
  .c-form__btn {
    margin-top: 37px;
  }
}
.c-form__btn input {
  border-radius: 0;
  position: relative;
}
@media print, screen and (min-width: 1024px) {
  .c-form__btn input {
    font-size: clamp(18px, 1.3vw, 22px);
  }
}
.c-form__btn input[type=submit] {
  border: 1px solid #ffd800;
  background-color: #ffd800;
  padding: 1.1em 4em 1em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.396' height='13.26' viewBox='0 0 13.396 13.26'%3E%3Cpath d='M6.783-6.477v.068L-5.8.187l-.816-1.53L3.128-6.409v-.068l-9.741-5.066.816-1.53Z' transform='translate(6.613 13.073)' fill='%23333'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 23px center;
}
@media print, screen and (min-width: 1024px) {
  .c-form__btn input[type=submit] {
    padding: 0.85em 4.55em 0.75em;
  }
}
.c-form__btn input[type=submit][disabled] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.396' height='13.26' viewBox='0 0 13.396 13.26'%3E%3Cpath d='M6.783-6.477v.068L-5.8.187l-.816-1.53L3.128-6.409v-.068l-9.741-5.066.816-1.53Z' transform='translate(6.613 13.073)' fill='%23bca005'/%3E%3C/svg%3E");
}
.c-form__btn input[type=submit]:hover {
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.c-form__btn input[type=button] {
  border: 1px solid #ccc;
  background-color: #ccc;
  color: #fff;
  padding: 1.1em 4em 1em;
  background-repeat: no-repeat;
  background-position: left 23px center;
  background-image: url("data:image/svg+xml,%3Csvg id='_レイヤー_1' data-name='レイヤー_1' xmlns='http://www.w3.org/2000/svg' version='1.1' width='13.396' height='13.26' viewBox='0 0 13.4 13.3'%3E%3Cpath fill='%23fff' d='M0,6.7H0C0,6.6,12.6,0,12.6,0l.8,1.5L3.7,6.6h0c0,0,9.7,5.1,9.7,5.1l-.8,1.5L0,6.7Z'/%3E%3C/svg%3E");
}
@media print, screen and (min-width: 1024px) {
  .c-form__btn input[type=button] {
    padding: 0.85em 4.55em 0.75em;
  }
}
.c-form__btn input[type=button][disabled] {
  background-image: url("data:image/svg+xml,%3Csvg id='_レイヤー_1' data-name='レイヤー_1' xmlns='http://www.w3.org/2000/svg' version='1.1' width='13.396' height='13.26' viewBox='0 0 13.4 13.3'%3E%3Cpath fill='%23fff' d='M0,6.7H0C0,6.6,12.6,0,12.6,0l.8,1.5L3.7,6.6h0c0,0,9.7,5.1,9.7,5.1l-.8,1.5L0,6.7Z'/%3E%3C/svg%3E");
}
.c-form__btn input[type=button]:hover {
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.c-form__btn .wpcf7-spinner {
  margin: 0;
  position: absolute;
  left: calc(50% - 12px);
  bottom: 0;
}

.c-text--indent {
  padding-left: 1em;
}

.u-display-sp {
  display: block;
}
@media print, screen and (min-width: 1024px) {
  .u-display-sp {
    display: none;
  }
}

.u-display-pc {
  display: none;
}
@media print, screen and (min-width: 1024px) {
  .u-display-pc {
    display: block;
  }
}

.u-display-keep {
  display: inline-block;
}