@charset "UTF-8";
/* destyle.css*/
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
html {
  line-height: 1.15;
  /* Correct the line height */
  -webkit-text-size-adjust: 100%;
  /* Prevent font size adjustment */
  -webkit-tap-highlight-color: transparent;
  /* Remove gray overlay on links */
  scroll-behavior: smooth;
}

/* Sections */
body {
  margin: 0;
  /* Remove margin */
}

main {
  display: block;
  /* Render `main` consistently */
}

/* Vertical rhythm */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

/* Text-level semantics */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  appearance: none;
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

/* Interactive */
details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

/* Tables */
table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/********** base **********/
/* ========================================
    初期設定
    ======================================== */
body {
  font-family: "Noto Sans JP", "serif";
  color: #38080c;
  font-weight: 400;
  line-height: 1.5;
  font-size: 15px;
  -webkit-text-size-adjust: 100%;
}

.section-ttl {
  font-size: clamp(20px, 2.5vw, 32px);
}

.section-ttl span {
  font-family: "Poppins", "serif";
  font-size: clamp(12px, 2.5vw, 16px);
}

/* ========================================
    コンテナ幅
    ======================================== */
.contents {
  padding: 80px 0 0 0;
}
@media (max-width: 600px) {
  .contents {
    padding: 120px 0 0 0;
  }
}

.container-sm {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(800px + 40px);
}

.container-md {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(1000px + 40px);
}

.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(1120px + 40px);
}

.container-lg {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(1200px + 40px);
}

.container-xl {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  max-width: calc(1200px + 40px);
}

/* ========================================
    共通
    ======================================== */
.m-section-ttl {
  font-weight: 600;
  display: flex;
  font-size: clamp(16px, 1.3vw, 20px);
  flex-direction: column;
  color: #e50012;
}
.m-section-ttl span {
  font-family: "Poppins", "serif";
  font-size: clamp(34px, 4vw, 60px);
  color: #38080c;
}

.m-page-head {
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 600;
  display: flex;
  align-items: flex-start;
}
.m-page-head::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #e50012;
  border-radius: 50%;
  margin-right: 16px;
  transform: translateY(0.5em);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .m-page-head::before {
    width: 14px;
    height: 14px;
    margin-right: 10px;
  }
}

.m-sub-head {
  font-size: clamp(24px, 2.2vw, 32px);
  color: #e50012;
  font-weight: 600;
  text-align: center;
}

.m-page-sub-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.m-page-sub-head::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: #e50012;
}

.m-page-sub-head--01 {
  font-size: 24px;
  color: #e50012;
  font-weight: 600;
}
@media (max-width: 600px) {
  .m-page-sub-head--01 {
    font-size: 20px;
  }
}

.m-page-sub-head--02 {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .m-page-sub-head--02 {
    font-size: 16px;
  }
}

.m-more-btn a {
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  margin-top: 48px;
}
@media (max-width: 600px) {
  .m-more-btn a {
    margin-top: 30px;
  }
}

.m-more-btn__icon {
  position: relative;
  width: 64px;
  height: 64px;
}
@media (max-width: 600px) {
  .m-more-btn__icon {
    width: 50px;
    height: 50px;
  }
}
.m-more-btn__icon img {
  position: relative;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.m-more-btn__icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/common/arrow-right02.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

@media (max-width: 600px) {
  .m-more-btn--center--sp a {
    margin: 0 auto;
    margin-top: 30px;
  }
}

.m-more-btn span {
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.m-more-btn:hover .m-more-btn__icon img {
  opacity: 0;
}
.m-more-btn:hover .m-more-btn__icon::after {
  opacity: 1;
}
.m-more-btn:hover span {
  color: #e50012;
}

.m-btm-content {
  margin-top: 80px;
  padding: 120px 0;
  background: url("../img/common/section-bg.webp") center center/cover;
}
@media (max-width: 600px) {
  .m-btm-content {
    padding: 48px 0;
    margin-top: 48px;
  }
}

.page-factory .m-btm-content {
  margin-top: 0;
}

.m-btm-content__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 14px;
}
@media (max-width: 600px) {
  .m-btm-content__links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.m-btm-content__links-item {
  height: 100%;
}

.m-btm-content__links-item a {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: background 0.3s ease;
}
.m-btm-content__links-item a:hover {
  background: #FAE7E8;
}

.m-btm-content__links-left {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.m-btm-content__links-left .m-btm-content__links-img {
  width: 50%;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .m-btm-content__links-left .m-btm-content__links-img {
    width: 35%;
  }
}

.m-btm-content__links-right .m-btm-content__links-img {
  width: 25%;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .m-btm-content__links-right .m-btm-content__links-img {
    width: 35%;
  }
}

.m-btm-content__links-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.m-btm-content__links-text {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .m-btm-content__links-text {
    padding-left: 16px;
  }
}
.m-btm-content__links-text span {
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", "serif";
  color: #e50012;
}
@media (max-width: 600px) {
  .m-btm-content__links-text span {
    font-size: 12px;
  }
}
.m-btm-content__links-text h4 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 10px;
}
@media (max-width: 1280px) {
  .m-btm-content__links-text h4 {
    font-size: 18px;
    margin-top: 8px;
  }
}
@media (max-width: 768px) {
  .m-btm-content__links-text h4 {
    font-size: 16px;
    margin-top: 4px;
  }
}

.m-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .m-cta__inner {
    grid-template-columns: 1fr;
  }
}

.m-cta__item {
  padding: 80px;
}
@media (max-width: 1280px) {
  .m-cta__item {
    padding: 60px 40px;
  }
}
@media (max-width: 600px) {
  .m-cta__item {
    padding: 48px 30px;
  }
}

.m-cta__item h2 {
  text-align: center;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-weight: 600;
}

.m-cta__item p {
  text-align: center;
  color: #fff;
  margin-top: 36px;
  font-weight: 500;
  line-height: 2;
}

.m-cta__item h2 span {
  font-family: "Poppins", "serif";
  font-size: clamp(36px, 4vw, 60px);
}

.m-cta__item--faq {
  background: url("../img/common/cta-bg01.webp") center center/cover;
}

.m-cta__item--contact {
  background: url("../img/common/cta-bg02.webp") center center/cover;
}

.m-cta__item-btn {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  margin-top: 40px;
}

.m-cta__item-btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100px;
  border-radius: 50px;
  background: #fff;
  color: #38080c;
  padding-left: 72px;
  transition: background 0.3s ease;
}
@media (max-width: 1280px) {
  .m-cta__item-btn a {
    height: 72px;
  }
}
@media (max-width: 600px) {
  .m-cta__item-btn a {
    height: 60px;
    padding-left: 42px;
  }
}
.m-cta__item-btn a:hover {
  background: #FAE7E8;
}

.m-cta__item-btn-icon {
  display: inline-block;
  width: 72px;
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1280px) {
  .m-cta__item-btn-icon {
    width: 50px;
  }
}
@media (max-width: 600px) {
  .m-cta__item-btn-icon {
    width: 42px;
  }
}
.m-cta__item-btn-icon img {
  position: relative;
  z-index: 1;
  transition: opacity 0.3s ease;
  display: block;
}
.m-cta__item-btn-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.m-cta__item--faq .m-cta__item-btn-icon::after {
  background-image: url("../img/common/arrow-right02.webp");
}

.m-cta__item--contact .m-cta__item-btn-icon::after {
  background-image: url("../img/common/arrow-right01.webp");
}

.m-cta__item-btn a:hover .m-cta__item-btn-icon img {
  opacity: 0;
}
.m-cta__item-btn a:hover .m-cta__item-btn-icon::after {
  opacity: 1;
}

.m-cta__item-btn-text {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 1280px) {
  .m-cta__item-btn-text {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .m-cta__item-btn-text {
    font-size: 16px;
  }
}

.m-bg-accent {
  position: relative;
}

.m-gb-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  clip-path: inset(0);
  z-index: -999;
}

.m-bg-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: bottom;
  z-index: -1;
}

.m-section-content__inner-wrap {
  background-color: #fff;
  border-radius: 10px 10px 0 0;
}
@media (max-width: 600px) {
  .m-section-content__inner-wrap {
    margin-top: 0px;
  }
}

.m-section-content__inner {
  width: 60%;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 600px) {
  .m-section-content__inner {
    width: 100%;
    padding: 30px 20px;
  }
}

.m-bg-accent--top-about,
.m-gb-inner--top-about {
  height: 70vh;
  min-height: 800px;
  z-index: -1;
}
@media (max-width: 1280px) {
  .m-bg-accent--top-about,
  .m-gb-inner--top-about {
    height: 50vh;
    min-height: 540px;
  }
}

.m-gb-inner--top-about::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 24, 20, 0.4);
  z-index: 1;
}

.m-bg-img--top-about {
  object-fit: cover;
}

.m-bg-accent--01,
.m-gb-inner--01 {
  height: 70vh;
  min-height: 350px;
}
@media (max-width: 768px) {
  .m-bg-accent--01,
  .m-gb-inner--01 {
    height: 50vh;
  }
}

.m-bg-img--01 {
  background-position: 60%;
  background-image: url("../img/vision/vision-concept-bg.webp");
}

.m-bg-accent--about,
.m-gb-inner--about {
  height: 70vh;
  min-height: 800px;
}
@media (max-width: 1280px) {
  .m-bg-accent--about,
  .m-gb-inner--about {
    height: 50vh;
    min-height: 600px;
  }
}
@media (max-width: 600px) {
  .m-bg-accent--about,
  .m-gb-inner--about {
    height: 80vh;
    min-height: 800px;
  }
}
@media (max-width: 600px) {
  .m-bg-accent--about,
  .m-gb-inner--about {
    height: 100vh;
  }
}
@media screen and (max-width: 380px) {
  .m-bg-accent--about,
  .m-gb-inner--about {
    height: 125vh;
  }
}

.m-bg-img--about {
  background-image: url("../img/about/about-bg.webp");
}

.m-bg-accent--message,
.m-gb-inner--message {
  height: 50vh;
}
@media (max-width: 1280px) {
  .m-bg-accent--message,
  .m-gb-inner--message {
    height: 30vh;
  }
}
@media (max-width: 768px) {
  .m-bg-accent--message,
  .m-gb-inner--message {
    height: 25vh;
  }
}

