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

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: normal;
  tab-size: 2;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
  box-sizing: border-box;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: none;
  box-shadow: none;
  outline-offset: 0;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:root {
  --font-noto: "Noto Sans JP", sans-serif;
  --font-min: "Noto Serif JP", serif;
  --font-en: "Josefin Sans", sans-serif;
  --c-black: #454649;
  --c-red: #d7263d;
  --c-beige: #f7f5f3;
  --icon-arrow-right: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMy41IiBoZWlnaHQ9IjI0LjEyMSIgdmlld0JveD0iMCAwIDIzLjUgMjQuMTIxIj4KICA8ZyBpZD0iSWNvbl9mZWF0aGVyLWFycm93LXJpZ2h0IiBkYXRhLW5hbWU9Ikljb24gZmVhdGhlci1hcnJvdy1yaWdodCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTYuNzUgLTYuNDM5KSI+CiAgICA8cGF0aCBpZD0i44OR44K5XzI0IiBkYXRhLW5hbWU9IuODkeOCuSAyNCIgZD0iTTcuNSwxOGgyMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAwLjUpIiBmaWxsPSJub25lIiBzdHJva2U9IiNkNzI2M2QiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLW...);
}

/*//////////////*/
/*--- common ---*/
/*//////////////*/
html {
  scroll-behavior: smooth;
  font-size: 10px;
}

body {
  font-family: var(--font-noto);
  color: var(--c-black);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.707;
  overflow-x: clip;
}
body.drawer-open {
  overflow: hidden;
}

.w100 {
  width: 100%;
  height: auto;
}

.wbr {
  display: inline-block;
}

:has(> wbr) {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

:where(.container) {
  width: 100%;
  max-width: 1258px;
  padding-inline: 16px;
  margin-inline: auto;
}

:where(.container--sm) {
  max-width: 1000px;
}

.a-link {
  color: var(--c-red);
  text-decoration: underline;
  word-break: break-all;
}
@media (any-hover: hover) {
  .a-link:hover {
    text-decoration: none;
  }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 64px;
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  padding: 12px 16px 0;
  overflow-x: clip;
}
.header-logo {
  width: 135px;
  flex: 0 0 auto;
}
.header-nav {
  position: fixed;
  top: 64px;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 50;
  width: 100%;
  height: calc(100dvh - 64px);
  padding: 24px 32px 32px 32px;
  background-color: #fff;
  overflow: auto;
  transform: translateX(100%);
  transition: transform 0.5s ease;
}
.drawer-open .header-nav {
  transform: translateX(0);
}

.gnav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
}
.drawer-open .gnav {
  opacity: 1;
}
.gnav-list {
  border-top: 1px solid var(--c-red);
  order: 2;
  margin-top: 24px;
  width: 100%;
  margin-inline: auto;
  max-width: 580px;
}
.gnav-list__item {
  border-bottom: 1px solid var(--c-red);
  padding-inline: 10px;
  position: relative;
  padding: 14px 17px 14px 10px;
}
.gnav-list .accordion-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gnav-list .accordion-toggle {
  background: none;
  border: none;
  padding: 0;
  margin-left: 8px;
  cursor: pointer;
}
.gnav-list .accordion-toggle .accordion-icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--c-red);
  border-bottom: 2px solid var(--c-red);
  transform: rotate(45deg);
  transition: transform 0.5s ease;
  position: relative;
}
.gnav-list .accordion-toggle .accordion-icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.gnav-list .accordion-toggle.is-open .accordion-icon {
  transform: rotate(-135deg);
}
.gnav__anch {
  font-weight: 600;
}
.gnav-sub-list {
  width: 100%;
  height: 0;
  padding: 0;
  overflow: hidden;
  transition: 0.3s;
}
.gnav-sub-list__item {
  margin-top: 10px;
  margin-left: 30px;
}
.gnav-sub-list.is-open {
  height: auto;
  height: calc-size(auto, size);
}
.gnav-sub__anch::before {
  content: "ー";
  margin-right: 4px;
}
.gnav-inquiry {
  order: 1;
  display: flex;
  justify-content: center;
  column-gap: 18px;
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
}
.gnav-inquiry__item {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
}
.gnav-inquiry__anch {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 4px;
  flex: 0 0 auto;
  background-color: #fff;
  border: 1px solid var(--c-red);
  padding: 10px 12px;
  text-align: center;
  width: 100%;
  height: 48px;
  font-weight: 500;
}
.gnav-inquiry__anch.has-logo {
  border-radius: 5px;
}
.gnav-inquiry__anch.has-inquiry {
  background-color: var(--c-red);
  padding-inline: 8px;
  color: #fff;
}
.gnav-inquiry__anch.has-inquiry:before {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  height: 100%;
  background: url(img/common/icon_mail.svg) no-repeat center;
  background-size: contain;
  margin-top: 2px;
}
.gnav-policy {
  order: 3;
  margin-top: auto;
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  white-space: nowrap;
  max-width: 580px;
  margin-inline: auto;
}

.drawer-tgl {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: 64px;
  height: 64px;
}
.drawer-tgl-btn {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
.drawer-tgl-btn__bar {
  position: relative;
  width: 24px;
  height: 2px;
  background-color: var(--c-red);
}
.drawer-tgl-btn__bar:before, .drawer-tgl-btn__bar:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c-red);
  transition: transform 0.3s ease-out;
}
.drawer-tgl-btn__bar:before {
  top: -9px;
}
.drawer-tgl-btn__bar:after {
  bottom: -9px;
}
.drawer-open .drawer-tgl-btn__bar {
  background-color: transparent;
}
.drawer-open .drawer-tgl-btn__bar:before {
  transform: translateY(9px) rotate(-45deg);
}
.drawer-open .drawer-tgl-btn__bar:after {
  transform: translateY(-9px) rotate(45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 12px;
  height: 54px;
  padding-inline: 16px;
  margin-top: 28px;
  background-color: #fff;
  border: 1px solid var(--c-red);
}
.btn:after {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  aspect-ratio: 1;
  background: url(img/common/icon_arrow-right-red.svg) no-repeat center/contain;
  transition: translate 0.3s cubic-bezier(0, 0, 0, 1);
}
.btn__lbl {
  flex: 0 1 auto;
  color: var(--c-red);
  font-size: 1.8rem;
  white-space: nowrap;
  text-box: trim-both cap alphabetic;
}
@media (any-hover: hover) {
  .btn:hover:after {
    translate: 6px;
  }
}

.txt-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 12px;
  margin-top: 12px;
}
.txt-link:after {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  aspect-ratio: 1;
  background: url(img/common/icon_arrow-right-red.svg) no-repeat center/contain;
  transition: translate 0.3s cubic-bezier(0, 0, 0, 1);
}
.txt-link__lbl {
  flex: 0 1 auto;
  color: var(--c-red);
  font-size: 1.7rem;
  white-space: nowrap;
  text-box: trim-both cap alphabetic;
}
@media (any-hover: hover) {
  .txt-link:hover:after {
    translate: 4px;
  }
}

.cover {
  background-color: var(--c-beige);
  height: 160px;
  position: relative;
}
.cover-innr {
  position: relative;
}
.cover-bg__img {
  margin-left: auto;
  height: 160px;
}
.cover-ttl {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-weight: 500;
}
.cover-ttl__en {
  display: block;
  font-family: var(--font-en);
  font-size: 1.2rem;
  color: var(--c-red);
}
.cover-ttl__ja {
  font-family: var(--font-min);
  font-size: 3.2rem;
  letter-spacing: 0.05em;
}

