@charset "UTF-8";
/* reset-css
---------------------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

/* base
---------------------------------------------------------------------------*/
html {
  font-size: 100%;
}
@media screen and (max-width: 1360px) {
  html {
    font-size: 1.176vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 4.267vw;
  }
}

body {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.is-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

.clear {
  clear: both;
}

.page-404 {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 13.625rem;
}
@media screen and (max-width: 767px) {
  .page-404 {
    padding-top: unset;
    padding-bottom: 3.1875rem;
  }
}
.page-404::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 8.625rem;
  background: url(../img/line-house.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .page-404::before {
    height: 3.125rem;
  }
}
.page-404 .c-section-title {
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .page-404 .c-section-title {
    margin-bottom: 2rem;
  }
}
.page-404 .notfound-text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .page-404 .notfound-text {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}
.page-404 .c-parts-button {
  padding: 1rem 4.25rem 1rem 2.125rem;
}

.archive_list {
  max-width: 75rem;
  display: grid;
  gap: 3.25rem 2.5rem;
  grid-template-columns: repeat(4, 1fr);
  margin-inline: auto;
  margin-top: 23.75rem;
  margin-bottom: 6rem;
}

.archive_list .archive_list_item {
  font-weight: bold;
  background-color: #fff;
  padding: 0.875rem;
  border: 2px solid #fff;
  max-width: 16.875rem;
  transition: 0.3s;
}

.archive_list .archive_list_item:hover {
  border: 2px solid #badb8a;
  transition: 0.3s;
}

.archive_list .archive_list_item:hover .archive_list_item_title {
  color: #F28804;
  transition: 0.3s;
}

.archive_list_item .archive_item_title {
  font-size: 0.875rem;
  line-height: 2;
  text-align: left;
  min-height: 3rem;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: 0.3s;
}

.archive_list img {
  width: 15.0625rem;
  aspect-ratio: 241/149;
  max-width: 100%;
  margin-bottom: 0.75rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.archive_list_item_bottom {
  display: flex;
  align-items: flex-start;
}

.archive_list .archive_item_time_wrap {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 0.625rem;
}

.archive_list .archive_item_cat {
  font-size: 0.875rem;
  background-color: #fcef75;
  padding: 0.5rem 1.25rem;
}

.archive_list .archive_item_time {
  position: relative;
  font-size: 0.875rem;
  font-family: "Roboto Condensed", sans-serif;
}

.l-pagenation {
  text-align: center;
  margin-top: 3.75rem;
  margin-bottom: 5rem;
}

.pagination-list {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  align-items: center;
}

.pagination-item {
  font-size: 1.25rem;
  font-weight: bold;
}

.pagination-item a,
.pagination-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8125rem;
  height: 2.8125rem;
  border-radius: 50%;
}

.pagination-item a.next,
.pagination-item a.prev {
  background-color: #333333;
}

.pagination-item .current {
  color: #333333;
  background-color: #fcef75;
}

.pagination-item span.ellipsis {
  background-color: #fcef75;
}

@media screen and (max-width: 1280px) {
  .archive_list {
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .archive_list {
    max-width: 31.25rem;
    gap: 1.25rem;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 11.25rem;
    margin-bottom: 3rem;
  }
  .archive_list .archive_list_item {
    max-width: 20.625rem;
    margin-inline: auto;
  }
  .archive_list_item .archive_list_item_title {
    margin-bottom: 0.625rem;
  }
  .archive_list img {
    margin-bottom: 0.625rem;
  }
  .l-pagenation {
    text-align: center;
    margin-top: 3.75rem;
    margin-bottom: 5rem;
  }
  .pagination-list {
    display: flex;
    gap: 0.625rem;
    justify-content: center;
    align-items: center;
  }
  .pagination-item {
    font-size: 0.875rem;
    font-weight: bold;
  }
  .pagination-item a,
  .pagination-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 50%;
  }
  .pagination-item .current {
    color: #fff;
  }
  .pagination-item span.ellipsis {
    background-color: #fff;
  }
}
.p-news-main {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-news-main {
    margin-bottom: 30px;
  }
}
.p-news-main h2.wp-block-heading,
.p-news-main h3.wp-block-heading,
.p-news-main h4.wp-block-heading {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .p-news-main h2.wp-block-heading,
  .p-news-main h3.wp-block-heading,
  .p-news-main h4.wp-block-heading {
    margin-top: 32px;
  }
}
.p-news-main h2.wp-block-heading + h2.wp-block-heading,
.p-news-main h2.wp-block-heading + h3.wp-block-heading,
.p-news-main h2.wp-block-heading + h4.wp-block-heading,
.p-news-main h3.wp-block-heading + h2.wp-block-heading,
.p-news-main h3.wp-block-heading + h3.wp-block-heading,
.p-news-main h3.wp-block-heading + h4.wp-block-heading,
.p-news-main h4.wp-block-heading + h2.wp-block-heading,
.p-news-main h4.wp-block-heading + h3.wp-block-heading,
.p-news-main h4.wp-block-heading + h4.wp-block-heading {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .p-news-main h2.wp-block-heading + h2.wp-block-heading,
  .p-news-main h2.wp-block-heading + h3.wp-block-heading,
  .p-news-main h2.wp-block-heading + h4.wp-block-heading,
  .p-news-main h3.wp-block-heading + h2.wp-block-heading,
  .p-news-main h3.wp-block-heading + h3.wp-block-heading,
  .p-news-main h3.wp-block-heading + h4.wp-block-heading,
  .p-news-main h4.wp-block-heading + h2.wp-block-heading,
  .p-news-main h4.wp-block-heading + h3.wp-block-heading,
  .p-news-main h4.wp-block-heading + h4.wp-block-heading {
    margin-top: 16px;
  }
}
.p-news-main h2.wp-block-heading,
.p-news-main h3.wp-block-heading,
.p-news-main h4.wp-block-heading,
.p-news-main p,
.p-news-main .wp-block-image,
.p-news-main .wp-block-table,
.p-news-main .wp-block-embed.is-provider-youtube,
.p-news-main .g-map {
  margin-bottom: 18px;
}
.p-news-main ul,
.p-news-main ol,
.p-news-main blockquote.wp-block-quote,
.p-news-main .blog-card,
.p-news-main .note-box {
  margin-top: 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .p-news-main ul,
  .p-news-main ol,
  .p-news-main blockquote.wp-block-quote,
  .p-news-main .blog-card,
  .p-news-main .note-box {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}
.p-news-main .wp-block-buttons {
  margin-top: 32px;
  margin-bottom: 32px;
}
.p-news-main h2.wp-block-heading {
  font-size: 30px;
  line-height: 1.3333333333;
  background-color: #F8F6E7;
  padding: 8px 24px;
  border-left: 2px solid #F28804;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-news-main h2.wp-block-heading {
    font-size: 22px;
    line-height: 1.3181818182;
    padding: 15px 16px;
  }
}
.p-news-main h3.wp-block-heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3333333333;
  border-top: 5px solid #BEBEBE;
  border-bottom: 5px solid #BEBEBE;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .p-news-main h3.wp-block-heading {
    font-size: 20px;
    padding: 16px 0;
    line-height: 1.3;
  }
}
.p-news-main h4.wp-block-heading {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  padding: 5px 0 5px 24px;
  border-left: 5px solid #F28804;
}
@media screen and (max-width: 767px) {
  .p-news-main h4.wp-block-heading {
    font-size: 18px;
    line-height: 1.4444444444;
    padding-left: 12px;
  }
}
.p-news-main p {
  font-weight: 400;
  line-height: 1.8125;
}
.p-news-main p a {
  color: #619DD0;
  text-decoration: underline;
}
.p-news-main figure a {
  transition: all 0.3s;
}
.p-news-main figure a:hover {
  opacity: 0.7;
}
.p-news-main ul,
.p-news-main ol {
  font-weight: 400;
}
.p-news-main ul li,
.p-news-main ol li {
  position: relative;
}
.p-news-main ul li + li,
.p-news-main ol li + li {
  margin-top: 8px;
}
.p-news-main ul li {
  padding-left: 20px;
}
.p-news-main ul li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  left: 0;
  top: 10px;
  background-color: #CCCCCC;
  border-radius: 50%;
}
.p-news-main ol {
  counter-reset: item;
  list-style-type: none;
}
.p-news-main ol li {
  padding-left: 24px;
}
.p-news-main ol li::before {
  position: absolute;
  counter-increment: item;
  content: counter(item) "　";
  font-weight: 700;
  left: 0;
  top: 0rem;
}
.p-news-main blockquote.wp-block-quote {
  margin-right: 0;
  margin-left: 0;
  border-left: none;
  color: #666666;
  padding: 32px;
  background-color: #F7F7F7;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-news-main blockquote.wp-block-quote {
    padding: 16px;
  }
}
.p-news-main blockquote.wp-block-quote p {
  font-size: 16px;
  line-height: 1.8125;
  font-weight: 400;
  margin-top: 0 !important;
}
.p-news-main blockquote.wp-block-quote cite {
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: 400;
  margin-top: 12px;
  display: block;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-news-main blockquote.wp-block-quote cite {
    text-align: left;
    margin-top: 8px;
  }
}
.p-news-main blockquote.wp-block-quote cite a {
  text-decoration: underline;
  color: #619DD0;
  transition: all 0.3s;
  display: inline-block;
  word-break: break-all;
  text-align: left;
}
.p-news-main blockquote.wp-block-quote cite a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-news-main blockquote.wp-block-quote cite a {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-news-main .wp-block-button {
    min-width: 19.375rem;
  }
}
.p-news-main .wp-block-button .wp-block-button__link {
  color: #F28804;
  background-color: #fff;
  border: 3px solid #F28804;
  text-decoration: none;
  min-width: 25rem;
  padding: 0 2.5rem;
  font-size: 1rem;
  font-weight: bold;
  min-height: 4.375rem;
  position: relative;
  transition: all 0.3s;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-news-main .wp-block-button .wp-block-button__link {
    border: 2px solid #F28804;
    padding: 0 1.875rem;
    min-width: 0;
    min-height: 3.75rem;
    width: 100%;
    max-width: 100%;
  }
}
.p-news-main .wp-block-button .wp-block-button__link::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-bottom: 2px solid #F28804;
  border-right: 2px solid #F28804;
  transform: rotate(-45deg) translateY(-50%);
  top: 50%;
  right: 2.5rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-news-main .wp-block-button .wp-block-button__link::after {
    right: 1.875rem;
  }
}
.p-news-main .wp-block-button .wp-block-button__link:hover {
  background-color: #F28804;
  color: #fff;
  transition: 0.3s;
}
.p-news-main .wp-block-button .wp-block-button__link:hover::after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 2.1875rem;
  transition: 0.3s;
}
.p-news-main .wp-container-core-buttons-layout-1.wp-container-core-buttons-layout-1 {
  gap: 1.875rem;
}
.p-news-main .wp-block-embed.is-provider-youtube iframe {
  aspect-ratio: 720/400;
  width: 100%;
  height: 100%;
}

.wp-block-table.table-type01, .wp-block-table.table-type02, .wp-block-table.table-type03, .wp-block-table.table-type04 {
  overflow: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .wp-block-table.table-type01, .wp-block-table.table-type02, .wp-block-table.table-type03, .wp-block-table.table-type04 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.wp-block-table.table-type01::-webkit-scrollbar, .wp-block-table.table-type02::-webkit-scrollbar, .wp-block-table.table-type03::-webkit-scrollbar, .wp-block-table.table-type04::-webkit-scrollbar {
  width: 10px;
  height: 4px;
  background-color: #EEEEEE;
}
.wp-block-table.table-type01::-webkit-scrollbar-thumb, .wp-block-table.table-type02::-webkit-scrollbar-thumb, .wp-block-table.table-type03::-webkit-scrollbar-thumb, .wp-block-table.table-type04::-webkit-scrollbar-thumb {
  border-radius: 4px;
}
.wp-block-table.table-type01::-webkit-scrollbar-thumb, .wp-block-table.table-type02::-webkit-scrollbar-thumb, .wp-block-table.table-type03::-webkit-scrollbar-thumb, .wp-block-table.table-type04::-webkit-scrollbar-thumb {
  --bg-opacity: 1;
  background-color: #999999;
}
.wp-block-table.table-type01 table, .wp-block-table.table-type02 table, .wp-block-table.table-type03 table, .wp-block-table.table-type04 table {
  table-layout: auto;
  min-width: 100%;
  width: -moz-max-content;
  width: max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.wp-block-table.table-type01 table th,
.wp-block-table.table-type01 table td, .wp-block-table.table-type02 table th,
.wp-block-table.table-type02 table td, .wp-block-table.table-type03 table th,
.wp-block-table.table-type03 table td, .wp-block-table.table-type04 table th,
.wp-block-table.table-type04 table td {
  border: 1px solid #AAAAAA;
  font-weight: 400;
  padding: 15px 10px;
  text-align: center;
  vertical-align: middle;
  width: auto;
  min-width: 224px;
  max-width: 450px;
}
@media screen and (max-width: 767px) {
  .wp-block-table.table-type01 table th,
  .wp-block-table.table-type01 table td, .wp-block-table.table-type02 table th,
  .wp-block-table.table-type02 table td, .wp-block-table.table-type03 table th,
  .wp-block-table.table-type03 table td, .wp-block-table.table-type04 table th,
  .wp-block-table.table-type04 table td {
    min-width: 99px;
    max-width: 350px;
  }
}
.wp-block-table.table-type02 tr th {
  background-color: #DE3845;
  color: #fff;
}
.wp-block-table.table-type02 tr:first-child td {
  background-color: #DE3845;
  color: #fff;
}
.wp-block-table.table-type03 tr th {
  background-color: #DE3845;
  color: #fff;
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  .wp-block-table.table-type03 tr th {
    max-width: 150px;
  }
}
.wp-block-table.table-type03 tr td:first-child {
  background-color: #DE3845;
  color: #fff;
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  .wp-block-table.table-type03 tr td:first-child {
    max-width: 150px;
  }
}
.wp-block-table.table-type04 {
  overflow: auto;
}
.wp-block-table.table-type04 tr th {
  background-color: #DE3845;
  color: #fff;
}
.wp-block-table.table-type04 tr:first-child td {
  background-color: #DE3845;
  color: #fff;
}
.wp-block-table.table-type04 tr td:first-child {
  background-color: #DE3845;
  color: #fff;
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  .wp-block-table.table-type04 tr td:first-child {
    max-width: 150px;
  }
}

.blog-card {
  width: 100%;
  max-width: 560px;
  overflow: hidden;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid #eee;
  box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.blog-card::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 10px;
  background: url(../img/link-arrow-black.svg) no-repeat center center/contain;
  right: 16px;
  bottom: 20px;
}

.blog-card-link {
  color: #333333;
  background: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  transition: 0.3s ease-in-out;
  text-decoration: none !important;
}
@media screen and (max-width: 767px) {
  .blog-card-link {
    padding: 0;
  }
}
.blog-card-link:hover {
  opacity: 0.7;
}

.blog-card-thumbnail {
  width: 30%;
  aspect-ratio: 160/90;
}
@media screen and (max-width: 767px) {
  .blog-card-thumbnail {
    aspect-ratio: 119/102;
    width: 40.5%;
  }
}
.blog-card-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-card-thumbnail img {
  display: block;
  padding: 0;
  transition: 0.3s ease-in-out;
}

.blog-card-content {
  width: 66%;
  line-height: 1.5;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .blog-card-content {
    width: 59.5%;
    padding: 0.25rem 8px 16px;
  }
}

.blog-card-title {
  font-size: 16px;
  font-weight: 400;
}

.blog-card-date {
  color: #999999;
  font-size: 14px;
}

.note-box {
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #F7F7F7;
  padding: 32px;
}
@media screen and (max-width: 767px) {
  .note-box {
    padding: 20px 16px 24px;
  }
}

.note-box-title {
  font-size: 18px;
  line-height: 1.7777777778;
  font-weight: 700;
  position: relative;
  padding-left: 60px;
  margin-bottom: 60px !important;
  margin-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .note-box-title {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 2.1875rem !important;
    font-weight: 500;
  }
}
.note-box-title::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 40px;
  background: url(../img/icon-caution.svg) no-repeat center center/contain;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 767px) {
  .note-box-title::before {
    width: 38px;
    height: 33.5px;
  }
}
.note-box-title::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #CCCCCC;
  left: 0;
  bottom: -30px;
}
@media screen and (max-width: 767px) {
  .note-box-title::after {
    bottom: -22px;
  }
}

.note-box-text {
  font-size: 16px;
  line-height: 1.8125;
  margin-bottom: 0 !important;
}

.benefits-block {
  margin-top: 32px;
  margin-bottom: 32px;
}
.benefits-block > .wp-block-group__inner-container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .benefits-block > .wp-block-group__inner-container {
    flex-direction: column;
    gap: 12px;
  }
}

.benefits-block__item {
  background-color: #F0CD77;
  border-radius: 8px;
  width: 47.3%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .benefits-block__item {
    width: 100%;
  }
}

.benefits-block__merit .benefits-block__title {
  background-color: #FFBE19;
}
.benefits-block__merit ul li::before {
  background-color: #FFBE19 !important;
}

.benefits-block__demerit {
  background-color: #F7F7F7;
}
.benefits-block__demerit .benefits-block__title {
  background-color: #F7F7F7;
  color: #666666;
  position: relative;
}
.benefits-block__demerit .benefits-block__title::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background-color: #CCCCCC;
  width: calc(100% - 24px);
  height: 1px;
}

.benefits-block__title {
  color: #fff;
  font-size: 18px;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 5px 10px;
  min-height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
}
@media screen and (max-width: 767px) {
  .benefits-block__title {
    font-size: 18px;
    min-height: 40px;
  }
}

.benefits-block__text {
  padding: 18px 18px 24px;
}
@media screen and (max-width: 767px) {
  .benefits-block__text {
    padding: 12px 16px 16px;
    font-size: 14px;
  }
}
.benefits-block__text ul,
.benefits-block__text ol {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.benefits-block__text p {
  margin: 0 !important;
}

.parent #toc_container {
  display: none !important;
}

.single-contents #toc_container {
  width: 100%;
  font-size: initial;
  padding: 0;
  border-color: #F28804;
  margin-top: 30px;
  font-family: "Noto Sans JP", sans-serif;
}
.single-contents #toc_container .toc_title {
  padding: 16px 32px;
  background-color: #F7F7F7;
  text-align: left;
  font-size: 20px;
  cursor: pointer;
  position: relative;
  margin-bottom: 0 !important;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .single-contents #toc_container .toc_title {
    padding: 8px 16px;
    font-size: 18px;
    font-weight: 700;
  }
}
.single-contents #toc_container .toc_title::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 8px;
  background: url(../img/toc-open.svg) no-repeat center center/contain;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .single-contents #toc_container .toc_title::after {
    right: 21px;
    width: 10px;
    height: 5px;
    background: url(../img/sp_toc-open.svg) no-repeat center center/contain;
  }
}
.single-contents #toc_container .toc_title.active::before {
  content: "閉じる";
  position: absolute;
  right: 33px;
  top: calc(50% + 20px);
  transform: translateY(-50%);
  font-size: 12px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .single-contents #toc_container .toc_title.active::before {
    top: calc(50% + 18px);
    right: 8px;
    font-weight: 400;
  }
}
.single-contents #toc_container .toc_title.active::after {
  height: 16px;
  background: url(../img/toc-close.svg) no-repeat center center/contain;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .single-contents #toc_container .toc_title.active::after {
    height: 10px;
    background: url(../img/sp_toc-close.svg) no-repeat center center/contain;
  }
}
.single-contents #toc_container .toc_list {
  padding: 8px 32px 32px;
  display: none;
  background-color: #F7F7F7;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 767px) {
  .single-contents #toc_container .toc_list {
    padding: 8px 16px 16px;
  }
}
.single-contents #toc_container .toc_list li {
  font-size: 18px;
  line-height: 1.4444444444;
  padding-left: 0;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .single-contents #toc_container .toc_list li {
    font-size: 16px;
    line-height: 1.5;
  }
}
.single-contents #toc_container .toc_list li::before {
  display: none;
}
.single-contents #toc_container .toc_list li > ul {
  margin-top: 16px;
  padding-left: 30px;
  margin-bottom: 0 !important;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .single-contents #toc_container .toc_list li > ul {
    margin-top: 8px;
    padding-left: 0;
  }
}
.single-contents #toc_container .toc_list li > ul li {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .single-contents #toc_container .toc_list li > ul li {
    font-size: 12px;
  }
}
.single-contents #toc_container .toc_list li > ul li + li {
  margin-top: 11px;
}
@media screen and (max-width: 767px) {
  .single-contents #toc_container .toc_list li > ul li + li {
    margin-top: 8px;
  }
}
@media (hover: hover) {
  .single-contents #toc_container .toc_list li a {
    text-decoration: none;
    color: #333333;
    background-image: linear-gradient(90deg, #333333, #333333);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0 1px;
    transition: background-size 0.6s;
  }
  .single-contents #toc_container .toc_list li a:hover {
    background-size: 100% 1px;
  }
}
.single-contents #toc_container .toc_list > li:nth-of-type(n + 2) {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .single-contents #toc_container .toc_list > li:nth-of-type(n + 2) {
    margin-top: 16px;
  }
}

.l-wrapper {
  overflow: hidden;
  width: 100%;
}

.l-inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 100%;
    padding: 0 1rem;
  }
}

.l-header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  z-index: 30;
}
@media screen and (max-width: 767px) {
  .l-header {
    top: 0;
    left: 0;
    transform: unset;
    width: 100%;
    max-width: 100%;
    height: 3.875rem;
  }
}

.l-header__inner {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: center;
  justify-content: space-between;
  padding-left: 1.25rem;
  padding-right: 0.75rem;
  padding-bottom: 1.125rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    flex-direction: row;
    padding: 0.625rem 0.75rem 0.625rem 0.5rem;
  }
}

/* スクロール時のヘッダースタイル */
.l-header {
  transition: background-color 0.3s ease;
  /* 背景色の変化をスムーズに */
}

/* スクロール時のクラス（PCのみ適用） */
.l-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.8);
  /* 白背景の透明度0.8 */
}

/* スマホでは常に不透過に保つ */
@media screen and (max-width: 767px) {
  .l-header.is-scrolled {
    background-color: #fff;
    /* スマホでは常に完全不透明 */
  }
}
.l-header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 0.75rem;
}

.l-contents {
  flex: 1;
  margin-top: 9.4375rem;
}
@media screen and (max-width: 767px) {
  .l-contents {
    margin-top: 4.5rem;
  }
}

.l-footer {
  padding: 3.75rem 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 3.75rem 2.25rem 0.75rem;
  }
}
.l-footer .footer-content {
  max-width: 67.5rem;
  margin-inline: auto;
  margin-bottom: 4.375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer .footer-content {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    inline-size: -moz-fit-content;
    inline-size: fit-content;
    margin-inline: auto;
    margin-bottom: 2.5rem;
  }
}
.l-footer .footer-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-footer .footer-logo-wrap {
    flex-direction: column;
    align-items: center;
  }
}
.l-footer .footer-logo {
  display: inline-block;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .l-footer .footer-logo:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}
