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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #4c4948;
  background-color: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

@media screen and (min-width: 1280px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.c-btn:hover {
  opacity: 0.85;
}
.c-btn--primary {
  background-color: #ed7a25;
  color: #fff;
}
.c-btn--green {
  background-color: #4a8a4a;
  color: #fff;
}
.c-btn--outline {
  background-color: transparent;
  color: #ed7a25;
  border: 2px solid #ed7a25;
}
.c-btn--outline:hover {
  background-color: #ed7a25;
  color: #fff;
  opacity: 1;
}
.c-btn--lg {
  padding: 16px 40px;
  font-size: 16px;
}

.c-breadcrumb {
  padding: 12px 0;
}
.c-breadcrumb__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media screen and (min-width: 1280px) {
  .c-breadcrumb__inner {
    padding-inline: 0;
  }
}
.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  color: #585666;
}
.c-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "›";
  color: #999;
}
.c-breadcrumb__link {
  color: #585666;
  transition: color 0.2s ease;
}
.c-breadcrumb__link:hover {
  color: #ed7a25;
}
.c-breadcrumb__current {
  color: #585666;
}

.c-news-card {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  align-items: start;
  column-gap: 12px;
  row-gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid #dddddd;
}
.c-news-card:first-child {
  border-top: 1px solid #dddddd;
}
.c-news-card__date {
  grid-column: 1;
  font-size: 14px;
  color: #666;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-news-card__date {
    font-size: var(--font-size-small, 16px);
  }
}
.c-news-card__new {
  grid-column: 2;
  display: inline-block;
  padding: 2px 8px;
  background-color: #ed7a25;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 2px;
  white-space: nowrap;
}
.c-news-card__cat {
  grid-column: 3;
  display: inline-block;
  padding: 2px 10px;
  background-color: #ed7a25;
  color: #fff;
  font-size: 11px;
  border-radius: 2px;
  white-space: nowrap;
}
.c-news-card__title {
  grid-column: 1/-1;
  font-size: clamp(17px, 0.39vw + 14px, 19px);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-news-card__title {
    font-size: var(--font-size-body-sp, 19px);
  }
}
.c-news-card__title a {
  text-decoration: none;
  text-decoration-color: transparent;
  text-decoration-thickness: var(--link-underline-thickness, 2px);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.c-news-card__title a:hover, .c-news-card__title a:focus-visible {
  color: #ed7a25;
  text-decoration-line: underline;
  text-decoration-color: var(--link-underline-color, #ed7a25);
}
.c-news-card__title a:focus-visible {
  outline: 2px solid #ed7a25;
  outline-offset: 2px;
}
.c-news-card__summary {
  grid-column: 1/-1;
  font-size: var(--font-size-small);
  line-height: 1.7;
  color: var(--color-muted);
}
@media screen and (max-width: 767px) {
  .c-news-card__summary {
    font-size: var(--font-size-sm);
  }
}

.c-accordion {
  border-top: 1px solid #dddddd;
}
.c-accordion__item {
  border-bottom: 1px solid #dddddd;
}
.c-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.c-accordion__trigger:hover {
  background-color: #f5f5f5;
}
.c-accordion__trigger[aria-expanded=true] {
  color: #ed7a25;
}
.c-accordion__trigger[aria-expanded=true] .c-accordion__icon::after {
  transform: rotate(0deg);
}
.c-accordion__prefix {
  color: #ed7a25;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.c-accordion__question {
  flex: 1;
}
.c-accordion__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.c-accordion__icon::before, .c-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #ed7a25;
  border-radius: 1px;
}
.c-accordion__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.c-accordion__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.25s ease;
}
.c-accordion__body {
  overflow: hidden;
  transition: height 0.3s ease;
}
.c-accordion__body[hidden] {
  display: block;
  height: 0;
}
.c-accordion__answer {
  display: flex;
  gap: 16px;
  padding: 16px 24px 24px;
  background-color: #f5f5f5;
  font-size: 14px;
  line-height: 1.8;
}
.c-accordion__answer-prefix {
  color: #4a8a4a;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.c-accordion__answer-text {
  flex: 1;
}
.c-accordion__answer-text p + p {
  margin-top: 1em;
}

.l-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 200;
  opacity: 1;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  pointer-events: none;
}
.l-mega-menu::before {
  content: "";
  position: absolute;
  top: -20px;
  left: var(--mega-menu-arrow-left, 47%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 23px solid #e6e6e6;
}
.l-mega-menu::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}
.l-mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.l-mega-menu__panel {
  width: 100%;
  overflow-x: hidden;
}
.l-mega-menu__center {
  width: min(100%, var(--home-hero-slide-width, 920px));
  margin-inline: auto;
  height: var(--home-hero-slide-height, 500px);
  display: flex;
  gap: 45px;
  padding: 46px 45px 40px;
  background-color: #e6e6e6;
}
.l-mega-menu.is-open .l-mega-menu__center {
  pointer-events: auto;
}
.l-mega-menu__image {
  flex-shrink: 0;
  width: 250px;
  height: 250px;
  background-color: #fff;
  padding: 60px;
}
.l-mega-menu__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.l-mega-menu__links {
  flex: 1;
  min-width: 0;
}
.l-mega-menu__heading {
  display: block;
  margin-bottom: 20px;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #4c4948;
  transition: color 0.2s ease;
}
.l-mega-menu__heading:hover, .l-mega-menu__heading:focus-visible {
  color: #ed7a25;
}
.l-mega-menu__heading:focus-visible {
  outline: 2px solid #ed7a25;
  outline-offset: 2px;
}
.l-mega-menu__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-template-rows: repeat(6, auto);
  column-gap: 40px;
  list-style: none;
}
.l-mega-menu__list li {
  min-width: 0;
}
.l-mega-menu__list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.4;
  color: #4c4948;
  border-bottom: 1px solid #dddddd;
  transition: color 0.2s ease;
}
.l-mega-menu__list li a .l-mega-menu__link-label {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.l-mega-menu__list li a::after {
  content: "›";
  flex-shrink: 0;
  font-size: 16px;
  color: inherit;
}
.l-mega-menu__list li a:hover, .l-mega-menu__list li a:focus-visible {
  color: #ed7a25;
}
.l-mega-menu__list li a:focus-visible {
  outline: 2px solid #ed7a25;
  outline-offset: -2px;
}

.l-sp-info {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-sp-info {
    display: flex;
    flex-direction: column;
  }
}
.l-sp-info__tel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 16px;
  color: #fff;
  gap: 8px;
}
.l-sp-info__tel--main {
  background-color: var(--color-dark, #2e2f31);
}
.l-sp-info__tel--emergency {
  background-color: #ed7a25;
}
.l-sp-info__tel-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.l-sp-info__tel-label {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.l-sp-info__tel-note {
  font-size: 10px;
  opacity: 0.85;
  white-space: nowrap;
}
.l-sp-info__tel-number {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.l-sp-info__contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  background-color: var(--color-gray, #bebdb9);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  overflow: hidden;
}
.l-sp-info__contact::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0 14px 14px 0;
  border-color: transparent #ed7a25 transparent transparent;
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
}
body.admin-bar .l-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .l-header {
    top: 46px;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    border-bottom: 1px solid #dddddd;
  }
}
.l-header__main {
  background-color: #ffffff;
}
.l-header__main-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media screen and (min-width: 1280px) {
  .l-header__main-inner {
    padding-inline: 0;
  }
}
.l-header__main-inner {
  display: flex;
  align-items: center;
  height: 100px;
}
@media screen and (min-width: 1280px) {
  .l-header__main-inner {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__main-inner {
    height: 56px;
    justify-content: space-between;
    padding-inline: 16px;
  }
}
.l-header__sub {
  background-color: #ffffff;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .l-header__sub {
    display: none;
  }
}
.l-header__sub-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media screen and (min-width: 1280px) {
  .l-header__sub-inner {
    padding-inline: 0;
  }
}
.l-header__sub-inner {
  display: flex;
  align-items: stretch;
  height: 50px;
}
@media screen and (min-width: 1280px) {
  .l-header__sub-inner {
    padding-inline: 40px;
  }
}
.l-header__contacts {
  display: none;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-header__contacts {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
  .l-header__contacts {
    gap: 20px;
  }
}
.l-header__contacts a {
  display: flex;
}
.l-header__contacts img {
  display: block;
}
.l-header__contacts .l-header__contact-inquiry {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__contacts .l-header__contact-inquiry {
    display: flex;
    transition: opacity 0.2s ease;
  }
  .l-header__contacts .l-header__contact-inquiry:hover, .l-header__contacts .l-header__contact-inquiry:focus-visible {
    opacity: 0.6;
  }
}
.l-header__contact-tel-image {
  width: clamp(150px, 24vw, 330px);
  height: auto;
  aspect-ratio: 330/50;
}
@media screen and (min-width: 1280px) {
  .l-header__contact-tel-image {
    width: 330px;
  }
}
.l-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 20px;
}
.l-header__logo a {
  display: flex;
}
@media screen and (min-width: 768px) {
  .l-header__logo a {
    transition: opacity 0.2s ease;
  }
  .l-header__logo a:hover, .l-header__logo a:focus-visible {
    opacity: 0.6;
  }
}
.l-header__logo img {
  height: auto;
}
@media screen and (max-width: 767px) {
  .l-header__logo img {
    max-width: 150px;
  }
}
.l-header__nav {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}
.l-header__nav-list {
  display: flex;
  align-items: stretch;
  height: 100%;
}
.l-header__nav-item > a,
.l-header__nav-item > button {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 clamp(3px, 0.3vw, 10px);
  font-size: clamp(17px, 0.39vw + 14px, 19px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
  white-space: nowrap;
  color: #4c4948;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  gap: 3px;
}
.l-header__nav-item > a::after,
.l-header__nav-item > button::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  background-color: #ed7a25;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}
.l-header__nav-item > a:hover, .l-header__nav-item > a:focus-visible,
.l-header__nav-item > button:hover,
.l-header__nav-item > button:focus-visible {
  color: #ed7a25;
}
.l-header__nav-item > a:hover::after, .l-header__nav-item > a:focus-visible::after,
.l-header__nav-item > button:hover::after,
.l-header__nav-item > button:focus-visible::after {
  transform: scaleX(1);
}
.l-header__nav-item--has-mega > a, .l-header__nav-item--has-mega > button {
  gap: 0;
}
.l-header__nav-accent {
  color: #ed7a25;
}
.l-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .l-header__hamburger {
    display: flex;
  }
}
.l-header__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #4c4948;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.l-header.is-drawer-open .l-header__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.l-header.is-drawer-open .l-header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.l-header.is-drawer-open .l-header__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.l-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  width: min(100%, 420px);
  height: 100dvh;
  background-color: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
}
.l-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}
.l-drawer__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 14px 16px;
  border-bottom: 1px solid #dddddd;
}
.l-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 20px;
  color: #4c4948;
}
.l-drawer__nav {
  padding: 0;
}
.l-drawer__list {
  border-bottom: 1px solid #dddddd;
}
.l-drawer__item {
  border-top: 1px solid #dddddd;
}
.l-drawer__link {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 16px 20px;
  font-size: 19px;
  font-weight: 500;
  text-align: left;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  color: #4c4948;
}
.l-drawer__link:hover {
  background-color: #f5f5f5;
}
.l-drawer__item-row {
  display: flex;
  align-items: stretch;
}
.l-drawer__toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.l-drawer__toggle span {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
}
.l-drawer__toggle span::before, .l-drawer__toggle span::after {
  content: "";
  position: absolute;
  background-color: #ed7a25;
  transition: transform 0.2s ease;
}
.l-drawer__toggle span::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.l-drawer__toggle span::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%) scaleY(1);
}
.l-drawer__toggle[aria-expanded=true] {
  background-color: #f5f5f5;
}
.l-drawer__toggle[aria-expanded=true] span::after {
  transform: translateX(-50%) scaleY(0);
}
.l-drawer__sub-list {
  background-color: #f5f5f5;
  border-top: 1px solid #dddddd;
  overflow: hidden;
}
.l-drawer__sub-list[hidden] {
  display: none;
}
.l-drawer__sub-list a {
  display: block;
  padding: 12px 20px 12px 32px;
  font-size: 19px;
  color: #4c4948;
  border-bottom: 1px solid #dddddd;
}
.l-drawer__sub-list a:hover {
  color: #ed7a25;
}
.l-drawer__sub-list li:last-child a {
  border-bottom: none;
}
.l-drawer__tel-area {
  padding: 20px;
  border-top: 1px solid #dddddd;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.l-drawer__tel-emergency, .l-drawer__tel-main, .l-drawer__contact-btn {
  display: block;
  width: 100%;
  transition: opacity 0.2s ease;
}
.l-drawer__tel-emergency:hover, .l-drawer__tel-emergency:focus-visible, .l-drawer__tel-main:hover, .l-drawer__tel-main:focus-visible, .l-drawer__contact-btn:hover, .l-drawer__contact-btn:focus-visible {
  opacity: 0.6;
}
.l-drawer__tel-emergency img, .l-drawer__tel-main img, .l-drawer__contact-btn img {
  display: block;
  width: 100%;
  height: auto;
}