.breadcrumbs {
  position: absolute;
  top: calc(100% + 27px);
  right: 0;
  left: 0;
  padding-block: 8px;
  padding-left: 16px;
  translate: 0 -50%;
  overflow: auto;
}
.breadcrumbs-list {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.breadcrumbs-list__item {
  display: flex;
  column-gap: 7px;
  flex: 0 0 auto;
  color: #707070;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}
.breadcrumbs-list__item:not(:nth-last-of-type(1)):after {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border: 1px solid var(--c-black);
  border-bottom: none;
  border-left: none;
  translate: 0 3px 0;
  rotate: 45deg;
}
.breadcrumbs-list__item:nth-last-of-type(1) {
  pointer-events: none;
  padding-right: 16px;
}
.breadcrumbs-list__anch:hover {
  opacity: 0.6;
}

.page__heading {
  font-size: 2.1rem;
  font-family: var(--font-min);
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 42px 35px 36px;
  color: #fff;
  background-color: #454649;
}
.footer-bg {
  position: absolute;
  bottom: 0;
  left: 16px;
  width: 166.6666666667%;
  max-width: 800px;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.footer-logo {
  width: 240px;
  margin-inline: auto;
}
.footer-address {
  display: flex;
  justify-content: center;
}
.footer-address__innr {
  margin-top: 12px;
  font-size: 1.5rem;
  font-style: normal;
  line-height: 1.8571;
}
.footer-gnav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
  margin-block: 38px;
  text-align: left;
}
.footer-gnav__item {
  font-size: 1.7rem;
  font-weight: 600;
}
.footer-gnav__item.is-news {
  margin-top: 20px;
}
.footer-gnav__item.is-inq {
  margin-top: 12px;
}
.footer-gnav-sub__item {
  margin-top: 8px;
  margin-left: 20px;
}
.footer-gnav-sub__anch {
  font-size: 1.4rem;
}
.footer-gnav-sub__anch::before {
  content: "ー";
  margin-right: 4px;
}
.footer-certification {
  border-radius: 6px;
  overflow: hidden;
  max-width: 362px;
}
.footer-policy {
  margin-top: 24px;
}
.footer-policy__item {
  text-align: left;
  margin-bottom: 12px;
}
.footer-copyright {
  margin-top: 50px;
  font-size: 1.4rem;
}
.footer .top-btn {
  position: fixed;
  z-index: 40;
  bottom: 4%;
  right: clamp(16px, 3vw, 126px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.footer .top-btn__innr {
  position: relative;
  background-color: var(--c-red);
  border: 2px solid #fff;
  border-radius: 50%;
  width: 68px;
  height: 68px;
  cursor: pointer;
  padding-top: 8px;
}
.footer .top-btn__innr::before {
  width: 14px;
  height: 14px;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: top 0.5s cubic-bezier(0, 0, 0, 1);
}
.scrld .footer .top-btn {
  opacity: 1;
  visibility: visible;
}
@media (any-hover: hover) {
  .footer .top-btn:hover .top-btn__innr::before {
    top: 50%;
  }
}

.sec-ttl {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  margin-bottom: 40px;
  font-weight: 500;
}
.sec-ttl__en {
  font-family: var(--font-en);
  color: var(--c-red);
  font-size: 1.4rem;
  line-height: 1.2;
}
.sec-ttl__ja {
  font-family: var(--font-min);
  font-size: 2.8rem;
}

.footer-inquiry {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  padding: 24px;
  margin: 80px auto;
  background-color: var(--c-red);
}
.footer-inquiry-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
  pointer-events: none;
}
.footer-inquiry-bg__img {
  width: auto;
  height: 100%;
  object-position: center right;
  object-fit: cover;
}
.footer-inquiry__txt {
  color: #fff;
}
.footer-inquiry__ttl {
  margin-bottom: 16px;
  font-family: var(--font-min);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
}
.footer-inquiry-to {
  margin-left: auto;
}
.footer-inquiry-to-btn {
  display: flex;
  align-items: center;
  column-gap: 16px;
  height: 56px;
  padding-inline: 20px;
  background-color: #fff;
}
.footer-inquiry-to-btn:after {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  aspect-ratio: 1;
  background: url(img/common/icon_arrow-right-red.svg) no-repeat center/contain;
  transition: translate 0.3s cubic-bezier(0, 0, 0, 1);
}
.footer-inquiry-to-btn__lbl {
  flex: 0 0 auto;
  color: var(--c-red);
  font-size: 1.6rem;
}
@media (any-hover: hover) {
  .footer-inquiry-to-btn:hover:after {
    translate: 8px;
  }
}

.sibling-nav {
  padding-block: 48px;
  background-color: var(--c-beige);
}
.sibling-nav-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.sn-bnr {
  display: block;
}
.sn-bnr-fig {
  margin-bottom: 12px;
}
.sn-bnr-ttl {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  padding-right: 28px;
  line-height: 1.2;
}
.sn-bnr-ttl:after {
  content: "";
  display: block;
  width: 18px;
  aspect-ratio: 1;
  position: absolute;
  top: calc(50% - 9px);
  right: 8px;
  background: url(img/common/icon_arrow-right-red.svg) no-repeat center/contain;
  transition: translate 0.3s cubic-bezier(0, 0, 0, 1);
}
.sn-bnr-ttl__parent {
  font-size: 1.2rem;
  font-weight: 400;
}
.sn-bnr-ttl__lbl {
  font-family: var(--font-min);
  font-size: 2.4rem;
  font-weight: 500;
}
@media (any-hover: hover) {
  .sn-bnr:hover .sn-bnr-ttl:after {
    translate: 8px;
  }
}

.ss-bnr-fig__img {
  aspect-ratio: 360/160;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  :where(.container) {
    padding-inline: 60px;
  }
  .btn {
    width: auto;
    min-width: 304px;
  }
  .footer-bg {
    width: 55.6368960469%;
    min-width: 660px;
    height: 100%;
    max-height: 536px;
    bottom: 0;
    left: auto;
    right: 0;
  }
  .footer-bg__innr {
    height: 100%;
  }
  .sec-ttl {
    margin-bottom: 48px;
  }
  .sec-ttl__en {
    font-size: 1.6rem;
  }
  .footer-inquiry {
    flex-direction: row;
    gap: 0 32px;
    padding: 32px min(11.3356766%, 129px);
    margin: 80px auto;
    align-items: center;
  }
  .footer-inquiry__txt {
    flex: 0 1 auto;
  }
  .footer-inquiry__ttl {
    font-size: 2.8rem;
  }
  .footer-inquiry-to {
    margin-left: 0;
    flex: 0 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .header {
    column-gap: 20px;
    height: 80px;
    padding: 16px 20px;
    font-size: min(1.3559322033vw, 1.6rem);
  }
  .header-logo {
    width: 175px;
  }
  .header-logo__anch {
    display: flex;
    flex-direction: column;
    row-gap: 1em;
    font-weight: 400;
    justify-content: space-between;
  }
  .header-logo__catch {
    font-size: 1.4375em;
  }
  .header-logo__main {
    font-size: 3.6875em;
    line-height: 1;
  }
  .header-nav {
    position: static;
    flex-direction: row;
    justify-content: space-between;
    transform: translateX(0);
    width: 100%;
    height: auto;
    padding: 0;
    background-color: transparent;
    overflow: visible;
  }
  .drawer-open .header-nav {
    padding-block: 0;
    box-shadow: none;
  }
  .gnav-list {
    order: 1;
    display: flex;
    border-top: none;
    margin-top: 0;
    margin-inline: 0;
    position: relative;
  }
  .gnav-list__item {
    border-bottom: none;
    padding-inline: 20px;
    flex: 0 0 auto;
    overflow: visible;
    position: relative;
  }
  .gnav-list__item:hover::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0 0 -16px 0;
  }
  .gnav-list__item:hover .accordion-wrap {
    border-bottom: 1px solid var(--c-red);
  }
  .gnav-list__item:hover .accordion-icon {
    transform: translateY(4px) rotate(-135deg);
  }
  .gnav-list .accordion-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 12px;
  }
  .gnav-list .accordion-toggle {
    margin-top: -10px;
  }
  .gnav__anch {
    height: 32px;
    white-space: nowrap;
    position: relative;
  }
  .gnav__anch:before {
    content: "";
    display: block;
    position: absolute;
    inset: -4px -8px;
  }
  .gnav-sub-list {
    position: absolute;
    top: 120%;
    left: 0;
    margin-left: 0;
    background: #fff;
    filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.16));
    white-space: nowrap;
    padding: 8px 12px 18px 12px;
    z-index: 10;
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(24px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s cubic-bezier(0, 0, 0, 1);
    will-change: opacity, transform;
    width: auto;
    height: auto;
  }
  .gnav-sub-list__item {
    margin-left: 0;
  }
  .gnav-list__item:hover .gnav-sub-list, .gnav-sub-list:hover {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .gnav-inquiry {
    margin-left: auto;
    margin-inline: 0;
  }
  .gnav-inquiry__item.has-logo {
    padding: 6px;
  }
  .gnav-inquiry__anch {
    font-size: 1.6rem;
    white-space: nowrap;
  }
  .gnav-policy {
    display: none;
  }
  .drawer-tgl {
    display: none;
  }
  .cover {
    height: 254px;
  }
  .cover-bg__img {
    width: 37.701317716%;
    height: 254px;
  }
  .cover-ttl {
    left: 8.345534407%;
  }
  .cover-ttl__en {
    font-size: 1.4rem;
  }
  .cover-ttl__ja {
    font-size: 4.6rem;
  }
  .breadcrumbs {
    padding-left: 0;
    left: 8.345534407%;
  }
  .page__heading {
    font-size: 2.8rem;
  }
  .footer {
    padding: 72px 114px;
  }
  .footer-top, .footer-bottom {
    max-width: 1138px;
    margin-inline: auto;
  }
  .footer-top {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    margin-bottom: 38px;
  }
  .footer-logo {
    margin-inline: 0;
  }
  .footer-logo__catch {
    font-size: 1.8rem;
  }
  .footer-logo__main {
    font-size: 4.6rem;
  }
  .footer-address {
    margin-bottom: 0;
    text-align: left;
    grid-area: addr;
    justify-content: flex-start;
  }
  .footer-address__slash {
    display: none;
  }
  .footer-address .wbr {
    display: block;
  }
  .footer-gnav {
    grid-template-columns: repeat(3, auto);
    gap: 12px min(4.97803806vw, 68px);
    align-content: start;
    margin-block: 0;
    grid-area: gnav;
  }
  .footer-gnav__anch {
    font-size: 1.8rem;
  }
  .footer-gnav__anch:hover {
    color: #d4d4d4;
  }
  .footer-gnav-sub {
    column-gap: 46px;
    margin-bottom: 0;
  }
  .footer-gnav-sub__item {
    margin-top: 10px;
    margin-left: 12px;
  }
  .footer-gnav-sub__anch {
    font-size: 1.6rem;
  }
  .footer-gnav-sub__anch:hover {
    color: #d4d4d4;
  }
  .footer-bottom {
    display: flex;
    grid-area: bottom;
    align-items: flex-end;
    column-gap: 32px;
  }
  .footer-policy {
    display: flex;
    column-gap: 20px;
    line-height: 1;
  }
  .footer-policy__item:hover {
    color: #d4d4d4;
  }
  .footer-copyright {
    margin-left: auto;
    margin-top: 0;
    font-size: 1.4rem;
  }
  .sec-ttl {
    row-gap: 16px;
    margin-bottom: 56px;
  }
  .sec-ttl__en {
    font-size: 1.8rem;
  }
  .sec-ttl__ja {
    font-size: 3.2rem;
  }
  .footer-inquiry {
    gap: 0 70px;
    padding: 40px min(11.3356766%, 129px);
    margin: 120px auto;
    width: min(88%, 1138px);
  }
  .footer-inquiry__ttl {
    font-size: 3.2rem;
  }
  .footer-inquiry__lead {
    font-size: 1.6rem;
  }
  .footer-inquiry-to-btn {
    column-gap: 32px;
    height: 72px;
  }
  .footer-inquiry-to-btn__lbl {
    font-size: 1.8rem;
  }
  .sibling-nav {
    padding-block: 56px;
  }
  .sibling-nav-list {
    gap: 29px;
  }
  .sn-bnr-ttl {
    padding-right: 32px;
  }
  .sn-bnr-ttl:after {
    width: 20px;
    top: calc(50% - 10px);
  }
  .sn-bnr-ttl__parent {
    font-size: 1.4rem;
  }
  .ss-sibling-nav-list {
    grid-template-columns: repeat(auto-fit, minmax(282px, 1fr));
  }
}
@media screen and (min-width: 1200px) {
  .gnav {
    gap: 32px;
  }
}
/*//////////////////*/
/*--- front-page ---*/
/*//////////////////*/
.heading__dec {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  line-height: 1.5;
  color: var(--c-red);
}
.heading__dec::before, .heading__dec::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 18px;
  background-color: var(--c-red);
}
.heading__dec::before {
  margin-right: 8px;
}
.heading__dec::after {
  margin-left: 8px;
}
.heading__main {
  font-family: var(--font-min);
  font-size: 3.2rem;
  font-weight: 500;
  display: block;
  margin-top: 12px;
}

.kv {
  width: 100%;
  position: relative;
}
.kv-fig__innr {
  width: 100%;
  max-height: 687px;
  max-width: 1366px;
  object-fit: cover;
}
.kv-ttl {
  font-family: var(--font-min);
  letter-spacing: 0.2em;
  font-weight: 400;
}
.kv-ttl__innr {
  position: absolute;
  right: 16px;
  bottom: 150px;
  font-size: 3rem;
}
.kv-ttl__sub {
  margin-left: 60px;
  display: block;
}
.kv-ttl__lead {
  display: none;
}
.kv-company {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
}
.kv-info {
  position: absolute;
  right: 16px;
  left: 16px;
  bottom: -100px;
  max-width: 580px;
  z-index: 1;
}
.kv-info__heading {
  font-family: var(--font-en);
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.kv-info-anch {
  display: flex;
  column-gap: 12px;
  padding: 10px 14px;
  margin-top: 6px;
  border-radius: 4px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.16);
}
.kv-info-anch:after {
  content: "";
  flex: 0 0 auto;
  align-self: center;
  width: 16px;
  aspect-ratio: 1;
  background: url(img/common/icon_arrow-right-red-bold.svg) no-repeat center/contain;
  transition: translate 0.3s cubic-bezier(0, 0, 0, 1);
}
@media (any-hover: hover) {
  .kv-info-anch:hover:after {
    translate: 6px;
  }
}
.kv-info-list {
  flex: 1 1 auto;
  align-self: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 6px;
}
.kv-info-list__date {
  font-weight: 500;
}
.kv-info-list__cat {
  margin-right: 8px;
  padding: 1px 8px;
  color: var(--c-red);
  font-size: 1.2rem;
  line-height: 1;
  border: 1px solid var(--c-red);
  background-color: #fff;
  border-radius: 4px;
}
.kv-info-list__ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.kv-sd {
  position: absolute;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--c-red);
  font-size: 1.4rem;
  font-weight: 500;
  font-family: var(--font-en);
}
.kv-sd:before, .kv-sd:after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.kv-sd:before {
  top: 20px;
  bottom: -73px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background-color: var(--c-red);
}
.kv-sd:after {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border: 1px solid var(--c-red);
  border-radius: 50%;
  animation: sd 2s forwards infinite;
}
@keyframes sd {
  0% {
    top: 20px;
    opacity: 0;
  }
  10%, 30% {
    opacity: 1;
  }
  100% {
    top: 93px;
    opacity: 0;
  }
}