.l-footer .footer-logo-img {
  width: 7.5rem;
  height: 6.6875rem;
}
@media screen and (max-width: 767px) {
  .l-footer .footer-logo-img {
    width: 5.125rem;
    height: 4.5625rem;
  }
}
.l-footer .footer-logo-label {
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.l-footer .footer-logo-tel {
  font-size: 0.875rem;
  font-weight: bold;
}
.l-footer .footer-address-list {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .l-footer .footer-address-list {
    gap: 1.5rem;
  }
}
.l-footer .footer-address-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 18.9375rem;
  box-shadow: 0.25rem 0.25rem 0.25rem 0px rgba(135, 122, 106, 0.25);
  padding: 1rem;
  border-radius: 1rem;
}
.l-footer .footer-address-label {
  font-size: 0.875rem;
  font-weight: bold;
}
.l-footer .footer-address {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
}
.l-footer .footer-tel-wrap {
  display: flex;
  gap: 0.5rem;
}
.l-footer .footer-tel {
  font-size: 0.875rem;
  font-weight: 500;
}
.l-footer .footer-address-info {
  font-size: 0.875rem;
  font-weight: 500;
}
.l-footer .footer-nav {
  display: flex;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .l-footer .footer-nav {
    width: 100%;
    flex-direction: column;
    gap: 1.5rem;
  }
}
.l-footer .footer-nav01,
.l-footer .footer-nav02 {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}
.l-footer .footer-nav-item {
  font-size: 1.125rem;
  font-weight: bold;
  transition: 0.3s;
}
.l-footer .footer-nav-item a {
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .l-footer .footer-nav-item a:hover {
    opacity: 0.7;
  }
}
.l-footer .footer-nav-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #877A6A;
  margin-bottom: 0.75rem;
}
.l-footer .footer-nav-item-label {
  display: inline-block;
  width: 100%;
  padding-bottom: 0.875rem;
}
@media screen and (max-width: 767px) {
  .l-footer .footer-nav-item-label {
    padding-bottom: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .footer-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .footer-accordion-icon {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    background: url("../img/icon-plus.svg") no-repeat center center/contain;
  }
  .l-footer .footer-nav-toggle.is-open .footer-accordion-icon {
    background: url("../img/icon-minus.svg") no-repeat center center/contain;
  }
}
@media screen and (min-width: 768px) {
  .l-footer .footer-nav-sub {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .footer-nav-sub {
    display: none;
  }
}
.l-footer .footer-nav-sub-item {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.l-footer .footer-nav-sub-item:last-child {
  margin-bottom: unset;
}
.l-footer .footer-nav-sub-blue {
  color: #0A2386;
}
.l-footer .footer-nav-sub-red {
  color: #DE3845;
}
.l-footer .footer-nav-sub-orange {
  color: #F28804;
}
.l-footer .footer-copyLight {
  font-size: 0.875rem;
  text-align: center;
}

#back-to-top {
  display: block;
  position: fixed;
  bottom: 2.5rem;
  right: 1.25rem;
  background-color: #F28804;
  color: #fff;
  border-radius: 50%;
  width: 2.875rem;
  height: 2.875rem;
  border: 2px solid #fff;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  #back-to-top {
    bottom: 1.5rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
  }
}

#back-to-top::before,
#back-to-top::after {
  content: "";
  position: absolute;
  top: 1rem;
  left: calc(50% - 1px);
  width: 2px;
  height: 11.2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: 50% 1px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  #back-to-top::before,
  #back-to-top::after {
    top: 0.6875rem;
    width: 2px;
    height: 8px;
  }
}

#back-to-top::before {
  transform: rotate(49.4deg);
}

#back-to-top::after {
  transform: rotate(-49.4deg);
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

@media (hover: hover) {
  #back-to-top:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}
.c-fixed-contact-buttons {
  position: fixed;
  bottom: 6rem;
  right: 0;
  left: auto;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .c-fixed-contact-buttons {
    bottom: 5rem;
    right: 0;
    left: auto;
    gap: 0.375rem;
  }
}

.c-fixed-contact-buttons__link {
  position: relative;
  font-size: 1rem;
  font-weight: bold;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
  background-color: #DE3845;
  width: 3.25rem;
  height: 9.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem 0 0 1rem;
  padding-top: 1.4375rem;
  box-shadow: 0.1875rem 0.25rem 0px 0px rgb(193, 16, 30);
  transition: all 0.3s;
}
.c-fixed-contact-buttons__link::before {
  position: absolute;
  top: 1.0625rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 0.875rem;
  background: url(../img/mail.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .c-fixed-contact-buttons__link {
    width: 2rem;
    height: 2.125rem;
    border-radius: 0.5rem 0 0 0.5rem;
    padding-top: unset;
    box-shadow: 0.125rem 0.125rem 0px 0px rgb(193, 16, 30);
  }
  .c-fixed-contact-buttons__link::before {
    top: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .c-fixed-contact-buttons__link:hover {
    box-shadow: none;
    transform: translate(0.1875rem, 0.25rem);
  }
}

.c-fixed-contact-buttons__link--line {
  letter-spacing: 0.12em;
  background-color: #0EC95D;
  padding-top: 1.8125rem;
  height: 8.5625rem;
  box-shadow: 0.1875rem 0.25rem 0px 0px rgb(38, 164, 91);
}
.c-fixed-contact-buttons__link--line::before {
  top: 1rem;
  width: 1.5rem;
  height: 1.4375rem;
  background: url(../img/line.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .c-fixed-contact-buttons__link--line {
    width: 2rem;
    height: 2.125rem;
    padding-top: unset;
    box-shadow: 0.125rem 0.125rem 0px 0px rgb(38, 164, 91);
  }
  .c-fixed-contact-buttons__link--line::before {
    top: 0.375rem;
  }
}
@media screen and (min-width: 768px) {
  .c-fixed-contact-buttons__link--line:hover {
    box-shadow: none;
    transform: translate(0.1875rem, 0.25rem);
  }
}

@media screen and (max-width: 767px) {
  .c-fixed-contact-buttons__link p {
    display: none;
  }
}

.c-parts-page-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.6;
  color: #333333;
  flex-shrink: 0;
  max-width: 40%;
}
@media screen and (max-width: 767px) {
  .c-parts-page-title {
    font-size: 2rem;
    margin-left: 1rem;
    max-width: unset;
  }
}

.page_title_wrap {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: space-between;
  margin-left: 5.9375rem;
}
@media screen and (max-width: 767px) {
  .page_title_wrap {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    margin-left: unset;
  }
}
.page_title_wrap picture {
  width: 67.29%;
}
@media screen and (max-width: 767px) {
  .page_title_wrap picture {
    width: 100%;
  }
}
.page_title_wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 969/284;
}
@media screen and (max-width: 767px) {
  .page_title_wrap img {
    aspect-ratio: 375/200;
  }
}

.c-parts-background-image.lazyloaded {
  width: 100%;
  height: 100%;
  aspect-ratio: 1100/734;
  background: url("../img/26401972_m.jpg") no-repeat center center/cover;
}

.c-separator {
  margin: 5rem 0;
}

.c-logo {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-logo {
    padding: 0;
    position: relative;
    z-index: 50;
  }
}

.c-logo__item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-logo__item {
    gap: 1rem;
  }
}

.c-logo__link {
  display: inline-block;
  transition: all 0.3s;
}
.c-logo__link:hover, .c-logo__link:active {
  opacity: 0.7;
}

.c-logo__img {
  width: 18.75rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-logo__img {
    width: 8rem;
  }
}

.c-logo__img02 {
  width: 9.1875rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-logo__img02 {
    width: 5.5rem;
  }
}

.c-logo__img03 {
  width: 19.875rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-logo__img03 {
    display: none;
  }
}

body.fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}

.c-navigation__info-wrap {
  display: flex;
  gap: 0.625rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-navigation__info-wrap {
    gap: 0.5rem;
    z-index: 100;
  }
}

.c-navigation__tel-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-navigation__tel-link {
    display: none;
  }
}

.c-navigation__tel-link-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-navigation__tel-link-sp {
    display: block;
    width: 2.625rem;
    height: auto;
  }
}

.c-navigation__tel-wrap {
  display: flex;
  gap: 0.625rem;
  align-items: center;
}

.c-navigation__tel-label {
  font-size: 1rem;
  font-weight: bold;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  background-color: #F28804;
  color: #fff;
  padding: 0.375rem 0.75rem;
}

.c-navigation__tel-number {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Roboto Condensed", sans-serif;
  white-space: nowrap;
}

.c-navigation__tel-time {
  font-size: 0.625rem;
  font-weight: bold;
  line-height: 1.6;
  color: #877A6A;
}

.c-navigation {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-navigation {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: #fff;
    transition: top 0.3s ease-out;
  }
  .c-navigation.panelactive {
    top: 0;
    transition: top 0.3s ease-out;
  }
  .c-navigation.closing {
    top: -100%;
    transition: top 0.3s ease-in;
  }
}

@media screen and (max-width: 767px) {
  .c-navigation.panelactive {
    top: 0;
  }
}

.c-navigation .c-navigation__inner {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-navigation .c-navigation__inner {
    position: relative;
    z-index: 40;
    width: 100%;
    height: 100dvh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 3.75rem 1.5625rem;
  }
}

.c-navigation__img {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-navigation__img {
    display: block;
    width: 10.375rem;
    height: auto;
    margin-inline: auto;
    margin-bottom: 2.5rem;
  }
}

.c-navigation__list {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.75rem;
}
@media screen and (max-width: 767px) {
  .c-navigation__list {
    z-index: 40;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    max-width: 31.25rem;
    gap: 1.25rem;
    margin-inline: auto;
  }
}

