:root {
  --key: #004cb3;
  --orange: #ea6200;
  --text: #333333;
  --white: #ffffff;
  --red: #e60012;
  --gray: #fffbf6;
  --light-pink: #ffeee9;
  --pink: #ff7e88;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--gray);
  color: #333333;
  font-family: "Noto Sans JP";
}

header,
main,
footer,
section {
  width: 100%;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--text);
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

ul,
li {
  list-style: none;
}

.md-show {
  display: none;
}

@media (max-width: 768px) {
  .md-show {
    display: block;
  }
  .md-hide {
    display: none;
  }
}

/* ------- Common Components ------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: auto;
}
.section-t {
  display: flex;
  align-items: center;
  gap: 11px;
}
.section-t h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  font-family: "Noto Serif JP";
}
.section-t .dot {
  width: 12px;
  aspect-ratio: 1/1;
  background: linear-gradient(to bottom, #ff6839 0%, #ff9000 100%);
  border-radius: 20px;
}
.vert {
  flex-direction: column;
}
.vert h2 {
  writing-mode: vertical-rl;
}

/* .all-view-btn {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 5px;
  border-bottom: 1.5px solid var(--orange);
}
.all-view-btn p {
  font-size: 20px;
  font-weight: bold;
  color: var(--orange);
  line-height: 1.4;
}
.all-view-btn img {
  width: 15px;
  transition: transform 0.2s ease;
}

.all-view-btn:hover img {
  transform: translateX(20px);
} */

.all-view-btn {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 5px;
  position: relative; /* required for underline */
}

/* text style */
.all-view-btn p {
  font-size: 20px;
  font-weight: bold;
  color: var(--orange);
  line-height: 1.4;
  margin: 0;
}

/* arrow */
.all-view-btn img {
  width: 15px;
  transition: transform 0.2s ease;
}

/* arrow animation (unchanged) */
.all-view-btn:hover img {
  transform: translateX(20px);
}

/* animated underline */
.all-view-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--orange);

  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* wipe from left → right */
.all-view-btn:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}

@media (max-width: 768px) {
  .section-t h2 {
    font-size: 24px;
  }
  .vert {
    flex-direction: row;
  }
  .vert h2 {
    writing-mode: unset;
  }
  .all-view-btn p {
    font-size: 16px;
  }
}

/* ========= ヘッダー ======== */
header {
  background: url("../img/half-pink-bg.png") no-repeat center / cover;
  position: relative;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease,
    transform 0.3s ease;
}

header .header-top-bar {
  width: 100%;
  background-color: var(--gray);
}

header.header-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  background-image: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

header .header-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 5px;
  padding-inline: 32px;
}

header .header-container .logo {
  width: 200px;
  display: flex;
}

header .header-container .nav-bar {
  display: flex;
  align-items: center;
  gap: 47px;
}

header .header-container .nav-bar a {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  text-decoration: none;
}

header .header-container .nav-bar a:not(.cta)::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  opacity: 0;
  transition: opacity 0.2s ease;
  background-color: var(--red);
}

header .header-container .nav-bar a:not(.cta):hover::after {
  opacity: 1;
}

header .header-container .nav-bar .cta {
  padding: 11px 32px;
  border-radius: 100px;
  background-color: var(--red);
  color: var(--white);
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}

header .header-container .nav-bar .cta:hover {
  background-color: var(--white);
  color: var(--red);
  border-color: var(--red);
}

header .header-container .ham-btn {
  display: none;
  width: 46px;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

header .header-container .ham-btn .ham-bar {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

header .header-container .ham-btn .ham-bar span {
  width: 100%;
  height: 2px;
  background-color: var(--red);
  border-radius: 10px;
}

header .header-container .ham-btn p {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: var(--red);
}

header .ham-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: none;
}

header .ham-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

header .ham-list-box {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--light-pink);
  opacity: 0.92;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: none;
}

header .ham-list-box.is-open {
  transform: translateX(0);
}

@media (max-width: 768px) {
  header .ham-overlay {
    display: block;
  }

  header .ham-list-box {
    display: block;
  }
}
header .ham-list-box .ham-list-header {
  display: flex;
  justify-content: end;
  padding-block: 21px 9px;
  padding-inline: 22px;
}
header .ham-list-box .ham-list-header .ham-close-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
header .ham-list-box .ham-list-header .ham-close-btn .close-sign {
  position: relative;
  width: 46px;
  height: fit-content;
  display: flex;
}
header .ham-list-box .ham-list-header .ham-close-btn .close-sign span {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background-color: var(--red);
  rotate: -157.81deg;
}
header
  .ham-list-box
  .ham-list-header
  .ham-close-btn
  .close-sign
  span:nth-of-type(1) {
  rotate: -22.19deg;
}
header .ham-list-box .ham-list-header .ham-close-btn p {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

header .ham-nav {
  width: 100%;
  margin-bottom: 23px;
}
header .ham-nav a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 16px 40px;
  border-bottom: 1px solid var(--red);
}
header .ham-nav a:nth-of-type(1) {
  border-top: 1px solid var(--red);
}
header .ham-nav a p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
header .ham-nav a img {
  width: 15px;
  position: absolute;
  right: 40px;
}

header .ham-list-btm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

header .ham-list-btm .ham-logo {
  display: flex;
  width: 160px;
}