.m-bg-img--message {
  background-image: url("../img/about/about-message-bg.webp");
}
@media (max-width: 768px) {
  .m-bg-img--message {
    background-image: url("../img/about/about-message-bg-sp.webp");
  }
}

.m-bg-accent--factory,
.m-gb-inner--factory {
  height: 50vh;
}
@media (max-width: 1280px) {
  .m-bg-accent--factory,
  .m-gb-inner--factory {
    height: 30vh;
  }
}

.m-bg-img--factory {
  background-image: url("../img/factory/factory-bg.webp");
}

.m-bg-accent--business,
.m-gb-inner--business {
  height: 50vh;
}
@media (max-width: 1280px) {
  .m-bg-accent--business,
  .m-gb-inner--business {
    height: 30vh;
  }
}

.m-bg-img--business {
  background-image: url("../img/business/business-bg.webp");
}

/* ========================================
    ヘッダー
    ======================================== */
.header {
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 202;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 16px 40px;
  transition: background 0.3s ease;
}
@media (max-width: 1280px) {
  .header__inner {
    padding: 0;
    background: transparent;
    border-radius: 0;
  }
}

.header {
  transition: background 0.3s ease 0s;
}

.header.is-drawer-open {
  background: #faf7ef;
}

.header__logo {
  width: clamp(160px, 15vw, 210px);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

@media (min-width: 769px) {
  .header.is-scrolled .header__inner {
    justify-content: space-between;
    gap: 20px;
    background: transparent;
  }
  .header.is-scrolled .header__nav-item:not(.header__nav-item--contact):not(.header__nav-item--corporate) {
    display: none;
  }
}
@media (max-width: 1280px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
}

.header__nav-item {
  font-weight: 600;
}
.header__nav-item:nth-of-type(-n+5) {
  margin-right: 24px;
}
.header__nav-item:nth-of-type(n+6) {
  margin-right: 20px;
}
.header__nav-item:last-of-type {
  margin-right: 0;
}
.header__nav-item a {
  transition: color 0.3s ease;
}
.header__nav-item a:hover {
  color: #e50012;
}

.header__nav-item--contact a {
  background: #e50012;
  height: 48px;
  width: 180px;
  color: #fff;
  padding: 10px 20px;
  border-radius: 26px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.header__nav-item--contact a:hover {
  color: #fff;
  background: rgba(229, 0, 18, 0.8);
}

.header__nav-item--corporate {
  margin-right: 20px;
}
.header__nav-item--corporate a {
  background: #fff;
  height: 48px;
  width: 180px;
  padding: 10px 20px;
  border-radius: 26px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: background 0.3s ease;
}
.header__nav-item--corporate a::after {
  content: "";
  display: inline-block;
  background-image: url(../img/common/link-icon-bold.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 15px;
  aspect-ratio: 1;
}
.header__nav-item--corporate a:hover {
  color: #38080c;
  background: rgba(255, 255, 255, 0.8);
}

.header__nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (min-width: 769px) {
  .header.is-scrolled .header__nav {
    display: block !important;
  }
  .header.is-scrolled .header__inner {
    justify-content: space-between;
    background: transparent;
  }
}
/* ========================================
    フッター
    ======================================== */
.footer {
  padding-top: 120px;
  padding-bottom: 100px;
  font-size: 16px;
  padding-left: 5vw;
  padding-right: 5vw;
}
@media (max-width: 768px) {
  .footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.footer__inner {
  display: flex;
  gap: 60px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer__left {
    text-align: center;
  }
}

.footer__logo {
  width: clamp(200px, 20vw, 300px);
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .footer__logo {
    margin: 0 auto;
    margin-bottom: 16px;
  }
}
.footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer__address {
  margin-bottom: 24px;
  line-height: 1.6;
}
.footer__address p {
  margin: 0;
  font-size: 16px;
}

.footer__address-item {
  margin-bottom: 10px;
}

.footer__link {
  margin-bottom: 32px;
}
.footer__link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: inherit;
  text-decoration: none span;
  text-decoration-display: inline-flex;
  text-decoration-align-items: center;
}
.footer__link--corporate {
  margin-bottom: 24px;
}
.footer__link--corporate a {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: #FAF7EF;
  border: 1px solid #38080C;
  border-radius: 26px;
  width: 300px;
  height: 48px;
}
.footer__link--corporate a::after {
  content: "";
  display: inline-block;
  background-image: url(../img/common/link-icon-bold.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 15px;
  aspect-ratio: 1;
}
@media (max-width: 768px) {
  .footer__link--corporate a {
    margin: 0 auto;
  }
}

.footer__link span {
  display: block;
  width: 22px;
  height: 22px;
}

.footer__banner {
  margin-top: 32px;
}

.footer__banner-inner {
  display: flex;
  gap: 16px;
}

.footer__banner--pc {
  display: block;
}
@media (max-width: 768px) {
  .footer__banner--pc {
    display: none;
  }
}

.footer__banner--sp {
  display: none;
}
@media (max-width: 768px) {
  .footer__banner--sp {
    display: block;
  }
}

.footer__banner-item {
  width: 180px;
}
.footer__banner-item img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .footer__banner-item {
    width: 100%;
    max-width: 180px;
  }
}

.footer__right {
  width: 45vw;
  flex-shrink: 0;
}
@media (max-width: 1280px) {
  .footer__right {
    width: 60vw;
  }
}
@media (max-width: 768px) {
  .footer__right {
    width: 100%;
  }
}

.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .footer__nav-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.footer__nav-item {
  list-style: none;
  width: fit-content;
}
.footer__nav-item > a {
  font-size: 16px;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer__nav-sub-list {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 15px;
  border-left: 1px solid #d5d5d5;
}

.footer__nav-sub-item {
  list-style: none;
  margin-bottom: 8px;
}
.footer__nav-sub-item:last-child {
  margin-bottom: 0;
}
.footer__nav-sub-item a {
  line-height: 2;
  font-size: 16px;
  font-weight: 400;
  color: inherit;
  text-decoration: none;
  display: block;
}
@media (max-width: 600px) {
  .footer__nav-sub-item a {
    font-size: 14px;
  }
}

.footer__copyright p {
  font-size: 14px;
  margin-top: 28px;
}
@media (max-width: 768px) {
  .footer__copyright p {
    text-align: center;
  }
}

/* ========================================
    メインビジュアル
    ======================================== */
.mainV {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.mainV__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.mainV__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.mainV__copy {
  transform: translateX(4vw);
  width: clamp(64px, 6vw, 96px);
}
@media (max-width: 600px) {
  .mainV__copy {
    transform: translateX(8vw);
  }
}

.mainV__copy-text {
  margin-top: 56px;
  font-weight: 600;
  font-family: "Poppins", "serif";
  color: #fff;
  font-size: clamp(56px, 10vw, 150px);
  line-height: 1;
}

.mainV__scroll {
  position: absolute;
  bottom: 0;
  right: 2vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 1;
}

.mainV__scroll-text {
  font-family: "Poppins", "serif";
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  writing-mode: vertical-rl;
}

.mainV__scroll-bar {
  position: relative;
  width: 2px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(100%);
  overflow: hidden;
}
.mainV__scroll-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #fff;
  animation: scrollBarAnimation 2s ease-in-out infinite;
}

@keyframes scrollBarAnimation {
  0% {
    height: 0;
  }
  100% {
    height: 120px;
  }
}
/* ========================================
    下層ページ
    ======================================== */
.m-pageV {
  margin-top: 220px;
  padding-bottom: 140px;
}
@media (max-width: 768px) {
  .m-pageV {
    margin-top: 140px;
    padding-bottom: 60px;
  }
}

.m-pageV--border {
  border-bottom: 1px solid #D5D5D5;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .m-pageV--border {
    border-bottom: none;
  }
}

.m-pageV__title {
  font-size: clamp(18px, 1vw, 20px);
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: #e50012;
}

.m-pageV__title span {
  font-size: clamp(38px, 4vw, 60px);
  color: #38080c;
  font-family: "Poppins", "serif";
}

.m-pageV__nav {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .m-pageV__nav {
    display: none;
  }
}

.m-pageV__nav-list {
  display: flex;
}
.m-pageV__nav-list .m-pageV__nav-item {
  padding-right: 32px;
  line-height: 1.5;
  font-weight: bold;
}
.m-pageV__nav-list .m-pageV__nav-item:not(:last-child) {
  border-right: 1px solid #38080c;
}
.m-pageV__nav-list .m-pageV__nav-item:not(:first-child) {
  padding-left: 32px;
}

/* ========================================
    ナビゲーションドロワー
    ======================================== */
.nav-drawer__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-drawer__overlay.is-active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 769px) {
  .nav-drawer__overlay {
    display: none;
  }
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #faf7ef;
  z-index: 201;
  opacity: 0;
  padding-top: 110px;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.nav-drawer.is-active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 769px) {
  .nav-drawer {
    padding-top: 0;
    display: flex;
    flex-direction: row;
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .nav-drawer {
    display: block;
  }
}

.nav-drawer__image-area {
  display: none;
}
@media (min-width: 769px) {
  .nav-drawer__image-area {
    display: block;
    flex: 1;
    min-width: 0;
    height: calc(100vh - 130px);
    position: relative;
    overflow: hidden;
    margin-top: auto;
  }
  .nav-drawer__image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top right;
  }
}

@media (min-width: 769px) {
  .nav-drawer__nav-area {
    flex-shrink: 0;
    height: 100vh;
    background: #faf7ef;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
}
@media (min-width: 769px) and (max-width: 1000px) {
  .nav-drawer__nav-area {
    width: 70%;
    max-width: 70%;
  }
}
@media (min-width: 1001px) {
  .nav-drawer__nav-area {
    width: 60%;
    max-width: 60%;
  }
}

.nav-drawer__header {
  display: none;
}
@media (min-width: 769px) {
  .nav-drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 40px 20px;
    border-bottom: none;
  }
}

@media (min-width: 769px) {
  .nav-drawer__header-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}

.nav-drawer__company-name {
  display: none;
}
@media (min-width: 769px) {
  .nav-drawer__company-name {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #38080c;
    line-height: 1.4;
  }
}

.nav-drawer__company-name-en {
  display: none;
}
@media (min-width: 769px) {
  .nav-drawer__company-name-en {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #38080c;
    font-family: "Poppins", "serif";
    letter-spacing: 0.05em;
  }
}

.nav-drawer__header-right {
  display: none;
}
@media (min-width: 769px) {
  .nav-drawer__header-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}

.nav-drawer__header-contact {
  display: none;
}
@media (min-width: 769px) {
  .nav-drawer__header-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 48px;
    background: #e50012;
    color: #fff;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  .nav-drawer__header-contact:hover {
    opacity: 0.9;
  }
}

.nav-drawer__close-button {
  display: none;
}
@media (min-width: 769px) {
  .nav-drawer__close-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
  }
  .nav-drawer__close-button:hover {
    opacity: 0.8;
  }
  .nav-drawer__close-button svg {
    width: 24px;
    height: 24px;
  }
}

