@charset "UTF-8";
:root {
  --header-height: 10.7rem;
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 8rem;
  }
}

*, *::after, *::before {
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  box-sizing: border-box;
  min-inline-size: 0;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, picture,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  font: normal normal 400 100%/1 "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  color: #231815;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

html {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  height: 100%;
  overflow-y: scroll;
}
@media screen and (max-width: 1280px) {
  html {
    font-size: calc(10 / 1280 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: clamp(0%, 2.6666666667vw, 62.5%);
  }
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  outline: none;
  background-color: transparent;
  transition: opacity 0.4s;
}
a:focus-visible {
  text-decoration: none;
  opacity: 0.6;
}
@media (any-hover: hover) {
  a[href*="tel:"] {
    pointer-events: none;
  }
  a:hover {
    text-decoration: none;
    opacity: 0.6;
  }
}

abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

span,
small {
  font: inherit;
  color: inherit;
}

picture {
  display: block;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img, svg {
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-style: none;
}

button, input, optgroup, select, textarea {
  font: normal normal 400 100%/1 "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  color: #231815;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

::placeholder {
  color: #A8A8A8;
}

select:invalid {
  color: #A8A8A8;
}

button, input {
  overflow: visible;
}
button[disabled], input[disabled] {
  cursor: not-allowed;
}

button, select {
  text-transform: none;
}

button {
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
  transition: opacity 0.4s;
}
button:focus-visible {
  opacity: 0.6;
}
@media (any-hover: hover) {
  button:hover {
    opacity: 0.6;
  }
}

textarea {
  display: block;
  resize: none;
  field-sizing: content;
  overflow: auto;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=checkbox], [type=radio] {
  position: absolute;
  visibility: hidden;
  width: 1px;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

pre {
  white-space: pre-wrap;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th, td {
  background-clip: padding-box;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding-inline: 4.8rem;
  width: 100%;
  height: var(--header-height);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-header {
    padding-inline: 2rem;
  }
}
.l-header .inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 6.4rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .l-header .inner {
    column-gap: 0.8rem;
  }
}
.l-header .logo {
  margin-right: auto;
  width: 18.6rem;
}
@media screen and (max-width: 767px) {
  .l-header .logo {
    width: 11.8rem;
  }
}
.l-header .logo_link {
  display: block;
}
@media screen and (max-width: 767px) {
  .l-header .gnav {
    position: fixed;
    inset: 0;
    z-index: 2;
    padding: var(--header-height) 5.3333333333% 2rem;
    background: #fff;
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s;
  }
}
.l-header .gnav.is-open {
  opacity: 1;
  pointer-events: all;
}
@media screen and (min-width: 768px) {
  .l-header .gnav_list {
    display: flex;
    align-items: center;
    column-gap: 6.4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header .gnav_list_item:nth-child(n+2) {
    margin-top: 2rem;
  }
}
.l-header .gnav_list_link {
  font-size: 1.8rem;
  line-height: 1.3888888889;
  letter-spacing: 0.07em;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 0.8rem;
  display: flex inline;
  transition: color 0.4s, text-decoration-color 0.4s;
}
@media screen and (min-width: 768px) {
  .l-header .gnav_list_link {
    align-items: center;
    height: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header .gnav_list_link {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.l-header .gnav_list_link:focus-visible {
  color: #B81C22;
  text-decoration-color: currentColor;
  opacity: 1;
}
@media (any-hover: hover) {
  .l-header .gnav_list_link:hover {
    color: #B81C22;
    text-decoration-color: currentColor;
    opacity: 1;
  }
}
.l-header .gnav .c-contact {
  margin-top: 2.8rem;
}
@media screen and (max-width: 767px) {
  .l-header .gnav .c-contact_mail_btn_link {
    width: 28.7rem;
  }
}
.l-header .contact_link {
  font-size: 1.8rem;
  line-height: 1.3333333333;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: #fff;
  display: grid;
  place-content: center;
  position: relative;
  z-index: 1;
  padding: 0 0 0.2rem 3.2rem;
  width: 21.1rem;
  height: 6rem;
  background: #B81C22;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-header .contact_link {
    font-size: 0;
    color: transparent;
    padding: 0;
    width: 4.8rem;
    height: 4.8rem;
  }
}
.l-header .contact_link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 3.2rem;
  width: 2.4rem;
  height: 100%;
  -webkit-mask: url(../images/common/icon_mail.svg) center/contain no-repeat;
  mask: url(../images/common/icon_mail.svg) center/contain no-repeat;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-header .contact_link::before {
    left: 50%;
    translate: -50% 0;
  }
}
.l-header .contact_link::after {
  --_hover-color-size: 2.6rem;
  content: "";
  position: absolute;
  bottom: calc(-100% - var(--_hover-color-size));
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% + var(--_hover-color-size));
  background: #EB242B;
  clip-path: polygon(0 var(--_hover-color-size), 100% 0, 100% 100%, 0 100%);
  transition: bottom 0.4s;
  pointer-events: none;
}
.l-header .contact_link:focus-visible {
  opacity: 1;
}
.l-header .contact_link:focus-visible::after {
  bottom: 0;
}
@media (any-hover: hover) {
  .l-header .contact_link:hover {
    opacity: 1;
  }
  .l-header .contact_link:hover::after {
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-header .menu-btn {
    display: grid;
    place-content: center;
    row-gap: 0.6rem;
    position: relative;
    z-index: 2;
    width: 4.8rem;
    height: 4.8rem;
    background: #fff;
  }
}
.l-header .menu-btn.is-active .menu-btn_line:nth-child(1) {
  transform: translateY(0.7rem) rotate(30deg);
}
.l-header .menu-btn.is-active .menu-btn_line:nth-child(2) {
  opacity: 0;
}
.l-header .menu-btn.is-active .menu-btn_line:nth-child(3) {
  transform: translateY(-0.7rem) rotate(-30deg);
}
@media screen and (max-width: 767px) {
  .l-header .menu-btn_line {
    width: 2.4rem;
    height: 0.1rem;
    border-radius: calc(infinity * 1px);
    background: #231815;
    transition: transform 0.6s, opacity 0.6s;
  }
}

.l-all-wrap:has(.p-index-fv) .l-header {
  background-color: transparent;
  transition: background-color 0.6s;
}
.l-all-wrap:has(.p-index-fv) .l-header.is-action {
  background-color: #fff;
}

.l-footer {
  border-bottom: 0.4rem solid #B81C22;
  background: #fff;
}
.l-footer .c-wrap {
  padding-block: 12rem 4.8rem;
}
@media screen and (min-width: 768px) {
  .l-footer .c-wrap {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .c-wrap {
    padding-block: 6.4rem;
  }
}
.l-footer .page-top {
  margin-left: auto;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .l-footer .page-top {
    grid-row: 3;
    grid-column: 2;
    margin-top: 4.8rem;
  }
}
.l-footer .page-top_link {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.09em;
  font-weight: 600;
  font-family: "Jost", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  color: #B81C22;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding-right: 5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-footer .page-top_link {
    font-size: 1.2rem;
    line-height: 2;
    padding-right: 3.4rem;
  }
}
.l-footer .page-top_link:focus-visible {
  opacity: 1;
}
.l-footer .page-top_link:focus-visible::after {
  animation: scrollUp 0.6s forwards cubic-bezier(0, 0, 0, 1.01);
}
@media (any-hover: hover) {
  .l-footer .page-top_link:hover {
    opacity: 1;
  }
  .l-footer .page-top_link:hover::after {
    animation: scrollUp 0.6s forwards cubic-bezier(0, 0, 0, 1.01);
  }
}
.l-footer .page-top_link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1.8rem;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 18 23" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.99902 3.93446e-07L7.3125 1.67871L0.00195251 8.95215L3.37598 8.95215L9 3.35742L14.625 8.95215L18 8.95215L8.99902 3.93446e-07ZM9 5.73047L7.80664 6.91797L7.80664 23.001L10.1934 23.001L10.1934 6.91699L9 5.73047Z" fill="%23B81C22"/></svg>') center/contain no-repeat;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .l-footer .page-top_link::after {
    width: 1.4rem;
  }
}
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-101%);
  }
  30.1% {
    transform: translateY(101%);
  }
  80% {
    transform: translateY(0);
  }
}
@media screen and (min-width: 768px) {
  .l-footer .company {
    grid-row: span 4;
    grid-column: 1;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .company {
    margin-top: 4.8rem;
  }
}
.l-footer .company_logo {
  width: 18.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer .company_logo {
    width: 14.2rem;
  }
}
.l-footer .company_logo_link {
  display: block;
}
.l-footer .company_dlist {
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  .l-footer .company_dlist {
    margin-top: 3.2rem;
  }
}
.l-footer .company_dlist_theme {
  font-size: 1.4rem;
  line-height: 1.7857142857;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: #686564;
}
@media screen and (max-width: 767px) {
  .l-footer .company_dlist_theme {
    font-size: 1.2rem;
    line-height: 1.75;
  }
}
.l-footer .company_dlist_des {
  margin-top: 0.4rem;
}
.l-footer .company_dlist_address_txt {
  font-size: 1.3rem;
  line-height: 1.5384615385;
  letter-spacing: 0.07em;
  font-weight: 500;
  color: #686564;
}
@media screen and (max-width: 767px) {
  .l-footer .company_dlist_address_txt {
    font-size: 1.1rem;
    line-height: 1.5454545455;
  }
}
.l-footer .company_dlist_address_txt_link {
  display: inline-block;
  margin: 0.4rem 1.6rem 0 0;
}
@media screen and (min-width: 768px) {
  .l-footer .list {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem 6.4rem;
    grid-row: 1;
    grid-column: 2;
  }
}
.l-footer .list_link {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.07em;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 0.8rem;
  display: flex;
  align-items: center;
  height: 5.6rem;
  transition: color 0.4s, text-decoration-color 0.4s;
}
.l-footer .list_link:focus-visible {
  color: #B81C22;
  text-decoration-color: currentColor;
  opacity: 1;
}
@media (any-hover: hover) {
  .l-footer .list_link:hover {
    color: #B81C22;
    text-decoration-color: currentColor;
    opacity: 1;
  }
}
.l-footer .list_contact-link {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: #fff;
  display: grid;
  place-content: center;
  position: relative;
  z-index: 1;
  padding: 0 0 0.2rem 2.8rem;
  width: 19.4rem;
  height: 5.6rem;
  background: #B81C22;
  overflow: hidden;
}
.l-footer .list_contact-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 3.2rem;
  width: 2rem;
  height: 100%;
  -webkit-mask: url(../images/common/icon_mail.svg) center/contain no-repeat;
  mask: url(../images/common/icon_mail.svg) center/contain no-repeat;
  background-color: #fff;
}
.l-footer .list_contact-link::after {
  --_hover-color-size: 2.6rem;
  content: "";
  position: absolute;
  bottom: calc(-100% - var(--_hover-color-size));
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% + var(--_hover-color-size));
  background: #EB242B;
  clip-path: polygon(0 var(--_hover-color-size), 100% 0, 100% 100%, 0 100%);
  transition: bottom 0.4s;
  pointer-events: none;
}
.l-footer .list_contact-link:focus-visible {
  opacity: 1;
}
.l-footer .list_contact-link:focus-visible::after {
  bottom: 0;
}
@media (any-hover: hover) {
  .l-footer .list_contact-link:hover {
    opacity: 1;
  }
  .l-footer .list_contact-link:hover::after {
    bottom: 0;
  }
}
.l-footer .company-list {
  margin-top: 4.7rem;
}
@media screen and (min-width: 768px) {
  .l-footer .company-list {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
    grid-row: 2;
    grid-column: 2;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .company-list {
    margin-top: 4.8rem;
  }
}
.l-footer .company-list_link {
  display: grid;
  align-items: center;
  width: 31.1rem;
  height: 8rem;
  border: 1px solid rgba(35, 24, 21, 0.1);
}
@media screen and (max-width: 767px) {
  .l-footer .company-list_link {
    width: 100%;
    height: 6.2rem;
  }
}
.l-footer .company-list_link[target=_blank] {
  position: relative;
}
.l-footer .company-list_link[target=_blank]::after {
  content: "";
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 1.4rem;
  height: 1.2rem;
  background: url(../images/common/icon_blank.svg) center/contain no-repeat;
  opacity: 0.3;
}
.l-footer .company-list_img {
  margin-inline: auto;
  width: 69.5792880259%;
}
@media screen and (max-width: 767px) {
  .l-footer .company-list_img {
    width: 14.7rem;
  }
}
.l-footer .copy {
  font-size: 1.3rem;
  letter-spacing: 0.09em;
  font-weight: 500;
  font-family: "Jost", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  text-indent: 0.09em;
  color: rgba(35, 24, 21, 0.3);
  text-align: center;
  text-transform: uppercase;
  padding-block: 3.2rem 2.8rem;
  border-top: 1px solid rgba(35, 24, 21, 0.1);
}
@media screen and (max-width: 767px) {
  .l-footer .copy {
    font-size: 1.1rem;
  }
}

.aligncenter {
  text-align: center;
  display: block;
  margin-inline: auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.is-preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.js-bottom-action._fade-in {
  opacity: 0;
  translate: 0 10%;
  transition: opacity ease-out 0.6s, translate ease-out 0.6s;
}
.js-bottom-action._fade-in.is-bottom-action {
  opacity: 1;
  translate: 0 0;
}
.js-bottom-action._fade-up {
  opacity: 0;
  translate: 0 10%;
  transition: opacity ease-out 0.6s, translate ease-out 0.6s;
}
.js-bottom-action._fade-up.is-bottom-action {
  opacity: 1;
  translate: 0 0;
}
.js-bottom-action._slide-in {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.6s;
}
.js-bottom-action._slide-in.is-bottom-action {
  clip-path: inset(0);
}

.c-article-hgroup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem 1.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(35, 24, 21, 0.1);
}
@media screen and (max-width: 767px) {
  .c-article-hgroup {
    padding-bottom: 2.5rem;
  }
}
.c-article-hgroup_date_txt {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Jost", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  display: block;
}
.c-article-hgroup_category {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.c-article-hgroup_category_txt {
  font-size: 1.5rem;
  line-height: 1.4666666667;
  font-weight: 500;
  color: #686564;
}
.c-article-hgroup_ttl {
  font-size: 3rem;
  line-height: 1.6333333333;
  font-weight: 700;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-article-hgroup_ttl {
    font-size: 2.5rem;
    line-height: 1.44;
  }
}

.c-wrap {
  margin-inline: auto;
  width: calc(335 / 375 * 100%);
  max-width: 124.8rem;
}

.c-btn_link {
  --_c-btn-icon-color: #B81C22;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  letter-spacing: 0.07em;
  font-weight: 500;
  color: #B81C22;
  display: grid inline;
  place-content: center;
  position: relative;
  z-index: 1;
  padding-inline: 3.2rem 5.5rem;
  width: 100%;
  max-width: 40rem;
  height: 8.8rem;
  border: 1px solid #B81C22;
  background: #fff;
  overflow: hidden;
  transition: color 0.4s;
}
@media screen and (max-width: 767px) {
  .c-btn_link {
    font-size: 1.6rem;
    line-height: 1.375;
    padding-inline: 3.2rem 5.1rem;
    height: 7.8rem;
  }
}
.c-btn_link._not-border {
  border: none;
}
.c-btn_link._icon-anchor-arrow::after {
  rotate: 90deg;
}
.c-btn_link._icon-blank {
  padding-inline: 0;
}
.c-btn_link._icon-blank::after {
  display: none;
}
.c-btn_link::before {
  --_hover-color-size: 8.6rem;
  --_hover-color-clip: 7.5rem;
  content: "";
  position: absolute;
  bottom: calc(-100% - var(--_hover-color-size));
  left: 50%;
  z-index: -1;
  translate: -50% 0;
  width: 61.2rem;
  height: calc(100% + var(--_hover-color-size));
  background: #EB242B;
  clip-path: polygon(0 var(--_hover-color-clip), 100% 0, 100% 100%, 0 100%);
  transition: bottom 0.4s;
  pointer-events: none;
}
.c-btn_link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 3.2rem;
  width: 2.3rem;
  height: 100%;
  -webkit-mask: url(../images/common/icon_arrow.svg) center/contain no-repeat;
  mask: url(../images/common/icon_arrow.svg) center/contain no-repeat;
  background-color: var(--_c-btn-icon-color);
  transition: background-color 0.4s;
}
@media screen and (max-width: 767px) {
  .c-btn_link::after {
    width: 1.9rem;
  }
}
.c-btn_link:focus-visible {
  --_c-btn-icon-color: #fff;
  color: #fff;
  opacity: 1;
}
.c-btn_link:focus-visible::before {
  bottom: -0.1rem;
}
@media (any-hover: hover) {
  .c-btn_link:hover {
    --_c-btn-icon-color: #fff;
    color: #fff;
    opacity: 1;
  }
  .c-btn_link:hover::before {
    bottom: -0.1rem;
  }
}
.c-btn_txt {
  font: inherit;
  color: inherit;
  display: inherit;
  place-content: inherit;
  position: relative;
  padding-right: 3.5rem;
  height: inherit;
}
.c-btn_txt::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1.9rem;
  height: 100%;
  -webkit-mask: url(../images/common/icon_blank.svg) center/contain no-repeat;
  mask: url(../images/common/icon_blank.svg) center/contain no-repeat;
  background-color: var(--_c-btn-icon-color);
  transition: background-color 0.4s;
}

.c-hgroup {
  --_txt-en-color: #B81C22;
}
@media screen and (min-width: 768px) {
  .c-hgroup {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 4rem;
  }
}
.c-hgroup._color-white {
  --_txt-color: #fff;
  --_txt-en-color: #fff;
}
.c-hgroup_jp {
  font-size: 6.4rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--_txt-color);
}
@media screen and (max-width: 767px) {
  .c-hgroup_jp {
    font-size: 4rem;
    line-height: 1.25;
  }
}
.c-hgroup_jp._adjustment {
  font-size: 4.8rem;
  line-height: 1.5;
  letter-spacing: 0.07em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-hgroup_jp._adjustment {
    font-size: 2.4rem;
    line-height: 1.25;
    text-align: center;
  }
}
.c-hgroup_en {
  font-size: 3.6rem;
  letter-spacing: 0.07em;
  font-weight: 500;
  font-family: "Jost", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  color: var(--_txt-en-color);
  text-transform: uppercase;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .c-hgroup_en {
    font-size: 2rem;
    margin-top: 1.8rem;
  }
}
.c-hgroup_txt {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.07em;
  font-weight: 500;
  color: var(--_txt-color);
  margin-top: 5.6rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-hgroup_txt {
    font-size: 1.4rem;
    line-height: 1.7857142857;
    margin-top: 4.8rem;
  }
}