.idx-about {
  margin-top: 160px;
  display: flex;
  flex-direction: column;
  column-gap: 32px;
}
.idx-about__fig {
  margin-left: 16px;
}
.idx-about__txt {
  margin-top: 46px;
  padding-inline: 16px;
}
.idx-about__lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 500;
  font-family: var(--font-min);
  font-size: 2.4rem;
}
.idx-about__lead-main {
  font-size: 2.4rem;
}
.idx-about__lead-sub {
  font-size: 2.8rem;
  margin-top: 1rem;
}
.idx-about__desc {
  margin-top: 20px;
  letter-spacing: 0.05em;
}
.idx-about__more {
  text-align: right;
}

.idx-mfr {
  margin-top: 80px;
}
.idx-mfr__heading {
  text-align: center;
  font-family: var(--font-min);
  font-size: 1.8rem;
  font-weight: 500;
}
.idx-mfr-slide {
  margin-top: 28px;
}
.idx-mfr__fig-item {
  width: 124px;
  margin-inline: auto;
}

.idx-info {
  padding-block: 60px 60px;
  margin-top: 80px;
  background-color: var(--c-beige);
}
.idx-info__body {
  margin-top: 28px;
  max-width: 880px;
  margin-inline: auto;
}
.idx-info-list {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  column-gap: 20px;
  border-top: 1px solid var(--c-black);
}
.idx-info-list__anch {
  padding: 8px 14px;
  border-bottom: 1px solid var(--c-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.idx-info-list__anch:after {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  aspect-ratio: 1;
  background: url(img/common/icon_arrow-right-red-bold.svg) no-repeat center/contain;
  transition: translate 0.3s cubic-bezier(0, 0, 0, 1);
}
@media (any-hover: hover) {
  .idx-info-list__anch:hover:after {
    translate: 6px;
  }
}
.idx-info-list__date {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  margin-right: 12px;
}
.idx-info-list__cat {
  padding: 1px 8px;
  color: var(--c-red);
  font-size: 1.2rem;
  line-height: 1;
  border: 1px solid var(--c-red);
  background-color: #fff;
  border-radius: 4px;
  margin-right: 8px;
}
.idx-info-list__data {
  font-size: 1.6rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.idx-info__more {
  text-align: right;
}

.idx-serv {
  margin-top: 80px;
  padding-inline: 16px;
}
.idx-serv .serv-card {
  margin-top: 28px;
}
.idx-serv .serv-card__container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-bottom: 36px;
}
.idx-serv .serv-card__container:nth-of-type(even) .serv-card__fig {
  margin-left: -16px;
  margin-right: auto;
}
.idx-serv .serv-card__container:last-child {
  margin-bottom: 0;
}
.idx-serv .serv-card__fig {
  margin-right: -16px;
  margin-left: auto;
  width: 91.4666666667%;
}
.idx-serv .serv-card__fig-innr {
  max-height: 460px;
  object-fit: cover;
}
.idx-serv .serv-card__body {
  max-width: 100%;
  padding: 2rem;
  background: var(--c-beige);
  opacity: 0.96;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: -36px;
}
.idx-serv .serv-card__heading {
  font-family: var(--font-min);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.idx-serv .serv-card__more {
  text-align: right;
}
.idx-serv__more {
  text-align: right;
}

.idx-inq {
  background-color: var(--c-beige);
  margin-top: 80px;
  padding-block: 60px 130px;
}
.idx-inq__heading {
  text-align: center;
  font-family: var(--font-min);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.idx-inq__lead {
  font-size: 1.6rem;
  margin-top: 24px;
}
.idx-inq__phone {
  margin-top: 20px;
  text-align: center;
}
.idx-inq__num {
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.idx-inq__tel {
  font-size: 2rem;
  font-weight: 400;
}
.idx-inq__hours {
  margin-top: 4px;
  font-size: 1.8rem;
  font-weight: 600;
}
.idx-inq__link {
  margin-top: 40px;
  background-color: var(--c-red);
  position: relative;
  overflow: hidden;
  height: 220px;
}
.idx-inq__link-bg-left, .idx-inq__link-bg-right {
  position: absolute;
  object-fit: cover;
}
.idx-inq__link-bg-left {
  top: 0;
  left: 0;
}
.idx-inq__link-bg-right {
  top: 0;
  right: 0;
  height: 100%;
  opacity: 0.5;
}
.idx-inq__btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
}

.idx-bnrs {
  display: flex;
  flex-direction: column;
  gap: 4px 1px;
}
.idx-bnrs-anch {
  position: relative;
  display: block;
}
.idx-bnrs-anch-bg {
  position: relative;
  overflow: hidden;
}
.idx-bnrs-anch-bg__img {
  width: 100%;
  max-inline-size: unset;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  transition: scale 0.3s cubic-bezier(0, 0, 0, 1);
}
.idx-bnrs-anch-bg:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.idx-bnrs-anch__body {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 32px 25px;
}
.idx-bnrs-anch-ttl {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  width: 100%;
  color: #fff;
}
.idx-bnrs-anch-ttl:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 35px;
  aspect-ratio: 1;
  background: #fff var(--icon-arrow-right-black) no-repeat center/13px auto;
  border-radius: 50%;
  transition: translate 0.3s cubic-bezier(0, 0, 0, 1);
}
.idx-bnrs-anch-ttl__main {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
}
.idx-bnrs-anch-ttl__sub {
  padding-right: 50px;
  font-family: var(--font-min);
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1.2941176471;
}
.idx-bnrs-anch-ttl__sub:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.2941176471) * 0.5em);
}
@media all and (-ms-high-contrast: none) {
  .idx-bnrs-anch-ttl__sub:before {
    margin-top: 0;
  }
}
@media (any-hover: hover) {
  .idx-bnrs-anch:hover .idx-bnrs-anch-bg__img {
    scale: 1.1;
  }
  .idx-bnrs-anch:hover .idx-bnrs-anch-ttl:after {
    translate: 8px;
  }
}