.l-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.3s ease;
}
.l-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.c-back-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 90;
  width: 48px;
  height: 48px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.c-back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.c-back-top.is-stopped {
  position: absolute;
  bottom: auto;
}
.c-back-top:hover {
  opacity: 0.85;
}
.c-back-top__image {
  width: 100%;
  height: 100%;
}

.l-footer-voice-banner {
  padding: 24px 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer-voice-banner {
    padding: 20px 0;
  }
}
.l-footer-voice-banner__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media screen and (min-width: 1280px) {
  .l-footer-voice-banner__inner {
    padding-inline: 0;
  }
}
.l-footer-voice-banner__link {
  display: block;
  transition: opacity 0.2s ease;
}
.l-footer-voice-banner__link:hover, .l-footer-voice-banner__link:focus-visible {
  opacity: 0.6;
}
.l-footer-voice-banner__image {
  display: block;
  width: 100%;
  height: auto;
}

.l-footer-cta-bar {
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .l-footer-cta-bar {
    padding-bottom: 20px;
  }
}
.l-footer-cta-bar__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media screen and (min-width: 1280px) {
  .l-footer-cta-bar__inner {
    padding-inline: 0;
  }
}
.l-footer-cta-bar__inner {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .l-footer-cta-bar__inner {
    flex-direction: column;
    gap: 12px;
  }
}
.l-footer-cta-bar__item {
  display: block;
  flex: 1 1 0;
  min-width: 0;
  transition: opacity 0.2s ease;
}
.l-footer-cta-bar__item:hover, .l-footer-cta-bar__item:focus-visible {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .l-footer-cta-bar__item {
    flex: 1 1 auto;
  }
}
.l-footer-cta-bar__image {
  display: block;
  width: 100%;
  height: auto;
}

.l-footer {
  position: relative;
  background-color: #fff;
}
.l-footer__lines {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.l-footer__line {
  display: block;
  height: 8px;
}
.l-footer__line--main {
  background-color: var(--color-main);
}
.l-footer__line--gray {
  background-color: var(--color-gray);
}
.l-footer__line--dark {
  background-color: var(--color-dark);
}
.l-footer__policy {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media screen and (min-width: 1280px) {
  .l-footer__policy {
    padding-inline: 0;
  }
}
.l-footer__policy {
  padding-block: 20px;
}
.l-footer__policy-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}
@media screen and (max-width: 767px) {
  .l-footer__policy-list {
    gap: 4px 0;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__policy-list li {
    width: 50%;
  }
}
.l-footer__policy-list li a {
  display: block;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #4c4948;
  text-decoration: none;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s ease;
}
.l-footer__policy-list li a:hover, .l-footer__policy-list li a:focus-visible {
  text-decoration-line: underline;
  text-decoration-color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .l-footer__policy-list li a {
    padding: 6px 0;
    text-align: left;
    font-size: 13px;
  }
}
.l-footer__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media screen and (min-width: 1280px) {
  .l-footer__inner {
    padding-inline: 0;
  }
}
.l-footer__main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 100px;
  padding-block: 40px 32px;
}
@media screen and (max-width: 767px) {
  .l-footer__main {
    flex-direction: column;
    gap: 24px;
    padding-block: 24px;
  }
}
.l-footer__company-block {
  flex: 0 1 auto;
}
@media screen and (max-width: 767px) {
  .l-footer__company-block {
    order: 1;
  }
}
.l-footer__logo {
  display: block;
  margin-bottom: 16px;
}
.l-footer__logo a {
  display: block;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.l-footer__logo a:hover, .l-footer__logo a:focus-visible {
  opacity: 0.6;
}
.l-footer__logo-image {
  width: 370px;
  height: auto;
}
.l-footer__company {
  font-style: normal;
  font-size: var(--font-size-body-pc);
  line-height: 1.6;
  color: #4c4948;
}
@media screen and (max-width: 767px) {
  .l-footer__company {
    font-size: var(--font-size-body-sp);
  }
}
.l-footer__company-name {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 700;
  color: #4c4948;
}
.l-footer__company-name-accent {
  color: var(--color-main);
}
.l-footer__company-tel {
  color: inherit;
  text-decoration: none;
}
.l-footer__nav-wrap {
  flex: 0 1 auto;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-wrap {
    order: 1;
  }
}
.l-footer__nav {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(4, auto);
  column-gap: 64px;
  row-gap: 4px;
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    column-gap: 0;
  }
}
.l-footer__nav li a {
  display: block;
  padding: 6px 0;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: var(--font-size-body-pc);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  color: #4c4948;
  text-decoration: none;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s ease;
}
.l-footer__nav li a:hover, .l-footer__nav li a:focus-visible {
  text-decoration-line: underline;
  text-decoration-color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .l-footer__nav li a {
    padding: 8px 0;
    font-size: var(--font-size-body-sp);
  }
}
.l-footer__copy {
  padding: 16px 0;
  margin-top: 0;
  text-align: center;
  font-size: 19px;
  line-height: 1.6;
  color: #777;
  background-color: #dddddd;
}
.l-footer__copy small {
  font-size: inherit;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: 13px;
  }
}

:root {
  --content-width: 1280px;
  --content-padding: 16px;
  --color-main: #ed7a25;
  --color-dark: #2e2f31;
  --color-gray: #bebdb9;
  --color-text: #4c4948;
  --color-muted: #777777;
  --color-border: #dddddd;
  --color-bg-light: #f5f5f3;
  --font-size-xs: 11px;
  --font-size-sm: 13px;
  --font-size-base: 19px;
  --font-size-md: 20px;
  --font-size-lg: 28px;
  --font-size-xl: 40px;
  --font-family-base: Noto Sans CJK JP, Noto Sans JP, sans-serif;
  --font-size-body-pc: 19px;
  --font-size-body-sp: 19px;
  --font-size-small: 16px;
  --link-underline-color: var(--color-main);
  --link-underline-thickness: 2px;
  --link-hover-opacity: 0.6;
  --section-space-small: 40px;
  --section-space-medium: 72px;
  --section-space-large: 110px;
  --home-hero-slide-width: 920px;
  --home-hero-slide-gap: 16px;
  --home-hero-media-ratio: 920 / 500;
  --home-hero-slide-height: calc(var(--home-hero-slide-width) * 500 / 920);
  --home-hero-media-ratio-sp: 375 / 185;
  --home-hero-arrow-size: 60px;
  --news-heading-width: 240px;
  --news-more-size: 80px;
  --home-section-gap: 80px;
  --home-locations-map-list-gap: 48px;
  --home-locations-map-width: 1280px;
  --topics-image-ratio: 400 / 225;
}

.home-page {
  overflow-x: hidden;
}

.home-hero__viewport {
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .home-hero__viewport {
    aspect-ratio: var(--home-hero-media-ratio-sp);
    border-bottom: 1px solid #dddddd;
  }
}
.home-hero__main {
  position: relative;
  width: 100%;
  height: 100%;
}
.home-hero__main .splide__track,
.home-hero__main .splide__list {
  height: 100%;
}
.home-hero__main .splide__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--home-hero-arrow-size);
  height: var(--home-hero-arrow-size);
  padding: 0;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.home-hero__main .splide__arrow:hover, .home-hero__main .splide__arrow:focus-visible {
  background-color: #fff;
}
.home-hero__main .splide__arrow:focus-visible {
  outline: 2px solid var(--color-main);
  outline-offset: 2px;
}
.home-hero__main .splide__arrow svg {
  width: 14px;
  height: 14px;
}
.home-hero__main .splide__arrow path {
  fill: var(--color-dark);
}
.home-hero__main .splide__arrow:disabled {
  opacity: 0.3;
}
.home-hero__main .splide__arrow--prev svg {
  transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .home-hero__main .splide__arrow--prev {
    left: calc(var(--home-hero-arrow-size) / -2);
  }
  .home-hero__main .splide__arrow--next {
    right: calc(var(--home-hero-arrow-size) / -2);
  }
}
@media screen and (min-width: 768px) {
  .home-hero__main .splide__arrow--prev {
    left: calc(50% - min(920px, 100vw - 240px) / 2 - var(--home-hero-arrow-size) / 2);
  }
  .home-hero__main .splide__arrow--next {
    right: calc(50% - min(920px, 100vw - 240px) / 2 - var(--home-hero-arrow-size) / 2);
  }
}

.home-hero-slide {
  aspect-ratio: var(--home-hero-media-ratio);
}
@media screen and (max-width: 767px) {
  .home-hero-slide {
    aspect-ratio: unset;
    height: 100%;
  }
}
.home-hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.home-hero-slide__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero-slide__link {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.2s ease;
}
.home-hero-slide__link:hover, .home-hero-slide__link:focus-visible {
  opacity: 0.6;
}

