@charset "UTF-8";

:root {
  --max-w: 1400px;
  --black: #242424;
  --dark: #333;
  --border: #242424;
  --white: #ffffff;
  --accent: #d42d2d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.8;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.w-txt {
  color: #fff !important;
}

.bg-black {
  background-color: var(--dark);
}

.pcnone600 {
  display: none;
}

p,
li {
  font-weight: 500;
  word-break: break-all;
}

.header {
  position: relative;
  background: var(--white);
  z-index: 100;
}
.header-inner {
  max-width: calc(100% - 80px);
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  width: calc(100% - 180px);
}
.header-contact {
  text-align: right;
  line-height: 1.3;
  width: 240px;
  padding-right: 20px;
  border-right: 1px solid #262626;
}
.header-contact .header-tel {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 1px;
  text-decoration: none;
  white-space: nowrap;
}
.header-contact .header-hours {
  font-size: 11px;
  margin-top: 2px;
  letter-spacing: 0.02em;
  font-weight: 600;
  white-space: nowrap;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.header-company-name {
  font-size: 13px;
  color: var(--black);
  letter-spacing: 0.1em;
  font-weight: 600;
  width: 160px;
  white-space: nowrap;
}

.header-logo img {
  width: 150px;
  height: auto;
}

.gnav {
  position: relative;
  margin-bottom: 0;
}

.compact-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.28s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 15px;
  backdrop-filter: blur(12px);
  height: 74px;
}
.compact-header.is-visible {
  transform: translateY(0);
}
.compact-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.compact-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.compact-logo img {
  height: 24px;
  width: auto;
  display: block;
}
.compact-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.compact-nav > a,
.compact-nav > .compact-nav-item > a {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  transition-duration: 0.3s;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.05em;
  padding: 10px 0;
}

.compact-nav > a:hover,
.compact-nav > .compact-nav-item > a:hover {
  opacity: 0.7;
}

.compact-nav-item {
  position: relative;
}

.compact-nav-item.has-dropdown > a {
  position: relative;
}

.compact-nav-item > a {
  transition-duration: 0.3s;
}

.compact-nav-item.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 3px;
  background-image: url(../img/b-arrow02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s;
  transform: translateY(1px);
}

.compact-nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 200px;
  background: var(--black);
  box-shadow: 2px 4px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s;
  z-index: 60;
}

.compact-nav-item.has-dropdown.is-open > .compact-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.compact-nav-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid #434343;
  white-space: nowrap;
  transition:
    background 0.12s,
    color 0.12s;
}

.compact-nav-dropdown a:last-child {
  border-bottom: none;
}

.compact-nav-dropdown a:hover {
  background: #313131;
}

@media (max-width: 960px) {
  .compact-header-inner {
    padding: 0 20px;
    height: 56px;
    gap: 12px;
  }
  .compact-logo img {
    height: 30px;
  }
  .compact-nav > a,
  .compact-nav > .compact-nav-item > a {
    font-size: 12px;
    padding: 8px 10px;
  }
}
@media (max-width: 780px) {
  .compact-nav > a:not(.compact-cta),
  .compact-nav > .compact-nav-item {
    display: none;
  }
}
@media (max-width: 640px) {
  .compact-header-inner {
    height: 52px;
    padding: 0 16px;
  }
  .compact-logo img {
    height: 26px;
  }
}

.gnav {
  width: 100%;
}
.gnav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.gnav-inner > a,
.gnav-inner > .gnav-item {
  transition-duration: 0.3s;
}

.gnav-inner > a,
.gnav-item > a {
  letter-spacing: 0.07em;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 0;
  color: #1a1a1a;
  transition:
    background 0.12s,
    color 0.12s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1vw;
  white-space: nowrap;
}

.gnav-inner > a:last-child,
.gnav-inner > .gnav-item:last-child {
  border-right: none;
}

.gnav-inner > a:hover,
.gnav-item > a:hover {
  cursor: pointer;
  opacity: 0.7;
}

.gnav-item {
  position: relative;
}

.gnav-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  right: -1px;
  min-width: 200px;
  background: #242424;
  box-shadow: 2px 4px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-4px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s;
  z-index: 50;
}
.gnav-item.has-dropdown.is-open > .gnav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.gnav-dropdown a {
  display: block;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  border-bottom: 1px solid #434343;
  text-align: left;
  line-height: 1.5;
  white-space: nowrap;
  transition:
    background 0.12s,
    color 0.12s,
    padding 0.12s;
  text-align: center;
}
.gnav-dropdown a:last-child {
  border-bottom: none;
}
.gnav-dropdown a:hover {
  background: #313131;
}

.gnav-item.has-dropdown > a {
  position: relative;
}

.gnav-item.has-dropdown > a::after {
  content: "";
  bottom: 0px;
  display: inline-block;
  width: 10px;
  margin-left: 3px;
  height: 5px;
  background-image: url(../img/b-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: 10px;
  transition-duration: 0.3s;
  transform: translateY(1px);
}

.sec {
  padding: 100px 0;
}
.sec02 {
  padding: 80px 0;
}
.sec-gray {
  background-image: url(../img/cross02.png);
  background-size: 10px;
}

.sec-inner {
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}

.sec-inner02 {
  width: calc(100% - 200px);
  margin: 0 auto;
  padding: 0;
}

.sec-inner03 {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.sec-header {
  margin-bottom: 50px;
}
.sec-header02 {
  margin-bottom: 25px;
}
.sec-header.center {
  text-align: center;
}

.sec-label {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--black);
}
.sec-label::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--black);
  vertical-align: 4px;
  margin-right: 12px;
}

.sec-label.w-txt::before {
  background: #fff;
}
.sec-label02 {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--black);
}
.sec-label02::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--black);
  vertical-align: 4px;
  margin-right: 12px;
}

.sec-label03 {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.sec-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
.sec-title02 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.sec-title03 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
  text-align: center;
}

.sec-link,
.btn {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  padding: 14px 30px 14px 30px;
  letter-spacing: 0.08em;
  cursor: pointer;
  background: var(--dark);
  transition-duration: 0.3s;
  max-width: 260px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  text-align: center;
}

.sec-link:hover,
.btn:hover {
  background: #353535;
}

.sec-link.w-btn {
  color: var(--black);
  background-color: #fff;
}

.sek-link-long {
  max-width: 320px;
}

.contact-bnr-btn {
  margin: 0 auto;
}

.link-arrow-wrap {
  display: inline-flex;
  overflow: hidden;
  width: 13px;
  height: 13px;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
}

.arr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

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

.arr-out {
  transform: translateX(0);
}
.arr-in {
  transform: translateX(-100%);
}

.sec-link:hover .arr-out,
.btn:hover .arr-out {
  transform: translateX(100%);
}

.sec-link:hover .arr-in,
.btn:hover .arr-in {
  transform: translateX(0);
  transition: transform 0.3s ease 0.15s;
}