@media screen and (min-width: 768px) {
  .kv-ttl {
    position: absolute;
    top: 28%;
    width: 38.5065885798%;
    letter-spacing: 0.38em;
    right: 2%;
  }
  .kv-ttl__innr {
    font-size: 3.6rem;
    position: relative;
    right: auto;
    bottom: auto;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .kv-ttl__main {
    text-align: left;
  }
  .kv-ttl__sub {
    margin-left: 0;
    text-align: right;
    line-height: 1;
  }
  .kv-ttl__lead {
    display: block;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    font-family: var(--font-min);
    margin-top: 20px;
  }
  .kv-company {
    position: relative;
    left: auto;
    bottom: auto;
    transform: translateX(0);
    font-size: 1.6rem;
    letter-spacing: 0.38em;
    margin-inline: auto;
    margin-top: 20px;
  }
  .kv-info {
    left: 6%;
    bottom: -120px;
  }
  .kv-info__heading {
    flex: 0 0 auto;
    font-size: 1.8rem;
  }
  .kv-info-anch {
    border-radius: 0;
    padding: 20px;
    margin-top: 12px;
  }
  .kv-sd {
    bottom: 42px;
  }
  .idx-about {
    margin-top: 158px;
  }
  .idx-info-list {
    margin-top: 68px;
  }
  .idx-info-list__anch {
    padding: 20px 18px;
  }
  .idx-info-list__anch:after {
    width: 18px;
  }
  .idx-info-list__data {
    margin-top: 12px;
  }
  .idx-info__more {
    margin-top: 28px;
  }
}
@media screen and (min-width: 1024px) {
  .kv-ttl {
    max-width: 526px;
    margin-right: max((100% - 1366px) / 2, 0px);
    top: 43%;
    letter-spacing: 0.38em;
    right: 2%;
  }
  .kv-ttl__innr {
    font-size: 4.2rem;
  }
  .kv-ttl__lead {
    margin-top: 34px;
    font-size: 2rem;
  }
  .kv-company {
    margin-top: 40px;
    font-size: 2rem;
  }
  .kv-info {
    bottom: -70px;
  }
  .kv-sd {
    bottom: 73px;
  }
  .heading__dec {
    font-size: 1.8rem;
    line-height: 1.389;
  }
  .heading__main {
    font-size: 4.6rem;
    margin-top: 14px;
  }
  .idx-about {
    position: relative;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
    align-items: center;
    column-gap: 40px;
    margin-bottom: 36px;
  }
  .idx-about__fig {
    margin-right: 0;
    margin-left: 0;
    width: 50%;
    flex: 0 0 auto;
  }
  .idx-about__txt {
    margin-top: 0;
    margin-left: max((100% - 1138px) / 2, 60px);
  }
  .idx-about__lead {
    font-size: 2.8rem;
  }
  .idx-about__lead-sub {
    font-size: 3.6rem;
  }
  .idx-about__desc {
    font-size: 1.6rem;
  }
  .idx-mfr__heading {
    font-size: 2.8rem;
  }
  .idx-mfr-slide {
    margin-top: 56px;
  }
  .idx-mfr__fig-item {
    width: 200px;
  }
  .idx-info {
    position: relative;
    padding-block: 106px 115px;
    overflow: hidden;
  }
  .idx-info__body {
    position: relative;
  }
  .idx-info::before {
    content: "";
    position: absolute;
    display: block;
    background-image: url(img/front-page/bg_info.webp);
    top: 0;
    right: -307px;
    width: 86.6032210835%;
    height: 100%;
    pointer-events: none;
    background-size: cover;
  }
  .idx-serv {
    margin-inline: auto;
    width: 100%;
    padding-inline: 0;
  }
  .idx-serv__heading {
    margin-left: max((100% - 1138px) / 2, 60px);
  }
  .idx-serv .serv-card__container {
    align-items: flex-end;
    margin-bottom: 102px;
  }
  .idx-serv .serv-card__container:nth-of-type(odd) {
    flex-direction: row-reverse;
    margin-left: max((100% - 1138px) / 2, 60px);
  }
  .idx-serv .serv-card__container:nth-of-type(odd) .serv-card__body {
    margin-right: -5%;
  }
  .idx-serv .serv-card__container:nth-of-type(even) {
    flex-direction: row;
    margin-right: max((100% - 1138px) / 2, 60px);
  }
  .idx-serv .serv-card__container:nth-of-type(even) .serv-card__body {
    margin-left: -5%;
  }
  .idx-serv .serv-card__container:last-child {
    margin-bottom: 50px;
  }
  .idx-serv .serv-card__fig {
    width: 58%;
    margin-left: 0;
    margin-right: 0;
  }
  .idx-serv .serv-card__body {
    padding: 36px;
    margin-top: 0;
    margin-bottom: -28px;
    width: 47%;
  }
  .idx-serv .serv-card__heading {
    font-size: 3.8rem;
    margin-bottom: 36px;
  }
  .idx-serv .serv-card__txt {
    font-size: 1.6rem;
  }
  .idx-serv__more {
    text-align: center;
    font-size: 1.8rem;
  }
  .idx-inq {
    margin-top: 150px;
    padding-block: 96px 126px;
  }
  .idx-inq__heading {
    font-size: 36px;
  }
  .idx-inq__lead {
    text-align: center;
    margin-top: 36px;
  }
  .idx-inq__phone {
    margin-top: 48px;
  }
  .idx-inq__tel {
    font-size: 2.8rem;
  }
  .idx-inq__num {
    font-size: 5.6rem;
  }
  .idx-inq__hours {
    font-size: 2rem;
  }
  .idx-inq__link-bg-left {
    width: 38.0673499268%;
  }
  .idx-inq__link-bg-right {
    width: 47.5841874085%;
  }
  .idx-inq__btn {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    right: 80px;
  }
  .idx-inq__btn .btn {
    height: 72px;
    margin-top: 0;
  }
}
/*//////////////////*/
/*--- service-list ---*/
/*//////////////////*/
.service {
  margin-top: 80px;
}
.service__intro {
  font-size: 2.1rem;
  font-family: var(--font-min);
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
}
.service .service-list {
  margin-top: 60px;
  margin-bottom: 120px;
}
.service .service-list .service-card {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service .service-list .service-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 34%;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--c-beige);
  opacity: 0.96;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.service .service-list .service-card:nth-of-type(even) .service-card__fig {
  margin-left: -16px;
  margin-right: auto;
}
.service .service-list .service-card:last-child {
  margin-bottom: 0;
}
.service .service-list .service-card__fig {
  margin-left: auto;
  width: 91.4666666667%;
  z-index: 1;
}
.service .service-list .service-card__fig-innr {
  object-fit: cover;
  max-height: 460px;
}
.service .service-list .service-card__body {
  padding: 16px;
  z-index: 1;
}
.service .service-list .service-card__dec {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--c-red);
}
.service .service-list .service-card__dec-num {
  font-size: 2.8rem;
}
.service .service-list .service-card__heading {
  font-family: var(--font-min);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service .service-list .service-card__txt {
  margin-bottom: 12px;
}
.service .service-list .service-card__more {
  text-align: right;
}
.service .service-list__more {
  text-align: right;
}

.ss-heading {
  display: flex;
  flex-direction: column;
  row-gap: 36px;
  margin-bottom: 36px;
  padding-inline: 16px;
}
.ss-heading__img {
  flex: 0 0 auto;
  margin-left: -16px;
  margin-bottom: 16px;
  max-width: 686px;
  object-fit: cover;
}
.ss-heading__body {
  flex: 0 0 auto;
}
.ss-heading__desc {
  letter-spacing: 0.04em;
}
.ss-heading .service__intro {
  text-align: left;
  margin-bottom: 16px;
  line-height: 1.6;
}
.ss-ttl {
  font-family: var(--font-min);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 56px;
}
.ss-body-solution {
  background-color: var(--c-beige);
  padding-block: 80px 2px;
}
.ss-body-solution__list {
  display: flex;
  flex-direction: column;
  row-gap: 36px;
  margin-bottom: 56px;
}
.ss-body-solution__item {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 37px 21px 24px;
}
.ss-body-solution__icon {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--c-red);
  border: 7px solid #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  padding-block: 9px;
}
.ss-body-solution__icon--light {
  background-color: #ffc857;
}
.ss-body-solution__icon-innr {
  height: 100%;
}
.ss-body-solution__txt {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
}
.ss-body-feature {
  padding-block: 56px 2px;
}
.ss-body-feature__list {
  display: flex;
  flex-direction: column;
  row-gap: 46px;
}
.ss-body-feature__item-num {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 4px;
  font-family: var(--font-en);
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background-color: var(--c-red);
  padding-block: 8px 2px;
}
.ss-body-feature__item-num-point {
  margin-top: 2px;
  font-size: 1.8rem;
  font-weight: 500;
}
.ss-body-feature__item-txt {
  background-color: var(--c-beige);
  padding: 16px;
  text-align: center;
}
.ss-body-feature__item-ttl {
  font-family: var(--font-min);
  font-size: 2.4rem;
  margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
  .ss-heading {
    flex-direction: row;
    column-gap: 50px;
    margin-bottom: 60px;
    padding-inline: 0;
  }
  .ss-heading__img {
    margin-left: 0;
    margin-bottom: 0;
    width: 50.2196193265%;
    margin-bottom: -130px;
  }
  .ss-heading__body {
    width: 38.3601756955%;
  }
  .ss-body-solution {
    padding-top: 120px;
  }
  .ss-body-solution__list {
    flex-direction: row;
    column-gap: 30px;
    margin-bottom: 100px;
  }
  .ss-body-solution__item {
    width: calc(33% - 15px);
  }
  .ss-body-solution__icon {
    top: -30px;
    border: 8px solid #fff;
    width: 65px;
    height: 65px;
  }
}
@media screen and (min-width: 1024px) {
  .service {
    padding-inline: 0;
    margin-block: 120px 160px;
  }
  .service__intro {
    font-size: 2.8rem;
  }
  .service .service-list {
    margin-top: 176px;
  }
  .service .service-list .service-card {
    margin-bottom: 120px;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    column-gap: 30px;
    margin-left: max((100% - 1138px) / 2, 60px);
  }
  .service .service-list .service-card::before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .service .service-list .service-card:nth-of-type(even) {
    flex-direction: row;
    margin-right: max((100% - 1138px) / 2, 60px);
    margin-left: 0;
  }
  .service .service-list .service-card:nth-of-type(even) .service-card__body {
    padding-right: 30px;
    padding-left: 0;
  }
  .service .service-list .service-card:last-child {
    margin-bottom: 0;
  }
  .service .service-list .service-card__fig {
    flex: 0 0 auto;
    margin-left: 0;
    margin-right: 0;
    margin-top: -55px;
    margin-bottom: 49px;
    width: calc(57% - 15px);
  }
  .service .service-list .service-card__body {
    flex: 0 0 auto;
    padding-left: 30px;
    width: calc(43% - 15px);
  }
  .service .service-list .service-card__dec {
    position: absolute;
    top: -42px;
    left: 30px;
    font-family: var(--font-en);
    font-size: 3rem;
    font-weight: 500;
    color: var(--c-red);
  }
  .service .service-list .service-card__dec-num {
    font-size: 4.8rem;
  }
  .service .service-list .service-card:nth-of-type(even) .service-card__dec {
    left: 57%;
  }
  .service .service-list .service-card__heading {
    font-size: 3.8rem;
    margin-bottom: 36px;
  }
  .service .service-list .service-card__txt {
    font-size: 1.6rem;
    margin-bottom: 36px;
  }
  .service .service-list .service-card__more {
    text-align: right;
  }
  .ss {
    font-size: 1.6rem;
  }
  .ss.service {
    margin-bottom: 0;
  }
  .ss-heading .service__intro {
    margin-bottom: 30px;
  }
  .ss-ttl {
    font-family: var(--font-min);
    font-size: 3.8rem;
    margin-bottom: 96px;
  }
  .ss-body-solution {
    padding-bottom: 20px;
  }
  .ss-body-solution__list {
    display: flex;
    flex-direction: row;
    column-gap: 30px;
    margin-bottom: 100px;
  }
  .ss-body-solution__item {
    width: calc(33% - 15px);
  }
  .ss-body-solution__icon {
    top: -30px;
    border: 8px solid #fff;
    width: 65px;
    height: 65px;
  }
  .ss-body-feature {
    padding-block: 100px 0;
  }
  .ss-body-feature__ttl {
    margin-bottom: 40px;
  }
  .ss-body-feature__list {
    row-gap: 30px;
  }
  .ss-body-feature__item {
    display: flex;
    flex-direction: row;
    text-align: left;
  }
  .ss-body-feature__item-num {
    flex-direction: column;
    width: 142px;
    padding-block: 8px 2px;
  }
  .ss-body-feature__item-txt {
    padding: 40px 30px;
    text-align: left;
    flex-grow: 1;
  }
  .ss-body-feature__item-ttl {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .ss-heading__body {
    width: max(38.3601756955%, 476px);
  }
}
/*//////////////////*/
/*--- about-page ---*/
/*//////////////////*/
.about {
  margin-block: 80px 120px;
}
.about__intro {
  margin-bottom: 40px;
}
.about-nav__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about-nav__item {
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--c-beige);
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.08);
}
.about-card__body {
  padding: 16px;
}
.about-card__img {
  width: 100%;
}
.about-card__ttl {
  margin-bottom: 10px;
  font-size: 2.1rem;
  font-weight: 500;
  font-family: var(--font-min);
  display: flex;
  column-gap: 8px;
}
.about-card__ttl::after {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  aspect-ratio: 1;
  background: url(img/common/icon_arrow-right-red.svg) no-repeat center/contain;
  transition: translate 0.3s cubic-bezier(0, 0, 0, 1);
}
.about-card__txt {
  font-size: 1.5rem;
}
@media (any-hover: hover) {
  .about-card:hover .about-card__ttl:after {
    translate: 6px;
  }
}
.about-gnav {
  background-color: var(--c-beige);
  padding: 46px 16px;
}
.about-gnav__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 360px;
  margin-inline: auto;
}
.about-gnav__item {
  flex: 0 0 auto;
}
.about-gnav-card__img {
  width: 100%;
  aspect-ratio: 360/160;
  overflow: hidden;
  object-fit: cover;
}
.about-gnav-card__img.gnav-greeting {
  object-position: top center;
}
.about-gnav-card__img.gnav-company-profile {
  object-position: bottom center;
}
.about-gnav-card__img.gnav-sdgs {
  object-position: center;
}
.about-gnav-card__img.gnav-csr {
  object-position: top center;
}
.about-gnav-card__body {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-gnav-card__body::after {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  aspect-ratio: 1;
  margin-right: 8px;
  background: url(img/common/icon_arrow-right-red-bold.svg) no-repeat center/contain;
  transition: translate 0.3s cubic-bezier(0, 0, 0, 1);
}
.about-gnav-card__txt {
  font-family: var(--font-min);
  font-size: 2.1rem;
}
@media (any-hover: hover) {
  .about-gnav-card:hover .about-gnav-card__body:after {
    translate: 6px;
  }
}

@media screen and (min-width: 768px) {
  .about-nav__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .about-nav__item {
    width: calc(50% - 15px);
  }
  .about-gnav {
    padding: 56px 46px;
  }
  .about-gnav__list {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    max-width: 1138px;
  }
  .about-gnav__item {
    width: calc(33.3333333333% - 20px);
  }
}
@media screen and (min-width: 1024px) {
  .about {
    margin-block: 120px 160px;
  }
  .about__intro {
    margin-bottom: 108px;
  }
  .about-card__body {
    padding: 23px 28px 28px 28px;
  }
  .about-card__ttl {
    font-size: 2.8rem;
    column-gap: 12px;
  }
  .about-card__txt {
    font-size: 1.6rem;
  }
  .about-gnav__list {
    padding-inline: 0;
  }
  .about-gnav-card__body::after {
    width: 20px;
  }
  .about-gnav-card__txt {
    font-size: 2.4rem;
  }
}
/*//////////////////*/
/*--- greeting-page ---*/
/*//////////////////*/
.greeting {
  margin-block: 160px 120px;
  position: relative;
}
.greeting::before {
  content: "";
  position: absolute;
  inset: 0;
  margin-left: 0;
  background-color: var(--c-beige);
  opacity: 0.96;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.greeting__innr {
  text-align: left;
  padding-bottom: 60px;
}
.greeting__fig {
  position: relative;
  width: 100%;
  margin-top: -80px;
}
.greeting__img {
  width: 100%;
}
.greeting__desc {
  position: relative;
  padding-inline: 16px;
}
.greeting__intro {
  margin-block: 36px;
  font-size: 2.1rem;
  font-family: var(--font-min);
  font-weight: 500;
  line-height: 1.8;
}
.greeting__txt {
  margin-top: 10px;
}
.greeting__profile {
  margin-top: 36px;
}
.greeting__position {
  margin-top: 8px;
}
.greeting__name {
  font-size: 2rem;
  font-family: var(--font-min);
  font-weight: 700;
  margin-top: 4px;
}

@media screen and (min-width: 1024px) {
  .greeting {
    margin-left: max((100% - 1138px) / 2, 0px);
  }
  .greeting__innr {
    padding: 46px;
    width: 100%;
    max-width: 1138px;
  }
  .greeting__fig {
    float: right;
    margin: -100px 0 0 36px;
    width: min(32.0673499268%, 380px);
  }
  .greeting__desc {
    font-size: 1.6rem;
    padding-inline: 0;
  }
  .greeting__intro {
    font-size: 2.8rem;
    margin-top: 0;
  }
}
/*//////////////////*/
/*--- company-profile-page ---*/
/*//////////////////*/
.company {
  margin-block: 80px 120px;
  text-align: center;
}
.company__section {
  padding-inline: 16px;
  margin-bottom: 80px;
}
.company__section-spirit {
  padding-block: 60px 28px;
  background-color: var(--c-beige);
}
.company__section-info, .company__section-background {
  margin-bottom: 100px;
  text-align: left;
}
.company__label {
  font-size: 1.6rem;
  font-family: var(--font-en);
  font-weight: 500;
  color: var(--c-red);
  line-height: 1;
}
.company__ttl {
  font-size: 2.6rem;
  font-family: var(--font-min);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.company__catch {
  font-size: 3.2rem;
  font-family: var(--font-min);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.company__block {
  margin-bottom: 32px;
}
.company__block-ttl {
  font-size: 1.8rem;
  font-family: var(--font-min);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.company__block-desc {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 2;
}
.company__block-desc:last-child {
  margin-top: 24px;
}
.company__fig {
  margin-inline: auto;
  margin-bottom: 36px;
  max-width: 600px;
}
.company__img {
  width: 100%;
}
.company-info__heading {
  font-family: var(--font-min);
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.company-info__item {
  padding-block: 16px;
  border-bottom: 1px solid #707070;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.company-info__item:first-child {
  border-top: 1px solid #707070;
}
.company-info__name {
  font-family: var(--font-min);
  font-weight: 600;
  font-size: 1.7rem;
  flex: 0 0 auto;
}
.company-info__desc {
  font-size: 1.5rem;
  flex: 0 0 auto;
}

@media screen and (min-width: 1024px) {
  .company {
    margin-block: 80px 120px;
  }
  .company__section {
    padding-inline: 0;
    margin-bottom: 100px;
  }
  .company__section-spirit {
    padding-block: 100px 54px;
  }
  .company__section-info, .company__section-background {
    margin-bottom: 100px;
  }
  .company__section-history {
    margin-bottom: 150px;
  }
  .company__section-history .company__ttl {
    margin-bottom: 46px;
  }
  .company__label {
    font-size: 1.8rem;
  }
  .company__ttl {
    font-size: 2.8rem;
    margin-bottom: 24px;
  }
  .company__catch {
    font-size: 4.6rem;
    margin-bottom: 46px;
  }
  .company__block {
    margin-bottom: 46px;
  }
  .company__block-ttl {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .company__block-desc {
    font-size: 1.6rem;
  }
  .company__fig {
    margin-bottom: 46px;
  }
  .company-info__heading {
    font-size: 3.8rem;
    margin-bottom: 24px;
  }
  .company-info__item {
    padding: 14px 24px;
    flex-direction: row;
    row-gap: 8px;
  }
  .company-info__item:first-child {
    border-top: 1px solid #707070;
  }
  .company-info__name {
    width: 20%;
    font-weight: 500;
  }
  .company-info__desc {
    width: 80%;
    font-size: 1.6rem;
  }
}
/*//////////////////*/
/*--- sdgs-page ---*/
/*//////////////////*/
.sdgs {
  margin-block: 80px 120px;
}
.sdgs__head {
  text-align: center;
  margin-inline: auto;
}
.sdgs__logo {
  width: 100%;
  max-width: 840px;
  margin-inline: auto;
  margin-bottom: 36px;
}
.sdgs__sub {
  font-family: var(--font-min);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.8;
  display: block;
  margin-bottom: 30px;
}
.sdgs__intro {
  line-height: 1.8;
  margin-bottom: 36px;
}
.sdgs__list {
  display: grid;
  gap: 30px;
}
.sdgs__item {
  background: #f8f8f8;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 24px;
  gap: 20px;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
}
.sdgs__item-ttl {
  font-family: var(--font-min);
  font-size: 2.1rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.sdgs__item-sub {
  position: relative;
  padding-left: 14px;
}
.sdgs__item-sub::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--c-red);
  border-radius: 50%;
}
.sdgs__icon {
  width: 160px;
  height: 160px;
  object-fit: contain;
  flex-shrink: 0;
}
.sdgs__text {
  flex: 1;
}

@media screen and (min-width: 768px) {
  .sdgs__logo {
    margin-bottom: 40px;
  }
  .sdgs__item {
    background: #f8f8f8;
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 24px;
    gap: 20px;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
  }
  .sdgs__item-ttl {
    font-family: var(--font-min);
    font-size: 2.1rem;
    font-weight: 500;
    margin-bottom: 12px;
  }
  .sdgs__item-sub {
    position: relative;
    padding-left: 14px;
  }
  .sdgs__item-sub::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--c-red);
    border-radius: 50%;
  }
  .sdgs__icon {
    width: 160px;
    height: 160px;
    object-fit: contain;
    flex-shrink: 0;
  }
  .sdgs__text {
    flex: 1;
  }
}
@media screen and (min-width: 1024px) {
  .sdgs {
    margin-block: 160px 120px;
  }
  .sdgs__logo {
    margin-bottom: 44px;
  }
  .sdgs__sub {
    font-size: 3.8rem;
  }
  .sdgs__intro {
    font-size: 1.6rem;
    margin-bottom: 56px;
  }
  .sdgs__item {
    padding: 50px 50px 50px 56px;
    align-items: flex-start;
    gap: 40px;
  }
  .sdgs__item-ttl {
    font-family: var(--font-min);
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 13px;
  }
  .sdgs__item-sub {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
/*//////////////////*/
/*--- csr-page ---*/
/*//////////////////*/
.csr {
  margin-block: 80px 120px;
}
.csr__head {
  text-align: center;
  margin-inline: auto;
}
.csr__ttl {
  font-family: var(--font-min);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.8;
  display: block;
  margin-bottom: 30px;
}
.csr__intro {
  line-height: 2;
  margin-bottom: 36px;
}
.csr__img {
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 36px;
}
.csr__body-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 33px;
  position: relative;
}
.csr__body-ttl::before, .csr__body-ttl::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--c-black);
}
.csr__body-ttl::before {
  left: 0;
}
.csr__body-ttl::after {
  right: 0;
}
.csr__body-ttl-innr {
  font-family: var(--font-min);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.8;
  padding-inline: 20px;
  white-space: nowrap;
}
.csr__card {
  background-color: var(--c-beige);
  padding: 24px;
  opacity: 0.96;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  text-align: center;
}
.csr__card-ttl {
  font-family: var(--font-min);
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 16px;
}
.csr__note {
  font-family: var(--font-min);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .csr__card-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .csr {
    margin-block: 100px 120px;
    letter-spacing: 0.08em;
  }
  .csr__ttl {
    font-size: 4.6rem;
    margin-bottom: 56px;
  }
  .csr__intro {
    font-size: 1.6rem;
    margin-bottom: 56px;
  }
  .csr__img {
    margin-bottom: 100px;
  }
  .csr__body-ttl {
    margin-bottom: 56px;
  }
  .csr__body-ttl-innr {
    font-size: 3.8rem;
  }
  .csr__card {
    padding: 36px;
  }
  .csr__card-ttl {
    font-size: 2.8rem;
  }
  .csr__card:last-of-type {
    margin-bottom: 56px;
  }
  .csr__note {
    font-size: 1.8rem;
    margin-top: 20px;
  }
}
/*///////////////*/
/*--- Careers ---*/
/*///////////////*/
.career-faq {
  margin-top: -24px;
  padding: 72px 16px 120px;
  background-color: var(--c-beige);
}
.career-faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px 16px;
}
.career-faq-list__item {
  padding: 16px 20px 16px 40px;
  background-color: #fff;
}
.career-faq-list__ques {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 12px;
  font-family: var(--font-min);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  border-bottom: 1px solid var(--c-black);
}
.career-faq-list__ques:before {
  content: "Q.";
  display: block;
  position: absolute;
  top: -3px;
  left: -26px;
  color: var(--c-red);
}
.career-faq-list__ans {
  position: relative;
}
.career-faq-list__ans:before {
  content: "A.";
  display: block;
  position: absolute;
  top: -6px;
  left: -26px;
  font-family: var(--font-min);
  color: #0ea1f7;
  font-size: 2rem;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .career-faq {
    padding: 80px 16px 120px;
  }
  .career-faq-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 24px;
  }
}
@media screen and (min-width: 1024px) {
  .career-faq {
    padding: 96px 0 160px;
  }
  .career-faq-list {
    gap: 30px;
  }
  .career-faq-list__item {
    padding: 16px 24px 16px 48px;
  }
  .career-faq-list__ques {
    font-size: 2.4rem;
  }
  .career-faq-list__ques:before {
    left: -32px;
  }
  .career-faq-list__ans {
    font-size: 1.6rem;
  }
  .career-faq-list__ans:before {
    top: -10px;
    left: -32px;
    font-size: 2.4rem;
  }
}
/*////////////////////*/
/*--- Staff Voices ---*/
/*////////////////////*/
.voices {
  margin-top: 80px;
}

.voices-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.voice-card {
  display: flex;
}
.voice-card__innr {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #fff;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.08);
}
.voice-card-fig {
  flex: 0 0 auto;
  width: 40%;
}
.voice-card-fig__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.voice-card__body {
  flex: 1 1 auto;
  position: relative;
  padding: 12px 40px 12px 16px;
  font-weight: 500;
}
.voice-card__body:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  right: 12px;
  width: 16px;
  aspect-ratio: 1;
  background: url(img/common/icon_arrow-right-red.svg) no-repeat center/contain;
  transition: translate 0.3s cubic-bezier(0, 0, 0, 1);
}
.voice-card__division {
  color: var(--c-red);
  font-size: 1.4rem;
  line-height: 1.4;
}
.voice-card__name {
  margin-block: 4px;
  font-family: var(--font-min);
  font-size: 2.4rem;
  font-weight: 500;
}
.voice-card__name .okuri {
  font-size: 0.6667em;
}
.voice-card__date {
  font-size: 1.4rem;
  line-height: 1.4;
  opacity: 0.5;
}
@media (any-hover: hover) {
  .voice-card__innr:hover .voice-card__body:after {
    translate: 8px;
  }
}