.home-sp-links {
  display: none;
}
@media screen and (max-width: 767px) {
  .home-sp-links {
    display: block;
  }
}
.home-sp-links__inner {
  margin-inline: auto;
  max-width: var(--content-width);
  width: 100%;
  padding-inline: var(--content-padding);
}
@media screen and (min-width: 1280px) {
  .home-sp-links__inner {
    padding-inline: 0;
  }
}
.home-sp-links__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-block: 12px;
}
.home-sp-links__item {
  display: block;
}
.home-sp-links__item img {
  display: block;
  width: 100%;
  height: auto;
}
.home-sp-links__contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  background-color: var(--color-gray, #bebdb9);
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  overflow: hidden;
}
.home-sp-links__contact::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0 14px 14px 0;
  border-color: transparent #ed7a25 transparent transparent;
}

.home-news {
  padding-block: var(--section-space-small);
  background-color: #fff;
}
.home-news__inner {
  margin-inline: auto;
  max-width: var(--content-width);
  width: 100%;
  padding-inline: var(--content-padding);
}
@media screen and (min-width: 1280px) {
  .home-news__inner {
    padding-inline: 0;
  }
}
.home-news__inner {
  display: grid;
  align-items: stretch;
  grid-template-columns: var(--news-heading-width) 1fr;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .home-news__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.home-news__heading-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .home-news__heading-area {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
}
.home-news__title {
  font-size: var(--font-size-md);
  font-weight: 700;
}
.home-news__more {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--news-more-size);
  height: var(--news-more-size);
  font-size: var(--font-size-sm);
  color: var(--color-text);
  border: 1px solid var(--color-text);
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .home-news__more {
    position: static;
    transform: none;
  }
}
.home-news__more:hover {
  background-color: var(--color-text);
  color: #fff;
}
.home-news__list {
  display: flex;
  flex-direction: column;
}
.home-news__item {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  align-items: start;
  column-gap: 16px;
  row-gap: 8px;
  padding-block: 28px;
  border-bottom: 1px solid var(--color-border);
}
.home-news__item:first-child {
  border-top: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .home-news__item {
    row-gap: 6px;
    padding-block: 16px;
  }
}
.home-news__summary {
  grid-column: 1/-1;
  font-size: var(--font-size-small);
  line-height: 1.7;
  color: var(--color-muted);
}
@media screen and (max-width: 767px) {
  .home-news__summary {
    font-size: var(--font-size-sm);
  }
}
.home-news__date {
  grid-column: 1;
  flex-shrink: 0;
  font-size: var(--font-size-sm);
  white-space: nowrap;
  color: var(--color-muted);
}
@media screen and (max-width: 767px) {
  .home-news__date {
    font-size: var(--font-size-small);
  }
}
.home-news__label {
  grid-column: 2;
  flex-shrink: 0;
  padding: 2px 8px;
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: #fff;
  background-color: var(--color-main);
}
.home-news__cat {
  grid-column: 3;
  display: inline-block;
  padding: 2px 10px;
  font-size: 11px;
  white-space: nowrap;
  color: #fff;
  background-color: var(--color-main);
  border-radius: 2px;
}
.home-news__link {
  grid-column: 1/-1;
  font-size: var(--font-size-body-pc);
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.home-news__link:hover, .home-news__link:focus-visible {
  color: var(--color-main);
}
.home-news__link:focus-visible {
  outline: 2px solid var(--color-main);
  outline-offset: 2px;
}
@media screen and (max-width: 767px) {
  .home-news__link {
    font-size: var(--font-size-body-sp);
  }
}
.home-news__empty {
  font-size: var(--font-size-sm);
  color: var(--color-muted);
}

.home-recruit {
  padding-block: var(--section-space-small);
}
@media screen and (max-width: 767px) {
  .home-recruit {
    padding-block: 0;
  }
}
.home-recruit__inner {
  margin-inline: auto;
  max-width: var(--content-width);
  width: 100%;
  padding-inline: var(--content-padding);
}
@media screen and (min-width: 1280px) {
  .home-recruit__inner {
    padding-inline: 0;
  }
}
.home-recruit__banner {
  display: block;
  transition: opacity 0.2s ease;
}

a.home-recruit__banner:hover, a.home-recruit__banner:focus-visible {
  opacity: var(--link-hover-opacity, 0.6);
}
a.home-recruit__banner:focus-visible {
  outline: 2px solid var(--color-main);
  outline-offset: 2px;
}

.home-recruit-banner__image {
  display: block;
  width: 100%;
  height: auto;
}

.home-about {
  padding-block: var(--section-space-small);
}
.home-about__inner {
  margin-inline: auto;
  max-width: var(--content-width);
  width: 100%;
  padding-inline: var(--content-padding);
}
@media screen and (min-width: 1280px) {
  .home-about__inner {
    padding-inline: 0;
  }
}
.home-about__inner {
  display: grid;
  align-items: stretch;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .home-about__inner {
    grid-template-columns: 1fr;
  }
}
.home-about__banner {
  display: block;
  transition: opacity 0.2s ease;
}
.home-about__banner:hover, .home-about__banner:focus-visible {
  opacity: var(--link-hover-opacity, 0.6);
}
.home-about__banner:focus-visible {
  outline: 2px solid var(--color-main);
  outline-offset: 2px;
}
.home-about__banner-image {
  display: block;
  width: 100%;
  height: auto;
}

.home-philosophy-banner {
  padding-block: var(--section-space-medium) calc(var(--home-section-gap) / 2);
}
@media screen and (max-width: 767px) {
  .home-philosophy-banner {
    padding-top: 32px;
  }
}
.home-philosophy-banner {
  background-color: #fff;
}
.home-philosophy-banner__inner {
  margin-inline: auto;
  max-width: var(--content-width);
  width: 100%;
  padding-inline: var(--content-padding);
}
@media screen and (min-width: 1280px) {
  .home-philosophy-banner__inner {
    padding-inline: 0;
  }
}
.home-philosophy-banner__link {
  display: block;
  transition: opacity 0.2s ease;
}
.home-philosophy-banner__link:hover, .home-philosophy-banner__link:focus-visible {
  opacity: var(--link-hover-opacity, 0.6);
}
.home-philosophy-banner__link:focus-visible {
  outline: 2px solid var(--color-main);
  outline-offset: 2px;
}
.home-philosophy-banner__image {
  display: block;
  width: 100%;
  height: auto;
}

.home-shops-map {
  padding-block: calc(var(--home-section-gap) / 2) var(--section-space-small);
}
.home-shops-map__inner {
  margin-inline: auto;
  max-width: var(--content-width);
  width: 100%;
  padding-inline: var(--content-padding);
}
@media screen and (min-width: 1280px) {
  .home-shops-map__inner {
    padding-inline: 0;
  }
}
.home-shops-map__map {
  display: flex;
  justify-content: center;
  width: 100%;
}
.home-shops-map__map-image {
  display: block;
  width: 100%;
  max-width: var(--home-locations-map-width);
  height: auto;
  margin-inline: auto;
}
.home-shops-map__list {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  margin-top: var(--home-locations-map-list-gap);
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 65%;
}
@media screen and (max-width: 767px) {
  .home-shops-map__list {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 100%;
  }
}
.home-shops-map__list-title {
  margin-bottom: 20px;
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
}
.home-shops-map__list-title--power {
  color: var(--color-main);
}
.home-shops-map__list-items {
  display: flex;
  flex-direction: column;
}
.home-shops-map__list-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 8px;
  align-items: baseline;
  padding-block: 8px;
  font-size: var(--font-size-sm);
  line-height: 1;
  text-align: left;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .home-shops-map__list-item {
    padding-block: 4px;
    line-height: 1.4;
  }
}
.home-shops-map__list-number {
  text-align: right;
  font-size: var(--font-size-small);
  font-weight: 700;
  white-space: nowrap;
}
.home-shops-map__list-item--store .home-shops-map__list-number {
  color: var(--color-muted);
}
.home-shops-map__list-item--power .home-shops-map__list-number {
  color: var(--color-main);
}
.home-shops-map__list-text {
  min-width: 0;
}
.home-shops-map__list-name {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .home-shops-map__list-name {
    font-size: var(--font-size-sm);
  }
}
.home-shops-map__list-address {
  font-size: var(--font-size-xs);
  color: var(--color-muted);
}
.home-shops-map__list-address--nowrap {
  white-space: nowrap;
}

.home-topics {
  padding-block: var(--section-space-small);
}
.home-topics__title-wrap {
  margin-inline: auto;
  max-width: var(--content-width);
  width: 100%;
  padding-inline: var(--content-padding);
}
@media screen and (min-width: 1280px) {
  .home-topics__title-wrap {
    padding-inline: 0;
  }
}
.home-topics__title-wrap {
  margin-bottom: 20px;
}
.home-topics__title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text);
}
.home-topics__slider {
  width: 100%;
}
.home-topics__item {
  height: auto;
}
.home-topics__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: opacity 0.2s ease;
}
.home-topics__card:hover {
  opacity: 0.85;
}
.home-topics__image-wrap {
  display: block;
  width: 100%;
  aspect-ratio: var(--topics-image-ratio);
  background-color: var(--color-gray);
  overflow: hidden;
}
.home-topics__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home-topics__card-title {
  display: block;
  padding: 12px 12px 4px;
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-text);
}
.home-topics__card-caption {
  display: block;
  padding: 0 12px 16px;
  margin-top: auto;
  font-size: var(--font-size-xs);
  color: var(--color-muted);
}

.home-topics .splide__pagination {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 0;
}

.home-topics .splide__pagination__page {
  width: 8px;
  height: 8px;
  background-color: var(--color-border);
  border-radius: 50%;
  opacity: 1;
  transition: background-color 0.2s ease;
}
.home-topics .splide__pagination__page.is-active {
  background-color: var(--color-main);
  transform: none;
}

.business-page {
  --content-width: 1280px;
  --content-padding: 16px;
  --color-text: #4c4948;
  --color-heading: #4c4948;
  --color-border: #dddddd;
  --color-main: #ed7a25;
  --font-page-title: 64px;
  --font-title: 48px;
  --font-heading: 40px;
  --font-service-title: 32px;
  --section-space: 80px;
  --service-gap: 40px;
  --service-image-width: 290px;
  --service-image-height: 218px;
  --service-image-ratio: 290 / 218;
  overflow-x: hidden;
}
.business-page__inner {
  margin-inline: auto;
  max-width: var(--content-width);
  width: 100%;
  padding-inline: var(--content-padding);
}
@media screen and (min-width: 1280px) {
  .business-page__inner {
    padding-inline: 0;
  }
}
.business-page__title-row {
  overflow: hidden;
  padding-block: 24px 32px;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .business-page__title-row {
    padding-block: 16px 20px;
  }
}
.business-page__title {
  font-size: var(--font-page-title);
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .business-page__title {
    font-size: 28px;
  }
}

.business-intro {
  padding-block: 51px 0;
}
.business-intro__title {
  margin-bottom: 20px;
  font-size: var(--font-title);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .business-intro__title {
    font-size: 34px;
  }
}
.business-intro__accent {
  color: var(--color-main);
}
.business-intro__text {
  max-width: 1000px;
  font-size: var(--font-size-body-pc);
  line-height: 1.7;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .business-intro__text {
    font-size: var(--font-size-body-sp);
  }
}

.business-category {
  padding-block: 43px 0;
}
.business-category__image {
  display: block;
  margin-inline: auto;
  width: 100%;
  height: auto;
}