.c-ttl {
  font-size: 4.8rem;
  line-height: 1.25;
  font-weight: 700;
  position: relative;
  padding-left: 4.4rem;
}
@media screen and (max-width: 767px) {
  .c-ttl {
    font-size: 3.2rem;
    line-height: 1.25;
    padding-left: 3.4rem;
  }
}
.c-ttl::before {
  content: "";
  position: absolute;
  top: 2.9rem;
  left: 0;
  width: 2.6rem;
  height: 0.6rem;
  background: #B81C22;
}
@media screen and (max-width: 767px) {
  .c-ttl::before {
    top: 1.9rem;
    width: 2rem;
    height: 0.4rem;
  }
}

.c-radius {
  --_padding: 0.6rem;
  --_radius: 1.2rem;
  padding: var(--_padding);
  border-radius: var(--_radius);
}
.c-radius_inner {
  border-radius: calc(var(--_radius) - var(--_padding));
}

.c-sec-fv {
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
}
.c-sec-fv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #F7F5F3;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12.3611111111vw), 0 100%);
}
@media screen and (max-width: 767px) {
  .c-sec-fv::before {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12.2666666667vw), 0 100%);
  }
}
@media screen and (min-width: 768px) {
  .c-sec-fv .c-hgroup {
    padding-bottom: 1.3rem;
    min-height: calc(34rem - var(--header-height));
  }
}
@media screen and (max-width: 767px) {
  .c-sec-fv .c-hgroup {
    padding-block: 6.4rem 4.8rem;
  }
}

