@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 128px;
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 96px;
  }
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #3b3f47;
  background: #f4f1e9;
  line-height: 1.9;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, p {
  margin: 0;
}

.swp-container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 768px) {
  .swp-container {
    padding-inline: 20px;
  }
}

.swp-container--narrow {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 768px) {
  .swp-container--narrow {
    padding-inline: 20px;
  }
}

.swp-section {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .swp-section {
    padding: 72px 0;
  }
}

.swp-section--alt {
  background: #fbf9f4;
}

.swp-heading {
  text-align: center;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .swp-heading {
    margin-bottom: 40px;
    text-align: left;
  }
}
.swp-heading_label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #d1453b;
}
.swp-heading_label::before {
  content: "";
  display: inline-block;
  flex: none;
  width: 26px;
  height: 2px;
  background: #d1453b;
}
.swp-heading_title {
  margin-top: 12px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  color: #23262e;
}
@media (max-width: 768px) {
  .swp-heading_title {
    font-size: 23px;
  }
}
.swp-heading_lead {
  margin-top: 20px;
  color: #6e727b;
  font-size: 15px;
  line-height: 2;
}
.swp-heading--left {
  text-align: left;
}

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

.js-reveal {
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.js .js-reveal {
  opacity: 0;
  transform: translateY(28px);
}
.js .js-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.swp-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #23262e;
  line-height: 1;
  cursor: pointer;
}
.swp-btn::before, .swp-btn::after {
  content: "";
  flex: none;
  width: 1px;
  height: 22px;
  background: #d1453b;
  transition: height 0.25s ease;
}
.swp-btn_arrow {
  color: #d1453b;
  font-style: normal;
  transition: transform 0.3s ease;
}
.swp-btn:hover {
  color: #a8352c;
}
.swp-btn:hover::before, .swp-btn:hover::after {
  height: 26px;
}
.swp-btn:hover .swp-btn_arrow {
  transform: translateX(5px);
}
.swp-btn--light {
  color: #ffffff;
}
.swp-btn--light:hover {
  color: #d1453b;
}

.swp-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 128px;
  background: rgba(244, 241, 233, 0.92);
  border-bottom: 1px solid #e4dfd3;
}
@media (max-width: 768px) {
  .swp-header {
    height: 96px;
  }
}
.swp-header_inner {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 768px) {
  .swp-header_inner {
    padding-inline: 20px;
  }
}
.swp-header_inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.swp-header_logo {
  display: block;
  z-index: 120;
}
.swp-header_logo img {
  height: 100px;
  width: auto;
}
@media (max-width: 768px) {
  .swp-header_logo img {
    height: 72px;
  }
}

.swp-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}
.swp-nav a {
  position: relative;
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: #23262e;
}
.swp-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #d1453b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.swp-nav a:hover {
  color: #a8352c;
}
.swp-nav a:hover::after {
  transform: scaleX(1);
}
@media (max-width: 768px) {
  .swp-nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: #f4f1e9;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .swp-nav ul {
    flex-direction: column;
    gap: 30px;
  }
  .swp-nav a {
    font-size: 20px;
    letter-spacing: 0.2em;
  }
  .swp-nav a::after {
    display: none;
  }
}

.swp-hamburger {
  display: none;
  position: relative;
  z-index: 120;
  width: 34px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.swp-hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #23262e;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease, background 0.25s ease;
}
.swp-hamburger span:nth-child(1) {
  top: 2px;
}
.swp-hamburger span:nth-child(2) {
  top: 11px;
}
.swp-hamburger span:nth-child(3) {
  top: 20px;
}
@media (max-width: 768px) {
  .swp-hamburger {
    display: block;
  }
}

body.is-nav-open {
  overflow: hidden;
}
body.is-nav-open .swp-nav {
  opacity: 1;
  visibility: visible;
}
body.is-nav-open .swp-hamburger span {
  background: #23262e;
}
body.is-nav-open .swp-hamburger span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
body.is-nav-open .swp-hamburger span:nth-child(2) {
  opacity: 0;
}
body.is-nav-open .swp-hamburger span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