.nav-drawer__content {
  flex: 1;
  padding: 0;
  overflow-y: auto;
}
@media (min-width: 769px) {
  .nav-drawer__content {
    flex: 1;
    padding: 0 40px 40px;
    overflow-y: auto;
    min-height: 0;
    display: flex;
    justify-content: center;
  }
}

.nav-drawer__menu-wrapper {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 769px) {
  .nav-drawer__menu-wrapper {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0 80px;
    align-items: stretch;
    width: auto;
    justify-items: start;
  }
}

.nav-drawer__menu-item {
  padding: 16px 0;
  border-bottom: 1px solid #cacaca;
}
.nav-drawer__menu-item:first-child {
  margin-top: 0;
}
.nav-drawer__menu-item:last-child {
  border-bottom: none;
}
@media (min-width: 769px) {
  .nav-drawer__menu-item {
    padding: 12px 0;
    border-bottom: none;
  }
  .nav-drawer__menu-item:nth-child(-n+2) {
    margin-top: 0;
  }
}

.nav-drawer__menu-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #38080c;
  text-decoration: none;
  padding: 0 16px;
}
.nav-drawer__menu-heading .nav-drawer__menu-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.nav-drawer__menu-heading .nav-drawer__menu-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav-drawer__menu-heading:hover {
  opacity: 0.8;
}
@media (min-width: 769px) {
  .nav-drawer__menu-heading {
    padding: 0;
    font-size: 18px;
  }
}

.nav-drawer__sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
@media (min-width: 769px) {
  .nav-drawer__sub-menu {
    padding-left: 42px;
    margin-top: 12px;
    gap: 12px;
  }
}

.nav-drawer__sub-menu-item {
  position: relative;
  padding-left: 16px;
}
.nav-drawer__sub-menu-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #e50012;
  border-radius: 50%;
}
.nav-drawer__sub-menu-item a {
  font-size: 14px;
  font-weight: 500;
  color: #38080c;
  text-decoration: none;
}
.nav-drawer__sub-menu-item a:hover {
  opacity: 0.8;
}

.nav-drawer__footer {
  padding: 20px 16px;
  border-top: 1px solid #cacaca;
  background: #faf7ef;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
  padding-bottom: 80px;
}
@media (min-width: 769px) {
  .nav-drawer__footer {
    display: none;
  }
}

.nav-drawer__contact-button {
  width: 280px;
  height: 60px;
  padding: 0;
  background: #e50012;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.nav-drawer__contact-button:hover {
  opacity: 0.9;
}
@media (min-width: 769px) {
  .nav-drawer__contact-button {
    display: none;
  }
}

.nav-drawer__contact-button--corporate {
  color: #38080C;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  background: #fff;
}
.nav-drawer__contact-button--corporate::after {
  content: "";
  display: inline-block;
  background-image: url(../img/common/link-icon-bold.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 15px;
  aspect-ratio: 1;
}
@media (min-width: 769px) {
  .nav-drawer__contact-button {
    display: none;
  }
}

/* ========================================
    実績一覧ページ
    ======================================== */
.post-container {
  margin-bottom: 140px;
}
@media (max-width: 600px) {
  .post-container {
    margin-bottom: 80px;
  }
}

.m-works-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 600px) {
  .m-works-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.m-works-list__item {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.m-works-list__item a {
  padding: 30px 30px 85px;
  height: 100%;
  display: block;
  position: relative;
}
@media (max-width: 600px) {
  .m-works-list__item a {
    padding: 30px 30px 65px;
  }
}

.m-works-list__item a:has(.m-works-list__label:empty) {
  padding-bottom: 30px;
}

.m-works-list__item-img {
  overflow: hidden;
  border-radius: 10px;
}

.m-works-list__item-img img {
  aspect-ratio: 1/0.75;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  transition: transform 0.3s ease;
}
@media (max-width: 600px) {
  .m-works-list__item-img img {
    aspect-ratio: 1/0.6;
  }
}

.m-works-list__item-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-top: 30px;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .m-works-list__item-title {
    font-size: 18px;
    margin-top: 20px;
  }
}

.m-works-list__item:hover .m-works-list__item-title {
  color: #e50012;
}
.m-works-list__item:hover .m-works-list__item-img img {
  transform: scale(1.1);
}

.m-works-list__text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.m-works-list__label {
  position: absolute;
  bottom: 20px;
  left: 30px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #8A7779;
}
@media (max-width: 768px) {
  .m-works-list__label {
    margin-top: 10px;
  }
}

.works-post-main__title {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 600;
  margin-bottom: 48px;
}
@media (max-width: 600px) {
  .works-post-main__title {
    margin-bottom: 30px;
  }
}

.works-post-main {
  margin-bottom: 240px;
}
@media (max-width: 600px) {
  .works-post-main {
    margin-bottom: 120px;
  }
}
.works-post-main img {
  aspect-ratio: 1/0.5;
  object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.request-content {
  padding: 40px;
  padding-bottom: 20px;
  margin-top: 48px;
  border-radius: 20px;
  border: 1px solid #38080C;
}
@media (max-width: 600px) {
  .request-content {
    padding: 30px 20px;
    border-radius: 10px;
    padding-bottom: 20px;
    margin-top: 30px;
  }
}
.request-content h2 {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 20px;
  border-bottom: 1px solid #38080C;
}
@media (max-width: 600px) {
  .request-content h2 {
    font-size: 18px;
    padding-bottom: 15px;
  }
}
.request-content p {
  line-height: 1.8;
  margin-top: 28px;
}
@media (max-width: 600px) {
  .request-content p {
    margin-top: 15px;
    font-size: 14px;
  }
}

.flow-content {
  margin-top: 64px;
}
@media (max-width: 600px) {
  .flow-content {
    margin-top: 48px;
  }
}

@media (max-width: 600px) {
  .flow-content .container-lg {
    padding: 0;
  }
}

.flow-content__inner {
  margin-top: 48px;
  background: #FAF7EF;
  border-radius: 20px;
}
@media (max-width: 600px) {
  .flow-content__inner {
    margin-top: 30px;
    border-radius: 0px;
  }
}

.flow-content__list {
  width: 80%;
  margin: 0 auto;
  padding: 80px 0;
}
@media (max-width: 600px) {
  .flow-content__list {
    padding: 30px 20px;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .flow-content .m-page-head {
    padding-left: 20px;
  }
}

.flow-content__unit h3 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}
@media (max-width: 600px) {
  .flow-content__unit h3 {
    font-size: 18px;
  }
}

.flow-content__unit-body {
  background: #fff;
  border-radius: 10px;
  padding: 20px 30px;
  margin-top: 10px;
}
@media (max-width: 600px) {
  .flow-content__unit-body {
    padding: 20px;
  }
}
.flow-content__unit-body p {
  line-height: 1.8;
}

.flow-content__unit-btn {
  width: 40px;
  height: auto;
  margin: 0 auto;
  margin-top: 20px;
}
.flow-content__unit-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flow-content__unit:last-child .flow-content__unit-btn {
  display: none;
}

.works-post-main__content {
  margin-top: 80px;
}
@media (max-width: 600px) {
  .works-post-main__content {
    margin-top: 48px;
  }
}
.works-post-main__content h4 {
  font-size: 26px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .works-post-main__content h4 {
    font-size: 22px;
  }
}
.works-post-main__content p {
  margin-top: 40px;
  line-height: 1.8;
}
@media (max-width: 600px) {
  .works-post-main__content p {
    margin-top: 20px;
    font-size: 15px;
  }
}
.works-post-main__content img {
  aspect-ratio: 1/0.7;
  object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 20px;
}
@media (max-width: 600px) {
  .works-post-main__content img {
    aspect-ratio: 1/0.53;
    border-radius: 10px;
  }
}

.works-post-main__content-01 .works-post-main__content-inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 600px) {
  .works-post-main__content-01 .works-post-main__content-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.works-post-main__content-02 .works-post-main__content-inner {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 600px) {
  .works-post-main__content-02 .works-post-main__content-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    grid-row: 2;
  }
}

@media (max-width: 600px) {
  .works-post-main__content-02 .works-post-main__content-right {
    grid-row: 1;
  }
}

/* ========================================
    お知らせ一覧ページ
    ======================================== */
.m-news-list__item a {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 30px 0;
  padding-left: 16px;
  justify-content: space-between;
  border-bottom: 1px solid #d5d5d5;
  transition: background 0.3s ease;
}
@media (max-width: 600px) {
  .m-news-list__item a {
    flex-direction: column-reverse;
    justify-content: start;
    align-items: start;
    gap: 10px;
    padding: 20px 0;
  }
}
.m-news-list__item a:hover {
  background: #FAE7E8;
}

.m-news-list__item-title {
  font-weight: 600;
}

/* ========================================
    投稿詳細ページ
    ======================================== */
.single-page {
  margin-top: 220px;
  margin-bottom: 140px;
}
@media (max-width: 600px) {
  .single-page {
    margin-top: 140px;
    margin-bottom: 50px;
  }
}

.m-post-main img {
  object-fit: contain;
  width: auto;
  height: auto;
  margin-bottom: 30px;
}
.m-post-main p {
  margin-bottom: 30px;
  line-height: 2;
}
@media (max-width: 600px) {
  .m-post-main p {
    font-size: 15px;
    padding-bottom: 20px;
  }
}
.m-post-main a {
  display: inline-block;
  margin-bottom: 30px;
  text-decoration: underline;
}
.m-post-main h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 80px;
}
@media (max-width: 600px) {
  .m-post-main h1 {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.m-post-main h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #38080C;
}
@media (max-width: 600px) {
  .m-post-main h2 {
    font-size: 22px;
    padding-bottom: 20px;
    padding-bottom: 20px;
  }
}
.m-post-main h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .m-post-main h3 {
    font-size: 18px;
    padding-bottom: 20px;
  }
}