.business-domain {
  padding-block: var(--section-space) 0;
  border-top: 1px solid var(--color-border);
}
.business-domain__title {
  text-align: center;
  margin-bottom: 43px;
  font-size: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-heading);
}
@media screen and (max-width: 767px) {
  .business-domain__title {
    font-size: 24px;
  }
}

.business-service-list {
  display: flex;
  flex-direction: column;
  gap: var(--service-gap);
  padding-bottom: var(--section-space);
}

.business-service {
  display: flex;
  gap: 38px;
}
@media screen and (max-width: 767px) {
  .business-service {
    flex-direction: column;
    gap: 16px;
  }
}
.business-service__image {
  flex-shrink: 0;
  align-self: flex-start;
  width: var(--service-image-width);
  aspect-ratio: var(--service-image-ratio);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .business-service__image {
    width: 100%;
  }
}
.business-service__image img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.business-service__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding-top: 4px;
}
.business-service__title {
  margin-bottom: 16px;
  font-size: var(--font-service-title);
  font-weight: 500;
  color: var(--color-text);
}
.business-service__text {
  margin-bottom: 16px;
  font-size: var(--font-size-body-pc);
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .business-service__text {
    font-size: var(--font-size-body-sp);
  }
}
.business-service__button {
  font-size: 15px;
  color: var(--color-main);
  border-bottom: 1px solid var(--color-main);
  transition: opacity 0.2s ease;
}
.business-service__button:hover {
  opacity: 0.7;
}

.service-list {
  --content-width: 1280px;
  --content-padding: 16px;
  --color-text: #4c4948;
  --color-heading: #4c4948;
  --color-border: #dddddd;
  --color-main: #ed7a25;
  --font-page-title: 64px;
  --font-heading: 40px;
  --font-item-title: 32px;
  --font-note: 18px;
  --section-space: 80px;
  --item-gap: 40px;
  --item-image-width: 290px;
  --item-image-height: 218px;
  --item-image-ratio: 290 / 218;
  --featured-gap: 40px;
  overflow-x: hidden;
}
.service-list__inner {
  margin-inline: auto;
  max-width: var(--content-width);
  width: 100%;
  padding-inline: var(--content-padding);
}
@media screen and (min-width: 1280px) {
  .service-list__inner {
    padding-inline: 0;
  }
}
.service-list__title-row {
  padding-block: 24px 32px;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .service-list__title-row {
    padding-block: 16px 20px;
  }
}
.service-list__title {
  font-size: var(--font-page-title);
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .service-list__title {
    font-size: 28px;
  }
}

.service-list-domain {
  padding-top: 48px;
}
.service-list-domain:first-of-type {
  padding-top: 64px;
}
.service-list-domain:last-of-type {
  padding-bottom: var(--section-space);
}
.service-list-domain__title {
  text-align: center;
  margin-bottom: 43px;
  font-size: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-heading);
}
@media screen and (max-width: 767px) {
  .service-list-domain__title {
    font-size: 24px;
  }
}

.service-list-featured {
  display: flex;
  gap: var(--featured-gap);
  margin-bottom: var(--section-space);
}
@media screen and (max-width: 767px) {
  .service-list-featured {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }
}
.service-list-featured__logo, .service-list-featured__photo {
  flex: 1 1 0;
  aspect-ratio: 620/380;
  overflow: hidden;
}
.service-list-featured__logo img, .service-list-featured__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-list-featured__logo {
  border: 1px solid var(--color-border);
}
.service-list-featured__logo img {
  padding: 24px;
}
.service-list-featured__photo img {
  object-fit: cover;
}

.service-list-intro__text {
  margin-bottom: 40px;
  font-size: var(--font-size-body-pc);
  line-height: 1.7;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .service-list-intro__text {
    font-size: var(--font-size-body-sp);
  }
}

.service-list-photos {
  display: flex;
  gap: var(--featured-gap);
  margin-bottom: var(--section-space);
}
@media screen and (max-width: 767px) {
  .service-list-photos {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }
}
.service-list-photos__item {
  flex: 1 1 0;
  aspect-ratio: 620/380;
  overflow: hidden;
}
.service-list-photos__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-list-items {
  display: flex;
  flex-direction: column;
  gap: var(--item-gap);
  padding-top: var(--section-space);
  border-top: 1px solid var(--color-border);
}

.service-list-item {
  display: flex;
  gap: 38px;
}
@media screen and (max-width: 767px) {
  .service-list-item {
    flex-direction: column;
    gap: 16px;
  }
}
.service-list-item__image {
  flex-shrink: 0;
  align-self: flex-start;
  width: var(--item-image-width);
  aspect-ratio: var(--item-image-ratio);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .service-list-item__image {
    width: 100%;
  }
}
.service-list-item__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-list-item__image--logo {
  border: 1px solid var(--color-border);
}
.service-list-item__image--logo img {
  padding: 16px;
  object-fit: contain;
}
.service-list-item__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}
.service-list-item__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  margin-bottom: 16px;
}
.service-list-item__title {
  font-size: var(--font-item-title);
  font-weight: 500;
  color: var(--color-text);
}
.service-list-item__partner-logo {
  flex-shrink: 0;
  max-width: 140px;
  max-height: 90px;
  width: auto;
  height: auto;
}
.service-list-item__text {
  margin-bottom: 16px;
  font-size: var(--font-size-body-pc);
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .service-list-item__text {
    font-size: var(--font-size-body-sp);
  }
}
.service-list-item__link {
  font-size: 15px;
  color: var(--color-main);
  border-bottom: 1px solid var(--color-main);
  transition: opacity 0.2s ease;
}
.service-list-item__link:hover {
  opacity: 0.7;
}

.service-list-note {
  margin-top: var(--item-gap);
  padding-bottom: 20px;
  font-size: var(--font-note);
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .service-list-note {
    font-size: 16px;
    padding-bottom: 16px;
  }
}

.services-page {
  --content-width: 1280px;
  --content-padding: 16px;
  --color-text: #4c4948;
  --color-heading: #4c4948;
  --color-border: #dddddd;
  --color-main: #ed7a25;
  --font-heading: 40px;
  --font-item-title: 32px;
  --section-space: 80px;
  --card-gap: 40px;
  --image-gap: 40px;
  --card-image-width: 290px;
  --card-image-ratio: 290 / 218;
  --domain-image-ratio: 620 / 340;
  overflow-x: hidden;
}
.services-page__inner {
  margin-inline: auto;
  max-width: var(--content-width);
  width: 100%;
  padding-inline: var(--content-padding);
}
@media screen and (min-width: 1280px) {
  .services-page__inner {
    padding-inline: 0;
  }
}

.services-page-domain {
  padding-top: 48px;
}
.services-page-domain:first-of-type {
  padding-top: 64px;
}
.services-page-domain:last-of-type {
  padding-bottom: var(--section-space);
}
.services-page-domain__title {
  text-align: center;
  margin-bottom: 43px;
  font-size: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-heading);
}
@media screen and (max-width: 767px) {
  .services-page-domain__title {
    font-size: 24px;
  }
}
.services-page-domain__description {
  margin-bottom: 40px;
  font-size: var(--font-size-body-pc);
  line-height: 1.7;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .services-page-domain__description {
    font-size: var(--font-size-body-sp);
  }
}
.services-page-domain__images {
  display: flex;
  gap: var(--image-gap);
  margin-bottom: var(--section-space);
}
@media screen and (max-width: 767px) {
  .services-page-domain__images {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }
}
.services-page-domain__image {
  display: block;
  flex: 1 1 0;
  width: 100%;
  aspect-ratio: var(--domain-image-ratio);
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .services-page-domain__image {
    flex: none;
  }
}

.services-page-cards {
  display: flex;
  flex-direction: column;
  gap: var(--card-gap);
  padding-top: var(--section-space);
  border-top: 1px solid var(--color-border);
  list-style: none;
}

.services-page-card {
  display: flex;
  align-items: stretch;
  gap: 38px;
}
@media screen and (max-width: 767px) {
  .services-page-card {
    flex-direction: column;
    gap: 16px;
  }
}
.services-page-card__image {
  flex-shrink: 0;
  width: var(--card-image-width);
  aspect-ratio: var(--card-image-ratio);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .services-page-card__image {
    width: 100%;
  }
}
.services-page-card__image img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.services-page-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  min-width: 0;
}
.services-page-card__title {
  margin-bottom: 16px;
  font-size: var(--font-item-title);
  font-weight: 500;
  color: var(--color-text);
}
.services-page-card__text {
  margin-bottom: 16px;
  font-size: var(--font-size-body-pc);
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .services-page-card__text {
    font-size: var(--font-size-body-sp);
  }
}
.services-page-card__link {
  font-size: 15px;
  color: var(--color-main);
  border-bottom: 1px solid var(--color-main);
  transition: opacity 0.2s ease;
}
.services-page-card__link:hover {
  opacity: 0.7;
}

.location-list {
  --content-width: 1280px;
  --content-padding: 16px;
  --color-text: #4c4948;
  --color-heading: #4c4948;
  --color-border: #dddddd;
  --color-main: #ed7a25;
  --color-dark: #2e2f31;
  --font-page-title: 64px;
  --font-section-title: 48px;
  --font-item-name: 32px;
  --section-space: 64px;
  --icon-size: 72px;
  --brand-logo-size: 32px;
  overflow-x: hidden;
}
.location-list__inner {
  margin-inline: auto;
  max-width: var(--content-width);
  width: 100%;
  padding-inline: var(--content-padding);
}
@media screen and (min-width: 1280px) {
  .location-list__inner {
    padding-inline: 0;
  }
}
.location-list__title-row {
  padding-block: 24px 32px;
}
@media screen and (max-width: 767px) {
  .location-list__title-row {
    padding-block: 16px 20px;
  }
}
.location-list__title {
  font-size: var(--font-page-title);
  font-weight: 500;
  line-height: 1.1;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 15px;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .location-list__title {
    font-size: 28px;
  }
}

#store {
  scroll-margin-top: 57px;
}
@media screen and (min-width: 768px) {
  #store {
    scroll-margin-top: 170px;
  }
}

.location-list-section {
  padding-top: var(--section-space);
}
.location-list-section:last-of-type {
  padding-bottom: var(--section-space);
}
.location-list-section__title {
  padding-bottom: 20px;
  margin-bottom: 0;
  font-size: var(--font-section-title);
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-heading);
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .location-list-section__title {
    font-size: 22px;
  }
}

.location-list-items {
  display: flex;
  flex-direction: column;
}