.c-navigation__item {
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-navigation__item {
    width: 100%;
    height: auto;
  }
}
.c-navigation__item::before {
  position: absolute;
  bottom: 0.1875rem;
  left: 0;
  content: "";
  display: inline-block;
  width: 1px;
  height: 2.125rem;
  background-color: #B9B9B9;
}
@media screen and (max-width: 767px) {
  .c-navigation__item::before {
    display: none;
  }
}
.c-navigation__item:last-child {
  padding-right: 1.75rem;
}
.c-navigation__item:last-child::after {
  position: absolute;
  bottom: 0.1875rem;
  right: 0;
  content: "";
  display: inline-block;
  width: 1px;
  height: 2.125rem;
  background-color: #B9B9B9;
}
@media screen and (max-width: 767px) {
  .c-navigation__item:last-child::after {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .c-navigation__item:hover > .c-navigation__submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.c-navigation__link {
  position: relative;
  font-size: 0.875rem;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 1.75rem;
}
@media screen and (max-width: 767px) {
  .c-navigation__link {
    flex-direction: row;
    gap: 0.75rem;
    justify-content: flex-start;
    padding-left: unset;
    height: auto;
  }
}
@media screen and (min-width: 768px) {
  .c-navigation__link:hover .c-navigation__under {
    background-size: 100% 2px;
    /* 線の横幅を100%にする */
  }
}

@media screen and (max-width: 767px) {
  .c-navigation__link-img {
    width: 2rem;
    height: 1.875rem;
    display: flex;
    align-items: center;
  }
}

.c-navigation__under {
  background-image: linear-gradient(90deg, #F28804, #F28804);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 2px;
  transition: background-size 0.3s;
}

@media screen and (max-width: 767px) {
  .c-navigation__item.has-child {
    position: relative;
  }
}

.c-navigation__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 0.75rem;
  opacity: 0;
  overflow: hidden;
  max-height: 0;
  pointer-events: none;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  width: 18.75rem;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}
@media screen and (max-width: 767px) {
  .c-navigation__submenu {
    box-shadow: none;
    border-radius: 0;
    padding-left: 3rem;
    width: 16.625rem;
  }
}

.c-navigation__submenu.is-open {
  max-height: 31.25rem;
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .c-navigation__submenu.is-open {
    position: static;
  }
}

@media (min-width: 768px) {
  .c-navigation__item:hover > .c-navigation__submenu {
    max-height: 31.25rem;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
.c-navigation__submenu li a {
  display: block;
  padding: 0.625rem 0;
  font-size: 0.875rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-navigation__submenu li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .c-navigation__submenu li a {
    padding: unset;
    display: block;
  }
}

.c-navigation__toggle {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-navigation__toggle {
    display: block;
    position: absolute;
    right: 0;
    top: 0.75rem;
    transform: translateY(-50%);
    width: 0.75rem;
    height: 0.75rem;
    background: url("../img/icon-plus.svg") center/contain no-repeat;
    border: none;
    cursor: pointer;
  }
}

.c-navigation__toggle.is-open {
  background: url("../img/icon-minus.svg") center/contain no-repeat;
}

@media screen and (max-width: 767px) {
  .c-breadcrumb {
    overflow: auto;
  }
}

.c-breadcrumb__container {
  max-width: 80rem;
  padding: 0.625rem 0.625rem 5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__container {
    max-width: -moz-max-content;
    max-width: max-content;
    width: -moz-max-content;
    width: max-content;
    margin-inline: unset;
  }
}

.c-breadcrumb__list {
  display: flex;
  gap: 1.25rem;
}

.c-breadcrumb__item {
  font-size: 0.875rem;
  position: relative;
}
.c-breadcrumb__item:not(:last-of-type)::after {
  position: absolute;
  top: 0;
  right: -1rem;
  content: "＞";
}

.c-breadcrumb__link {
  text-decoration: none;
  background-image: linear-gradient(90deg, #333333, #333333);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.3s;
}
.c-breadcrumb__link:hover, .c-breadcrumb__link:active {
  background-size: 100% 1px;
}

.c-submenu {
  background-color: #fff;
  padding: 0.9375rem 1.25rem 1.25rem;
  min-width: 9.375rem;
  width: 100%;
  max-width: 12.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  border-radius: 5px;
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1200px) {
  .c-submenu {
    max-width: 100%;
    min-width: 0;
    box-shadow: unset;
    background-color: unset;
    padding: 0 0 0.625rem 0;
    gap: 0.625rem;
    margin-left: -0.75rem;
  }
}

.c-submenu__item {
  display: block;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-submenu__item:hover .c-submenu__under, .c-submenu__item:active .c-submenu__under {
    color: #badb8a;
  }
}
@media screen and (max-width: 1200px) {
  .c-submenu__item {
    font-size: 0.75rem;
  }
}

.c-submenu__under {
  text-decoration: none;
  color: #333333;
  transition: 0.3s;
}

/* =====================================
   ハンバーガーメニュー
===================================== */
.c-menu-button {
  display: none;
  background-color: unset;
  border: none;
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-menu-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 3.125rem;
    height: 3.125rem;
    position: relative;
    z-index: 40;
  }
}

/* ----- 三本線 ----- */
.c-menu-button__line {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background-color: #333333;
  width: 50%;
}

.c-menu-button__line:nth-child(1) {
  top: 0.875rem;
}

.c-menu-button__line:nth-child(2) {
  top: 1.375rem;
}

.c-menu-button__line:nth-child(3) {
  top: 1.875rem;
}

/* ----- MENU / CLOSE のラベル ----- */
.c-menu-button__label {
  position: absolute;
  bottom: 0.25rem;
  font-size: 0.625rem;
  letter-spacing: 0.05em;
  color: #333333;
  text-transform: uppercase;
  font-weight: 500;
  transition: opacity 0.3s, transform 0.3s;
}

/* 初期状態：MENU */
.c-menu-button__label::after {
  content: "MENU";
}

/* アクティブ時のライン変形 */
.c-menu-button.active .c-menu-button__line:nth-child(1) {
  top: 1.375rem;
  transform: translate(-50%, 0.125rem) rotate(-45deg);
  width: 55%;
}

.c-menu-button.active .c-menu-button__line:nth-child(2) {
  opacity: 0;
}

.c-menu-button.active .c-menu-button__line:nth-child(3) {
  top: 1.625rem;
  transform: translate(-50%, -0.125rem) rotate(45deg);
  width: 55%;
}

/* アクティブ時：CLOSE 表示 */
.c-menu-button.active .c-menu-button__label::after {
  content: "CLOSE";
}

.c-faq_wrap {
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-faq_wrap {
    padding-bottom: 2.25rem;
  }
}
.c-faq_wrap .c-section-title {
  position: relative;
  text-align: center;
  margin-bottom: 4.8125rem;
}
@media screen and (max-width: 767px) {
  .c-faq_wrap .c-section-title {
    margin-bottom: 3rem;
  }
}
.c-faq_wrap .c-section-title::before {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 15.4375rem;
  height: 9.875rem;
  background: url(../img/faq-en.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c-faq_wrap .c-section-title::before {
    top: 0.8125rem;
    width: 6.1875rem;
    height: 4rem;
  }
}

.c-faq {
  max-width: 56.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-faq {
    max-width: 100%;
  }
}

.c-faq__item {
  overflow: hidden;
  margin-block: 2.5rem;
  border: 1px solid #F0CD77;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .c-faq__item {
    margin-block: 1.5rem;
    border-radius: 0.75rem;
  }
}

.c-faq__head {
  position: relative;
  background-color: #F0CD77;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.6;
  color: #fff;
  padding: 1.875rem 5.125rem 1.875rem 5.875rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-faq__head {
    font-size: 1rem;
    line-height: 1.7;
    padding: 0.625rem 2.875rem 0.625rem 3.375rem;
  }
}

.c-faq__head-q {
  position: absolute;
  font-size: 1.5rem;
  font-family: "Roboto Condensed", sans-serif;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
  width: 3.25rem;
  height: 3.25rem;
  background-color: #F28804;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .c-faq__head-q {
    font-size: 1rem;
    width: 2.375rem;
    height: 2.375rem;
    left: 0.625rem;
  }
}

.c-faq__toggle {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  background: url(../img/faq-arrow.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .c-faq__toggle {
    width: 1.875rem;
    height: 1.875rem;
    right: 0.625rem;
  }
}

.c-faq__head.active .c-faq__toggle {
  transform: translateY(-50%) rotate(180deg);
}

.c-faq__body {
  position: relative;
  background-color: #fff;
  padding: 1.75rem 2.5rem 1.75rem 4.5rem;
  display: none;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .c-faq__body {
    padding: 0.875rem 0.625rem 1rem 2rem;
  }
}

.c-faq__body-a {
  position: absolute;
  top: 2.125rem;
  left: 2.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Roboto Condensed", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-faq__body-a {
    top: 1.25rem;
    left: 0.625rem;
    font-size: 1.125rem;
  }
}

.c-faq__text {
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-faq__text {
    font-size: 1rem;
    line-height: 1.7;
  }
}

.c-author-parts {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.c-author-parts__title {
  font-size: 0.875rem;
  color: #fff;
  background-color: #333333;
  border-radius: 3px;
  width: 3rem;
  height: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-author-parts__title {
    font-size: 0.625rem;
    width: 2rem;
    height: 1.125rem;
  }
}

.c-author-parts__name {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .c-author-parts__name {
    font-size: 0.75rem;
  }
}

a.c-author-parts__name {
  text-decoration: underline;
  transition: all 0.3s;
}
a.c-author-parts__name:hover {
  opacity: 0.7;
}

p.c-author-parts__name {
  text-decoration: none;
}

p.c-author-parts__name {
  text-decoration: none;
}

.c-author + .c-author {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-author + .c-author {
    margin-top: 0.625rem;
  }
}

.c-author__title {
  padding: 0 0 1rem;
  border-bottom: 1px solid #CCCCCC;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-author__title {
    margin-bottom: 0.625rem;
  }
}

.c-author__profile {
  display: flex;
  gap: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .c-author__profile {
    gap: 1.5rem;
  }
}

.c-author__img {
  width: 7.8125rem;
  height: 7.8125rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-author__img {
    width: 5rem;
    height: 5rem;
  }
}
.c-author__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-author__body {
  width: calc(100% - 8.875rem);
}
@media screen and (max-width: 767px) {
  .c-author__body {
    width: calc(100% - 6.5rem);
  }
}

.c-author__name {
  font-size: 1.625rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-author__name {
    font-size: 1.25rem;
  }
}
.c-author__name a {
  transition: all 0.3s;
  text-decoration: underline;
}
.c-author__name a:hover {
  opacity: 0.7;
}

.c-author__post {
  font-size: 1rem;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-author__post {
    margin-top: 0;
    font-size: 0.875rem;
  }
}

.c-author__text {
  font-size: 1rem;
  margin-top: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-author__text {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.c-share-block {
  background-color: #F7F7F7;
  padding: 1rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .c-share-block {
    padding: 1.5625rem 1rem;
    margin-top: 1.5rem;
  }
}

.c-share-block__sns {
  display: flex;
  justify-content: center;
  gap: 2.0625rem;
}
.c-share-block__sns a {
  transition: all 0.3s;
}
.c-share-block__sns a:hover {
  opacity: 0.7;
}

.c-share-block__twitter img {
  width: 1.6875rem;
}

.c-share-block__facebook img {
  width: 2rem;
}

.c-share-block__bing img {
  width: 2rem;
}

.c-share-block__line img {
  width: 2rem;
}

.c-post-links {
  margin-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-post-links {
    margin-top: 2rem;
    display: flex;
    flex-wrap: nowrap;
    /* 折り返さないように変更 */
  }
}

.c-post-links__prev,
.c-post-links__next,
.c-post-links__archive {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .c-post-links__prev,
  .c-post-links__next,
  .c-post-links__archive {
    margin-top: 0;
    flex: 1;
    /* 均等に幅を取るように設定 */
  }
}

@media screen and (max-width: 767px) {
  .c-post-links__prev,
  .c-post-links__next {
    flex: 1;
    /* 均等に幅を取るように変更 */
  }
}
.c-post-links__prev a,
.c-post-links__next a {
  display: block;
  transition: all 0.3s;
  position: relative;
  font-size: 1.25rem;
  font-weight: 400;
  width: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-post-links__prev a,
  .c-post-links__next a {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .c-post-links__prev a,
  .c-post-links__next a {
    font-size: 0.75rem;
  }
}
.c-post-links__prev a::before,
.c-post-links__next a::before {
  content: "";
  position: absolute;
  width: 0.375rem;
  height: 0.375rem;
  top: 48%;
  transform: rotate(-45deg) translateY(-50%);
}
@media screen and (max-width: 500px) {
  .c-post-links__prev a::before,
  .c-post-links__next a::before {
    width: 0.25rem;
    height: 0.25rem;
  }
}
.c-post-links__prev a::after,
.c-post-links__next a::after {
  content: "";
  position: absolute;
  width: 1.875rem;
  height: 1.875rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #333333;
}
@media screen and (max-width: 500px) {
  .c-post-links__prev a::after,
  .c-post-links__next a::after {
    width: 1.25rem;
    height: 1.25rem;
    right: 0.875rem;
  }
}

@media screen and (min-width: 768px) {
  .c-post-links__prev:hover a,
  .c-post-links__next:hover a {
    opacity: 0.7;
    transition: 0.3s;
  }
  .c-post-links__prev:hover a::before {
    left: 1rem;
    transition: 0.3s;
  }
  .c-post-links__prev:hover a::after {
    left: 0;
    transition: 0.3s;
  }
  .c-post-links__next:hover a::before {
    right: 0.625rem;
    transition: 0.3s;
  }
  .c-post-links__next:hover a::after {
    right: 0;
    transition: 0.3s;
  }
}
.c-post-links__prev {
  justify-self: flex-start;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-post-links__prev {
    margin-right: 0;
  }
}
.c-post-links__prev a {
  padding-left: 2.8125rem;
  padding-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-post-links__prev a {
    padding-left: 2.375rem;
    /* SP表示時は余白を少し減らす */
    padding-right: unset;
  }
}
@media screen and (max-width: 500px) {
  .c-post-links__prev a {
    padding-left: 1.375rem;
  }
}
.c-post-links__prev a::before {
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  left: 1.3125rem;
  z-index: 1;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-post-links__prev a::before {
    left: 1.375rem;
    /* SP表示時は位置を調整 */
  }
}
@media screen and (max-width: 500px) {
  .c-post-links__prev a::before {
    left: 0.625rem;
  }
}
.c-post-links__prev a::after {
  left: 0.3125rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-post-links__prev a::after {
    left: 0.625rem;
    /* SP表示時は位置を調整 */
    width: 1.5rem;
    /* SP表示時はサイズを小さく */
    height: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .c-post-links__prev a::after {
    left: 0;
  }
}

.c-post-links__archive {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-post-links__archive {
    flex: 1;
    /* 均等に幅を取るように変更 */
    order: 0;
    /* 順序をリセット */
    margin-top: 0;
  }
}
.c-post-links__archive a {
  width: auto;
  margin: 0;
  padding: 0.5rem 1.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-post-links__archive a {
    padding: 0.5rem 0.625rem;
    /* SP表示時は余白を少し減らす */
  }
}

.c-post-links__next {
  justify-self: flex-end;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .c-post-links__next {
    margin-left: 0;
    text-align: right;
  }
}
.c-post-links__next a {
  padding-right: 2.8125rem;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-post-links__next a {
    padding-right: 2.375rem;
    /* SP表示時は余白を少し減らす */
    padding-left: unset;
  }
}
@media screen and (max-width: 500px) {
  .c-post-links__next a {
    padding-right: 1.375rem;
  }
}
.c-post-links__next a::before {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 0.9375rem;
  z-index: 1;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-post-links__next a::before {
    right: 1.1875rem;
    /* SP表示時は位置を調整 */
  }
}
@media screen and (max-width: 500px) {
  .c-post-links__next a::before {
    right: 0.375rem;
  }
}
.c-post-links__next a::after {
  right: 0.3125rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-post-links__next a::after {
    right: 0.75rem;
    /* SP表示時は位置を調整 */
    width: 1.5rem;
    /* SP表示時はサイズを小さく */
    height: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .c-post-links__next a::after {
    right: 0;
  }
}

.c-post-links__item--empty {
  border: none !important;
}

.c-post-links__prev.c-post-links__item--empty,
.c-post-links__next.c-post-links__item--empty {
  visibility: hidden;
}

.c-parts-button {
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .c-parts-button:hover {
    width: -moz-fit-content;
    width: fit-content;
  }
}

/* 「一覧へ」ボタンのスタイルを保持 */
.c-post-links .c-parts-button {
  border: unset;
  background-color: unset;
}
.c-post-links .c-parts-button::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-post-links .c-parts-button:hover {
    background-color: unset;
    color: unset;
    width: -moz-fit-content;
    width: fit-content;
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .c-post-links .c-parts-button {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .c-post-links .c-parts-button {
    font-size: 0.75rem;
  }
}

.c-parts-button {
  position: relative;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  border-radius: 3.125rem;
  margin-inline: auto;
  border: 2px solid #F0CD77;
  color: #F28804;
  background-color: #fff;
  box-shadow: 0.1875rem 0.25rem 0px 0px rgb(242, 136, 4);
  padding: 1rem 3.25rem 1rem 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.c-parts-button::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background: url(../img/button02-arrow.png) no-repeat center center/cover;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .c-parts-button:hover {
    box-shadow: unset;
    transform: translate(0.1875rem, 0.25rem);
  }
  .c-parts-button:hover::after {
    right: 0.9375rem;
  }
}
.c-parts-button02 {
  position: relative;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.6;
  padding-right: 2.375rem;
  color: #F28804;
  background-color: unset;
  margin-left: auto;
  cursor: pointer;
  transition: 0.3s;
  overflow: visible;
}
.c-parts-button02::after {
  position: absolute;
  top: 50%;
  right: 0.25rem;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 1.625rem;
  height: 1.625rem;
  background: url(../img/button02-arrow.png) no-repeat center center/contain;
  transition: 0.3s;
}

.arrow_btn_wrap {
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-left: auto;
  margin-right: 5px;
  line-height: 1;
  transition: 0.3s;
}

.c-parts-arrow-button {
  position: relative;
  display: inline-block;
  padding: 16px;
  background: linear-gradient(to right, #005CB9, #36B9FF);
  border-radius: 50%;
}

.c-parts-arrow-button::before {
  position: absolute;
  top: 12px;
  left: 10px;
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
}

.c-section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #F28804;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: 2rem;
  }
}

.p-column-wrap {
  max-width: 85rem;
  padding-top: 5.625rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-column-wrap {
    max-width: 100%;
    padding-top: 4.375rem;
    padding-left: unset;
    padding-right: unset;
  }
}

.p-entry__header {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-entry__header {
    margin-bottom: 2rem;
  }
}

.p-entry__title {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.3125;
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-entry__title {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-top: 0.3125rem;
    margin-bottom: 0.5rem;
  }
}

.p-entry__head-wrap {
  margin-right: auto;
}

.p-entry__head {
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-entry__head {
    margin-bottom: 0.625rem;
  }
}

.p-entry__head-meta {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-entry__head-meta {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    margin-bottom: 0.5rem;
  }
}
.p-entry__head-meta a {
  transition: all 0.3s;
}
.p-entry__head-meta a:hover {
  opacity: 0.7;
}

.p-entry__head-meta02 {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-entry__head-meta02 {
    margin-bottom: 0.75rem;
  }
}
.p-entry__head-meta02 a {
  transition: all 0.3s;
}
.p-entry__head-meta02 a:hover {
  opacity: 0.7;
}

.p-entry__head-cat {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 400;
  background-color: #F28804;
  color: #fff;
  text-align: center;
  padding: 0.25rem 0.5rem 0.3125rem;
  display: inline-block;
  margin-right: 0.5rem;
}

.p-entry__date-wrap {
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-entry__date-wrap {
    gap: 1rem;
  }
}

.p-entry__head-publish,
.p-entry__head-update {
  font-size: 0.875rem;
  padding-left: 1.375rem;
  position: relative;
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
}
.p-entry__head-publish::before,
.p-entry__head-update::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1rem;
  height: 1rem;
}

.p-entry__head-publish::before {
  background: url(../img/icon-publish.svg) no-repeat center center/contain;
}

.p-entry__head-update::before,
.p-entry__column-head-update::before {
  background: url(../img/icon-update.svg) no-repeat center center/contain;
}

.p-entry__head-tag {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 0.125rem 0.375rem 0.1875rem;
  font-weight: 500;
}
.p-entry__head-tag + .p-entry__head-tag {
  margin-left: 0.3125rem;
}

.p-entry__btn {
  margin-top: 2rem;
  text-align: center;
}

.single-contents .p-entry__body p a {
  transition: 0.3s;
}

.single-contents .p-entry__body p a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.related {
  padding-top: 3.75rem;
  padding-bottom: 5rem;
  background-color: #F0CD77;
}

.related .inner {
  max-width: 85rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  margin-inline: auto;
}

.related .inner .related_title {
  font-size: 2.5rem;
  font-weight: bold;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
  padding-bottom: 0.3125rem;
  border-bottom: 3px solid;
  -o-border-image: linear-gradient(to right, #0951C4, #0F99FF) 1;
     border-image: linear-gradient(to right, #0951C4, #0F99FF) 1;
}

.related .works_list {
  max-width: 80rem;
  display: grid;
  gap: 2.0625rem;
  grid-template-columns: repeat(3, 1fr);
  margin-inline: auto;
  margin-top: 3.125rem;
}

.related .works_list .works_list_item {
  padding: 1.0625rem;
  background-color: #fff;
  border: 3px solid #fff;
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.16);
  transition: 0.3s;
}

.related .works_list .works_list_item img {
  width: 22.875rem;
  aspect-ratio: 366/244;
  max-width: 100%;
  margin-bottom: 0.625rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.related .works_list .works_list_item time {
  position: relative;
  font-size: 0.875rem;
  font-family: "Roboto Condensed", sans-serif;
  margin-right: 0.625rem;
  padding-left: 1.3125rem;
}

.related .works_list .works_list_item time.publish {
  margin-right: unset;
}

.related .works_list .works_list_item time::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1rem;
  height: 1rem;
}

.related .works_list .works_list_item time.update::before {
  background: url(../img/icon-update.svg) no-repeat center center/contain;
}

.related .works_list .works_list_item time.publish::before {
  background: url(../img/icon-publish.svg) no-repeat center center/contain;
}

.related .works_list .works_list_item .works_list_item_title {
  font-size: 1.125rem;
  margin-top: 0.625rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: 0.3s;
}

.related .works_list .works_list_item .works_list_item_bottom {
  display: flex;
  gap: 0.625rem;
  align-items: center;
}

.related .works_list .works_list_item .works_list_item_bottom .works_list_item_category {
  font-size: 0.875rem;
  color: #F28804;
}

.related .works_list .works_list_item:hover {
  border: 3px solid #F28804;
  transition: 0.3a;
}

.related .works_list .works_list_item:hover .works_list_item_title {
  color: #F28804;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .related {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
  .related .inner {
    max-width: 100%;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .related .inner .related_title {
    font-size: 1.75rem;
  }
  .related .works_list {
    max-width: 100%;
    gap: 2.0625rem;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 3.125rem;
  }
  .related .works_list .works_list_item {
    max-width: 20.625rem;
    margin-inline: auto;
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.16);
  }
  .related .works_list .works_list_item .works_list_item_title {
    font-size: 1rem;
    margin-bottom: 0.875rem;
  }
}
.p-widget + .p-widget {
  margin-top: 2.5rem;
}
.p-widget--sticky {
  position: sticky;
  top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-widget--sticky {
    position: relative;
    top: auto;
  }
}
.p-widget a {
  transition: all 0.3s;
}
.p-widget a:hover {
  opacity: 0.7;
}

.p-widget__banner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.p-widget__banner img {
  width: 100%;
}

.p-top_fv {
  margin-top: 9.4375rem;
}
@media screen and (max-width: 767px) {
  .p-top_fv {
    margin-top: 3.875rem;
  }
}
.p-top_fv img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top_fv .swiper {
  width: 100%;
  height: 100%;
}
.p-top_fv .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-top_fv .p-top_fv-line {
  position: relative;
  width: 100%;
  height: auto;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  padding-bottom: 0.5rem;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: 16.75rem;
  margin-left: 1.25rem;
  border-radius: 1.875rem;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .scroll-infinity__item {
    width: 7.5rem;
    margin-left: 0.625rem;
  }
}

.scroll-infinity__item a {
  border-radius: 1.875rem;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .scroll-infinity__item a:hover {
    opacity: 0.7;
  }
}

.scroll-infinity__item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 268/210;
  border-radius: 1.875rem;
}

.p-top_logo {
  position: relative;
  background: url(../img/top-logo-bg.jpg) no-repeat center center/cover;
  padding-block: 5rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top_logo {
    padding-top: 1.875rem;
    padding-bottom: 2.5rem;
  }
}

.p-top_logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.8;
  color: #53290B;
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top_logo-text {
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }
}

.p-top_logo-text-orange {
  color: #F28804;
}

.p-top_logo-text-red {
  position: relative;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  color: #DE3845;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top_logo-text-red {
    font-size: 1.75rem;
  }
}
.p-top_logo-text-red::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 9.1875rem;
  height: 1.3125rem;
  background: url(../img/orange-line.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top_logo-text-red::before {
    width: 7.0625rem;
    height: 0.9375rem;
  }
}

.p-top_about {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top_about {
    padding-block: 3.75rem;
  }
}
.p-top_about .l-inner {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top_about .l-inner {
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
  }
}
.p-top_about .c-section-title {
  position: relative;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-top_about .c-section-title {
    margin-bottom: 1.5rem;
  }
}
.p-top_about .c-section-title::before {
  position: absolute;
  top: -2.9375rem;
  right: -26.25rem;
  content: "";
  display: inline-block;
  width: 34.1875rem;
  height: 9.375rem;
  background: url(../img/top-about-en.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top_about .c-section-title::before {
    top: 0.875rem;
    right: -1rem;
    width: 13rem;
    height: 3.4375rem;
    background: url(../img/sp-top-about-en.png) no-repeat center center/cover;
  }
}
.p-top_about .p-top_about-text {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-top_about .p-top_about-text {
    font-size: 1rem;
  }
}
.p-top_about .p-top_about-image {
  width: 28.75rem;
  height: auto;
  margin-left: -3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top_about .p-top_about-image {
    width: 21.375rem;
    margin-left: unset;
  }
}

@media screen and (max-width: 767px) {
  .p-top_reason .l-inner {
    padding: unset;
  }
}
.p-top_reason .c-section-title {
  position: relative;
  writing-mode: vertical-lr;
  text-orientation: upright;
  line-height: 1.35;
}
@media screen and (max-width: 767px) {
  .p-top_reason .c-section-title {
    writing-mode: unset;
    margin-left: 1rem;
  }
}
.p-top_reason .c-section-title::before {
  position: absolute;
  top: -1.875rem;
  right: -6.25rem;
  content: "";
  display: inline-block;
  width: 9.8125rem;
  height: 28.0625rem;
  background: url(../img/top-reason-en.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top_reason .c-section-title::before {
    top: 3.5rem;
    right: 0;
    width: 10.5rem;
    height: 3.8125rem;
    background: url(../img/sp-top-reason-en.png) no-repeat center center/cover;
  }
}
.p-top_reason .c-section-title span {
  margin-top: 11.25rem;
}
@media screen and (max-width: 767px) {
  .p-top_reason .c-section-title span {
    margin-top: unset;
  }
}
.p-top_reason .p-top_reason-readmore {
  position: relative;
  padding-bottom: 2.5rem;
  display: flex;
  gap: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-top_reason .p-top_reason-readmore {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.p-top_reason .p-top_reason-readmore label {
  position: absolute;
  display: table;
  left: 50%;
  bottom: 0;
  margin: 0 auto;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 1;
}
.p-top_reason .p-top_reason-readmore label::before {
  content: "...続きを読む ";
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-top_reason .p-top_reason-readmore label::before {
    font-size: 1rem;
  }
}
.p-top_reason .p-top_reason-readmore label::after {
  content: "";
  display: inline-block;
  inline-size: 1.625rem;
  block-size: 0.625rem;
  background: url(../img/triangle-orange.svg) no-repeat center center/cover;
  transition: transform 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-top_reason .p-top_reason-readmore label::after {
    inline-size: 1.25rem;
    block-size: 0.5rem;
  }
}
.p-top_reason .p-top_reason-readmore input[type=checkbox]:checked ~ label::before {
  content: "閉じる ";
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-top_reason .p-top_reason-readmore input[type=checkbox]:checked ~ label::before {
    font-size: 1rem;
  }
}
.p-top_reason .p-top_reason-readmore input[type=checkbox]:checked ~ label::after {
  transform: rotate(180deg);
}
.p-top_reason .p-top_reason-readmore input[type=checkbox] {
  display: none;
}
.p-top_reason .p-top_reason-readmore-content {
  position: relative;
  height: 38.75rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top_reason .p-top_reason-readmore-content {
    height: 70rem;
  }
}
.p-top_reason .p-top_reason-readmore input[type=checkbox]:checked ~ .p-top_reason-readmore-content {
  height: auto;
}
.p-top_reason .p-top_reason-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top_reason .p-top_reason-list {
    gap: 1.5rem;
  }
}
.p-top_reason .p-top_reason-item {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-top_reason .p-top_reason-item {
    flex-direction: column;
    justify-content: space-between;
  }
}
.p-top_reason .p-top_reason-item-wrap {
  width: 62.56%;
  background: linear-gradient(to right, #F28804, #F1B365);
  color: #fff;
  padding: 2.5625rem 3.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-top_reason .p-top_reason-item-wrap {
    width: 100%;
    margin-right: 1rem;
    padding: 2.5625rem 1rem 2.625rem 2rem;
    gap: 0.875rem;
  }
}
.p-top_reason .p-top_reason-title {
  position: relative;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.2;
  padding-left: 3.625rem;
  padding-bottom: 0.75rem;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  border-bottom: 2px solid #fff;
}
@media screen and (max-width: 767px) {
  .p-top_reason .p-top_reason-title {
    font-size: 1.25rem;
    padding-left: 2.5625rem;
    padding-bottom: 0.5rem;
  }
}
.p-top_reason .p-top_reason-title::before {
  position: absolute;
  top: 40%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 3.125rem;
  height: 3.5rem;
  background: url(../img/top-reason-num01.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-top_reason .p-top_reason-title::before {
    top: 30%;
    width: 1.875rem;
    height: 1.75rem;
  }
}
.p-top_reason .p-top_reason-text {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.6;
}
.p-top_reason .p-top_reason-image {
  width: 39.73%;
  margin-left: -1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-top_reason .p-top_reason-image {
    width: 100%;
    max-width: 31.25rem;
    text-align: right;
    margin-left: unset;
    margin-top: -0.875rem;
    padding-left: 1rem;
  }
}
.p-top_reason .p-top_reason-image img {
  border-radius: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-top_reason .p-top_reason-image img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem 0 0 0.75rem;
  }
}
.p-top_reason .p-top_reason-item.reason-item-re {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-top_reason .p-top_reason-item.reason-item-re {
    flex-direction: column;
  }
}
.p-top_reason .p-top_reason-item.reason-item-re .p-top_reason-item-wrap {
  background: linear-gradient(to right, #F2B620, #F0CD77);
  color: #fff;
  padding: 2.5625rem 2rem 2rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-top_reason .p-top_reason-item.reason-item-re .p-top_reason-item-wrap {
    padding: 2.5625rem 1rem 2.625rem 2rem;
  }
}
.p-top_reason .p-top_reason-item.reason-item-re .p-top_reason-image {
  margin-left: unset;
  margin-right: -1.5625rem;
  z-index: 2;
}
.p-top_reason .p-top_reason-item.reason-item02 .p-top_reason-title::before {
  background: url(../img/top-reason-num02.png) no-repeat center center/contain;
}
.p-top_reason .p-top_reason-item.reason-item03 .p-top_reason-title::before {
  background: url(../img/top-reason-num03.png) no-repeat center center/contain;
}
.p-top_reason .p-top_reason-item.reason-item04 .p-top_reason-title::before {
  background: url(../img/top-reason-num04.png) no-repeat center center/contain;
}
.p-top_reason .p-top_reason-item.reason-item05 .p-top_reason-title::before {
  background: url(../img/top-reason-num05.png) no-repeat center center/contain;
}
.p-top_reason .p-top_reason-item.reason-item06 .p-top_reason-title::before {
  background: url(../img/top-reason-num06.png) no-repeat center center/contain;
}
.p-top_reason .p-top_reason-item.reason-item07 .p-top_reason-title::before {
  background: url(../img/top-reason-num07.png) no-repeat center center/contain;
}
.p-top_reason .p-top_reason-item.reason-item08 .p-top_reason-title::before {
  background: url(../img/top-reason-num08.png) no-repeat center center/contain;
}

.p-top_staff {
  padding-top: 5rem;
  padding-bottom: 14.75rem;
  background: url(../img/top-staff-bg.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-top_staff {
    padding-top: 3.75rem;
    padding-bottom: 8.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top_staff .l-inner {
    padding: unset;
  }
}
.p-top_staff .c-section-title {
  position: relative;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
  margin-bottom: 4.1875rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top_staff .c-section-title {
    margin-bottom: 3rem;
  }
}
.p-top_staff .c-section-title::before {
  position: absolute;
  top: -3.125rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 18.9375rem;
  height: 9.8125rem;
  background: url(../img/top-staff-en.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top_staff .c-section-title::before {
    top: -0.25rem;
    width: 7.5rem;
    height: 3.8125rem;
  }
}
.p-top_staff .p-top_staff_text-wrap {
  position: relative;
  background-color: #fff;
  padding: 1rem 0.75rem 0.875rem;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-top_staff .p-top_staff_text-wrap {
    padding: 0.5rem 0.375rem 0.375rem;
    gap: 0.25rem;
  }
}
.p-top_staff .p-top_staff_post {
  position: absolute;
  top: -2.5rem;
  left: 0;
  background-color: #BADC82;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  width: auto;
  height: 2.5rem;
  padding-inline: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top_staff .p-top_staff_post {
    top: -1.25rem;
    font-size: 0.625rem;
    height: 1.25rem;
  }
}
.p-top_staff .p-top_staff_name {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.35;
  text-align: center;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-top_staff .p-top_staff_name {
    font-size: 0.75rem;
  }
}
.p-top_staff .p-top_staff_text {
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.35;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top_staff .p-top_staff_text {
    font-size: 0.625rem;
  }
}
.p-top_staff .c-parts-button02 {
  color: #333333;
  font-weight: 500;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top_staff .c-parts-button02 {
    font-size: 0.625rem;
    padding-right: 1.125rem;
  }
  .p-top_staff .c-parts-button02::after {
    width: 0.75rem;
    height: 0.75rem;
  }
}

/* スライダー本体 */
.p-top_staff_swiper {
  position: relative;
  padding-inline: 3.375rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top_staff_swiper {
    padding-inline: unset;
    padding-bottom: 0.25rem;
  }
}

.p-top_staff_swiper .swiper-slide.p-top_staff_swiper-slide {
  opacity: 0.4;
  transform: scale(0.8);
  box-shadow: 1rem 1rem 0px 0px rgb(186, 220, 130);
  transition: opacity 0.7s ease, transform 0.7s ease;
  z-index: 0;
}
.p-top_staff_swiper .swiper-slide.p-top_staff_swiper-slide:nth-child(4n+1) {
  box-shadow: 1rem 1rem 0px 0px rgb(186, 220, 130);
}
@media screen and (max-width: 767px) {
  .p-top_staff_swiper .swiper-slide.p-top_staff_swiper-slide:nth-child(4n+1) {
    box-shadow: 0.25rem 0.25rem 0px 0px rgb(186, 220, 130);
  }
}
.p-top_staff_swiper .swiper-slide.p-top_staff_swiper-slide:nth-child(4n+2) {
  box-shadow: 1rem 1rem 0px 0px rgb(220, 213, 130);
}
@media screen and (max-width: 767px) {
  .p-top_staff_swiper .swiper-slide.p-top_staff_swiper-slide:nth-child(4n+2) {
    box-shadow: 0.25rem 0.25rem 0px 0px rgb(220, 213, 130);
  }
}
.p-top_staff_swiper .swiper-slide.p-top_staff_swiper-slide:nth-child(4n+3) {
  box-shadow: 1rem 1rem 0px 0px rgb(160, 220, 130);
}
@media screen and (max-width: 767px) {
  .p-top_staff_swiper .swiper-slide.p-top_staff_swiper-slide:nth-child(4n+3) {
    box-shadow: 0.25rem 0.25rem 0px 0px rgb(160, 220, 130);
  }
}
.p-top_staff_swiper .swiper-slide.p-top_staff_swiper-slide:nth-child(4n+4) {
  box-shadow: 1rem 1rem 0px 0px rgb(220, 171, 130);
}
@media screen and (max-width: 767px) {
  .p-top_staff_swiper .swiper-slide.p-top_staff_swiper-slide:nth-child(4n+4) {
    box-shadow: 0.25rem 0.25rem 0px 0px rgb(220, 171, 130);
  }
}

.p-top_staff_swiper .swiper-slide.p-top_staff_swiper-slide.swiper-slide-active,
.p-top_staff_swiper .swiper-slide.p-top_staff_swiper-slide.swiper-slide-duplicate-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* 矢印 */
.p-top_staff_prev,
.p-top_staff_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.25rem;
  height: 3.25rem;
  background: url("../img/top-staff-arrow.png") no-repeat center/contain;
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-top_staff_prev,
  .p-top_staff_next {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.p-top_staff_prev {
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 767px) {
  .p-top_staff_prev {
    left: 1rem;
  }
}

.p-top_staff_next {
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-top_staff_next {
    right: 1rem;
  }
}
/* --- スタッフ画像の強制修正：style.cssの一番下に追記 --- */
.p-top_staff_image {
  height: 318px !important;
  width: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
}

.p-top_news {
  position: relative;
  padding-block: 5rem;
  margin-top: -9.25rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top_news {
    padding-block: 6.25rem;
    margin-top: -4.375rem;
  }
}
.p-top_news::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 22.0625rem;
  background: url(../img/top-news-bg.png) no-repeat top center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top_news::before {
    background: url(../img/sp-top-news-bg.png) no-repeat top center/cover;
    height: 15.25rem;
  }
}
.p-top_news .c-section-title {
  position: relative;
  color: #fff;
  margin-left: 5rem;
  margin-bottom: 3.625rem;
}
@media screen and (max-width: 767px) {
  .p-top_news .c-section-title {
    margin-left: unset;
  }
}
.p-top_news .c-section-title::before {
  position: absolute;
  top: 1rem;
  right: -2.625rem;
  content: "";
  display: inline-block;
  width: 20.8125rem;
  height: 9.8125rem;
  background: url(../img/top-news-en.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top_news .c-section-title::before {
    top: -0.375rem;
    right: -1rem;
    width: 7.625rem;
    height: 3.75rem;
    background: url(../img/sp-top-news-en.png) no-repeat center center/cover;
  }
}
.p-top_news .p-top_news-tab-wrap {
  margin-left: 11.25rem;
  margin-bottom: 1.375rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top_news .p-top_news-tab-wrap {
    margin-left: unset;
    margin-bottom: 0.875rem;
    gap: 0.875rem;
  }
}
.p-top_news .p-top_news-tab {
  font-size: 1rem;
  color: #fff;
  background-color: unset;
  padding: 0.5rem 0.875rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top_news .p-top_news-tab {
    font-size: 0.875rem;
  }
}
.p-top_news .p-top_news-tab.is-active {
  background-color: #FFBD1C;
  border: 1px solid #fff;
  border-radius: 0.5rem;
}
.p-top_news .p-top_news-tab:last-child {
  position: relative;
  margin-left: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-top_news .p-top_news-tab:last-child {
    margin-left: 0.875rem;
  }
}
.p-top_news .p-top_news-tab:last-child::before {
  position: absolute;
  top: 0;
  left: -0.75rem;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top_news .p-top_news-tab:last-child::before {
    left: -0.875rem;
  }
}
.p-top_news .p-top_news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  justify-items: center;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .p-top_news .p-top_news-list {
    width: 100%;
    max-width: 31.25rem;
    grid-template-columns: repeat(1, 1fr);
    margin-right: auto;
  }
}
.p-top_news .p-top_news-item {
  width: 100%;
  background-color: #fff;
  max-width: 21.25rem;
  min-width: 21.25rem;
}
@media screen and (max-width: 767px) {
  .p-top_news .p-top_news-item {
    max-width: 100%;
    min-width: 100%;
    width: 100%;
  }
}
.p-top_news .p-top_news-item-link .p-top_news-image-wrap {
  overflow: hidden;
  margin-bottom: 0.875rem;
}
.p-top_news .p-top_news-item-link img {
  width: 100%;
  height: auto;
  aspect-ratio: 340/224;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.p-top_news .p-top_news-tag-wrap {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 0.875rem;
}
.p-top_news .p-top_news-cat {
  border: 1px solid #333333;
  padding: 0.5625rem 1.375rem;
  transition: 0.3s;
}
.p-top_news .p-top_news-time {
  transition: 0.3s;
}
.p-top_news .p-top_news-title {
  font-size: 1rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  transition: 0.3s;
}
.p-top_news .c-parts-button {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-top_news .c-parts-button {
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top_news-item-link:hover .p-top_news-image-wrap img {
    transform: scale(1.1);
  }
  .p-top_news-item-link:hover .p-top_news-cat,
  .p-top_news-item-link:hover .p-top_news-time,
  .p-top_news-item-link:hover .p-top_news-title {
    color: #F28804;
  }
}
.page-contact {
  position: relative;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .page-contact {
    padding-bottom: 3.1875rem;
  }
}
.page-contact::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 8.625rem;
  background: url(../img/line-house.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .page-contact::before {
    height: 3.125rem;
  }
}
.page-contact .c-section-title {
  text-align: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .page-contact .c-section-title {
    margin-bottom: 1.5rem;
    font-size: 1.875rem;
    line-height: 1.4;
  }
}
.page-contact .form {
  max-width: 56.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .page-contact .form {
    max-width: 100%;
  }
}
.page-contact .form-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .page-contact .form-group {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}
.page-contact .radio-group,
.page-contact .nichiji-group,
.page-contact .textarea-group {
  align-items: flex-start;
}
.page-contact .privacy-group {
  margin-bottom: 1.5625rem;
}
.page-contact label.form_label {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  width: 14.625rem;
}
@media screen and (max-width: 767px) {
  .page-contact label.form_label {
    gap: 0.5rem;
    justify-content: flex-start;
    width: 100%;
  }
}
.page-contact .textarea-group label.form_label {
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .page-contact .textarea-group label.form_label {
    margin-top: unset;
  }
}
.page-contact .required {
  font-size: 0.75rem;
  font-weight: bold;
  background-color: #DE3845;
  color: #fff;
  padding: 0.3125rem 0.625rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .page-contact .required {
    font-size: 0.625rem;
    padding: 0.25rem 0.625rem;
  }
}
.page-contact .optional {
  font-size: 0.75rem;
  font-weight: bold;
  background-color: #787876;
  color: #fff;
  padding: 0.3125rem 0.625rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .page-contact .optional {
    font-size: 0.625rem;
    padding: 0.25rem 0.625rem;
  }
}
.page-contact .form-group .wpcf7-form-control-wrap {
  flex: 1;
}
.page-contact .form-group .wpcf7-form-control-wrap input,
.page-contact .form-group .wpcf7-form-control-wrap textarea {
  width: 100%;
  max-width: 37.5rem;
  border: 1px solid #ccc;
  border-radius: 0.3125rem;
  padding-left: 0.625rem;
  font-size: 1rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .page-contact .form-group .wpcf7-form-control-wrap input,
  .page-contact .form-group .wpcf7-form-control-wrap textarea {
    max-width: 100%;
    padding-left: 0.5rem;
  }
}
.page-contact .form-group .wpcf7-form-control-wrap input {
  height: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .page-contact .form-group .wpcf7-form-control-wrap input {
    height: 2.625rem;
  }
}
.page-contact .nichiji-group .wpcf7-form-control-wrap input {
  width: auto;
  height: auto;
}
.page-contact .nichiji-group .form-row-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.page-contact .nichiji-group .form-row {
  font-size: 1rem;
  font-weight: normal;
}
.page-contact .nichiji-group .form-row select {
  border: 1px solid #ccc;
  border-radius: 0.1875rem;
  font-size: 1rem;
}
.page-contact .form-group .wpcf7-form-control-wrap input::-moz-placeholder, .page-contact .form-group .wpcf7-form-control-wrap textarea::-moz-placeholder {
  color: #ccc;
  font-weight: normal;
}
.page-contact .form-group .wpcf7-form-control-wrap input::placeholder,
.page-contact .form-group .wpcf7-form-control-wrap textarea::placeholder {
  color: #ccc;
  font-weight: normal;
}
.page-contact .form-group .wpcf7-form-control-wrap textarea {
  height: 25rem;
  padding-top: 1.25rem;
  resize: none;
}
@media screen and (max-width: 767px) {
  .page-contact .form-group .wpcf7-form-control-wrap textarea {
    height: 8.75rem;
    padding-top: 0.875rem;
  }
}
.page-contact .form-group .radio_kibou {
  display: flex;
  gap: 1.875rem;
  flex-wrap: wrap;
  max-width: 37.5rem;
}
@media screen and (max-width: 767px) {
  .page-contact .form-group .radio_kibou {
    gap: 0.5rem;
    max-width: 100%;
  }
}
.page-contact .form-group .radio_kibou input[type=radio] {
  position: absolute;
  width: unset;
  height: unset;
  opacity: 0;
  visibility: hidden;
}
.page-contact .radio_kibou span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: normal;
}
.page-contact .radio_kibou span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 0.1875rem;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 0.9375rem;
  height: 0.9375rem;
  margin-right: 0.625rem;
}
.page-contact .radio_kibou span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0.3125rem;
  content: "";
  border-radius: 0;
  width: 0.375rem;
  height: 0.625rem;
  border-right: 2px solid #F28804;
  border-bottom: 2px solid #F28804;
  transform: translateY(-60%) rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.page-contact .radio_kibou input[type=radio]:checked + span.wpcf7-list-item-label::after {
  opacity: 1;
}
.page-contact .radio_kibou input[type=radio]:checked + span.wpcf7-list-item-label::before {
  border-color: #F28804;
}
.page-contact .form-privacy-button {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-contact .form-privacy-button {
    text-align: left;
    padding-left: 1.75rem;
  }
}
.page-contact .is-privacy-sp {
  display: none;
}
.page-contact .form-privacy-button input[type=checkbox] {
  display: none;
}
.page-contact .form-privacy-button .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
}
.page-contact .form-privacy-button .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: -1.5625rem;
  top: 0;
  width: 0.9375rem;
  height: 0.9375rem;
  border-radius: 0.1875rem;
  border: 1px solid #ccc;
  background-color: #fff;
  cursor: pointer;
}
.page-contact .form-privacy-button input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  position: absolute;
  top: 0;
  left: -1.25rem;
  content: "";
  display: block;
  width: 0.375rem;
  height: 0.75rem;
  border-bottom: 2px solid #F28804;
  border-right: 2px solid #F28804;
  transform: rotate(45deg);
  z-index: 1;
}
.page-contact .form-privacy-button .wpcf7-list-item {
  margin-left: unset;
  margin-bottom: 0.625rem;
}
.page-contact .form-privacy-button .form-privacy-link {
  text-decoration: underline;
}
.page-contact .submit-button-wrap {
  position: relative;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
}
.page-contact .submit-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  border-radius: 3.125rem;
  margin-inline: auto;
  border: 2px solid #F0CD77;
  color: #F28804;
  background-color: #fff;
  padding: 1rem 5.25rem 1rem 3.125rem;
  box-shadow: 0.1875rem 0.25rem 0px 0px rgb(242, 136, 4);
  cursor: pointer;
  transition: 0.3s;
}
.page-contact .submit-button-wrap::after {
  position: absolute;
  top: 1rem;
  right: 1.5625rem;
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background: url(../img/button02-arrow.png) no-repeat center center/cover;
  transition: 0.3s;
}
.page-contact .form-annotation {
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-contact .form-annotation {
    margin-inline: unset;
    margin-top: 1.25rem;
  }
}
.page-contact .form-annotation-text {
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .page-contact .form-annotation-text {
    font-size: 0.75rem;
  }
}
.page-contact .wpcf7-not-valid-tip {
  display: none;
  font-size: 0.875rem;
}
.page-contact.is-show .wpcf7-not-valid-tip {
  display: block;
}

.page-thanks {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 13.625rem;
}
@media screen and (max-width: 767px) {
  .page-thanks {
    padding-top: unset;
    padding-bottom: 3.1875rem;
  }
}
.page-thanks::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 8.625rem;
  background: url(../img/line-house.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .page-thanks::before {
    height: 3.125rem;
  }
}
.page-thanks .c-section-title {
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .page-thanks .c-section-title {
    margin-bottom: 2rem;
  }
}
.page-thanks .page-thanks-text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .page-thanks .page-thanks-text {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}
.page-thanks .c-parts-button {
  padding: 1rem 4.25rem 1rem 2.125rem;
}

.p-service_content {
  padding-top: 12.5rem;
  padding-bottom: 7.5rem;
  background: url(../img/top-service-bg.png) no-repeat top center/cover;
}
@media screen and (max-width: 767px) {
  .p-service_content {
    padding-top: 8.75rem;
    padding-bottom: 3.75rem;
    background: url(../img/sp-top-service-bg.png) no-repeat top center/cover;
  }
}
.p-service_content .c-section-title {
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-service_content .c-section-title {
    margin-bottom: 3.75rem;
  }
}
.p-service_content .c-section-title::before {
  position: absolute;
  top: -5.375rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 28.5rem;
  height: 9.8125rem;
  background: url(../img/service-en.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-service_content .c-section-title::before {
    top: -1.625rem;
    width: 11.375rem;
    height: 3.875rem;
  }
}
.p-service_content .p-service_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-service_content .p-service_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.1875rem;
  }
}
.p-service_content .p-service_item {
  position: relative;
  background-color: #fff;
  border-radius: 1.25rem;
  padding: 1.25rem 1.75rem 1.125rem;
  margin-left: 2.25rem;
  border: 2px solid #fff;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-service_content .p-service_item:hover {
    border: 2px solid #F28804;
  }
}
@media screen and (max-width: 767px) {
  .p-service_content .p-service_item {
    padding: 1.125rem 1.5rem 1rem;
    margin-left: 1.9375rem;
  }
}
.p-service_content .p-service_num {
  position: absolute;
  top: -1.75rem;
  left: -2.25rem;
  background: url(../img/service-num-bg.png) no-repeat center center/cover;
  width: 5rem;
  height: 5.4375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.375rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-service_content .p-service_num {
    top: -1.5rem;
    left: -1.9375rem;
    width: 4.25rem;
    height: 4.625rem;
  }
}
.p-service_content .p-service_count {
  font-size: 2.25rem;
  font-weight: bold;
  font-family: "Roboto Condensed", sans-serif;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-service_content .p-service_count {
    font-size: 1.875rem;
  }
}
.p-service_content .p-service_card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-service_content .p-service_card {
    gap: 0.625rem;
  }
}
.p-service_content .p-service_img-wrap {
  overflow: hidden;
  position: relative;
}
.p-service_content .p-service_img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 308/134;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.p-service_content .p-service_text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-service_content .p-service_text-wrap {
    gap: 0.3125rem;
  }
}
.p-service_content .p-service_title-wrap {
  display: flex;
  gap: 0.125rem;
  align-items: center;
}
.p-service_content .p-service_title {
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-service_content .p-service_title {
    font-size: 1rem;
  }
}
.p-service_content .p-service_card .p-service_title-icon {
  width: 1.875rem;
  height: auto;
  aspect-ratio: 30/27;
}
.p-service_content .p-service_text {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-service_content .p-service_text {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-service_content .p-service_item:hover .p-service_card img {
    transform: scale(1.1);
  }
}

.p-case-window {
  padding-top: 3.75rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-case-window {
    padding-bottom: 3.75rem;
  }
}
.p-case-window .c-section-title {
  position: relative;
}
.p-case-window .c-section-title::before {
  position: absolute;
  top: -0.4375rem;
  left: -5.625rem;
  content: "";
  display: inline-block;
  width: 18.9375rem;
  height: 9.8125rem;
  background: url(../img/case-window-en.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-case-window .c-section-title::before {
    top: 1rem;
    left: 0;
    width: 7.5rem;
    height: 3.8125rem;
    background: url(../img/sp-case-window-en.png) no-repeat center center/cover;
  }
}

/* ===============================
   p-case-window_tag
=============================== */
.p-case-window_tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-case-window_tag-list {
    gap: 0.75rem 0.625rem;
    margin-bottom: 1.125rem;
  }
}

.p-case-window_tag-link {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.125rem;
  color: #F28804;
  border: 1px solid #F0CD77;
  border-radius: 0.5rem;
  padding: 0.625rem 1.25rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-case-window_tag-link {
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
  }
}

/* 選択中のタグ */
.p-case-window_tag-link.is-current {
  background-color: #FFBE19;
  color: #fff;
  border-color: #FFBE19;
}
.p-case-window_tag-link.is-current img {
  filter: brightness(0) invert(1);
}

/* -------------------------------
   slider
------------------------------- */
.p-case-window_slider {
  position: relative;
  padding-top: 10.875rem;
  margin-top: -2.75rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-case-window_slider {
    padding-top: 4.1875rem;
    margin-top: 1.25rem;
  }
}

.p-case-window_item {
  padding: 0.375rem 0.375rem 0 0;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-case-window_item {
    padding: 0.25rem 0.25rem 0 0;
  }
}

/* -------------------------------
   画像部分の高さ安定化
--------------------------------*/
.p-case-window_thumb {
  position: relative;
  border-radius: 8.75rem 8.75rem 0 0;
  margin-bottom: 0.875rem;
  aspect-ratio: 378/310;
}

.p-case-window_thumb::before {
  position: absolute;
  top: -0.375rem;
  left: 0.375rem;
  right: -0.375rem;
  bottom: 0.375rem;
  content: "";
  border: 0.125rem solid #F0CD77;
  border-radius: 8.75rem 8.75rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-case-window_thumb::before {
    top: -0.25rem;
    left: 0.25rem;
    right: -0.25rem;
    bottom: 0.25rem;
  }
}

.p-case-window_item .p-case-window_image {
  width: 100%;
  height: 100%;
  /* ★ 画像を枠に合わせる */
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8.75rem 8.75rem 0 0;
}

/* -------------------------------
   テキスト部
------------------------------- */
@media screen and (min-width: 768px) {
  .p-case-window_item a:hover .p-case-window_body {
    color: #F28804;
  }
}
.p-case-window_title {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 1rem;
  transition: 0.3s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.6em;
}
@media screen and (max-width: 767px) {
  .p-case-window_title {
    font-size: 1rem;
    margin-bottom: 0.375rem;
  }
}

.p-case-window_cat {
  display: inline-block;
  font-size: 0.75rem;
  color: #fff;
  background-color: #53290B;
  padding: 0.5rem 0.875rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-case-window_cat {
    padding: 0.375rem 0.625rem;
    margin-bottom: 0.375rem;
  }
}

.p-case-window_meta {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-case-window_meta {
    font-size: 0.875rem;
  }
}

/* -------------------------------
   controls
------------------------------- */
.p-case-window_controls {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-case-window_controls {
    right: 1rem;
    gap: 0.5625rem;
  }
}

.p-case-window_pagination {
  display: none;
  /* ← ドット非表示 */
}

.p-case-window_prev,
.p-case-window_next {
  inline-size: 2.75rem;
  block-size: 2.75rem;
  border-radius: 50%;
  border: 1px solid #857C70;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-case-window_prev,
  .p-case-window_next {
    inline-size: 1.6875rem;
    block-size: 1.6875rem;
  }
}

.p-case-window_prev:hover,
.p-case-window_next:hover {
  background: #F0CD77;
}

.p-case-window_prev::before,
.p-case-window_next::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.4375rem;
  height: 1rem;
  background: url("../img/window-slider-arrow.svg") no-repeat center center/contain;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-case-window_prev::before,
  .p-case-window_next::before {
    width: 0.3125rem;
    height: 0.5625rem;
  }
}

.p-case-window_prev::before {
  transform: rotate(180deg);
}

.p-area {
  padding-top: 7.625rem;
  padding-bottom: 5rem;
  background: url(../img/area-bg.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-area {
    padding-top: 3.75rem;
    padding-bottom: 2.5625rem;
    background: url(../img/sp-area-bg.jpg) no-repeat center center/cover;
  }
}
.p-area .l-inner {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-area .l-inner {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
}
.p-area .p-area_title {
  position: relative;
  font-size: 2.5rem;
  font-weight: bold;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  color: #fff;
  z-index: 2;
  margin-bottom: 5.0625rem;
}
@media screen and (max-width: 767px) {
  .p-area .p-area_title {
    font-size: 2rem;
    margin-bottom: 3.375rem;
    margin-left: 3.125rem;
  }
}
.p-area .p-area_title::before {
  position: absolute;
  top: -3.0625rem;
  left: -6.875rem;
  content: "";
  display: inline-block;
  width: 30.6875rem;
  height: 10.125rem;
  background: url(../img/paint-orange.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-area .p-area_title::before {
    top: -1.625rem;
    left: -1.875rem;
    width: 18.5rem;
    height: 6.0625rem;
  }
}
.p-area .p-area_title::after {
  position: absolute;
  top: -4.25rem;
  right: -23.1875rem;
  content: "";
  display: inline-block;
  width: 8.75rem;
  height: 10.8125rem;
  background: url(../img/nurubear.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-area .p-area_title::after {
    top: 1.75rem;
    right: -7rem;
    width: 4rem;
    height: 4.875rem;
  }
}
.p-area .p-area_text-wrap {
  background-color: #fff;
  padding: 2rem 2.5rem;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .p-area .p-area_text-wrap {
    padding: 1.5rem 1rem;
  }
}
.p-area .p-area_text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-area .p-area_text {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.p-area .p-area_message {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-area .p-area_message {
    font-size: 1rem;
  }
}
.p-area .p-area_image {
  width: 17.3125rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-area .p-area_image {
    width: 56.56%;
  }
}

.p-cta {
  padding-top: 5rem;
  padding-bottom: 3.75rem;
  background: url(../img/cta-bg.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding-top: 3.75rem;
    background: url(../img/sp-cta-bg.jpg) no-repeat center center/cover;
  }
}
.p-cta .p-cta_title {
  position: relative;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
  margin-bottom: 1.0625rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-cta .p-cta_title {
    font-size: 2rem;
    margin-bottom: 4rem;
  }
}
.p-cta .p-cta_title::before {
  position: absolute;
  top: -3.0625rem;
  left: -6.25rem;
  content: "";
  display: inline-block;
  width: 30.625rem;
  height: 10.125rem;
  background: url(../img/paint-orange.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-cta .p-cta_title::before {
    top: -2.125rem;
    left: -3.6875rem;
    width: 21.125rem;
    height: 7rem;
  }
}
.p-cta .p-cta_content {
  position: relative;
  display: flex;
  gap: 4.375rem;
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem 5.25rem;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-cta .p-cta_content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    padding: 2rem 1.25rem 2rem 1.1875rem;
  }
}
.p-cta .p-cta_tel {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-cta .p-cta_tel {
    gap: 0.25rem;
  }
}
.p-cta .p-cta_tel-text {
  position: relative;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta .p-cta_tel-text {
    font-size: 1rem;
  }
}
.p-cta .p-cta_tel-text::before {
  position: absolute;
  top: 0;
  left: -1.125rem;
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 1.25rem;
  background: url(../img/cta-slash-left.svg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-cta .p-cta_tel-text::before {
    top: unset;
    bottom: 0;
    width: 0.875rem;
    height: 1.5625rem;
    background: url(../img/cta-slash-left-sp.svg) no-repeat center center/cover;
  }
}
.p-cta .p-cta_tel-text::after {
  position: absolute;
  top: 0;
  right: -1.125rem;
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 1.25rem;
  background: url(../img/cta-slash-right.svg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-cta .p-cta_tel-text::after {
    top: unset;
    bottom: 0;
    width: 0.875rem;
    height: 1.5625rem;
    background: url(../img/cta-slash-right-sp.svg) no-repeat center center/cover;
  }
}
.p-cta .p-cta_tel-link {
  position: relative;
  font-size: 3rem;
  font-weight: bold;
  color: #F28804;
  padding-left: 3.375rem;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-cta .p-cta_tel-link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-cta .p-cta_tel-link {
    font-size: 2rem;
    padding-left: 1.75rem;
  }
}
.p-cta .p-cta_tel-link::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 2.25rem;
  height: 2.75rem;
  background: url(../img/icon-tel.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-cta .p-cta_tel-link::before {
    width: 1.25rem;
    height: 1.5rem;
  }
}
.p-cta .p-cta_tel-large {
  font-size: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-cta .p-cta_tel-large {
    font-size: 2.5rem;
  }
}
.p-cta .p-cta_tel-info {
  font-size: 1.125rem;
  font-weight: bold;
  color: #877A6A;
}
@media screen and (max-width: 767px) {
  .p-cta .p-cta_tel-info {
    font-size: 0.875rem;
  }
}
.p-cta .p-cta_contact {
  padding-left: 4.375rem;
  border-left: 1px solid #877A6A;
  display: flex;
  flex-direction: column;
  gap: 0.5625rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-cta .p-cta_contact {
    padding-left: unset;
    border-left: unset;
    padding-top: 0.875rem;
    border-top: 1px solid #877A6A;
    gap: 0.375rem;
  }
}
.p-cta .p-cta_contact-text {
  position: relative;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.0625rem;
}
@media screen and (max-width: 767px) {
  .p-cta .p-cta_contact-text {
    font-size: 1rem;
  }
}
.p-cta .p-cta_contact-text::before {
  position: absolute;
  top: 0;
  left: -1.125rem;
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 1.25rem;
  background: url(../img/cta-slash-left.svg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-cta .p-cta_contact-text::before {
    top: unset;
    bottom: 0;
    width: 0.875rem;
    height: 1.5625rem;
    background: url(../img/cta-slash-left-sp.svg) no-repeat center center/cover;
  }
}
.p-cta .p-cta_contact-text::after {
  position: absolute;
  top: 0;
  right: -1.125rem;
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 1.25rem;
  background: url(../img/cta-slash-right.svg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-cta .p-cta_contact-text::after {
    top: unset;
    bottom: 0;
    width: 0.875rem;
    height: 1.5625rem;
    background: url(../img/cta-slash-right-sp.svg) no-repeat center center/cover;
  }
}
.p-cta .p-cta_contact_button {
  position: relative;
  font-size: 1.375rem;
  font-weight: bold;
  color: #fff;
  background-color: #DE3845;
  width: 20rem;
  height: 4.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3.125rem;
  padding-left: 1.75rem;
  box-shadow: 0.1875rem 0.25rem 0px 0px rgb(193, 16, 30);
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .p-cta .p-cta_contact_button:hover {
    box-shadow: none;
    transform: translate(0.1875rem, 0.25rem);
  }
}
@media screen and (max-width: 767px) {
  .p-cta .p-cta_contact_button {
    font-size: 1.25rem;
    width: 16.25rem;
    height: 3.875rem;
    border-radius: 2.5rem;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
  }
}
.p-cta .p-cta_contact_button::before {
  position: absolute;
  top: 50%;
  left: 3.875rem;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 1.6875rem;
  height: 1.3125rem;
  background: url(../img/mail.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-cta .p-cta_contact_button::before {
    left: 2.625rem;
    width: 1.375rem;
    height: 1.0625rem;
  }
}
.p-cta .p-cta_contact-info {
  font-size: 1.125rem;
  font-weight: bold;
  color: #877A6A;
}
@media screen and (max-width: 767px) {
  .p-cta .p-cta_contact-info {
    font-size: 0.875rem;
  }
}

.page-service_reason {
  padding-bottom: 1.25rem;
}
.page-service_reason .c-section-title {
  text-align: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .page-service_reason .c-section-title {
    line-height: 1.35;
    margin-bottom: 1.5rem;
  }
}
.page-service_reason .page-service_reason-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-service_reason .page-service_reason-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.page-service_reason .page-service_reason-item img {
  width: 24.25rem;
  height: 14.8125rem;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 388/237;
  border-radius: 1rem;
  margin-bottom: 1.375rem;
}
@media screen and (max-width: 767px) {
  .page-service_reason .page-service_reason-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 343/210;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
  }
}
.page-service_reason .page-service_reason-item .page-service_reason-title {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5rem;
}
.page-service_reason .page-service_reason-item .page-service_reason-text {
  font-size: 1rem;
  line-height: 1.5;
}

.p-flow {
  position: relative;
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding-block: 3.75rem;
  }
}
.p-flow::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: inline-block;
  width: 35.0625rem;
  height: 34rem;
  background: url(../img/flow-bg01.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-flow::before {
    width: 17.5rem;
    height: 17rem;
  }
}
.p-flow::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 30.6875rem;
  height: 30.625rem;
  background: url(../img/flow-bg02.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-flow::after {
    width: 15.3125rem;
    height: 15.3125rem;
  }
}
.p-flow .c-section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-flow .c-section-title {
    margin-bottom: 1.5rem;
  }
}
.p-flow .p-flow_sub {
  font-size: 1.125rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-flow .p-flow_sub {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}
.p-flow .p-flow_list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  max-width: 56.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-flow .p-flow_list {
    max-width: 100%;
    gap: 0.875rem;
  }
}
.p-flow .p-flow_item {
  position: relative;
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-flow .p-flow_item {
    gap: 0.5rem;
  }
}
.p-flow .p-flow_item::before {
  content: "";
  position: absolute;
  top: 7.5rem;
  left: 3.75rem;
  width: 1px;
  height: 100%;
  background-color: #877A6A;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-flow .p-flow_item::before {
    top: 2.5rem;
    left: 1.5rem;
  }
}
.p-flow .p-flow_item:last-child::before {
  display: none;
}
.p-flow .p-flow_item img {
  width: 7.1875rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-flow .p-flow_item img {
    width: 2.75rem;
  }
}
.p-flow .p-flow_content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-flow .p-flow_content {
    gap: 0.5rem;
  }
}
.p-flow .p-flow_title {
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: bold;
  color: #F28804;
}
@media screen and (max-width: 767px) {
  .p-flow .p-flow_title {
    font-size: 1.125rem;
  }
}
.p-flow .p-flow_text {
  font-size: 1rem;
  line-height: 1.6;
}
.p-flow .p-flow_readmore {
  position: relative;
  padding-bottom: 2.5rem;
}
.p-flow .p-flow_readmore label {
  position: absolute;
  display: table;
  left: 50%;
  bottom: 0;
  margin: 0 auto;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 1;
}
.p-flow .p-flow_readmore label::before {
  content: "...続きを読む ";
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-flow .p-flow_readmore label::before {
    font-size: 1rem;
  }
}
.p-flow .p-flow_readmore label::after {
  content: "";
  display: inline-block;
  inline-size: 1.625rem;
  block-size: 0.625rem;
  background: url(../img/triangle-orange.svg) no-repeat center center/cover;
  transition: transform 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-flow .p-flow_readmore label::after {
    inline-size: 1.25rem;
    block-size: 0.5rem;
  }
}
.p-flow .p-flow_readmore input[type=checkbox]:checked ~ label::before {
  content: "閉じる ";
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-flow .p-flow_readmore input[type=checkbox]:checked ~ label::before {
    font-size: 1rem;
  }
}
.p-flow .p-flow_readmore input[type=checkbox]:checked ~ label::after {
  transform: rotate(180deg);
}
.p-flow .p-flow_readmore input[type=checkbox] {
  display: none;
}
.p-flow .p-flow_readmore-content {
  position: relative;
  height: 59.25rem;
  overflow: hidden;
}
.p-flow .p-flow_readmore input[type=checkbox]:checked ~ .p-flow_readmore-content {
  height: auto;
}

.p-bottom-link {
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}
.p-bottom-link .l-inner {
  display: flex;
  gap: 5rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-bottom-link .l-inner {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.p-bottom-link .p-bottom-link_item {
  width: 33.5625rem;
  height: 16.1875rem;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-bottom-link .p-bottom-link_item {
    width: 100%;
    height: auto;
    aspect-ratio: 343/190;
  }
}
.p-bottom-link .p-bottom-link_item.p-bottom-link_general {
  background: url(../img/bottom-link01.jpg) no-repeat center center/cover;
}
.p-bottom-link .p-bottom-link_item.p-bottom-link_showroom {
  background: url(../img/bottom-link02.jpg) no-repeat center center/cover;
}
.p-bottom-link .p-bottom-link_item a {
  display: block;
  width: 100%;
  height: 100%;
}
.p-bottom-link .p-bottom-link_label {
  font-size: 1.75rem;
  font-weight: bold;
  color: #fff;
  margin-top: 1.25rem;
  margin-left: 1.875rem;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .p-bottom-link .p-bottom-link_label {
    font-size: 1.5rem;
    margin-left: 1.25rem;
  }
}

.page-taxonomy-service_about .l-inner {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_about .l-inner {
    flex-direction: column-reverse;
    gap: 1rem;
  }
}
.page-taxonomy-service_about .page-taxonomy-service_about-content {
  background-color: #fff;
  padding: 5.75rem 2rem 2.5rem 4.375rem;
  margin-left: -6.125rem;
  margin-top: 4.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_about .page-taxonomy-service_about-content {
    padding: unset;
    margin-left: unset;
    margin-top: unset;
    gap: 1.5rem;
  }
}
.page-taxonomy-service_about .taxonomy-service_about-image {
  width: 40.25rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_about .taxonomy-service_about-image {
    width: 100%;
  }
}
.page-taxonomy-service_about .page-taxonomy-service_about-title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
  color: #F28804;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_about .page-taxonomy-service_about-title {
    font-size: 1.25rem;
  }
}
.page-taxonomy-service_about .page-taxonomy-service_about-text {
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_about .page-taxonomy-service_about-text {
    font-size: 1rem;
  }
}
.page-taxonomy-service_about .c-parts-button {
  background-color: #FFBE19;
  color: #fff;
  border: 1px solid #FFBE19;
  margin: 1.125rem auto 0 0;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_about .c-parts-button {
    margin-inline: auto;
  }
}
.page-taxonomy-service_about .c-parts-button::after {
  background: url(../img/button02-arrow-white.png) no-repeat center center/cover;
}

.page-taxonomy-service_area {
  padding-top: 5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_area {
    padding-top: 3.75rem;
    padding-bottom: 5rem;
  }
}
.page-taxonomy-service_area .page-taxonomy-service_area-title {
  font-size: 2.125rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_area .page-taxonomy-service_area-title {
    margin-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.page-taxonomy-service_area .page-taxonomy-service_area-viewport {
  position: relative;
}
.page-taxonomy-service_area .page-taxonomy-service_area-swiper {
  max-width: 72rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_area .page-taxonomy-service_area-swiper {
    max-width: calc(100% - 4.5rem);
  }
}
.page-taxonomy-service_area .page-taxonomy-service_area-slide {
  display: flex;
  justify-content: center;
}
.page-taxonomy-service_area .page-taxonomy-service_area-link {
  display: flex;
  flex-direction: column;
  border: 1px solid #F28804;
  border-radius: 1rem;
  background: #fff;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .page-taxonomy-service_area .page-taxonomy-service_area-link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_area .page-taxonomy-service_area-link {
    border-radius: 0.75rem;
  }
}
.page-taxonomy-service_area .page-taxonomy-service_area-thumb {
  width: 100%;
  aspect-ratio: 368/180;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_area .page-taxonomy-service_area-thumb {
    aspect-ratio: 271/133;
    border-radius: 0.75rem 1rem 0 0;
  }
}
.page-taxonomy-service_area .page-taxonomy-service_area-label {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  padding-block: 1.5rem;
  color: #F28804;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_area .page-taxonomy-service_area-label {
    font-size: 1.125rem;
    padding-block: 1.125rem;
  }
}
.page-taxonomy-service_area .page-taxonomy-service_area-prev,
.page-taxonomy-service_area .page-taxonomy-service_area-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid #857C70;
  background: #fff;
  cursor: pointer;
  z-index: 2;
  transition: 0.2s ease;
}
@media screen and (min-width: 768px) {
  .page-taxonomy-service_area .page-taxonomy-service_area-prev:hover,
  .page-taxonomy-service_area .page-taxonomy-service_area-next:hover {
    background: #F0CD77;
  }
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_area .page-taxonomy-service_area-prev,
  .page-taxonomy-service_area .page-taxonomy-service_area-next {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.page-taxonomy-service_area .page-taxonomy-service_area-prev::before,
.page-taxonomy-service_area .page-taxonomy-service_area-next::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.4375rem;
  height: 1rem;
  background: url("../img/window-slider-arrow.svg") no-repeat center center/contain;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_area .page-taxonomy-service_area-prev::before,
  .page-taxonomy-service_area .page-taxonomy-service_area-next::before {
    width: 0.3125rem;
    height: 0.5625rem;
  }
}
.page-taxonomy-service_area .page-taxonomy-service_area-prev {
  left: 0;
}
.page-taxonomy-service_area .page-taxonomy-service_area-prev::before {
  transform: rotate(180deg);
}
.page-taxonomy-service_area .page-taxonomy-service_area-next {
  right: 0;
}
.page-taxonomy-service_area .page-taxonomy-service_area-prev.swiper-button-disabled,
.page-taxonomy-service_area .page-taxonomy-service_area-next.swiper-button-disabled {
  display: none !important;
}

.page-taxonomy-service_problem .l-inner {
  background: url(../img/taxonomy-service-problem-bg.png) no-repeat center center/contain;
  padding: 3.75rem 0 6.125rem 5rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_problem .l-inner {
    background: url(../img/sp-taxonomy-service-problem-bg.png) no-repeat center center/contain;
    padding: 2.5rem 1rem 3.9375rem;
  }
}
.page-taxonomy-service_problem .page-taxonomy-service_problem-title {
  position: relative;
  font-size: 2.125rem;
  font-weight: bold;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_problem .page-taxonomy-service_problem-title {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-align: center;
  }
}
.page-taxonomy-service_problem .page-taxonomy-service_problem-title::before {
  position: absolute;
  top: -0.8125rem;
  left: -5.4375rem;
  content: "";
  display: inline-block;
  width: 5.0625rem;
  height: 3.25rem;
  background: url(../img/icon-hatena-br.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_problem .page-taxonomy-service_problem-title::before {
    top: 0.25rem;
    left: 0rem;
    width: 2.875rem;
    height: 1.875rem;
  }
}
.page-taxonomy-service_problem .page-taxonomy-service_problem-title::after {
  position: absolute;
  top: -2.5rem;
  right: -2.875rem;
  content: "";
  display: inline-block;
  width: 5.375rem;
  height: 5.125rem;
  background: url(../img/icon-house.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_problem .page-taxonomy-service_problem-title::after {
    top: 0.625rem;
    right: -0.5rem;
    width: 3.25rem;
    height: 3.125rem;
  }
}
.page-taxonomy-service_problem .page-taxonomy-service_problem-content {
  display: flex;
  gap: 4.125rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_problem .page-taxonomy-service_problem-content {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.page-taxonomy-service_problem img {
  width: 31.75rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_problem img {
    width: 19.4375rem;
  }
}
.page-taxonomy-service_problem .page-taxonomy-service_problem-list {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_problem .page-taxonomy-service_problem-list {
    max-width: 20rem;
  }
}
.page-taxonomy-service_problem .page-taxonomy-service_problem-item {
  position: relative;
  padding: 0 2.25rem 0.625rem 1.75rem;
  border-bottom: 1px solid #F0CD77;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_problem .page-taxonomy-service_problem-item {
    padding: 0 1.25rem 0.625rem 1.375rem;
    font-size: 1.125rem;
  }
}
.page-taxonomy-service_problem .page-taxonomy-service_problem-item::before {
  position: absolute;
  top: 0.25rem;
  left: 0;
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background: url(../img/icon-check.svg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_problem .page-taxonomy-service_problem-item::before {
    width: 1rem;
    height: 1rem;
  }
}

.page-taxonomy-service_solution {
  position: relative;
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_solution {
    padding-top: 1.5rem;
    padding-bottom: 1.8125rem;
  }
}
.page-taxonomy-service_solution::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 13.125rem;
  background: url(../img/solution-bg.jpg) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_solution::before {
    height: 6.875rem;
    background: url(../img/sp-solution-bg.jpg) no-repeat center center/cover;
  }
}
.page-taxonomy-service_solution .page-taxonomy-service_solution-title {
  position: relative;
  font-size: 2.125rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_solution .page-taxonomy-service_solution-title {
    font-size: 1.5rem;
    line-height: 1.3;
    inline-size: -moz-fit-content;
    inline-size: fit-content;
    margin-inline: auto;
  }
}
.page-taxonomy-service_solution .page-taxonomy-service_solution-title::before {
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 39rem;
  height: 1.5625rem;
  background: url(../img/orange-line-long.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_solution .page-taxonomy-service_solution-title::before {
    bottom: -0.3125rem;
    width: 18.6875rem;
    height: 1.125rem;
  }
}
.page-taxonomy-service_solution .page-taxonomy-service_solution-title::after {
  position: absolute;
  top: -2rem;
  right: 5.875rem;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 5.625rem;
  height: 6.9375rem;
  background: url(../img/nurubear.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_solution .page-taxonomy-service_solution-title::after {
    top: 0.3125rem;
    right: -3.4375rem;
    width: 3.125rem;
    height: 3.875rem;
  }
}
.page-taxonomy-service_solution .page-taxonomy-service_solution-list {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_solution .page-taxonomy-service_solution-list {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.8125rem;
  }
}
.page-taxonomy-service_solution .page-taxonomy-service_solution-item {
  max-width: 16.75rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_solution .page-taxonomy-service_solution-item {
    max-width: 100%;
  }
}
.page-taxonomy-service_solution .page-taxonomy-service_solution-item img {
  width: 16.75rem;
  height: 11.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_solution .page-taxonomy-service_solution-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 268/180;
  }
}
.page-taxonomy-service_solution .page-taxonomy-service_solution-sub {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.6;
  color: #fff;
  background-color: #F28804;
  height: 8.4375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_solution .page-taxonomy-service_solution-sub {
    font-size: 1.125rem;
    height: 6.125rem;
  }
}
.page-taxonomy-service_solution .page-taxonomy-service_solution-sub.bg-yellow {
  background-color: #F2B620;
}
.page-taxonomy-service_solution .page-taxonomy-service_solution-item:nth-child(1) .page-taxonomy-service_solution-sub.bg-yellow,
.page-taxonomy-service_solution .page-taxonomy-service_solution-item:nth-child(3) .page-taxonomy-service_solution-sub.bg-yellow {
  background-color: #F28804;
}
.page-taxonomy-service_solution .page-taxonomy-service_solution-text {
  font-size: 2rem;
  font-weight: bold;
  color: #F28804;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_solution .page-taxonomy-service_solution-text {
    font-size: 1.125rem;
    line-height: 1.3;
  }
}

.page-taxonomy-service_service {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background: url(../img/taxonomy-service-bg.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
.page-taxonomy-service_service .page-taxonomy-service_service-future {
  position: relative;
  padding: 5rem 0 5rem 2.875rem;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-future {
    padding: 1.25rem 0 1.25rem 1rem;
    margin-bottom: 2.5rem;
  }
}
.page-taxonomy-service_service .page-taxonomy-service_service-future::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: calc(100% - 11.25rem);
  height: 100%;
  background-color: #F0CD77;
  border-radius: 0 2.5rem 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-future::before {
    width: calc(100% - 1rem);
  }
}
.page-taxonomy-service_service .page-taxonomy-service_service-future-inner {
  position: relative;
  max-width: 84.0625rem;
  margin-right: 0;
  margin-left: auto;
  display: grid;
  grid-template-columns: minmax(0, 40rem) 1fr;
  gap: 3.0625rem;
  padding-top: 3.25rem;
  padding-bottom: 3.6875rem;
  padding-left: 3.0625rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-future-inner {
    max-width: 100%;
    display: flex;
    flex-direction: column-reverse;
    gap: 1.25rem;
    align-items: center;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-left: 1.5rem;
  }
}
.page-taxonomy-service_service .page-taxonomy-service_service-future-inner::before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: calc(100% - 3.0625rem);
  height: 100%;
  background-color: #fff;
  border-radius: 2.5rem 0 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-future-inner::before {
    width: calc(100% - 1rem);
  }
}
.page-taxonomy-service_service .page-taxonomy-service_service-future-inner::after {
  position: absolute;
  top: -2.8125rem;
  right: 4.5625rem;
  content: "";
  display: inline-block;
  width: 9.5625rem;
  height: 28.3125rem;
  background: url(../img/service-en-column.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-future-inner::after {
    top: -0.5rem;
    right: 1.375rem;
    width: 3.8125rem;
    height: 11.3125rem;
  }
}
.page-taxonomy-service_service {
  /* 円エリア */
}
.page-taxonomy-service_service .page-taxonomy-service_service-future-circle {
  position: relative;
  width: 38.9375rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-future-circle {
    width: 17.875rem;
  }
}
.page-taxonomy-service_service .page-taxonomy-service_service-future-circle img {
  width: 38.9375rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-future-circle img {
    width: 17.875rem;
  }
}
.page-taxonomy-service_service .page-taxonomy-service_service-feature-list {
  position: absolute;
  inset: 0;
  /* PC（既存サイズ 623px） */
}
.page-taxonomy-service_service .page-taxonomy-service_service-feature-list .page-taxonomy-service_service-feature-item[data-num="01"] {
  position: absolute;
  top: calc(50% + 0 * 18.21875rem);
  left: calc(50% + 1 * 18.21875rem);
  transform: translate(-50%, -50%);
}
.page-taxonomy-service_service .page-taxonomy-service_service-feature-list .page-taxonomy-service_service-feature-item[data-num="02"] {
  position: absolute;
  top: calc(50% + 0.8660254038 * 18.21875rem);
  left: calc(50% + 0.5 * 18.21875rem);
  transform: translate(-50%, -50%);
}
.page-taxonomy-service_service .page-taxonomy-service_service-feature-list .page-taxonomy-service_service-feature-item[data-num="03"] {
  position: absolute;
  top: calc(50% + 0.8660254038 * 18.21875rem);
  left: calc(50% + -0.5 * 18.21875rem);
  transform: translate(-50%, -50%);
}
.page-taxonomy-service_service .page-taxonomy-service_service-feature-list .page-taxonomy-service_service-feature-item[data-num="04"] {
  position: absolute;
  top: calc(50% + 0 * 18.21875rem);
  left: calc(50% + -1 * 18.21875rem);
  transform: translate(-50%, -50%);
}
.page-taxonomy-service_service .page-taxonomy-service_service-feature-list .page-taxonomy-service_service-feature-item[data-num="05"] {
  position: absolute;
  top: calc(50% + -0.8660254038 * 18.21875rem);
  left: calc(50% + -0.5 * 18.21875rem);
  transform: translate(-50%, -50%);
}
.page-taxonomy-service_service .page-taxonomy-service_service-feature-list .page-taxonomy-service_service-feature-item[data-num="06"] {
  position: absolute;
  top: calc(50% + -0.8660254038 * 18.21875rem);
  left: calc(50% + 0.5 * 18.21875rem);
  transform: translate(-50%, -50%);
}
.page-taxonomy-service_service .page-taxonomy-service_service-feature-list {
  /* SP（343pxに縮小） */
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-feature-list .page-taxonomy-service_service-feature-item[data-num="01"] {
    position: absolute;
    top: calc(50% + 0 * 8.5625rem);
    left: calc(50% + 1 * 8.5625rem);
    transform: translate(-50%, -50%);
  }
  .page-taxonomy-service_service .page-taxonomy-service_service-feature-list .page-taxonomy-service_service-feature-item[data-num="02"] {
    position: absolute;
    top: calc(50% + 0.8660254038 * 8.5625rem);
    left: calc(50% + 0.5 * 8.5625rem);
    transform: translate(-50%, -50%);
  }
  .page-taxonomy-service_service .page-taxonomy-service_service-feature-list .page-taxonomy-service_service-feature-item[data-num="03"] {
    position: absolute;
    top: calc(50% + 0.8660254038 * 8.5625rem);
    left: calc(50% + -0.5 * 8.5625rem);
    transform: translate(-50%, -50%);
  }
  .page-taxonomy-service_service .page-taxonomy-service_service-feature-list .page-taxonomy-service_service-feature-item[data-num="04"] {
    position: absolute;
    top: calc(50% + 0 * 8.5625rem);
    left: calc(50% + -1 * 8.5625rem);
    transform: translate(-50%, -50%);
  }
  .page-taxonomy-service_service .page-taxonomy-service_service-feature-list .page-taxonomy-service_service-feature-item[data-num="05"] {
    position: absolute;
    top: calc(50% + -0.8660254038 * 8.5625rem);
    left: calc(50% + -0.5 * 8.5625rem);
    transform: translate(-50%, -50%);
  }
  .page-taxonomy-service_service .page-taxonomy-service_service-feature-list .page-taxonomy-service_service-feature-item[data-num="06"] {
    position: absolute;
    top: calc(50% + -0.8660254038 * 8.5625rem);
    left: calc(50% + 0.5 * 8.5625rem);
    transform: translate(-50%, -50%);
  }
}
.page-taxonomy-service_service .page-taxonomy-service_service-feature-item {
  position: absolute;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background-color: #DDD8D2;
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-feature-item {
    width: 3.4375rem;
    height: 3.4375rem;
    font-size: 0.625rem;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  }
}
.page-taxonomy-service_service .page-taxonomy-service_service-feature-item::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: inline-block;
  width: 6.875rem;
  height: 6.875rem;
  background: url(../img/service-future-border.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-feature-item::before {
    width: 86%;
    height: 86%;
  }
}
.page-taxonomy-service_service .page-taxonomy-service_service-feature-item.is-active, .page-taxonomy-service_service .page-taxonomy-service_service-feature-item:hover, .page-taxonomy-service_service .page-taxonomy-service_service-feature-item:focus-visible {
  background: #F28804;
  transform: translateZ(0) scale(1.03);
}
.page-taxonomy-service_service .page-taxonomy-service_service-feature-item span {
  font-size: 2.75rem;
  font-weight: bold;
  font-family: "Roboto Condensed", sans-serif;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-feature-item span {
    font-size: 1.3125rem;
  }
}
.page-taxonomy-service_service .page-taxonomy-service_service-feature-content {
  position: relative;
  align-self: center;
  max-width: 29.25rem;
  z-index: 2;
}
.page-taxonomy-service_service .page-taxonomy-service_service-feature-panel[hidden] {
  display: none;
}
.page-taxonomy-service_service .page-taxonomy-service_service-feature-panel {
  animation: fadeIn 0.25s ease;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-feature-panel {
    min-height: 18.75rem;
  }
}
@media screen and (max-width: 380px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-feature-panel {
    min-height: 20.75rem;
  }
}
.page-taxonomy-service_service .page-taxonomy-service_service-feature-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.35;
  color: #F28804;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-feature-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
}
.page-taxonomy-service_service .page-taxonomy-service_service-feature-sub {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-feature-sub {
    font-size: 1.125rem;
  }
}
.page-taxonomy-service_service .page-taxonomy-service_service-feature-text {
  font-size: 1.25rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-feature-text {
    font-size: 1rem;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-taxonomy-service_service .page-taxonomy-service_service-area-title {
  font-size: 2.125rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-area-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.page-taxonomy-service_service .page-taxonomy-service_service-area-list {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-area-list {
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 4.5rem;
    margin-inline: 1rem;
  }
}
.page-taxonomy-service_service .page-taxonomy-service_service-area-item {
  border-radius: 1rem;
  border: 1px solid #F0CD77;
}
.page-taxonomy-service_service .page-taxonomy-service_service-area-item img {
  width: 16.75rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-area-item img {
    width: 100%;
  }
}
.page-taxonomy-service_service .page-taxonomy-service_service-area-label {
  font-size: 1.25rem;
  font-weight: bold;
  color: #F28804;
  padding-block: 2.5rem;
  text-align: center;
  background-color: #fff;
  border-radius: 0 0 1rem 1rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-area-label {
    font-size: 1.25rem;
    padding-block: 1.5rem;
  }
}
.page-taxonomy-service_service .page-taxonomy-service_service-consistent {
  display: flex;
  gap: 3.75rem;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-consistent {
    flex-direction: column-reverse;
    gap: 1rem;
    margin-inline: 1rem;
  }
}
.page-taxonomy-service_service .page-taxonomy-service_service-consistent img {
  width: 39.25rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-consistent img {
    width: 100%;
  }
}
.page-taxonomy-service_service .page-taxonomy-service_service-consistent-title {
  position: relative;
  font-size: 2.125rem;
  font-weight: bold;
  line-height: 1.2;
  padding-top: 3rem;
  margin-bottom: 2.5rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-consistent-title {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 2.25rem;
  }
}
.page-taxonomy-service_service .page-taxonomy-service_service-consistent-text {
  font-size: 1.5rem;
  line-height: 1.6;
  max-width: 30.125rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_service .page-taxonomy-service_service-consistent-text {
    font-size: 1.125rem;
    max-width: 100%;
  }
}

.page-taxonomy-service_search {
  padding-block: 5rem;
  background: url(../img/taxonomy-service-bg.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_search {
    padding-block: 3.75rem;
  }
}
.page-taxonomy-service_search .l-inner {
  padding: 0 7.25rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_search .l-inner {
    padding: 0 1rem;
  }
}
.page-taxonomy-service_search .c-section-title {
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_search .c-section-title {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }
}
.page-taxonomy-service_search .page-taxonomy-service_search-form {
  background-color: #fff;
  border: 1px solid #D2D2D2;
  padding: 2rem 4.875rem 2.25rem 5.6875rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_search .page-taxonomy-service_search-form {
    padding: 1.5rem 0.75rem;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
}
.page-taxonomy-service_search .page-taxonomy-service_search-field-title {
  font-size: 1.25rem;
  font-weight: bold;
  border-bottom: 1px solid #877A6A;
  padding-bottom: 0.625rem;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_search .page-taxonomy-service_search-field-title {
    font-size: 1rem;
  }
}
.page-taxonomy-service_search .page-taxonomy-service_search-checkbox-list {
  display: flex;
  gap: 0.5rem 1.25rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_search .page-taxonomy-service_search-checkbox-list {
    gap: 0.625rem 0.75rem;
  }
}
.page-taxonomy-service_search .page-taxonomy-service_search-checkbox-item {
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_search .page-taxonomy-service_search-checkbox-item {
    font-size: 0.875rem;
  }
}
.page-taxonomy-service_search .page-taxonomy-service_search-checkbox-item label {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.page-taxonomy-service_search .page-taxonomy-service_search-checkbox-item {
  /* カスタムチェックボックス */
}
.page-taxonomy-service_search .page-taxonomy-service_search-checkbox-item input[type=radio],
.page-taxonomy-service_search .page-taxonomy-service_search-checkbox-item input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 0.9375rem;
  height: 0.9375rem;
  border: 1px solid #ccc;
  border-radius: 0.125rem;
  background-color: #fff;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: 0.2s ease;
}
@media screen and (max-width: 767px) {
  .page-taxonomy-service_search .page-taxonomy-service_search-checkbox-item input[type=radio],
  .page-taxonomy-service_search .page-taxonomy-service_search-checkbox-item input[type=checkbox] {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.page-taxonomy-service_search .page-taxonomy-service_search-checkbox-item {
  /* チェックが入った時の表示 */
}
.page-taxonomy-service_search .page-taxonomy-service_search-checkbox-item input[type=radio]:checked,
.page-taxonomy-service_search .page-taxonomy-service_search-checkbox-item input[type=checkbox]:checked {
  border-color: #F28804;
  background-color: #F28804;
}
.page-taxonomy-service_search .page-taxonomy-service_search-checkbox-item {
  /* チェックマークを描く（白い✔） */
}
.page-taxonomy-service_search .page-taxonomy-service_search-checkbox-item input[type=radio]:checked::after,
.page-taxonomy-service_search .page-taxonomy-service_search-checkbox-item input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 40%;
  width: 0.375rem;
  height: 0.75rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.page-taxonomy-service_search .c-parts-button {
  color: #fff;
  background-color: #FFBE19;
  padding: 1rem 4.5rem 1rem 2.5rem;
}
.page-taxonomy-service_search .c-parts-button::after {
  background: url(../img/button02-arrow-white.png) no-repeat center center/cover;
}

.single-service-contents .c-parts-page-title {
  max-width: 23.5rem;
}

.page-single_about .page-single_about-title {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 767px) {
  .page-single_about .page-single_about-title {
    font-size: 1.5rem;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 1rem;
  }
}
.page-single_about .page-single_about-title::before {
  position: absolute;
  top: -2.5rem;
  left: -3.75rem;
  content: "";
  display: inline-block;
  width: 5.0625rem;
  height: 3.25rem;
  background: url(../img/icon-hatena-br.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-single_about .page-single_about-title::before {
    top: 1.125rem;
    left: -2.5rem;
    width: 3rem;
    height: 1.875rem;
  }
}
.page-single_about .page-single_about-title::after {
  position: absolute;
  top: -3.375rem;
  right: -2.5rem;
  content: "";
  display: inline-block;
  width: 5.375rem;
  height: 5.125rem;
  background: url(../img/icon-house.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-single_about .page-single_about-title::after {
    top: 0.5rem;
    right: -1.25rem;
    width: 3.25rem;
    height: 3.125rem;
  }
}
.page-single_about .page-single_about-title span {
  color: #F28804;
}
.page-single_about .page-single_about-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .page-single_about .page-single_about-text {
    font-size: 1rem;
    margin-bottom: 7.875rem;
  }
}
.page-single_about .page-single_about-content {
  background: url(../img/single-service-bg.jpg) no-repeat center center/cover;
  padding-bottom: 19rem;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .page-single_about .page-single_about-content {
    padding-bottom: 16.25rem;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}
.page-single_about .page-single_about-content img {
  width: 55.69%;
  height: auto;
  margin-top: -6.25rem;
}
@media screen and (max-width: 767px) {
  .page-single_about .page-single_about-content img {
    width: calc(100% - 2rem);
    margin-top: -6.25rem;
  }
}
.page-single_about .page-single_about-text-wrap {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  flex: 1;
  margin-left: -10rem;
  margin-bottom: -14rem;
  padding: 4.375rem 0 2.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .page-single_about .page-single_about-text-wrap {
    gap: 2.375rem;
    margin-left: unset;
    padding: 3.375rem 0.5rem 1.5rem;
    margin-inline: 1rem;
  }
}
.page-single_about .page-single_about-sub {
  position: relative;
  font-size: 1.625rem;
  font-weight: bold;
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .page-single_about .page-single_about-sub {
    font-size: 1.25rem;
    text-align: center;
  }
}
.page-single_about .page-single_about-sub::before {
  position: absolute;
  top: -1.625rem;
  left: -2rem;
  content: "";
  display: inline-block;
  width: 20rem;
  height: 5.875rem;
  background: url(../img/paint-orange.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-single_about .page-single_about-sub::before {
    top: -1.875rem;
    left: 50%;
    transform: translateX(-50%);
    width: 18.75rem;
    height: 6.25rem;
  }
}
.page-single_about .page-single_about-text-bottom {
  font-size: 1rem;
  line-height: 1.6;
}

.page-single_case {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .page-single_case {
    padding-top: 2.5rem;
  }
}
.page-single_case .c-section-title {
  position: relative;
  text-align: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .page-single_case .c-section-title {
    line-height: 1.3;
  }
}
.page-single_case .c-section-title::before {
  position: absolute;
  top: -3.125rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 18.9375rem;
  height: 9.8125rem;
  background: url(../img/case-window-en.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-single_case .c-section-title::before {
    top: 3.5625rem;
    width: 7.5rem;
    height: 3.8125rem;
  }
}
.page-single_case {
  /* ===============================
     page-single_case-list
  =============================== */
}
.page-single_case .page-single_case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-single_case .page-single_case-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}
.page-single_case .page-single_case-item {
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .page-single_case .page-single_case-item:hover {
    border-color: #FFBE19;
  }
}
@media screen and (max-width: 767px) {
  .page-single_case .page-single_case-item:nth-child(n+3) {
    display: none;
  }
}
.page-single_case .page-single_case-link {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.75rem 1.5rem;
  text-decoration: none;
  color: inherit;
}
.page-single_case .page-single_case-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 308/134;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 0.25rem;
  border-radius: 0.25rem;
}
.page-single_case .page-single_case-date {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Roboto Condensed", sans-serif;
  color: #333333;
}
.page-single_case .page-single_case-title {
  font-size: 1.125rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.page-single_service {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .page-single_service {
    padding-block: 3.75rem;
    padding-bottom: 0;
  }
}
.page-single_service .c-section-title {
  text-align: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .page-single_service .c-section-title {
    margin-bottom: 2.5rem;
  }
}
.page-single_service .page-single_service-image-wrap {
  display: flex;
  gap: 3.125rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-single_service .page-single_service-image-wrap {
    flex-direction: column;
    gap: 2rem;
  }
}
.page-single_service .page-single_service-before-wrap,
.page-single_service .page-single_service-after-wrap {
  position: relative;
}
.page-single_service .page-single_service-before-label,
.page-single_service .page-single_service-after-label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.125rem;
  background-color: #fff;
  padding: 1rem 1.375rem;
  border: 1px solid #F0CD77;
}
@media screen and (max-width: 767px) {
  .page-single_service .page-single_service-before-label,
  .page-single_service .page-single_service-after-label {
    font-size: 0.75rem;
    padding: 0.625rem 0.875rem;
  }
}
.page-single_service .single-service-arrow {
  display: block;
  width: 4.375rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .page-single_service .single-service-arrow {
    width: 2.6875rem;
    transform: rotate(90deg);
  }
}
.page-single_service .page-single_service-detail {
  width: 100%;
  max-width: 45rem;
  border: 1px solid #F28804;
  font-size: 1rem;
  line-height: 1.6;
  border-collapse: collapse;
  margin-inline: auto;
}
.page-single_service .page-single_service-detail-term {
  width: 25%;
  padding: 0.75rem 1rem;
  font-weight: 700;
  border-right: 1px solid #F28804;
  background-color: #fff;
}
.page-single_service .page-single_service-detail-desc {
  width: 75%;
  padding: 0.75rem 1rem;
  background-color: #fff;
}
.page-single_service .page-single_service-detail-row {
  display: flex;
  border-bottom: 1px solid #F28804;
}
.page-single_service .page-single_service-detail-row:last-child {
  border-bottom: none;
}

.page-single_region {
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .page-single_region {
    padding-block: 3.75rem;
  }
}
.page-single_region .page-single_region-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: #F28804;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .page-single_region .page-single_region-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
  }
}
.page-single_region .page-single_region-content-title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .page-single_region .page-single_region-content-title {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
  }
}
.page-single_region .page-single_region-content {
  display: flex;
  gap: 9.375rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .page-single_region .page-single_region-content {
    flex-direction: column-reverse;
    gap: 1.25rem;
  }
}
.page-single_region .page-single_region-content img {
  width: 30.4375rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .page-single_region .page-single_region-content img {
    width: 100%;
  }
}
.page-single_region .page-single_region-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-single_region .page-single_region-text-wrap {
    gap: 0.75rem;
  }
}
.page-single_region .page-single_region-sub {
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-single_region .page-single_region-sub {
    line-height: 1.6;
  }
}
.page-single_region .page-single_region-text {
  font-size: 1rem;
  line-height: 1.6;
}

.page-general_coverage {
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .page-general_coverage {
    padding-bottom: 3.75rem;
  }
}
.page-general_coverage .c-section-title {
  position: relative;
  text-align: center;
  margin-bottom: 4.25rem;
}
@media screen and (max-width: 767px) {
  .page-general_coverage .c-section-title {
    margin-bottom: 3rem;
  }
}
.page-general_coverage .c-section-title::before {
  position: absolute;
  top: -3.1875rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 35.625rem;
  height: 9.8125rem;
  background: url(../img/coverage-en.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-general_coverage .c-section-title::before {
    top: -0.625rem;
    width: 14.1875rem;
    height: 3.8125rem;
  }
}
.page-general_coverage .page-general_coverage-list {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .page-general_coverage .page-general_coverage-list {
    flex-direction: column;
    align-items: center;
  }
}
.page-general_coverage .page-general_coverage-item {
  font-size: 1.875rem;
  font-weight: bold;
  color: #fff;
  width: 19.5rem;
  height: 11.125rem;
  background: url(../img/coverage01.png) no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-general_coverage .page-general_coverage-item.coverage-item02 {
  background: url(../img/coverage02.png) no-repeat center center/cover;
}
.page-general_coverage .page-general_coverage-item.coverage-item03 {
  background: url(../img/coverage03.png) no-repeat center center/cover;
}

.page-general_license {
  background-color: #F8F8F6;
  padding-block: 5rem;
}
@media (max-width: 767px) {
  .page-general_license {
    padding-block: 3.75rem;
  }
}
.page-general_license .l-inner {
  max-width: 73.75rem;
}
@media (max-width: 767px) {
  .page-general_license .l-inner {
    max-width: 100%;
  }
}
.page-general_license .c-section-title {
  font-size: 2rem;
  color: #333333;
  text-align: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #877A6A;
  margin-bottom: 3.75rem;
}
@media (max-width: 767px) {
  .page-general_license .c-section-title {
    font-size: 1.5rem;
    padding-bottom: 0.875rem;
    margin-bottom: 2.5rem;
  }
}
.page-general_license .page-general_license-list {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media (max-width: 767px) {
  .page-general_license .page-general_license-list {
    gap: 2.5rem;
  }
}

.page-general_license-item {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .page-general_license-item {
    flex-direction: column;
    gap: 0.625rem;
    align-items: stretch;
  }
}
.page-general_license-item img {
  width: 21.125rem;
  height: auto;
}
@media (max-width: 767px) {
  .page-general_license-item img {
    width: 75.8%;
  }
}

.page-general_license-text-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 767px) {
  .page-general_license-text-wrap {
    gap: 0.625rem;
  }
}

.page-general_license-post {
  font-size: 1.125rem;
  font-weight: 700;
  color: #F28804;
}
@media (max-width: 767px) {
  .page-general_license-post {
    font-size: 0.875rem;
  }
}

.page-general_license-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .page-general_license-name {
    font-size: 1.25rem;
    margin-bottom: 0;
  }
}

.page-general_license-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0.25rem;
}
@media (max-width: 767px) {
  .page-general_license-text {
    font-size: 0.875rem;
  }
}

.page-general_license-cert-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  row-gap: 0.25rem;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  width: 100%;
  background-color: #fff;
  max-height: 19.125rem;
  min-height: 8.75rem;
  border: 1px solid #F28804;
  padding: 1.25rem;
  position: relative;
}
@media (max-width: 767px) {
  .page-general_license-cert-list {
    flex-wrap: nowrap;
    max-height: 7.25rem;
    min-height: 6rem;
    overflow: hidden;
    padding: 1rem 1rem 2.5rem;
  }
  .page-general_license-cert-list::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 70%);
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .page-general_license-cert-list.is-open {
    max-height: unset;
    overflow: visible;
  }
  .page-general_license-cert-list.is-open::after {
    opacity: 0;
  }
}

.page-general_license-cert-item {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  padding-left: 0.5rem;
  max-width: 20rem;
}
@media (max-width: 767px) {
  .page-general_license-cert-item {
    max-width: 100%;
  }
}
.page-general_license-cert-item::before {
  content: "";
  position: absolute;
  top: 0.4375rem;
  left: 0;
  width: 0.1875rem;
  height: 0.1875rem;
  border-radius: 50%;
  background-color: #333333;
}

.page-general_license-more {
  display: none;
}
@media (max-width: 767px) {
  .page-general_license-more {
    display: flex;
    align-items: center;
    margin-inline: auto;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1;
    background: inherit;
    padding: 0.5em 1em;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    position: relative;
    margin-top: -2rem;
    z-index: 1;
    align-self: center;
  }
  .page-general_license-more::after {
    content: "";
    inline-size: 0.75rem;
    block-size: 0.5rem;
    background: url("../img/triangle-orange.svg") no-repeat center/contain;
    transition: transform 0.2s ease;
  }
  .page-general_license-more[aria-expanded=true]::after {
    transform: rotate(180deg);
  }
}

@media (min-width: 768px) {
  .page-general_license-more {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .page-general_license-cert.none-more .page-general_license-cert-list::after {
    display: none;
  }
}
.page-general_management {
  padding-top: 6.5625rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .page-general_management {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
.page-general_management .l-inner {
  padding-inline: unset;
  max-width: unset;
}
@media screen and (max-width: 767px) {
  .page-general_management .l-inner {
    padding-inline: 1rem;
  }
}
.page-general_management .c-section-title {
  position: relative;
  text-align: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .page-general_management .c-section-title {
    margin-bottom: 3.25rem;
  }
}
.page-general_management .c-section-title::before {
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 49.125rem;
  height: 9.8125rem;
  background: url(../img/management-en.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-general_management .c-section-title::before {
    top: 0.375rem;
    width: 19.625rem;
    height: 3.8125rem;
  }
}
.page-general_management .page-general_management-content {
  display: flex;
  flex-direction: column;
  gap: 4.25rem;
}
@media screen and (max-width: 767px) {
  .page-general_management .page-general_management-content {
    gap: 2.5rem;
  }
}
.page-general_management .page-general_management-item {
  display: flex;
  gap: 3.75rem;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .page-general_management .page-general_management-item {
    flex-direction: column-reverse;
    gap: 0.625rem;
    align-items: flex-start;
  }
}
.page-general_management .page-general_management-item img {
  display: block;
  width: 43.75rem;
  height: auto;
  box-shadow: 1.25rem 1.25rem 0 0 #F0CD77;
}
@media screen and (max-width: 767px) {
  .page-general_management .page-general_management-item img {
    width: calc(100% - 0.5rem);
    box-shadow: 0.5rem 0.5rem 0 0 #F0CD77;
  }
}
.page-general_management .page-general_management-item.page-general_management-item-re {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .page-general_management .page-general_management-item.page-general_management-item-re {
    flex-direction: column-reverse;
  }
}
.page-general_management .page-general_management-item.page-general_management-item-re img {
  box-shadow: -1.25rem 1.25rem 0 0 #F0CD77;
}
@media screen and (max-width: 767px) {
  .page-general_management .page-general_management-item.page-general_management-item-re img {
    box-shadow: 0.5rem 0.5rem 0 0 #F0CD77;
  }
}
.page-general_management .page-general_management-text-wrap {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-general_management .page-general_management-text-wrap {
    margin-bottom: unset;
  }
}
.page-general_management .page-general_management-sub {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-general_management .page-general_management-sub {
    margin-bottom: 0.875rem;
  }
}
.page-general_management .page-general_management-sub::before {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 1.3125rem;
  background: url(../img/orange-line.png) no-repeat center center/cover;
  z-index: -1;
}
.page-general_management .page-general_management-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 30.9375rem;
}
@media screen and (max-width: 767px) {
  .page-general_management .page-general_management-text {
    max-width: 100%;
  }
}

.page-general_works {
  position: relative;
  background: url(../img/general-works-bg.png) no-repeat top center/cover;
  padding-top: 14.1875rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .page-general_works {
    background: url(../img/sp-general-works-bg.png) no-repeat top center/cover;
    padding-top: 11.25rem;
  }
}
@media screen and (max-width: 500px) {
  .page-general_works {
    padding-top: 6.5625rem;
    padding-bottom: 2.5rem;
  }
}
.page-general_works::after {
  position: absolute;
  top: 11.25rem;
  right: 0;
  content: "";
  display: inline-block;
  width: 51.9375rem;
  height: 9.375rem;
  background: url(../img/archivement-en.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .page-general_works::after {
    top: 6.875rem;
    width: 16.8125rem;
    height: 3.6875rem;
    background: url(../img/sp-archivement-en.png) no-repeat center center/cover;
  }
}
.page-general_works .c-section-title {
  position: relative;
  text-align: center;
  z-index: 2;
  margin-bottom: 2rem;
}
.page-general_works .page-general_works-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 69.125rem;
  margin-inline: auto;
  margin-bottom: 4rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .page-general_works .page-general_works-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    width: 100%;
    max-width: 31.25rem;
    margin-bottom: 2.5rem;
  }
}
.page-general_works .page-general_works-item {
  background-color: #fff;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .page-general_works .page-general_works-item:hover .page-general_works-title {
    color: #F28804;
  }
  .page-general_works .page-general_works-item:hover img {
    transform: scale(1.1);
  }
}
.page-general_works .page-general_works-link {
  overflow: hidden;
}
.page-general_works .page-general_works-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 302/185;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .page-general_works .page-general_works-thumb {
    aspect-ratio: 302/185;
  }
}
.page-general_works .page-general_works-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.35s ease;
  transform-origin: center;
}
.page-general_works .page-general_works-title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.35;
  transition: color 0.3s ease;
}
.page-general_works .page-general_works-partner {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-general_works .page-general_works-partner {
    font-size: 1rem;
  }
}

.page-company_message {
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .page-company_message {
    padding-bottom: 3.5625rem;
  }
}
.page-company_message .c-section-title {
  position: relative;
  text-align: center;
  margin-bottom: 4.8125rem;
}
@media screen and (max-width: 767px) {
  .page-company_message .c-section-title {
    margin-bottom: 1.5rem;
  }
}
.page-company_message .c-section-title::before {
  position: absolute;
  top: -2.4375rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 33.9375rem;
  height: 9.625rem;
  background: url(../img/message-en.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-company_message .c-section-title::before {
    top: 0;
    width: 13.5625rem;
    height: 3.8125rem;
  }
}
.page-company_message .page-company_message-content {
  display: flex;
  gap: 3.75rem;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .page-company_message .page-company_message-content {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
  }
}
.page-company_message .page-company_message-content img {
  width: 25rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .page-company_message .page-company_message-content img {
    width: 100%;
  }
}
.page-company_message .page-company_message-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-company_message .page-company_message-text-wrap {
    gap: 0.75rem;
  }
}
.page-company_message .page-company_message-sub {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.6;
  color: #F28804;
}
@media screen and (max-width: 767px) {
  .page-company_message .page-company_message-sub {
    font-size: 1.125rem;
  }
}
.page-company_message .page-company_message-text {
  font-size: 1rem;
  line-height: 1.35;
}

.page-company_overview {
  padding-top: 3.1875rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .page-company_overview {
    padding-top: unset;
    padding-bottom: 6.625rem;
  }
}
.page-company_overview .c-section-title {
  position: relative;
  text-align: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .page-company_overview .c-section-title {
    margin-bottom: 2.5rem;
  }
}
.page-company_overview .c-section-title::before {
  position: absolute;
  top: -3.1875rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 35.25rem;
  height: 9.8125rem;
  background: url(../img/company-en.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-company_overview .c-section-title::before {
    top: -0.1875rem;
    width: 14rem;
    height: 3.8125rem;
  }
}
.page-company_overview .page-company_overview-detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 56.25rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-company_overview .page-company_overview-detail {
    gap: 0.625rem;
    max-width: 100%;
    margin-bottom: 1.25rem;
  }
}
.page-company_overview .page-company_overview-detail-row {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  padding: 0 1.5rem 1rem 1.5rem;
  border-bottom: 1px solid #877A6A;
}
@media screen and (max-width: 767px) {
  .page-company_overview .page-company_overview-detail-row {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 0 0.3125rem 0.625rem 1rem;
  }
}
.page-company_overview .page-company_overview-detail-term {
  font-size: 1.25rem;
  font-weight: bold;
  width: 11.25rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .page-company_overview .page-company_overview-detail-term {
    font-size: 1rem;
    width: 100%;
  }
}
.page-company_overview .page-company_overview-detail-desc {
  font-size: 1.25rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .page-company_overview .page-company_overview-detail-desc {
    font-size: 1rem;
  }
}
.page-company_overview .page-company_overview-location-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.page-company_overview .page-company_overview-location-item {
  position: relative;
  padding-left: 1.125rem;
}
@media screen and (max-width: 767px) {
  .page-company_overview .page-company_overview-location-item {
    padding-left: 1rem;
  }
}
.page-company_overview .page-company_overview-location-item::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0.375rem;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .page-company_overview .page-company_overview-location-item::before {
    top: 0.1875rem;
    font-size: 0.75rem;
  }
}
.page-company_overview .page-company_overview-map {
  max-width: 56.25rem;
  margin-inline: auto;
}
.page-company_overview .page-company_overview-map .page-company_overview-map {
  width: 100%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .page-company_overview .page-company_overview-map .page-company_overview-map {
    margin-bottom: 1.25rem;
  }
}
.page-company_overview .page-company_overview-map .page-company_overview-map-title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #F28804;
}
@media screen and (max-width: 767px) {
  .page-company_overview .page-company_overview-map .page-company_overview-map-title {
    font-size: 1rem;
    margin-bottom: 0.375rem;
  }
}
.page-company_overview .page-company_overview-map .page-company_overview-map-iframe iframe {
  border-radius: 0.75rem;
  width: 100%;
  height: auto;
  aspect-ratio: 900/319;
}
@media screen and (max-width: 767px) {
  .page-company_overview .page-company_overview-map .page-company_overview-map-iframe iframe {
    border-radius: 0.5rem;
    aspect-ratio: 343/160;
  }
}
.page-company_overview .page-company_overview-map {
  /* ▼ 盛岡店・奥州店：PC横並び */
}
.page-company_overview .page-company_overview-map .page-company_overview-map-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .page-company_overview .page-company_overview-map .page-company_overview-map-row {
    grid-template-columns: 1fr;
    gap: unset;
  }
}
.page-company_overview .page-company_overview-map .page-company_overview-map-row .page-company_overview-map-iframe iframe {
  border-radius: 0.625rem;
  aspect-ratio: 440/319;
}
@media screen and (max-width: 767px) {
  .page-company_overview .page-company_overview-map .page-company_overview-map-row .page-company_overview-map-iframe iframe {
    border-radius: 0.5rem;
    aspect-ratio: 343/160;
  }
}

.p-offer {
  padding-top: 11.75rem;
  padding-bottom: 5rem;
  background: url(../img/offer-bg.png) no-repeat top center/cover;
}
@media screen and (max-width: 767px) {
  .p-offer {
    padding-top: 7.5rem;
    padding-bottom: 2.5rem;
    background: url(../img/sp-offer-bg.png) no-repeat top center/cover;
  }
}
.p-offer .c-section-title {
  text-align: center;
  margin-bottom: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-offer .c-section-title {
    margin-bottom: 2.5rem;
  }
}
.p-offer img {
  display: block;
  width: 56.25rem;
  height: auto;
  border-radius: 1rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-offer img {
    width: 100%;
    border-radius: 0.375rem;
    margin-bottom: 1.5625rem;
  }
}
.p-offer .p-offer_text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-offer .p-offer_text {
    font-size: 1.25rem;
  }
}
.p-offer .p-offer_text span {
  color: #F28804;
  font-weight: bold;
}

.p-staff {
  background-color: #F8F8F6;
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .p-staff {
    padding-block: 3.75rem;
  }
}
.p-staff .c-section-title {
  position: relative;
  text-align: center;
  margin-bottom: 3.75rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-staff .c-section-title {
    margin-bottom: 2.5rem;
  }
}
.p-staff .c-section-title::before {
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 32.0625rem;
  height: 13.625rem;
  background: url(../img/staff-en.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-staff .c-section-title::before {
    top: 0.6875rem;
    width: 7.5rem;
    height: 3.8125rem;
  }
}
.p-staff .p-staff-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.25rem;
  margin-bottom: 4.5rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-staff .p-staff-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.25rem;
    margin-bottom: 3.25rem;
    inline-size: -moz-fit-content;
    inline-size: fit-content;
    margin-inline: auto;
  }
}
.p-staff .p-staff-item {
  max-width: 22.1875rem;
  height: -moz-fit-content;
  height: fit-content;
  box-shadow: 0.75rem 0.75rem 0 0 #BADC82;
}
.p-staff .p-staff-item:nth-child(2) {
  box-shadow: 0.75rem 0.75rem 0 0 #DCD582;
}
.p-staff .p-staff-item:nth-child(3) {
  box-shadow: 0.75rem 0.75rem 0 0 #A0DC82;
}
.p-staff .p-staff-item:nth-child(4) {
  box-shadow: 0.75rem 0.75rem 0 0 #DCAB82;
}
.p-staff .p-staff-item:nth-child(1) .p-staff-post {
  background-color: #BADC82;
}
.p-staff .p-staff-item:nth-child(2) .p-staff-post {
  background-color: #DCD582;
}
.p-staff .p-staff-item:nth-child(3) .p-staff-post {
  background-color: #A0DC82;
}
.p-staff .p-staff-item:nth-child(4) .p-staff-post {
  background-color: #DCAB82;
}
.p-staff .p-staff-item:nth-child(4n+1) {
  box-shadow: 0.75rem 0.75rem 0 0 #BADC82;
}
.p-staff .p-staff-item:nth-child(4n+1) .p-staff-post {
  background-color: #BADC82;
}
.p-staff .p-staff-item:nth-child(4n+2) {
  box-shadow: 0.75rem 0.75rem 0 0 #DCD582;
}
.p-staff .p-staff-item:nth-child(4n+2) .p-staff-post {
  background-color: #DCD582;
}
.p-staff .p-staff-item:nth-child(4n+3) {
  box-shadow: 0.75rem 0.75rem 0 0 #A0DC82;
}
.p-staff .p-staff-item:nth-child(4n+3) .p-staff-post {
  background-color: #A0DC82;
}
.p-staff .p-staff-item:nth-child(4n+4) {
  box-shadow: 0.75rem 0.75rem 0 0 #DCAB82;
}
.p-staff .p-staff-item:nth-child(4n+4) .p-staff-post {
  background-color: #DCAB82;
}
.p-staff .p-staff-image {
  position: relative;
}
.p-staff .p-staff-image img {
  width: 22.1875rem;
  height: 19.875rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-staff .p-staff-post {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}
.p-staff .p-staff-content {
  background-color: #fff;
  padding: 1.125rem 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.p-staff .p-staff-name {
  font-size: 1.375rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.p-staff .p-staff-message {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}
.p-staff .p-staff-partner {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: -0.5rem;
}
.p-staff .c-parts-button02 {
  margin-inline: auto;
  color: #333333;
  background-image: linear-gradient(90deg, #F28804, #F28804);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 2px;
  transition: background-size 0.3s;
}
.p-staff .c-parts-button02::after {
  width: 1.375rem;
  height: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-staff .c-parts-button02:hover {
    background-size: 100% 2px;
  }
}
.p-staff .c-parts-button {
  padding: 1rem 4.125rem 1rem 2.375rem;
}
.p-staff .p-staff-button {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-staff .p-staff-button {
    flex-direction: column;
    gap: 1rem;
    inline-size: -moz-fit-content;
    inline-size: fit-content;
    margin-inline: auto;
  }
}
.p-staff .p-staff-button .c-parts-button {
  margin-inline: unset;
  padding: 1rem 3.25rem 1rem 1.5rem;
}

.page-staff_message {
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .page-staff_message {
    padding-bottom: 3.75rem;
  }
}
.page-staff_message .c-section-title {
  position: relative;
  text-align: center;
  margin-bottom: 4.8125rem;
}
@media screen and (max-width: 767px) {
  .page-staff_message .c-section-title {
    margin-bottom: 1.5rem;
  }
}
.page-staff_message .c-section-title::before {
  position: absolute;
  top: -2.4375rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 33.9375rem;
  height: 9.625rem;
  background: url(../img/message-en.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-staff_message .c-section-title::before {
    top: 0;
    width: 13.5625rem;
    height: 3.8125rem;
  }
}
.page-staff_message .page-staff_message-content {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .page-staff_message .page-staff_message-content {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.page-staff_message .page-staff_message-content img {
  width: 30.4375rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .page-staff_message .page-staff_message-content img {
    width: 100%;
  }
}
.page-staff_message .page-staff_message-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-staff_message .page-staff_message-text-wrap {
    gap: 0.75rem;
  }
}
.page-staff_message .page-staff_message-sub {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.6;
  color: #F28804;
}
@media screen and (max-width: 767px) {
  .page-staff_message .page-staff_message-sub {
    font-size: 1.125rem;
  }
}
.page-staff_message .page-staff_message-text {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 32.5625rem;
}
@media screen and (max-width: 767px) {
  .page-staff_message .page-staff_message-text {
    max-width: 100%;
  }
}

.page-showroom_about {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .page-showroom_about {
    padding-top: unset;
  }
}
.page-showroom_about .page-showroom_about-content {
  background: url(../img/single-service-bg.jpg) no-repeat center center/cover;
  padding-bottom: 19rem;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .page-showroom_about .page-showroom_about-content {
    flex-direction: column;
    padding-bottom: 3.75rem;
    padding-inline: 1rem;
  }
}
.page-showroom_about .page-showroom_about-content img {
  width: 55.69%;
  height: auto;
  margin-top: -6.25rem;
}
@media screen and (max-width: 767px) {
  .page-showroom_about .page-showroom_about-content img {
    width: 100%;
    margin-top: -2rem;
  }
}
.page-showroom_about .page-showroom_about-text-wrap {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  flex: 1;
  margin-left: -10rem;
  margin-bottom: -13.9375rem;
  padding: 7.5rem 0 7.5rem 3.75rem;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .page-showroom_about .page-showroom_about-text-wrap {
    margin-left: unset;
    margin-bottom: unset;
    padding: 1.75rem 1.125rem;
  }
}
.page-showroom_about .page-showroom_about-text {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.6;
  color: #F28804;
}
@media screen and (max-width: 767px) {
  .page-showroom_about .page-showroom_about-text {
    font-size: 1.125rem;
  }
}

.page-showroom_info {
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .page-showroom_info {
    padding-block: 5rem;
  }
}
.page-showroom_info .l-inner {
  max-width: 67.5rem;
}
@media screen and (max-width: 767px) {
  .page-showroom_info .l-inner {
    max-width: 100%;
  }
}
.page-showroom_info .page-showroom_info-list {
  display: flex;
  flex-direction: column;
  gap: 7.5rem;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .page-showroom_info .page-showroom_info-list {
    gap: 3.75rem;
    margin-bottom: 3.75rem;
  }
}
.page-showroom_info .page-showroom_info-title {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 2px solid #877A6A;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-showroom_info .page-showroom_info-title {
    font-size: 1.25rem;
    padding-bottom: 0.875rem;
    margin-bottom: 1.5rem;
  }
}
.page-showroom_info .page-showroom_info-images {
  display: grid;
  grid-template-columns: 1.835fr 1fr;
  gap: 0.5rem;
  max-width: 56.25rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-showroom_info .page-showroom_info-images {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
  }
}
.page-showroom_info .page-showroom_info-image {
  overflow: hidden;
}
.page-showroom_info .page-showroom_info-image img {
  display: block;
  width: 100%;
  height: auto;
}
.page-showroom_info .page-showroom_info-bottom {
  display: grid;
  grid-template-columns: 1.835fr 1fr;
  gap: 1.5rem;
  max-width: 56.25rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-showroom_info .page-showroom_info-bottom {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
}
.page-showroom_info .page-showroom_info-bottom .page-showroom_info-detail {
  max-width: 100%;
  margin-inline: 0;
  margin-bottom: 0;
  height: 100%;
}
.page-showroom_info .page-showroom_info-bottom .page-showroom_info-map {
  height: 100%;
  display: flex;
  align-items: stretch;
}
.page-showroom_info .page-showroom_info-bottom .page-showroom_info-map iframe {
  height: 100%;
}
.page-showroom_info .page-showroom_info-detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 56.25rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-showroom_info .page-showroom_info-detail {
    max-width: 100%;
    margin-bottom: 0.5rem;
  }
}
.page-showroom_info .page-showroom_info-detail-row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 0 1.5rem 1rem 1.5rem;
  border-bottom: 1px solid #877A6A;
}
@media screen and (max-width: 767px) {
  .page-showroom_info .page-showroom_info-detail-row {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 0 0.375rem 0.625rem 0.5rem;
  }
}
.page-showroom_info .page-showroom_info-detail-term {
  font-size: 1rem;
  font-weight: bold;
  width: 8rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .page-showroom_info .page-showroom_info-detail-term {
    width: 100%;
  }
}
.page-showroom_info .page-showroom_info-detail-desc {
  font-size: 1rem;
  line-height: 1.6;
}
.page-showroom_info .page-showroom_info-detail-desc.oshihakyuto {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-showroom_info .page-showroom_info-detail-desc.oshihakyuto span {
  position: relative;
  display: block;
  font-size: 0.75rem;
  line-height: 1;
  color: #F28804;
}
@media screen and (max-width: 767px) {
  .page-showroom_info .page-showroom_info-detail-desc.oshihakyuto span {
    font-size: 0.625rem;
  }
}
.page-showroom_info .page-showroom_info-detail-desc.oshihakyuto span::before {
  position: absolute;
  top: 0;
  left: -0.75rem;
  content: "";
  display: inline-block;
  width: 0.5625rem;
  height: 0.8125rem;
  background: url(../img/double-line-left.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .page-showroom_info .page-showroom_info-detail-desc.oshihakyuto span::before {
    left: -0.5rem;
    width: 0.375rem;
    height: 0.5625rem;
  }
}
.page-showroom_info .page-showroom_info-detail-desc.oshihakyuto span::after {
  position: absolute;
  top: 0;
  right: -0.75rem;
  content: "";
  display: inline-block;
  width: 0.5625rem;
  height: 0.8125rem;
  background: url(../img/double-line-right.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .page-showroom_info .page-showroom_info-detail-desc.oshihakyuto span::after {
    right: -0.5rem;
    width: 0.375rem;
    height: 0.5625rem;
  }
}
.page-showroom_info .page-showroom_info-map {
  text-align: center;
}
.page-showroom_info .page-showroom_info-map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 353/212;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .page-showroom_info .page-showroom_info-map iframe {
    aspect-ratio: 343/121;
    border-radius: 0.25rem;
  }
}
.page-showroom_info .page-showroom_info-text-wrap {
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
}
.page-showroom_info .page-showroom_info-sub {
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .page-showroom_info .page-showroom_info-sub {
    font-size: 1.5rem;
  }
}
.page-showroom_info .page-showroom_info-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .page-showroom_info .page-showroom_info-text {
    font-size: 1rem;
  }
}

.page-showroom_display {
  padding-top: 2.6875rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .page-showroom_display {
    padding-top: unset;
    padding-bottom: 4.25rem;
  }
}
.page-showroom_display .l-inner {
  padding-inline: unset;
  max-width: unset;
}
@media screen and (max-width: 767px) {
  .page-showroom_display .l-inner {
    padding-inline: 1rem;
  }
}
.page-showroom_display .c-section-title {
  position: relative;
  text-align: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .page-showroom_display .c-section-title {
    margin-bottom: 2.5rem;
  }
}
.page-showroom_display .c-section-title::before {
  position: absolute;
  top: -2.6875rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 27.9375rem;
  height: 9.8125rem;
  background: url(../img/display-en.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-showroom_display .c-section-title::before {
    top: 0.25rem;
    width: 11.125rem;
    height: 3.8125rem;
  }
}
.page-showroom_display .page-showroom_display-content {
  display: flex;
  flex-direction: column;
  gap: 4.25rem;
}
@media screen and (max-width: 767px) {
  .page-showroom_display .page-showroom_display-content {
    gap: 2.5rem;
  }
}
.page-showroom_display .page-showroom_display-item {
  display: flex;
  gap: 3.75rem;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .page-showroom_display .page-showroom_display-item {
    flex-direction: column-reverse;
    gap: 0.625rem;
  }
}
.page-showroom_display .page-showroom_display-item img {
  display: block;
  width: 43.75rem;
  height: auto;
  box-shadow: 1.25rem 1.25rem 0 0 #F0CD77;
}
@media screen and (max-width: 767px) {
  .page-showroom_display .page-showroom_display-item img {
    width: 100%;
    box-shadow: 0.5rem 0.5rem 0 0 #F0CD77;
  }
}
.page-showroom_display .page-showroom_display-item.page-showroom_display-item-re {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .page-showroom_display .page-showroom_display-item.page-showroom_display-item-re {
    flex-direction: column-reverse;
  }
}
.page-showroom_display .page-showroom_display-item.page-showroom_display-item-re img {
  box-shadow: -1.25rem 1.25rem 0 0 #F0CD77;
}
@media screen and (max-width: 767px) {
  .page-showroom_display .page-showroom_display-item.page-showroom_display-item-re img {
    box-shadow: 0.5rem 0.5rem 0 0 #F0CD77;
  }
}
.page-showroom_display .page-showroom_display-text-wrap {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-showroom_display .page-showroom_display-text-wrap {
    margin-bottom: unset;
  }
}
.page-showroom_display .page-showroom_display-sub {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-showroom_display .page-showroom_display-sub {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.page-showroom_display .page-showroom_display-sub::before {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 1.3125rem;
  background: url(../img/orange-line.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-showroom_display .page-showroom_display-sub::before {
    bottom: -0.4375rem;
    height: 1.0625rem;
  }
}
.page-showroom_display .page-showroom_display-text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 30.9375rem;
}
@media screen and (max-width: 767px) {
  .page-showroom_display .page-showroom_display-text {
    font-size: 1rem;
    max-width: 100%;
  }
}

.page-recruit_interview .c-section-title {
  text-align: center;
}
.page-recruit_interview .page-recruit_interview-list {
  display: flex;
  flex-direction: column;
}
.page-recruit_interview .page-recruit_interview-item .l-inner {
  padding-top: 3.75rem;
  padding-bottom: 1.75rem;
  display: flex;
  gap: 4.25rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .page-recruit_interview .page-recruit_interview-item .l-inner {
    padding-top: 2.5rem;
    flex-direction: column-reverse;
    gap: 1.25rem;
  }
}
.page-recruit_interview .page-recruit_interview-item .l-inner img {
  width: 35.75rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .page-recruit_interview .page-recruit_interview-item .l-inner img {
    width: 100%;
  }
}
.page-recruit_interview .page-recruit_interview-item-re {
  background-color: #F8F6E7;
}
.page-recruit_interview .page-recruit_interview-item-re .l-inner {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .page-recruit_interview .page-recruit_interview-item-re .l-inner {
    flex-direction: column-reverse;
  }
}
.page-recruit_interview .page-recruit_interview-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #F28804;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #877A6A;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .page-recruit_interview .page-recruit_interview-name {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.page-recruit_interview .page-recruit_interview-question {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2.125rem;
}
@media screen and (max-width: 767px) {
  .page-recruit_interview .page-recruit_interview-question {
    font-size: 1.75rem;
  }
}
.page-recruit_interview .page-recruit_interview-question::before {
  position: absolute;
  bottom: -0.875rem;
  left: 0;
  content: "";
  display: inline-block;
  width: 2.625rem;
  height: 0.125rem;
  background-color: #FFD22E;
}
@media screen and (max-width: 767px) {
  .page-recruit_interview .page-recruit_interview-question::before {
    bottom: -0.75rem;
  }
}
.page-recruit_interview .page-recruit_interview-answer {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.page-recruit_flow {
  padding-top: 5rem;
  padding-bottom: 3.75rem;
  background-color: #F8F6E7;
}
.page-recruit_flow .page-recruit_flow-list {
  display: flex;
  gap: 0.125rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .page-recruit_flow .page-recruit_flow-list {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }
}
.page-recruit_flow .page-recruit_flow-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .page-recruit_flow .page-recruit_flow-item {
    gap: 0.75rem;
  }
}
.page-recruit_flow .page-recruit_flow-item img {
  width: 9.75rem;
  height: auto;
}
.page-recruit_flow .page-recruit_flow-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #F28804;
}
.page-recruit_flow .page-recruit_flow-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 16.625rem;
  text-align: center;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .page-recruit_flow .page-recruit_flow-text {
    margin-top: unset;
  }
}
.page-recruit_flow .page-recruit_flow-arrow {
  width: 5.0625rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .page-recruit_flow .page-recruit_flow-arrow {
    width: 0.9375rem;
  }
}
.page-recruit_flow .c-section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-recruit_flow .c-section-title {
    margin-bottom: 1.5rem;
  }
}
.page-recruit_flow .page-recruit_flow-person-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .page-recruit_flow .page-recruit_flow-person-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.75rem;
    inline-size: unset;
  }
}
.page-recruit_flow .page-recruit_flow-person-item {
  position: relative;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.2;
  width: 25.75rem;
  height: 4.75rem;
  background-color: #fff;
  border: 2px solid #F8B665;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-recruit_flow .page-recruit_flow-person-item {
    font-size: 1.125rem;
    width: 100%;
    height: 4.0625rem;
    padding-left: 2rem;
  }
}
.page-recruit_flow .page-recruit_flow-person-item::before {
  position: absolute;
  top: 50%;
  left: 1.25rem;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 0.9375rem;
  height: 0.9375rem;
  border-radius: 50%;
  background-color: #F28804;
}
@media screen and (max-width: 767px) {
  .page-recruit_flow .page-recruit_flow-person-item::before {
    left: 0.625rem;
    width: 0.625rem;
    height: 0.625rem;
  }
}

.page-recruit_job {
  background-color: #FFC841;
  padding-block: 3.3125rem;
}
@media screen and (max-width: 767px) {
  .page-recruit_job {
    padding-block: 2.5rem;
    padding-inline: 0.625rem;
  }
}
.page-recruit_job .l-inner {
  background-color: #fff;
  padding-block: 5rem;
  border-radius: 2.5rem;
  max-width: 78.375rem;
}
@media screen and (max-width: 767px) {
  .page-recruit_job .l-inner {
    padding-block: 2.5rem;
    border-radius: 1.25rem;
    max-width: 100%;
  }
}
.page-recruit_job .c-section-title {
  text-align: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .page-recruit_job .c-section-title {
    margin-bottom: 2.5rem;
  }
}
.page-recruit_job .page-recruit_job-inner {
  display: grid;
  grid-template-columns: 21.4375rem 1fr;
  gap: 6.0625rem;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .page-recruit_job .page-recruit_job-inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 1.25rem;
  }
}
.page-recruit_job {
  /* 左：職種リスト */
}
.page-recruit_job .page-recruit_job-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .page-recruit_job .page-recruit_job-nav {
    gap: 0.875rem 0.625rem;
  }
}
.page-recruit_job .page-recruit_job-nav-btn {
  display: grid;
  place-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: center;
  color: #DDD8D2;
  outline-offset: 4px;
  transition: color 0.3s ease;
}
.page-recruit_job .page-recruit_job-nav-btn:focus-visible {
  outline: 2px solid #f28b04;
}
.page-recruit_job .page-recruit_job-nav-btn.is-active {
  color: #fff;
}
.page-recruit_job .page-recruit_job-nav-btn.is-active .page-recruit_job-thumb {
  box-shadow: 0 0 0 3px #f28b04;
}
.page-recruit_job .page-recruit_job-thumb {
  width: 9.75rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(242, 136, 4, 0);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.page-recruit_job .page-recruit_job-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-recruit_job .page-recruit_job-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.35;
  padding: 0 0.5rem;
  pointer-events: none;
}
.page-recruit_job .page-recruit_job-nav-btn {
  position: relative;
}
.page-recruit_job .page-recruit_job-nav-btn .page-recruit_job-label {
  z-index: 1;
}
.page-recruit_job .page-recruit_job-nav-btn .page-recruit_job-thumb {
  z-index: 0;
}
.page-recruit_job .page-recruit_job-panel {
  max-width: 24rem;
}
.page-recruit_job .page-recruit_job-panel[hidden] {
  display: none;
}
.page-recruit_job .page-recruit_job-title {
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .page-recruit_job .page-recruit_job-title {
    font-size: 1.25rem;
    margin-bottom: 1.125rem;
  }
}
.page-recruit_job .page-recruit_job-text {
  font-size: 1rem;
  line-height: 1.6;
}

.page-recruit_benefits {
  padding-top: 7.5rem;
  padding-bottom: 4.0625rem;
}
.page-recruit_benefits .l-inner {
  display: flex;
  gap: 3.75rem;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .page-recruit_benefits .l-inner {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.page-recruit_benefits .page-recruit_benefits-content img {
  width: 40.25rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .page-recruit_benefits .page-recruit_benefits-content img {
    width: 100%;
  }
}
.page-recruit_benefits .c-section-title {
  margin-bottom: 1.5rem;
}
.page-recruit_benefits .page-recruit_benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 32.0625rem;
}
@media screen and (max-width: 767px) {
  .page-recruit_benefits .page-recruit_benefits-list {
    max-width: 100%;
  }
}
.page-recruit_benefits .page-recruit_benefits-item {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.page-recruit_benefits .page-recruit_benefits-title {
  font-size: 1.125rem;
  font-weight: bold;
}
.page-recruit_benefits .page-recruit_benefits-text {
  font-size: 1rem;
  line-height: 1.6;
}

.page-archive-works_intro {
  position: relative;
  padding-bottom: 5.25rem;
}
@media screen and (max-width: 767px) {
  .page-archive-works_intro {
    padding-bottom: 2.0625rem;
  }
}
.page-archive-works_intro::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 8.625rem;
  background: url(../img/line-house.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-archive-works_intro::before {
    height: 3.125rem;
  }
}
.page-archive-works_intro .page-archive-works_intro-title {
  font-size: 2.125rem;
  font-weight: bold;
  line-height: 1.6;
  color: #F28804;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-archive-works_intro .page-archive-works_intro-title {
    font-size: 1.5rem;
    margin-bottom: 0.125rem;
  }
}
.page-archive-works_intro .page-archive-works_intro-text {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-archive-works_intro .page-archive-works_intro-text {
    font-size: 1.125rem;
  }
}

.page-archive-works {
  padding-top: 9.0625rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .page-archive-works {
    padding-top: 3.75rem;
    padding-bottom: 4.25rem;
  }
}
.page-archive-works .l-inner {
  padding-inline: unset;
  max-width: unset;
}
@media screen and (max-width: 767px) {
  .page-archive-works .l-inner {
    padding-inline: 1rem;
  }
}
.page-archive-works .c-section-title {
  position: relative;
  text-align: center;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .page-archive-works .c-section-title {
    margin-bottom: 2.5rem;
  }
}
.page-archive-works .c-section-title::before {
  position: absolute;
  top: -2.6875rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 28.5625rem;
  height: 9.375rem;
  background: url(../img/works-en.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-archive-works .c-section-title::before {
    top: 0.25rem;
    width: 11.3125rem;
    height: 3.8125rem;
  }
}
.page-archive-works .page-archive-works_list {
  display: flex;
  flex-direction: column;
  gap: 4.25rem;
}
@media screen and (max-width: 767px) {
  .page-archive-works .page-archive-works_list {
    gap: 2.5rem;
  }
}
.page-archive-works .page-archive-works_item .page-archive-works_link {
  display: flex;
  gap: 3.75rem;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .page-archive-works .page-archive-works_item .page-archive-works_link:hover .page-archive-works_sub, .page-archive-works .page-archive-works_item .page-archive-works_link:hover .page-archive-works_text {
    color: #F28804;
  }
}
@media screen and (max-width: 767px) {
  .page-archive-works .page-archive-works_item .page-archive-works_link {
    flex-direction: column-reverse;
    gap: 0.625rem;
  }
}
.page-archive-works .page-archive-works_item .page-archive-works_link img {
  display: block;
  width: 100%;
  max-width: 43.75rem;
  height: auto;
  aspect-ratio: 700/351;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 1.25rem 1.25rem 0 0 #F0CD77;
}
@media screen and (max-width: 767px) {
  .page-archive-works .page-archive-works_item .page-archive-works_link img {
    max-width: 100%;
    aspect-ratio: 335/168;
    box-shadow: 0.5rem 0.5rem 0 0 #F0CD77;
  }
}
.page-archive-works .page-archive-works_item.page-archive-works_item-re .page-archive-works_link {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .page-archive-works .page-archive-works_item.page-archive-works_item-re .page-archive-works_link {
    flex-direction: column-reverse;
  }
}
.page-archive-works .page-archive-works_item.page-archive-works_item-re .page-archive-works_link img {
  box-shadow: -1.25rem 1.25rem 0 0 #F0CD77;
}
@media screen and (max-width: 767px) {
  .page-archive-works .page-archive-works_item.page-archive-works_item-re .page-archive-works_link img {
    box-shadow: 0.5rem 0.5rem 0 0 #F0CD77;
  }
}
.page-archive-works .page-archive-works_text-wrap {
  margin-bottom: 2.5rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-archive-works .page-archive-works_text-wrap {
    align-self: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .page-archive-works .page-archive-works_text-wrap {
    margin-bottom: unset;
    width: 100%;
    align-self: flex-start;
  }
}
.page-archive-works .page-archive-works_sub {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-bottom: 1.25rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .page-archive-works .page-archive-works_sub {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.page-archive-works .page-archive-works_sub::before {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 1.3125rem;
  background: url(../img/orange-line.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-archive-works .page-archive-works_sub::before {
    bottom: -0.4375rem;
    height: 1.0625rem;
  }
}
.page-archive-works .page-archive-works_text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 30.9375rem;
  text-align: left;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .page-archive-works .page-archive-works_text {
    font-size: 1rem;
    max-width: 100%;
    width: 100%;
  }
}

.page-taxonomy-works_case {
  padding-top: 5rem;
}
@media (max-width: 767px) {
  .page-taxonomy-works_case {
    padding-top: 2.5rem;
  }
}
.page-taxonomy-works_case .c-section-title {
  position: relative;
  text-align: center;
  margin-bottom: 3.75rem;
}
@media (max-width: 767px) {
  .page-taxonomy-works_case .c-section-title {
    line-height: 1.3;
  }
}
.page-taxonomy-works_case .c-section-title::before {
  position: absolute;
  top: -3.125rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 18.9375rem;
  height: 9.8125rem;
  background: url(../img/case-window-en.png) no-repeat center/cover;
  z-index: -1;
}
@media (max-width: 767px) {
  .page-taxonomy-works_case .c-section-title::before {
    top: 3.5625rem;
    width: 7.5rem;
    height: 3.8125rem;
  }
}
.page-taxonomy-works_case {
  /* ===============================
    list
  =============================== */
}
.page-taxonomy-works_case .page-taxonomy-works_case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .page-taxonomy-works_case .page-taxonomy-works_case-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.page-taxonomy-works_case .page-taxonomy-works_case-item {
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}
@media (min-width: 768px) {
  .page-taxonomy-works_case .page-taxonomy-works_case-item:hover {
    border-color: #FFBE19;
  }
}
.page-taxonomy-works_case .page-taxonomy-works_case-link {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.75rem 1.5rem;
  text-decoration: none;
  color: inherit;
}
.page-taxonomy-works_case .page-taxonomy-works_case-thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 308/134;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 0.25rem;
  border-radius: 0.25rem;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .page-taxonomy-works_case-item:hover .page-taxonomy-works_case .page-taxonomy-works_case-thumb {
    transform: scale(1.03);
  }
}
.page-taxonomy-works_case .page-taxonomy-works_case-date {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Roboto Condensed", sans-serif;
  color: #333333;
}
.page-taxonomy-works_case .page-taxonomy-works_case-title {
  font-size: 1.125rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .page-taxonomy-works_case-item:hover .page-taxonomy-works_case .page-taxonomy-works_case-title {
    color: #F28804;
  }
}
.page-taxonomy-works_case {
  /* ===============================
    pagination（WPの <ul class="page-numbers"> を想定）
  =============================== */
}
.page-taxonomy-works_case .page-taxonomy-works_case-pagination {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.page-taxonomy-works_case .page-taxonomy-works_case-pagination .page-numbers {
  display: flex;
  gap: 0.5em;
}
.page-taxonomy-works_case .page-taxonomy-works_case-pagination .page-numbers li {
  list-style: none;
}
.page-taxonomy-works_case .page-taxonomy-works_case-pagination .page-numbers a,
.page-taxonomy-works_case .page-taxonomy-works_case-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.75em;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  line-height: 1;
  text-decoration: none;
  color: #333333;
  background: #fff;
}
.page-taxonomy-works_case .page-taxonomy-works_case-pagination .page-numbers .current,
.page-taxonomy-works_case .page-taxonomy-works_case-pagination .page-numbers a:hover {
  border-color: #F28804;
  color: #fff;
  background: #F28804;
}
.page-taxonomy-works_case .page-taxonomy-works_case-empty {
  text-align: center;
  margin: 1.5rem 0;
}

.page-news .news-grid {
  display: grid;
  grid-template-columns: 1fr 18.75rem;
  gap: 2.5rem;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .page-news .news-grid {
    grid-template-columns: 1fr;
  }
}
.page-news .news-list {
  display: grid;
  gap: 2.5rem;
  max-width: 50rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .page-news .news-list {
    max-width: 100%;
  }
}
.page-news .news-item {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #877A6A;
}
.page-news .news-link {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 767px) {
  .page-news .news-link {
    gap: 0.75rem;
    align-items: flex-start;
  }
}
.page-news .news-thumb {
  width: 16.4375rem;
  height: 11.5rem;
  aspect-ratio: 263/184;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .page-news .news-thumb {
    width: 32.88%;
    height: auto;
  }
}
.page-news .news-thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 263/184;
  width: 100%;
}
.page-news .news-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.page-news .news-meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 767px) {
  .page-news .news-meta {
    gap: 0.75rem;
  }
}
.page-news .news-date {
  font-size: 1.125rem;
  font-weight: bold;
  font-family: "Roboto Condensed", sans-serif;
  color: #877A6A;
}
@media (max-width: 767px) {
  .page-news .news-date {
    font-size: 0.875rem;
  }
}
.page-news .news-cat {
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.375rem 0.625rem;
  border: 1px solid #877A6A;
}
@media (max-width: 767px) {
  .page-news .news-cat {
    font-size: 0.625rem;
    padding: 0.25rem 0.5rem;
  }
}
.page-news .news-title {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .page-news .news-title {
    font-size: 1rem;
  }
}
.page-news .pager {
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-inline: auto;
}
.page-news .nav-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.page-news .page-numbers {
  font-size: 1.125rem;
  font-weight: bold;
  font-family: "Roboto Condensed", sans-serif;
}
.page-news .page-numbers.current {
  color: #F0CD77;
}
.page-news .page-numbers.prev,
.page-news .page-numbers.next {
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 0;
}
.page-news .page-numbers.prev {
  background-image: url("../img/icon-arrow-right.png");
  transform: scaleX(-1);
}
.page-news .page-numbers.next {
  background-image: url("../img/icon-arrow-right.png");
}
.page-news .news-sidebar {
  display: grid;
  gap: 2.5rem;
  border: 1px solid #877A6A;
  background: #fff;
  padding: 2rem 1.5rem;
}
@media (max-width: 767px) {
  .page-news .news-sidebar {
    display: none;
  }
}
.page-news .news-sidebar-title {
  position: relative;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-align: center;
  color: #333333;
  padding-bottom: 0.625rem;
  margin-bottom: 1.25rem;
}
.page-news .news-sidebar-title::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  display: inline-block;
  transform: translateX(-50%);
  width: 5rem;
  height: 0.1875rem;
  background-color: #F0CD77;
}
.page-news .news-sidebar-link {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
  padding: 0.375rem 0;
  border-bottom: 1px solid #877A6A;
}
.page-news .news-sidebar-link.news-sidebar-link-article {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.page-news .news-sidebar-date {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1;
  color: #BBBBBB;
}

.p-news-main .p-news-detail__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  color: #F28804;
  padding: 0 1rem 0.25rem 1rem;
  border-bottom: 1px solid #877A6A;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-news-main .p-news-detail__title {
    font-size: 1.5rem;
    padding: 0 0.25rem 0.125rem 0.25rem;
  }
}
.p-news-main .p-news-meta {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin: 0 1.25rem 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-news-main .p-news-meta {
    gap: 0.75rem;
    margin: 0 0 1.625rem;
  }
}
.p-news-main .p-news-meta__date {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Roboto Condensed", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-news-main .p-news-meta__date {
    font-size: 1.25rem;
  }
}
.p-news-main .p-news-meta__cats {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: unset;
}
@media screen and (max-width: 767px) {
  .p-news-main .p-news-meta__cats {
    gap: 0.25rem;
  }
}
.p-news-main .p-news-meta__cats .p-news-meta__cat {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.375rem 0.625rem;
  border: 1px solid #877A6A;
  color: #877A6A;
}
@media screen and (max-width: 767px) {
  .p-news-main .p-news-meta__cats .p-news-meta__cat {
    font-size: 0.75rem;
    padding: 0.375rem 0.5rem;
  }
}
.p-news-main .p-news-meta__cats .p-news-meta__cat::before {
  display: none;
}
.p-news-main {
  /* ヒーロー画像 */
}
.p-news-main .p-news-thumb {
  margin: 0 1.25rem 3.3125rem;
}
@media screen and (max-width: 767px) {
  .p-news-main .p-news-thumb {
    margin: 0 0 1.9375rem;
  }
}
.p-news-main .p-news-thumb__img {
  width: 100%;
  height: auto;
  aspect-ratio: 960/600;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-news-main .p-news-content {
  margin: 0 1.25rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-news-main .p-news-content {
    margin: 0 0 2.5rem;
  }
}
.p-news-main .p-news-content p {
  font-size: 1rem;
  line-height: 2;
}
.p-news-main .p-news-content a {
  color: #1A83EC;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-news-main .p-news-content a:hover {
    opacity: 0.7;
  }
}
.p-news-main .p-news-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.75rem;
}
.p-news-main .p-news-content .wp-block-gallery.has-nested-images .wp-block-image img {
  -o-object-fit: contain !important;
     object-fit: contain !important;
  max-width: 25rem !important;
}

/* ページャー */
.p-news-pager {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-pager {
    margin-bottom: 3.75rem;
  }
}

.p-news-pager__col {
  display: flex;
  align-items: center;
}
.p-news-pager__col--prev {
  justify-content: flex-start;
}
.p-news-pager__col--archive {
  justify-content: center;
}
.p-news-pager__col--next {
  justify-content: flex-end;
}

.p-news-pager__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 600;
  color: #F28804;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-news-pager__link:hover {
  opacity: 0.7;
}

.p-news-pager__icon {
  width: 1.25rem;
  height: 1.25rem;
  background: url(../img/icon-arrow-right.png) no-repeat center/contain;
}

.p-news-pager__icon--prev {
  transform: rotate(180deg);
}

.p-news-pager__link--archive {
  font-weight: 700;
  color: #333;
}

/* =========================
   施工事例 詳細ページ
========================= */
.single-works-contents .l-inner.single-works-inner {
  max-width: 62.5rem;
  padding: 0 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .single-works-contents .l-inner.single-works-inner {
    max-width: 100%;
    padding-bottom: 3.75rem;
  }
}

/* -------------------------------
  見出し＋メタ情報
-------------------------------- */
.page-single-works-head {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-single-works-head {
    margin-bottom: 1.5rem;
  }
}

.page-single-works-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  color: #F28804;
  padding: 0 1rem 0.25rem;
  border-bottom: 1px solid #877A6A;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-single-works-title {
    font-size: 1.25rem;
    padding: 0 0 0.5rem;
    margin: 0 1rem 1rem;
  }
}

.page-single-works-meta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-single-works-meta {
    gap: 0.75rem;
    padding-inline: 0.75rem;
  }
}

.page-single-works-date {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-single-works-date {
    font-size: 1.125rem;
  }
}

.page-single-works-category {
  display: inline-block;
  padding: 0.375rem 0.625rem;
  font-size: 0.875rem;
  color: #877A6A;
  border: 1px solid #877A6A;
}
@media screen and (max-width: 767px) {
  .page-single-works-category {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
}

/* -------------------------------
  一言
-------------------------------- */
.page-single-works_body {
  padding-inline: 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 4.625rem;
}
@media screen and (max-width: 767px) {
  .page-single-works_body {
    padding-inline: 1rem;
    font-size: 0.875rem;
  }
}

/* -------------------------------
  セクション見出し（共通）
-------------------------------- */
.page-single-works_section-title {
  position: relative;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  padding-left: 1.625rem;
  margin-bottom: 2.75rem;
}
.page-single-works_section-title::before {
  position: absolute;
  top: -1.125rem;
  left: 0;
  content: "";
  display: inline-block;
  width: 13.3125rem;
  height: 4.375rem;
  background: url(../img/paint-orange.png) no-repeat center center/cover;
  z-index: -1;
}
.page-single-works_section-title::after {
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 1.125rem;
  background: url(../img/fv-line.jpg) no-repeat center center/cover;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .page-single-works_section-title {
    font-size: 1rem;
    padding-left: 1rem;
    margin-bottom: 1.75rem;
  }
  .page-single-works_section-title::before {
    width: 10rem;
    height: 3.125rem;
    top: -0.625rem;
  }
  .page-single-works_section-title::after {
    height: 0.75rem;
    bottom: -0.5rem;
  }
}

/* -------------------------------
  施工前後
-------------------------------- */
.page-single-works_ba {
  padding-inline: 1.25rem;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .page-single-works_ba {
    padding-inline: 1rem;
    margin-bottom: 2.5rem;
  }
}

.page-single-works_ba-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-single-works_ba-inner {
    flex-direction: column;
    gap: 1rem;
  }
}

.page-single-works_ba-item {
  position: relative;
  width: 100%;
}
.page-single-works_ba-item img {
  width: 100%;
  aspect-ratio: 410/260;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .page-single-works_ba-item img {
    aspect-ratio: 343/220;
  }
}

.page-single-works_ba-cap {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  background-color: #fff;
  border: 1px solid #C9C9C9;
  padding: 0.625rem 1.375rem;
}
@media screen and (max-width: 767px) {
  .page-single-works_ba-cap {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
  }
}

.page-single-works_ba-arrow {
  width: 3.75rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .page-single-works_ba-arrow {
    width: 2rem;
    transform: rotate(90deg);
  }
}

/* -------------------------------
  概要テーブル
-------------------------------- */
.page-single-works_overview {
  padding-inline: 1.25rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-single-works_overview {
    padding-inline: 1rem;
    margin-bottom: 2rem;
  }
}

/* dlをグリッドで表に見せる */
.page-single-works_overview-list {
  max-width: 45rem;
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid #F28804;
  background: #fff;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .page-single-works_overview-list {
    max-width: 100%;
  }
}

.page-single-works_overview-row {
  display: flex;
  border-bottom: 1px solid #F28804;
}
@media screen and (max-width: 767px) {
  .page-single-works_overview-row {
    flex-direction: column;
    border-bottom: 1px solid #F28804;
  }
}

.page-single-works_overview-row:last-of-type {
  border-bottom: unset;
}

/* 共通セル */
.page-single-works_overview-term,
.page-single-works_overview-desc {
  padding: 1.125rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .page-single-works_overview-term,
  .page-single-works_overview-desc {
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
  }
}

/* 左セル（項目名） */
.page-single-works_overview-term {
  font-weight: 500;
  background: #fff;
  border-right: 1px solid #F28804;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .page-single-works_overview-term {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #eee;
    background: #f8f8f8;
  }
}