.vs-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px 40px;
  margin-bottom: -52px;
}
.vs-header__ttl {
  margin-bottom: 12px;
  font-family: var(--font-min);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.4737;
}
.vs-header-attr {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.vs-header-attr__item {
  flex: 0 1 auto;
  font-size: 1.4rem;
}
.vs-header-face__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.vs-body {
  position: relative;
  padding-block: 108px 80px;
  background-color: var(--c-beige);
  overflow: hidden;
}
.vs-body__bg {
  position: absolute;
  width: min(88.28696925%, 1206px);
  mix-blend-mode: lighten;
  opacity: 0.7;
}
.vs-body__bg--lt {
  top: 0;
  left: -20.863836%;
}
.vs-body__bg--rc {
  top: 44.8%;
  right: -27.30600292%;
}
.vs-body-sec {
  position: relative;
}
.vs-body-sec:not(:nth-last-of-type(1)) {
  margin-bottom: 56px;
}
.vs-body-sec:has(figure) {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px 40px;
}
.vs-body-sec h2 {
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-family: var(--font-min);
  color: var(--c-red);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid var(--c-black);
}
.vs-body-sec p {
  line-height: 2;
}
.vs-body-sec p + p {
  margin-top: 0.6em;
}
.vs-body-sec figure img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .voices-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .voice-card__innr {
    align-items: stretch;
    flex-direction: column;
  }
  .voice-card-fig {
    width: 100%;
  }
  .voice-card__body {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 12px;
  }
  .voice-card__division {
    flex: 0 0 auto;
    width: 100%;
  }
  .voice-card__name {
    margin-block: 0;
    flex: 0 1 auto;
  }
  .voice-card__date {
    flex: 0 1 auto;
  }
  .vs-header {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .vs-header__txt {
    order: 2;
    align-self: center;
  }
  .vs-header__ttl {
    font-size: 3.2rem;
  }
  .vs-header-face {
    order: 1;
  }
  .vs-body-sec:has(figure) {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .vs-body-sec__txt {
    align-self: center;
  }
  .vs-body-sec h2 {
    padding-bottom: 12px;
    font-size: 2.2rem;
  }
  .vs-body-sec:has(figure):nth-of-type(odd) .vs-body-sec__txt {
    order: 2;
  }
  .vs-body-sec:has(figure):nth-of-type(odd) figure {
    order: 1;
  }
}
@media screen and (min-width: 1024px) {
  .voices {
    margin-top: 120px;
  }
  .voices-list {
    gap: 29px;
  }
  .voice-card__body {
    padding: 16px 48px 16px 24px;
  }
  .voice-card__body:after {
    right: 16px;
  }
  .vs-header {
    gap: 24px 56px;
  }
  .vs-header__ttl {
    margin-bottom: 16px;
    font-size: 3.8rem;
  }
  .vs-header-attr__item {
    font-size: 1.6rem;
  }
  .vs-body {
    padding-block: 148px 120px;
  }
  .vs-body-sec:not(:nth-last-of-type(1)) {
    margin-bottom: 80px;
  }
  .vs-body-sec:has(figure) {
    gap: 24px 56px;
  }
  .vs-body-sec h2 {
    padding-bottom: 12px;
    font-size: 2.4rem;
  }
  .vs-body-sec p {
    font-size: 1.6rem;
  }
  .vs-body-sec:has(figure):nth-of-type(odd) .vs-body-sec__txt {
    order: 2;
  }
  .vs-body-sec:has(figure):nth-of-type(odd) figure {
    order: 1;
  }
}
/*/////////////////////*/
/*--- Career policy ---*/
/*/////////////////////*/
.cp {
  margin-top: 80px;
}
.cp-list {
  display: flex;
  flex-direction: column;
  row-gap: 36px;
}
.cp-card {
  counter-increment: num;
}
.cp-card-fig {
  width: 83.8461538%;
  margin-inline: auto 0;
}
.cp-card-fig__img {
  width: 100%;
  max-height: 433px;
  height: auto;
  object-fit: cover;
}
.cp-card__body {
  position: relative;
  width: calc(100% - 32px);
  padding: 20px 16px;
  margin: -24px auto 0;
  background-color: color-mix(in srgb, var(--c-beige) 96%, transparent);
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.08);
}
.cp-card-ttl {
  display: flex;
  column-gap: 8px;
  align-items: baseline;
  margin-bottom: 12px;
  font-size: 2.4rem;
  font-weight: 500;
}
.cp-card-ttl:before {
  content: counter(num, decimal-leading-zero);
  font-family: var(--font-en);
  color: var(--c-red);
  font-size: 1.4211em;
}
.cp-card-ttl__lbl {
  font-family: var(--font-min);
}
.cp-card:nth-of-type(even) .cp-card-fig {
  margin-inline: 0 auto;
}

@media screen and (min-width: 768px) {
  .cp-card__body {
    padding: 32px 24px;
  }
}
@media screen and (min-width: 1024px) {
  .cp {
    margin-top: 120px;
  }
  .cp-list {
    row-gap: 116px;
    padding-bottom: 36px;
  }
  .cp-card {
    display: flex;
    align-items: flex-end;
    margin-inline: 0 max((100% - 1138px) / 2, 60px);
  }
  .cp-card:nth-of-type(odd) {
    flex-direction: row-reverse;
    margin-inline: max((100% - 1138px) / 2, 60px) 0;
  }
  .cp-card-fig {
    margin-inline: -44px 0;
    flex: 1 1 auto;
  }
  .cp-card-fig__img {
    max-height: 460px;
  }
  .cp-card__body {
    width: min(48.96166134%, 613px);
    padding: 32px 36px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: min(27.240773286vw, 310px);
    translate: 0 36px;
  }
  .cp-card-ttl {
    margin-bottom: 24px;
    font-size: clamp(3.2rem, 3.339191564vw, 3.8rem);
  }
  .cp-card__txt {
    font-size: 1.6rem;
  }
  .cp-card:nth-of-type(even) .cp-card-fig {
    margin-inline: 0 -44px;
  }
}
/*///////////////*/
/*--- Recruit ---*/
/*///////////////*/
.recruit {
  margin-top: 80px;
}
.recruit-tbl {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
.recruit-tbl__row {
  line-height: 1.5;
  border-bottom: 1px solid #707070;
}
.recruit-tbl__term {
  padding: 12px 12px;
  font-family: var(--font-min);
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
  vertical-align: top;
}
.recruit-tbl__data {
  padding: 12px 12px 12px 4px;
}

@media screen and (min-width: 768px) {
  .recruit-tbl__term {
    padding: 16px;
  }
  .recruit-tbl__data {
    padding: 16px 12px 16px 12px;
  }
}
@media screen and (min-width: 1024px) {
  .recruit {
    margin-top: 120px;
  }
  .recruit-tbl__term {
    padding: 16px 16px 16px 24px;
    font-size: 1.7rem;
  }
  .recruit-tbl__data {
    padding: 16px 24px 16px 22px;
    font-size: 1.6rem;
  }
}
/*////////////////*/
/*--- Benefits ---*/
/*////////////////*/
.benefits {
  margin-top: 80px;
}

.bene-figs {
  padding: 48px 32px;
  margin: 56px -16px 0;
  background-color: var(--c-beige);
}
.bene-figs-group:not(:nth-last-of-type(1)) {
  margin-bottom: 32px;
}
.bene-figs__ttl {
  margin-bottom: 16px;
  font-family: var(--font-min);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}
.bene-figs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .bene-figs {
    padding: 56px 40px;
    margin: 64px 0 0;
  }
  .bene-figs-list {
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .benefits {
    margin-top: 120px;
  }
  .bene-figs {
    padding: 56px 48px;
    margin: 80px 0 0;
  }
  .bene-figs-list {
    gap: 24px;
  }
}
/*//////////////////*/
/*--- _inquiry-page ---*/
/*//////////////////*/
.inquiry {
  margin-block: 120px 100px;
}
.inquiry .br_sp {
  display: block;
}
.inquiry .input,
.inquiry .confirm {
  text-align: center;
}
.inquiry .confirm {
  display: none;
}
.inquiry__heading {
  font-size: 2.4rem;
  font-family: var(--font-min);
  margin-bottom: 30px;
}
.inquiry__desc {
  margin-bottom: 36px;
}
.inquiry-contact {
  background: var(--c-beige);
  padding: 20px;
  margin-bottom: 80px;
}
.inquiry-contact__heading {
  font-size: 1.6rem;
}
.inquiry-contact__tel {
  font-size: 2.8rem;
  margin-bottom: 2px;
  position: relative;
}
.inquiry-contact__hour {
  font-size: 1.8rem;
}
.inquiry__form-title {
  font-family: var(--font-min);
  font-size: 2.1rem;
  margin-bottom: 36px;
}
.inquiry .smf-item__label__text {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  justify-content: space-between;
  display: flex;
  align-items: center;
  height: 51px;
}
.inquiry .required .smf-item__label__text::after,
.inquiry .optional .smf-item__label__text::after {
  display: grid;
  place-items: center;
  width: 40px;
  height: 23px;
  border-radius: 2px;
  content: "必須";
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background: var(--c-red);
}
.inquiry .optional .smf-item__label__text::after {
  content: "任意";
  color: var(--c-black);
  background: #ccc;
}
.inquiry .smf-text-control__control,
.inquiry .smf-textarea-control__control {
  padding: 1.35rem 1rem;
  font-size: 1.6rem;
  width: 100%;
  border: none;
  background-color: #f9f9fb;
}
.inquiry .smf-form--simple-table .smf-item__col--label {
  padding-right: 24px;
}
.inquiry .smf-button-control__control {
  background-image: none;
  background-color: #fff;
  border: 1px solid var(--c-red);
  border-radius: 0;
  height: 54px;
  padding-inline: 16px;
  color: var(--c-red);
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 12px;
  margin-top: 28px;
  border: 1px solid var(--c-red);
  vertical-align: top;
}
.inquiry .smf-button-control__control::after {
  content: "";
  flex: 0 0 auto;
  align-self: center;
  width: 16px;
  aspect-ratio: 1;
  background: url(img/common/icon_arrow-right-red-bold.svg) no-repeat center/contain;
  transition: translate 0.3s cubic-bezier(0, 0, 0, 1);
}
.inquiry .smf-button-control__control:hover:after {
  translate: 6px;
}
.inquiry .smf-button-control__control[data-action=back] {
  flex-direction: row-reverse;
}
.inquiry .smf-button-control__control[data-action=back]::after {
  translate: -6px;
  transform: rotate(180deg);
}
.inquiry-privacy-policy {
  margin-top: 24px;
  margin-inline: auto;
}
.inquiry-privacy-policy .smf-placeholder {
  display: contents;
}
.inquiry-privacy-policy .smf-checkboxes-control {
  margin-top: 6px;
  grid-area: 1/1/2/2;
}
.inquiry-privacy-policy .smf-error-messages {
  grid-area: 2/2/3/3;
  text-align: left;
}
.inquiry-privacy-policy__text {
  grid-area: 1/2/2/3;
}
.inquiry-privacy-policy__text a {
  color: var(--c-red);
  text-decoration: underline;
  word-break: break-all;
}
.inquiry-privacy-policy__text a:hover {
  text-decoration: none;
}
.inquiry .inquiry-text-link {
  margin-top: 24px;
}
.inquiry .inquiry-text-link a {
  color: var(--c-red);
  text-decoration: underline;
  word-break: break-all;
}
.inquiry .inquiry-text-link a:hover {
  text-decoration: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

body .is-layout-flex.inquiry-privacy-policy {
  display: grid;
  width: fit-content;
  grid-template-columns: auto 1fr;
}

[data-screen=confirm] .confirm {
  display: block;
}

[data-screen=confirm] .input {
  display: none;
}

[data-screen=complete] ~ .input,
[data-screen=confirm] ~ .input {
  display: none;
}

[data-screen=confirm] .inquiry-form-container {
  background-color: var(--c-beige);
  padding: 60px;
}

[data-screen=confirm] .required .smf-item__label__text::after,
[data-screen=confirm] .optional .smf-item__label__text::after {
  content: none;
}

@media screen and (min-width: 768px) {
  .inquiry .br_sp {
    display: inline-block;
  }
}
@media screen and (min-width: 1024px) {
  .inquiry {
    font-size: 1.6rem;
  }
  .inquiry__heading {
    font-size: 2.8rem;
  }
  .inquiry-contact {
    margin-bottom: 120px;
  }
  .inquiry-contact__tel {
    font-size: 3.8rem;
  }
  .inquiry__form-title {
    font-size: 2.6rem;
  }
}
[data-screen=confirm] .inquiry-form-container {
  padding: 30px;
}

/*////////////*/
/*--- News ---*/
/*////////////*/
.news {
  display: grid;
  grid-template-columns: 1fr;
  gap: 72px 56px;
  margin-block: 80px 120px;
}
.news-current-cat {
  margin-bottom: 32px;
}
.news-current-cat__lbl {
  font-weight: 500;
}
.news-current-cat__name {
  color: var(--c-red);
  font-size: 2rem;
  font-weight: 700;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px 16px;
}

.news-card {
  display: block;
}
.news-card-fig {
  margin-bottom: 12px;
}
.news-card-fig img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.news-card-attr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.news-card-attr__date {
  flex: 0 0 auto;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.news-card__ttl {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3333;
}
.news-card__ttl:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.3333) * 0.5em);
}
@media all and (-ms-high-contrast: none) {
  .news-card__ttl:before {
    margin-top: 0;
  }
}
@media (any-hover: hover) {
  .news-card:hover .news-card__ttl {
    text-decoration: underline;
  }
}

.news-attr-cats {
  flex: 0 1 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.news-attr-cats__item {
  flex: 0 1 auto;
  padding: 0 6px;
  font-size: 1.2rem;
  color: var(--c-red);
  border: 1px solid currentColor;
  border-radius: 2px;
}

.pagination:not(:empty) {
  padding-top: 56px;
}
.pagination-list {
  display: flex;
  justify-content: center;
  column-gap: 8px;
}
.pagination .page-numbers {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding-top: 4px;
  font-family: var(--font-en);
  font-size: 2rem;
}
.pagination .page-numbers.current {
  color: #fff;
  background-color: var(--c-red);
}
.pagination .page-numbers:not(.next):not(.prev):not(.dot):not(.current):after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--c-red);
  opacity: 0;
}
.pagination .page-numbers.prev:before, .pagination .page-numbers.next:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  position: absolute;
  top: calc(50% - 11px);
  left: calc(50% - 11px);
  background: url(img/common/icon_arrow-right-red-bold.svg) no-repeat center/contain;
  transition: translate 0.3s cubic-bezier(0, 0, 0, 1);
}
.pagination .page-numbers.prev:before {
  rotate: y 180deg;
}
@media (any-hover: hover) {
  .pagination .page-numbers:not(.next):not(.prev):not(.dot):not(.current):hover:after {
    opacity: 1;
  }
  .pagination .page-numbers.prev:hover:before {
    translate: -8px;
  }
  .pagination .page-numbers.next:hover:before {
    translate: 8px;
  }
}