.location-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 32px;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .location-list-item {
    flex-direction: column;
    gap: 16px;
    padding-block: 24px;
  }
}
.location-list-item__body {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .location-list-item__body {
    width: 100%;
  }
}
.location-list-item__name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.location-list-item__brand-logo {
  flex-shrink: 0;
  width: auto;
  height: var(--brand-logo-size);
  max-width: 96px;
  object-fit: contain;
}
.location-list-item__name {
  font-size: var(--font-item-name);
  font-weight: 500;
  color: var(--color-text);
}
.location-list-item__detail {
  font-size: 24px;
  line-height: 1.6;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .location-list-item__detail {
    font-size: 19px;
  }
}
.location-list-item__detail:last-of-type {
  margin-bottom: 20px;
}
.location-list-item__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .location-list-item__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.location-list-item__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  border-radius: 4px;
  color: #fff;
  transition: opacity 0.2s ease;
}
.location-list-item__btn:hover {
  opacity: 0.85;
}
.location-list-item__btn--dark {
  background-color: var(--color-dark);
}
.location-list-item__btn--primary {
  background-color: var(--color-main);
}
.location-list-item__aux-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.location-list-item__aux-icon {
  width: var(--icon-size);
  height: var(--icon-size);
  object-fit: contain;
}
.location-list-item__aux-icon-link {
  display: block;
  transition: opacity 0.2s ease;
}
.location-list-item__aux-icon-link:hover, .location-list-item__aux-icon-link:focus-visible {
  opacity: 0.6;
}

.contact-page {
  --content-width: 1280px;
  --content-padding: 16px;
  --color-text: #4c4948;
  --color-heading: #4c4948;
  --color-border: #dddddd;
  --color-main: #ed7a25;
  --color-dark: #2e2f31;
  --color-gray: #bebdb9;
  --font-page-title: 64px;
  --font-section-title: 37px;
  --font-text: 20px;
  --section-space: 30px;
  --btn-width: 620px;
  overflow-x: hidden;
}
.contact-page__inner {
  margin-inline: auto;
  max-width: var(--content-width);
  width: 100%;
  padding-inline: var(--content-padding);
}
@media screen and (min-width: 1280px) {
  .contact-page__inner {
    padding-inline: 0;
  }
}
.contact-page__title-row {
  padding-block: 24px 32px;
}
@media screen and (max-width: 767px) {
  .contact-page__title-row {
    padding-block: 16px 20px;
  }
}
.contact-page__title {
  font-size: var(--font-page-title);
  font-weight: 500;
  line-height: 1.1;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 15px;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .contact-page__title {
    font-size: 28px;
  }
}
.contact-page__intro {
  margin-top: 32px;
  font-size: var(--font-size-body-pc);
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .contact-page__intro {
    font-size: var(--font-size-body-sp);
  }
}
.contact-page__btn-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-page__btn-list:last-child {
  margin-bottom: 0;
}
.contact-page__form {
  scroll-margin-top: 24px;
}
.contact-page__form-note {
  font-size: 15px;
  color: #999;
}
.contact-page__text-link {
  border-bottom: 1px solid var(--color-main);
  transition: opacity 0.2s ease;
}
.contact-page__text-link:hover {
  color: var(--color-main);
  opacity: 0.7;
}

.contact-section {
  padding-top: var(--section-space);
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 30px;
}
.contact-section:last-of-type {
  padding-bottom: var(--section-space);
  border-bottom: 0;
}
.contact-section__title {
  margin-bottom: 20px;
  font-size: var(--font-section-title);
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-heading);
}
@media screen and (max-width: 767px) {
  .contact-section__title {
    font-size: var(--font-size-body-sp);
  }
}
.contact-section__text {
  font-size: var(--font-size-body-pc);
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .contact-section__text {
    font-size: var(--font-size-body-sp);
  }
}

.contact-btn {
  display: block;
  width: 100%;
  max-width: var(--btn-width);
  transition: opacity 0.2s ease;
}
.contact-btn:hover {
  opacity: 0.6;
}
.contact-btn__image {
  display: block;
  width: 100%;
  height: auto;
}

.contact-faq__item {
  margin-bottom: 16px;
}
.contact-faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  padding: 24px 28px;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text);
  background-color: #e5e5e5;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.contact-faq__trigger:hover, .contact-faq__trigger[aria-expanded=true] {
  color: #fff;
  background-color: var(--color-main);
}
.contact-faq__trigger:hover .contact-faq__icon, .contact-faq__trigger[aria-expanded=true] .contact-faq__icon {
  border-color: #fff;
}
.contact-faq__trigger:hover .contact-faq__icon::before, .contact-faq__trigger[aria-expanded=true] .contact-faq__icon::before {
  border-top-color: #fff;
}
.contact-faq__question {
  flex: 1;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .contact-faq__question {
    font-size: var(--font-size-body-sp);
  }
}
.contact-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.contact-faq__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-main);
  border-bottom: 2px solid var(--color-main);
  transform: translate(-50%, -65%) rotate(-45deg);
  transition: transform 0.25s ease, border-color 0.2s ease;
}
.contact-faq__trigger[aria-expanded=true] .contact-faq__icon::before, .contact-faq__trigger:hover .contact-faq__icon::before {
  border-color: #fff;
  transform: translate(-50%, -35%) rotate(45deg);
}
.contact-faq__body {
  overflow: hidden;
  transition: height 0.3s ease;
}
.contact-faq__body[hidden] {
  display: block;
  height: 0;
}
.contact-faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 28px;
  background-color: #fff;
}
.contact-faq__answer-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}
.contact-faq__answer-text {
  font-size: var(--font-size-body-pc);
  line-height: 1.7;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .contact-faq__answer-text {
    font-size: var(--font-size-body-sp);
  }
}

.contact-faq-more {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 8px;
  margin-top: 8px;
  font-size: var(--font-text);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  text-decoration-color: transparent;
  text-decoration-thickness: var(--link-underline-thickness, 2px);
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .contact-faq-more {
    font-size: var(--font-size-body-sp);
  }
}
.contact-faq-more:hover, .contact-faq-more:focus-visible {
  color: var(--color-main);
  text-decoration-line: underline;
  text-decoration-color: var(--link-underline-color, var(--color-main));
}
.contact-faq-more:focus-visible {
  outline: 2px solid var(--color-main);
  outline-offset: 2px;
}
.contact-faq-more__icon {
  width: 18px;
  height: 18px;
  color: var(--color-main);
}

.contact-form-page {
  --content-width: 1280px;
  --content-padding: 16px;
  --form-content-width: 720px;
  --form-field-gap: 28px;
  --form-input-height: 48px;
  --form-textarea-height: 240px;
  --form-color-main: #ed7a25;
  --form-color-required: #e83d3d;
  --form-color-optional: #aaaaaa;
  --form-color-text: #4c4948;
  --form-color-border: #dddddd;
  --form-color-background: #f5f5f5;
  --form-color-white: #ffffff;
  --form-color-dark: #2e2f31;
  --font-page-title: 64px;
  --form-font-size-label: 15px;
  --form-font-size-input: 16px;
  --form-font-size-note: 13px;
  overflow-x: hidden;
}
.contact-form-page__inner {
  margin-inline: auto;
  max-width: var(--content-width);
  width: 100%;
  padding-inline: var(--content-padding);
}
@media screen and (min-width: 1280px) {
  .contact-form-page__inner {
    padding-inline: 0;
  }
}
.contact-form-page__title-row {
  padding-block: 24px 32px;
  border-bottom: 1px solid var(--form-color-border);
}
@media screen and (max-width: 767px) {
  .contact-form-page__title-row {
    padding-block: 16px 20px;
  }
}
.contact-form-page__title {
  font-size: var(--font-page-title);
  font-weight: 500;
  line-height: 1.1;
  color: var(--form-color-text);
}
@media screen and (max-width: 767px) {
  .contact-form-page__title {
    font-size: 28px;
  }
}
.contact-form-page__header {
  margin-top: 32px;
}
.contact-form-page__description {
  font-size: var(--font-size-body-pc);
  line-height: 1.8;
  color: var(--form-color-text);
}
@media screen and (max-width: 767px) {
  .contact-form-page__description {
    font-size: var(--font-size-body-sp);
  }
}
.contact-form-page__note {
  margin-top: 16px;
  font-size: var(--form-font-size-note);
  line-height: 1.8;
  color: #666;
}
.contact-form-page__note a {
  color: var(--form-color-main);
  text-decoration: underline;
}
.contact-form-page__company {
  margin-top: 24px;
}
.contact-form-page__company-name {
  font-weight: 700;
  font-size: var(--form-font-size-label);
  color: var(--form-color-text);
  margin-bottom: 8px;
}
.contact-form-page__company-detail {
  font-size: var(--form-font-size-note);
  line-height: 1.8;
  color: #666;
}
.contact-form-page__divider {
  margin: 40px 0;
  border: none;
  border-top: 1px solid var(--form-color-border);
}
.contact-form-page__form {
  max-width: var(--form-content-width);
  margin-inline: auto;
  padding-bottom: var(--content-padding);
}
.contact-form-page__form-note {
  font-size: var(--form-font-size-label);
  color: #999;
}
.contact-form-page .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contact-form-page .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  font-size: var(--form-font-size-note);
  color: var(--form-color-required);
}
.contact-form-page .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 16px 20px;
  border-radius: 4px;
  font-size: var(--form-font-size-label);
  border: 1px solid var(--form-color-border);
  color: var(--form-color-text);
}
.contact-form-page form.invalid .wpcf7-response-output,
.contact-form-page form.failed .wpcf7-response-output,
.contact-form-page form.aborted .wpcf7-response-output,
.contact-form-page form.spam .wpcf7-response-output {
  border-color: var(--form-color-required);
  color: var(--form-color-required);
  background-color: #fdecec;
}
.contact-form-page form.sent .wpcf7-response-output {
  display: none;
}

.contact-form-field {
  margin-bottom: var(--form-field-gap);
}
.contact-form-field__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.contact-form-field__label {
  font-size: var(--form-font-size-label);
  font-weight: 700;
  color: var(--form-color-text);
}
.contact-form-field__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  flex-shrink: 0;
}
.contact-form-field__badge--required {
  background-color: var(--form-color-required);
  color: #fff;
}
.contact-form-field__badge--optional {
  background-color: #eeeeee;
  color: var(--form-color-optional);
}
.contact-form-field__note {
  margin-bottom: 12px;
  font-size: var(--form-font-size-note);
  line-height: 1.8;
  color: #666;
}
.contact-form-field__note a {
  color: var(--form-color-main);
  text-decoration: underline;
}
.contact-form-field__control + .contact-form-field__control {
  margin-top: 12px;
}
.contact-form-field__row {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .contact-form-field__row {
    flex-direction: column;
    gap: 12px;
  }
}
.contact-form-field__row-item {
  display: block;
  flex: 1 1 0;
  min-width: 0;
}
.contact-form-field__row--phone {
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .contact-form-field__row--phone {
    flex-direction: row;
    gap: 6px;
  }
}
.contact-form-field__phone-item {
  display: block;
  flex: 1 1 0;
  min-width: 0;
}
.contact-form-field__phone-sep {
  flex-shrink: 0;
  color: var(--form-color-text);
}
.contact-form-field__input, .contact-form-field__select, .contact-form-field__textarea {
  display: block;
  width: 100%;
  padding: 0 16px;
  font-size: var(--form-font-size-input);
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  color: var(--form-color-text);
  background-color: var(--form-color-white);
  border: 1px solid var(--form-color-border);
  border-radius: 4px;
  transition: border-color 0.2s ease;
}
.contact-form-field__input:focus, .contact-form-field__select:focus, .contact-form-field__textarea:focus {
  outline: none;
  border-color: var(--form-color-main);
}
.contact-form-field__input, .contact-form-field__select {
  height: var(--form-input-height);
}
.contact-form-field__textarea {
  height: var(--form-textarea-height);
  padding-block: 12px;
  resize: vertical;
}
.contact-form-field__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.contact-form-field__error {
  display: block;
  margin-top: 6px;
  font-size: var(--form-font-size-note);
  color: var(--form-color-required);
  min-height: 1px;
}
.contact-form-field__error:empty {
  display: none;
}
.contact-form-field.is-invalid .contact-form-field__input, .contact-form-field.is-invalid .contact-form-field__select, .contact-form-field.is-invalid .contact-form-field__textarea {
  border-color: var(--form-color-required);
}
.contact-form-field--consent {
  padding-top: 24px;
  border-top: 1px solid var(--form-color-border);
}
.contact-form-field--consent .wpcf7-list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
}
.contact-form-field--consent .wpcf7-list-item-label {
  font-size: var(--form-font-size-label);
}
.contact-form-field--consent input[type=checkbox] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--form-color-main);
}