.hero {
  width: calc(100% - 40px);
  padding: 0;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.swiper.hero-swiper {
  width: 63%;
  height: 100%;
  margin-left: auto;
  margin-right: 0;
}

.swiper-slide {
  aspect-ratio: 1.618 / 1;
  overflow: hidden;
}

@keyframes zoomanime {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomanime 8s linear 0s normal both;
}

.swiper-slide img {
  width: 100%;
  aspect-ratio: 1.618 / 1;
  object-fit: cover;
  object-position: center;
}

.hero-txt {
  display: flex;
  flex-wrap: wrap;
  width: 32%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 2.3%;
  transform: translateY(-30px);
}

.hero-catch {
  white-space: nowrap;
  font-size: 2.45vw;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.5em;
  margin-bottom: 40px;
  transform: translateX(-5px);
}

.hero-catch img {
  margin: 0 auto;
}

.hero-sub {
  font-weight: 800;
  font-size: 0.99vw;
  letter-spacing: 0.05em;
}

.page-hero {
  position: relative;
  background-size: cover;
  width: calc(100% - 80px);
  margin: 0 auto;
  height: 420px;
  background-position: center;
}
.page-hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.page-hero-content {
  width: 100%;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.75);
  max-width: 320px;
  width: 100%;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  backdrop-filter: blur(5px);
}
.page-hero .en {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  color: #fff;
  width: 100%;
  text-align: center;
  margin-bottom: 5px;
}
.page-hero h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: 0.05em;
}

.page-header-simple {
  padding: 60px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header-simple .en {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
}
.page-header-simple-ja {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

@media (max-width: 960px) {
  .page-header-simple .en {
    font-size: 10px;
  }

  .page-header-simple h1 {
    font-size: 20px;
  }
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}
.service-img {
  margin-bottom: 20px;
  overflow: hidden;
}
.service-img img {
  object-fit: cover;
  aspect-ratio: 1.618 / 1;
  width: 100%;
  height: auto;
  transition: 0.2s linear;
}
.service-img:hover img {
  transform: scale(1.05);
}
.service-card {
  position: relative;
}
.service-card h4 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  padding-bottom: 5px;
  padding-right: 30px;
  border-bottom: 1px solid var(--black);
  background-image: url(../img/r-arrow.png);
  background-size: 20px auto;
  background-position: right top 10px;
  background-repeat: no-repeat;
  transition-duration: 0.3s;
}
.service-card p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  transition-duration: 0.3s;
}

.service-card:hover img {
  transform: scale(1.03);
}

.message-inner {
  border: 1px solid #000;
  padding: 150px;
  position: relative;
  z-index: 2;
}

.top-message-img {
  max-width: 260px;
  margin: 0 auto 40px;
}

.top-message-img img {
  border-radius: 999px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.message-inner h3 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: 800;
}

.message-inner .sec-label {
  position: absolute;
  top: 30px;
  left: 30px;
}

.message-inner .sec-label::before {
  display: none;
}

.message-txt {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 2.2em;
  margin-bottom: 40px;
}

.link-btn-center {
  margin: 0 auto;
}

a.news-cat {
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
}

.news-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.news-cat-btn {
  display: block;
  padding: 10px 15px;
  background: #f7f7f7;
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
}
.news-cat-btn:hover {
  background-color: var(--dark);
  color: #fff;
}
.news-cat-btn.is-active {
  background: var(--dark);
  color: #fff;
}

.cat-archive-head {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  background-image: url(../img/circle-black.svg);
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: left top 13px;
  padding-left: 20px;
}

@media (max-width: 960px) {
  .news-categories {
    margin-bottom: 20px;
  }

  .news-cat-btn {
    padding: 7px 10px;
    font-size: 10px;
  }
}

@media (max-width: 640px) {
  .news-link {
    display: flex;
    align-items: center;
    padding: 28px 20px 28px 0px;
  }
}
.news-cat-block {
  margin-bottom: 64px;
  scroll-margin-top: 80px;
}
.news-cat-block:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .news-cat-block {
    margin-bottom: 48px;
  }
}

.news-archive-section {
  padding-top: 60px;
}

.news-list {
  list-style: none;
}
.news-list li {
  border-bottom: 1px solid #ffffff;
}

.news-archive.news-list li {
  border-bottom: 1px solid var(--black);
}

.news-list li:last-of-type {
  border-bottom: none;
}
.news-link {
  display: flex;
  align-items: center;
  padding: 28px 0;
  gap: 32px;
  position: relative;
  background-image: url(../img/r-arrow04_w.svg);
  background-position: right top 50%;
  background-repeat: no-repeat;
  background-size: 15px auto;
  padding-right: 30px;
}

.news-archive .news-link {
  background-image: url(../img/r-arrow04.svg);
}

.news-date {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 500;
  width: 120px;
  flex-shrink: 0;
}
.news-cat {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border: 1px solid #fff;
  color: var(--dark);
  width: 100px;
  text-align: center;
  flex-shrink: 0;
}
.news-archive .news-cat {
  background-color: var(--dark);
  color: #fff;
}
.news-title {
  font-size: 14px;
  color: var(--black);
  font-weight: 600;
  flex: 1;
  text-decoration: none;
}
.news-list li:hover .news-title {
  text-decoration: underline;
}
.news-arrow {
  color: var(--black);
  font-size: 18px;
  margin-left: auto;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  background: #f7f7f7;
  text-decoration: none;
  transition:
    background 0.12s,
    border-color 0.12s,
    color 0.12s;
}
.pagination a:hover {
  background: var(--dark);
  color: #fff;
}
.pagination .current {
  background: var(--dark);
  color: #fff;
}
.pagination .disabled {
  color: #b2b2b2;
  pointer-events: none;
}

@media (max-width: 960px) {
  .pagination {
    margin-top: 30px;
  }

  .pagination a,
  .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 30px;
    padding: 0 12px;
    font-size: 12px;
  }
}

.cta-banner {
  background-image: url(../img/contact-band-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  padding: 56px 0;
  text-align: center;
  position: relative;
}
.cta-banner-overlay {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100.1%;
  top: 0;
}
.cta-banner p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}
.cta-banner .cta-banner-ttl {
  font-size: 28px;
  letter-spacing: 0.05em;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.cta-banner .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-banner-inner {
  z-index: 10;
  position: relative;
}
.cta-tel {
  margin-top: 20px;
}
.cta-tel-number {
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  text-decoration: none;
}
.cta-tel-number:hover {
  opacity: 0.85;
}
.cta-banner p.cta-tel-hours {
  margin-bottom: 0;
}

.sec-top-recruit {
  position: relative;
}

.top-recruit-txt {
  font-size: 16px;
}

.top-recruit-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.top-recruit-box {
  width: 47%;
  margin-bottom: 60px;
  position: relative;
}

.top-recruit-img {
  margin-bottom: 20px;
  overflow: hidden;
}

.top-recruit-img img {
  aspect-ratio: 1.618 / 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: 0.2s linear;
}

.top-recruit-box:hover .top-recruit-img img {
  transform: scale(1.02);
}

.top-recruit-txt {
  font-size: 16px;
}

.recruit-head {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  padding-bottom: 5px;
  padding-right: 30px;
  border-bottom: 1px solid var(--black);
  background-image: url(../img/r-arrow.png);
  background-size: 20px;
  background-position: right top 10px;
  background-repeat: no-repeat;
  transition-duration: 0.3s;
}

.recruit-txt {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  transition-duration: 0.3s;
}

/* ============ Privacy / Text Page ============ */
.text-page h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--black);
}
.text-page h2:first-child {
  margin-top: 0;
}
.text-page p {
  margin-bottom: 1em;
}