.sidebar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px 24px;
}
.sidebar-sec {
  padding-left: 14px;
}
.sidebar-sec__ttl {
  padding-left: 7px;
  margin: 0 0 16px -14px;
  font-size: 1.8rem;
  font-weight: 700;
  border-left: 7px solid var(--c-red);
}
.sidebar-list__item:not(:nth-last-of-type(1)) {
  margin-bottom: 6px;
}
.sidebar-list__anch {
  font-weight: 500;
}
.sidebar-list__anch.is-current {
  color: var(--c-red);
}
@media (any-hover: hover) {
  .sidebar-list__anch:hover {
    color: var(--c-red);
    text-decoration: underline;
  }
}
.sidebar-select {
  position: relative;
  width: 100%;
  max-width: 240px;
  border: 1px solid var(--c-red);
  border-radius: 3px;
}
.sidebar-select:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--c-red);
  border-top: none;
  border-left: none;
  rotate: 45deg;
  translate: 0 -75%;
  pointer-events: none;
}
.sidebar-select select {
  appearance: none;
  width: 100%;
  height: 36px;
  padding-inline: 12px 40px;
  font-weight: 500;
  background-color: transparent;
  border: none;
}

.news-single-header {
  padding-bottom: 18px;
  margin-bottom: 32px;
  border-bottom: 1px solid #707070;
}
.news-single-header-attr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}
.news-single-header-attr__date {
  flex: 0 0 auto;
  font-weight: 500;
}
.news-single__ttl {
  margin-bottom: 12px;
  font-family: var(--font-min);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5714;
}
.news-single-eyecatch {
  position: relative;
  max-width: 600px;
  margin: 0 auto 24px;
}
.news-single-eyecatch:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.05);
}
.news-single-eyecatch img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.news-single__body p {
  line-height: 1.875;
}
.news-single__body p + p {
  margin-top: 0.6em;
}
.news-single__body h2 {
  position: relative;
  margin-block: 2em 1.2em;
  font-family: var(--font-min);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.6;
}
.news-single__body h2:before {
  content: "";
  display: block;
  width: 4px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -16px;
  background-color: var(--c-red);
}
.news-single__body h3 {
  position: relative;
  padding-top: 16px;
  margin-block: 2em 1.2em;
  font-family: var(--font-min);
  font-size: 2rem;
  font-weight: 600;
}
.news-single__body h3:before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--c-red);
}
.news-single__body h4 {
  margin-block: 2em 1.2em;
  color: var(--c-red);
  font-size: 1.6rem;
  font-weight: 600;
}
.news-single__body figure.wp-block-image {
  margin-block: 32px;
}
.news-single__body > *:first-child {
  margin-top: 0;
}
.news-single__body > *:last-child {
  margin-bottom: 0;
}
.news-single__footer {
  padding-top: 48px;
}
.news-single-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 24px;
  max-width: 300px;
  margin-inline: auto;
}
.news-single-nav-anch {
  display: flex;
  align-items: center;
  column-gap: 8px;
  height: 48px;
  padding-inline: 16px;
  border: 1px solid var(--c-red);
}
.news-single-nav-anch__icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  transition: translate 0.3s cubic-bezier(0, 0, 0, 1);
}
.is-prev .news-single-nav-anch__icon, .is-back-list .news-single-nav-anch__icon {
  rotate: y 180deg;
}
.news-single-nav-anch__lbl {
  flex: 0 1 auto;
  margin-inline: auto;
  color: var(--c-red);
  font-size: 1.6rem;
}
@media (any-hover: hover) {
  .news-single-nav-anch:hover .news-single-nav-anch__icon {
    translate: 8px;
  }
  .is-prev .news-single-nav-anch:hover .news-single-nav-anch__icon, .is-back-list .news-single-nav-anch:hover .news-single-nav-anch__icon {
    translate: -8px;
  }
}