.swp-fv {
  position: relative;
  min-height: 100vh;
  padding-top: 128px;
  display: flex;
  align-items: center;
  background-color: #f4f1e9;
  background-image: url("../images/fv-bg.webp");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: auto 100%;
  overflow: hidden;
}
.swp-fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, #f4f1e9 30%, rgba(244, 241, 233, 0.7) 46%, rgba(244, 241, 233, 0) 66%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .swp-fv {
    padding-top: 96px;
    align-items: flex-start;
    background-position: center 98%;
    background-size: 180%;
  }
  .swp-fv::before {
    background: linear-gradient(to bottom, #f4f1e9 48%, rgba(244, 241, 233, 0.6) 64%, rgba(244, 241, 233, 0.15) 100%);
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .swp-fv {
    align-items: flex-start;
    background-position: center bottom;
    background-size: 100%;
  }
}
.swp-fv_inner {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .swp-fv_inner {
    padding-top: 36px;
    padding-bottom: 260px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .swp-fv_inner {
    padding-bottom: 180px;
  }
}
.swp-fv_label {
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #d1453b;
  opacity: 0;
  transform: translateY(18px);
  animation: swpFvLabel 0.9s ease 0.2s forwards;
}
@media (max-width: 768px) {
  .swp-fv_label {
    font-size: 20px;
  }
}
.swp-fv_title {
  margin-top: 22px;
  font-family: "Noto Serif JP", serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #23262e;
}
@media (max-width: 768px) {
  .swp-fv_title {
    font-size: 30px;
    margin-top: 16px;
  }
}
.swp-fv_title_line {
  display: block;
  min-height: 1.4em;
}
.swp-fv_title_line.is-typing::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 4px;
  background: #d1453b;
  vertical-align: -0.1em;
  animation: swpCaret 0.8s steps(1) infinite;
}
.swp-fv_title_line.is-preedit {
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 4px;
}
.swp-fv_title_line.is-converting {
  text-decoration: none;
  background: rgba(66, 133, 244, 0.18);
  border-radius: 3px;
  transition: background 0.15s ease;
}
.swp-fv_lead {
  margin-top: 26px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 2;
  color: #3b3f47;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
@media (max-width: 768px) {
  .swp-fv_lead {
    font-size: 16px;
    margin-top: 20px;
  }
}
.swp-fv_btn {
  margin-top: 34px;
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}
@media (max-width: 768px) {
  .swp-fv_btn {
    margin-top: 26px;
  }
}

.js .swp-fv_lead,
.js .swp-fv_btn {
  opacity: 0;
  transform: translateY(14px);
}

.js .swp-fv_lead.is-show,
.js .swp-fv_btn.is-show {
  opacity: 1;
  transform: none;
}

@keyframes swpFvLabel {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes swpCaret {
  50% {
    opacity: 0;
  }
}
.swp-news_list {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid #e4dfd3;
}
.swp-news_item {
  border-bottom: 1px solid #e4dfd3;
}
.swp-news_item a {
  display: flex;
  align-items: baseline;
  gap: 28px;
  padding: 22px 6px;
}
@media (max-width: 768px) {
  .swp-news_item a {
    flex-direction: column;
    gap: 6px;
    padding: 18px 4px;
  }
}
.swp-news_date {
  flex: none;
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #d1453b;
}
.swp-news_title {
  color: #23262e;
  font-size: 16px;
  line-height: 1.7;
  transition: color 0.25s ease;
}
@media (max-width: 768px) {
  .swp-news_title {
    font-size: 15px;
  }
}
.swp-news_item a:hover .swp-news_title {
  color: #a8352c;
}
.swp-news_item:hover .swp-news_title {
  color: #a8352c;
}
.swp-news_more {
  margin-top: 44px;
  text-align: center;
}
.swp-news_pager {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.swp-news_pager .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 14px;
  color: #23262e;
  border: 1px solid #e4dfd3;
  border-radius: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.swp-news_pager .page-numbers.current {
  color: #ffffff;
  background: #d1453b;
  border-color: #d1453b;
}
.swp-news_pager .page-numbers:hover:not(.current) {
  color: #a8352c;
  border-color: #d1453b;
}

.swp-page-head {
  padding: calc(128px + 64px) 0 44px;
  text-align: center;
  background: #fbf9f4;
  border-bottom: 1px solid #e4dfd3;
}
@media (max-width: 768px) {
  .swp-page-head {
    padding: calc(96px + 44px) 0 34px;
  }
}
.swp-page-head_en {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #d1453b;
}
.swp-page-head_en::before {
  content: "";
  display: inline-block;
  flex: none;
  width: 26px;
  height: 2px;
  background: #d1453b;
}
.swp-page-head_ja {
  margin-top: 8px;
  font-size: 26px;
  font-weight: 700;
  color: #23262e;
}
@media (max-width: 768px) {
  .swp-page-head_ja {
    font-size: 21px;
  }
}

.swp-article {
  max-width: 760px;
  margin: 0 auto;
}
.swp-article_meta {
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #d1453b;
}
.swp-article_title {
  margin-top: 10px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  color: #23262e;
}
@media (max-width: 768px) {
  .swp-article_title {
    font-size: 20px;
  }
}
.swp-article_thumb {
  margin: 28px 0 0;
}
.swp-article_thumb img {
  width: 100%;
  border-radius: 8px;
}
.swp-article_body {
  margin-top: 30px;
  line-height: 2;
}
.swp-article_body p {
  margin-bottom: 1.4em;
}
.swp-article_body img {
  border-radius: 6px;
  height: auto;
}
.swp-article_body a {
  color: #a8352c;
  text-decoration: underline;
}
.swp-article_back {
  margin-top: 48px;
  text-align: center;
}

.swp-feature_inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}
@media (max-width: 768px) {
  .swp-feature_inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (min-width: 769px) {
  .swp-feature_inner.swp-feature_inner--reverse .swp-feature_image {
    order: 2;
  }
  .swp-feature_inner.swp-feature_inner--reverse .swp-feature_body {
    order: 1;
  }
}
.swp-feature_image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(35, 38, 46, 0.1);
}
.swp-feature_placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  padding: 16px;
  text-align: center;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #6e727b;
  background: #e4dfd3;
  border-radius: 8px;
}
.swp-feature_label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #d1453b;
}
.swp-feature_label::before {
  content: "";
  display: inline-block;
  flex: none;
  width: 26px;
  height: 2px;
  background: #d1453b;
}
.swp-feature_title {
  margin-top: 14px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  color: #23262e;
}
@media (max-width: 768px) {
  .swp-feature_title {
    font-size: 22px;
    margin-top: 10px;
  }
}
.swp-feature_lead {
  margin-top: 20px;
  font-size: 15px;
  line-height: 2.1;
  color: #6e727b;
}
@media (max-width: 768px) {
  .swp-feature_lead {
    margin-top: 14px;
  }
}
.swp-feature_btn {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .swp-feature_btn {
    margin-top: 22px;
  }
}

.swp-instagram_grid {
  max-width: 100%;
}
.swp-instagram_grid .FeedLayout__wrapper {
  background-color: transparent !important;
}
.swp-instagram_note {
  margin-top: 22px;
  text-align: center;
  font-size: 13px;
  color: #6e727b;
}
.swp-instagram_more {
  margin-top: 40px;
  text-align: center;
}

.swp-recruit-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 128px;
  display: flex;
  align-items: center;
  background-color: #f4f1e9;
  background-image: url("../images/recruit-fv.webp");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: auto 100%;
  overflow: hidden;
}
.swp-recruit-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, #f4f1e9 30%, rgba(244, 241, 233, 0.7) 46%, rgba(244, 241, 233, 0) 66%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .swp-recruit-hero {
    padding-top: 96px;
    align-items: flex-start;
    background-position: center 98%;
    background-size: 180%;
  }
  .swp-recruit-hero::before {
    background: linear-gradient(to bottom, #f4f1e9 48%, rgba(244, 241, 233, 0.6) 64%, rgba(244, 241, 233, 0.15) 100%);
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .swp-recruit-hero {
    align-items: flex-start;
    background-position: center bottom;
    background-size: 100%;
  }
}
.swp-recruit-hero_inner {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .swp-recruit-hero_inner {
    padding-top: 36px;
    padding-bottom: 260px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .swp-recruit-hero_inner {
    padding-bottom: 180px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .swp-recruit-hero_inner {
    padding-bottom: 40px;
  }
}
.swp-recruit-hero_label {
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #d1453b;
  opacity: 0;
  transform: translateY(18px);
  animation: swpFvLabel 0.9s ease 0.2s forwards;
}
@media (max-width: 768px) {
  .swp-recruit-hero_label {
    font-size: 20px;
  }
}
.swp-recruit-hero_title {
  margin-top: 22px;
  font-family: "Noto Serif JP", serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #23262e;
}
@media (max-width: 768px) {
  .swp-recruit-hero_title {
    font-size: 30px;
    margin-top: 16px;
  }
}
.swp-recruit-hero_lead {
  margin-top: 26px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 2;
  color: #3b3f47;
}
@media (max-width: 768px) {
  .swp-recruit-hero_lead {
    font-size: 16px;
    margin-top: 20px;
  }
}

.swp-recruit-lead {
  padding: 72px 0;
  text-align: center;
  background: #f4f1e9;
}
@media (max-width: 768px) {
  .swp-recruit-lead {
    padding: 52px 0;
  }
}
.swp-recruit-lead_rule {
  width: 40px;
  height: 2px;
  margin: 0 auto;
  background: #d1453b;
}
.swp-recruit-lead_statement {
  margin-top: 28px;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.8;
  color: #23262e;
}
@media (max-width: 768px) {
  .swp-recruit-lead_statement {
    font-size: 17px;
    margin-top: 22px;
  }
}
.swp-recruit-lead_text {
  margin-top: 22px;
  max-width: 720px;
  margin-inline: auto;
  font-size: 15px;
  line-height: 2.1;
  color: #6e727b;
}

.swp-recruit_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
@media (max-width: 768px) {
  .swp-recruit_tags {
    margin-top: 16px;
  }
}
.swp-recruit_tag {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #23262e;
  padding: 6px 16px;
  border: 1px solid #d1453b;
  border-radius: 999px;
  background: rgba(209, 69, 59, 0.08);
}

.swp-job-intro {
  background: #192c40;
}
.swp-job-intro_inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}
@media (max-width: 768px) {
  .swp-job-intro_inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.swp-job-intro_image img {
  width: 100%;
  border-radius: 8px;
}
.swp-job-intro_placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  padding: 16px;
  text-align: center;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}
.swp-job-intro_label {
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #d1453b;
}
.swp-job-intro_title {
  margin-top: 14px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .swp-job-intro_title {
    font-size: 22px;
    margin-top: 10px;
  }
}
.swp-job-intro_lead {
  margin-top: 20px;
  font-size: 15px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 768px) {
  .swp-job-intro_lead {
    margin-top: 14px;
  }
}
.swp-job-intro_btn {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .swp-job-intro_btn {
    margin-top: 22px;
  }
}

.swp-steps--four .swp-steps_list {
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
}
@media (max-width: 768px) {
  .swp-steps--four .swp-steps_list {
    grid-template-columns: 1fr;
  }
}
.swp-steps--four .swp-steps_item {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 768px) {
  .swp-steps--four .swp-steps_item {
    padding-left: 75px;
    padding-right: 75px;
  }
}

.swp-work-style_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
@media (max-width: 768px) {
  .swp-work-style_grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.swp-work-style_item {
  display: flex;
  flex-direction: column;
}
.swp-work-style_image {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: #e4dfd3;
  box-shadow: 0 24px 60px rgba(35, 38, 46, 0.08);
}
.swp-work-style_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swp-work-style_placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #6e727b;
}
.swp-work-style_title {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 700;
  color: #23262e;
}
.swp-work-style_text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.9;
  color: #6e727b;
}

.swp-job + .swp-job {
  margin-top: 64px;
}
.swp-job_head {
  margin-bottom: 32px;
}
.swp-job_title {
  font-size: 22px;
  font-weight: 700;
  color: #23262e;
}
.swp-job_summary {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.9;
  color: #6e727b;
}
.swp-job_table {
  border-top: 1px solid #e4dfd3;
}
.swp-job_group-title {
  margin-top: 32px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffffff;
  background: #23262e;
}
.swp-job_group-title:first-child {
  margin-top: 0;
}
.swp-job_row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 20px;
  border-bottom: 1px solid #e4dfd3;
}
@media (max-width: 768px) {
  .swp-job_row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 4px;
  }
}
.swp-job_label {
  font-size: 14px;
  font-weight: 700;
  color: #23262e;
}
.swp-job_value {
  font-size: 14px;
  line-height: 1.9;
  color: #3b3f47;
  white-space: pre-line;
}