.contact-form-page__actions {
  margin-top: 40px;
}

.contact-form-page__confirm-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  background-color: var(--form-color-main);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.contact-form-page__confirm-btn:hover {
  opacity: 0.85;
}

.contact-form-confirm {
  display: none;
}
.contact-form-page.is-confirm .contact-form-confirm {
  display: block;
}
.contact-form-confirm__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--form-color-text);
}
.contact-form-confirm__title:focus {
  outline: none;
}
.contact-form-confirm__list {
  border-top: 1px solid var(--form-color-border);
}
.contact-form-confirm__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--form-color-border);
}
.contact-form-confirm__row dt {
  font-weight: 700;
  font-size: var(--form-font-size-label);
  color: var(--form-color-text);
}
.contact-form-confirm__row dd {
  font-size: var(--form-font-size-label);
  color: var(--form-color-text);
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .contact-form-confirm__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
.contact-form-confirm__value--pre {
  white-space: pre-wrap;
}
.contact-form-confirm__actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .contact-form-confirm__actions {
    flex-direction: column-reverse;
  }
}
.contact-form-confirm__back {
  flex: 1;
  min-height: 60px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--form-color-text);
  background-color: var(--form-color-white);
  border: 1px solid var(--form-color-border);
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.contact-form-confirm__back:hover {
  background-color: var(--form-color-background);
}
.contact-form-confirm__submit {
  flex: 1;
  min-height: 60px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background-color: var(--form-color-main);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.contact-form-confirm__submit:hover {
  opacity: 0.85;
}
.contact-form-confirm__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.contact-form-page.is-confirm [data-form-fields] {
  display: none;
}

.contact-form-complete-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.contact-form-complete-modal[hidden] {
  display: none;
}
.contact-form-complete-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.contact-form-complete-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: 40px 32px;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: contact-form-modal-fade-in 0.2s ease;
}
.contact-form-complete-modal__dialog:focus {
  outline: none;
}
.contact-form-complete-modal__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--form-color-text, #333);
}
.contact-form-complete-modal__text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--form-color-text, #333);
}
.contact-form-complete-modal__redirect-note {
  font-size: 13px;
  color: #999;
  margin-bottom: 24px;
}
.contact-form-complete-modal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 52px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background-color: var(--form-color-main, #ed7a25);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.contact-form-complete-modal__button:hover {
  opacity: 0.85;
}

@keyframes contact-form-modal-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body.contact-form-modal-open {
  overflow: hidden;
}

.recruit-top {
  --content-width: 1280px;
  --content-padding: 16px;
  --color-text: #4c4948;
  --color-heading: #4c4948;
  --color-border: #dddddd;
  --color-main: #ed7a25;
  --font-page-title: 64px;
  --font-message-heading: 40px;
  --font-message-history: 13px;
  --font-section-title: 48px;
  --font-item-title: 32px;
  --section-space: 64px;
  --item-logo-size: 220px;
  --item-gap: 40px;
  overflow-x: hidden;
}
.recruit-top__inner {
  margin-inline: auto;
  max-width: var(--content-width);
  width: 100%;
  padding-inline: var(--content-padding);
}
@media screen and (min-width: 1280px) {
  .recruit-top__inner {
    padding-inline: 0;
  }
}
.recruit-top__title-row {
  padding-block: 24px 32px;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .recruit-top__title-row {
    padding-block: 16px 20px;
  }
}
.recruit-top__title {
  font-size: var(--font-page-title);
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .recruit-top__title {
    font-size: 28px;
  }
}
.recruit-top__message {
  padding-top: var(--section-space);
  text-align: center;
}
.recruit-top__message-heading {
  margin-bottom: 24px;
  font-size: var(--font-message-heading);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-heading);
}
@media screen and (max-width: 767px) {
  .recruit-top__message-heading {
    font-size: 26px;
  }
}
.recruit-top__message-text {
  margin-bottom: 32px;
  font-size: 24px;
  line-height: 1.9;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .recruit-top__message-text {
    text-align: left;
    font-size: 19px;
  }
}
.recruit-top__message-history {
  font-size: var(--font-message-history);
  line-height: 1.8;
  color: #666;
}
@media screen and (max-width: 767px) {
  .recruit-top__message-history {
    text-align: left;
  }
}
.recruit-top__photos {
  margin-top: 32px;
}
.recruit-top__photo {
  display: block;
  width: 100%;
  height: auto;
}

.recruit-top-list {
  padding-block: var(--section-space);
}
.recruit-top-list__title {
  margin-bottom: 32px;
  font-size: var(--font-section-title);
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-heading);
}
@media screen and (max-width: 767px) {
  .recruit-top-list__title {
    font-size: 22px;
  }
}
.recruit-top-list__items {
  display: flex;
  flex-direction: column;
  gap: var(--item-gap);
}

.recruit-top-item__link {
  display: flex;
  gap: var(--item-gap);
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.recruit-top-item__link:hover, .recruit-top-item__link:focus-visible {
  opacity: 0.6;
}
.recruit-top-item__link:focus-visible {
  outline: 2px solid var(--color-main);
  outline-offset: 4px;
}
@media screen and (max-width: 767px) {
  .recruit-top-item__link {
    flex-direction: column;
    gap: 16px;
  }
}
.recruit-top-item__logo {
  flex-shrink: 0;
  width: var(--item-logo-size);
  height: var(--item-logo-size);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .recruit-top-item__logo {
    width: 120px;
    height: 120px;
  }
}
.recruit-top-item__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .recruit-top-item__logo img {
    padding: 16px;
  }
}
.recruit-top-item__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.recruit-top-item__title {
  margin-bottom: 16px;
  font-size: var(--font-item-title);
  font-weight: 500;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .recruit-top-item__title {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.recruit-top-item__text {
  font-size: var(--font-size-body-pc);
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .recruit-top-item__text {
    font-size: var(--font-size-body-sp);
  }
}

#brand,
#tagline,
#philosophy,
#message,
#history {
  scroll-margin-top: 56px;
}
@media screen and (min-width: 768px) {
  #brand,
  #tagline,
  #philosophy,
  #message,
  #history {
    scroll-margin-top: 150px;
  }
}

.about-top {
  --content-width: 1280px;
  --content-padding: 16px;
  --color-text: #4c4948;
  --color-heading: #4c4948;
  --color-border: #dddddd;
  --color-main: #ed7a25;
  --font-page-title: 64px;
  --font-section-title: 37px;
  --section-space: 56px;
  --brand-mark-size: 280px;
  --brand-logo-width: 527px;
  --brand-logo-ratio: 224 / 62;
  overflow-x: hidden;
}
.about-top__inner {
  margin-inline: auto;
  max-width: var(--content-width);
  width: 100%;
  padding-inline: var(--content-padding);
}
@media screen and (min-width: 1280px) {
  .about-top__inner {
    padding-inline: 0;
  }
}
.about-top__title-row {
  padding-top: 24px;
}
@media screen and (max-width: 767px) {
  .about-top__title-row {
    padding-top: 16px;
  }
}
.about-top__title-row .about-top__inner {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .about-top__title-row .about-top__inner {
    padding-bottom: 20px;
  }
}
.about-top__title {
  font-size: var(--font-page-title);
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .about-top__title {
    font-size: 28px;
  }
}
.about-top__intro {
  margin-top: 32px;
  margin-bottom: 32px;
  font-size: var(--font-size-body-pc);
  line-height: 1.7;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .about-top__intro {
    font-size: var(--font-size-body-sp);
  }
}

.about-top-section {
  padding-top: var(--section-space);
  border-top: 1px solid var(--color-border);
}
#brand .about-top-section, #philosophy .about-top-section, .about-top-section--tagline {
  padding-top: 32px;
}
.about-top-section__title {
  margin-bottom: 32px;
  font-size: var(--font-section-title);
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-heading);
}
@media screen and (max-width: 767px) {
  .about-top-section__title {
    font-size: 22px;
  }
}
.about-top-section__note {
  margin-bottom: 24px;
  font-size: var(--font-size-body-pc);
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .about-top-section__note {
    font-size: var(--font-size-body-sp);
  }
}

.about-top-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 150px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .about-top-brand {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.about-top-brand__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0;
}
.about-top-brand__mark {
  width: var(--brand-mark-size);
  height: auto;
}
@media screen and (max-width: 767px) {
  .about-top-brand__mark {
    width: 160px;
  }
}
.about-top-brand__logo {
  width: var(--brand-logo-width);
  height: auto;
  aspect-ratio: var(--brand-logo-ratio);
}
@media screen and (max-width: 767px) {
  .about-top-brand__logo {
    width: 186px;
  }
}
.about-top-brand__caption {
  font-size: 13px;
  color: #666;
}

.about-top-tagline-image {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-top: 32px;
  margin-bottom: 40px;
}

.about-top-philosophy-image {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}

.about-top-greeting__text {
  margin-bottom: 24px;
  font-size: var(--font-size-body-pc);
  line-height: 1.7;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .about-top-greeting__text {
    font-size: var(--font-size-body-sp);
  }
}

.about-top-greeting__signature {
  text-align: right;
  font-size: var(--font-size-body-pc);
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .about-top-greeting__signature {
    font-size: var(--font-size-body-sp);
  }
}

.about-top-greeting__signature-accent {
  color: var(--color-main);
}

.about-top-greeting__name-image {
  display: inline-block;
  vertical-align: bottom;
  margin-left: 8px;
  width: auto;
  height: 70px;
}
@media screen and (max-width: 767px) {
  .about-top-greeting__name-image {
    display: block;
    margin-left: auto;
    margin-top: 4px;
    height: 50px;
  }
}

.about-top-history__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  padding-block: 20px;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .about-top-history__row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-block: 14px;
  }
}
.about-top-history__year {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .about-top-history__year {
    white-space: normal;
  }
}
.about-top-history__text {
  font-size: var(--font-size-body-pc);
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .about-top-history__text {
    font-size: var(--font-size-body-sp);
  }
}