header .ham-list-btm p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 1024px) {
  header .container {
    padding-inline: 30px;
    padding-block: 8px 5px;
  }
  header .header-container .logo {
    width: 170px;
  }
  header .header-container .nav-bar {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  header .header-container {
    padding-inline: 20px;
  }
  header .header-container {
    align-items: end;
  }
  header .header-container .nav-bar {
    display: none;
  }
  header .header-container .ham-btn {
    display: flex;
  }
  header .header-container .logo {
    width: 160px;
  }
}

/* ========= メイン ======== */

main {
  position: relative;
}

.floating-btn {
  position: fixed;
  bottom: 64px;
  right: 0;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 9px;
  background-color: var(--pink);
}

.floating-btn img {
  width: 28px;
}

.floating-btn p {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

/* ------ ファーストビュー ------- */

.fv {
  /* background: url("../img/fv-1.png") no-repeat center / cover; */
  aspect-ratio: 1/0.46;
  max-height: 668px;
  position: relative;
}

.fv .fv-title {
  position: absolute;
  top: 53px;
  left: 130px;
  display: flex;
  gap: 6px;
}
.fv .fv-title h1 {
  font-size: 40px;
  color: var(--white);
  font-family: "Noto Serif JP";
  background: linear-gradient(to bottom, #e60012 0%, #ff6839 100%);
  padding: 20px 10px;
  writing-mode: vertical-rl;
  line-height: 48px;
  height: fit-content;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}
.fv .fv-title h1:nth-of-type(1) {
  margin-top: 22px;
  padding-bottom: 0;
}

.fv .fv-desc {
  position: absolute;
  bottom: 34px;
  right: 56px;
}
.fv .fv-desc p {
  width: fit-content;
  font-size: 28.5px;
  font-family: "Noto Serif JP";
  font-weight: 500;
  background-color: var(--white);
  padding-inline: 12px;
}
.fv .fv-desc p:nth-of-type(1) {
  margin-left: -40px;
  margin-bottom: -1px;
}

.fv-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.fv-slider .fv-slier-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.fv-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1/0.46;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.fv-slider .slide.active {
  opacity: 1;
}

.fv-slider .slide:nth-of-type(1) {
  background: url("../img/fv-1.png") no-repeat center / cover;
}
.fv-slider .slide:nth-of-type(2) {
  background: url("../img/fv-2.png") no-repeat center / cover;
}
.fv-slider .slide:nth-of-type(3) {
  background: url("../img/fv-3.png") no-repeat center / cover;
}
.fv-slider .slide:nth-of-type(4) {
  background: url("../img/fv-4.png") no-repeat center / cover;
}

@media (max-width: 1200px) {
  .fv .fv-title {
    top: 30px;
    left: 100px;
  }
  .fv .fv-title h1 {
    font-size: 40px;
    padding: 20px 0;
  }
}

@media (max-width: 1024px) {
  .fv .fv-title {
    top: 15px;
    left: 70px;
  }
  .fv .fv-title h1 {
    font-size: 32px;
  }
  .fv .fv-desc {
    bottom: 20px;
    right: 25px;
  }
  .fv .fv-desc p {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .fv {
    aspect-ratio: 1/0.705;
  }

  .fv .fv-title {
    left: 20px;
    gap: 3px;
  }
  .fv .fv-title h1 {
    font-size: 22px;
    line-height: 23.9px;
    padding: 10px 4px;
  }
  .fv .fv-title h1:nth-of-type(1) {
    margin-top: 10px;
  }
  .fv .fv-desc {
    right: 0;
  }
  .fv .fv-desc p {
    font-size: 17.48px;
    padding-inline: 8px;
  }
  .fv .fv-desc p:nth-of-type(1) {
    margin-left: -15px;
  }

  .fv-slider .slide {
    aspect-ratio: 1/0.705;
  }

  .floating-btn {
    display: none;
  }
}

/* ------ お知らせ ------- */
.news {
  background: url("../img/half-pink-bg.png") no-repeat center / cover;
  /* height: 413px; */
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 148px;
  padding-block: 64px;
}

.news .news-content {
  width: 100%;
  max-width: 786px;
  padding-block: 64px 72px;
  position: relative;
}

.news .news-content .news-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.news .news-content .news-box .news-item {
  background-color: var(--white);
  padding-block: 12px;
  padding-inline: 20px 76px;
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}

.news .news-content .news-box .news-item .news-context {
  max-width: 583px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news .news-content .news-box .news-item img {
  width: 15px;
  position: absolute;
  right: 36px;
  transition: transform 0.2s ease;
}

.news .news-content .news-box .news-item:hover img {
  transform: translateX(20px);
}

.news .news-content .all-view-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
  transform: none;
}

/* News section scroll animation: title first, then content */
.news .section-t {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.news.in-view .section-t {
  opacity: 1;
  transform: translateY(0);
}

.news .news-content {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
}

.news.in-view .news-content {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .news {
    padding-inline: 20px;
    gap: 70px;
  }
  .news .news-content {
    max-width: 655px;
  }
  .news .news-content .news-box .news-item {
    width: fit-content;
  }
  .news .news-content .news-box .news-item .news-context {
    max-width: 450px;
  }
}

@media (max-width: 768px) {
  .news {
    padding-block: 64px;
    flex-direction: column;
    gap: 20px;
  }
  .news .news-content {
    max-width: 100%;
    padding-block: 0 56px;
  }
  .news .news-content .news-box {
    gap: 4px;
  }
  .news .news-content .news-box .news-item {
    width: 100%;
    flex-direction: column;
    align-items: start;
    gap: 4px;
    font-size: 12px;
    padding-block: 8px;
    padding-inline: 20px 60px;
  }
  .news .news-content .news-box .news-item img {
    right: 20px;
    top: 50%;
  }
  .news .news-content .news-box .news-item .news-context {
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
  }

  .news .news-content .all-view-btn {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ------ Concept ------- */
.concept {
  background-color: rgba(255, 255, 255, 0.9);
}
.concept .concept-top {
  width: 100%;
  display: flex;
}
.concept .concept-top .concept-img {
  width: 50%;
  overflow: hidden;
}

.concept .concept-top .concept-img img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.concept .concept-top .concept-txt {
  width: 50%;
  padding-left: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
.concept .concept-top .concept-txt .concept-context {
  font-size: 16px;
  line-height: 2;
}

/* Concept section scroll animation: section-t then concept-context */
.concept .concept-txt .section-t {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.concept.in-view .concept-txt .section-t {
  opacity: 1;
  transform: translateY(0);
}

.concept .concept-txt .concept-context {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
}

.concept.in-view .concept-txt .concept-context {
  opacity: 1;
  transform: translateY(0);
}

.concept .concept-btm {
  width: 100%;
}

@media (max-width: 1200px) {
  .concept .concept-top .concept-txt {
    padding-left: 60px;
  }
}
@media (max-width: 1024px) {
  .concept .concept-top .concept-txt {
    padding-left: 20px;
  }
  .concept-txt .section-t h2 {
    font-size: 24px;
    line-height: 1.5;
  }
  .concept .concept-top .concept-txt .concept-context {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .concept .concept-top {
    flex-direction: column;
  }
  .concept .concept-top .concept-img,
  .concept .concept-top .concept-txt {
    width: 100%;
  }
  .concept .concept-top .concept-txt {
    padding: 56px 20px;
    gap: 20px;
  }
}

/* ------ 業務内容 ------- */
.business {
  padding-block: 120px;
}
.business .container {
  display: flex;
  justify-content: space-between;
  padding-right: 64px;
}
.business .business-box {
  padding-block: 64px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.business .business-box .business-box-top_txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}
.business .business-box .business-items {
  width: 100%;
  max-width: 940px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 32px;
  column-gap: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.business .business-box .business-items .business-item-img {
  overflow: hidden;
}

.business .business-box .business-items .business-item-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

/* Business items sequential animation */
.business .business-items .business-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.business.in-view .business-items .business-item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.business.in-view .business-items .business-item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.business.in-view .business-items .business-item:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.business.in-view .business-items .business-item:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

/* Business section scroll animation: section-t then business-content */
.business .section-t {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.business.in-view .section-t {
  opacity: 1;
  transform: translateY(0);
}

.business .business-content {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
}

.business.in-view .business-content {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .business .container {
    padding-right: 0;
    padding-inline: 20px;
    gap: 90px;
  }
}
@media (max-width: 1024px) {
  .business .container {
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .business {
    padding-block: 64px;
  }
  .business .container {
    flex-direction: column;
    gap: 20px;
  }
  .business .business-box {
    padding-block: 0 32px;
    gap: 20px;
  }
  .business .business-box .business-box-top_txt {
    font-size: 14px;
    font-weight: 400;
  }
  .business .business-box .business-items {
    row-gap: 4px;
    column-gap: 6px;
    font-size: 12px;
    line-height: 1.5;
  }
  .business .all-view-btn {
    margin: auto;
  }
}

/* ------ 配送について ------- */
.delivery {
  padding-block: 80px 120px;
  background-color: var(--light-pink);
}

.delivery .container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.delivery .delivery-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.delivery .delivery-top .delivery-txt {
  width: 100%;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Delivery section scroll animation: section-t then delivery-contxt and all-view-btn */
.delivery .delivery-txt .section-t {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.delivery.in-view .delivery-txt .section-t {
  opacity: 1;
  transform: translateY(0);
}

.delivery .delivery-txt .delivery-contxt {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
}

.delivery.in-view .delivery-txt .delivery-contxt {
  opacity: 1;
  transform: translateY(0);
}

.delivery .delivery-txt .all-view-btn {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
}

.delivery.in-view .delivery-txt .all-view-btn {
  opacity: 1;
  transform: translateY(0);
}

.delivery .delivery-top .delivery-map {
  width: 50%;
}

.delivery .delivery-flow {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.delivery .delivery-flow-t-box {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.delivery .delivery-flow-t-box::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #e5a890;
  position: absolute;
  left: 0;
  z-index: 1;
}

.delivery .delivery-flow-t-box .delivery-flow-t {
  background-color: var(--light-pink);
  display: flex;
  align-items: center;
  gap: 24px;
  margin: auto;
  position: relative;
  z-index: 2;
  padding-inline: 25px;
}

.delivery .delivery-flow-t-box .delivery-flow-t img {
  width: 45px;
}
.delivery .delivery-flow-t-box .delivery-flow-t p {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
}
.delivery .delivery-flow .delivery-flow-step {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

/* Delivery flow steps: animate when delivery-flow-step itself enters view */
.delivery .delivery-flow-step .step {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.delivery-flow-step.in-view .step:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.delivery-flow-step.in-view .step:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.delivery-flow-step.in-view .step:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.delivery-flow-step.in-view .step:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

.delivery .delivery-flow .delivery-flow-step .step {
  background-color: var(--white);
  width: 100%;
  max-width: 280px;
  padding: 24px 29px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.delivery .delivery-flow .delivery-flow-step .step-img {
  padding-inline: 10px;
}
.delivery .delivery-flow .delivery-flow-step .step-num {
  font-size: 21px;
  font-family: "Noto Serif JP";
  font-weight: bold;
  line-height: 1;
  color: var(--orange);
}
.delivery .delivery-flow .delivery-flow-step .step-name {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
.delivery .delivery-flow .delivery-flow-step .step-desc {
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .delivery {
    padding-inline: 20px;
  }
}
@media (max-width: 768px) {
  .delivery {
    padding: 64px 20px;
  }
  .delivery .delivery-top {
    flex-direction: column;
    gap: 40px;
  }
  .delivery .delivery-top .delivery-txt {
    max-width: 100%;
    gap: 20px;
  }
  .delivery .delivery-top .delivery-map {
    width: 100%;
  }
  .delivery .delivery-contxt {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
  }
  .delivery .delivery-txt .all-view-btn {
    margin-inline: auto;
  }
  .delivery .delivery-flow-t-box .delivery-flow-t {
    gap: 12px;
    padding-inline: 16px;
  }
  .delivery .delivery-flow-t-box .delivery-flow-t p {
    font-size: 20px;
  }
  .delivery .delivery-flow .delivery-flow-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }
  .delivery .delivery-flow .delivery-flow-step .step {
    max-width: unset;
  }
}

@media (max-width: 550px) {
  .delivery .delivery-flow .delivery-flow-step .step {
    padding: 16px;
    gap: 8px;
  }
  .delivery .delivery-flow .delivery-flow-step .step-img {
    max-width: 120px;
    padding: 0;
  }
  .delivery .delivery-flow .delivery-flow-step .step-num {
    font-size: 14px;
  }
  .delivery .delivery-flow .delivery-flow-step .step-name {
    font-size: 16px;
    line-height: normal;
  }
  .delivery .delivery-flow .delivery-flow-step .step-desc {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* ------ 企業理念 ------- */
.philo {
  padding-block: 115px 538px;
  background: url("../img/ceo-bg.png") no-repeat center / cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  position: relative;
}

.philo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  opacity: 0.4;
  z-index: 0;
}

.philo > * {
  position: relative;
  z-index: 1;
}

.philo .philo-box {
  width: 100%;
  max-width: 660px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

/* Philo box scroll animation: philo-title-box then philo-context */
.philo .philo-box .philo-title-box {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.philo.in-view .philo-box .philo-title-box {
  opacity: 1;
  transform: translateY(0);
}

.philo .philo-box .philo-context {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
}

.philo.in-view .philo-box .philo-context {
  opacity: 1;
  transform: translateY(0);
}

.philo .philo-box .philo-title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.philo .philo-box .philo-title-box img {
  width: 60px;
}
.philo .philo-box .philo-title-box h2 {
  font-size: px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.4em;
  font-family: "Noto Serif JP";
}

.philo .philo-box .philo-context {
  font-size: 28px;
  line-height: 1.8;
  font-weight: 600;
  font-family: "Noto Serif JP";
  text-align: center;
}

.philo .ceo-msg {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* CEO message scroll animation: ceo-msg-t then ceo-msg-box */
.philo .ceo-msg .ceo-msg-t {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ceo-msg.in-view .ceo-msg-t {
  opacity: 1;
  transform: translateY(0);
}

.philo .ceo-msg .ceo-msg-box {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
}

.ceo-msg.in-view .ceo-msg-box {
  opacity: 1;
  transform: translateY(0);
}

.philo .ceo-msg .ceo-msg-t {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 31px;
}

.philo .ceo-msg .ceo-msg-t .line {
  width: 100%;
  height: 1px;
  background-color: #cccccc;
}

.philo .ceo-msg .ceo-msg-t p {
  font-size: 32px;
  font-weight: 500;
  font-family: "Noto Serif JP";
  line-height: 1.5;
  white-space: nowrap;
}

.philo .ceo-msg-box {
  width: 100%;
  display: flex;
  align-items: start;
  gap: 80px;
}

.philo .ceo-msg-box .ceo-photo {
  width: 100%;
  max-width: 281px;
}

.philo .ceo-msg-box .ceo-photo .ceo-photo-img {
  overflow: hidden;
}

.philo .ceo-msg-box .ceo-photo .ceo-photo-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.philo .ceo-msg-box .ceo-photo p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.philo .ceo-msg-box .ceo-photo p span {
  font-size: 20px;
  font-weight: 600;
}

.philo .ceo-msg-box .ceo-msg-txt {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .philo {
    padding-inline: 20px;
  }
  .philo .ceo-msg-box {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .philo {
    padding-block: 64px 208px;
  }
  .philo .philo-box .philo-title-box img {
    width: 48px;
  }
  .philo .philo-box {
    gap: 20px;
  }
  .philo .philo-box .philo-context {
    font-size: 14px;
  }
  .philo .ceo-msg-box {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .philo .ceo-msg .ceo-msg-t {
    gap: 21px;
  }
  .philo .ceo-msg .ceo-msg-t p {
    font-size: 24px;
  }
}

@media (max-width: 550px) {
  .philo .ceo-msg-box .ceo-photo {
    max-width: 264px;
  }
  .philo .ceo-photo-img {
    display: flex;
  }
  .philo .ceo-msg-box .ceo-photo p {
    margin-top: 6px;
  }
  .philo .ceo-msg-box .ceo-msg-txt {
    font-size: 14px;
  }
}

/* ------ 会社概要 ------- */
.company {
  position: relative;
}

.company .company-img-wrap {
  opacity: 0;
  transition: opacity 1s ease;
}

.company .company-img-wrap.in-view {
  opacity: 1;
}

.company .company-overview {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  right: 0;
  width: 580px;
  max-width: 100%;
  background-color: var(--white);
  opacity: 0.9;
  padding: 80px 130px 80px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 10;
}

.company .company-overview .company-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.company .company-overview .company-info .info-item {
  display: flex;
  gap: 34px;
  font-size: 16px;
  line-height: 1.6;
}

.company .company-overview .company-info .tel-num {
  font-size: 28px;
  font-weight: 500;
  color: var(--orange);
  line-height: 1;
  font-family: "Rubik";
}

@media (max-width: 1024px) {
  .company .company-overview {
    padding: 40px 70px 40px 40px;
  }
}
@media (max-width: 768px) {
  .company .company-overview {
    position: unset;
    transform: unset;
    width: 100%;
    padding: 56px 20px;
    gap: 20px;
  }
  .company .company-overview .company-info {
    margin-bottom: 20px;
  }
  .company .company-overview .company-info .info-item {
    font-size: 14px;
    line-height: 1.8;
  }
  .company .company-overview .company-info .tel-num {
    font-size: 20px;
    line-height: 1.3;
  }
  .company .all-view-btn {
    margin: auto;
  }
}

/* ------ 採用情報 ------- */
.recruit {
  position: relative;
  display: flex;
  align-items: center;
}

.recruit .recruit-img-wrap {
  opacity: 0;
  transition: opacity 1s ease;
}

.recruit .recruit-img-wrap.in-view {
  opacity: 1;
}

.recruit .recruit-box {
  position: absolute;
  right: 130px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 10;
}

.recruit .recruit-box .recruit-info .recruit-info-tip {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.recruit .recruit-box .recruit-info .recruit-info-tip p {
  padding: 2.5px 18px;
  border: 1px solid var(--orange);
  border-radius: 3px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--orange);
}

.recruit .recruit-box .recruit-info .recruit-info-txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .recruit .recruit-box {
    right: 120px;
  }
}
@media (max-width: 768px) {
  .recruit {
    display: block;
  }
  .recruit .recruit-box {
    position: unset;
    padding: 64px 20px;
    gap: 20px;
  }
  .recruit .recruit-box .recruit-info .recruit-info-tip p {
    font-size: 14px;
    padding: 3.5px 18px;
  }
  .recruit .recruit-box .recruit-info .recruit-info-txt {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
  }
  .recruit .recruit-box .recruit-info {
    margin-bottom: 20px;
  }
  .recruit .recruit-box .all-view-btn {
    margin: auto;
  }
}

/* ========= フッター ======== */
footer .footer-container {
  width: 100%;
  max-width: 760px;
  margin: auto;
  padding-block: 42px 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

footer .footer-container .f-logo {
  width: 195px;
}

footer .footer-container .footer-company-info {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

footer .footer-container .footer-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
}

footer .footer-container .footer-nav a {
  position: relative;
}

footer .footer-container .footer-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  opacity: 0;
  transition: opacity 0.2s ease;
  background-color: var(--red);
}

footer .footer-container .footer-nav a:hover::after {
  opacity: 1;
}

footer .copyright {
  background-color: var(--red);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  padding-block: 15px 30px;
}

@media (max-width: 768px) {
  footer .footer-container {
    width: 100%;
    padding-block: 64px;
  }
  footer .footer-container .f-logo {
    width: 160px;
  }
  footer .footer-container .footer-company-info {
    font-size: 14px;
    font-weight: 400;
  }
  footer .footer-container .footer-nav {
    display: none;
  }
  footer .footer-sp-nav {
    width: 100%;
  }
  footer .footer-sp-nav a {
    display: flex;
    align-items: center;
    position: relative;
    padding: 12px 40px;
    border-bottom: 1px solid #ebebeb;
  }
  footer .footer-sp-nav a:nth-of-type(1) {
    border-top: 1px solid #ebebeb;
  }
  footer .footer-sp-nav a p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
  }
  footer .footer-sp-nav a img {
    width: 15px;
    position: absolute;
    right: 40px;
  }
  footer .copyright {
    padding-block: 16px;
    font-size: 11px;
  }
}

/* ========= 会社案内ページ ======== */

/* パンくずリスト */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0 0 132px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.breadcrumb__link {
  color: var(--red);
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.breadcrumb__separator {
  color: var(--text);
  margin: 0 4px;
}

.breadcrumb__current {
  color: var(--text);
}

/* ページヘッダー */
.page-header {
  position: relative;
  width: 100%;
  height: 318px;
  display: flex;
  align-items: center;
}

.page-header__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.page-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header__title {
  position: relative;
  z-index: 1;
  width: 50%;
  height: 100%;
  background-color: rgba(230, 0, 18, 0.9);
  display: flex;
  align-items: center;
  padding-left: 132px;
}

.page-header__title h1 {
  font-size: 40px;
  font-weight: 700;
  font-family: "Noto Serif JP";
  color: var(--white);
  line-height: 1;
}

/* 会社案内ページコンテナ */
.company-page {
  width: 100%;
  background-color: var(--gray);
  padding-top: 144px;
  padding-bottom: 144px;
}

.company-page__container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 144px;
  padding: 0 20px;
}

/* 企業理念セクション */
.company-philo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  max-width: 660px;
  margin: 0 auto;
}

.company-philo__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.company-philo__title {
  font-size: 40px;
  font-weight: 600;
  font-family: "Noto Serif JP";
  color: var(--text);
  line-height: 1.2;
  letter-spacing: 0.4em;
  text-align: center;
  margin-bottom: 84px;
}

.company-philo__icon {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 20px;
}

.company-philo__icon img {
  width: 100%;
  height: auto;
}

.company-philo__text {
  font-size: 28px;
  font-weight: 600;
  font-family: "Noto Serif JP";
  color: var(--text);
  line-height: 1.8;
  text-align: center;
}

/* 会社概要セクション */
.company-overview {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.company-overview__title {
  background-color: #fff2f2;
  border-left: 8px solid var(--orange);
  padding: 20px 28px;
  display: flex;
  align-items: center;
}

.company-overview__title h2 {
  font-size: 36px;
  font-weight: 600;
  font-family: "Noto Serif JP";
  color: var(--text);
  line-height: 1;
}

.company-overview__table {
  width: 100%;
  border-collapse: collapse;
}

.company-overview__row {
  border-bottom: 2px solid #e5e5e5;
}

.company-overview__row:first-child {
  border-bottom: 2px solid #e5e5e5;
}

.company-overview__label {
  width: 230px;
  padding: 16px 16px 16px 32px;
  border-bottom: 2px solid var(--orange);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  vertical-align: top;
}

.company-overview__value {
  padding: 16px 16px 16px 32px;
  border-bottom: 2px solid #e5e5e5;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  vertical-align: top;
}

.company-overview__row:last-child .company-overview__label,
.company-overview__row:last-child .company-overview__value {
  border-bottom: none;
}

/* 沿革セクション */
.company-history {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.company-history__title {
  background-color: #fff2f2;
  border-left: 8px solid var(--orange);
  padding: 20px 28px;
  display: flex;
  align-items: center;
}

.company-history__title h2 {
  font-size: 36px;
  font-weight: 600;
  font-family: "Noto Serif JP";
  color: var(--text);
  line-height: 1;
}

.company-history__table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}

.company-history__row {
  border-bottom: 2px solid #e5e5e5;
}

.company-history__label {
  width: 230px;
  padding: 16px 16px 16px 32px;
  border-bottom: 2px solid var(--orange);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  vertical-align: top;
}

.company-history__value {
  padding: 16px 16px 16px 32px;
  border-bottom: 2px solid #e5e5e5;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  vertical-align: top;
}

.company-history__row:last-child .company-history__label {
  /* 最終行でも「年」側のオレンジ下線を表示 */
  border-bottom: 2px solid var(--orange);
}

.company-history__row:last-child .company-history__value {
  border-bottom: none;
}

  @media (max-width: 768px) {
  .company-overview__title {
    padding: 16px 16px;
  }
}
/* 社会活動（地域連携）セクション */
.company-activities {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.company-activities__title {
  width: 100%;
  background-color: #fff2f2;
  border-left: 8px solid var(--orange);
  padding: 20px 28px;
  display: flex;
  align-items: center;
}

.company-activities__title h2 {
  font-size: 36px;
  font-weight: 600;
  font-family: "Noto Serif JP";
  color: var(--text);
  line-height: 1;
}

.company-activities__content {
  width: 100%;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.company-activities__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.company-activities__item-img {
  width: 100%;
  height: 254px;
  overflow: hidden;
}

.company-activities__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-activities__item-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  min-height: 83px;
}

/* 交通アクセスセクション */
.company-access {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.company-access__title {
  background-color: #fff2f2;
  border-left: 8px solid var(--orange);
  padding: 20px 28px;
  display: flex;
  align-items: center;
}

.company-access__title h2 {
  font-size: 36px;
  font-weight: 600;
  font-family: "Noto Serif JP";
  color: var(--text);
  line-height: 1;
}

.company-access__content {
  display: flex;
  gap: 165px;
  align-items: flex-start;
}

.company-access__info {
  display: flex;
  flex-direction: column;
  gap: 83px;
}

.company-access__address {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.company-access__address p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
}

.company-access__transport {
  display: flex;
  align-items: center;
  gap: 8px;
}

.company-access__transport-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.company-access__transport p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.7;
}

.company-access__event {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.company-access__event img {
  width: 313px;
  height: 209px;
  object-fit: cover;
}

.company-access__event p {
  font-size: 12px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
}

.company-access__map {
  width: 698px;
  height: 380px;
  overflow: hidden;
}

.company-access__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .breadcrumb {
    padding-left: 20px;
  }

  .page-header__title h1 {
    font-size: 32px;
  }

  .company-page__container {
    gap: 80px;
  }

  .company-philo {
    gap: 40px;
  }

  .company-philo__title {
    font-size: 32px;
    margin-bottom: 60px;
  }

  .company-philo__text {
    font-size: 24px;
  }

  .company-access__content {
    gap: 40px;
  }

  .company-access__map {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .breadcrumb {
    padding: 20px;
    font-size: 11px;
  }

  .page-header {
    height: auto;
    flex-direction: column;
  }

  .page-header__bg {
    position: relative;
    width: 100%;
    height: 200px;
  }

  .page-header__title {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  .page-header__title h1 {
    font-size: 24px;
  }

  .company-page {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .company-page__container {
    gap: 56px;
    padding: 0 20px;
  }

  .company-philo {
    gap: 32px;
  }

  .company-philo__title {
    font-size: 24px;
    margin-bottom: 40px;
    letter-spacing: 0.2em;
  }

  .company-philo__icon {
    width: 48px;
    height: 48px;
  }

  .company-philo__text {
    font-size: 16px;
  }

  .company-overview,
  .company-history,
  .company-activities,
  .company-access {
    gap: 20px;
  }

  .company-overview__title h2,
  .company-history__title h2,
  .company-activities__title h2,
  .company-access__title h2 {
    font-size: 24px;
  }

  .company-overview__table,
  .company-history__table {
    font-size: 14px;
  }

  .company-overview__label,
  .company-history__label {
    width: 120px;
    padding: 12px 8px 12px 16px;
    font-size: 14px;
  }

  .company-overview__value,
  .company-history__value {
    padding: 12px 8px 12px 16px;
    font-size: 14px;
  }

  .company-activities__content {
    flex-direction: column;
    gap: 20px;
  }

  .company-activities__item-img {
    height: 200px;
  }

  .company-activities__item-text {
    font-size: 14px;
    min-height: auto;
  }

  .company-access__content {
    flex-direction: column;
    gap: 40px;
  }

  .company-access__info {
    gap: 40px;
  }

  .company-access__event img {
    width: 100%;
    max-width: 313px;
  }

  .company-access__map {
    width: 100%;
    height: 250px;
  }
}

/* ========= 事業内容ページ ======== */

/* 事業内容ページコンテナ */
.service-page {
  width: 100%;
  background-color: var(--gray);
  padding-top: 120px;
  padding-bottom: 120px;
}

.service-page__container {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding: 0 20px;
}

/* 紹介セクション */
.service-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.service-intro__title {
  font-size: 32px;
  font-weight: 500;
  font-family: "Noto Serif JP";
  color: var(--text);
  line-height: 1.7;
}

.service-intro__text {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  max-width: 572px;
}

/* 主な業務内容セクション */
.service-contents {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-contents__title {
  background-color: #fff2f2;
  border-left: 8px solid var(--orange);
  padding: 20px 28px;
  display: flex;
  align-items: center;
}

.service-contents__title h2 {
  font-size: 36px;
  font-weight: 600;
  font-family: "Noto Serif JP";
  color: var(--text);
  line-height: 1;
}

.service-contents__list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* 業務内容アイテム */
.service-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  padding-top: 24px;
}

.service-content--reverse {
  flex-direction: row-reverse;
}

.service-content__text {
  flex: 1;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-content__heading {
  font-size: 32px;
  font-weight: 500;
  color: var(--orange);
  line-height: 1.7;
}

.service-content__desc {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-content__desc-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-content__dot {
  width: 12px;
  height: 12px;
  background-color: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-content__desc-item p {
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
}

.service-content__items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-content__items-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
}

.service-content__items-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
}

.service-content__img {
  flex: 1;
  max-width: 446px;
  height: 298px;
  overflow: hidden;
}

.service-content__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content__divider {
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
  margin: 0;
}

/* 配送についてセクション */
.service-delivery {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-delivery__title {
  background-color: #fff2f2;
  border-left: 8px solid var(--orange);
  padding: 20px 28px;
  display: flex;
  align-items: center;
}

.service-delivery__title h2 {
  font-size: 36px;
  font-weight: 600;
  font-family: "Noto Serif JP";
  color: var(--text);
  line-height: 1;
}

.service-delivery__content {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* 配送紹介 */
.service-delivery__intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.service-delivery__intro-text {
  flex: 1;
  max-width: 572px;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-delivery__intro-title {
  font-size: 32px;
  font-weight: 500;
  font-family: "Noto Serif JP";
  color: var(--text);
  line-height: 1.7;
}

.service-delivery__intro-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
}

.service-delivery__intro-img {
  flex: 1;
  max-width: 524px;
  height: 341px;
  overflow: hidden;
}

.service-delivery__intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 配送の流れ */
.service-delivery__flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
}

.service-delivery__flow-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.service-delivery__flow-title-line {
  flex: 1;
  height: 2px;
  background-color: #e5a890;
}

.service-delivery__flow-title-content {
  display: flex;
  align-items: center;
  gap: 24px;
  background-color: var(--gray);
  padding: 0 25px;
  position: relative;
  z-index: 1;
}

.service-delivery__flow-title-content img {
  width: 45px;
  height: 31px;
}

.service-delivery__flow-title-content p {
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

.service-delivery__flow-steps {
  display: flex;
  gap: 18px;
  width: 100%;
  justify-content:flex-start;
  flex-wrap: wrap;
}

.service-delivery__flow-step {
  flex: 1;
  max-width: 281px;
  background-color: var(--white);
  padding: 24px 29px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.service-delivery__flow-step-img {
  width: 202px;
  height: 202px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-delivery__flow-step-img img {
  width: 100%;
  height: auto;
  max-width: 182px;
}

.service-delivery__flow-step-num {
  font-size: 21px;
  font-weight: 700;
  font-family: "Noto Serif JP";
  color: var(--orange);
  line-height: 1;
}

.service-delivery__flow-step-name {
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}

.service-delivery__flow-step-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
  text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .service-page__container {
    gap: 80px;
  }

  .service-content {
    gap: 40px;
  }

  .service-content__heading {
    font-size: 28px;
  }

  .service-delivery__intro {
    gap: 30px;
  }

  .service-delivery__intro-img {
    max-width: 400px;
    height: 260px;
  }
}

@media (max-width: 768px) {
  .service-page {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .service-page__container {
    gap: 56px;
    padding: 0 20px;
  }

  .service-intro {
    gap: 16px;
  }

  .service-intro__title {
    font-size: 24px;
  }

  .service-intro__text {
    font-size: 14px;
  }

  .service-contents,
  .service-delivery {
    gap: 20px;
  }

  .service-contents__title h2,
  .service-delivery__title h2 {
    font-size: 24px;
  }

  .service-contents__list {
    gap: 40px;
  }

  .service-content {
    flex-direction: column;
    gap: 24px;
    padding-top: 0;
  }

  .service-content--reverse {
    flex-direction: column;
  }

  .service-content__text {
    gap: 20px;
  }

  .service-content__heading {
    font-size: 24px;
  }

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

  .service-content__items-title,
  .service-content__items-text {
    font-size: 14px;
  }

  .service-content__img {
    max-width: 100%;
    height: 200px;
  }

  .service-content__divider {
    margin: 0;
  }

  .service-delivery__content {
    gap: 40px;
  }

  .service-delivery__intro {
    flex-direction: column;
    gap: 24px;
  }

  .service-delivery__intro-text {
    padding-top: 0;
    max-width: 100%;
  }

  .service-delivery__intro-title {
    font-size: 24px;
    text-align: left;
  }

  .service-delivery__intro-desc {
    font-size: 14px;
  }

  .service-delivery__intro-img {
    max-width: 100%;
    height: 200px;
  }

  .service-delivery__flow-title-content {
    gap: 12px;
    padding: 0 16px;
  }

  .service-delivery__flow-title-content img {
    width: 32px;
    height: 22px;
  }

  .service-delivery__flow-title-content p {
    font-size: 20px;
  }

  .service-delivery__flow-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .service-delivery__flow-step {
    max-width: 100%;
    padding: 16px;
    gap: 8px;
  }

  .service-delivery__flow-step-img {
    width: 120px;
    height: 120px;
    padding: 0;
    max-width: 120px;
  }

  .service-delivery__flow-step-img img {
    max-width: 100px;
  }

  .service-delivery__flow-step-num {
    font-size: 14px;
  }

  .service-delivery__flow-step-name {
    font-size: 16px;
  }

  .service-delivery__flow-step-desc {
    font-size: 12px;
    line-height: 1.5;
  }
}

@media (max-width: 550px) {
  .service-delivery__flow-steps {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========= 採用ページ ======== */

/* 採用ページコンテナ */
.recruit-page {
  width: 100%;
  background-color: var(--gray);
  padding-top: 120px;
  padding-bottom: 120px;
}

.recruit-page__container {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding: 0 20px;
}

/* 採用についてセクション */
.recruit-about {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.recruit-about__title {
  background-color: #fff2f2;
  border-left: 8px solid var(--orange);
  padding: 20px 28px;
  display: flex;
  align-items: center;
}

.recruit-about__title h2 {
  font-size: 36px;
  font-weight: 600;
  font-family: "Noto Serif JP";
  color: var(--text);
  line-height: 1;
}

.recruit-about__content {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.recruit-about__text {
  flex: 1;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.recruit-about__intro {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
}

.recruit-about__section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recruit-about__section-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.7;
}

.recruit-about__section-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
}

.recruit-about__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.recruit-about__list li {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0;
  position: relative;
  padding-left: 22px; /* 「・」の分の余白 */
}

.recruit-about__list li:last-child {
  margin-bottom: 0;
}

.recruit-about__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0.1em;
}

.recruit-about__img {
  flex: 1;
  max-width: 420px;
  height: 314px;
  overflow: hidden;
}

.recruit-about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* どのような人が働いているかセクション */
.recruit-staff {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.recruit-staff__title {
  background-color: #fff2f2;
  border-left: 8px solid var(--orange);
  padding: 20px 28px;
  display: flex;
  align-items: center;
}

.recruit-staff__title h2 {
  font-size: 36px;
  font-weight: 600;
  font-family: "Noto Serif JP";
  color: var(--text);
  line-height: 1;
}

.recruit-staff__list {
  display: flex;
  gap: 23px;
  align-items: flex-start;
}

.recruit-staff__item {
  flex: 1;
  background-color: var(--white);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.04);
}

.recruit-staff__item-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 4px;
}

.recruit-staff__item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-staff__item-name {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  text-align: center;
}

.recruit-staff__item-role {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.7;
  margin-top: 8px;
}

.recruit-staff__item-desc {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  margin-top: 8px;
  text-align: left;
  width: 100%;
}

/* 1日のスタッフの流れセクション */
.recruit-flow {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.recruit-flow__title {
  background-color: #fff2f2;
  border-left: 8px solid var(--orange);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  min-height: 92px;
}

.recruit-flow__title h2 {
  font-size: 36px;
  font-weight: 600;
  font-family: "Noto Serif JP";
  color: var(--text);
  line-height: 1;
}

.recruit-flow__timeline {
  background-color: var(--white);
  padding: 64px;
  display: flex;
  gap: 103px;
  align-items: flex-start;
  position: relative;
}

.recruit-flow__timeline::before {
  content: "";
  position: absolute;
  top: 94px;
  left: 94px;
  right: 94px;
  height: 2px;
  background-color: #e5e5e5;
  z-index: 0;
}

.recruit-flow__timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.recruit-flow__timeline-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.recruit-flow__timeline-time {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.7;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.recruit-flow__timeline-label {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  line-height: 24px;
  text-align: center;
  writing-mode: vertical-rl;
  white-space: nowrap;
}

/* 福利厚生・その他セクション */
.recruit-welfare {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.recruit-welfare__title {
  background-color: #fff2f2;
  border-left: 8px solid var(--orange);
  padding: 20px 28px;
  display: flex;
  align-items: center;
}

.recruit-welfare__title h2 {
  font-size: 36px;
  font-weight: 600;
  font-family: "Noto Serif JP";
  color: var(--text);
  line-height: 1;
}

.recruit-welfare__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recruit-welfare__section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recruit-welfare__section-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.7;
}

.recruit-welfare__section-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
}

.recruit-welfare__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.recruit-welfare__list li {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0;
  position: relative;
  padding-left: 22px; /* 「・」の分の余白 */
}

.recruit-welfare__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--text);
}

.recruit-welfare__list li:last-child {
  margin-bottom: 0;
}

/* 募集要項セクション */
.recruit-requirements {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.recruit-requirements__title {
  background-color: #fff2f2;
  border-left: 8px solid var(--orange);
  padding: 20px 28px;
  display: flex;
  align-items: center;
}

.recruit-requirements__title h2 {
  font-size: 36px;
  font-weight: 600;
  font-family: "Noto Serif JP";
  color: var(--text);
  line-height: 1;
}

.recruit-requirements__table {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  border-collapse: collapse;
}

.recruit-requirements__row {
  border-bottom: 2px solid #e5e5e5;
}

.recruit-requirements__label {
  width: 230px;
  padding: 16px 16px 16px 32px;
  border-bottom: 2px solid var(--orange);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  vertical-align: top;
}

.recruit-requirements__value {
  padding: 16px 16px 16px 32px;
  border-bottom: 2px solid #e5e5e5;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  vertical-align: top;
}

.recruit-requirements__row:last-child .recruit-requirements__label,
.recruit-requirements__row:last-child .recruit-requirements__value {
  border-bottom: none;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .recruit-page__container {
    gap: 80px;
  }

  .recruit-about__content {
    gap: 40px;
  }

  .recruit-about__img {
    max-width: 350px;
    height: 260px;
  }

  .recruit-staff__list {
    gap: 20px;
  }

  .recruit-flow__timeline {
    gap: 60px;
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .recruit-page {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .recruit-page__container {
    gap: 56px;
    padding: 0 20px;
  }

  .recruit-about,
  .recruit-staff,
  .recruit-flow,
  .recruit-welfare,
  .recruit-requirements {
    gap: 20px;
  }

  .recruit-about__title h2,
  .recruit-staff__title h2,
  .recruit-flow__title h2,
  .recruit-welfare__title h2,
  .recruit-requirements__title h2 {
    font-size: 24px;
  }

  .recruit-about__content {
    flex-direction: column;
    gap: 24px;
  }

  .recruit-about__text {
    max-width: 100%;
  }

  .recruit-about__intro,
  .recruit-about__section-text,
  .recruit-about__list li {
    font-size: 14px;
  }

  .recruit-about__section-title {
    font-size: 18px;
  }

  .recruit-about__img {
    max-width: 100%;
    height: 200px;
  }

  .recruit-staff__list {
    flex-direction: column;
    gap: 20px;
  }

  .recruit-staff__item {
    width: 100%;
  }

  .recruit-flow__timeline {
    flex-direction: column;
    gap: 20px;
    padding: 24px 20px;
  }

  .recruit-flow__timeline::before {
    display: block;
    top: 54px;
    bottom: 54px;
    left: 50px;
    right: auto;
    width: 2px;
    height: auto;
    background-color: #e5e5e5;
  }

  .recruit-flow__timeline-item {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .recruit-flow__timeline-circle {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }

  .recruit-flow__timeline-time {
    font-size: 18px;
  }

  .recruit-flow__timeline-label {
    writing-mode: horizontal-tb;
    white-space: normal;
    text-align: left;
    flex: 1;
    font-size: 14px;
    line-height: 1.7;
  }

  .recruit-welfare__section-title {
    font-size: 18px;
  }

  .recruit-welfare__section-text,
  .recruit-welfare__list li {
    font-size: 14px;
  }

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

  .recruit-requirements__label {
    width: 120px;
    padding: 12px 8px 12px 16px;
    font-size: 14px;
  }

  .recruit-requirements__value {
    padding: 12px 8px 12px 16px;
    font-size: 14px;
  }
}

/* ========= 個人情報保護方針ページ ======== */
.privacy-page {
  width: 100%;
  background-color: var(--gray);
  padding-top: 120px;
  padding-bottom: 120px;
}

.privacy-page__container {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 20px;
}

.privacy-page__content {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.9;
}

.privacy-page__content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.privacy-page__content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.privacy-page__content p {
  margin-bottom: 14px;
}

.privacy-page__bullet-title {
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 8px;
}

.privacy-page__dot-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 6px 0;
}

.privacy-page__dot-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}

.privacy-page__dot-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--text);
}

@media (max-width: 768px) {
  .privacy-page {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .privacy-page__content {
    font-size: 14px;
  }

  .privacy-page__content h2 {
    font-size: 18px;
    margin-top: 24px;
  }

  .privacy-page__content h3 {
    font-size: 16px;
  }
}

/* ========= お問い合わせページ ======== */

/* お問い合わせページコンテナ */
.contact-page {
  width: 100%;
  background-color: var(--gray);
  padding-top: 120px;
  padding-bottom: 120px;
}

.contact-page__container {
  width: 100%;
  max-width: 1175px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding: 0 20px;
}

.contact-page__intro {
  font-size: 16px;
  font-weight: 400;
  color: #444;
  line-height: 1.6;
  max-width: 1175px;
}

.contact-page__privacy-link {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.contact-page__form {
  width: 100%;
}

/* Contact Form 7 テーブル形式のスタイル */
.contact-form-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #ccc;
}

.contact-form-table__row {
  border-bottom: 1px solid #ccc;
}

.contact-form-table__label {
  width: 230px;
  background-color: #efefee;
  padding: 24px 16px 24px 32px;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
  vertical-align: middle;
}

.contact-form-table__field {
  background-color: var(--white);
  padding: 24px 16px 24px 32px;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
}

.contact-form-table__input {
  width: 400px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  background-color: var(--white);
}

.contact-form-table__input::placeholder {
  color: #ccc;
}

.contact-form-table__input--postal {
  width: 150px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  background-color: var(--white);
}

.contact-form-table__textarea {
  width: 671px;
  height: 200px;
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  background-color: var(--white);
  resize: vertical;
  font-family: "Noto Sans JP", sans-serif;
}

.contact-form-table__textarea::placeholder {
  color: #ccc;
}

.contact-form-table__address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form-table__postal {
  display: flex;
  align-items: center;
  gap: 74px;
}

.contact-form-table__postal span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  white-space: nowrap;
}

.contact-form-table__radio-group {
  display: flex;
  gap: 31px;
  align-items: center;
}

.contact-form-table__radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
  cursor: pointer;
}

.contact-form-table__radio-group input[type="radio"] {
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  background-color: var(--white);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
}

.contact-form-table__radio-group input[type="radio"]:checked {
  background-color: var(--orange);
  border-color: var(--orange);
}

.contact-form-table__radio-group input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: var(--white);
  border-radius: 50%;
}

/* エラーメッセージのスタイル */
.wpcf7-not-valid-tip {
  font-size: 14px;
  color: var(--red);
  margin-top: 4px;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
  background-color: #fff2f2;
  border: 1px solid var(--red);
  color: var(--red);
  padding: 12px;
  margin: 20px 0;
  border-radius: 4px;
}

.wpcf7-mail-sent-ok {
  background-color: #f0f9f0;
  border: 1px solid #4caf50;
  color: #2e7d32;
  padding: 12px;
  margin: 20px 0;
  border-radius: 4px;
}

/* 送信ボタン */
.contact-form-submit {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.contact-form-submit__btn {
  width: 340px;
  height: 58px;
  background-color: #e1881f;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  border: none;
  border-radius: 0;
  cursor: pointer;
  box-shadow: 0px 2px 2px 0px rgba(97, 97, 97, 0.25);
  transition: background-color 0.3s ease;
}

.contact-form-submit__btn:hover {
  background-color: #d17a1a;
}

.contact-form-submit__btn:active {
  transform: translateY(1px);
  box-shadow: 0px 1px 1px 0px rgba(97, 97, 97, 0.25);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .contact-page__container {
    gap: 80px;
  }

  .contact-form-table__input {
    width: 100%;
    max-width: 400px;
  }

  .contact-form-table__textarea {
    width: 100%;
    max-width: 671px;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .contact-page__container {
    gap: 40px;
    padding: 0 20px;
  }

  .contact-page__intro {
    font-size: 14px;
  }

  .contact-form-table {
    display: block;
  }

  .contact-form-table__row {
    display: block;
    border-bottom: 1px solid #ccc;
  }

  .contact-form-table__label {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: #efefee;
    border-bottom: none;
    font-size: 14px;
  }

  .contact-form-table__field {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: var(--white);
  }

  .contact-form-table__input,
  .contact-form-table__input--postal {
    width: 100%;
    max-width: 100%;
  }

  .contact-form-table__textarea {
    width: 100%;
    max-width: 100%;
  }

  .contact-form-table__postal {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .contact-form-table__postal span {
    font-size: 14px;
  }

  .contact-form-table__radio-group {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .contact-form-submit__btn {
    width: 100%;
    max-width: 340px;
    height: 50px;
    font-size: 18px;
  }
}

/* ========= お知らせ一覧ページ ======== */

/* お知らせ一覧ページコンテナ */
.news-archive-page {
  width: 100%;
  background-color: var(--gray);
  padding-top: 120px;
  padding-bottom: 120px;
}

.news-archive-page__container {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 0 20px;
}

.news-archive-page__title {
  background-color: #fff2f2;
  border-left: 8px solid var(--orange);
  padding: 20px 28px;
  display: flex;
  align-items: center;
}

.news-archive-page__title h2 {
  font-size: 36px;
  font-weight: 600;
  font-family: "Noto Serif JP";
  color: var(--text);
  line-height: 1;
}

.news-archive-page__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px 21px;
  width: 100%;
}

/* お知らせアイテム */
.news-archive-item {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  overflow: hidden;
}

.news-archive-item__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  transition: opacity 0.3s ease;
}

.news-archive-item__link:hover {
  opacity: 0.8;
}

.news-archive-item__img {
  width: 100%;
  aspect-ratio: 376 / 249;
  overflow: hidden;
  background-color: #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.news-archive-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-archive-item__content {
  padding: 16px 20px 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 150px;
}

.news-archive-item__date {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}

.news-archive-item__title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.news-archive-item__title {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-archive-item__arrow {
  width: 15px;
  height: 9px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.news-archive-item__link:hover .news-archive-item__arrow {
  transform: translateX(5px);
}

.news-archive-page__no-posts {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 16px;
  color: var(--text);
  padding: 40px 0;
}

/* ページネーション */
.news-archive-page__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.news-archive-page__pagination .page-numbers {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-archive-page__pagination .page-numbers li {
  margin: 0;
  padding: 0;
}

.news-archive-page__pagination .page-numbers a,
.news-archive-page__pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  border-radius: 23px;
  transition: all 0.3s ease;
}

.news-archive-page__pagination .page-numbers .current {
  background-color: var(--red);
  color: var(--white);
}

.news-archive-page__pagination .page-numbers a:hover {
  background-color: var(--red);
  color: var(--white);
}

.news-archive-page__pagination .page-numbers .prev,
.news-archive-page__pagination .page-numbers .next {
  font-size: 18px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .news-archive-page__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .news-archive-page__container {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .news-archive-page {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .news-archive-page__container {
    gap: 40px;
    padding: 0 20px;
  }

  .news-archive-page__title h2 {
    font-size: 24px;
  }

  .news-archive-page__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-archive-item__content {
    min-height: auto;
    padding: 12px 16px;
  }

  .news-archive-item__date {
    font-size: 12px;
  }

  .news-archive-item__title {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }

  .news-archive-page__pagination {
    gap: 16px;
  }

  .news-archive-page__pagination .page-numbers {
    gap: 16px;
  }

  .news-archive-page__pagination .page-numbers a,
  .news-archive-page__pagination .page-numbers span {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* ========= お知らせ詳細ページ ======== */

.news-single-page {
  width: 100%;
  background-color: var(--gray);
  padding-top: 120px;
  padding-bottom: 120px;
}

.news-single-page__container {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto;
  padding: 0 20px;
}

.news-single-article {
  background-color: var(--white);
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.news-single-article__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-single-article__date {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}

.news-single-article__title {
  font-size: 36px;
  font-weight: 600;
  font-family: "Noto Serif JP";
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

.news-single-article__thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-single-article__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-single-article__content {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.8;
}

.news-single-article__content p {
  margin: 0 0 24px 0;
}

.news-single-article__content h2 {
  font-size: 28px;
  font-weight: 600;
  font-family: "Noto Serif JP";
  color: var(--text);
  line-height: 1.7;
  margin: 40px 0 24px 0;
}

.news-single-article__content h3 {
  font-size: 24px;
  font-weight: 600;
  font-family: "Noto Serif JP";
  color: var(--text);
  line-height: 1.7;
  margin: 32px 0 20px 0;
}

.news-single-article__content h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.7;
  margin: 28px 0 16px 0;
}

.news-single-article__content ul,
.news-single-article__content ol {
  margin: 24px 0;
  padding-left: 32px;
}

.news-single-article__content li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.news-single-article__content img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
}

.news-single-article__content a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.news-single-article__content a:hover {
  opacity: 0.8;
}

.news-single-article__content blockquote {
  border-left: 4px solid var(--orange);
  padding-left: 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text);
}

.news-single-article__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.news-single-article__content table th,
.news-single-article__content table td {
  padding: 12px;
  border: 1px solid #e5e5e5;
  text-align: left;
}

.news-single-article__content table th {
  background-color: #f5f5f5;
  font-weight: 600;
}

/* 前後の記事ナビゲーション */
.news-single-navigation {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.news-single-navigation__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.news-single-navigation__link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background-color: var(--white);
  text-decoration: none;
  color: var(--text);
  transition: opacity 0.3s ease;
  border: 1px solid #e5e5e5;
}

.news-single-navigation__link:hover {
  opacity: 0.8;
  border-color: var(--orange);
}

.news-single-navigation__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--orange);
  line-height: 1.5;
}

.news-single-navigation__title {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-single-navigation__back {
  display: flex;
  justify-content: center;
}

.news-single-navigation__back-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: var(--white);
  color: var(--orange);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid var(--orange);
  transition: all 0.3s ease;
}

.news-single-navigation__back-link:hover {
  background-color: var(--orange);
  color: var(--white);
}

.news-single-navigation__back-link img {
  width: 15px;
  height: 9px;
  transition: transform 0.3s ease;
}

.news-single-navigation__back-link:hover img {
  transform: translateX(5px);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .news-single-article {
    padding: 60px 60px;
  }

  .news-single-article__title {
    font-size: 32px;
  }

  .news-single-navigation__links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .news-single-page {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .news-single-page__container {
    padding: 0 20px;
  }

  .news-single-article {
    padding: 40px 20px;
    gap: 32px;
  }

  .news-single-article__header {
    gap: 12px;
  }

  .news-single-article__date {
    font-size: 14px;
  }

  .news-single-article__title {
    font-size: 24px;
  }

  .news-single-article__content {
    font-size: 14px;
  }

  .news-single-article__content h2 {
    font-size: 22px;
    margin: 32px 0 20px 0;
  }

  .news-single-article__content h3 {
    font-size: 20px;
    margin: 28px 0 16px 0;
  }

  .news-single-article__content h4 {
    font-size: 18px;
    margin: 24px 0 12px 0;
  }

  .news-single-article__content ul,
  .news-single-article__content ol {
    padding-left: 24px;
  }

  .news-single-navigation {
    margin-top: 60px;
    gap: 32px;
  }

  .news-single-navigation__link {
    padding: 20px;
  }

  .news-single-navigation__title {
    font-size: 14px;
  }

  .news-single-navigation__back-link {
    padding: 14px 24px;
    font-size: 14px;
  }
}