.swp-faq_item {
  border-bottom: 1px solid #e4dfd3;
}
.swp-faq_item:first-child {
  border-top: 1px solid #e4dfd3;
}
.swp-faq_q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  font-size: 15px;
  font-weight: 700;
  color: #23262e;
  cursor: pointer;
  list-style: none;
}
.swp-faq_q::-webkit-details-marker {
  display: none;
}
.swp-faq_q-mark {
  flex: none;
  font-family: "Marcellus", "Times New Roman", serif;
  color: #d1453b;
}
.swp-faq_q-icon {
  flex: none;
  color: #d1453b;
  transition: transform 0.3s ease;
}
.swp-faq_item.is-open .swp-faq_q-icon {
  transform: rotate(45deg);
}
.swp-faq_a {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  opacity: 0;
  transition: grid-template-rows 0.35s ease, opacity 0.3s ease;
}
.swp-faq_item.is-open .swp-faq_a {
  grid-template-rows: 1fr;
  opacity: 1;
}
.swp-faq_a-inner {
  min-height: 0;
  overflow: hidden;
}
.swp-faq_a-text {
  margin: 0;
  padding: 0 4px 22px 30px;
  font-size: 14px;
  line-height: 1.9;
  color: #6e727b;
}
@media (max-width: 768px) {
  .swp-faq_a-text {
    padding-left: 4px;
  }
}