@media screen and (min-width: 768px) {
  .news-list {
    gap: 32px 24px;
  }
  .news-card-attr {
    gap: 8px 12px;
  }
  .news-card-attr__date {
    font-size: 1.5rem;
  }
  .news-single-header {
    margin-bottom: 40px;
  }
  .news-single__ttl {
    font-size: 2.6rem;
  }
  .news-single-eyecatch {
    margin: 0 auto 40px;
  }
  .news-single__body h2 {
    font-size: 2.4rem;
  }
  .news-single__body h2:before {
    left: -20px;
  }
  .news-single__body h3 {
    font-size: 2.2rem;
  }
  .news-single__body h3:before {
    width: 40px;
  }
  .news-single__body h4 {
    font-size: 1.8rem;
  }
  .news-single__body figure.wp-block-image {
    margin-block: 40px;
  }
  .news-single__body > *:first-child {
    margin-top: 0;
  }
  .news-single__body > *:last-child {
    margin-bottom: 0;
  }
  .news-single__footer {
    padding-top: 56px;
  }
  .news-single-nav {
    grid-template-columns: 1fr auto 1fr;
    max-width: 768px;
  }
  .news-single-nav__item.is-back-list {
    grid-column: 2/3;
  }
}
@media screen and (min-width: 1024px) {
  .news {
    grid-template-columns: 1fr 178px;
    margin-block: 120px 160px;
    justify-content: space-between;
  }
  .news-main {
    max-width: 880px;
  }
  .news-current-cat__lbl {
    font-size: 1.6rem;
  }
  .news-current-cat__name {
    font-size: 2.4rem;
  }
  .news-attr-cats {
    gap: 8px;
  }
  .pagination:not(:empty) {
    padding-top: 64px;
  }
  .sidebar {
    gap: 56px;
  }
  .news-single-header {
    margin-bottom: 56px;
  }
  .news-single-header-attr-cats .news-attr-cats__item {
    font-size: 1.4rem;
  }
  .news-single__ttl {
    font-size: 2.8rem;
  }
  .news-single-eyecatch {
    margin: 0 auto 56px;
  }
  .news-single__body p {
    font-size: 1.6rem;
  }
  .news-single__body h2 {
    font-size: 2.6rem;
  }
  .news-single__body h3 {
    padding-top: 20px;
    font-size: 2.4rem;
  }
  .news-single__body h3:before {
    width: 64px;
  }
  .news-single__body h4 {
    font-size: 2rem;
  }
  .news-single__body > *:first-child {
    margin-top: 0;
  }
  .news-single__body > *:last-child {
    margin-bottom: 0;
  }
  .news-single__footer {
    padding-top: 64px;
  }
  .news-single-nav-anch {
    column-gap: 12px;
    height: 56px;
  }
  .news-single-nav-anch__lbl {
    font-size: 1.8rem;
  }
}
/*////////////////*/
/*--- Policies ---*/
/*////////////////*/
.policies {
  margin-top: 80px;
}
.policies__content {
  padding-block: 56px 120px;
  margin-top: 56px;
  background-color: var(--c-beige);
}