.c-sec-business .txt {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.07em;
  font-weight: 500;
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .c-sec-business .txt {
    font-size: 1.4rem;
    line-height: 1.7857142857;
    margin-top: 2.8rem;
  }
}
.c-sec-business .c-list-business {
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .c-sec-business .c-list-business {
    margin-top: 3.2rem;
  }
}

.c-sec-overview {
  padding-block: 12rem;
  background: #F7F5F3;
}
@media screen and (max-width: 767px) {
  .c-sec-overview {
    padding-block: 6rem;
  }
}
.c-sec-overview .dlist {
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .c-sec-overview .dlist {
    margin-top: 2.8rem;
  }
}
.c-sec-overview .dlist_item {
  padding-block: 2.4rem;
  border-bottom: 1px solid rgba(35, 24, 21, 0.1);
}
@media screen and (min-width: 768px) {
  .c-sec-overview .dlist_item {
    display: grid;
    grid-template-columns: 41.6rem 1fr;
  }
}
@media screen and (min-width: 768px) {
  .c-sec-overview .dlist_theme {
    padding-inline: 3.2rem;
  }
}
.c-sec-overview .dlist_theme_txt {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-sec-overview .dlist_des {
    padding-inline: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-sec-overview .dlist_des {
    margin-top: 0.8rem;
  }
}
.c-sec-overview .dlist_des_txt {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.c-sec-overview .dlist_des_txt:is(.dlist_des_txt + .dlist_des_txt) {
  margin-top: 1.2rem;
}
.c-sec-overview .dlist_des_txt._note {
  position: relative;
  padding-left: 1.25em;
}
.c-sec-overview .dlist_des_txt._note:is(._note + ._note) {
  margin-top: 0.4rem;
}
.c-sec-overview .dlist_des_txt._note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.c-sec-overview .bnr-recruit {
  position: relative;
  z-index: 1;
  margin-top: 6.4rem;
  background: #B81C22;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-sec-overview .bnr-recruit {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 3.8461538462%;
    padding: 4.8rem 3.8461538462%;
  }
}
@media screen and (max-width: 767px) {
  .c-sec-overview .bnr-recruit {
    margin-top: 3.2rem;
    padding-bottom: 2.4rem;
  }
}
.c-sec-overview .bnr-recruit_img-box {
  display: grid;
  width: 27.6442307692%;
}
@media screen and (min-width: 768px) {
  .c-sec-overview .bnr-recruit_img-box {
    position: absolute;
    top: 1.2rem;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-sec-overview .bnr-recruit_img-box {
    width: 100%;
  }
}
.c-sec-overview .bnr-recruit_img-box_img {
  grid-row: 1;
  grid-column: 1;
}
.c-sec-overview .bnr-recruit_img-box_img._01 {
  width: 39.7101449275%;
}
@media screen and (max-width: 767px) {
  .c-sec-overview .bnr-recruit_img-box_img._01 {
    margin-top: -0.8955223881%;
  }
}
.c-sec-overview .bnr-recruit_img-box_img._02 {
  margin-top: 24.6376811594%;
  margin-left: 42.6086956522%;
  width: 17.6811594203%;
}
@media screen and (max-width: 767px) {
  .c-sec-overview .bnr-recruit_img-box_img._02 {
    margin-top: 24.4776119403%;
    margin-left: 43.8805970149%;
    width: 18.2089552239%;
  }
}
.c-sec-overview .bnr-recruit_img-box_img._03 {
  margin-top: 6.3768115942%;
  margin-left: auto;
  width: 30.4347826087%;
}
@media screen and (max-width: 767px) {
  .c-sec-overview .bnr-recruit_img-box_img._03 {
    margin-top: 5.671641791%;
    margin-right: -2.9850746269%;
    width: 31.3432835821%;
  }
}
.c-sec-overview .bnr-recruit_ttl {
  font-size: 2.8rem;
  line-height: 1.5;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-sec-overview .bnr-recruit_ttl {
    font-size: 2rem;
    line-height: 1.5;
    margin-top: 0.9rem;
  }
}
.c-sec-overview .bnr-recruit_ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 35.5%;
  z-index: -1;
  translate: -50% -50%;
  width: 63.7rem;
  height: 12.8rem;
  background: url(../images/common/txt_join_us.svg) center/contain no-repeat;
  rotate: -7deg;
}
@media screen and (max-width: 767px) {
  .c-sec-overview .bnr-recruit_ttl::before {
    left: 50%;
    width: 34.5rem;
    height: 6.9rem;
  }
}
@media screen and (max-width: 767px) {
  .c-sec-overview .bnr-recruit .c-btn {
    text-align: center;
    margin-top: 1.6rem;
  }
}
.c-sec-overview .bnr-recruit .c-btn_link {
  width: 40rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .c-sec-overview .bnr-recruit .c-btn_link {
    width: 100%;
    max-width: 28.7rem;
  }
}

.c-sec-recruit {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.c-sec-recruit::before {
  --_clip-path-val: 12.3611111111vw;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  translate: 0 -50%;
  width: 100%;
  height: calc(100% - 0.3rem);
  background: #B81C22;
  clip-path: polygon(0 var(--_clip-path-val), 100% 0, 100% calc(100% - var(--_clip-path-val)), 0 100%);
}
@media screen and (max-width: 767px) {
  .c-sec-recruit::before {
    --_clip-path-val: 12.2666666667vw;
    height: 100%;
  }
}
.c-sec-recruit .loop-slide {
  display: flex;
  position: absolute;
  left: 50%;
  bottom: 6.3888888889vw;
  translate: -50% 0;
  width: 100vw;
  rotate: -7deg;
}
@media screen and (max-width: 767px) {
  .c-sec-recruit .loop-slide {
    bottom: 6.6666666667vw;
  }
}
.c-sec-recruit .loop-slide_img {
  --_item-width: 2880;
  --_item-val: 1;
  --_design-window-width: 1440;
  --_animation-time: 60s;
  --_item-space: 5rem;
  display: inherit;
  flex-shrink: 0;
  padding-right: var(--_item-space);
  width: calc(var(--_item-width) * var(--_item-val) / var(--_design-window-width) * 100vw + var(--_item-space));
  max-width: calc(var(--_item-width) / 10 * 1rem);
}
@media screen and (max-width: 767px) {
  .c-sec-recruit .loop-slide_img {
    --_item-width: 1165;
    --_design-window-width: 375;
    --_animation-time: 30s;
    --_item-space: 7.2rem;
  }
}
.c-sec-recruit .loop-slide_img:first-of-type {
  animation: loop-slide1 var(--_animation-time) calc(var(--_animation-time) / 2 * -1) linear infinite;
}
.c-sec-recruit .loop-slide_img:last-of-type {
  animation: loop-slide2 var(--_animation-time) linear infinite;
}
@keyframes loop-slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.c-sec-recruit .c-wrap {
  position: relative;
  padding-block: 25.8rem;
}
@media screen and (max-width: 767px) {
  .c-sec-recruit .c-wrap {
    padding-block: 10.8rem 7rem;
  }
}
@media screen and (min-width: 768px) {
  .c-sec-recruit .c-hgroup {
    margin-left: auto;
    width: 65rem;
  }
}
.c-sec-recruit .c-btn {
  margin-top: 6.4rem;
}
@media screen and (min-width: 768px) {
  .c-sec-recruit .c-btn {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-sec-recruit .c-btn {
    margin-top: 4.8rem;
  }
}
.c-sec-recruit .img-box {
  display: grid;
  width: 48.3974358974%;
}
@media screen and (min-width: 768px) {
  .c-sec-recruit .img-box {
    position: absolute;
    top: 50%;
    left: -7.6923076923%;
    translate: 0 -50%;
  }
}
@media screen and (max-width: 767px) {
  .c-sec-recruit .img-box {
    margin: 2.7rem calc(50% - 50vw) 0;
    width: 100vw;
  }
}
.c-sec-recruit .img-box.js-bottom-action .img-box_img {
  opacity: 0;
  translate: 0 10%;
  transition: opacity ease-out 0.6s, translate ease-out 0.6s;
}
.c-sec-recruit .img-box.js-bottom-action.is-bottom-action .img-box_img {
  opacity: 1;
  translate: 0 0;
}
.c-sec-recruit .img-box_img {
  grid-row: 1;
  grid-column: 1;
}
.c-sec-recruit .img-box_img._01 {
  width: 74.1721854305%;
}
@media screen and (max-width: 767px) {
  .c-sec-recruit .img-box_img._01 {
    margin-top: 34.1333333333%;
    width: 65.6%;
  }
}
.c-sec-recruit .img-box_img._02 {
  margin: 55.7947019868% 0 0 auto;
  width: 33.1125827815%;
  transition-delay: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-sec-recruit .img-box_img._02 {
    margin: 0 0 0 20%;
    width: 31.4666666667%;
  }
}
.c-sec-recruit .img-box_img._03 {
  margin: 91.059602649% 0 0 28.642384106%;
  width: 57.119205298%;
  transition-delay: 0.6s;
}
@media screen and (max-width: 767px) {
  .c-sec-recruit .img-box_img._03 {
    margin: 17.8666666667% 0 0 auto;
    width: 48.5333333333%;
  }
}

.c-sec-contact {
  background: #fff;
  overflow-x: clip;
}
.c-sec-contact .c-wrap {
  position: relative;
  z-index: 1;
  padding-top: 12rem;
}
@media screen and (max-width: 767px) {
  .c-sec-contact .c-wrap {
    padding-top: 6.4rem;
  }
}
.c-sec-contact .c-wrap::after {
  content: "";
  position: absolute;
  top: -4.6rem;
  right: -9.6rem;
  z-index: -1;
  width: 49rem;
  height: 60.4rem;
  background: url(../images/common/contact_logo.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .c-sec-contact .c-wrap::after {
    top: 1.2rem;
    right: calc(50% - 50vw);
    width: 18.1rem;
    height: 22.4rem;
  }
}
.c-sec-contact .c-contact {
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .c-sec-contact .c-contact {
    margin-top: 4.8rem;
  }
}

.c-cookie {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 4.8rem 4rem;
  width: 64.1rem;
  background: rgba(235, 233, 230, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.6s;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-cookie {
    right: 50%;
    translate: 50% 0;
    padding-inline: 8.5333333333vw;
    width: 89.3333333333vw;
  }
}
.c-cookie.is-show {
  opacity: 1;
  pointer-events: all;
}
.c-cookie.is-show.is-hide {
  opacity: 0;
  pointer-events: none;
}
.c-cookie_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 4.8rem;
  height: 4.8rem;
}
.c-cookie_close::before, .c-cookie_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 2.4rem;
  height: 0.2rem;
  background: #231815;
}
.c-cookie_close::before {
  rotate: 45deg;
}
.c-cookie_close::after {
  rotate: -45deg;
}
.c-cookie_txt {
  font-size: 1.3rem;
  line-height: 1.7692307692;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-cookie_txt {
    font-size: 1.2rem;
    line-height: 1.75;
  }
}
.c-cookie_btn {
  margin-top: 0.8rem;
}
.c-cookie_btn_link {
  font-size: 1.3rem;
  line-height: 1.7692307692;
  letter-spacing: 0.07em;
  font-weight: 500;
  color: #B81C22;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 0.2rem;
  position: relative;
  padding-right: 2.2rem;
  transition: opacity 0.4s, text-decoration-color 0.4s;
}
@media screen and (max-width: 767px) {
  .c-cookie_btn_link {
    font-size: 1.2rem;
    line-height: 1.75;
  }
}
.c-cookie_btn_link::after {
  content: "";
  position: absolute;
  top: calc(50% + 0.1rem);
  right: 0;
  translate: 0 -50%;
  width: 1.4rem;
  height: 1.1rem;
  background: url(../images/common/icon_arrow.svg) center/contain no-repeat;
}
.c-cookie_btn_link:focus-visible {
  text-decoration: underline;
  text-decoration-color: transparent;
}
@media (any-hover: hover) {
  .c-cookie_btn_link:hover {
    text-decoration: underline;
    text-decoration-color: transparent;
  }
}

.c-contact {
  background: #F7F5F3;
}
@media screen and (min-width: 768px) {
  .c-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-block: 6.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-contact_tel {
    padding-block: 4rem;
  }
}
.c-contact_tel_ttl {
  font-size: 2.4rem;
  line-height: 1.75;
  letter-spacing: 0.07em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-contact_tel_ttl {
    font-size: 2rem;
    line-height: 1.75;
  }
}
.c-contact_tel_num {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-contact_tel_num {
    margin-top: 1.2rem;
  }
}
.c-contact_tel_num_link {
  font-size: 4.8rem;
  line-height: 1.25;
  font-weight: 500;
  font-family: "Jost", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  color: #B81C22;
  display: block;
  position: relative;
  margin-inline: auto;
  padding-left: 4.4rem;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .c-contact_tel_num_link {
    font-size: 3.6rem;
    line-height: 1.25;
    padding-left: 3.5rem;
  }
}
.c-contact_tel_num_link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 3.2rem;
  height: 3.2rem;
  background: url(../images/common/icon_tel.svg) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .c-contact_tel_num_link::before {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.c-contact_tel_time {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.07em;
  font-weight: 500;
  color: #686564;
  text-align: center;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .c-contact_tel_time {
    font-size: 1.4rem;
    line-height: 1.7857142857;
    margin-top: 0.4rem;
  }
}
.c-contact_mail {
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-contact_mail {
    padding-block: 4rem;
  }
}
.c-contact_mail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: rgba(35, 24, 21, 0.1);
}
@media screen and (max-width: 767px) {
  .c-contact_mail::before {
    left: 50%;
    translate: -50% 0;
    width: 76.1194029851%;
    height: 1px;
  }
}
.c-contact_mail_ttl {
  font-size: 2.4rem;
  line-height: 1.75;
  letter-spacing: 0.07em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-contact_mail_ttl {
    font-size: 2rem;
    line-height: 1.75;
  }
}
.c-contact_mail_btn {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-contact_mail_btn {
    margin-top: 1.2rem;
  }
}
.c-contact_mail_btn_link {
  display: grid;
  place-content: center;
  position: relative;
  z-index: 1;
  margin-inline: auto;
  width: 38.8rem;
  height: 8.6rem;
  background: #B81C22;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-contact_mail_btn_link {
    width: 25.5rem;
    height: 7.6rem;
  }
}
.c-contact_mail_btn_link::after {
  --_hover-color-size: 4.8rem;
  content: "";
  position: absolute;
  bottom: calc(-100% - var(--_hover-color-size));
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% + var(--_hover-color-size));
  background: #EB242B;
  clip-path: polygon(0 var(--_hover-color-size), 100% 0, 100% 100%, 0 100%);
  transition: bottom 0.4s;
  pointer-events: none;
}
.c-contact_mail_btn_link:focus-visible {
  opacity: 1;
}
.c-contact_mail_btn_link:focus-visible::after {
  bottom: 0;
}
@media (any-hover: hover) {
  .c-contact_mail_btn_link:hover {
    opacity: 1;
  }
  .c-contact_mail_btn_link:hover::after {
    bottom: 0;
  }
}
.c-contact_mail_btn_txt {
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
  padding: 0 0 0.2rem 4.8rem;
}
@media screen and (max-width: 767px) {
  .c-contact_mail_btn_txt {
    font-size: 1.6rem;
    line-height: 1.25;
    padding-left: 4rem;
  }
}
.c-contact_mail_btn_txt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 3.2rem;
  height: 3.2rem;
  -webkit-mask: url(../images/common/icon_mail.svg) center/contain no-repeat;
  mask: url(../images/common/icon_mail.svg) center/contain no-repeat;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-contact_mail_btn_txt::before {
    width: 2.4rem;
    height: 2.4rem;
  }
}