.swp-recruit-message {
  background: #192c40;
}
.swp-recruit-message_inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 64px;
}
@media (max-width: 768px) {
  .swp-recruit-message_inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.swp-recruit-message_image img {
  width: 100%;
  border-radius: 8px;
}
.swp-recruit-message_placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  padding: 16px;
  text-align: center;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}
.swp-recruit-message_label {
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #d1453b;
}
.swp-recruit-message_title {
  margin-top: 14px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .swp-recruit-message_title {
    font-size: 21px;
    margin-top: 10px;
  }
}
.swp-recruit-message_text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.75);
}
.swp-recruit-message_statement {
  margin-top: 32px;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
}
.swp-recruit-message_btns {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
}

.swp-about-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 128px;
  display: flex;
  align-items: center;
  background-color: #f4f1e9;
  background-image: url("../images/about-fv.webp");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: auto 100%;
  overflow: hidden;
}
.swp-about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, #f4f1e9 30%, rgba(244, 241, 233, 0.7) 46%, rgba(244, 241, 233, 0) 66%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .swp-about-hero {
    padding-top: 96px;
    align-items: flex-start;
    background-position: center 98%;
    background-size: 180%;
  }
  .swp-about-hero::before {
    background: linear-gradient(to bottom, #f4f1e9 48%, rgba(244, 241, 233, 0.6) 64%, rgba(244, 241, 233, 0.15) 100%);
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .swp-about-hero {
    align-items: flex-start;
    background-position: center bottom;
    background-size: 100%;
  }
}
.swp-about-hero_inner {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .swp-about-hero_inner {
    padding-top: 36px;
    padding-bottom: 260px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .swp-about-hero_inner {
    padding-bottom: 180px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .swp-about-hero_inner {
    padding-bottom: 40px;
  }
}
.swp-about-hero_label {
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #d1453b;
  opacity: 0;
  transform: translateY(18px);
  animation: swpFvLabel 0.9s ease 0.2s forwards;
}
@media (max-width: 768px) {
  .swp-about-hero_label {
    font-size: 20px;
  }
}
.swp-about-hero_title {
  margin-top: 22px;
  font-family: "Noto Serif JP", serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #23262e;
}
@media (max-width: 768px) {
  .swp-about-hero_title {
    font-size: 30px;
    margin-top: 16px;
  }
}
.swp-about-hero_lead {
  margin-top: 26px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 2;
  color: #3b3f47;
}
@media (max-width: 768px) {
  .swp-about-hero_lead {
    font-size: 16px;
    margin-top: 20px;
  }
}

.swp-about-lead {
  padding: 72px 0;
  text-align: center;
  background: #f4f1e9;
}
@media (max-width: 768px) {
  .swp-about-lead {
    padding: 52px 0;
  }
}
.swp-about-lead_rule {
  width: 40px;
  height: 2px;
  margin: 0 auto;
  background: #d1453b;
}
.swp-about-lead_statement {
  margin-top: 28px;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.8;
  color: #23262e;
}
@media (max-width: 768px) {
  .swp-about-lead_statement {
    font-size: 17px;
    margin-top: 22px;
  }
}
.swp-about-lead_text {
  margin-top: 22px;
  max-width: 720px;
  margin-inline: auto;
  font-size: 15px;
  line-height: 2.1;
  color: #6e727b;
}

.swp-why {
  position: relative;
  padding: 100px 0;
  background-color: #23262e;
  background-image: linear-gradient(150deg, #23262e, #2c3038);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .swp-why {
    padding: 72px 0 64px;
    background-size: 260% auto;
    background-position: 82% center;
  }
}
.swp-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(35, 38, 46, 0.88) 32%, rgba(35, 38, 46, 0.5) 62%, rgba(35, 38, 46, 0.22) 100%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .swp-why::before {
    background: linear-gradient(to bottom, rgba(35, 38, 46, 0.85) 28%, rgba(35, 38, 46, 0.4) 62%, rgba(35, 38, 46, 0.2) 100%);
  }
}
.swp-why_inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.swp-why_label {
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #d1453b;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.swp-why_label::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 2px;
  background: #d1453b;
}
.swp-why_title {
  margin-top: 18px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .swp-why_title {
    font-size: 23px;
  }
}
.swp-why_text {
  margin-top: 24px;
  font-size: 15px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.78);
}

.swp-steps_list {
  display: grid;
  gap: 0;
  align-items: center;
}
@media (max-width: 768px) {
  .swp-steps_list {
    gap: 28px;
  }
}
.swp-steps_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px;
}
.swp-steps_icon {
  display: block;
  width: auto;
  height: 56px;
  object-fit: contain;
  flex: none;
}
@media (max-width: 768px) {
  .swp-steps_icon {
    height: 50px;
  }
}
.swp-steps_label {
  margin-top: 18px;
  font-size: 17px;
  font-weight: 700;
  color: #23262e;
  text-align: left;
}
.swp-steps_desc {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.9;
  color: #6e727b;
  text-align: left;
}
.swp-steps_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1453b;
  font-size: 20px;
  flex: none;
}
@media (max-width: 768px) {
  .swp-steps_arrow {
    transform: rotate(90deg);
  }
}
.swp-steps--three .swp-steps_list {
  grid-template-columns: 1fr auto 1fr auto 1fr;
}
@media (max-width: 768px) {
  .swp-steps--three .swp-steps_list {
    grid-template-columns: 1fr;
  }
}
.swp-steps--three .swp-steps_item {
  padding-left: 75px;
  padding-right: 75px;
}
@media (max-width: 768px) {
  .swp-steps--three .swp-steps_item {
    padding-left: 75px;
    padding-right: 75px;
  }
}
.swp-steps--five .swp-steps_list {
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
}
@media (max-width: 768px) {
  .swp-steps--five .swp-steps_list {
    grid-template-columns: 1fr;
  }
}
.swp-steps--five .swp-steps_item {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 768px) {
  .swp-steps--five .swp-steps_item {
    padding-left: 75px;
    padding-right: 75px;
  }
}