/* 右セル（値） */
.page-single-works_overview-desc {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .page-single-works_overview-desc {
    padding-top: 0.375rem;
  }
}

/* -------------------------------
  使用塗料
-------------------------------- */
.page-single-works_usedpaint {
  padding-inline: 1.25rem;
  margin-bottom: 4.625rem;
}
@media screen and (max-width: 767px) {
  .page-single-works_usedpaint {
    padding-inline: 1rem;
    margin-bottom: 3rem;
  }
}

.page-single-works_sub-title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  color: #F28804;
  border-bottom: 1px solid #877A6A;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-single-works_sub-title {
    font-size: 1rem;
    margin-bottom: 0.875rem;
  }
}

.page-single-works_usedpaint-text {
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .page-single-works_usedpaint-text {
    font-size: 0.875rem;
  }
}

/* -------------------------------
  お客様アンケート
-------------------------------- */
.page-single-works_questionnaire {
  padding-inline: 1.25rem;
  margin-bottom: 4.625rem;
}
.page-single-works_questionnaire .page-single-works_section-title::before {
  background: url(../img/paint-yellow.png) no-repeat center center/cover;
  height: 3.625rem;
}
@media screen and (max-width: 767px) {
  .page-single-works_questionnaire .page-single-works_section-title::before {
    height: 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .page-single-works_questionnaire {
    padding-inline: 1rem;
    margin-bottom: 3rem;
  }
}

.page-single-works_questionnaire-inner {
  padding-inline: 4.375rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .page-single-works_questionnaire-inner {
    padding-inline: 0;
    margin-top: 2rem;
  }
}

.page-single-works_questionnaire img {
  width: 51.25rem;
  height: auto;
  aspect-ratio: 820/1158;
}
@media screen and (max-width: 767px) {
  .page-single-works_questionnaire img {
    width: 100%;
    max-width: 100%;
  }
}

/* -------------------------------
  写真ギャラリー
-------------------------------- */
.page-single-works_gallery {
  padding-inline: 1.25rem;
  margin-bottom: 4.625rem;
}
.page-single-works_gallery .page-single-works_section-title::before {
  background: url(../img/paint-red.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .page-single-works_gallery {
    padding-inline: 1rem;
    margin-bottom: 3rem;
  }
}

.page-single-works_gallery-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
  padding-inline-start: 3.5rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .page-single-works_gallery-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-inline-start: 0;
    margin-top: 2rem;
  }
}