.privacy-day {
  text-align: right;
  font-size: 12px;
  margin-bottom: 0;
}

.privacy-contact {
  margin-top: 40px;
  line-height: 2em;
  margin-bottom: 40px !important;
}
.footer {
  color: #fff;
  padding: 90px 0 50px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
.footer-info {
  width: auto;
}
.footer-brand {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  display: block;
}
.footer-brand-en {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-address {
  font-size: 12px;
  color: #ffffff;
  transition: color 0.15s;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.footer-tel {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-top: 20px;
  letter-spacing: 0.05em;
}
.footer-hours {
  display: block;
  font-size: 12px;
  color: #ffffff;
  margin-top: 2px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.footer-nav {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.footer-head {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid #444444;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 12px;
}
.footer-col a {
  font-size: 13px;
  color: #ffffff;
  transition: color 0.15s;
  font-weight: 600;
}
.footer-col a:hover {
  opacity: 0.7;
}
.footer-bottom {
  border-top: 1px solid rgb(68 68 68);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #ffffff;
  flex-wrap: wrap;
  gap: 16px;
  font-family: "Outfit", sans-serif;
}
.footer-bottom a {
  color: #ffffff;
}
.footer-bottom a:hover {
  opacity: 0.7;
}

.footer-bottom a,
.footer-bottom span {
  letter-spacing: 0.05em;
}

@media (max-width: 960px) {
  .gnav {
    display: none;
  }

  .compact-header {
    display: none;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
}

@media (max-width: 1400px) {
  .news-title {
    font-size: 14px;
  }

  .sec-title {
    font-size: 28px;
  }

  .sec-sub {
    font-size: 16px;
  }
}

@media (max-width: 960px) {
  p {
    font-size: 13px;
  }

  .sec-inner,
  .header-inner,
  .gnav-inner,
  .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-inner {
    max-width: calc(100% - 30px);
    padding: 15px 0;
  }
  .header-logo img {
    width: 114px;
    height: auto;
  }
  .page-header-simple {
    padding: 90px 0 40px;
  }
  .page-header-simple-ja {
    font-size: 22px;
  }
  .sec {
    padding: 64px 0;
  }
  .sec-label {
    font-size: 11px;
    letter-spacing: 2px;
  }
  .sec-label::before {
    width: 18px;
    margin-right: 8px;
  }
  .sec-label02 {
    font-size: 11px;
    letter-spacing: 2px;
  }
  .sec-label03 {
    font-size: 11px;
    letter-spacing: 2px;
  }
  .sec-label02::before {
    width: 18px;
    margin-right: 8px;
  }
  .sec-title {
    font-size: 20px;
  }
  .sec-sub {
    font-size: 14px;
  }
  .sec-title02 {
    font-size: 20px;
  }
  .sec-title03 {
    font-size: 20px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }

  .other-services {
    grid-template-columns: 1fr;
  }
  .news-title {
    font-size: 12px;
  }
  .footer-top {
    flex-direction: column;
    gap: 50px;
  }
  .footer-col a {
    font-size: 12px;
  }
  .footer-info {
    width: auto;
  }
  .footer-nav {
    gap: 40px 30px;
  }
  .footer-bottom span,
  .footer-bottom a {
    font-size: 10px;
  }
  .sec.news-archive-section {
    padding-top: 40px;
  }
  .news-link {
    flex-wrap: wrap;
    gap: 12px;
  }
  .news-date {
    width: 100px;
    font-size: 12px;
  }

  .privacy-day {
    font-size: 10px;
  }

  .privacy-contact {
    font-size: 12px;
  }

  .text-page h2 {
    font-size: 14px;
    margin: 25px 0 15px;
  }
}

@media (max-width: 640px) {
  .sec {
    padding: 48px 0;
  }
  .sec-header {
    margin-bottom: 32px;
  }
  .sec-title {
    font-size: 20px;
  }
  .sec-sub {
    font-size: 13px;
  }

  .btn,
  .sec-link {
    font-size: 12px;
  }
  .service-card h4 {
    font-size: 17px;
  }

  .news-link {
    padding: 20px 25px 20px 0;
    gap: 5px;
  }

  .news-date {
    font-size: 12px;
    font-size: 11px;
    flex: 0 0 auto;
    width: 60px;
  }
  .news-cat {
    width: auto;
    font-size: 8px;
    padding: 1px 10px;
    flex: 0 0 auto;
  }
  .news-title {
    flex: 0 0 100%;
    width: 100%;
    line-height: 1.6;
    margin-top: 2px;
    font-size: 13px;
  }
  .news-arrow {
    display: none;
  }

  .footer {
    padding: 64px 0 40px;
  }
  .footer-top {
    gap: 40px;
    margin-bottom: 50px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 30px;
  }
  .footer-head {
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
  .footer-col li {
    margin-bottom: 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .footer-brand {
    font-size: 18px;
  }
  .footer-address,
  .footer-col a {
    font-size: 12px;
  }

  .article-header h1 {
    font-size: 22px;
  }
  .article-body h2 {
    font-size: 19px;
  }
  .article-body h3 {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .sec-inner,
  .header-inner,
  .gnav-inner,
  .footer-inner {
    padding-left: 14px;
    padding-right: 14px;
  }
  .gnav a {
    flex: 1 0 50%;
    font-size: 10px;
    padding: 10px 2px;
  }
  .sec-title {
    font-size: 18px;
  }
  .sec-header {
    margin-bottom: 28px;
  }

  .article-header h1 {
    font-size: 19px;
  }
  .footer {
    padding: 56px 0 32px;
  }
  .footer-top {
    gap: 32px;
    margin-bottom: 40px;
  }
}

@media (max-width: 360px) {
  .sec-inner,
  .header-inner,
  .gnav-inner,
  .footer-inner {
    padding-left: 12px;
    padding-right: 12px;
  }
  .sec {
    padding: 60px 0;
  }
  .sec-title {
    font-size: 17px;
  }
  .sec-sub {
    font-size: 12px;
  }

  .btn,
  .sec-link {
    padding: 11px 18px;
    font-size: 11px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .cta-banner {
    padding: 45px 0 35px;
  }
  .cta-banner-ttl {
    font-size: 16px;
  }
  .cta-banner p {
    font-size: 12px;
    margin-bottom: 14px;
  }
  .cta-banner .btn-group {
    gap: 10px;
  }
  .cta-tel {
    margin-top: 16px;
  }
  .cta-tel-number {
    font-size: 18px;
    letter-spacing: 0.5px;
  }
  .cta-tel-hours {
    font-size: 10px;
  }
  .footer {
    padding: 48px 0 28px;
  }
  .footer-brand {
    font-size: 16px;
  }
  .footer-tel {
    font-size: 16px;
  }
  .footer-nav {
    gap: 28px;
  }
  .footer-head {
    font-size: 11px;
    margin-bottom: 14px;
  }
  .footer-col li {
    margin-bottom: 2px;
  }
  .footer-col a {
    font-size: 11px;
  }
}

.banner-links {
  padding: 56px 0;
}

.banner-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.banner-list li a {
  display: block;
}

.banner-list img {
  display: block;
  width: 300px;
  transition: opacity 0.2s;
}

.banner-list a:hover img {
  opacity: 0.8;
}

.has-mega-dropdown {
  position: relative;
}

.mega-dropdown-box {
  position: fixed;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  transform: translateY(-8px);
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #242424;
  z-index: 1500;
}

.mega-dropdown-box.is-visible {
  pointer-events: auto;
  transform: translateY(0);
  opacity: 1;
}

.mega-drop-inner {
  max-width: 1450px;
  margin: 0 auto;
  padding: 50px 25px;
  display: flex;
  justify-content: space-between;
}

.mega-drop-link {
  width: 30%;
  display: flex;
  justify-content: space-between;
  position: relative;
  opacity: 0.75;
  transition-duration: 0.3s;
}

.mega-drop-link:hover {
  opacity: 1;
}

.mega-drop-img {
  width: 30%;
  overflow: hidden;
}

.mega-drop-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: 0.3s ease-out;
}

.mega-drop-content {
  width: 62%;
}

.mega-drop-head {
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  color: #fff;
  background-image: url(../img/r-arrow02.svg);
  background-size: 15px auto;
  background-position: right top 7px;
  background-repeat: no-repeat;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}

.mega-drop-txt {
  font-size: 12px;
  color: #fff;
}

.link-over {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.top-cross-bg {
  background-image: url(../img/cross02.png);
  background-size: 10px;
  transform: translateY(-60px);
}

.sp-sec-link {
  display: none;
}

.sec-top-business {
  padding-top: 150px;
  padding-bottom: 120px;
}

.sec-top-strength {
  padding-top: 60px;
}

.sec-top-strength .sec-2col-sub {
  font-size: 16px;
  margin-top: 30px;
}

.sec-top-philosophy {
  position: relative;
  overflow: hidden;
}

.txt-anime01-position {
  position: absolute;
  top: 0;
  z-index: 1;
  overflow: hidden;
  width: 100%;
}

.txt-anime01-wrap {
  overflow: hidden;
  width: 100%;
}

.txt-anime01 {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marquee 60s linear infinite;
  gap: 0;
}

.txt-anime01 span {
  font-size: 200px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  font-family: "Poppins", sans-serif;
  line-height: 1em;
  margin-right: 60px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.sec-2col-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sec-2col-sub {
  margin-bottom: 30px;
}

.sec-2col-header {
  width: 600px;
}

.sec-top-strength .sec-2col-header {
  position: sticky;
  top: 200px;
  align-self: flex-start;
  width: 430px;
  margin-bottom: 0;
}

.sec-2col-card {
  width: calc(100% - 460px);
}

.card-item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 60px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
  position: relative;
  margin-bottom: 40px;
  align-items: center;
  border-radius: 8px;
}

.sec-2col-card .card-item:last-of-type {
  margin-bottom: 0;
}

.card-head {
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1.5em;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.card-num {
  width: 80px;
}

.card-content {
  width: calc(100% - 120px);
}

.card-txt {
  font-size: 16px;
}

.sec-2col-header-news {
  width: 280px;
  margin-bottom: 0;
}

.sec-2col-news-content {
  width: calc(100% - 340px);
}

.sec-link-news {
  margin-top: 40px;
}

.mobile-btn {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  z-index: 1200;
  display: none;
}

.mobile-btn .mobile-line {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--black);
  border-radius: 1px;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.25s ease,
    background 0.2s ease;
}

.mobile-btn.mobile-open .mobile-line:first-child {
  width: 20px;
  transform: translateY(5px) rotate(45deg);
}

.mobile-btn.mobile-open .mobile-line:last-child {
  width: 20px;
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  top: 50px;
  right: 0;
  width: 100%;
  height: calc(100% - 49px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--dark);
  z-index: 1200;
  display: none;
}

.mobile-panel.mobile-open {
  transform: translateX(0);
}

.mobile-panel-inner {
  padding: 10px 20px 30px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-nav-group {
  border-bottom: 0.5px solid #fff;
}

.mobile-nav-group:first-child {
  border-top: none;
}

.mobile-nav-group:last-child {
  border-bottom: none;
}

.mobile-nav-parent {
  display: block;
  padding: 18px 0;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background-image: url(../img/r-arrow03.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: top 23px right;
}

.mobile-nav-children {
  padding: 0 0 12px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-children a {
  display: block;
  padding: 10px 0;
  color: #fff;
  letter-spacing: 0.05em;
  text-decoration: none;
  font-size: 11px;
  border-top: 1px solid rgb(65 65 65);
  background-image: url(../img/r-arrow02.svg);
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: top 16px right;
}

.mobile-panel-footer {
  margin-top: 20px;
  padding-top: 0;
}

.mobile-panel-tel {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-family: "Outfit", sans-serif;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.mobile-panel-hours {
  font-size: 12px;
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.sec-contact-tel {
  padding-top: 60px;
}

.contact-block01 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-box {
  width: 47%;
  padding: 40px;
  background-size: auto auto;
  background-color: #f7f7f7;
  position: relative;
}

.contact-box h2 {
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.contact-icon {
  width: 40px;
  margin: 0 auto 5px;
}

.contact-tel {
  text-align: center;
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 36px;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1em;
}

.contact-time {
  text-align: center;
  margin-top: 0;
  letter-spacing: 0.05em;
  padding: 5px;
  font-size: 14px;
}

.sec-contact-tel {
  padding-bottom: 0;
}

.form-item {
  margin-bottom: 20px;
}

.form-txt01 {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
  letter-spacing: 0.05em;
}

.form-txt01 span {
  color: var(--accent);
}

.form-item label {
  font-size: 14px;
  font-weight: bold;
  width: 100%;
  margin-bottom: 10px;
  display: block;
  letter-spacing: 0.05em;
}

.req {
  display: inline-block;
  background-color: var(--accent);
  color: #fff;
  font-size: 10px;
  padding: 5px 8px;
  margin-left: 10px;
  line-height: 1em;
  vertical-align: 2px;
}

.opt {
  display: inline-block;
  background-color: var(--dark);
  color: #fff;
  font-size: 10px;
  padding: 5px 8px;
  margin-left: 10px;
  line-height: 1em;
  vertical-align: 2px;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
  background-color: #f7f7f7;
  border-radius: 5px;
  padding: 10px 15px;
  width: 100%;
  font-size: 14px;
}

.form-item textarea {
  background-color: #f7f7f7;
  border-radius: 5px;
  padding: 10px 15px;
  width: 100%;
  display: block;
  font-size: 14px;
  min-height: 200px;
}

.form-item select {
  background-color: #f7f7f7;
  border-radius: 5px;
  padding: 10px 40px 10px 15px;
  width: 100%;
  display: block;
  font-size: 14px;
  background-image: url(../img/b-arrow02.svg);
  background-size: 13px auto;
  background-repeat: no-repeat;
  background-position: right 10px top 20px;
}

.form-item select:invalid {
  color: #727272;
}

.form-item select option {
  color: var(--black);
}

.form-item select:hover {
  cursor: pointer;
}

.form-submit button,
.form-submit input {
  display: block;
  width: 260px;
  margin: 60px auto 0;
  text-align: center;
  color: #fff;
  letter-spacing: 0.05em;
  font-size: 16px;
  padding: 15px;
  font-weight: bold;
  background-color: var(--dark);
  border: 1px solid var(--dark);
  transition-duration: 0.3s;
}
.form-submit input.wpcf7-previous {
  background-color: #999;
}

.form-submit button:hover,
.form-submit input:hover {
  background-color: #fff;
  color: var(--dark);
}

.wpcf7 .wpcf7-submit:disabled {
  opacity: 0.3;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--dark);
  cursor: pointer;
  position: relative;
  margin-right: 5px;
}

input[type="checkbox"]:checked {
  background-color: var(--dark);
  border-color: var(--dark);
}

input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -60%) rotate(45deg);
}

.form-check a {
  text-decoration: underline;
}

.form-check-txt {
  display: inline-block;
}

.form-check a:hover,
.form-check-txt:hover {
  cursor: pointer;
}

.form-check-txt {
  transform: translateY(-1px);
  margin-left: 5px;
}

::placeholder {
  color: #727272;
}

.form-item select:invalid {
  color: #727272;
}

.form-item select option {
  color: var(--black);
}

.form-check label {
  display: flex;
  align-items: center;
}

.news-single-sec {
  padding-top: 60px;
}

@media (max-width: 1400px) {
  .gnav-inner > a,
  .gnav-item > a {
    font-size: 12px;
  }

  .header-company-name {
    font-size: 11px;
  }

  .header-contact .header-tel {
    font-size: 16px;
  }

  .header-contact .header-hours {
    font-size: 10px;
  }

  .header-contact {
    width: 200px;
  }

  .header-company-name {
    width: 140px;
  }

  .hero-catch {
    margin: 0px auto 30px;
  }

  .card-head {
    font-size: 20px;
  }

  .card-txt {
    font-size: 14px;
  }

  .sec-top-strength .sec-2col-sub {
    font-size: 14px;
  }

  .sec-top-strength .sec-2col-header {
    width: 35%;
  }

  .sec-2col-header-news {
    width: 35%;
  }

  .service-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    padding-right: 30px;
    background-size: 20px auto;
  }

  .service-card p {
    font-size: 16px;
  }

  .sec-2col-card {
    width: 63%;
  }

  .message-inner h3 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .message-txt {
    font-size: 14px;
  }

  .sec-inner02 {
    width: calc(100% - 30px);
  }

  .message-inner {
    padding: 70px 20px;
  }

  .top-message-img {
    max-width: 200px;
    margin: 0 auto 40px;
  }

  .recruit-head {
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    padding-right: 30px;
    background-size: 20px auto;
  }

  .top-recruit-txt {
    font-size: 14px;
  }

  .recruit-txt {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .header-contact {
    display: none;
  }

  .header-company-name {
    display: none;
  }
}

@media (max-width: 1140px) {
  .sec-top-strength .sec-2col-sub {
    font-size: 13px;
  }
}

@media (max-width: 960px) {
  .spnone960 {
    display: none;
  }

  .hero {
    margin: 0 auto;
    margin-top: 77px;
  }

  .hero-txt {
    width: 48%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    margin-top: 0px;
  }

  .hero-catch {
    font-weight: 800;
    font-size: 3.5vw;
  }

  .hero-sub {
    font-weight: 800;
    font-size: 1.45vw;
  }

  .swiper.hero-swiper {
    width: 48%;
    margin-left: auto;
    margin-right: 0;
  }

  .swiper-slide {
    aspect-ratio: 1 / 1;
  }

  .swiper-slide img {
    aspect-ratio: 1 / 1;
  }

  .cta-banner {
    background-attachment: scroll;
  }

  .service-img {
    max-width: 400px;
    margin: 0 auto 15px;
  }

  .sec-top-strength .sec-2col-header {
    width: 100%;
  }

  .sec-2col-card {
    width: 100%;
  }

  .sec-top-business {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .sec-top-strength .sec-2col-header {
    width: 100%;
  }

  .sec-top-strength {
    padding-top: 0;
  }

  .sec-top-strength .sec-2col-header {
    position: relative;
    top: 0;
    width: 100%;
    margin-bottom: 60px;
  }

  .sec-top-news .sec-2col-header {
    width: 100%;
    margin-bottom: 0;
  }

  .card-num {
    width: 35px;
    position: absolute;
    top: -18px;
    left: 15px;
  }

  .service-grid {
    gap: 40px;
  }

  .service-card h4 {
    font-size: 14px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    padding-right: 30px;
    background-size: 15px auto;
    background-position: right 0 top 7px;
  }

  .service-card p {
    font-size: 13px;
  }

  .card-item {
    padding: 30px;
    margin-bottom: 45px;
  }

  .card-txt {
    font-size: 13px;
  }

  .card-head {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .card-content {
    width: 100%;
  }

  .txt-anime01 span {
    font-size: 100px;
  }

  .message-txt {
    font-size: 13px;
  }

  .sp-sec-link {
    display: block;
    margin: 40px auto 0;
  }

  .sec-2col-sub {
    margin-bottom: 0;
  }

  .sec-top-strength .sec-2col-sub {
    margin-top: 0;
  }

  .top-recruit-txt {
    font-size: 13px;
  }

  .top-recruit-box {
    width: 100%;
    margin-bottom: 40px;
  }

  .top-recruit-img {
    max-width: 400px;
    margin: 0 auto 15px;
  }

  .recruit-head {
    font-size: 14px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    padding-right: 30px;
    background-size: 15px auto;
    background-position: right 0 top 7px;
  }

  .recruit-txt {
    font-size: 13px;
  }

  .mobile-btn {
    display: flex;
  }

  .mobile-panel {
    display: block;
  }

  .header-right {
    display: none;
  }

  .sec-link,
  .btn {
    font-size: 12px;
    max-width: 360px;
    width: 100%;
  }

  .contact-icon {
    width: 25px;
  }

  .contact-box h2 {
    font-size: 12px;
  }

  .contact-tel {
    font-size: 24px;
  }

  .contact-time {
    font-size: 12px;
  }

  .contact-box {
    padding: 25px 20px;
  }

  .form-txt01 {
    margin-bottom: 30px;
  }

  .form-item label {
    font-size: 12px;
  }

  .req {
    font-size: 9px;
    padding: 4px 8px 5px;
    margin-left: 8px;
    line-height: 1em;
    vertical-align: 0;
  }

  .opt {
    font-size: 9px;
    padding: 4px 8px 5px;
    margin-left: 8px;
    line-height: 1em;
    vertical-align: 0;
  }

  .form-item select {
    padding: 7px 30px 7px 10px;
    font-size: 12px;
    background-size: 10px auto;
    background-position: right 10px top 16px;
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"] {
    padding: 7px 10px 7px 10px;
    font-size: 12px;
  }

  .form-item textarea {
    padding: 7px 10px 7px 10px;
    font-size: 12px;
  }

  .form-check-txt {
    width: 100%;
    display: block;
    transform: translateY(-3px);
  }

  .form-submit button,
  .form-submit input {
    width: 240px;
    margin: 40px auto 0;
    font-size: 14px;
    padding: 15px;
  }

  .form-check label {
    align-items: flex-start;
  }
}

@media (max-width: 672px) {
  .banner-list img {
    max-width: 220px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .spnone600 {
    display: none;
  }
  .pcnone600 {
    display: block;
  }
  .hero {
    width: 100%;
    margin-top: 50px;
    flex-wrap: wrap-reverse;
    background-image: url(../img/cross02.png);
    background-size: 10px;
  }

  .hero-txt {
    width: 90%;
    margin: 60px auto 0;
  }

  .hero-sub {
    font-size: clamp(14px, 1.35vw, 24px);
    font-weight: 600;
    width: 100%;
    line-height: 1.75em;
    text-align: center;
  }

  .hero-catch {
    font-size: clamp(20px, 5vw, 60px);
    text-align: center;
  }

  .swiper.hero-swiper {
    width: 100%;
    margin: 0 auto;
  }

  .swiper-slide {
    aspect-ratio: 1 / 1;
  }

  .swiper-slide img {
    aspect-ratio: 1 / 1;
  }

  .hero-catch {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .top-cross-bg {
    background-size: 10px;
    transform: translateY(0);
  }

  .sec-top-business {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .header-inner {
    padding-left: 0;
  }

  .message-inner .sec-label {
    top: 10px;
    left: 15px;
  }

  .cta-banner {
    background-position: right 50% center;
  }

  .message-inner h3 {
    font-size: 4vw;
  }

  .message-txt {
    text-align: left;
  }

  .top-message-img {
    max-width: 140px;
  }

  .sec-top-strength .sec-2col-inner {
    padding: 40px 15px 0;
  }

  .sec-contact-tel {
    padding-top: 30px;
  }

  .contact-box {
    width: 100%;
    margin-bottom: 20px;
  }

  .sec-contact-form {
    padding-top: 30px;
  }
}

@media (max-width: 450px) {
  .hero-sub {
    text-align: left;
  }

  .hero-sub br {
    display: none;
  }
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.two-col .text-col {
  width: 47.2%;
}

.two-col .img-col {
  width: 47.2%;
}

.two-col-btn {
  margin-top: 40px;
}

.two-col p {
  text-align: justify;
}

.dot-list {
  margin-top: 30px;
  background-color: #f7f7f7;
  padding: 30px;
}

.dot-list.white {
  background-color: #fff;
}

.dot-list li {
  padding: 0 0 5px 10px;
  font-size: 14px;
  font-weight: 600;
  background-image: url("../img/list-dot.png");
  background-repeat: no-repeat;
  background-position: left top 12px;
  background-size: 3px auto;
}

.dot-list02 {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 1em;
}

.dot-list02 li {
  padding: 0 0 5px 10px;
  font-weight: 600;
  background-image: url("../img/list-dot.png");
  background-repeat: no-repeat;
  background-position: left top 13px;
  background-size: 3px auto;
}

.aspect-ft-img img {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.fix-nav-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: space-between;
}

.fix-side-nav-content {
  width: calc(100% - 280px);
}

.fix-side-nav {
  position: sticky;
  top: 154px;
  background-color: var(--dark);
  width: 205px;
  padding: 30px 20px;
  left: 0;
  align-self: flex-start;
  margin-top: 80px;
  margin-bottom: 80px;
}

.fix-nav-wrap .sec-gray {
  position: relative;
}

.fix-nav-wrap .sec-gray::before {
  content: "";
  position: absolute;
  top: 0;
  width: 120vw;
  right: -13.1vw;
  background-image: url(../img/cross.png);
  background-size: 10px auto;
  z-index: -1;
  height: 100%;
}

.fix-side-head {
  text-align: center;
  font-size: 16px;
  position: relative;
  color: #fff;
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

.fix-side-head::after {
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #fff;
  height: 1px;
  width: 30px;
  position: absolute;
  bottom: -10px;
}

.fix-side-nav a {
  color: #fff;
  font-size: 13px;
}

.fix-side-nav.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.fix-side-nav a {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  opacity: 0.7;
  transition-duration: 0.2s;
}

.fix-side-list li {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #4e4e4e;
}

.fix-side-list li:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.fix-side-list li a:hover,
.fix-side-list li a.active {
  opacity: 1;
}

.head02 {
  font-size: 18px;
  font-weight: 800;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--black);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.head02 span {
  font-size: 13px;
  letter-spacing: 0.03em;
}

.head03 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  line-height: 1.5em;
}

.head04 {
  background-color: var(--dark);
  padding: 15px 15px 17px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  margin-bottom: 20px;
  font-weight: 700;
}

.service main,
.cardboard main,
.seikan main,
.kasei main,
.recruit-top main {
  overflow: clip;
}

.point-list01 {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}

.point-list01 li {
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.point-txt-wrap {
  padding: 30px;
}

.point-head {
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 15px;
}

.point-txt {
  text-align: justify;
  font-size: 14px;
}

.img-link-list01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  margin-top: 40px;
}

.img-link-list01 li {
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.img-link-img {
  width: 60%;
  margin: 10px auto 0;
}

.img-link-txt {
  margin-bottom: 20px;
}

.img-link-txt-wrap {
  padding: 10px 30px 40px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.img-link-head {
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 0px;
  text-align: center;
  font-weight: 800;
}

.img-link-sub {
  font-size: 13px;
  text-align: center;
  padding: 5px 0;
  font-weight: 800;
  margin-bottom: 5px;
}
.img-link-txt {
  text-align: justify;
  font-size: 14px;
  flex: 1;
}

.btn-book {
  margin: auto auto 0;
  transition-duration: 0.3s;
  font-size: 13px;
}

.btn-book02 {
  max-width: 320px;
  width: 100%;
  font-size: 14px;
  margin-right: auto;
  margin-left: 0;
}

.btn-book02 span {
  width: 22px;
  height: 22px;
  line-height: 12px;
  margin-right: 5px;
  margin-top: 1px;
}

.btn-book:hover {
  background-color: var(--black);
}

.btn-book span {
  width: 20px;
  height: 20px;
  line-height: 10px;
  margin-right: 5px;
}

.btn-book span img {
  width: 100%;
  display: inline-block;
  margin-right: 10px;
}

.small-txt-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}

.small-txt {
  font-size: 13px;
  display: block;
  font-weight: 500;
}

.catalog-page-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.catalog-page-list li:last-of-type {
  margin-bottom: 0;
}

.catalog-page {
  width: 100px;
  padding: 0;
}

.catalog-page-name {
  width: calc(100% - 300px);
}

.catalog-link {
  display: flex;
  width: 200px;
  justify-content: space-between;
}

.catalog-link a {
  display: block;
  background-color: var(--dark);
  color: #fff;
  text-align: center;
  font-size: 14px;
  width: 47%;
  padding: 5px 8px;
  font-weight: 800;
  transition-duration: 0.3s;
}

.catalog-link a:hover {
  background-color: var(--black);
}

.catalog-link a span {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: -4px;
  margin-right: 5px;
  vertical-align: -5px;
}

.catalog-page-wrap {
  margin-top: 80px;
}

.catalog-page p {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.other-link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.other-link-box {
  background-color: #fff;
  position: relative;
}

.other-link-kasei.other-link-img img {
  object-position: bottom;
}

.other-link-txt-box {
  padding: 20px 35px 30px;
}

.other-link-head {
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 15px;
}

.other-link-img {
  overflow: hidden;
}

.other-link-img img {
  aspect-ratio: 2.5 / 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: 0.2s linear;
}

.other-link-box:hover .other-link-img img {
  transform: scale(1.05);
}

.pp-link-bnr {
  margin-top: 40px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pp-link-bnr:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pp-product-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.pp-product-list li {
  position: relative;
  padding: 30px;
  border: 1px solid;
}

.pp-product-list li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 25px;
  background-image: url(../img/link-icon.svg);
  z-index: 1;
  background-size: contain;
}

.pp-product-img {
  overflow: hidden;
}

.pp-product-img img {
  aspect-ratio: 1.618 / 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: 0.2s linear;
  max-width: 300px;
  margin: 0 auto;
}

.pp-product-list li:hover .pp-product-img img {
  transform: scale(1.05);
}

.pp-product-head {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  margin-top: 10px;
}

.pp-product-txt {
  text-align: center;
  font-size: 13px;
}

.two-box {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.two-box-content {
  width: 47%;
}

#csr .two-box-content {
  width: 65%;
}

.two-box-img {
  width: 47%;
}

#csr .two-box-img {
  width: 30%;
}

.nm-list {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
}

.nm-list li {
  background-color: #f7f7f7;
  padding: 40px;
  position: relative;
}

.nm-list.white li {
  background-color: #fff;
}

.nm-list-num {
  width: 50px;
  position: absolute;
  top: -23px;
  left: 15px;
}

.nm-list-head {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5em;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.nm-list-txt {
  text-align: justify;
  font-size: 14px;
}

.sign {
  display: block;
  margin-top: 25px;
  font-weight: bold;
}

.history-list {
  margin-top: 50px;
}

.history-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding: 20px 0;
  border-bottom: solid var(--black) 1px;
}

.history-list li:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

.history-year {
  width: 100px;
}

.history-year p {
  font-size: 14px;
  font-weight: 700;
}

.history-content {
  width: calc(100% - 120px);
}

.history-content p {
  font-size: 14px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 60px;
}
.info-table tr {
  border-bottom: 1px solid var(--border);
}
.info-table tr:first-child {
  border-top: 1px solid var(--border);
}
.info-table th,
.info-table td {
  text-align: left;
  vertical-align: top;
  line-height: 1.9;
}
.info-table th {
  width: 160px;
  font-weight: 700;
  color: var(--dark);
  background: var(--bg-gray);
  padding: 20px 10px 20px 0;
}
.info-table td {
  width: calc(100% - 200px);
  padding: 20px 0 20px 10px;
  font-weight: 500;
}

.info-table td small {
  font-size: 12px;
  letter-spacing: 0.05em;
  display: block;
}

.gmap01 {
  position: relative;
  width: 100%;
  padding-top: 35%;
  height: 0;
}

.gmap01 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gmap-wrap {
  margin-top: 60px;
}

.illust-map {
  margin-top: 40px;
  position: relative;
  overflow: visible;
}

.illust-map-hint {
  display: none;
}

.illust-map-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}

.factory-acesss {
  margin-top: 60px;
}

.factory-list {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 40px;
}

.factory-list li {
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.factory-txt-wrap {
  padding: 30px;
  position: relative;
}

.factory-head {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.factory-address,
.factory-tel {
  font-size: 14px;
}

.factory-tel {
  margin-bottom: 15px;
}

.factory-img img {
  aspect-ratio: 2 / 1;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.factory-map-link {
  margin-top: 10px;
}

.factory-map-link a {
  display: flex;
  padding: 8px;
  background-color: var(--dark);
  font-family: "Outfit";
  color: #fff;
  font-weight: 600;
  line-height: 1.2em;
  font-size: 12px;
  letter-spacing: 0.05em;
  align-items: center;
  width: 115px;
  transition-duration: 0.3s;
  border: 1px solid var(--dark);
}

.factory-map-link a:hover {
  background-color: #fff;
  color: var(--black);
  border: 1px solid var(--black);
}

.pin-icon {
  fill: #fff;
  width: 15px;
  margin-right: 5px;
  transition-duration: 0.3s;
}

.factory-map-link a:hover .pin-icon {
  fill: var(--black);
}

.r-flow-list {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.r-flow-list li {
  background-size: auto auto;
  background-color: rgba(51, 51, 51, 1);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgba(53, 53, 53, 1) 5px, rgba(53, 53, 53, 1) 10px);
  padding: 25px 40px 25px 20px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
  width: 24%;
}

.r-flow-list li:last-of-type {
  clip-path: none;
  padding: 25px 20px 25px 20px;
}

.r-flow-icon {
  width: 40px;
  margin: 0 auto 5px;
  padding-left: 3px;
}

.r-flow-head {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
}

.r-flow-txt {
  color: #fff;
  text-align: center;
  font-size: 12px;
}

.privacy-section {
  padding-top: 60px;
}

.article-header h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  margin-bottom: 30px;
}

.article-meta {
  margin-bottom: 15px;
}

.article-meta .date {
  display: inline-block;
  font-family: "Outfit";
  letter-spacing: 0.05em;
  font-size: 16px;
  font-weight: 700;
}

.article-meta .cat {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 12px 3px;
  border: 1px solid var(--dark);
  text-align: center;
  flex-shrink: 0;
  background-color: var(--dark);
  color: #fff;
  transition-duration: 0.3s;
  margin-left: 5px;
  transform: translateY(-2px);
  display: inline-block;
}

.article-meta .cat:hover {
  background-color: #fff;
  color: var(--dark);
}

.article-img {
  margin-bottom: 20px;
}

.article-body h2 {
  margin-top: 40px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-left: 12px;
  border-left: 5px var(--black) solid;
  line-height: 1.6em;
  margin-bottom: 25px;
}

.article-body h3 {
  margin-top: 40px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--black);
  font-size: 22px;
  margin-bottom: 25px;
}

.article-body p {
  margin-bottom: 1em;
}

.article-list {
  margin-top: 20px;
  margin-bottom: 20px;
}

.article-list li {
  padding: 0 0 5px 10px;
  font-weight: 600;
  background-image: url("../img/list-dot.png");
  background-repeat: no-repeat;
  background-position: left top 13px;
  background-size: 3px auto;
}

.back {
  max-width: 200px;
  padding: 10px 15px;
  text-align: center;
  color: #fff;
  background-color: var(--dark);
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin: 60px auto 0;
  width: 100%;
  display: block;
  border: 1px solid var(--dark);
  transition-duration: 0.3s;
}

.back:hover {
  background-color: #fff;
  color: var(--dark);
}

@media (max-width: 1480px) {
  .fix-nav-wrap {
    padding: 0 40px;
  }

  .fix-side-nav {
    position: sticky;
    top: 120px;
    background-color: var(--dark);
    width: 200px;
    padding: 35px 25px;
    left: 0;
    align-self: flex-start;
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

@media (max-width: 1200px) {
  .two-col .text-col {
    width: 100%;
  }

  .two-col .img-col {
    width: 100%;
    margin-bottom: 20px;
  }

  .two-col {
    flex-wrap: wrap-reverse;
  }

  .point-list01 {
    gap: 20px;
  }

  .img-link-list01 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

  .pp-product-list {
    gap: 20px;
  }

  .pp-product-list li {
    padding: 15px;
  }

  .two-box {
    flex-wrap: wrap-reverse;
  }

  .two-box-content {
    width: 100%;
  }

  .two-box-img {
    width: 100%;
    margin-bottom: 20px;
  }

  .nm-list {
    display: grid;
    gap: 40px;
    margin-top: 50px;
  }

  .nm-list {
    grid-template-columns: repeat(1, 1fr);
  }

  .r-flow-list li {
    background-size: auto auto;
    background-color: rgba(51, 51, 51, 1);
    background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgba(53, 53, 53, 1) 5px, rgba(53, 53, 53, 1) 10px);
    padding: 25px 20px 25px 10px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
  }

  .r-flow-list li:last-of-type {
    padding: 25px 10px 25px 10px;
  }

  .r-flow-txt {
    font-size: 11px;
  }
}

@media (max-width: 960px) {
  .page-hero {
    height: 280px;
    width: 100%;
    margin-top: 49px;
  }

  .page-hero-content {
    max-width: 280px;
    height: 110px;
  }

  .page-hero .en {
    font-size: 10px;
  }

  .page-hero h1 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .fix-side-nav {
    display: none;
  }

  .fix-side-nav-content {
    width: 100%;
  }

  .two-col .img-col {
    max-width: 400px;
    margin: 0 auto 15px;
  }

  .fix-nav-wrap {
    padding: 0 15px;
  }

  .sec02 {
    padding: 50px 0;
  }

  .dot-list {
    margin-top: 30px;
    padding: 20px 20px 15px;
  }

  .dot-list li {
    font-size: 13px;
    background-position: left top 10px;
  }

  .two-col-btn {
    margin: 30px auto 0;
  }

  .head02 {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .head04 {
    padding: 10px 10px 13px;
    font-size: 15px;
  }

  .point-txt {
    font-size: 13px;
  }

  .point-head {
    font-size: 15px;
  }

  .point-txt-wrap {
    padding: 20px 20px 25px;
  }

  .other-link {
    gap: 30px;
  }

  .other-link-head {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .img-link-head {
    font-size: 15px;
  }

  .img-link-sub {
    font-size: 13px;
    padding: 0 0 5px;
    margin-bottom: 5px;
  }

  .img-link-txt {
    font-size: 13px;
  }

  .btn-book {
    font-size: 13px;
  }

  .btn-book span {
    width: 17px;
    height: 15px;
  }

  .small-txt {
    font-size: 11px;
  }

  .catalog-page-wrap {
    margin-top: 40px;
  }

  .catalog-page {
    width: 50px;
  }

  .catalog-page-name p {
    font-size: 13px;
  }

  .catalog-page p {
    letter-spacing: 0.05em;
    font-size: 13px;
  }

  .catalog-link a {
    font-size: 13px;
  }

  .catalog-link a span {
    width: 17px;
    height: 15px;
    margin-right: 2px;
    vertical-align: -2px;
  }

  .pp-product-txt {
    font-size: 13px;
  }

  .two-box {
    margin-top: 40px;
  }

  .two-box-wrap .two-box:first-of-type {
    margin-top: 25px;
  }

  .two-box-img {
    max-width: 400px;
    margin: 0 auto 15px;
  }

  #csr .two-box-img {
    max-width: 100%;
    margin: 0;
  }

  .nm-list li {
    padding: 30px;
  }

  .nm-list-head {
    font-size: 16px;
  }

  .nm-list-num {
    width: 35px;
    position: absolute;
    top: -18px;
    left: 15px;
  }

  .nm-list-txt {
    font-size: 13px;
  }

  .cta-banner .cta-banner-ttl {
    font-size: 20px;
  }

  .cta-banner p {
    font-size: 13px;
  }

  .info-table {
    margin-top: 40px;
  }

  .info-table th,
  .info-table td {
    font-size: 13px;
  }

  .info-table th {
    width: 80px;
  }

  .info-table td {
    width: calc(100% - 80px);
  }

  .info-table td small {
    font-size: 10px;
  }

  .history-list {
    margin-top: 10px;
  }

  .history-list li {
    padding: 13px 0 16px;
  }

  .history-year {
    width: 80px;
  }

  .history-content {
    width: calc(100% - 95px);
  }

  .history-year p {
    font-size: 13px;
  }

  .history-content p {
    font-size: 13px;
  }

  .factory-txt-wrap {
    padding: 20px 20px 25px;
  }

  .factory-head {
    font-size: 14px;
  }

  .factory-address,
  .factory-tel {
    font-size: 13px;
  }

  .privacy-section {
    padding-top: 40px;
  }

  .dot-list02 li {
    font-size: 12px;
    background-position: left top 10px;
  }

  .news-single-sec {
    padding-top: 40px;
  }

  .article-meta .date {
    font-size: 13px;
  }

  .article-meta .cat {
    font-size: 9px;
    padding: 1px 6px 1px;
    margin-left: 3px;
    transform: translateY(-1px);
  }

  .article-header h1 {
    font-size: 22px;
  }

  .article-body h2 {
    margin-top: 40px;
    font-size: 18px;
    padding-left: 10px;
    border-left: 3px var(--black) solid;
    margin-bottom: 15px;
  }

  .article-body h3 {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .article-list li {
    font-size: 12px;
    background-position: top 10px left 0;
  }

  .back {
    font-size: 13px;
    margin: 30px auto 0;
  }
}

@media (max-width: 780px) {
  .point-list01 {
    gap: 25px;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
  }

  .point-img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .point-list01 li {
    max-width: 400px;
    margin: 0 auto;
  }

  .pp-product-list {
    gap: 25px;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
  }

  .pp-product-img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .pp-product-list li {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .kasei .page-hero {
    background-position: right 10% top;
  }

  .other-link-box {
    max-width: 400px;
    margin: 0 auto;
  }

  .img-link-list01 {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }

  .img-link-list01 li {
    max-width: 400px;
    margin: 0 auto;
  }

  .catalog-page {
    width: 100%;
  }

  .catalog-page-name {
    width: calc(100% - 50px);
  }

  .catalog-link {
    margin-top: 10px;
  }

  .catalog-link {
    width: 100%;
  }

  .catalog-link a {
    width: 48.5%;
  }

  .factory-list {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }

  #csr .two-box-content {
    width: 100%;
  }

  #csr .two-box-img {
    max-width: 400px;
    width: 100%;
    margin: 0 auto 15px;
  }

  .gmap01 {
    padding-top: 67.5%;
  }

  .r-flow-list li {
    width: 100%;
    margin-bottom: 10px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 50% 100%, 0 calc(100% - 20px));
    padding: 15px 20px 45px 20px;
  }

  .r-flow-list li:last-of-type {
    margin-bottom: 0;
  }

  .r-flow-txt {
    font-size: 13px;
  }

  .cardboard .page-hero {
    background-position: left center;
  }

  .other-link {
    grid-template-columns: repeat(1, 1fr);
  }

  .other-link-txt-box {
    padding: 20px 20px 30px;
  }

  .img-link-txt-wrap {
    padding: 10px 20px 30px 20px;
  }
}

@media (max-width: 450px) {
  .illust-map-scroll img {
    min-width: 560px;
  }

  .illust-map-hint {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-65%);
    padding: 4px 12px;
    border-radius: 15px;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 2;
    padding: 13px 0 10px;
    max-width: 160px;
  }

  .swipe-icon img {
    width: 30px;
    height: auto;
    margin: 0 auto;
  }

  .swipe-txt {
    text-align: center;
    font-weight: bold;
    display: block;
    margin-top: 5px;
    color: #fff;
  }

  .illust-map-hint.is-hidden {
    opacity: 0;
  }

  .sec-top-strength .sec-sub br {
    display: none;
  }
}