@media screen and (min-width: 768px) {
  .c-list-business {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-list-business:is(.c-hgroup + *) {
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .c-list-business:is(.c-hgroup + *) {
    margin-top: 4.8rem;
  }
}
.c-list-business:is(.c-ttl + *) {
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .c-list-business:is(.c-ttl + *) {
    margin-top: 4.8rem;
  }
}
.c-list-business + .c-btn {
  text-align: center;
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .c-list-business + .c-btn {
    margin-top: 4.8rem;
  }
}
.c-list-business_item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-list-business_item {
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
    padding-inline: 3.9rem;
  }
}
@media screen and (max-width: 767px) {
  .c-list-business_item {
    padding-block: 3.2rem;
  }
}
@media screen and (min-width: 768px) {
  .c-list-business_item:nth-child(3n+2) {
    transition-delay: 0.3s;
  }
}
@media screen and (min-width: 768px) {
  .c-list-business_item:nth-child(3n+3) {
    transition-delay: 0.6s;
  }
}
@media screen and (min-width: 768px) {
  .c-list-business_item:last-child::after {
    content: "";
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-list-business_item:last-child {
    padding-bottom: 0;
  }
}
.c-list-business_item::before, .c-list-business_item::after {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(35, 24, 21, 0.1);
}
@media screen and (max-width: 767px) {
  .c-list-business_item::before, .c-list-business_item::after {
    width: 100%;
    height: 1px;
  }
}
.c-list-business_item::before {
  content: "";
  left: 0;
}
.c-list-business_ttl {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.07em;
  font-weight: 700;
}
.c-list-business_txt {
  font-size: 1.5rem;
  line-height: 1.7333333333;
  letter-spacing: 0.07em;
  font-weight: 500;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-list-business_txt {
    margin-top: 2.2rem;
  }
}
.c-list-business_img {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-list-business_img {
    margin-top: 2.2rem;
  }
}

.c-card-list {
  margin-top: 5.6rem;
}
@media screen and (min-width: 768px) {
  .c-card-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 3.2rem;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .c-card-list {
    margin-top: 2.8rem;
  }
}
@media screen and (min-width: 768px) {
  .c-card-list_item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-card-list_item:nth-child(n+2) {
    margin-top: 3.2rem;
    padding-top: 2.6rem;
    border-top: 1px solid #E5E4E2;
  }
}
@media screen and (min-width: 768px) {
  .c-card-list_item:nth-child(n+4) {
    margin-top: 6.4rem;
    padding-top: 5.2rem;
  }
}
@media screen and (min-width: 768px) {
  .c-card-list_item:nth-child(3n+4) {
    position: relative;
  }
  .c-card-list_item:nth-child(3n+4)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200vw;
    height: 1px;
    background: #E5E4E2;
  }
}
.c-card-list_ttl {
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.07em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-card-list_ttl {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.c-card-list_category {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.c-card-list_category_label {
  font-size: 1.3rem;
  line-height: 1.2307692308;
  letter-spacing: 0.07em;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border: 1px solid #231815;
}
.c-card-list_txt {
  font-size: 1.5rem;
  line-height: 1.7333333333;
  letter-spacing: 0.07em;
  font-weight: 700;
  text-align: justify;
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-card-list_txt {
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }
}
.c-card-list_img {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-card-list_img {
    margin-top: 1.6rem;
  }
}

.c-breadcrumb_list {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  width: fit-content;
}
.c-breadcrumb_item {
  font-size: 1.4rem;
  line-height: 1.2142857143;
  font-weight: 500;
  color: #686564;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb_item {
    font-size: 1.2rem;
    line-height: 1.4166666667;
  }
}
.c-breadcrumb_item:nth-child(n+2) {
  position: relative;
  padding-left: 4.6rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb_item:nth-child(n+2) {
    padding-left: 2.9rem;
  }
}
.c-breadcrumb_item:nth-child(n+2)::before {
  color: rgba(35, 24, 21, 0.1);
  content: "/";
  position: absolute;
  top: 0;
  left: 2rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb_item:nth-child(n+2)::before {
    left: 1.2rem;
  }
}
.c-breadcrumb_item:last-child {
  color: #231815;
}
.c-breadcrumb_link, .c-breadcrumb_name {
  font: inherit;
  color: inherit;
  display: block;
}

.p-index-fv {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-index-fv {
    display: grid;
    grid-template-columns: 65.5555555556vw 1fr;
    height: 100vh;
  }
}
@media screen and (max-width: 767px) {
  .p-index-fv {
    padding-bottom: calc(46.9333333333vw + 2.4rem);
  }
}
.p-index-fv.js-bottom-action .box_img {
  filter: blur(2rem);
  opacity: 0;
  transition: opacity ease-out 0.8s, filter ease-out 0.8s;
}
.p-index-fv.js-bottom-action .box_ttl {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.6s 0.8s;
}
@media screen and (min-width: 768px) {
  .p-index-fv.js-bottom-action .hgroup {
    opacity: 0;
    translate: 0 10%;
    transition: opacity ease-out 0.6s 1.4s, translate ease-out 0.6s 1.4s;
  }
}
.p-index-fv.is-bottom-action .box_img {
  filter: blur(0);
  opacity: 1;
}
.p-index-fv.is-bottom-action .box_ttl {
  clip-path: inset(0);
}
@media screen and (min-width: 768px) {
  .p-index-fv.is-bottom-action .hgroup {
    opacity: 1;
    translate: 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-index-fv .box {
    position: relative;
    width: 100%;
    height: 100svh;
  }
}
.p-index-fv .box_img {
  width: 100%;
  height: 100vh;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26.2962962963vh), 0 calc(100% - 11.975308642vh));
}
@media screen and (max-width: 767px) {
  .p-index-fv .box_img {
    height: calc(100% - 13.6vw);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12.2666666667vw), 0 100%);
  }
}
.p-index-fv .box_img img {
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
@media screen and (max-width: 767px) {
  .p-index-fv .box_img img {
    object-position: right top;
  }
}
.p-index-fv .box_ttl {
  position: absolute;
  bottom: 1.2345679012%;
  left: 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-index-fv .box_ttl {
    height: 75.0617283951%;
  }
}
@media screen and (max-width: 767px) {
  .p-index-fv .box_ttl {
    bottom: 0.8vw;
    width: 92.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-index-fv .box_ttl_img {
    height: 100%;
  }
  .p-index-fv .box_ttl_img img {
    width: auto;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-index-fv .hgroup {
    position: relative;
    z-index: 1;
    padding-top: 26.7901234568vh;
    padding-left: 2.7777777778vw;
  }
}
@media screen and (max-width: 767px) {
  .p-index-fv .hgroup {
    display: flex;
    flex-direction: column;
    margin-top: 8rem;
    padding-inline: 5.3333333333%;
    opacity: 0;
    translate: 0 10%;
    transition: opacity ease-out 0.6s, translate ease-out 0.6s;
  }
  .p-index-fv .hgroup.is-bottom-action {
    opacity: 1;
    translate: 0 0;
  }
}
.p-index-fv .hgroup_ttl {
  font-feature-settings: "palt";
  font-size: 3.8888888889vw;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-index-fv .hgroup_ttl {
    font-size: 4rem;
    order: 1;
    margin-top: 8rem;
  }
}
.p-index-fv .hgroup_txt {
  font-size: 1.6666666667vw;
  line-height: 1.5;
  letter-spacing: 0.09em;
  font-weight: 700;
  margin-top: 1.9444444444vw;
}
@media screen and (max-width: 767px) {
  .p-index-fv .hgroup_txt {
    font-size: 2rem;
    line-height: 1.5;
    order: 2;
    margin-top: 1.6rem;
  }
}
.p-index-fv .hgroup_direct {
  font-size: 0.9722222222vw;
  line-height: 2;
  letter-spacing: 0.09em;
  font-weight: 600;
  font-family: "Jost", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  color: #B81C22;
  text-transform: uppercase;
  position: relative;
  padding-right: 3.4722222222vw;
  width: fit-content;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-index-fv .hgroup_direct {
    margin-top: 3.8888888889vw;
  }
}
@media screen and (max-width: 767px) {
  .p-index-fv .hgroup_direct {
    font-size: 1.2rem;
    order: 0;
    margin-left: auto;
    padding-right: 3.4rem;
  }
}
.p-index-fv .hgroup_direct::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1.25vw;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 18 23" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.99707 23.001L7.31055 21.3213L-6.14094e-07 14.0488L3.375 14.0488L8.99805 19.6436L14.623 14.0488L17.998 14.0488L8.99707 23.001ZM8.99805 17.2705L7.80469 16.083L7.80469 -4.45566e-07L10.1914 -3.41239e-07L10.1914 16.084L8.99805 17.2705Z" fill="%23B81C22"/></svg>') center/contain no-repeat;
  transform: translateY(0);
  animation: scrollDown 1.6s infinite ease-out;
}
@media screen and (max-width: 767px) {
  .p-index-fv .hgroup_direct::after {
    width: 1.4rem;
  }
}
@keyframes scrollDown {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(101%);
  }
  30.1% {
    transform: translateY(-101%);
  }
  80% {
    transform: translateY(0);
  }
}
.p-index-business {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
.p-index-business::before {
  --_bg-clip-size: 12.2222222222vw;
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #F7F5F3;
  clip-path: polygon(0 var(--_bg-clip-size), 100% 0, 100% calc(100% - var(--_bg-clip-size)), 0 100%);
}
@media screen and (max-width: 767px) {
  .p-index-business::before {
    --_bg-clip-size: 12.2666666667vw;
  }
}
.p-index-business .c-wrap {
  position: relative;
  padding-block: 25.8rem;
}
@media screen and (max-width: 767px) {
  .p-index-business .c-wrap {
    padding-block: calc(25.6vw + 6.4rem) 12.6rem;
  }
}
.p-index-business .img {
  position: absolute;
  top: -9.9rem;
  right: -6.4rem;
  width: 56.9rem;
}
@media screen and (max-width: 767px) {
  .p-index-business .img {
    top: -46.9333333333vw;
    left: calc(50% - 50vw);
    right: auto;
    width: 82.6666666667vw;
  }
}
.p-index-business .c-hgroup {
  max-width: 62.4rem;
}
.p-index-works {
  padding-block: 8rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-index-works {
    padding-block: 6.2rem 8rem;
  }
}
.p-index-works .list {
  display: grid;
  gap: 1px;
  margin-top: 5.6rem;
}
@media screen and (min-width: 768px) {
  .p-index-works .list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-index-works .list {
    gap: 0.4rem;
    margin-top: 4.8rem;
  }
}
.p-index-works .list_item {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding: 4rem 3.2rem 3.2rem;
  min-height: 44.375vw;
}
@media screen and (max-width: 767px) {
  .p-index-works .list_item {
    padding-inline: 8.5333333333%;
    min-height: 133.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-index-works .list_item:nth-child(3n+2) {
    transition-delay: 0.3s;
  }
}
@media screen and (min-width: 768px) {
  .p-index-works .list_item:nth-child(3n+3) {
    transition-delay: 0.6s;
  }
}
.p-index-works .list_ttl {
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-index-works .list_ttl {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.p-index-works .list_category {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.p-index-works .list_category_label {
  font-size: 1.3rem;
  line-height: 1.2307692308;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: #fff;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.3);
}
.p-index-works .list_txt {
  font-size: 1.5rem;
  line-height: 1.7333333333;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: #fff;
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-index-works .list_txt {
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }
}
.p-index-works .list .c-btn {
  text-align: center;
  margin-top: auto;
}
.p-index-works .list_bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.p-index-works .list_bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(104, 16, 19, 0.5);
}
.p-index-works .list_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-about-us-greeting {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-about-us-greeting {
    margin-top: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .p-about-us-greeting .c-wrap {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 1fr 39rem;
    column-gap: 6.4rem;
  }
}
@media screen and (min-width: 768px) {
  .p-about-us-greeting .c-ttl {
    grid-row: 1;
    grid-column: 1;
  }
}
.p-about-us-greeting .txt-box {
  margin-top: 5.6rem;
}
@media screen and (min-width: 768px) {
  .p-about-us-greeting .txt-box {
    grid-row: 2;
    grid-column: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-about-us-greeting .txt-box {
    margin-top: 2.8rem;
  }
}
.p-about-us-greeting .txt-box_txt {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-about-us-greeting .txt-box_txt {
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }
}
.p-about-us-greeting .txt-box_txt:is(* + .txt-box_txt) {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-about-us-greeting .txt-box_txt:is(* + .txt-box_txt) {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .p-about-us-greeting .img {
    grid-row: span 4;
    grid-column: 2;
  }
}
@media screen and (max-width: 767px) {
  .p-about-us-greeting .img {
    margin-top: 2.8rem;
  }
}
.p-about-us-greeting .dlist {
  margin-top: 4rem;
  margin-left: auto;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-about-us-greeting .dlist {
    grid-row: 3;
    grid-column: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-about-us-greeting .dlist {
    margin-top: 2rem;
  }
}
.p-about-us-greeting .dlist_company {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-about-us-greeting .dlist_company {
    font-size: 1.2rem;
    line-height: 1.75;
  }
}
.p-about-us-greeting .dlist_des {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-about-us-greeting .dlist_des {
    column-gap: 0.8rem;
  }
}
.p-about-us-greeting .dlist_des_ttl {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.07em;
  font-weight: 500;
  padding-top: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-about-us-greeting .dlist_des_ttl {
    font-size: 1.2rem;
    line-height: 1.75;
  }
}
.p-about-us-greeting .dlist_des_name {
  font-size: 2.8rem;
  line-height: 1.75;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-about-us-greeting .dlist_des_name {
    font-size: 1.8rem;
    line-height: 1.7777777778;
  }
}
.p-about-us-business {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-about-us-business {
    margin-top: 8rem;
  }
}
.p-about-us-overview {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-about-us-overview {
    margin-top: 6rem;
  }
}
.p-about-us-history {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-about-us-history {
    margin-top: 6rem;
  }
}
.p-about-us-history .dlist {
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-about-us-history .dlist {
    margin-top: 2.8rem;
  }
}
.p-about-us-history .dlist_item {
  padding-block: 3.2rem;
  border-bottom: 1px solid rgba(35, 24, 21, 0.1);
}
@media screen and (min-width: 768px) {
  .p-about-us-history .dlist_item {
    display: grid;
    grid-template-columns: 41.6rem 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-about-us-history .dlist_item {
    padding-block: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .p-about-us-history .dlist_theme {
    padding-inline: 3.2rem;
  }
}
.p-about-us-history .dlist_theme_txt {
  display: flex;
  flex-wrap: wrap;
}
.p-about-us-history .dlist_theme_txt_year {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Jost", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  color: #B81C22;
  min-width: 10.2rem;
}
@media screen and (max-width: 767px) {
  .p-about-us-history .dlist_theme_txt_year {
    min-width: 8.4rem;
  }
}
.p-about-us-history .dlist_theme_txt_jp-year {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #686564;
  min-width: 8.4rem;
}
@media screen and (max-width: 767px) {
  .p-about-us-history .dlist_theme_txt_jp-year {
    font-size: 1.4rem;
    line-height: 2;
    min-width: 6.8rem;
  }
}
.p-about-us-history .dlist_theme_txt_month {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #686564;
}
@media screen and (max-width: 767px) {
  .p-about-us-history .dlist_theme_txt_month {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.p-about-us-history .dlist_des {
  padding-inline: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-about-us-history .dlist_des {
    margin-top: 1.6rem;
    padding-inline: 1.6rem;
  }
}
.p-about-us-history .dlist_des_txt {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-about-us-history .dlist_des_txt {
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }
}
.p-about-us-history .list {
  margin-top: 6.4rem;
}
@media screen and (min-width: 768px) {
  .p-about-us-history .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-us-history .list {
    margin-top: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-us-history .list_item {
    margin-top: 1.6rem;
  }
}
.p-about-us-access {
  margin-top: 12rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .p-about-us-access {
    margin-top: 6rem;
    padding-bottom: 6rem;
  }
}
.p-about-us-access .list {
  margin-top: 5.6rem;
}
@media screen and (min-width: 768px) {
  .p-about-us-access .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-us-access .list {
    margin-top: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about-us-access .list_item:nth-child(n+2) {
    margin-top: 3.2rem;
  }
}
.p-about-us-access .list_ttl {
  font-size: 3.2rem;
  line-height: 1.25;
  font-weight: 700;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(35, 24, 21, 0.1);
}
@media screen and (max-width: 767px) {
  .p-about-us-access .list_ttl {
    font-size: 2.4rem;
    line-height: 1.3333333333;
    padding-bottom: 1rem;
  }
}
.p-about-us-access .list_add {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-about-us-access .list_add {
    margin-top: 2rem;
  }
}
.p-about-us-access .list_add_txt {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-about-us-access .list_add_txt {
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }
}
.p-about-us-access .list_add_map {
  margin-top: 3.2rem;
  aspect-ratio: 592/395;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-about-us-access .list_add_map {
    margin-top: 1.6rem;
  }
}
.p-about-us-access .list_add_map_iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-construction-record-anchor {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-construction-record-anchor {
    margin-top: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .p-construction-record-anchor .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-construction-record-anchor .list_item:nth-child(n+2) {
    margin-top: 1.6rem;
  }
}
.p-construction-record-anchor .list_link {
  max-width: 100%;
}
.p-construction-record-civil-engineering {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-construction-record-civil-engineering {
    margin-top: 6rem;
  }
}
.p-construction-record-demolition {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-construction-record-demolition {
    margin-top: 6rem;
  }
}
.p-construction-record-bridge-repair {
  margin-top: 12rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .p-construction-record-bridge-repair {
    margin-top: 6rem;
    padding-bottom: 6rem;
  }
}

.p-recruit-greeting {
  margin-top: 12rem;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting {
    margin-top: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit-greeting .c-wrap {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 1fr 50.3rem;
    column-gap: 6.4rem;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit-greeting .c-ttl {
    grid-row: 1;
    grid-column: 1;
  }
}
.p-recruit-greeting .txt-box {
  margin-top: 5.6rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-greeting .txt-box {
    grid-row: 2;
    grid-column: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting .txt-box {
    margin-top: 2.8rem;
  }
}
.p-recruit-greeting .txt-box_ttl {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.07em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting .txt-box_ttl {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.p-recruit-greeting .txt-box_txt {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting .txt-box_txt {
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }
}
.p-recruit-greeting .txt-box_txt:is(.txt-box_ttl + .txt-box_txt) {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting .txt-box_txt:is(.txt-box_ttl + .txt-box_txt) {
    margin-top: 1.6rem;
  }
}
.p-recruit-greeting .txt-box_txt:is(.txt-box_txt + .txt-box_txt) {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting .txt-box_txt:is(.txt-box_txt + .txt-box_txt) {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .p-recruit-greeting .fig {
    grid-row: span 3;
    grid-column: 2;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting .fig {
    margin-top: 2.8rem;
  }
}
.p-recruit-greeting .fig_img {
  position: relative;
}
.p-recruit-greeting .fig_img::before, .p-recruit-greeting .fig_img::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: #FFF3F3;
  clip-path: polygon(0 13.8554216867%, 100% 0, 100% calc(100% - 13.8554216867%), 0 100%);
}
.p-recruit-greeting .fig_img::before {
  top: 76.8072289157%;
  right: -18.253968254%;
  width: 57.1428571429%;
  height: 57.2289156627%;
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting .fig_img::before {
    top: 76.1904761905%;
    right: -6.2686567164%;
    width: 48.6567164179%;
    height: 48.6394557823%;
  }
}
.p-recruit-greeting .fig_img::after {
  top: 130.7228915663%;
  right: 44.1798941799%;
  width: 26.9841269841%;
  height: 27.1084337349%;
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting .fig_img::after {
    top: 122.1088435374%;
    right: 46.8656716418%;
    width: 22.9850746269%;
    height: 23.1292517007%;
  }
}
.p-recruit-greeting .fig_cap_dlist {
  margin-left: auto;
  width: fit-content;
}
.p-recruit-greeting .fig_cap_dlist_company {
  font-size: 1.4rem;
  line-height: 1.7857142857;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting .fig_cap_dlist_company {
    font-size: 1.2rem;
    line-height: 1.75;
  }
}
.p-recruit-greeting .fig_cap_dlist_des {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting .fig_cap_dlist_des {
    column-gap: 0.8rem;
  }
}
.p-recruit-greeting .fig_cap_dlist_des_ttl {
  font-size: 1.4rem;
  line-height: 1.7857142857;
  letter-spacing: 0.07em;
  font-weight: 500;
  padding-top: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting .fig_cap_dlist_des_ttl {
    font-size: 1.2rem;
    line-height: 1.75;
  }
}
.p-recruit-greeting .fig_cap_dlist_des_name {
  font-size: 2.4rem;
  line-height: 1.75;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-recruit-greeting .fig_cap_dlist_des_name {
    font-size: 1.8rem;
    line-height: 1.7777777778;
  }
}
.p-recruit-business {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-business {
    margin-top: 6rem;
  }
}
.p-recruit-overview {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-overview {
    margin-top: 6rem;
  }
}
.p-recruit-q-and-a {
  padding-block: 12rem 16rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-q-and-a {
    padding-block: 6rem 8rem;
  }
}
.p-recruit-q-and-a .dlist {
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-q-and-a .dlist {
    margin-top: 2.8rem;
  }
}
.p-recruit-q-and-a .dlist_item:nth-child(n+2) {
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-q-and-a .dlist_item:nth-child(n+2) {
    margin-top: 3.2rem;
  }
}
.p-recruit-q-and-a .dlist_theme {
  position: relative;
  padding-left: 4.4rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(35, 24, 21, 0.1);
}
.p-recruit-q-and-a .dlist_theme::before {
  font-size: 2.8rem;
  line-height: 0.8928571429;
  font-weight: 700;
  font-family: "Jost", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  color: #B81C22;
  text-transform: uppercase;
  content: "q.";
  position: absolute;
  top: 0;
  left: 0;
}
.p-recruit-q-and-a .dlist_theme_txt {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.p-recruit-q-and-a .dlist_des {
  position: relative;
  margin-top: 4rem;
  padding-left: 4.4rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-q-and-a .dlist_des {
    margin-top: 2rem;
  }
}
.p-recruit-q-and-a .dlist_des::before {
  font-size: 2.8rem;
  line-height: 0.8928571429;
  font-weight: 700;
  font-family: "Jost", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  color: #B81C22;
  text-transform: uppercase;
  content: "a.";
  position: absolute;
  top: 0;
  left: 0;
}
.p-recruit-q-and-a .dlist_des_txt {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-recruit-sec-recruit .c-wrap {
    padding-block: 28.2rem;
  }
}

.p-privacy-content {
  padding-block: 12rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-content {
    padding-block: 8rem 6rem;
  }
}
.p-privacy-content .txt {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-privacy-content .txt {
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }
}
.p-privacy-content .txt:is(.c-ttl + .txt) {
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-content .txt:is(.c-ttl + .txt) {
    margin-top: 2.8rem;
  }
}
.p-privacy-content .txt:is(.txt + .txt) {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-content .txt:is(.txt + .txt) {
    margin-top: 1rem;
  }
}
.p-privacy-content .txt_link {
  color: #B81C22;
  text-decoration: underline;
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 0.2rem;
  transition: opacity 0.4s, text-decoration-color 0.4s;
}
.p-privacy-content .txt_link:focus-visible {
  text-decoration-color: transparent;
  opacity: 0.6;
}
@media (any-hover: hover) {
  .p-privacy-content .txt_link:hover {
    text-decoration-color: transparent;
    opacity: 0.6;
  }
}
.p-privacy-content .txt_link::after {
  content: "";
  display: inline-block;
  position: relative;
  margin-inline: 0.7rem 0.5rem;
  width: 1.4rem;
  height: 1.2rem;
  -webkit-mask: url(../images/common/icon_blank.svg) center/contain no-repeat;
  mask: url(../images/common/icon_blank.svg) center/contain no-repeat;
  background-color: #B81C22;
}
.p-privacy-content .c-ttl {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-content .c-ttl {
    margin-top: 6rem;
  }
}

.p-404-content {
  overflow: hidden;
}
.p-404-content .c-wrap {
  padding-block: 12rem;
}
@media screen and (min-width: 768px) {
  .p-404-content .c-wrap {
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .p-404-content .c-wrap {
    padding-block: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .p-404-content .c-wrap::after {
    content: "";
    position: absolute;
    top: 0.2rem;
    right: -9.6rem;
    z-index: -1;
    width: 49rem;
    height: 60.4rem;
    background: url(../images/common/contact_logo.svg) center/contain no-repeat;
  }
}
@media screen and (min-width: 768px) {
  .p-404-content .hgroup {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    column-gap: 4.8rem;
  }
}
.p-404-content .hgroup_ttl {
  width: 20.6rem;
}
@media screen and (max-width: 767px) {
  .p-404-content .hgroup_ttl {
    margin-inline: auto;
  }
}
.p-404-content .hgroup_txt {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.07em;
  font-weight: 500;
  font-family: "Jost", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  color: rgba(35, 24, 21, 0.3);
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-404-content .hgroup_txt {
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: center;
    margin-top: 2.4rem;
  }
}
.p-404-content .txt {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.07em;
  font-weight: 500;
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-404-content .txt {
    font-size: 1.4rem;
    line-height: 1.7857142857;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .p-404-content .txt::after {
    content: "";
    position: absolute;
    top: 1.4rem;
    right: calc(50% - 50cqi);
    z-index: -1;
    width: 18.1rem;
    height: 22.4rem;
    background: url(../images/common/contact_logo.svg) center/contain no-repeat;
  }
}
.p-404-content .list {
  margin-top: 6.4rem;
}
@media screen and (min-width: 768px) {
  .p-404-content .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-404-content .list {
    margin-top: 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-404-content .list_item:nth-child(n+2) {
    margin-top: 1.6rem;
  }
}
.p-404-content .list_link {
  max-width: 100%;
}

.p-maintenance-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 9.7rem;
  min-height: 100svh;
}
@media screen and (max-width: 767px) {
  .p-maintenance-content {
    padding-block: 4.8rem;
  }
}
.p-maintenance-content .c-wrap {
  max-width: 96rem;
}
.p-maintenance-content .logo {
  margin-inline: auto;
  width: 18.6rem;
}
@media screen and (max-width: 767px) {
  .p-maintenance-content .logo {
    width: 11.8rem;
  }
}
.p-maintenance-content .hgroup {
  text-align: center;
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-maintenance-content .hgroup {
    margin-top: 3.2rem;
  }
}
.p-maintenance-content .hgroup_ttl {
  font-size: 3.6rem;
  line-height: 1.75;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-maintenance-content .hgroup_ttl {
    font-size: 2rem;
  }
}
.p-maintenance-content .hgroup_txt {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-maintenance-content .hgroup_txt {
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }
}
.p-maintenance-content .ttl {
  font-size: 2.4rem;
  line-height: 1.75;
  letter-spacing: 0.07em;
  font-weight: 500;
  text-align: center;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-maintenance-content .ttl {
    font-size: 2rem;
    margin-top: 1.6rem;
  }
}
.p-maintenance-content .note-list {
  margin: 3.2rem auto 0;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-maintenance-content .note-list {
    margin-top: 1.6rem;
  }
}
.p-maintenance-content .note-list_item {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.07em;
  font-weight: 500;
  position: relative;
  padding-left: 1.25em;
}
@media screen and (max-width: 767px) {
  .p-maintenance-content .note-list_item {
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }
}
.p-maintenance-content .note-list_item::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.p-maintenance-content .box {
  margin-top: 3.2rem;
  padding: 3.2rem;
  background: #F7F5F3;
}
@media screen and (max-width: 767px) {
  .p-maintenance-content .box {
    margin-top: 1.6rem;
    padding: 1.6rem;
  }
}
.p-maintenance-content .box_theme {
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 0.07em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-maintenance-content .box_theme {
    font-size: 1.8rem;
  }
}
.p-maintenance-content .box_des {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-maintenance-content .box_des {
    margin-top: 1rem;
  }
}
.p-maintenance-content .box_des_txt {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.07em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-maintenance-content .box_des_txt {
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }
}
.p-maintenance-content .copy {
  font-size: 1.1rem;
  line-height: 1.7272727273;
  letter-spacing: 0.07em;
  font-weight: 500;
  font-family: "Jost", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  text-indent: 0.07em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-maintenance-content .copy {
    margin-top: 1.6rem;
  }
}

.u-text-align-left {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .u-text-align-left-sp {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .u-text-align-left-pc {
    text-align: left;
  }
}
.u-text-align-center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .u-text-align-center-sp {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .u-text-align-center-pc {
    text-align: center;
  }
}
.u-text-align-right {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .u-text-align-right-sp {
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .u-text-align-right-pc {
    text-align: right;
  }
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

.u-leading-trim {
  margin-block: calc((1em - 1lh) / 2);
}

.u-leading-trim-top {
  margin-top: calc((1em - 1lh) / 2);
}

.u-leading-trim-bottom {
  margin-bottom: calc((1em - 1lh) / 2);
}

.u-border-radius-infinity {
  border-radius: calc(infinity * 1px);
}

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