.page-single-works_gallery-item {
  border: 1px solid #CDCDCD;
  padding: 0.875rem 1rem;
}
@media screen and (max-width: 767px) {
  .page-single-works_gallery-item {
    padding: 0.625rem 0.75rem;
  }
}

.page-single-works_gallery-item img {
  width: 100%;
  aspect-ratio: 380/507;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .page-single-works_gallery-item img {
    aspect-ratio: 343/458;
  }
}

.page-single-works_gallery-title {
  margin-bottom: 0.375rem;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-single-works_gallery-title {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
}

.page-single-works_gallery-text {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .page-single-works_gallery-text {
    font-size: 0.75rem;
    margin-top: 0.25rem;
  }
}

/* -------------------------------
  施工エリア一覧
-------------------------------- */
.page-single-works_area-list {
  padding-inline: 1.25rem;
  margin-bottom: 4.625rem;
}
@media screen and (max-width: 767px) {
  .page-single-works_area-list {
    padding-inline: 1rem;
    margin-bottom: 3rem;
  }
}

.page-single-works_area-list .page-single-works_section-title::before {
  background: url(../img/paint-orange.png) no-repeat center center/cover;
}

.page-single-works_area-list-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-inline-start: 3.5rem;
  margin-top: 4rem;
  max-width: 60rem;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .page-single-works_area-list-inner {
    padding-inline-start: 0;
    margin-top: 3rem;
  }
}

.page-single-works_area-list-item {
  margin: 0;
}

.page-single-works_area-list-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.125rem;
  background: #fff;
  border: 1px solid #F28804;
  border-radius: 0.5rem;
  color: #F28804;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.page-single-works_area-list-link:hover {
  background: #F28804;
  color: #fff;
}
.page-single-works_area-list-link:hover .page-single-works_area-list-icon {
  opacity: 0.9;
}
.page-single-works_area-list-link:hover img.page-single-works_area-list-icon {
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 767px) {
  .page-single-works_area-list-link {
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    gap: 0.5rem;
  }
}

.page-single-works_area-list-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.page-single-works_area-list-icon:not(img) {
  border-radius: 50%;
  background-color: #F28804;
}
@media screen and (max-width: 767px) {
  .page-single-works_area-list-icon {
    width: 1rem;
    height: 1rem;
  }
}

.page-single-works_area-list-text {
  flex: 1;
  min-width: 0;
}

@media screen and (max-width: 767px) {
  .p-works-divider {
    margin-inline: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .p-news-pager.p-works-pager {
    margin-inline: 1rem;
  }
}/*# sourceMappingURL=style.css.map */