@charset "UTF-8";
/*
Theme Name: sanyojuki
*/
/*---------------------
Reset
---------------------*/
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

@font-face {
  font-family: "Noto Sans JP";
  font-weight: 700;
  src: url(assets/fonts/NotoSansJP-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 400;
  src: url(assets/fonts/NotoSansJP-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Noto Sans Javanese";
  font-weight: 400;
  src: url(assets/fonts/NotoSansJavanese-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "Inter";
  font-weight: 400;
  src: url(assets/fonts/Inter-VariableFont_opsz,wght.ttf) format("truetype");
}
/*---------------------
base
---------------------*/
html {
  font-size: 16px;
  overflow-x: hidden;
  position: static;
}

body {
  font-size: 1rem;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  font-family: "Noto Sans JP", sans-serif;
  color: #575757;
  position: static;
}

*:focus {
  outline: none;
}

p:empty {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:focus {
  outline: none;
}

a:hover {
  cursor: pointer;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: not-allowed;
  }
}
ul,
ol,
dl,
dt,
dd,
li {
  list-style: none;
}

button,
input {
  border-radius: 0;
}

.breadcrumbs {
  margin-left: 17px;
  width: clamp(20.938rem, 4.102rem + 71.83vw, 68.75rem);
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    margin-left: 0;
  }
}
.breadcrumbs ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.breadcrumbs ul li:last-child {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  flex-shrink: 1;
  min-width: 0;
}
.breadcrumbs ul li:not(:last-child) {
  flex-shrink: 0;
}
.breadcrumbs__separator {
  color: #d9d9d9;
  flex-shrink: 0;
}

.breadcrumb {
  color: #333333;
  font-size: 14px;
}
.breadcrumb a {
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .breadcrumb a:hover {
    opacity: 0.6;
  }
}
@media (hover: none) and (pointer: coarse) {
  .breadcrumb a:active {
    opacity: 0.6;
  }
}

.pagination {
  font-size: 21px;
  margin-bottom: 133px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.pagination__item {
  color: #333333;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.9px;
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .pagination__item a:hover {
    opacity: 0.4;
  }
}
@media (hover: none) and (pointer: coarse) {
  .pagination__item a:active {
    opacity: 0.4;
  }
}
.pagination__item--prev, .pagination__item--next {
  color: #fed852;
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .pagination__item--prev:hover, .pagination__item--next:hover {
    opacity: 0.6;
  }
}
@media (hover: none) and (pointer: coarse) {
  .pagination__item--prev:active, .pagination__item--next:active {
    opacity: 0.6;
  }
}
.pagination__item--prev img, .pagination__item--next img {
  margin-top: 6px;
}
.pagination__item.current span {
  position: relative;
}
.pagination__item.current span::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fed852;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

.pagination-page {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.pagination-page__prev {
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .pagination-page__prev:hover {
    opacity: 0.6;
  }
}
@media (hover: none) and (pointer: coarse) {
  .pagination-page__prev:active {
    opacity: 0.6;
  }
}
.pagination-page__next {
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .pagination-page__next:hover {
    opacity: 0.6;
  }
}
@media (hover: none) and (pointer: coarse) {
  .pagination-page__next:active {
    opacity: 0.6;
  }
}
.pagination-page__button {
  font-size: 16px;
  color: #333333;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 246px;
  height: 71px;
  padding: 20px;
  gap: 15px;
  border-radius: 38.5px;
  background: #fff;
  box-shadow: 0 0 10px 0 #cacaca;
  letter-spacing: 5%;
}
.pagination-page__button > img {
  transition: transform 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .pagination-page__button:hover > img {
    transform: translateX(10px);
  }
}
@media (hover: none) and (pointer: coarse) {
  .pagination-page__button:active > img {
    transform: translateX(10px);
  }
}

.return {
  display: none; /* デフォルトで非表示 */
  position: fixed;
  bottom: 24px;
  right: 24px;
  transition: opacity 0.3s ease;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 999;
}
@media (min-width: 1024px) {
  .return {
    display: flex;
  }
}
.return__inner {
  width: 50px;
  height: 50px;
  background: #cacaca;
  box-shadow: 0 0 10px 0 #cacaca;
  border-radius: 50%;
  position: relative;
}
.return__inner::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: auto;
  transition: top 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .return__inner:hover {
    display: block;
  }
  .return__inner:hover::after {
    top: 15px;
  }
}
@media (hover: none) and (pointer: coarse) {
  .return__inner:active {
    display: block;
  }
  .return__inner:active::after {
    top: 15px;
  }
}

.show {
  opacity: 1;
}

.hide {
  opacity: 0;
}

.header {
  position: fixed;
  top: 6px;
  width: calc(100vw - clamp(1.25rem, 0.92rem + 1.41vw, 2.188rem) - clamp(1.25rem, 0.92rem + 1.41vw, 2.188rem));
  margin: 0 auto;
  left: 0;
  right: 0;
  border-radius: 38.5px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .header {
    top: 16px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 10.5px 40px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo img {
  width: clamp(12.375rem, 10.879rem + 6.38vw, 16.625rem);
  height: auto;
  object-fit: cover;
}
@media (hover: hover) and (pointer: fine) {
  .header__logo:hover {
    opacity: 0.6;
  }
}
@media (hover: none) and (pointer: coarse) {
  .header__logo:active {
    opacity: 0.6;
  }
}
.header__circle {
  width: 8px;
  height: 8px;
  background-color: #fed852;
  border-radius: 50%;
  transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease;
}
.header__contact {
  border-radius: 38.5px;
  width: 217px;
  height: 56px;
  padding: 18px 40px;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  letter-spacing: 5%;
  background: linear-gradient(102deg, #e8202a -43.38%, #fed852 71.57%);
}
.header__contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: block;
  background: linear-gradient(95deg, #e8202a 0%, #fed852 113.32%);
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .header__contact:hover::before {
    opacity: 1;
  }
}
@media (hover: none) and (pointer: coarse) {
  .header__contact:active::before {
    opacity: 1;
  }
}
.header__wrapper {
  display: none;
}
.header__wrapper ul {
  display: flex;
  gap: clamp(0.625rem, -3.361rem + 7.21vw, 3.125rem);
}
.header__wrapper li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
@media (hover: hover) and (pointer: fine) {
  .header__wrapper li a:hover .header__circle {
    width: 100%;
    height: 4px;
    border-radius: 2px;
  }
}
@media (hover: none) and (pointer: coarse) {
  .header__wrapper li a:active .header__circle {
    width: 100%;
    height: 4px;
    border-radius: 2px;
  }
}
.header__wrapper li p {
  font-weight: 700;
  color: #333333;
  text-decoration: none;
  font-size: clamp(0.875rem, 0.567rem + 0.48vw, 1rem);
  letter-spacing: 0.1em;
}
@media screen and (min-width: 885px) {
  .header__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.625rem, -3.361rem + 7.21vw, 3.125rem);
  }
}
.header__icon {
  position: relative;
  z-index: 2;
  width: 27px;
  height: 20px;
}
.header__icon img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.header__link {
  position: relative;
  z-index: 2;
}
.header__copyright {
  font-size: 12px;
  color: #666;
  margin-top: 20px;
}
.header__humberger-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 466px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 0 0 20px 20px;
  z-index: 49;
  padding: 110px 15px 50px 15px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header__humberger-menu.is-active {
  display: flex;
}
.header__humberger-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 217px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 15px;
}
.header__humberger-menu li {
  margin-bottom: 25px;
}
.header__humberger-menu li:last-child {
  margin-bottom: 30px;
}
.header__nav-link {
  color: #333;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  position: relative;
}
.header__nav-link::after {
  display: block;
  content: url(./assets/img/icon/ico_arrow_info_right.svg);
  position: absolute;
  right: -20px;
  bottom: -4px;
}
@media (hover: hover) and (pointer: fine) {
  .header__nav-link:hover {
    opacity: 0.6;
  }
}
@media (hover: none) and (pointer: coarse) {
  .header__nav-link:active {
    opacity: 0.6;
  }
}

.hamburger-menu {
  display: block;
  cursor: pointer;
  z-index: 5;
}
@media screen and (min-width: 885px) {
  .hamburger-menu {
    display: none;
  }
}
.hamburger-menu__wrapper {
  width: 44px;
  height: 44px;
  background-color: #fed852;
  border-radius: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-content: center;
  align-items: center;
}
.hamburger-menu__line {
  display: block;
  width: 16px;
  height: 3px;
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.3s;
}
.hamburger-menu.is-active .hamburger-menu__line:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.hamburger-menu.is-active .hamburger-menu__line:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.is-active .hamburger-menu__line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mainvisual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 77px;
  margin-bottom: auto;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .mainvisual {
    margin-top: 0;
    flex-direction: row;
    margin-bottom: 90px;
  }
}
.mainvisual__img {
  width: 95%;
  height: auto;
  margin: 0 0 0 auto;
  flex-shrink: 0;
  border-radius: 10px 0 0 10px;
}
.mainvisual__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}
@media screen and (min-width: 768px) {
  .mainvisual__img img {
    border-radius: 20px;
  }
}
@media screen and (min-width: 768px) {
  .mainvisual__img {
    width: clamp(22.188rem, 8.807rem + 57.09vw, 60.188rem);
    height: clamp(14.563rem, 4.659rem + 42.25vw, 42.688rem);
    margin-top: 40px;
    margin-right: 40px;
    border-radius: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .mainvisual__img {
    margin-right: auto;
  }
}
.mainvisual__heading {
  margin-left: auto;
  margin-right: auto;
  position: static;
  z-index: 2;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .mainvisual__heading {
    margin-left: 40px;
    margin-right: -410px;
  }
}
@media screen and (min-width: 1280px) {
  .mainvisual__heading {
    margin-left: auto;
  }
}
@media screen and (min-width: 1440px) {
  .mainvisual__heading {
    margin-right: calc(clamp(25.625rem, -17.5rem + 47.92vw, 40rem) * -1);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mainvisual__heading {
    margin-top: 45px;
  }
}
.mainvisual__title {
  font-weight: 700;
  font-size: clamp(2.625rem, 0.908rem + 7.32vw, 7.5rem);
  color: #fed852;
}
.mainvisual__title span {
  font-size: clamp(4.375rem, 2.614rem + 7.51vw, 9.375rem);
  vertical-align: top;
  margin-left: -20px;
}
@media screen and (min-width: 768px) {
  .mainvisual__title span {
    vertical-align: bottom;
    margin-left: calc(clamp(1.875rem, -1.202rem + 4.81vw, 3.125rem) * -1);
  }
}
@media screen and (min-width: 768px) {
  .mainvisual__title {
    font-size: clamp(3.125rem, -4.567rem + 12.02vw, 6.25rem);
  }
  .mainvisual__title span {
    font-size: clamp(4.375rem, -4.856rem + 14.42vw, 8.125rem);
  }
}
.mainvisual__campany {
  display: none;
  font-size: clamp(1.25rem, 1.03rem + 0.94vw, 1.875rem);
  font-weight: 700;
  letter-spacing: 6px;
  position: absolute;
  bottom: 0;
  left: clamp(1.875rem, -8.976rem + 46.3vw, 20.625rem);
  color: #fff;
}
.mainvisual__campany span {
  font-size: clamp(0.875rem, 0.787rem + 0.38vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 3.6px;
}
@media screen and (min-width: 768px) {
  .mainvisual__campany {
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 300px;
    position: static;
    color: #575757;
  }
}

.background-image {
  position: relative;
}
.background-image__sp {
  display: block;
  background-image: url(./assets/img/img/mv_sp_bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0% 0%;
  width: 100%;
  z-index: -1;
  height: clamp(34.375rem, 4.48rem + 127.55vw, 65.625rem);
  position: absolute;
  top: -77px;
}
@media screen and (min-width: 768px) {
  .background-image__sp {
    display: none;
  }
}
.background-image__two {
  display: none;
  flex-direction: column;
  position: absolute;
  background-image: url(./assets/img/img/img_background_yerrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0% 0%;
  width: 100%;
  height: 385px;
  z-index: -1;
}
.background-image__two::before {
  content: "";
  position: absolute;
  top: 350px;
  right: 0;
  width: 100%;
  height: 895px;
  padding-bottom: 30%;
  background-image: url(./assets/img/img/img_background_red.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  pointer-events: none;
  transition: position 0.3s ease;
  z-index: -1;
}
.background-image__two.is-fixed::before {
  position: fixed;
  top: -350px;
  right: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .background-image__two {
    display: flex;
  }
}

.background-image-MV {
  position: relative;
}
.background-image-MV__red::before {
  content: "";
  display: none;
  position: fixed;
  top: -350px;
  right: 0;
  width: 100%;
  height: 895px;
  padding-bottom: 30%;
  background-image: url(./assets/img/img/img_background_red.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  pointer-events: none;
  transition: position 0.3s ease;
  z-index: -1;
}
.background-image-MV__red.is-fixed::before {
  position: fixed;
  top: -350px;
  right: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .background-image-MV__red::before {
    display: block;
  }
}

.background-image-child {
  position: relative;
}
.background-image-child__red::before {
  display: none;
  content: "";
  position: fixed;
  top: -450px;
  right: 0;
  width: 100%;
  height: 895px;
  padding-bottom: 30%;
  background-image: url(./assets/img/img/img_background_red.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  pointer-events: none;
  transition: position 0.3s ease;
  z-index: -1;
}
.background-image-child__red.is-fixed::before {
  position: fixed;
  top: -450px;
  right: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .background-image-child__red::before {
    display: block;
  }
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  border-radius: 20px;
  background: url(./assets/img/img/bg_contact_sp.jpg) no-repeat;
  background-size: cover;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .contact {
    border-radius: 60px;
    padding: 114px 0;
    line-height: 1.8;
    background: url(./assets/img/img/bg_contact_pc.jpg) no-repeat;
  }
}
.contact__top {
  margin: 0 auto;
  width: calc(100% - 40px);
  max-width: 1296px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 540px) and (max-width: 768px) {
  .contact__top {
    margin: clamp(15rem, -4.243rem + 57.02vw, 23.125rem) auto 0;
  }
}
@media screen and (min-width: 1024px) {
  .contact__top {
    margin: 370px auto 0;
  }
}
@media screen and (min-width: 1280px) {
  .contact__top {
    margin: 270px auto 0;
  }
}
.contact__machinery {
  margin-top: 50px;
  width: calc(100% - 40px);
  max-width: 1296px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  margin-bottom: clamp(3.75rem, 2.87rem + 3.76vw, 6.25rem);
}
.contact > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.contact__heading {
  display: flex;
  flex-direction: column;
}
.contact__title {
  font-size: 34px;
  letter-spacing: 10%;
  color: #333;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .contact__title {
    font-size: 46px;
  }
}
.contact__ruby {
  font-family: "Noto Sans Javanese", sans-serif;
  color: #fed852;
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 14px;
  letter-spacing: 10%;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .contact__ruby {
    font-size: 16px;
  }
}
.contact__ruby::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fed852;
}
.contact__ruby-mt4 {
  font-family: "Noto Sans Javanese", sans-serif;
  color: #fed852;
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 14px;
  letter-spacing: 10%;
  line-height: 1;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .contact__ruby-mt4 {
    font-size: 16px;
  }
}
.contact__ruby-mt4::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fed852;
}
.contact__note {
  color: #333333;
}
.contact__buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .contact__buttons {
    flex-direction: row;
    gap: 32px;
  }
}
.contact__button {
  width: 284px;
  height: 71px;
  padding: 18.5px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background-color: #fff;
  border-radius: 38.5px;
  box-shadow: 0 0 10px 0 #cacaca;
  font-weight: 700;
  letter-spacing: 10%;
}
@media (hover: hover) and (pointer: fine) {
  .contact__button:hover > div {
    transform: translateX(10px);
  }
}
@media (hover: none) and (pointer: coarse) {
  .contact__button:active > div {
    transform: translateX(10px);
  }
}
.contact__button > div {
  transition: transform 0.3s ease-out;
}
.contact__form {
  border-radius: 38.5px;
  width: 284px;
  height: 70px;
  padding: 25px 40px;
  background: linear-gradient(102deg, #e8202a -43.38%, #fed852 71.57%);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  letter-spacing: 5%;
}
.contact__form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: block;
  background: linear-gradient(95deg, #e8202a 0%, #fed852 113.32%);
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .contact__form:hover::before {
    opacity: 1;
  }
}
@media (hover: none) and (pointer: coarse) {
  .contact__form:active::before {
    opacity: 1;
  }
}
.contact__form p {
  position: relative;
  z-index: 2;
}
.contact__icon {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
}
.contact__icon img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.footer {
  position: sticky;
  top: 100dvh;
  width: 100%;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #efefef;
  border-radius: 0 40px 0 0;
  padding: 40px 0 50px 0;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .footer__inner {
    flex-direction: row;
    gap: 119px;
    padding: 60px 0 70px 0;
    border-radius: 0 80px 0 0;
  }
}
.footer__logo {
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .footer__logo:hover {
    opacity: 0.6;
  }
}
@media (hover: none) and (pointer: coarse) {
  .footer__logo:active {
    opacity: 0.6;
  }
}
.footer__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__company {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.05em;
}
.footer__navigation {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer__navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
  }
}
.footer__list > ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  font-weight: 700;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .footer__list > ul {
    flex-direction: row;
    align-items: start;
  }
}
.footer__list > ul > li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (hover: hover) and (pointer: fine) {
  .footer__list > ul > li a:hover {
    opacity: 0.6;
  }
}
@media (hover: none) and (pointer: coarse) {
  .footer__list > ul > li a:active {
    opacity: 0.6;
  }
}
.footer__copy-right {
  background-color: #444444;
  padding: 6px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  letter-spacing: 5%;
}
.footer__copy-right-text {
  color: #fff;
  font-size: 14px;
}

.headline {
  width: 100%;
  min-height: 154px;
  background-color: #f6f6f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-top: 110px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .headline {
    padding-top: 151px;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    min-height: 340px;
    gap: 37px;
  }
}
.headline > div {
  width: clamp(20.938rem, 4.102rem + 71.83vw, 68.75rem);
  display: flex;
  flex-direction: column;
}
.headline__br {
  display: block;
}
@media screen and (min-width: 768px) {
  .headline__br {
    display: none;
  }
}
.headline__title {
  font-size: clamp(2.875rem, 2.655rem + 0.94vw, 3.5rem);
  font-weight: 700;
  color: #333333;
  line-height: 120%;
  letter-spacing: 10%;
}
@media screen and (min-width: 768px) {
  .headline__title {
    line-height: 170%;
  }
}
.headline__subtitle {
  font-family: "Noto Sans Javanese", sans-serif;
  font-weight: 700;
  color: #fed852;
  letter-spacing: 1.6px;
  display: flex;
  justify-content: center;
  gap: 15px;
  width: fit-content;
  line-height: 1;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .headline__subtitle {
    margin-top: 0;
  }
}
.headline__subtitle::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fed852;
}

.page-MV {
  background: linear-gradient(#f6f6f6, rgba(246, 246, 246, 0));
  width: 100%;
  height: clamp(15.375rem, 11.106rem + 18.22vw, 27.5rem);
}
.page-MV img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(1.25rem, -0.07rem + 5.63vw, 5rem) 0;
}

.information-list {
  max-width: 1100px;
  margin: 60px auto;
  display: flex;
  gap: 20px;
  padding-left: 20px;
  padding-right: 20px;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .information-list {
    padding-left: 0;
    padding-right: 0;
    flex-direction: row;
    gap: 100px;
    margin: 100px auto;
    justify-content: center;
  }
}
@media screen and (min-width: 1280px) {
  .information-list {
    justify-content: space-between;
  }
}
.information-list__flex {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .information-list__flex {
    align-items: flex-end;
  }
}
.information-list__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .information-list__list {
    width: clamp(20.938rem, 13.521rem + 31.64vw, 42rem);
  }
}
.information-list__heading {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
  text-align: start;
  padding: 16px 20px;
  position: relative;
  transition: border-bottom-color 0.3s ease;
  display: block;
}
.information-list__heading::after {
  position: absolute;
  top: 50%;
  bottom: 50%;
  right: 20px;
  content: url(./assets/img/icon/ico_arrow_info_right.svg);
  display: block;
  transition: right 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .information-list__heading:hover {
    border-bottom: 1px solid #fed852;
  }
  .information-list__heading:hover::after {
    right: 10px;
  }
}
@media (hover: none) and (pointer: coarse) {
  .information-list__heading:active {
    border-bottom: 1px solid #fed852;
  }
  .information-list__heading:active::after {
    right: 10px;
  }
}
.information-list__ruby {
  align-self: flex-start;
}
.information-list__date {
  color: #7f7f7f;
  font-size: 14px;
  font-weight: 400;
}
.information-list__title {
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 2行まで表示 */
  width: 95%;
}
@media screen and (min-width: 768px) {
  .information-list__title {
    line-height: 180%;
  }
}

.information-archive {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.information-archive__article {
  width: clamp(20.938rem, 10.704rem + 43.66vw, 50rem);
  padding: 16px 20px;
  border-bottom: 1px solid #d9d9d9;
  transition: border-bottom-color 0.3s ease;
  position: relative;
  display: block;
}
.information-archive__article::after {
  position: absolute;
  top: 50%;
  bottom: 50%;
  right: 20px;
  content: url(./assets/img/icon/ico_arrow_info_right.svg);
  display: block;
  transition: right 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .information-archive__article:hover {
    border-bottom: 1px solid #fed852;
  }
  .information-archive__article:hover::after {
    right: 10px;
  }
}
@media (hover: none) and (pointer: coarse) {
  .information-archive__article:active {
    border-bottom: 1px solid #fed852;
  }
  .information-archive__article:active::after {
    right: 10px;
  }
}
.information-archive__data {
  color: #7f7f7f;
  font-size: 14px;
  font-weight: 400;
}
.information-archive__title {
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 90%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 2行まで表示 */
}
@media screen and (min-width: 768px) {
  .information-archive__title {
    line-height: 180%;
  }
}

.background-section {
  position: relative; /* 子要素の絶対配置の基準にする */
  min-height: 790px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (min-width: 548px) and (max-width: 768px) {
  .background-section {
    margin-bottom: clamp(7.5rem, -10.263rem + 52.63vw, 15rem);
  }
}

.background-section-heavy {
  position: relative; /* 子要素の絶対配置の基準にする */
  min-height: 790px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 60px;
  margin-bottom: 100px;
}
@media screen and (min-width: 548px) and (max-width: 1024px) {
  .background-section-heavy {
    margin-top: 120px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .background-section-heavy {
    min-height: 1090px;
  }
}
@media screen and (min-width: 1024px) {
  .background-section-heavy {
    min-height: 790px;
  }
}

.background-section-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* または 'contain', 'fill', 'scale-down', 'none' */
  object-position: center center; /* 画像の表示位置を調整 */
}
@media screen and (min-width: 1024px) {
  .background-section-image {
    display: none;
  }
}

.background-section-absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .background-section-absolute {
    position: static;
  }
}

.u-rounded-underline {
  --u-color: #fed852; /* 下線色 */
  --u-thickness: 10px; /* 下線の太さ */
  --u-overshoot: 2px; /* 両端のはみ出し量 */
  --u-gap: 0em; /* 文字と下線の距離 */
  --u-offset: 0.05em; /* 下線を上に移動させる量（新規追加） */
  /* 行分割（改行）ごとに背景を描画 */
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  /* はみ出し量と下線の視認性を確保するための余白 */
  padding-left: var(--u-overshoot);
  padding-right: var(--u-overshoot);
  padding-bottom: var(--u-gap);
  /* レイヤー構成: 左右の円 → 中央の矩形 */
  background: radial-gradient(circle, var(--u-color) 50%, transparent 50%) 0 calc(100% - var(--u-offset))/var(--u-thickness) var(--u-thickness) no-repeat, radial-gradient(circle, var(--u-color) 50%, transparent 50%) 100% calc(100% - var(--u-offset))/var(--u-thickness) var(--u-thickness) no-repeat, linear-gradient(var(--u-color), var(--u-color)) calc(var(--u-thickness) / 2) calc(100% - var(--u-offset))/calc(100% - var(--u-thickness)) var(--u-thickness) no-repeat;
  /* 余白内に描画 */
  background-clip: padding-box;
}

.section {
  width: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 60px;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .section {
    width: auto;
    gap: 0;
    margin-top: auto;
    margin-right: 170px;
    margin-left: 66px;
    margin-bottom: 354px;
    flex-direction: row;
  }
}
@media screen and (min-width: 1440px) {
  .section {
    margin-left: clamp(4.125rem, -39.75rem + 48.75vw, 18.75rem);
  }
}
@media screen and (min-width: 1920px) and (max-width: 2600px) {
  .section {
    margin-left: clamp(18.75rem, -34.191rem + 44.12vw, 37.5rem);
  }
}
.section__description {
  width: clamp(20.938rem, 10.773rem + 43.37vw, 31.563rem);
  height: auto;
  background-image: none;
  background-size: unset;
  background-repeat: unset;
}
@media screen and (min-width: 1024px) {
  .section__description {
    width: 740px;
    height: 624px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(./assets/img/img/img_background_circle.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
}
.section__description > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 25px;
  max-width: 550px;
}
.section__heading {
  max-width: 550px;
  color: #333333;
  font-size: clamp(2rem, 1.163rem + 3.57vw, 2.875rem);
  font-weight: 700;
  z-index: 2;
  letter-spacing: 10%;
  line-height: 150%;
}
.section__note {
  max-width: 550px;
  line-height: 200%;
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .section__note {
    line-height: 250%;
  }
}
.section__img {
  width: clamp(20.938rem, 14.093rem + 29.2vw, 40.375rem);
  height: clamp(12.938rem, 10.693rem + 9.58vw, 19.313rem);
  border-radius: 10px;
}
.section__img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
@media screen and (min-width: 1024px) {
  .section__img img {
    border-radius: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .section__img {
    border-radius: 30px;
  }
}
.section__name {
  font-weight: 700;
  line-height: 46px;
  color: #fed852;
  font-size: clamp(2.875rem, 2.215rem + 2.82vw, 4.75rem);
  text-align: right;
  margin-top: -25px;
}
@media screen and (min-width: 1024px) {
  .section__name {
    line-height: 65px;
    margin-top: -35px;
  }
}
.section__button {
  width: 246px;
  height: 71px;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 38.5px;
  box-shadow: 0 0 10px 0 #cacaca;
  font-weight: 700;
  letter-spacing: 5%;
}
.section__button > img {
  transition: transform 0.3s ease-out;
  display: inline-block;
}
@media (hover: hover) and (pointer: fine) {
  .section__button:hover > img {
    transform: translateX(10px);
  }
}
@media (hover: none) and (pointer: coarse) {
  .section__button:active > img {
    transform: translateX(10px);
  }
}
.section__title-heavy {
  position: static;
  margin: 0 20px;
  margin-bottom: 0;
  max-width: 646px;
  max-height: 510px;
}
@media screen and (min-width: 1024px) {
  .section__title-heavy {
    margin: auto;
    position: absolute;
    right: 0;
    margin-bottom: 100px;
    z-index: 2;
    bottom: -540px;
  }
}
@media screen and (min-width: 1280px) {
  .section__title-heavy {
    bottom: -440px;
  }
}
@media screen and (min-width: 1440px) {
  .section__title-heavy {
    right: clamp(0rem, -37.5rem + 41.67vw, 12.5rem);
  }
}
@media screen and (min-width: 1920px) and (max-width: 2600px) {
  .section__title-heavy {
    right: clamp(12.5rem, -58.088rem + 58.82vw, 37.5rem);
  }
}
.section__title-company {
  position: static;
  margin: 0 20px;
  max-width: 646px;
  max-height: 445px;
}
@media screen and (min-width: 1024px) {
  .section__title-company {
    margin: auto;
    position: absolute;
    right: 0;
    z-index: 2;
    bottom: -340px;
  }
}
@media screen and (min-width: 1280px) {
  .section__title-company {
    bottom: -260px;
  }
}
@media screen and (min-width: 1440px) {
  .section__title-company {
    right: clamp(0rem, -37.5rem + 41.67vw, 12.5rem);
  }
}
@media screen and (min-width: 1920px) and (max-width: 2600px) {
  .section__title-company {
    right: clamp(12.5rem, -58.088rem + 58.82vw, 37.5rem);
  }
}

.information {
  max-width: 800px;
  margin: clamp(3.75rem, 2.87rem + 3.76vw, 6.25rem) auto clamp(3.75rem, 2.87rem + 3.76vw, 6.25rem);
  padding: 0 20px;
}
.information__date {
  color: #7f7f7f !important;
  font-size: 14px;
  margin-bottom: 10px;
}
.information__title {
  color: #333333;
  font-size: 32px !important;
  font-weight: 700 !important;
  line-height: 150% !important;
  letter-spacing: 5%;
  padding-bottom: 20px;
  border-bottom: 1px solid #cacaca;
}
.information__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 40px 0;
}
.information h1 {
  padding-top: 30px;
  color: #333333;
  font-size: 20px;
  line-height: 160%;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .information h1 {
    line-height: 180%;
  }
}
.information h1::before, .information h1::after {
  content: "";
  display: block;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background-color: #fed852;
}
.information h2 {
  color: #333333;
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .information h2 {
    line-height: 180%;
  }
}
.information h3 {
  color: #333333;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .information h3 {
    line-height: 180%;
  }
}
.information p {
  color: #333333;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .information p {
    line-height: 180%;
  }
}
.information p > a {
  color: #4c82cc;
  border-bottom: 1px solid #4c82cc;
  display: inline-block;
}
@media (hover: hover) and (pointer: fine) {
  .information p > a:hover {
    opacity: 0.6;
  }
}
@media (hover: none) and (pointer: coarse) {
  .information p > a:active {
    opacity: 0.6;
  }
}
.information ul > li {
  list-style-type: disc;
  list-style-position: inside;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .information ul > li {
    line-height: 180%;
  }
}
.information ol > li {
  list-style-type: decimal;
  list-style-position: inside;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .information ol > li {
    line-height: 180%;
  }
}
.information figure {
  margin: 0 auto;
}

.wp-block-file__button {
  padding: 0 10px;
}

.company-page {
  max-width: 1100px;
  margin-top: clamp(3.75rem, 2.87rem + 3.76vw, 6.25rem);
  margin-bottom: clamp(3.75rem, 2.87rem + 3.76vw, 6.25rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(3.75rem, 2.87rem + 3.76vw, 6.25rem);
  margin-left: auto;
  margin-right: auto;
}
.company-page__greeting {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 1.604rem + 1.69vw, 3.125rem);
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .company-page__greeting {
    padding: 0;
  }
}
.company-page__flex {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, -0.255rem + 3.76vw, 3.125rem);
  justify-content: start;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .company-page__flex {
    flex-direction: row;
  }
}
.company-page__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #333333;
  line-height: 200%;
}
@media screen and (min-width: 768px) {
  .company-page__text {
    line-height: 250%;
  }
}
.company-page__name {
  align-self: end;
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  line-height: 250%;
}
.company-page__address {
  display: inline-block;
  margin-bottom: 10px;
}
.company-page__outline {
  width: clamp(23.438rem, 7.482rem + 68.08vw, 68.75rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 1.604rem + 1.69vw, 3.125rem);
  padding: 60px 20px;
  border-radius: 20px;
  background: radial-gradient(50% 50% at 50% 50%, #fff1be 0%, #fffbee 100%);
}
@media screen and (min-width: 768px) {
  .company-page__outline {
    border-radius: 60px;
  }
}
.company-page__dl {
  width: clamp(22.188rem, 12.394rem + 41.78vw, 50rem);
}
.company-page__dl > div {
  display: flex;
  justify-content: center;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .company-page__dl > div {
    gap: 10px;
  }
}
.company-page__dl dt {
  padding: 20px 15px;
  width: 96px;
  text-align: start;
  flex-shrink: 0;
  color: #333333;
  font-weight: 700;
  align-content: center;
}
@media screen and (min-width: 768px) {
  .company-page__dl dt {
    padding: 20px 40px;
    width: 160px;
  }
}
.company-page__dl dd {
  padding: 20px 15px;
  width: 236px;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .company-page__dl dd {
    padding: 20px 40px;
    width: 100%;
  }
}
.company-page__dl dd iframe {
  width: 206px;
  height: 206px;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .company-page__dl dd iframe {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
    margin-top: 10px;
  }
}
.company-page__yellow-border-both {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, #e8202a, #fed852);
  border-image-slice: 1;
}
.company-page__yellow-border {
  background: linear-gradient(to right, #e8202a, #fed852);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: bottom;
}
.company-page__black-border-both {
  border-top: 1px solid #838383;
  border-bottom: 1px solid #838383;
}
.company-page__black-border {
  border-bottom: 1px solid #838383;
}

.machinery-page {
  max-width: 1100px;
  margin-top: clamp(3.75rem, 2.87rem + 3.76vw, 6.25rem);
  margin-bottom: clamp(3.75rem, 2.87rem + 3.76vw, 6.25rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(3.75rem, 2.87rem + 3.76vw, 6.25rem);
  margin-left: auto;
  margin-right: auto;
}
.machinery-page__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 800px;
}
.machinery-page__br {
  display: block;
}
@media screen and (min-width: 768px) {
  .machinery-page__br {
    display: none;
  }
}
.machinery-page__heading {
  max-width: 800px;
  color: #333333;
  font-size: clamp(2.125rem, 1.842rem + 1.21vw, 2.875rem);
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 10%;
  text-align: center;
}
.machinery-page__heading span {
  position: relative;
  display: inline;
}
.machinery-page__heading span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 10px;
  background-color: #fed852;
  border-radius: 5px;
  z-index: -1;
}
.machinery-page__heading--sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .machinery-page__heading--sp {
    display: none;
  }
}
.machinery-page__heading--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .machinery-page__heading--pc {
    display: block;
  }
}
.machinery-page__text {
  padding: 0 20px;
  line-height: 2;
}
@media screen and (min-width: 1024px) {
  .machinery-page__text {
    line-height: 2.5;
    padding: 0;
  }
}
.machinery-page__fleet {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.machinery-page__tiles {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 32px;
  column-gap: 50px;
}
@media screen and (min-width: 1024px) {
  .machinery-page__tiles {
    grid-template-columns: 1fr 1fr;
    row-gap: 50px;
  }
}
.machinery-page__tile {
  width: clamp(20.938rem, 16.335rem + 19.64vw, 33.125rem);
  padding: 32px 20px;
  border-radius: 20px;
  background: radial-gradient(50% 50% at 50% 50%, #fff1be 0%, #fffbee 100%);
}
@media screen and (min-width: 640px) {
  .machinery-page__tile {
    padding: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .machinery-page__tile {
    padding: 50px;
  }
}
.machinery-page__machine {
  color: #333333;
  font-size: 20px;
  font-weight: 700;
  line-height: 180%;
  margin-bottom: 25px;
}
.machinery-page__flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.machinery-page__photo {
  width: clamp(18.438rem, 15.251rem + 13.6vw, 26.875rem);
  height: clamp(20.563rem, 16.998rem + 15.21vw, 30rem);
  border-radius: 10px;
}
.machinery-page__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.machinery-page__dl {
  width: 100%;
  min-width: 295px;
}
@media screen and (min-width: 1024px) {
  .machinery-page__dl {
    width: 430px;
  }
}
.machinery-page__dl > div {
  display: flex;
  gap: 10px;
}
.machinery-page__dl dt {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 15px 10px;
  min-width: 84px;
  text-align: start;
  flex-shrink: 0;
  color: #333333;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .machinery-page__dl dt {
    width: 104px;
    padding: 15px 20px;
  }
}
.machinery-page__dl dd {
  padding: 15px 10px;
  width: calc(100% - 84px);
  min-width: 206px;
  color: #333333;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .machinery-page__dl dd {
    width: 100%;
    padding: 15px 20px;
  }
}
.machinery-page__yellow-border-both {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, #e8202a, #fed852);
  border-image-slice: 1;
}
.machinery-page__yellow-border {
  background: linear-gradient(to right, #e8202a, #fed852);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: bottom;
}
.machinery-page__black-border-both {
  border-top: 1px solid #838383;
  border-bottom: 1px solid #838383;
}
.machinery-page__black-border {
  border-bottom: 1px solid #838383;
}
.machinery-page__button {
  font-size: 16px;
  color: #333333;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 246px;
  height: 71px;
  padding: 20px 40px;
  gap: 15px;
  border-radius: 38.5px;
  background: #fff;
  box-shadow: 0 0 10px 0 #cacaca;
}
@media (hover: hover) and (pointer: fine) {
  .machinery-page__button:hover > img {
    transform: translateX(10px);
  }
}
@media (hover: none) and (pointer: coarse) {
  .machinery-page__button:active > img {
    transform: translateX(10px);
  }
}
.machinery-page__button > img {
  display: block;
  transition: transform 0.3s ease-out;
}

.contact-page {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .contact-page {
    padding: 100px 0;
  }
}
.contact-page__tel {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .contact-page__tel {
    gap: 40px;
  }
}

.bl_form,
.bl_formConfirm {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(20.938rem, 4.102rem + 71.83vw, 68.75rem);
  padding: 60px 20px;
  border-radius: 20px;
  background: radial-gradient(50% 50% at 50% 50%, #fff1be 0%, #fffbee 100%);
}
@media screen and (min-width: 768px) {
  .bl_form,
  .bl_formConfirm {
    border-radius: 60px;
  }
}

.bl_form_title {
  color: #333333;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.bl_form_title::before, .bl_form_title::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #fed852;
  border-radius: 50%;
}

.bl_form_group:not(:first-of-type) {
  margin-block-start: 20px;
}

.bl_form_group:first-of-type {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .bl_form_group:first-of-type {
    margin-top: 40px;
  }
}

.bl_form_group fieldset {
  display: contents;
}

.bl_form_control {
  margin-block-start: 1em;
}

.bl_formConfirm_txt + .bl_form_group {
  margin-block-start: 32px;
}
@media screen and (min-width: 768px) {
  .bl_formConfirm_txt + .bl_form_group {
    margin-block-start: 52px;
  }
}

.bl_form_group_confirm {
  border-bottom: 1px solid #838383;
}

.bl_confirm_name,
.bl_confirm_company,
.bl_confirm_tel,
.bl_confirm_email,
.bl_confirm_message,
.bl_confirm_consent {
  padding: 6px 16px 15px 16px;
  color: #333;
  line-height: 180%;
  font-size: 16px !important;
}

/* 項目名 */
.bl_form_label {
  align-items: center;
  display: inline-grid;
  gap: 8px;
  grid-template-columns: 1fr auto;
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  position: relative;
  width: fit-content;
}

/* 必須ラベル */
.bl_form_required {
  border-radius: 5px;
  border: 1px solid #f69143;
  color: #f69143;
  display: inline-block;
  font-size: 16px;
  width: fit-content;
  height: 29px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 入力欄、セレクトボックス */
.bl_form :is(input[type=text],
input[type=email],
input[type=tel],
textarea,
select) {
  appearance: none;
  padding: 16px;
  border-radius: 5px;
  border: 1px solid #9d9fa3;
  resize: none;
}
@media screen and (min-width: 768px) {
  .bl_form :is(input[type=text],
  input[type=email],
  input[type=tel],
  textarea,
  select) {
    resize: vertical;
  }
}

.bl_form :is(input[type=text], input[type=email], input[type=tel], textarea) {
  font-size: 16px;
  color: #333333;
  inline-size: 100%;
}

.bl_form_item {
  width: clamp(18.438rem, 14.586rem + 16.43vw, 29.375rem);
}

.bl_form_content {
  width: clamp(18.438rem, 14.586rem + 16.43vw, 29.375rem);
}

.wpcf7-tel {
  width: 136px !important;
}

.bl_form :is(input[type=text],
input[type=email],
input[type=tel],
textarea)::placeholder {
  color: #838383;
}

.bl_form textarea {
  height: 104px;
}
@media screen and (min-width: 768px) {
  .bl_form textarea {
    height: 128px;
  }
}

/* フォーカス時のスタイル */
.bl_form :is(input[type=text],
input[type=email],
input[type=tel],
textarea,
select):focus-visible {
  outline: 0;
  border: 2px solid #fed852;
}

/* ラジオボタン、チェックボックス */
.bl_form .wpcf7-list-item {
  margin: 0;
}

.bl_form_radio,
.bl_form_checkbox {
  display: inline-grid;
  gap: 0.5em 2em;
}

/* オリジナルのラジオボタンとチェックボックスを作成 */
.bl_form :is(input[type=radio], input[type=checkbox]) {
  /* 元のinput要素を完全に非表示にするが、フォーカス可能にしてアクセシビリティを保つ */
  position: absolute;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  white-space: nowrap; /* テキストの折り返しを防ぐ */
}

/* ラベルのスタイル */
.wpcf7-list-item-label {
  font-size: 16px;
  display: inline-block;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding-inline-start: 3.5em;
}
@media screen and (min-width: 768px) {
  .wpcf7-list-item-label {
    padding-inline-start: 3em;
  }
}

/* ラジオボタンとチェックボックスのカスタム外観のベース */
/* input要素の隣接要素としてラベルが存在するパターンを想定 */
.bl_form input[type=radio] + .wpcf7-list-item-label::before,
.bl_form input[type=checkbox] + .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  inline-size: 44px;
  block-size: 44px;
  background-color: #fff;
  border: 1px solid #9d9fa3;
  flex-shrink: 0;
  margin-inline-end: 0.5em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* チェックボックス固有の外観 (角丸四角形) */
.bl_form input[type=checkbox] + .wpcf7-list-item-label::before {
  border-radius: 5px; /* 元のコードの値を維持 */
}

/* チェックボックスがチェックされた時のチェックマーク */
.bl_form input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: url(./assets/img/icon/ico_check.svg);
  position: absolute;
  left: 10px;
  right: 0;
  bottom: 10px;
  z-index: 1;
}
@media screen and (min-width: 605px) {
  .bl_form input[type=checkbox]:checked + .wpcf7-list-item-label::after {
    bottom: 0;
    top: 5px;
    width: fit-content;
  }
}

/* プライバシーポリシー */
.bl_form_consent {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: clamp(18.438rem, 14.586rem + 16.43vw, 29.375rem);
}
@media screen and (min-width: 768px) {
  .bl_form_consent {
    margin-bottom: 40px;
  }
}

.wpcf7-acceptance {
  display: inline-block;
  margin-bottom: 0px;
}

.bl_form_consent_desc_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-right: 10px;
  color: #4c82cc;
  text-decoration: none;
  margin-left: 5px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .bl_form_consent_desc_link {
    margin-left: 15px;
    align-items: flex-start;
  }
}
@media (hover: hover) and (pointer: fine) {
  .bl_form_consent_desc_link:hover {
    opacity: 0.6;
  }
}
@media (hover: none) and (pointer: coarse) {
  .bl_form_consent_desc_link:active {
    opacity: 0.6;
  }
}
.bl_form_consent_desc_link > span {
  border-bottom: 1px solid #4c82cc;
}
.bl_form_consent_desc_link > div {
  height: 16px;
  width: 16px;
}
.bl_form_consent_desc_link > div img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.bl_confirm_inquiry_type,
.bl_confirm_name,
.bl_confirm_kana_name,
.bl_confirm_email,
.bl_confirm_tel,
.bl_confirm_message {
  font-size: 16px !important;
  font-weight: 400;
}

/* バリデーションメッセージ */
.wpcf7-not-valid-tip {
  color: #e8202a;
  font-size: 20px;
}

/* バリデーションで引っかかった件の枠色 */
.wpcf7-not-valid {
  border: 2px solid #e8202a !important;
}

/* 確認・戻る・送信ボタン */
.bl_form_btn {
  justify-self: flex-start;
}

/* 親コンテナ（確認・送信ボタンのビジュアル） */
.bl_form_confirm_button,
.bl_form_submit {
  min-width: 0;
  background-color: transparent;
  border: none;
  cursor: pointer; /* 常にポインターカーソル */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  display: flex;
  width: 246px;
  height: 71px;
  padding: 18.5px 40px 18.5px 40px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-radius: 38.5px;
  background: linear-gradient(97deg, #e8202a -71.3%, #fed852 163.52%);
  box-shadow: 0 0 10px 0 #cacaca;
  position: relative;
}
.bl_form_confirm_button::before,
.bl_form_submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(94deg, #e8202a 0%, #fed852 158.71%);
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
.bl_form_confirm_button > img,
.bl_form_submit > img {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease-out;
}

.wpcf7-submit {
  margin-right: 20px;
}

.bl_form_confirm,
.bl_form_submit {
  min-width: 0;
  background-color: transparent;
  border: none;
  cursor: pointer; /* 常にポインターカーソル */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  color: #fff;
  position: relative;
  z-index: 2;
  font-weight: 700;
}

@media (hover: hover) and (pointer: fine) {
  .bl_form_confirm_button:hover::before,
  .bl_form_submit:hover::before {
    opacity: 1;
  }
  .bl_form_confirm_button:hover > img,
  .bl_form_submit:hover > img {
    transform: translateX(10px);
  }
}
@media (hover: none) and (pointer: coarse) {
  .bl_form_confirm_button:active::before,
  .bl_form_submit:active::before {
    opacity: 1;
  }
  .bl_form_confirm_button:active > img,
  .bl_form_submit:active > img {
    transform: translateX(10px);
  }
}

/* 戻るボタン */
.bl_form_back {
  background-color: transparent;
  border: none;
  cursor: pointer; /* 通常時はポインターカーソル */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  min-width: 0;
  color: #4c82cc;
  font-weight: 500;
  line-height: 180%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-offset: 3px;
  display: inline-block;
}
@media (hover: hover) and (pointer: fine) {
  .bl_form_back:hover {
    opacity: 0.6;
  }
}
@media (hover: none) and (pointer: coarse) {
  .bl_form_back:active {
    opacity: 0.6;
  }
}

.bl_form_btn_set {
  margin-top: 32px;
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .bl_form_btn_set {
    flex-direction: row;
    align-items: center;
    gap: 36px;
    margin-top: 40px;
  }
}

/* 確認画面とメッセージ、スピナーを非表示 */
.bl_formConfirm,
.wpcf7-response-output,
.bl_formConfirm .wpcf7-spinner {
  display: none;
}

/* 確認画面 */
.bl_formConfirm_txt,
.bl_form_control p {
  font-size: 16px;
}

.bl_formConfirm_txt {
  line-height: 160%;
}

.bl_form_control {
  width: clamp(18.438rem, 14.586rem + 16.43vw, 29.375rem);
}

/* 送信完了画面 */
.bl_formThanks_ttl,
.bl_formThanks_txt {
  text-align: center;
}

.bl_formThanks_ttl {
  font-size: 24px;
  font-weight: 700;
}

.bl_formThanks_txt {
  margin-block-start: 1em;
}

.contact-thanks {
  margin: 60px auto;
  max-width: 1100px;
  width: clamp(20.938rem, 4.102rem + 71.83vw, 68.75rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 60px 20px;
  background: radial-gradient(50% 50% at 50% 50%, #fff1be 0%, #fffbee 100%);
}
@media screen and (min-width: 768px) {
  .contact-thanks {
    margin: 100px auto;
    gap: 40px;
  }
}
.contact-thanks__img {
  width: 140px;
  height: 140px;
}
@media screen and (min-width: 768px) {
  .contact-thanks__img {
    width: 186px;
    height: 186px;
  }
}
.contact-thanks__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact-thanks__note {
  line-height: 1.6;
}

.privacy {
  max-width: 800px;
  margin-top: clamp(3.75rem, 2.87rem + 3.76vw, 6.25rem);
  margin-bottom: clamp(3.75rem, 2.87rem + 3.76vw, 6.25rem);
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 1.811rem + 0.81vw, 2.5rem);
  margin-left: auto;
  margin-right: auto;
}
.privacy__text {
  color: #333333;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .privacy__text {
    line-height: 180%;
  }
}
.privacy__text li {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 25px;
  padding-left: 5px;
}
.privacy__text li::marker {
  font-size: 12px;
}
.privacy__text li {
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .privacy__text li {
    line-height: 180%;
  }
}
.privacy__text a {
  display: flex;
  align-items: center;
  gap: 5px;
  display: inline-block;
}
@media (hover: hover) and (pointer: fine) {
  .privacy__text a:hover {
    opacity: 0.6;
  }
}
@media (hover: none) and (pointer: coarse) {
  .privacy__text a:active {
    opacity: 0.6;
  }
}
.privacy__text a > span {
  color: #4c82cc;
  border-bottom: 1px solid #4c82cc;
}
.privacy__flex {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.privacy__heading {
  color: #333333;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.privacy__heading::before, .privacy__heading::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #fed852;
  border-radius: 50%;
  flex-shrink: 0;
}

.not-found {
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.not-found__column {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.not-found__text {
  line-height: 1.8;
  color: #333;
}
.not-found__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.not-found__orange {
  line-height: 1.8;
  color: #f69143;
}/*# sourceMappingURL=style.css.map */