.single-page__btn a {
  margin: 0 0 0 auto;
  margin-top: 80px;
}
@media (max-width: 600px) {
  .single-page__btn a {
    margin-top: 48px;
  }
}

/* ハンバーガーメニューのボタン位置 */
.header__nav-button {
  width: 56px;
  height: 56px;
  border: none;
  padding: 0;
  cursor: pointer;
  display: none;
  position: relative;
  z-index: 101;
  border-radius: 50%;
  background: #e50012;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (max-width: 1280px) {
  .header__nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header__nav-button:hover {
  opacity: 0.8;
}

.header.is-scrolled .header__nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__nav-button .hamburger-menu__icon {
  position: relative;
  width: 20px;
  height: 14px;
}

.header__nav-button .hamburger-menu__icon span {
  display: block;
  width: 20px;
  height: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  transition: ease 0.4s;
}

.header__nav-button .hamburger-menu__icon span:nth-child(1) {
  top: 12px;
}

.header__nav-button .hamburger-menu__icon span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.header__nav-button .hamburger-menu__icon span:nth-child(3) {
  bottom: 12px;
}

.header__nav-button.active {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header__nav-button.active .hamburger-menu__icon span {
  background: #151515;
}

.header__nav-button.active .hamburger-menu__icon span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.header__nav-button.active .hamburger-menu__icon span:nth-child(2) {
  opacity: 0;
}

.header__nav-button.active .hamburger-menu__icon span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ========================================
    ユーティリティ
    ======================================== */
.u-pc-only {
  display: block;
}
@media (max-width: 600px) {
  .u-pc-only {
    display: none;
  }
}

.u-sp-only {
  display: none;
}
@media (max-width: 600px) {
  .u-sp-only {
    display: block;
  }
}

/* ========================================
    トップページ
    ======================================== 
*/
.top-vision {
  padding-top: 180px;
}
@media (max-width: 1280px) {
  .top-vision {
    padding-top: 120px;
  }
}
@media (max-width: 600px) {
  .top-vision {
    padding-top: 40px;
  }
}

.top-vision__inner {
  width: 90vw;
  margin: 0 0 0 auto;
}
@media (max-width: 1280px) {
  .top-vision__inner {
    width: 95vw;
    padding-right: 5%;
  }
}
@media (max-width: 600px) {
  .top-vision__inner {
    width: 100%;
    padding: 0 20px;
  }
}

.top-vision__content-inner {
  display: flex;
  margin-top: 60px;
  gap: 40px;
}
@media (max-width: 768px) {
  .top-vision__content-inner {
    flex-direction: column-reverse;
  }
}

.top-vision__content-left {
  flex-shrink: 0;
}

.top-vision__content-left-title {
  font-weight: 600;
  font-size: clamp(24px, 2.7vw, 40px);
}

.top-vision__content-left-text {
  line-height: 2.5;
  font-weight: 500;
  margin-top: 48px;
  margin-bottom: 48px;
}

.top-vision__content-right {
  width: 50%;
  margin: 0 0 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .top-vision__content-right {
    width: 100%;
    margin: 0;
  }
}

.top-vision__content-right-img01 {
  width: 100%;
  height: 100%;
  max-height: 730px;
}
.top-vision__content-right-img01 img {
  width: 100%;
  height: 100%;
  border-radius: 20px 0 0 20px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .top-vision__content-right-img01 {
    display: none;
  }
}

.top-vision__content-right-img01-sp {
  display: none;
}
@media (max-width: 768px) {
  .top-vision__content-right-img01-sp {
    display: block;
    width: 80%;
  }
}

.top-vision__content-right-img02 {
  width: clamp(120px, 18vw, 284px);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .top-vision__content-right-img02 {
    left: 75%;
  }
}

.top-vision__content-right-img03 {
  width: clamp(120px, 18vw, 163px);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}
.top-vision__content-right-img03 img {
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  .top-vision__content-right-img03 {
    display: none;
  }
}

.top-business {
  margin-top: 120px;
  padding: 120px 0;
  background: url("../img/common/section-bg.webp") center center/cover no-repeat;
}
@media (max-width: 600px) {
  .top-business {
    margin-top: 42px;
    padding: 42px 0;
  }
}

.top-business__content-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .top-business__content-head {
    grid-template-columns: 1fr;
  }
}

.top-business__content-head-text p {
  line-height: 2.5;
}

.top-business__content-head-btn {
  width: fit-content;
  margin: 0 0 0 auto;
  margin-top: 48px;
}
@media (max-width: 600px) {
  .top-business__content-head-btn {
    margin: 0 auto;
    margin-top: 20px;
  }
}

.top-business__content {
  margin-top: 60px;
  padding: 80px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
  .top-business__content {
    margin-top: 20px;
    padding: 20px;
  }
}

.header__nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (min-width: 601px) {
  .top-business__inner {
    position: relative;
  }
  .top-business__content {
    position: sticky;
  }
  .top-business__content--01 {
    top: 100px;
    z-index: 1;
  }
  .top-business__content--02 {
    top: 120px;
    z-index: 2;
  }
  .top-business__content--03 {
    top: 140px;
    z-index: 3;
  }
}
.top-business__content-label span {
  display: inline-block;
  background: #e50012;
  padding: 10px 20px;
  border-radius: 20px;
  color: #fff;
  font-family: "Poppins", "serif";
}
@media (max-width: 600px) {
  .top-business__content-label span {
    margin-bottom: 20px;
  }
}

.top-business__content-inner {
  display: flex;
  gap: 60px;
  align-items: end;
}
@media (max-width: 600px) {
  .top-business__content-inner {
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.top-business__content-left-title {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
}

.top-about__content {
  border-radius: 20px;
  position: relative;
}
@media (max-width: 600px) {
  .top-about__content {
    border-radius: 10px;
  }
}

.top-about__content-inner {
  position: absolute;
  top: 50%;
  left: 16%;
  transform: translate(0%, -50%);
  color: #fff;
}
@media (max-width: 1280px) {
  .top-about__content-inner {
    left: 5%;
  }
}
@media (max-width: 600px) {
  .top-about__content-inner {
    left: 0%;
    transform: translate(0%, -50%);
    padding: 0 20px;
  }
}

.top-business__content-left-text {
  margin-top: 30px;
  line-height: 1.8;
}

.top-business__content-right {
  width: 40%;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .top-business__content-right {
    width: 100%;
    margin: 0;
  }
}

.top-about__content-btn {
  width: fit-content;
  margin-top: 48px;
}
@media (max-width: 600px) {
  .top-about__content-btn {
    margin-top: 20px;
  }
}

.top-about__content-title {
  color: #fff;
}
.top-about__content-title span {
  color: #fff;
}

.top-about__movie {
  margin-top: 40px;
}
@media (max-width: 600px) {
  .top-about__movie {
    margin-top: 30px;
  }
}

.top-about__content-head {
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 600;
  color: #e50012;
}
@media (max-width: 1280px) {
  .top-about__content-head {
    margin-top: 30px;
  }
}

.top-about__content-head-white {
  color: #fff;
  margin-top: 60px;
}
@media (max-width: 1280px) {
  .top-about__content-head-white {
    margin-top: 30px;
  }
}

.top-about__content-text {
  font-size: 18px;
  line-height: 2.5;
  font-weight: 500;
  margin-top: 48px;
}
@media (max-width: 1280px) {
  .top-about__content-text {
    margin-top: 20px;
    text-align: left;
    font-size: 15px;
    line-height: 2;
  }
}

.top-factory {
  background: url("../img/common/section-bg.webp") center center/cover;
}

@media (max-width: 600px) {
  .top-factory .container-lg {
    padding: 0;
  }
}

.top-factory__content {
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .top-factory__content {
    flex-direction: column-reverse;
    padding: 48px 0px;
  }
}

.top-factory__left {
  width: 50%;
  display: flex;
  gap: 16px;
}
@media (max-width: 1280px) {
  .top-factory__left {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .top-factory__left {
    width: 40%;
  }
}
@media (max-width: 600px) {
  .top-factory__left {
    width: 100%;
    flex-direction: column;
    margin-top: 30px;
  }
}

.top-factory__left-splide,
.top-factory__left-splide02 {
  width: 50%;
  overflow: hidden;
}
@media (max-width: 600px) {
  .top-factory__left-splide,
  .top-factory__left-splide02 {
    width: 100%;
  }
}

.top-factory__left-splide02 {
  position: relative;
  isolation: isolate;
}

.splide-wrapper {
  width: 100%;
  overflow: hidden;
}

.splide[aria-label*=縦] .splide__track {
  height: 100%;
}

.splide[aria-label*=縦] .splide__slide img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 0.3/1;
  object-fit: cover;
  border-radius: 20px;
}
@media (max-width: 600px) {
  .splide[aria-label*=縦] .splide__slide img {
    max-width: 100%;
    aspect-ratio: 1/0.6;
    border-radius: 10px;
  }
}

.top-factory__left-splide01-splide .splide__track,
.top-factory__left-splide01-splide .splide__list {
  will-change: transform;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.top-factory__left-splide01-splide .splide__slide img {
  will-change: transform;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.top-factory__right {
  width: 50%;
  padding-left: 60px;
}
@media (max-width: 600px) {
  .top-factory__right {
    width: 100%;
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .top-factory__right-inner {
    padding: 0 20px;
  }
}

.top-factory__right-text {
  margin-top: 48px;
  line-height: 2;
}

.top-factory__right-btn {
  width: max-content;
  margin: 0 0 0 auto;
  margin-top: 48px;
}
@media (max-width: 600px) {
  .top-factory__right-btn {
    margin-top: 30px;
    margin: 0 auto;
  }
}

.top-works {
  margin-top: 120px;
  position: relative;
  padding-bottom: 50px;
}
.top-works::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 75vw;
  height: 60%;
  background: #faf7ef;
  border-radius: 0 20px 20px 0;
  z-index: -1;
}
@media (max-width: 600px) {
  .top-works::after {
    width: 90%;
    height: 80%;
    border-radius: 0 10px 10px 0;
  }
}
@media (max-width: 600px) {
  .top-works {
    margin-top: 48px;
  }
}

.top-works__content {
  margin-top: 60px;
}

@media (max-width: 600px) {
  .top-works .m-section-ttl {
    text-align: center;
  }
}

.top-works__btn {
  width: fit-content;
  margin: 0 0 0 auto;
  margin-top: 48px;
  margin-right: 120px;
}

.top-news {
  margin-top: 120px;
}
@media (max-width: 600px) {
  .top-news {
    margin-top: 48px;
  }
}

@media (max-width: 600px) {
  .top-news .m-section-ttl {
    text-align: center;
  }
}

.top-news__inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .top-news__inner {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

.top-news__content-right {
  width: 50%;
  flex-shrink: 0;
  margin-top: 50px;
}
@media (max-width: 600px) {
  .top-news__content-right {
    width: 100%;
    margin-top: 10px;
  }
}

.top-news__content-left-btn {
  margin-top: 48px;
}

/* ========================================
    ビジョンページ
    ======================================== */
.vision-points {
  margin-top: 80px;
}
@media (max-width: 600px) {
  .vision-points {
    margin-top: 60px;
  }
}

.vision-points__pc {
  display: flex;
  gap: 72px;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .vision-points__pc {
    display: none;
  }
}

.vision-points__sp {
  display: none;
}
@media (max-width: 768px) {
  .vision-points__sp {
    display: block;
  }
}

.vision-points__pc-left {
  width: 45%;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.vision-points__pc-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}
.vision-points__pc-img img {
  width: 100%;
  height: auto;
  display: block;
}
.vision-points__pc-img--01 {
  position: relative;
  opacity: 1;
}

.vision-points__content {
  margin-top: 240px;
  padding-bottom: 200px;
}
@media (max-width: 768px) {
  .vision-points__content {
    margin-top: 40px;
    padding-bottom: 0;
  }
}

.vision-points__content-head {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .vision-points__content-head {
    margin-top: 20px;
    gap: 14px;
  }
}

.vision-points__content-num {
  font-size: clamp(32px, 4vw, 60px);
  font-weight: bold;
  color: #e50012;
  font-family: "Poppins", "serif";
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.vision-points__content-num span {
  font-size: clamp(12px, 1.5vw, 20px);
}

.vision-points__content-title {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
}

.vision-points__content-text {
  margin-top: 34px;
  line-height: 2;
}
@media (max-width: 600px) {
  .vision-points__content-text {
    margin-top: 20px;
  }
}

.vision-points__content .m-more-btn a {
  margin: 0 0 0 auto;
  margin-top: 48px;
}
@media (max-width: 600px) {
  .vision-points__content .m-more-btn a {
    margin: inherit;
    margin-top: 30px;
  }
}

.vision-concept {
  margin-top: 200px;
}
@media (max-width: 768px) {
  .vision-concept {
    margin-top: 48px;
  }
}

.vision-concept {
  position: relative;
}

.vision-concept__inner {
  position: absolute;
  top: 50%;
  left: 16%;
  transform: translate(0%, -50%);
  color: #fff;
}
@media (max-width: 768px) {
  .vision-concept__inner {
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 16px;
  }
}

.vision-concept__title {
  font-size: clamp(24px, 2.7vw, 40px);
  font-weight: 600;
}

.vision-concept__text {
  margin-top: 48px;
  line-height: 2.5;
  font-size: 18px;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .vision-concept__text {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 22px;
  }
}

.vision-future {
  margin-top: 120px;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .vision-future {
    margin-top: 48px;
    overflow: hidden;
  }
}

.vision-future__content {
  position: relative;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .vision-future__content {
    padding-bottom: 70px;
  }
}

.vision-future__content-text {
  line-height: 2.5;
  font-weight: 500;
  margin-top: 48px;
  text-align: center;
}
@media (max-width: 768px) {
  .vision-future__content-text {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
  }
}

.vision-future__accent {
  position: absolute;
}
@media (max-width: 768px) {
  .vision-future__accent {
    position: relative;
  }
}

@media (max-width: 768px) {
  .vision-future__accent-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
  }
}

.vision-future__accent--01 {
  width: 11vw;
  max-width: 160px;
  min-width: 90px;
  top: 0;
  left: 0;
  transform: translate(-50%, -20%);
}
@media (max-width: 768px) {
  .vision-future__accent--01 {
    top: inherit;
    left: inherit;
    transform: translate(0%, 0%);
  }
}

.vision-future__accent--02 {
  width: 12vw;
  max-width: 180px;
  min-width: 120px;
  bottom: 0;
  left: 0;
  transform: translate(15%, 0%);
}
@media (max-width: 768px) {
  .vision-future__accent--02 {
    max-width: 120px;
    top: inherit;
    left: inherit;
    transform: translate(20px, 50%);
    z-index: 2;
  }
}

.vision-future__accent--03 {
  width: 17vw;
  max-width: 270px;
  min-width: 200px;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}
@media (max-width: 768px) {
  .vision-future__accent--03 {
    top: inherit;
    right: inherit;
    transform: translate(0%, 0%);
  }
}

.about-message {
  position: relative;
}

.about-message__inner {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 16%;
  transform: translate(0%, -50%);
  color: #fff;
}
@media (max-width: 768px) {
  .about-message__inner {
    left: 0%;
    transform: translate(0%, -50%);
    padding: 0 20px;
  }
}

.about-message__title {
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.8;
  font-weight: bold;
}

.about-message__text {
  font-size: 15px;
  line-height: 2.2;
  margin-top: 48px;
  max-width: 600px;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .about-message__text {
    margin-top: 30px;
  }
}

.about-representative-message {
  width: 78vw;
  padding-left: 15%;
  background: #fff;
  border-radius: 0 20px 0 0;
  margin-top: -200px;
  padding-top: 120px;
}
@media (max-width: 1280px) {
  .about-representative-message {
    width: 95vw;
    padding-left: 5%;
  }
}
@media (max-width: 768px) {
  .about-representative-message {
    width: 95%;
    margin-top: -80px;
    padding: 0 20px;
    padding-top: 80px;
  }
}

.about-representative-message__content {
  display: flex;
  gap: 78px;
  max-width: 1200px;
}
@media (max-width: 1280px) {
  .about-representative-message__content {
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .about-representative-message__content {
    gap: 0px;
    flex-direction: column-reverse;
    margin-top: 40px;
  }
}

.about-representative-message__name {
  font-weight: 600;
}
.about-representative-message__name span {
  font-size: 20px;
}

.about-representative-message__left p {
  line-height: 2;
  width: 100%;
  max-width: 600px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .about-representative-message__left p {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .about-representative-message__left {
    width: 60%;
    flex-shrink: 0;
  }
}
@media (max-width: 600px) {
  .about-representative-message__left {
    width: 100%;
  }
}

.about-philosophy {
  margin-top: 80px;
}
@media (max-width: 600px) {
  .about-philosophy {
    margin-top: 48px;
  }
}

.about-philosophy__content {
  margin-top: 48px;
}
@media (max-width: 600px) {
  .about-philosophy__content {
    margin-top: 30px;
  }
}

.about-philosophy__slogan {
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 600;
  text-align: center;
  margin-top: 48px;
}
@media (max-width: 420px) {
  .about-philosophy__slogan {
    font-size: 22px;
  }
}
.about-philosophy__slogan span {
  width: 2em;
  display: inline-block;
}
@media (max-width: 420px) {
  .about-philosophy__slogan span {
    width: 1.5em;
  }
}
@media (max-width: 600px) {
  .about-philosophy__slogan {
    margin-top: 30px;
  }
}

.about-philosophy__content-items {
  margin-top: 80px;
}
@media (max-width: 600px) {
  .about-philosophy__content-items {
    margin-top: 60px;
  }
}

.about-philosophy__content-item {
  background: #FAF7EF;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}
@media (max-width: 600px) {
  .about-philosophy__content-item {
    padding: 36px 20px;
    border-radius: 10px;
    text-align: left;
  }
}

.about-philosophy__content-text {
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 24px);
  margin-top: 20px;
}

.about-action-guidelines {
  margin-top: 80px;
  margin-bottom: 120px;
}
@media (max-width: 600px) {
  .about-action-guidelines {
    margin-top: 60px;
  }
}

.about-action-guidelines__content {
  margin-top: 48px;
}

.about-action-guidelines__content-unit {
  border-radius: 10px;
  padding: 30px 40px;
  border: 1px solid #D5D5D5;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about-action-guidelines__content-unit {
    padding: 30px 20px;
  }
}

.about-action-guidelines__content-title {
  font-size: 20px;
  font-weight: bold;
  color: #e50012;
}
@media (max-width: 600px) {
  .about-action-guidelines__content-title {
    font-size: 18px;
  }
}

.about-action-guidelines__content-list {
  margin-top: 20px;
}

.about-action-guidelines__content-item {
  line-height: 2;
  font-weight: 500;
}

.about-company-profile {
  margin-top: 120px;
}

.about-company-profile__inner {
  width: 80vw;
  display: flex;
  gap: 80px;
}
@media (max-width: 1280px) {
  .about-company-profile__inner {
    width: 95vw;
    padding: 0 20px;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .about-company-profile__inner {
    width: 100%;
    gap: 48px;
    flex-direction: column-reverse;
    width: 100%;
    padding: 0 20px;
  }
}

.about-company-profile__left {
  width: 60%;
  flex-shrink: 0;
}
@media (max-width: 1280px) {
  .about-company-profile__left {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .about-company-profile__left {
    width: 40%;
  }
}
@media (max-width: 600px) {
  .about-company-profile__left {
    width: 100%;
  }
}

.about-company-profile__right {
  width: 100%;
}

.about-company-profile__right-content {
  margin-top: 60px;
}

.about-company-profile__right-item {
  border-bottom: 1px solid #D5D5D5;
  display: flex;
  gap: 30px;
  padding: 30px 0;
}

.about-company-profile__right-title {
  font-weight: bold;
  min-width: 6em;
}

.about-company-profile__right-text--tel {
  white-space: nowrap;
}

/* ========================================
    プライバシーポリシー
    ======================================== */
.policy {
  padding-top: 100px;
  padding-bottom: 100px;
}

.policy__title {
  font-size: 24px;
  margin-bottom: 40px;
}

.policy__content {
  line-height: 1.75;
}
.policy__content .wp-block-heading {
  font-size: 20px;
  margin-top: 30px;
}
.policy__content .wp-block-spacer {
  height: 40px !important;
}
.policy__content .wp-block-list {
  padding: 20px 0;
  list-style: disc;
  margin-left: 1em;
}
.policy__content p,
.policy__content a,
.policy__content li {
  margin-top: 1em;
}

/* ========================================
    お問い合わせ
    ======================================== */
.contact__info {
  font-size: 14px;
  line-height: 2;
}
@media (max-width: 600px) {
  .contact__info {
    font-size: 13px;
  }
}

.contact__info span {
  color: red;
}

.contact__form {
  margin-top: 64px;
  width: 100%;
}

.form-unit {
  width: 100%;
  margin-bottom: 2em;
}

.form-unit--zip .wpcf7-form-control-wrap {
  display: inline-block;
  width: auto;
  margin: 0;
  vertical-align: middle;
}
.form-unit--zip .form-unit__input {
  width: auto;
  min-width: 80px;
  max-width: 120px;
  min-height: 46px;
  display: inline-block;
  box-sizing: border-box;
}
.form-unit--zip .form-unit__separator {
  display: inline-block;
  margin: 0 0.3em;
  font-size: 1.2em;
  vertical-align: middle;
}
.form-unit--zip > * {
  display: inline;
  vertical-align: middle;
}
.form-unit--zip .form-unit__head {
  display: block;
}
@media (max-width: 600px) {
  .form-unit--zip .wpcf7-form-control-wrap {
    display: inline-block;
    width: auto;
    margin: 0;
  }
  .form-unit--zip .form-unit__input {
    width: auto;
    min-width: 60px;
    max-width: 90px;
    min-height: 46px;
    display: inline-block;
    font-size: 14px;
    padding: 6px;
    box-sizing: border-box;
  }
}

.form-unit--tel .wpcf7-form-control-wrap {
  display: inline-block;
  width: auto;
  margin: 0;
  vertical-align: middle;
}
.form-unit--tel .form-unit__input {
  width: auto;
  min-width: 70px;
  max-width: 100px;
  min-height: 46px;
  display: inline-block;
  box-sizing: border-box;
}
.form-unit--tel .form-unit__separator {
  display: inline-block;
  margin: 0 0.3em;
  font-size: 1.2em;
  vertical-align: middle;
}
.form-unit--tel > * {
  display: inline;
  vertical-align: middle;
}
.form-unit--tel .form-unit__head {
  display: block;
}
@media (max-width: 600px) {
  .form-unit--tel .wpcf7-form-control-wrap {
    display: inline-block;
    width: auto;
    margin: 0;
  }
  .form-unit--tel .form-unit__input {
    width: auto;
    min-width: 50px;
    max-width: 100px;
    min-height: 46px;
    display: inline-block;
    font-size: 14px;
    padding: 6px;
    box-sizing: border-box;
  }
}

.form-unit__head {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
}

.m-required::before {
  content: "※";
  color: red;
  font-size: 10px;
  margin-left: 2px;
  border-radius: 4px;
  padding: 0 5px;
}

.form-unit__input,
.form-unit__input-wrap {
  width: 100%;
  height: auto;
  min-height: 46px;
  padding: 8px;
  border: 1px solid #DDDDDD;
  background: #ffffff;
  border-radius: 0;
  font-size: 16px;
  box-sizing: border-box;
}

.form-unit__textarea,
.form-unit__textarea-wrap {
  width: 100%;
  padding: 8px;
  height: 210px;
  border: 1px solid #DDDDDD;
  background: #ffffff;
  border-radius: 0;
  font-size: 16px;
}

.form-unit__radio {
  margin-top: 20px;
}

.form-unit__date {
  width: 40%;
  height: 70px;
  padding: 8px;
  border: 1px solid #DDDDDD;
  background: #ffffff;
  border-radius: 0;
  font-size: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 46px;
}

@media screen and (max-width: 768px) {
  .form-unit__date {
    width: 50%;
    height: 54px;
  }
  .form-grid {
    gap: 0 16px;
  }
}
.wpcf7-list-item {
  display: block;
  margin-left: 0;
  margin-right: 20px;
}

.wpcf7-submit,
.form__submit {
  text-align: center;
  display: block;
  width: 100%;
  max-width: 230px;
  margin: 40px auto 0;
  padding: 18px 40px;
  border-radius: 50px;
  border: none;
  background-color: #CCCCCC;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: not-allowed;
  transition: all 0.3s ease;
  font-family: inherit;
  pointer-events: none;
}
.wpcf7-submit.is-enabled,
.form__submit.is-enabled {
  background-color: #38080c;
  cursor: pointer;
  pointer-events: auto;
}
.wpcf7-submit.is-enabled:hover,
.form__submit.is-enabled:hover {
  background-color: #2F0609;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.wpcf7-submit.is-enabled:active,
.form__submit.is-enabled:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
@media (max-width: 600px) {
  .wpcf7-submit,
  .form__submit {
    padding: 16px 32px;
    font-size: 15px;
  }
}

.contact--confirm .wpcf7-submit,
.contact--confirm .form__submit {
  background-color: #38080c;
  cursor: pointer;
  pointer-events: auto;
}
.contact--confirm .wpcf7-submit:hover,
.contact--confirm .form__submit:hover {
  background-color: #2F0609;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.contact--confirm .wpcf7-submit:active,
.contact--confirm .form__submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.wpcf7-radio {
  -webkit-appearance: button !important;
  appearance: button !important;
  display: flex;
}

.wpcf7-radio input:hover,
.wpcf7-radio label:hover {
  cursor: pointer;
}

.wpcf7-response-output {
  border-color: transparent !important;
  text-align: center !important;
}

input[type=radio] {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #38080c;
  position: relative;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(-2px);
}

input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #38080c;
  transform: translate(-50%, -50%);
}

.form-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #38080c;
  position: relative;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(-2px);
}

.form-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 25%;
  width: 5px;
  height: 10px;
  border-right: 1px solid #38080c;
  border-bottom: 1px solid #38080c;
  transform: rotate(45deg) translate(-50%, -50%);
}

.form-unit__policy-link {
  border-bottom: 1px solid #38080c;
}

@media screen and (max-width: 768px) {
  .form-unit__policy-link {
    font-size: 15px;
  }
}
.form-consent {
  margin-top: 80px;
  margin-bottom: 80px;
  text-align: center;
}

input.wpcf7-form-control.wpcf7-previous {
  display: block;
  margin: 0 auto;
}

.privacy-policy-box {
  width: 100%;
  height: 300px;
  padding: 30px;
  overflow-y: auto;
  border: 1px solid #DDDDDD;
}
@media (max-width: 600px) {
  .privacy-policy-box {
    padding: 20px;
    height: 500px;
  }
}

.contact--confirm {
  margin-bottom: 120px;
}
.contact--confirm .form-unit__confirm-value {
  width: 100%;
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid #DDDDDD;
  background-color: #f9f9f9;
  border-radius: 0;
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  word-break: break-word;
}
.contact--confirm .form-unit__confirm-value input,
.contact--confirm .form-unit__confirm-value textarea,
.contact--confirm .form-unit__confirm-value .form-unit__input,
.contact--confirm .form-unit__confirm-value .form-unit__textarea,
.contact--confirm .form-unit__confirm-value .wpcf7-form-control {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  width: 100% !important;
  min-height: auto !important;
  height: auto !important;
  font-size: inherit !important;
  color: inherit !important;
  pointer-events: none !important;
  cursor: default !important;
}
.contact--confirm .form-unit--zip .form-unit__confirm-value {
  display: flex;
  align-items: center;
  gap: 0.3em;
  flex-wrap: wrap;
}
.contact--confirm .form-unit--zip .wpcf7-form-control-wrap {
  display: inline-block;
  width: auto;
  margin: 0;
}
.contact--confirm .form-unit--zip .form-unit__separator {
  display: inline-block;
  margin: 0 0.3em;
  font-size: 1.2em;
}
.contact--confirm .form-unit--zip input,
.contact--confirm .form-unit--zip .form-unit__input,
.contact--confirm .form-unit--zip .wpcf7-form-control {
  width: auto !important;
  min-width: 80px;
  max-width: 120px;
  display: inline-block !important;
}
@media (max-width: 600px) {
  .contact--confirm .form-unit--zip input,
  .contact--confirm .form-unit--zip .form-unit__input,
  .contact--confirm .form-unit--zip .wpcf7-form-control {
    min-width: 60px;
    max-width: 90px;
    font-size: 14px;
  }
}
.contact--confirm .form-unit--tel .form-unit__confirm-value {
  display: flex;
  align-items: center;
  gap: 0.3em;
  flex-wrap: wrap;
}
.contact--confirm .form-unit--tel .wpcf7-form-control-wrap {
  display: inline-block;
  width: auto;
  margin: 0;
}
.contact--confirm .form-unit--tel .form-unit__separator {
  display: inline-block;
  margin: 0 0.3em;
  font-size: 1.2em;
}
.contact--confirm .form-unit--tel input,
.contact--confirm .form-unit--tel .form-unit__input,
.contact--confirm .form-unit--tel .wpcf7-form-control {
  width: auto !important;
  min-width: 70px;
  max-width: 100px;
  display: inline-block !important;
}
@media (max-width: 600px) {
  .contact--confirm .form-unit--tel input,
  .contact--confirm .form-unit--tel .form-unit__input,
  .contact--confirm .form-unit--tel .wpcf7-form-control {
    min-width: 50px;
    max-width: 100px;
    font-size: 14px;
  }
}
.contact--confirm .form-unit__textarea-wrap .form-unit__confirm-value {
  min-height: 210px;
  align-items: flex-start;
  padding-top: 12px;
}
.contact--confirm .form-submit-wrap {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 15px !important;
  margin-top: 40px !important;
}
.contact--confirm input.wpcf7-previous,
.contact--confirm .wpcf7-previous,
.contact--confirm .wpcf7-form-control.wpcf7-previous {
  display: inline-block !important;
  padding: 18px 40px !important;
  border-radius: 50px !important;
  border: 1px solid #DDDDDD !important;
  background-color: #ffffff !important;
  color: #333 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  font-family: inherit !important;
  text-decoration: none !important;
  text-align: center !important;
  max-width: 230px !important;
  width: 100% !important;
  margin: 0 !important;
}
.contact--confirm input.wpcf7-previous:hover,
.contact--confirm .wpcf7-previous:hover,
.contact--confirm .wpcf7-form-control.wpcf7-previous:hover {
  background-color: #f5f5f5 !important;
  border-color: #999 !important;
}
@media (max-width: 600px) {
  .contact--confirm input.wpcf7-previous,
  .contact--confirm .wpcf7-previous,
  .contact--confirm .wpcf7-form-control.wpcf7-previous {
    padding: 16px 32px !important;
    font-size: 15px !important;
  }
}
.contact--confirm .thanks__head {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin: 80px 0 20px 0;
  color: #333;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .contact--confirm .thanks__head {
    font-size: 20px;
    margin: 60px 0 16px 0;
  }
}
.contact--confirm .thanks__text {
  font-size: 16px;
  text-align: center;
  margin: 0 0 60px 0;
  color: #666;
  line-height: 1.8;
}
@media (max-width: 600px) {
  .contact--confirm .thanks__text {
    font-size: 14px;
    margin: 0 0 40px 0;
  }
}
.contact--confirm .top-link {
  text-align: center;
  margin-top: 40px;
}
.contact--confirm .top-link a {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 50px;
  border: 1px solid #38080c;
  background-color: #ffffff;
  color: #38080c;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  max-width: 230px;
  width: 100%;
}
.contact--confirm .top-link a:hover {
  background-color: #38080c;
  color: #ffffff;
}
@media (max-width: 600px) {
  .contact--confirm .top-link a {
    padding: 16px 32px;
    font-size: 15px;
  }
}

/*--------------------------------------------------
accordion_section
--------------------------------------------------*/
.faq {
  margin-bottom: 140px;
}

.accordion__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}

.accordion__q {
  display: flex;
  border-radius: 8px;
  background: #FAF7EF;
  padding: 30px 2em 30px 2em;
  cursor: pointer;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  align-items: center;
  z-index: 1;
}
@media (max-width: 600px) {
  .accordion__q {
    padding: 20px 2em 20px 1em;
  }
}

.accordion__q::before {
  content: "";
  display: inline-block;
  margin-right: 20px;
  width: 36px;
  height: 36px;
  background: url(../img/common/faq-q.webp) center/cover;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .accordion__q::before {
    margin-right: 10px;
  }
}

.accordion__q::after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
  background: url(../img/common/icon_plus.webp) center/cover;
}

@media screen and (max-width: 768px) {
  .accordion__q::after {
    right: 1em;
  }
}
.accordion__q.is_active::after {
  content: "";
  background: url(../img/common/icon_minus.webp) center/cover;
}

.accordion__a {
  box-sizing: border-box;
  height: 0;
  overflow: hidden;
  line-height: 1.9;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: none;
}

.accordion__a-inner {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 2em;
}
@media (max-width: 600px) {
  .accordion__a-inner {
    padding-left: 1em;
    padding-right: 0;
  }
}

.accordion__a-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.accordion__q.is_active + .accordion__a {
  opacity: 1;
  visibility: visible;
  height: auto;
  transition: height 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
}

.accordion__a p {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .accordion__a p {
    font-size: 14px;
  }
}
/* ========================================
    工場・設備紹介
    ======================================== */
.factory-supported-category {
  padding-top: 80px;
  padding-bottom: 100px;
}
@media (max-width: 600px) {
  .factory-supported-category {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.factory-supported-category__desc {
  margin-top: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding-left: 34px;
}
@media (max-width: 600px) {
  .factory-supported-category__desc {
    padding-left: 24px;
  }
}

.factory-supported-category__list {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 600px) {
  .factory-supported-category__list {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 30px;
  }
}

.factory-supported-category__item {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
  .factory-supported-category__item {
    padding: 20px;
  }
}

.factory-supported-category__item h3 {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .factory-supported-category__item h3 {
    font-size: 22px;
    margin-bottom: 14px;
  }
}

.factory-safety-measures {
  padding-top: 120px;
  padding-bottom: 150px;
}
@media (max-width: 600px) {
  .factory-safety-measures {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.factory-supported-category__text {
  margin-top: 20px;
  line-height: 1.5;
}

.factory-safety-measures__list {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .factory-safety-measures__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .factory-safety-measures__list {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 30px;
  }
}

.factory-safety-measures__item {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 30px 0 rgba(66, 63, 58, 0.1);
}
@media (max-width: 600px) {
  .factory-safety-measures__item {
    padding: 20px;
  }
}

.factory-safety-measures__item h3 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}

.factory-safety-measures__text {
  line-height: 1.8;
  margin-top: 20px;
}

.factory-certification {
  background: #FAF7EF;
  padding: 120px 0;
}
@media (max-width: 600px) {
  .factory-certification {
    padding: 48px 0;
  }
}

.factory-certification__ttl {
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 600;
  color: #e50012;
  text-align: center;
}

.factory-certification__img {
  width: 514px;
  margin-top: 48px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 600px) {
  .factory-certification__img {
    width: calc(100% - 20px);
    margin-top: 20px;
  }
}

.factory-certification__text {
  font-size: 16px;
  text-align: center;
  margin-top: 48px;
  line-height: 2;
}
@media (max-width: 600px) {
  .factory-certification__text {
    text-align: left;
    margin-top: 20px;
  }
}

/* .factory-info {
  margin-bottom: 140px;
}
@media (max-width: 600px) {
  .factory-info {
    margin-bottom: 80px;
  }
} */

.factory-info__content {
  margin-top: 120px;
}
@media (max-width: 600px) {
  .factory-info__content {
    margin-top: 50px;
  }
}

.factory-info__content:nth-of-type(2) {
  background: #FAF7EF;
  padding: 120px 0;
}
@media (max-width: 600px) {
  .factory-info__content:nth-of-type(2) {
    padding: 48px 0;
  }
}

.factory-info__content-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
  padding-left: 30px;
  margin-top: 24px;
}
@media (max-width: 600px) {
  .factory-info__content-text {
    padding-left: 0;
    margin-top: 20px;
  }
}

.factory-info__content-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .factory-info__content-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .factory-info__content-list {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 40px;
  }
}

.factory-info__content-img {
  margin-top: 48px;
}
@media (max-width: 600px) {
  .factory-info__content-img {
    margin-top: 40px;
  }
}

.factory-video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.factory-video-wrapper:hover .factory-video {
  filter: brightness(1.1);
}
.factory-video-wrapper:hover .factory-video__play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}
.factory-video-wrapper.is-playing .factory-video {
  filter: brightness(1.1);
}

.factory-video {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.3s ease;
}

.factory-video__play-btn {
  width: 180px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}
@media (max-width: 600px) {
  .factory-video__play-btn {
    width: 64px;
  }
}
.factory-video__play-btn img {
  display: block;
}
.factory-video__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.factory-video__play-btn:active {
  transform: translate(-50%, -50%) scale(0.95);
}
.factory-video-wrapper.is-playing .factory-video__play-btn {
  opacity: 0;
  pointer-events: none;
}

.factory-info__content-item {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 30px 0 rgba(66, 63, 58, 0.1);
}
@media (max-width: 600px) {
  .factory-info__content-item {
    padding: 20px;
  }
}

.factory-info__content-item-text {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
}
@media (max-width: 600px) {
  .factory-info__content-item-text {
    font-size: 15px;
    margin-top: 12px;
  }
}

.factory-info__content-item-list {
  padding: 0 20px;
}

.factory-info__content-item-list-text {
  margin-top: 1em;
  font-size: 15px;
  line-height: 1.8;
}

.factory-processing {
  background: #FAF7EF;
  padding: 120px 0;
}
@media (max-width: 600px) {
  .factory-processing {
    padding: 48px 0;
  }
}

.factory-processing__content-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 48px;
}
@media (max-width: 600px) {
  .factory-processing__content-list {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
}

.factory-processing__content-item-head {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #fff;
  background: #573924;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
}

.factory-processing__content-item-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 0 0 10px 10px;
  padding: 34px 4.12% 34px 6.19%;
}
@media (max-width: 600px) {
  .factory-processing__content-item-wrap {
    flex-direction: column;
    gap: 20px;
    padding: 20px 20px 30px;
  }
}

.factory-processing__content-item-text {
  font-size: 15px;
  font-weight: 500;
  width: 304px;
}
@media (max-width: 600px) {
  .factory-processing__content-item-text {
    text-align: center;
    width: 100%;
  }
}

.factory-processing__content-item-wrap img {
  width: 120px;
  aspect-ratio: 1;
}

.factory-processing__content-box {
  font-size: 16px;
  text-align: center;
  background: #ECE7D9;
  border-radius: 10px;
  padding: 30px 16px;
  margin-top: 80px;
}
@media (max-width: 600px) {
  .factory-processing__content-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 20px;
    margin-top: 30px;
  }
}

.factory-processing__content-box-em {
  font-weight: 700;
  margin-right: 1.5em;
}
@media (max-width: 600px) {
  .factory-processing__content-box-em {
    margin-right: 0;
  }
}

.factory-processing__content-btn a {
  margin-top: 40px;
  margin-left: auto;
}
@media (max-width: 600px) {
  .factory-processing__content-btn a {
    margin-top: 30px;
    margin-right: auto;
  }
}


/* ========================================
    事業内容
    ======================================== */
.business-concept {
  padding-top: 80px;
  padding-bottom: 100px;
  background: linear-gradient(to bottom, #fff, #faf7ef);
}
@media (max-width: 600px) {
  .business-concept {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}

.business-concept__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 600px) {
  .business-concept__inner {
    grid-template-columns: 1fr;
  }
}

.business-concept__head {
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.12em;
  font-size: clamp(24px, 2.3vw, 34px);
}

.business-concept__content-text {
  line-height: 2.5;
  font-weight: 500;
}
@media (max-width: 600px) {
  .business-concept__content-text {
    margin-top: 30px;
  }
}

.business-concept__img-wrap {
  margin-top: 120px;
  position: relative;
}
@media (max-width: 600px) {
  .business-concept__img-wrap {
    padding-left: 20px;
    margin-top: 30px;
    margin-right: -20px;
    margin-left: -20px;
    overflow: scroll;
  }
}

.swipe-icon {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 100%;
  height: auto;
  max-width: 130px;
  display: none;
}
@media (max-width: 600px) {
  .swipe-icon {
    display: block;
  }
}

.business-concept__img {
  box-shadow: 0 0 30px 0 rgba(66, 63, 58, 0.1);
}
@media (max-width: 600px) {
  .business-concept__img {
    width: 753px;
    position: relative;
  }
  .business-concept__img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 20px;
    height: 1px;
  }
}

.m-section-content--business {
  background: #faf7ef;
}

.m-section-content__inner-wrap--business {
  background: #faf7ef;
}

.m-section-content--business__inner {
  padding: 120px 0;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .m-section-content--business__inner {
    padding: 48px 0;
  }
}

.m-section-content--business__inner-content-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}
@media (max-width: 600px) {
  .m-section-content--business__inner-content-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 30px;
  }
}

.m-section-content--business__inner-content-item {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
  .m-section-content--business__inner-content-item {
    padding: 20px;
  }
}

.m-section-content--business__inner-content-item-img {
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .m-section-content--business__inner-content-item-img {
    width: 100px;
  }
}

.m-section-content--business__inner-content-item-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
}