.swp-vision_inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}
@media (max-width: 768px) {
  .swp-vision_inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.swp-vision_title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  color: #23262e;
}
@media (max-width: 768px) {
  .swp-vision_title {
    font-size: 22px;
  }
}
.swp-vision_text {
  font-size: 15px;
  line-height: 2.1;
  color: #6e727b;
}

.swp-company-info_table {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid #e4dfd3;
}
.swp-company-info_row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 4px;
  border-bottom: 1px solid #e4dfd3;
}
@media (max-width: 768px) {
  .swp-company-info_row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 4px;
  }
}
.swp-company-info_label {
  font-size: 14px;
  font-weight: 700;
  color: #23262e;
}
.swp-company-info_value {
  font-size: 14px;
  line-height: 1.9;
  color: #3b3f47;
}
.swp-company-info_value a {
  color: #d1453b;
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-all;
}
.swp-company-info_value a:hover {
  opacity: 0.7;
}
.swp-company-info_list {
  display: grid;
  gap: 6px;
  font-size: 14px;
  line-height: 1.9;
  color: #3b3f47;
}
.swp-company-info_list li {
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.swp-company-info_list li::before {
  content: "・";
  color: #d1453b;
}
.swp-company-info_list--links li {
  word-break: break-all;
}
.swp-company-info_list a {
  color: #d1453b;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.swp-company-info_list a:hover {
  opacity: 0.7;
}

.swp-contact-cta {
  background: #23262e;
  padding: 72px 0;
}
@media (max-width: 768px) {
  .swp-contact-cta {
    padding: 52px 0;
  }
}
.swp-contact-cta_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 768px) {
  .swp-contact-cta_inner {
    flex-direction: column;
    text-align: center;
    gap: 26px;
  }
}
.swp-contact-cta_icon {
  display: block;
  width: auto;
  height: 40px;
  object-fit: contain;
  flex: none;
}
.swp-contact-cta_body {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .swp-contact-cta_body {
    flex-direction: column;
    gap: 14px;
  }
}
.swp-contact-cta_title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}
@media (max-width: 768px) {
  .swp-contact-cta_title {
    font-size: 20px;
  }
}
.swp-contact-cta_text {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
}