.faq-list {
  --content-width: 1200px;
  --content-padding: 16px;
  --color-text: #4c4948;
  --color-heading: #4c4948;
  --color-border: #dddddd;
  --color-main: #ed7a25;
  --font-page-title: 64px;
  --font-section-title: 37px;
  --section-space: 56px;
  overflow-x: hidden;
}
.faq-list__inner {
  margin-inline: auto;
  max-width: var(--content-width);
  width: 100%;
  padding-inline: var(--content-padding);
}
@media screen and (min-width: 1280px) {
  .faq-list__inner {
    padding-inline: 0;
  }
}
.faq-list__title-row {
  padding-block: 24px 32px;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .faq-list__title-row {
    padding-block: 16px 20px;
  }
}
.faq-list__title {
  font-size: var(--font-page-title);
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .faq-list__title {
    font-size: 28px;
  }
}
.faq-list__intro {
  margin-top: 32px;
  font-size: var(--font-size-body-pc);
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .faq-list__intro {
    font-size: var(--font-size-body-sp);
  }
}
.faq-list__empty {
  margin-top: 40px;
  padding: 40px;
  text-align: center;
  font-size: 15px;
  color: #999;
  background-color: #f7f7f7;
  border-radius: 4px;
}

.faq-list-categories {
  margin-top: var(--section-space);
}
.faq-list-categories__title {
  margin-bottom: 16px;
  font-size: var(--font-section-title);
  font-weight: 500;
  color: var(--color-heading);
}
@media screen and (max-width: 767px) {
  .faq-list-categories__title {
    font-size: 20px;
  }
}
.faq-list-categories__select-wrap {
  position: relative;
}
.faq-list-categories__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color-scheme: light;
  width: 100%;
  min-height: 100px;
  padding: 20px 64px 20px 32px;
  border: 1px solid var(--color-main);
  border-radius: 4px;
  background-color: #fff;
  background-image: none;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 24px;
  line-height: 1.5;
  color: var(--color-text);
  cursor: pointer;
}
.faq-list-categories__select::-ms-expand {
  display: none;
}
.faq-list-categories__select:focus {
  outline: none;
}
.faq-list-categories__select:focus-visible {
  outline: 2px solid var(--color-main);
  outline-offset: 2px;
}
@media screen and (max-width: 767px) {
  .faq-list-categories__select {
    min-height: 64px;
    padding: 14px 48px 14px 20px;
    font-size: 19px;
  }
}
.faq-list-categories__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 16px;
  height: 16px;
  border-right: 3px solid var(--color-main);
  border-bottom: 3px solid var(--color-main);
  transform: translate(0, -65%) rotate(45deg);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .faq-list-categories__select-wrap::after {
    right: 20px;
    width: 12px;
    height: 12px;
    border-width: 2px;
  }
}

.faq-list-section {
  padding-top: var(--section-space);
  scroll-margin-top: 24px;
}
.faq-list-section__title {
  margin-bottom: 20px;
  font-size: var(--font-section-title);
  font-weight: 500;
  color: var(--color-heading);
}
@media screen and (max-width: 767px) {
  .faq-list-section__title {
    font-size: 20px;
  }
}

.faq-list-accordion__item {
  margin-bottom: 30px;
}
.faq-list-accordion__item:last-child {
  margin-bottom: 0;
}
.faq-list-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 100px;
  gap: 16px;
  padding: 20px 32px;
  text-align: left;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text);
  background-color: #e5e5e5;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.faq-list-accordion__trigger:hover, .faq-list-accordion__trigger[aria-expanded=true] {
  color: #fff;
  background-color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .faq-list-accordion__trigger {
    min-height: 72px;
    padding: 16px 20px;
    font-size: 19px;
  }
}
.faq-list-accordion__question {
  flex: 1;
}
.faq-list-accordion__icon {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  .faq-list-accordion__icon {
    width: 22px;
    height: 22px;
  }
}
.faq-list-accordion__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-right: 3px solid var(--color-main);
  border-bottom: 3px solid var(--color-main);
  transform: translate(-50%, -60%) rotate(-45deg);
  transition: transform 0.25s ease, border-color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .faq-list-accordion__icon::before {
    width: 11px;
    height: 11px;
    border-width: 2px;
  }
}
.faq-list-accordion__trigger:hover .faq-list-accordion__icon::before, .faq-list-accordion__trigger[aria-expanded=true] .faq-list-accordion__icon::before {
  border-color: #fff;
  transform: translate(-50%, -40%) rotate(45deg);
}
.faq-list-accordion__body {
  overflow: hidden;
  transition: height 0.3s ease;
}
.faq-list-accordion__body[hidden] {
  display: block;
  height: 0;
}
.faq-list-accordion__answer {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 28px;
  background-color: #fff;
}
.faq-list-accordion__answer-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}
.faq-list-accordion__answer-text {
  font-size: var(--font-size-body-pc);
  line-height: 1.7;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .faq-list-accordion__answer-text {
    font-size: var(--font-size-body-sp);
  }
}
.faq-list-accordion__answer-text p + p {
  margin-top: 1em;
}

.recruit-detail {
  --content-width: 1280px;
  --content-padding: 16px;
  --color-text: #231815;
  --color-heading: #231815;
  --color-border: #dddddd;
  --color-main: #ed7a25;
  --color-dark: #2e2f31;
  --color-label-bg: #e5e5e5;
  --font-page-title: 64px;
  --font-section-title: 37px;
  --section-space: 48px;
  --table-label-width: 280px;
  overflow-x: hidden;
}
.recruit-detail__inner {
  margin-inline: auto;
  max-width: var(--content-width);
  width: 100%;
  padding-inline: var(--content-padding);
}
@media screen and (min-width: 1280px) {
  .recruit-detail__inner {
    padding-inline: 0;
  }
}

.recruit-detail-header {
  padding-block: 24px 32px;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .recruit-detail-header {
    padding-block: 16px 20px;
  }
}
.recruit-detail-header__title {
  font-size: var(--font-page-title);
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .recruit-detail-header__title {
    font-size: 24px;
  }
}

.recruit-detail-section {
  padding-top: var(--section-space);
}
.recruit-detail-section__title {
  margin-bottom: 20px;
  font-size: var(--font-section-title);
  font-weight: 500;
  color: var(--color-heading);
}
@media screen and (max-width: 767px) {
  .recruit-detail-section__title {
    font-size: 20px;
  }
}

.recruit-detail-table {
  border-top: 1px solid var(--color-border);
}
.recruit-detail-table__row {
  display: grid;
  grid-template-columns: var(--table-label-width) 1fr;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .recruit-detail-table__row {
    grid-template-columns: 1fr;
  }
}
.recruit-detail-table__label {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  background-color: var(--color-label-bg);
}
@media screen and (max-width: 767px) {
  .recruit-detail-table__label {
    padding-bottom: 8px;
  }
}
.recruit-detail-table__value {
  padding: 20px 24px;
  font-size: var(--font-size-body-pc);
  line-height: 1.9;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .recruit-detail-table__value {
    padding-top: 8px;
    font-size: var(--font-size-body-sp);
  }
}

.recruit-detail-tel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 480px;
  min-height: 72px;
  padding: 14px 28px;
  margin-bottom: 20px;
  color: #fff;
  background-color: var(--color-dark);
  border-radius: 4px;
  transition: opacity 0.2s ease;
}
.recruit-detail-tel-btn:hover {
  opacity: 0.85;
}
.recruit-detail-tel-btn__label {
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
}
.recruit-detail-tel-btn__number {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
}
.recruit-detail-tel-btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .recruit-detail-tel-btn {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    max-width: none;
  }
}

.recruit-detail-address {
  font-size: var(--font-size-body-pc);
  line-height: 1.9;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .recruit-detail-address {
    font-size: var(--font-size-body-sp);
  }
}
.recruit-detail-address a {
  color: var(--color-main);
  text-decoration: underline;
}

.recruit-detail-privacy {
  padding-block: var(--section-space);
  border-top: 1px solid var(--color-border);
}
.recruit-detail-privacy__title {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}
.recruit-detail-privacy__text {
  font-size: 13px;
  line-height: 1.8;
  color: #666;
}

.company-profile {
  --content-width: 1280px;
  --content-padding: 16px;
  --color-text: #231815;
  --color-heading: #231815;
  --color-border: #dddddd;
  --color-main: #ed7a25;
  --color-label-bg: #e5e5e5;
  --font-page-title: 64px;
  --font-section-title: 37px;
  --section-space: 72px;
  --table-label-width: 320px;
  overflow-x: hidden;
}
.company-profile__inner {
  margin-inline: auto;
  max-width: var(--content-width);
  width: 100%;
  padding-inline: var(--content-padding);
}
@media screen and (min-width: 1280px) {
  .company-profile__inner {
    padding-inline: 0;
  }
}
.company-profile__title-row {
  padding-top: 24px;
}
@media screen and (max-width: 767px) {
  .company-profile__title-row {
    padding-top: 16px;
  }
}
.company-profile__title-row .company-profile__inner {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .company-profile__title-row .company-profile__inner {
    padding-bottom: 20px;
  }
}
.company-profile__title {
  font-size: var(--font-page-title);
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .company-profile__title {
    font-size: 28px;
  }
}

.company-profile-section {
  padding-top: var(--section-space);
}
.company-profile-section__title {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--font-section-title);
  font-weight: 500;
  color: var(--color-heading);
}
@media screen and (max-width: 767px) {
  .company-profile-section__title {
    font-size: 20px;
  }
}

.company-profile-table__row {
  display: grid;
  grid-template-columns: var(--table-label-width) 1fr;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .company-profile-table__row {
    grid-template-columns: 1fr;
  }
}
.company-profile-table__label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 24px;
  font-size: var(--font-size-body-pc);
  font-weight: 700;
  color: var(--color-text);
  background-color: var(--color-label-bg);
}
@media screen and (max-width: 767px) {
  .company-profile-table__label {
    justify-content: flex-start;
    text-align: left;
    padding-bottom: 8px;
  }
}
.company-profile-table__value {
  padding: 20px 24px;
  font-size: 22px;
  line-height: 1.7;
  color: var(--color-text);
}
.company-profile-table__value a {
  color: var(--color-main);
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .company-profile-table__value {
    padding-top: 8px;
    font-size: var(--font-size-body-sp);
  }
}

.company-profile-business-list {
  column-count: 2;
  column-gap: 32px;
}
.company-profile-business-list li {
  break-inside: avoid;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .company-profile-business-list {
    column-count: 1;
  }
}

.company-profile-revenue {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.company-profile-revenue__box {
  margin-inline: 0;
}
@media screen and (max-width: 767px) {
  .company-profile-revenue__box {
    margin-inline: 0;
    padding: 16px;
  }
}
.company-profile-revenue__image {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}
.company-profile-revenue__period {
  margin-top: 16px;
  margin-inline: 40px;
  text-align: center;
  font-size: 13px;
  color: #666;
}
@media screen and (max-width: 767px) {
  .company-profile-revenue__period {
    margin-inline: 0;
  }
}

.l-page__hero {
  padding: 24px 0 0;
}
@media screen and (max-width: 767px) {
  .l-page__hero {
    padding: 16px 0 0;
  }
}
.l-page__hero-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media screen and (min-width: 1280px) {
  .l-page__hero-inner {
    padding-inline: 0;
  }
}
.l-page__hero-title {
  font-size: 64px;
  font-weight: 500;
  color: #4c4948;
  border-bottom: 2px solid #f5f5f5;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .l-page__hero-title {
    font-size: 28px;
  }
}
.l-page__body {
  padding: 48px 0 80px;
}
@media screen and (max-width: 767px) {
  .l-page__body {
    padding: 32px 0 60px;
  }
}
.l-page__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media screen and (min-width: 1280px) {
  .l-page__inner {
    padding-inline: 0;
  }
}