.m-section-content--business__inner-content-item-text {
  line-height: 1.8;
  margin-top: 16px;
}

.business-production-flow {
  margin-top: 120px;
}
@media (max-width: 600px) {
  .business-production-flow {
    margin-top: 48px;
    padding-bottom: 30px;
  }
}

.business-production-flow__content {
  margin-top: 48px;
}
@media (max-width: 600px) {
  .business-production-flow__content {
    margin-top: 30px;
  }
}

.business-production-flow__list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  position: relative;
}
@media (max-width: 600px) {
  .business-production-flow__list-item {
    margin-top: 26px;
    align-items: flex-start;
  }
}

.business-production-flow__card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex: 1;
}
@media (max-width: 600px) {
  .business-production-flow__card {
    padding: 20px;
    flex-direction: column-reverse;
  }
}

.business-production-flow__number {
  width: 72px;
  height: 72px;
  background: #d5d5d5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 600px) {
  .business-production-flow__number {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
  }
}
.business-production-flow__number::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  min-height: 226px;
  background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 3px, #d5d5d5 3px, #d5d5d5 6px);
  background-size: 2px 12px;
  background-repeat: repeat-y;
}
@media (max-width: 600px) {
  .business-production-flow__number::after {
    min-height: 490px;
  }
}

.business-production-flow__list-item:last-child .business-production-flow__number::after {
  display: none;
}