.swp-service-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 128px;
  display: flex;
  align-items: center;
  background-color: #f4f1e9;
  background-image: url("../images/service-fv.webp");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: auto 100%;
  overflow: hidden;
}
.swp-service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, #f4f1e9 30%, rgba(244, 241, 233, 0.7) 46%, rgba(244, 241, 233, 0) 66%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .swp-service-hero {
    padding-top: 96px;
    align-items: flex-start;
    background-position: center 98%;
    background-size: 180%;
  }
  .swp-service-hero::before {
    background: linear-gradient(to bottom, #f4f1e9 48%, rgba(244, 241, 233, 0.6) 64%, rgba(244, 241, 233, 0.15) 100%);
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .swp-service-hero {
    align-items: flex-start;
    background-position: center bottom;
    background-size: 100%;
  }
}
.swp-service-hero_inner {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .swp-service-hero_inner {
    padding-top: 36px;
    padding-bottom: 260px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .swp-service-hero_inner {
    padding-bottom: 180px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .swp-service-hero_inner {
    padding-bottom: 40px;
  }
}
.swp-service-hero_label {
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #d1453b;
  opacity: 0;
  transform: translateY(18px);
  animation: swpFvLabel 0.9s ease 0.2s forwards;
}
@media (max-width: 768px) {
  .swp-service-hero_label {
    font-size: 20px;
  }
}
.swp-service-hero_title {
  margin-top: 22px;
  font-family: "Noto Serif JP", serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #23262e;
}
@media (max-width: 768px) {
  .swp-service-hero_title {
    font-size: 30px;
    margin-top: 16px;
  }
}
.swp-service-hero_lead {
  margin-top: 26px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 2;
  color: #3b3f47;
}
@media (max-width: 768px) {
  .swp-service-hero_lead {
    font-size: 16px;
    margin-top: 20px;
  }
}

.swp-service-lead {
  padding: 72px 0;
  text-align: center;
  background: #f4f1e9;
}
@media (max-width: 768px) {
  .swp-service-lead {
    padding: 52px 0;
  }
}
.swp-service-lead_rule {
  width: 40px;
  height: 2px;
  margin: 0 auto;
  background: #d1453b;
}
.swp-service-lead_statement {
  margin-top: 28px;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.8;
  color: #23262e;
}
@media (max-width: 768px) {
  .swp-service-lead_statement {
    font-size: 17px;
    margin-top: 22px;
  }
}
.swp-service-lead_text {
  margin-top: 22px;
  max-width: 720px;
  margin-inline: auto;
  font-size: 15px;
  line-height: 2.1;
  color: #6e727b;
}

.swp-service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 32px;
}
@media (max-width: 768px) {
  .swp-service-cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.swp-service-cards_item {
  display: flex;
  flex-direction: column;
}
.swp-service-cards_image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: #e4dfd3;
  box-shadow: 0 24px 60px rgba(35, 38, 46, 0.08);
}
.swp-service-cards_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swp-service-cards_placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #6e727b;
}
.swp-service-cards_body {
  margin-top: 24px;
}
.swp-service-cards_num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #d1453b;
}
.swp-service-cards_num::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 2px;
  background: #d1453b;
}
.swp-service-cards_label {
  display: block;
  margin-top: 10px;
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #6e727b;
}
.swp-service-cards_title {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #23262e;
}
.swp-service-cards_desc {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.9;
  color: #6e727b;
}
.swp-service-cards_checks {
  margin-top: 18px;
}
.swp-service-cards_checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #3b3f47;
}
.swp-service-cards_checks li + li {
  margin-top: 8px;
}
.swp-service-cards_checks li img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: none;
}
.swp-service-cards_check-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: none;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: #d1453b;
  border-radius: 50%;
}
.swp-service-cards_btn {
  margin-top: 24px;
}
.swp-service-cards_empty {
  grid-column: 1/-1;
  text-align: center;
  color: #6e727b;
}