.entry-content {
  line-height: 1.7;
  font-size: var(--font-size-body-pc, 24px);
}
@media screen and (max-width: 767px) {
  .entry-content {
    font-size: var(--font-size-body-sp, 19px);
  }
}
.entry-content h2 {
  font-size: 32px;
  font-weight: 500;
  margin: 2em 0 1em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #ed7a25;
}
@media screen and (max-width: 767px) {
  .entry-content h2 {
    font-size: 18px;
  }
}
.entry-content h3 {
  font-size: 19px;
  font-weight: 500;
  margin: 1.5em 0 0.75em;
  padding-left: 12px;
  border-left: 4px solid #ed7a25;
}
@media screen and (max-width: 767px) {
  .entry-content h3 {
    font-size: 16px;
  }
}
.entry-content p {
  margin-bottom: 1em;
}
.entry-content ul,
.entry-content ol {
  margin: 1em 0 1em 1.5em;
  list-style: revert;
}
.entry-content img {
  height: auto;
  border-radius: 4px;
}
.entry-content a {
  color: #ed7a25;
  text-decoration: underline;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: var(--font-size-body-pc, 24px);
}
@media screen and (max-width: 767px) {
  .entry-content table {
    font-size: var(--font-size-body-sp, 19px);
  }
}
.entry-content table th,
.entry-content table td {
  padding: 10px 14px;
  border: 1px solid #dddddd;
  vertical-align: top;
}
.entry-content table th {
  background-color: #f5f5f5;
  font-weight: 700;
}

.p-contact__intro {
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 1.9;
}
.p-contact .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}
.p-contact .wpcf7-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 14px;
}
.p-contact .wpcf7-form input[type=text],
.p-contact .wpcf7-form input[type=email],
.p-contact .wpcf7-form input[type=tel],
.p-contact .wpcf7-form textarea,
.p-contact .wpcf7-form select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  font-size: 15px;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  transition: border-color 0.2s ease;
}
.p-contact .wpcf7-form input[type=text]:focus,
.p-contact .wpcf7-form input[type=email]:focus,
.p-contact .wpcf7-form input[type=tel]:focus,
.p-contact .wpcf7-form textarea:focus,
.p-contact .wpcf7-form select:focus {
  outline: none;
  border-color: #ed7a25;
}
.p-contact .wpcf7-form textarea {
  height: 180px;
  resize: vertical;
}
.p-contact .wpcf7-form .wpcf7-submit {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 32px auto 0;
  padding: 16px;
  background-color: #ed7a25;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  transition: opacity 0.2s ease;
}
.p-contact .wpcf7-form .wpcf7-submit:hover {
  opacity: 0.85;
}

.p-sitemap__section {
  margin-bottom: 40px;
}
.p-sitemap__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ed7a25;
}
.p-sitemap__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.p-sitemap__item a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #dddddd;
  transition: color 0.2s ease;
}
.p-sitemap__item a::before {
  content: "›";
  color: #ed7a25;
  font-size: 16px;
}
.p-sitemap__item a:hover {
  color: #ed7a25;
}
.p-sitemap__item--sub a {
  padding-left: 20px;
}

.p-archive__filter {
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.p-archive__filter-btn {
  padding: 6px 16px;
  border: 1px solid #dddddd;
  border-radius: 2px;
  font-size: 13px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  background: none;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}
.p-archive__filter-btn:hover, .p-archive__filter-btn.is-active {
  background-color: #ed7a25;
  border-color: #ed7a25;
  color: #fff;
}
.p-archive__list {
  margin-bottom: 48px;
}
.p-archive__empty {
  padding: 48px 0;
  text-align: center;
  color: #666;
  font-size: 15px;
}

.c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 32px 0;
}
.c-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #dddddd;
  font-size: 14px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.c-pagination .page-numbers:hover {
  background-color: #ed7a25;
  border-color: #ed7a25;
  color: #fff;
}
.c-pagination .page-numbers.current {
  background-color: #ed7a25;
  border-color: #ed7a25;
  color: #fff;
}
.c-pagination .page-numbers.prev, .c-pagination .page-numbers.next {
  font-size: 12px;
}

.p-single__header {
  margin-bottom: 32px;
}
.p-single__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.p-single__date {
  font-size: 13px;
  color: #666;
}
.p-single__new {
  display: inline-block;
  padding: 2px 8px;
  background-color: #ed7a25;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 2px;
}
.p-single__cat {
  display: inline-block;
  padding: 2px 12px;
  background-color: #ed7a25;
  color: #fff;
  font-size: 11px;
  border-radius: 2px;
}
.p-single__title {
  font-size: var(--font-size-body-pc, 24px);
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-single__title {
    font-size: var(--font-size-body-sp, 19px);
  }
}
.p-single__thumbnail {
  margin-bottom: 32px;
  border-radius: 4px;
  overflow: hidden;
}
.p-single__thumbnail img {
  width: 100%;
  height: auto;
}
.p-single__body {
  border-top: 1px solid #dddddd;
  padding-top: 32px;
}
.p-single__nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #dddddd;
}
@media screen and (max-width: 767px) {
  .p-single__nav {
    flex-direction: column;
  }
}
.p-single__nav-prev, .p-single__nav-next {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px;
  border: 1px solid #dddddd;
  font-size: 13px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.p-single__nav-prev:hover, .p-single__nav-next:hover {
  border-color: #ed7a25;
  color: #ed7a25;
}
.p-single__nav-next {
  justify-content: flex-end;
  text-align: right;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-single__nav-next {
    margin-left: 0;
  }
}

.p-404 {
  padding: 80px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-404 {
    padding: 48px 0;
  }
}
.p-404__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media screen and (min-width: 1280px) {
  .p-404__inner {
    padding-inline: 0;
  }
}
.p-404__number {
  font-size: 120px;
  font-weight: 700;
  color: #ed7a25;
  line-height: 1;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .p-404__number {
    font-size: 72px;
  }
}
.p-404__title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .p-404__title {
    font-size: 18px;
  }
}
.p-404__text {
  font-size: var(--font-size-body-pc, 24px);
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-404__text {
    font-size: var(--font-size-body-sp, 19px);
  }
}
.p-404__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background-color: #ed7a25;
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}
.p-404__btn:hover {
  opacity: 0.85;
}

.carbon-neutral-page {
  --content-width: 1280px;
  --content-padding: 16px;
  --color-text: #4c4948;
  --color-heading: #4c4948;
  --color-border: #dddddd;
  --color-main: #ed7a25;
  --font-page-title: 64px;
  --font-section-title: 48px;
  --section-space: 56px;
  overflow-x: hidden;
}
.carbon-neutral-page__inner {
  margin-inline: auto;
  max-width: var(--content-width);
  width: 100%;
  padding-inline: var(--content-padding);
}
@media screen and (min-width: 1280px) {
  .carbon-neutral-page__inner {
    padding-inline: 0;
  }
}
.carbon-neutral-page__title-row {
  padding-block: 24px 32px;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .carbon-neutral-page__title-row {
    padding-block: 16px 20px;
  }
}
.carbon-neutral-page__title {
  font-size: var(--font-page-title);
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .carbon-neutral-page__title {
    font-size: 28px;
  }
}

.carbon-neutral-content {
  padding-top: 56px;
}
.carbon-neutral-content .carbon-neutral-lead {
  text-align: center;
}
.carbon-neutral-content .carbon-neutral-lead h2 {
  margin: 0 0 24px;
  padding-bottom: 0;
  border-bottom: none;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text, #4c4948);
}
@media screen and (max-width: 767px) {
  .carbon-neutral-content .carbon-neutral-lead h2 {
    font-size: 26px;
  }
}
.carbon-neutral-content .carbon-neutral-lead p {
  margin-bottom: 0;
  font-size: var(--font-size-body-pc);
  line-height: 1.7;
  color: var(--color-text, #4c4948);
}
@media screen and (max-width: 767px) {
  .carbon-neutral-content .carbon-neutral-lead p {
    text-align: left;
    font-size: var(--font-size-body-sp);
  }
}
.carbon-neutral-content .carbon-neutral-history {
  margin-top: 32px;
}
.carbon-neutral-content .carbon-neutral-history p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #666;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .carbon-neutral-content .carbon-neutral-history p {
    text-align: left;
  }
}
.carbon-neutral-content .carbon-neutral-history__photos {
  display: flex;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .carbon-neutral-content .carbon-neutral-history__photos {
    flex-wrap: wrap;
  }
}
.carbon-neutral-content .carbon-neutral-history__photos img {
  display: block;
  flex: 1 1 0;
  min-width: 0;
  height: auto;
  aspect-ratio: 320/230;
  object-fit: cover;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .carbon-neutral-content .carbon-neutral-history__photos img {
    flex: 1 1 50%;
  }
}

.carbon-neutral-recruit-list {
  padding-block: 56px;
}
.carbon-neutral-recruit-list__title {
  margin-bottom: 32px;
  font-size: var(--font-section-title, 48px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-heading, #4c4948);
}
@media screen and (max-width: 767px) {
  .carbon-neutral-recruit-list__title {
    font-size: 22px;
  }
}
.carbon-neutral-recruit-list__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.carbon-neutral-recruit-item__link {
  display: flex;
  gap: 40px;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.carbon-neutral-recruit-item__link:hover, .carbon-neutral-recruit-item__link:focus-visible {
  opacity: 0.6;
}
.carbon-neutral-recruit-item__link:focus-visible {
  outline: 2px solid var(--color-main, #ed7a25);
  outline-offset: 4px;
}
@media screen and (max-width: 767px) {
  .carbon-neutral-recruit-item__link {
    flex-direction: column;
    gap: 16px;
  }
}
.carbon-neutral-recruit-item__image {
  flex-shrink: 0;
  display: block;
  width: 220px;
  height: 220px;
  border: 1px solid var(--color-border, #dddddd);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .carbon-neutral-recruit-item__image {
    width: 120px;
    height: 120px;
  }
}
.carbon-neutral-recruit-item__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .carbon-neutral-recruit-item__image img {
    padding: 16px;
  }
}
.carbon-neutral-recruit-item__image--empty {
  background-color: #fff;
}
.carbon-neutral-recruit-item__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.carbon-neutral-recruit-item__title {
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 500;
  color: var(--color-text, #4c4948);
}
@media screen and (max-width: 767px) {
  .carbon-neutral-recruit-item__title {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.carbon-neutral-recruit-item__text {
  font-size: var(--font-size-body-pc);
  line-height: 1.8;
  color: var(--color-text, #4c4948);
}
@media screen and (max-width: 767px) {
  .carbon-neutral-recruit-item__text {
    font-size: var(--font-size-body-sp);
  }
}

/*# sourceMappingURL=main.css.map */