.business-production-flow__number-text {
  font-family: "Poppins", "serif";
  font-size: 40px;
  font-weight: 600;
  color: #38080c;
  line-height: 1;
}
@media (max-width: 600px) {
  .business-production-flow__number-text {
    font-size: 24px;
  }
}

.business-production-flow__img {
  width: 25%;
  flex-shrink: 0;
  min-width: 180px;
}
@media (max-width: 600px) {
  .business-production-flow__img {
    width: 100%;
  }
}

.business-production-flow__desc h3 {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 1px solid #38080c;
}
@media (max-width: 600px) {
  .business-production-flow__desc h3 {
    font-size: 18px;
  }
}

.business-production-flow__desc p {
  font-size: 15px;
  margin-top: 20px;
  line-height: 1.8;
}/*# sourceMappingURL=main.css.map */

@media (max-width: 600px) {
  .business-production-category-processing .container-lg {
    padding: 0;
  }
  .business-production-category-processing .m-page-head {
    padding-left: 20px;
  }
}

.business-production-category-processing__inner {
  background: #FAF7EF;
  border-radius: 10px;
  padding: 80px 60px 60px;
}
@media (max-width: 600px) {
  .business-production-category-processing__inner {
      padding: 48px 0;
  }
}

.business-production-category-processing__content-wrap {
  margin-top: 48px;
}
@media (max-width: 600px) {
  .business-production-category-processing__content-wrap {
    padding-left: 20px;
    margin-top: 30px;
    overflow-x: auto;
  }
}