.swp-service-list_note {
  margin-top: 56px;
  text-align: center;
  font-size: 14px;
  color: #6e727b;
}
@media (max-width: 768px) {
  .swp-service-list_note {
    margin-top: 40px;
  }
}

.swp-products-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 128px;
  display: flex;
  align-items: center;
  background-color: #f4f1e9;
  background-image: url("../images/products-fv.webp");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: auto 100%;
  overflow: hidden;
}
.swp-products-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, #f4f1e9 30%, rgba(244, 241, 233, 0.7) 46%, rgba(244, 241, 233, 0) 66%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .swp-products-hero {
    padding-top: 96px;
    align-items: flex-start;
    background-position: center 98%;
    background-size: 180%;
  }
  .swp-products-hero::before {
    background: linear-gradient(to bottom, #f4f1e9 48%, rgba(244, 241, 233, 0.6) 64%, rgba(244, 241, 233, 0.15) 100%);
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .swp-products-hero {
    align-items: flex-start;
    background-position: center bottom;
    background-size: 100%;
  }
}
.swp-products-hero_inner {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .swp-products-hero_inner {
    padding-top: 36px;
    padding-bottom: 260px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .swp-products-hero_inner {
    padding-bottom: 180px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .swp-products-hero_inner {
    padding-bottom: 40px;
  }
}
.swp-products-hero_label {
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #d1453b;
  opacity: 0;
  transform: translateY(18px);
  animation: swpFvLabel 0.9s ease 0.2s forwards;
}
@media (max-width: 768px) {
  .swp-products-hero_label {
    font-size: 20px;
  }
}
.swp-products-hero_title {
  margin-top: 22px;
  font-family: "Noto Serif JP", serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #23262e;
}
@media (max-width: 768px) {
  .swp-products-hero_title {
    font-size: 30px;
    margin-top: 16px;
  }
}
.swp-products-hero_lead {
  margin-top: 26px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 2;
  color: #3b3f47;
}
@media (max-width: 768px) {
  .swp-products-hero_lead {
    font-size: 16px;
    margin-top: 20px;
  }
}

.swp-products-lead {
  padding: 72px 0;
  text-align: center;
  background: #f4f1e9;
}
@media (max-width: 768px) {
  .swp-products-lead {
    padding: 52px 0;
  }
}
.swp-products-lead_rule {
  width: 40px;
  height: 2px;
  margin: 0 auto;
  background: #d1453b;
}
.swp-products-lead_statement {
  margin-top: 28px;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.8;
  color: #23262e;
}
@media (max-width: 768px) {
  .swp-products-lead_statement {
    font-size: 17px;
    margin-top: 22px;
  }
}
.swp-products-lead_text {
  margin-top: 22px;
  max-width: 720px;
  margin-inline: auto;
  font-size: 15px;
  line-height: 2.1;
  color: #6e727b;
}

.swp-product-block_inner {
  text-align: left;
}
.swp-product-block_head {
  max-width: 720px;
}
.swp-product-block_eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}
.swp-product-block_num {
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #d1453b;
}
.swp-product-block_label {
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #d1453b;
}
.swp-product-block_heading {
  margin-top: 14px;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  color: #23262e;
}
@media (max-width: 768px) {
  .swp-product-block_heading {
    font-size: 22px;
  }
}
.swp-product-block_image {
  position: relative;
  margin-top: 48px;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: #e4dfd3;
  box-shadow: 0 24px 60px rgba(35, 38, 46, 0.08);
}
.swp-product-block_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .swp-product-block_image {
    margin-top: 32px;
  }
}
.swp-product-block_placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #6e727b;
}
.swp-product-block_grids {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .swp-product-block_grids {
    margin-top: 40px;
    gap: 32px;
  }
}
.swp-product-block_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
@media (max-width: 768px) {
  .swp-product-block_grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.swp-product-block_col-label {
  display: block;
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #d1453b;
}
.swp-product-block_col-list {
  margin-top: 14px;
}
.swp-product-block_col-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.8;
  color: #3b3f47;
}
.swp-product-block_col-list li + li {
  margin-top: 8px;
}
.swp-product-block_col-list li img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: none;
  margin-top: 1px;
}
.swp-product-block_check-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: none;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: #d1453b;
  border-radius: 50%;
}
.swp-product-block_btn {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .swp-product-block_btn {
    margin-top: 36px;
  }
}