.policy-list__item {
  padding: 12px 16px 16px;
  background-color: #fff;
}
.policy-list__item:not(:nth-last-of-type(1)) {
  margin-bottom: 12px;
}
.policy-list__ttl {
  margin-bottom: 12px;
  font-family: var(--font-min);
  color: var(--c-red);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
}
.policy-list__body {
  line-height: 1.8;
}
.policy-list__body:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * 0.5em);
}
@media all and (-ms-high-contrast: none) {
  .policy-list__body:before {
    margin-top: 0;
  }
}
.policy-list__body p + p {
  margin-top: 0.6em;
}

.policy-in-list {
  margin-top: 16px;
}
.policy-in-list__term {
  margin-bottom: 6px;
  font-weight: 700;
}
.policy-in-list__data {
  padding-left: 1em;
}
.policy-in-list__data:not(:nth-last-of-type(1)) {
  margin-bottom: 12px;
}

.policy-footer {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  width: fit-content;
  padding: 12px 16px;
  margin: 40px 0 0 auto;
  background-color: #fff;
}
.policy-footer__divide {
  padding-block: 8px;
  margin-block: 12px;
  border: 1px solid #e6e6e6;
  border-right: none;
  border-left: none;
}

@media screen and (min-width: 768px) {
  .policy-list__item {
    padding: 16px 24px 20px;
  }
  .policy-footer {
    padding: 12px 24px;
    margin: 48px 0 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .policies {
    margin-top: 120px;
  }
  .policies__content {
    padding-block: 80px 160px;
  }
  .policy-list__item {
    padding: 20px 32px 24px;
  }
  .policy-list__item:not(:nth-last-of-type(1)) {
    margin-bottom: 16px;
  }
  .policy-list__ttl {
    margin-bottom: 16px;
    font-size: 2.8rem;
  }
  .policy-list__body {
    font-size: 1.6rem;
  }
  .policy-in-list {
    margin-top: 20px;
  }
  .policy-in-list__data:not(:nth-last-of-type(1)) {
    margin-bottom: 16px;
  }
  .policy-footer {
    font-size: 1.6rem;
    padding: 16px 32px;
  }
}
/*////////////////*/
/*--- Site map ---*/
/*////////////////*/
.sitemap {
  margin-block: 80px 120px;
}

.sitemap-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.sitemap-list__item.is-home {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1/-1;
}

.sitemap-anch {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 8px;
  min-height: 48px;
  padding: 4px 8px;
  border-bottom: 1px solid #e6e6e6;
}
.sitemap-anch:after {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  aspect-ratio: 1;
  background: url(img/common/icon_arrow-right-red-bold.svg) no-repeat center/contain;
  transition: translate 0.3s cubic-bezier(0, 0, 0, 1);
}
.sitemap-anch__lbl {
  flex: 0 1 auto;
  font-family: var(--font-min);
  font-size: 1.8rem;
  font-weight: 700;
}
@media (any-hover: hover) {
  .sitemap-anch:hover:after {
    translate: 8px;
  }
}

.sitemap-in-list {
  padding: 16px 0 0 8px;
}
.sitemap-in-list__item:not(:nth-last-of-type(1)) {
  margin-bottom: 8px;
}

.sitemap-in-anch {
  display: flex;
  align-items: center;
  column-gap: 12px;
  width: fit-content;
  min-height: 32px;
}
.sitemap-in-anch:before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border: 1px solid var(--c-red);
  border-bottom: none;
  border-left: none;
  rotate: 45deg;
}
.sitemap-in-anch__lbl {
  flex: 0 1 auto;
  font-weight: 500;
}
@media (any-hover: hover) {
  .sitemap-in-anch:hover .sitemap-in-anch__lbl {
    text-decoration: underline;
  }
}

.sitemap-sub-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px 20px;
  margin-top: 48px;
}

.sitemap-sub-anch {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 8px;
  min-height: 40px;
  padding: 4px 8px;
  border-bottom: 1px solid #e6e6e6;
}
.sitemap-sub-anch:after {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  aspect-ratio: 1;
  background: url(img/common/icon_arrow-right-red-bold.svg) no-repeat center/contain;
  transition: translate 0.3s cubic-bezier(0, 0, 0, 1);
}
.sitemap-sub-anch__lbl {
  flex: 0 1 auto;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (any-hover: hover) {
  .sitemap-sub-anch:hover:after {
    translate: 8px;
  }
}

@media screen and (min-width: 1024px) {
  .sitemap {
    margin-block: 120px 160px;
  }
  .sitemap-list {
    gap: 24px;
  }
  .sitemap-anch__lbl {
    font-size: 2rem;
  }
  .sitemap-in-anch__lbl {
    font-size: 1.6rem;
  }
  .sitemap-sub-list {
    gap: 20px 24px;
    margin-top: 56px;
  }
  .sitemap-sub-anch__lbl {
    font-size: 1.7rem;
  }
}/*# sourceMappingURL=style.css.map */