.business-production-category-processing__content-wrap:nth-of-type(n+2) {
  margin-top: 60px;
}

.business-production-category-processing__content-table {
  table-layout: fixed;
  width: 100%;
}
@media (max-width: 600px) {
  .business-production-category-processing__content-table {
    width: 1000px;
    position: relative;
  }
  .business-production-category-processing__content-table::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 20px;
    height: 1px;
  }
}

.business-production-category-processing__content-table thead th {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
  color: #fff;
  background: #573924;
  padding: 12px;
}

.business-production-category-processing__content-table thead th:nth-of-type(n+2) {
  border-left: 1px solid #fff;
}

.business-production-category-processing__content-table thead th:first-of-type {
  width: 24.6%;
  border-radius: 10px 0 0 0;
}

.business-production-category-processing__content-table thead th:nth-of-type(2) {
  width: 19%;
}

.business-production-category-processing__content-table thead th:last-of-type {
  border-radius: 0 10px 0 0;
}

.business-production-category-processing__content-table tbody td {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
  vertical-align: middle;
  background: #fff;
  border-left: 1px solid #836E6F;
  padding: 28px 30px;
}

.business-production-category-processing__content-table tbody td:first-of-type {
  border-radius: 0 0 0 10px;
}

.business-production-category-processing__content-table tbody td:last-of-type {
  border-radius: 0 0 10px 0;
}