.swp-contact-tabs-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.swp-contact-tabs_radio {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.swp-contact-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 40px;
}

.swp-contact-tabs_label {
  display: block;
  padding: 14px 8px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  color: #6e727b;
  background: #fbf9f4;
  border: 1px solid #e4dfd3;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.swp-contact-tabs_label:hover {
  color: #23262e;
}

#swp-tab-inquiry:checked ~ .swp-contact-tabs label[for=swp-tab-inquiry],
#swp-tab-apply:checked ~ .swp-contact-tabs label[for=swp-tab-apply] {
  color: #ffffff;
  background: #d1453b;
  border-color: #d1453b;
}

.swp-contact-panel {
  display: none;
}

#swp-tab-inquiry:checked ~ .swp-contact-panel--inquiry,
#swp-tab-apply:checked ~ .swp-contact-panel--apply {
  display: block;
}

.swp-contact-intro {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 15px;
  line-height: 2;
  color: #3b3f47;
}

.swp-contact-form {
  max-width: 640px;
  margin: 0 auto;
}
.swp-contact-form_row + .swp-contact-form_row {
  margin-top: 24px;
}
.swp-contact-form_label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #23262e;
}
.swp-contact-form_label.is-required::before, .swp-contact-form_label.is-optional::before {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 3px;
  vertical-align: middle;
}
.swp-contact-form_label.is-required::before {
  content: "必須";
  color: #ffffff;
  background: #d1453b;
}
.swp-contact-form_label.is-optional::before {
  content: "任意";
  color: #6e727b;
  background: #e4dfd3;
}
.swp-contact-form_input, .swp-contact-form_textarea, .swp-contact-form_select {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 14px 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  color: #23262e;
  background: #ffffff;
  border: 1px solid #e4dfd3;
  border-radius: 4px;
  transition: border-color 0.25s ease;
}
.swp-contact-form_input:focus, .swp-contact-form_textarea:focus, .swp-contact-form_select:focus {
  outline: none;
  border-color: #d1453b;
}
.swp-contact-form_textarea {
  resize: vertical;
  min-height: 160px;
}
.swp-contact-form_textarea--short {
  min-height: 100px;
}
.swp-contact-form_select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #6e727b 50%), linear-gradient(135deg, #6e727b 50%, transparent 50%);
  background-position: calc(100% - 22px) center, calc(100% - 17px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.swp-contact-form_check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.8;
  color: #6e727b;
  cursor: pointer;
}
.swp-contact-form_check input {
  flex: none;
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: #d1453b;
  cursor: pointer;
}
.swp-contact-form_hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.swp-contact-form_submit {
  margin-top: 36px;
  text-align: center;
}
.swp-contact-form_btn {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: #d1453b;
  border: none;
  padding: 16px 48px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.swp-contact-form_btn:hover {
  background: #a8352c;
  transform: translateY(-2px);
}

.swp-contact-notice {
  max-width: 640px;
  margin: 0 auto 32px;
  padding: 18px 20px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}
.swp-contact-notice--sent {
  color: #2a6b3f;
  background: rgba(42, 107, 63, 0.08);
  border: 1px solid rgba(42, 107, 63, 0.25);
}
.swp-contact-notice--error {
  color: #a8352c;
  background: rgba(209, 69, 59, 0.08);
  border: 1px solid rgba(209, 69, 59, 0.25);
}

.swp-footer {
  background: #23262e;
  color: rgba(255, 255, 255, 0.82);
}
.swp-footer_inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-top: 72px;
  padding-bottom: 56px;
}
@media (max-width: 768px) {
  .swp-footer_inner {
    flex-direction: column;
    gap: 32px;
    padding-top: 56px;
    padding-bottom: 40px;
  }
}
.swp-footer_brand img {
  height: 115px;
  width: auto;
}
@media (max-width: 768px) {
  .swp-footer_brand img {
    height: 84px;
  }
}
.swp-footer_desc {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
}
.swp-footer_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
}
.swp-footer_nav a {
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.82);
}
.swp-footer_nav a:hover {
  color: #d1453b;
}
@media (max-width: 768px) {
  .swp-footer_nav {
    gap: 14px 26px;
  }
}
.swp-footer_copy {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  padding: 22px 0;
}
.swp-footer_copy small {
  font-family: "Marcellus", "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
}