.business-production-category-processing__content-table tbody tr:first-of-type td:first-of-type,
.business-production-category-processing__content-table tbody tr:last-of-type td:first-of-type {
  border-left: none;
}

.business-production-category-processing__content-table tbody tr:first-of-type td:first-of-type {
  padding-left: 0;
  padding-right: 0;
  padding: 16px 0 20px;
}

.business-production-category-processing__content-table tbody tr:nth-of-type(2) td {
  background: #F4ECD6;
}

.business-production-category-processing__content-table tbody tr:nth-of-type(3) td {
  border-top: 1px solid #836E6F;
  height: 44px;
}

.business-production-category-processing__content-table tbody tr:last-of-type td {
  border-top: 1px solid #836E6F;
}

.business-production-category-processing__content-table tbody td:first-of-type img {
  display: block;
  width: 108px;
  height: 90px;
  margin: 12px auto 0;
}

.business-production-category-processing__content-table-box {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
  background: #FAF7EF;
  border: 1px solid #000;
  border-radius: 10px;
  width: 206px;
  padding: 24px 0 8px;
  margin: 25px auto 0;
  position: relative;
}

.business-production-category-processing__content-table-box-text-em {
  font-size: 18px;
}

.business-production-category-processing__content-table-box-head {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #E50012;
  border-radius: 15px;
  padding: 6px 16px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.business-production-category-processing__content-table-text {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: left;
}

.business-production-category-processing__content-table-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px
}

.business-production-category-processing__content-table-list-item {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: left;
  padding-left: 1.5em;
  position: relative;
}

.business-production-category-processing__content-table-list-item::before {
  content: "";
  display: inline-block;
  background: #38080C;
  border-radius: 50%;
  width: 4px;
  aspect-ratio: 1;
  position: absolute;
  top: 0.7em;
  left: 0.65em;
}

.business-production-category-processing__content-table tbody td:has(.business-production-category-processing__content-table-month) {
  padding: 0;
}

.business-production-category-processing__content-table-month {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
}

.business-production-category-processing__content-table-month-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  position: relative;
}

.business-production-category-processing__content-table-month-item:nth-of-type(n+2)::before {
  content: "";
  width: 1px;
  height: calc(100% + 126px);
  background: repeating-linear-gradient(to bottom, #BCACAC 0, #BCACAC 2px, transparent 2px, transparent 7px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.business-production-category-processing__content-table tbody td:has(.business-production-category-processing__content-table-labels) {
  padding: 13px 0 20px;
}

.business-production-category-processing__content-table-labels {
  display: grid;
  grid-auto-rows: 24px;
  row-gap: 10px;
  justify-items: right;
  align-items: center;
}

.business-production-category-processing__content-table-labels-item {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.business-production-category-processing__content-table-labels-item:nth-of-type(1) {
  color: #396CB4;
  padding-right: 15px;
}

.business-production-category-processing__content-table-labels-item:nth-of-type(2) {
  padding-right: 10px;
}

.business-production-category-processing__content-table-labels-item:nth-of-type(3) {
  color: #E50012;
  padding-right: 15px;
}

.business-production-category-processing__content-table tbody td:has(.business-production-category-processing__content-table-calendar) {
  padding: 13px 0 20px;
}

.business-production-category-processing__content-table-calendar {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 1fr);
  row-gap: 10px;
  height: 100%;
  position: relative;
}

.calendar-range {
  grid-column: var(--start) / calc(var(--end) + 1);
  height: 24px;
}

.calendar-range-01 {
  grid-row: 1;
  background: #89A8D5;
}

.calendar-range-02 {
  grid-row: 2;
  background: #D9D9D9;
}

.calendar-range-03 {
  grid-row: 3;
  background: #E50012;
}

.business-production-category-processing__content-etc {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}
@media (max-width: 600px) {
  .business-production-category-processing__content-etc {
    flex-direction: column;
    margin-top: 30px;
    gap: 20px;
  }
}

.business-production-category-processing__content-etc-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.business-production-category-processing__content-etc-text small {
  font-size: 16px;
}

.business-production-category-processing__content-etc-imgs {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px
}

.business-production-category-processing__content-etc-imgs img {
  width: 100px;
  aspect-ratio: 1;
}

.business-production-category-processing__note {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: right;
  display: block;
  margin-top: 20px;
}

/* ========================================
    自社サイトバナー
    ======================================== */
.corporate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 100px auto 0;
}
.corporate__text {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
}
.corporate__banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background: #FAF7EF;
  border: 1px solid #38080C;
  border-radius: 10px;
  width: 480px;
  height: 180px;
  padding-bottom: 12px;
  padding-left: 6px;
}
.corporate__banner-logo {
  width: 225px;
  height: auto;
}
.corporate__banner .m-more-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 32px;
}
.corporate__banner .m-more-btn__icon {
  width: 46px;
  height: 46px;
}
.corporate__banner .m-more-btn:hover .m-more-btn__icon img {
  opacity: 1;
}
.corporate__banner .m-more-btn:hover .m-more-btn__icon::after {
  opacity: 0;
}
.corporate__banner .m-more-btn:hover span {
  color: #38080C;
}
@media (max-width: 600px) {
  .corporate {
    padding: 0 20px;
  }
  .corporate__text {
    font-size: 18px;
  }
  .corporate__banner {
    gap: 15px;
    width: 100%;
    height: 140px;
  }
  .corporate__banner-logo {
    width: 160px;
  }
  .corporate__banner .m-more-btn {
    margin-top: 16px;
  }
  .corporate__banner .m-more-btn__icon {
    width: 42px;
    height: 42px;
  }
  .corporate__banner .m-more-btn span {
    font-size: 16px;
  }
}