@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-weight: 400;
  color: #333333;
  background: #fff;
  line-height: 1;
  letter-spacing: 0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.l-header {
  position: relative;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
}

.c-btn-small {
  width: 7.875rem;
  height: 2.625rem;
  font-size: 0.875rem;
  font-weight: bold;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.c-btn-small:hover {
  transition: all 0.3s ease;
}

.c-btn-default {
  width: 15.5rem;
  height: 2.625rem;
  font-size: 0.875rem;
  font-weight: bold;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.c-btn-default:hover {
  transition: all 0.3s ease;
}

.c-btn-view-more {
  width: clamp(17.313rem, 15.596rem + 7.32vw, 22.188rem);
  height: clamp(3.875rem, 3.479rem + 1.69vw, 5rem);
  position: relative;
  font-size: clamp(1rem, 0.912rem + 0.38vw, 1.25rem);
  font-size: clamp(1rem, 0.912rem + 0.38vw, 1.25rem);
  line-height: 1;
  text-transform: uppercase;
  border: 0.0625rem solid #333333;
  background-color: #fff;
  display: grid;
  place-items: center;
  transition: 0.3s ease all;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
}
.c-btn-view-more::before {
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(1.375rem, 1.309rem + 0.28vw, 1.563rem);
  width: clamp(0.688rem, 0.599rem + 0.38vw, 0.938rem);
  height: clamp(0.688rem, 0.599rem + 0.38vw, 0.938rem);
  border-top: 0.25rem solid #333333;
  border-right: 0.25rem solid #333333;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s ease all;
}
@media screen and (max-width: 399px) {
  .c-btn-view-more::before {
    border-top: 0.1875rem solid #333333;
    border-right: 0.1875rem solid #333333;
  }
}
.c-btn-view-more:hover {
  transition: 0.3s ease all;
  opacity: 1;
  color: #fff;
  background-color: #333333;
}
.c-btn-view-more:hover::before {
  border-top: 0.1875rem solid #fff;
  border-right: 0.1875rem solid #fff;
  transition: 0.3s ease all;
}
.c-btn-view-more__layout {
  margin-right: auto;
  margin-left: auto;
}

.c-round-button-down-arrow-list {
  display: flex;
  justify-content: space-between;
  gap: clamp(1.25rem, 0.612rem + 2.72vw, 3.063rem);
}
@media screen and (max-width: 999px) {
  .c-round-button-down-arrow-list {
    flex-direction: column;
    align-items: center;
  }
}

.c-round-button-down-arrow-list__item {
  font-size: clamp(1.125rem, 1.081rem + 0.19vw, 1.25rem);
  font-weight: bold;
  padding: 1.125rem 0;
  text-align: center;
  max-width: 18.375rem;
  width: 100%;
  background: #FDF8F0;
  line-height: 1;
  border: 0.0625rem solid #333333;
  border-radius: 2.5rem;
}
.c-round-button-down-arrow-list__item span {
  position: relative;
}
.c-round-button-down-arrow-list__item span i {
  position: absolute;
  right: -1.75rem;
}

.c-global-menu {
  display: block;
  position: fixed;
  background-color: #FDF8F0;
  opacity: 0;
  inset: 0 -100% 0 100%;
  z-index: 9989;
  transition: all 0.6s ease;
  padding-left: clamp(0.75rem, 0.354rem + 1.69vw, 1.875rem);
  padding-right: 0.75rem;
}
.c-global-menu__header {
  padding-right: 6.8125rem;
  display: flex;
  align-items: center;
  height: clamp(3.5rem, 2.136rem + 5.82vw, 7.375rem);
}
.c-global-menu__header-logo {
  display: flex;
  align-items: center;
  transition: all ease 0.3;
}
.c-global-menu__header-logo:hover {
  opacity: 0.7;
  transition: all ease 0.3;
}
.c-global-menu__header-logo a img {
  width: clamp(9.438rem, 7.237rem + 9.39vw, 15.688rem);
  height: clamp(2.5rem, 1.928rem + 2.44vw, 4.125rem);
}
.c-global-menu__header-btn {
  margin-left: auto;
  display: flex;
  align-items: center;
  column-gap: 1.375rem;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .c-global-menu__header-btn {
    display: none;
  }
}
.c-global-menu__header-btn-essentials {
  background: #333333;
  color: #fff;
}
.c-global-menu__header-btn-essentials:hover {
  background: #fff;
  border: 0.0625rem solid #333333;
  color: #333333;
}
.c-global-menu__header-btn-entry {
  background: #E65C00;
  color: #fff;
}
.c-global-menu__header-btn-entry:hover {
  background: #D45400;
}
.c-global-menu__content {
  margin-top: 5.625rem;
  display: flex;
  height: 25.4375rem;
  column-gap: 3.9375rem;
  width: 56.375rem;
  margin-left: auto;
  margin-right: 7.4375rem;
}
@media screen and (max-width: 767px) {
  .c-global-menu__content {
    max-width: 31.25rem;
    margin-top: 2.125rem;
    width: 100%;
    margin-right: auto;
  }
}
.c-global-menu__content-logo {
  height: 25.4375rem;
  padding-right: 3.9375rem;
  display: flex;
  align-items: center;
  border-right: 0.0625rem solid #E65C00;
  transition: all ease 0.3;
}
.c-global-menu__content-logo:hover {
  opacity: 0.7;
  transition: all ease 0.3;
}
.c-global-menu__content-logo a img {
  width: 15.6875rem;
  height: 4.125rem;
}
@media screen and (max-width: 999px) {
  .c-global-menu__content-logo {
    display: none;
  }
}
.c-global-menu__content-list-wrapper {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 999px) {
  .c-global-menu__content-list-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .c-global-menu__content-list-wrapper {
    width: 100%;
  }
}
.c-global-menu__content-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  column-gap: 1.875rem;
  height: 19.6875rem;
}
@media screen and (max-width: 767px) {
  .c-global-menu__content-list {
    width: 100%;
    height: 24.375rem;
  }
}
.c-global-menu__content-list-item {
  border-bottom: 0.0625rem solid #E65C00;
  height: 6.5625rem;
  width: 15.5rem;
}
@media screen and (max-width: 767px) {
  .c-global-menu__content-list-item {
    height: 4.0625rem;
    width: 100%;
  }
}
.c-global-menu__content-list-item:nth-child(3n+1) {
  border-top: 0.0625rem solid #E65C00;
}
@media screen and (max-width: 767px) {
  .c-global-menu__content-list-item:nth-child(4) {
    border-top: 0.0625rem solid transparent;
  }
}
.c-global-menu__content-list-item a {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s ease all;
}
.c-global-menu__content-list-item a:hover {
  transition: 0.3s ease all;
}
.c-global-menu__content-list-item a:hover > .c-global-menu__content-list-item-title {
  color: #E65C00;
  transition: 0.3s ease all;
}
.c-global-menu__content-list-item a:hover > .c-global-menu__content-list-item-text {
  color: #E65C00;
  transition: 0.3s ease all;
}
.c-global-menu__content-list-item-title {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 2rem;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .c-global-menu__content-list-item-title {
    font-size: 1.125rem;
  }
}
.c-global-menu__content-list-item-text {
  font-size: 1rem;
  font-weight: bold;
  color: #333333;
  margin-top: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .c-global-menu__content-list-item-text {
    font-size: 0.75rem;
    margin-top: 0.5625rem;
  }
}
.c-global-menu__content-btn {
  display: flex;
  column-gap: 1.875rem;
  width: 32.875rem;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .c-global-menu__content-btn {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 3.3125rem;
  }
}
.c-global-menu__content-btn-essentials {
  background: #333333;
  color: #fff;
}
.c-global-menu__content-btn-essentials:hover {
  background: #fff;
  border: 0.0625rem solid #333333;
  color: #333333;
}
.c-global-menu__content-btn-entry {
  background: #E65C00;
  color: #fff;
}
.c-global-menu__content-btn-entry:hover {
  background: #D45400;
}
@media screen and (max-width: 767px) {
  .c-global-menu__content-btn-entry {
    margin-top: 0.8125rem;
  }
}

.c-global-menu.open {
  opacity: 1;
  inset: 0;
}

.c-hamburger {
  position: relative;
  z-index: 9990;
  width: clamp(2rem, 1.56rem + 1.88vw, 3.25rem);
  height: clamp(2rem, 1.56rem + 1.88vw, 3.25rem);
  cursor: pointer;
  margin-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    margin-left: auto;
  }
}
.c-hamburger__text {
  position: absolute;
  top: clamp(1.5rem, 1.148rem + 1.5vw, 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: clamp(0.625rem, 0.581rem + 0.19vw, 0.75rem);
  color: #fff;
}
.c-hamburger__line {
  content: "";
  position: absolute;
  top: clamp(0.438rem, 0.305rem + 0.56vw, 0.813rem);
  display: block;
  width: clamp(2rem, 1.56rem + 1.88vw, 3.25rem);
  height: 0.125rem;
  background: #fff;
  transition: all 0.5s;
}
.c-hamburger__line::before {
  content: "";
  bottom: clamp(0.563rem, 0.43rem + 0.56vw, 0.938rem);
  position: absolute;
  display: block;
  width: clamp(2rem, 1.56rem + 1.88vw, 3.25rem);
  height: 0.125rem;
  background: #fff;
  transition: all 0.5s;
}
.c-hamburger__line::after {
  content: "";
  top: clamp(0.563rem, 0.43rem + 0.56vw, 0.938rem);
  position: absolute;
  display: block;
  width: clamp(2rem, 1.56rem + 1.88vw, 3.25rem);
  height: 0.125rem;
  background: #fff;
  transition: all 0.5s;
}
.c-hamburger.c-hamburger--sub > .c-hamburger__line {
  background: #333333;
}
.c-hamburger.c-hamburger--sub > .c-hamburger__line::before {
  background: #333333;
}
.c-hamburger.c-hamburger--sub > .c-hamburger__line::after {
  background: #333333;
}
.c-hamburger.c-hamburger--sub > .c-hamburger__text {
  color: #333333;
}

.p-header.p-header--sticky > .p-header__inner > .c-hamburger > .c-hamburger__line {
  background: #333333;
}
.p-header.p-header--sticky > .p-header__inner > .c-hamburger > .c-hamburger__line::before {
  background: #333333;
}
.p-header.p-header--sticky > .p-header__inner > .c-hamburger > .c-hamburger__line::after {
  background: #333333;
}
.p-header.p-header--sticky > .p-header__inner > .c-hamburger > .c-hamburger__text {
  color: #333333;
}

.c-global-menu.open + .c-hamburger > .c-hamburger__line {
  margin-left: 0.3125rem;
  top: clamp(0.688rem, 0.533rem + 0.66vw, 1.125rem);
  background: transparent;
}

.c-global-menu.open + .c-hamburger > .c-hamburger__line::before {
  transform: translateY(7px) rotate(-315deg);
  background: #333333;
  bottom: 0.4375rem;
}

.c-global-menu.open + .c-hamburger > .c-hamburger__line::after {
  transform: translateY(-7px) rotate(315deg);
  background: #333333;
  top: 0.4375rem;
}

.c-global-menu.open + .c-hamburger > .c-hamburger__text {
  color: transparent;
}

.p-header.p-header--sticky > .p-header__inner > .c-global-menu.open + .c-hamburger > .c-hamburger__line {
  top: clamp(0.688rem, 0.533rem + 0.66vw, 1.125rem);
  background: transparent;
}
.p-header.p-header--sticky > .p-header__inner > .c-global-menu.open + .c-hamburger > .c-hamburger__text {
  color: transparent;
}

.c-title__main {
  position: relative;
  display: inline-block;
  left: 0;
  font-size: clamp(2rem, 1.56rem + 1.88vw, 3.25rem);
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
}
.c-title__main::before {
  content: attr(data-title);
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(245, 185, 106, 0.15);
  font-size: clamp(5rem, 3.768rem + 5.26vw, 8.5rem);
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 999px) {
  .c-title__main::before {
    left: 0;
    transform: translate(0, -50%);
  }
}
.c-title__main--border {
  text-decoration: underline #333333 0.1875rem;
  text-underline-offset: clamp(0.313rem, 0.246rem + 0.28vw, 0.5rem);
}
@media screen and (max-width: 399px) {
  .c-title__main--border {
    text-decoration: underline #333333 0.125rem;
  }
}
.c-title__sub {
  line-height: 1.5;
  color: #333333;
}

.c-sub-title__main {
  font-weight: bold;
  font-size: clamp(1.625rem, 1.493rem + 0.56vw, 2rem);
  text-align: center;
}
.c-sub-title__main--left {
  text-align-last: left;
}
.c-sub-title__sub {
  font-size: 1rem;
  line-height: 1;
  margin-top: clamp(3.125rem, 1.739rem + 5.92vw, 7.063rem);
}

.c-table__list {
  padding-bottom: clamp(1.625rem, 1.427rem + 0.85vw, 2.188rem);
  display: flex;
  font-size: 1rem;
  line-height: 1;
  border-bottom: 0.0625rem dashed #333333;
}
@media screen and (max-width: 767px) {
  .c-table__list {
    flex-direction: column;
  }
}

.c-table__list + .c-table__list {
  margin-top: clamp(1.625rem, 1.405rem + 0.94vw, 2.25rem);
}

.c-table__term {
  max-width: 14.4375rem;
  font-weight: bold;
  width: 100%;
  line-height: 1;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-table__term {
    max-width: 10.625rem;
    margin-bottom: 1.125rem;
  }
}

.c-table__description {
  line-height: 1;
}

.c-table__description--line-hight-high {
  line-height: 1.5;
  margin-left: 0.25rem;
}

.c-faq-list {
  background: #fff;
  border-bottom: #D45400 0.0625rem solid;
}

.c-faq-list__item {
  border-top: #D45400 0.0625rem solid;
}

.c-faq-list__item-question {
  height: clamp(4.75rem, 4.486rem + 1.13vw, 5.5rem);
  position: relative;
  background: #fff;
  cursor: pointer;
}

.c-faq-list__item-question-text {
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2.25rem;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-faq-list__item-question-text {
    max-width: clamp(15.625rem, -10.417rem + 111.11vw, 43.75rem);
  }
}

.c-faq-list__item-question.is-open {
  padding-bottom: 1.25rem;
}

.c-faq-list__item-question::before,
.c-faq-list__item-question::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1rem;
  height: 0.125rem;
  background: #D45400;
  transition: 0.3s;
}

.c-faq-list__item-question::after {
  transform: rotate(90deg);
}

.c-faq-list__item-question.is-open::after {
  transform: rotate(0deg);
}

.c-faq-list__item-question span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 1.5rem;
  color: #D45400;
}

.c-faq-list__item-answer {
  padding-right: 1.25rem;
  padding-left: 2.3125rem;
  padding-bottom: clamp(1.563rem, 1.342rem + 0.94vw, 2.188rem);
  display: none;
  font-size: 1rem;
  line-height: 1.5;
}

.c-portfolio-notice {
  position: relative;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.5rem 2.25rem 0.5rem 1rem;
  background: #FDF8F0;
  border-bottom: 1px solid rgba(230, 92, 0, 0.25);
  color: #333333;
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
}
.c-portfolio-notice.is-hidden {
  display: none;
}
.c-portfolio-notice__text {
  margin: 0;
}
.c-portfolio-notice__close {
  position: absolute;
  right: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 1.75rem;
  border: none;
  background: transparent;
  color: #999;
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}
.c-portfolio-notice__close:hover {
  color: #333333;
}

.p-fv {
  height: clamp(41.688rem, 38.254rem + 14.65vw, 51.438rem);
  position: relative;
  top: -7.375rem;
  right: 0;
  overflow: hidden;
}
@media screen and (max-width: 399px) {
  .p-fv {
    top: -3.5rem;
  }
}
.p-fv__slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-fv__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(74, 55, 40, 0.72) 0%, rgba(74, 55, 40, 0.4) 35%, rgba(74, 55, 40, 0.1) 55%, transparent 75%);
  pointer-events: none;
}
.p-fv__slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  animation: slider-1 14s linear infinite;
}
.p-fv__slide-image:nth-child(1) {
  background-image: url("../images/fv01.png");
}
.p-fv__slide-image:nth-child(2) {
  background-image: url("../images/fv02.png");
  animation-delay: 7s;
}
.p-fv__title {
  top: 17.875rem;
  left: clamp(0.75rem, -0.438rem + 5.07vw, 4.125rem);
  position: absolute;
  z-index: 2;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: clamp(3rem, 1.944rem + 4.51vw, 6rem);
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45), 0 4px 20px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 399px) {
  .p-fv__title {
    top: 25.875rem;
  }
}
.p-fv__sub-title {
  position: absolute;
  z-index: 2;
  top: clamp(34.25rem, 33.062rem + 5.07vw, 37.625rem);
  left: 0;
  line-height: 1;
  width: clamp(14.25rem, 7.934rem + 26.95vw, 32.188rem);
  padding-top: clamp(0.563rem, 0.386rem + 0.75vw, 1.063rem);
  padding-bottom: clamp(0.563rem, 0.386rem + 0.75vw, 1.063rem);
  padding-left: clamp(0.75rem, -0.438rem + 5.07vw, 4.125rem);
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
  background: #E65C00;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  font-size: clamp(0.75rem, 0.486rem + 1.13vw, 1.5rem);
  font-weight: bold;
}
.p-fv__news {
  position: absolute;
  z-index: 2;
  top: clamp(38.063rem, 35.554rem + 10.7vw, 45.188rem);
  left: clamp(0.75rem, -0.548rem + 5.54vw, 4.438rem);
  border-radius: 3.125rem;
  overflow: hidden;
  border: 0.125rem solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  display: flex;
}
.p-fv__news-heading {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  width: clamp(3.25rem, 0.301rem + 12.58vw, 11.625rem);
  display: grid;
  place-items: center;
  font-size: clamp(0.625rem, 0.317rem + 1.31vw, 1.5rem);
  color: #fff;
  background: #E65C00;
}
.p-fv__news-ttl {
  padding-left: clamp(0.625rem, -1.136rem + 7.51vw, 5.625rem);
  padding-top: clamp(0.625rem, 0.339rem + 1.22vw, 1.438rem);
  padding-bottom: clamp(0.625rem, 0.339rem + 1.22vw, 1.438rem);
  padding-right: 0.625rem;
  color: #333333;
  font-size: clamp(0.75rem, 0.662rem + 0.38vw, 1rem);
}
.p-fv__news-link {
  width: clamp(18.688rem, 1.566rem + 73.05vw, 67.313rem);
  background: #FDF8F0;
}
.p-fv__news-link a {
  transition: 0.3s ease all;
}
.p-fv__news-link a:hover {
  color: #E65C00;
  transition: 0.3s ease all;
}
.p-fv__news-link a:hover > span {
  color: #E65C00;
  transition: 0.3s ease all;
}
.p-fv__news-link a:hover > span::after {
  border-top: 0.125rem solid #E65C00;
  border-right: 0.125rem solid #E65C00;
  transition: 0.3s ease all;
}
.p-fv__news-link a span {
  position: absolute;
  width: 5.6875rem;
  height: 1.25rem;
  top: 0;
  bottom: 0;
  right: 2.875rem;
  margin: auto 0;
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 0.875rem;
  color: #333333;
  padding-right: 1rem;
}
@media screen and (max-width: 767px) {
  .p-fv__news-link a span {
    display: none;
  }
}
.p-fv__news-link a span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  content: "";
  right: 0;
  width: 0.5625rem;
  height: 0.5625rem;
  border-top: 0.125rem solid #333333;
  border-right: 0.125rem solid #333333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 0.3s ease all;
}

@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
.p-about-us {
  position: relative;
  margin-top: -1.0625rem;
}
@media screen and (max-width: 399px) {
  .p-about-us {
    margin-top: -0.9375rem;
  }
}
.p-about-us__top-swiper {
  width: 90%;
  margin-inline: auto;
}
.p-about-us__top-swiper-slide img {
  border-radius: 3.625rem;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
}
.p-about-us__top-swiper-slide--bottom {
  margin-top: clamp(1.625rem, 1.405rem + 0.94vw, 2.25rem);
}
.p-about-us__top-swiper-text-list {
  position: absolute;
  top: clamp(10.125rem, 7.77rem + 10.05vw, 16.813rem);
  z-index: 10;
  left: 50vw;
  transform: translateX(-50%);
  text-align: center;
}
.p-about-us__top-swiper-text-list-item {
  color: #fff;
  display: inline-block;
  white-space: nowrap;
  background: #333333;
  font-size: clamp(1.5rem, 1.148rem + 1.5vw, 2.5rem);
  font-weight: bold;
  line-height: 1.448;
  padding: 0.4375rem 0.6875rem;
}
.p-about-us__top-swiper-text-list-item:first-child {
  margin-bottom: 0.4375rem;
}
@media screen and (max-width: 399px) {
  .p-about-us__top-swiper-text-list-item:first-child {
    margin-bottom: 0.5rem;
  }
}
.p-about-us__bottom {
  position: relative;
  padding: 4.75rem 0;
}
.p-about-us__bottom-background {
  position: absolute;
  z-index: 2;
  top: 4.75rem;
  left: 50vw;
  transform: translateX(-50%);
  width: clamp(20rem, 4.507rem + 66.1vw, 64rem);
  height: clamp(10.813rem, 2.45rem + 35.68vw, 34.563rem);
  background-image: url(../images/map.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-about-us__bottom-inner-item {
  position: relative;
  z-index: 10;
  margin-top: clamp(0.563rem, 0.298rem + 1.13vw, 1.313rem);
  margin-bottom: clamp(2.438rem, 2.151rem + 1.22vw, 3.25rem);
  text-align: center;
}
.p-about-us__bottom-inner-item-text {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: clamp(1.125rem, 0.729rem + 1.69vw, 2.25rem);
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (max-width: 399px) {
  .p-about-us__bottom-inner-item-text {
    line-height: 2.5;
  }
}

.p-staff {
  padding-top: clamp(1.125rem, -0.393rem + 6.48vw, 5.438rem);
  padding-bottom: 3.9375rem;
}
.p-staff__inner {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}
.p-staff__title {
  padding-right: 1.0625rem;
  padding-left: clamp(1.063rem, 0.688rem + 1.6vw, 2.125rem);
}
.p-staff__title-main {
  margin-bottom: clamp(2.688rem, 2.511rem + 0.75vw, 3.188rem);
}
.p-staff__swiper {
  padding-left: clamp(1.625rem, 1.449rem + 0.75vw, 2.125rem);
  margin-top: clamp(3.188rem, 3.165rem + 0.09vw, 3.25rem);
  margin-bottom: clamp(3.875rem, 3.479rem + 1.69vw, 5rem);
  margin-right: calc(50% - 50vw);
  position: relative;
}

.p-staff__item {
  width: clamp(15.375rem, 14.187rem + 5.07vw, 18.75rem);
}
.p-staff__item:hover > .p-staff__item-content > .p-staff__item-job-wrap > .p-staff__item-post {
  color: #E65C00;
  transition: all 0.3s ease;
}
.p-staff__item:hover > .p-staff__item-content > .p-staff__item-job-wrap > .p-staff__item-join {
  color: #E65C00;
  transition: all 0.3s ease;
}
.p-staff__item:hover > .p-staff__item-content > .p-staff__item-name {
  color: #E65C00;
  transition: all 0.3s ease;
}
.p-staff__item-even:nth-child(even) {
  margin-top: clamp(1.625rem, 1.383rem + 1.03vw, 2.313rem);
}
.p-staff__item-img-wrap {
  position: relative;
  width: 100%;
}
.p-staff__item-img-wrap img {
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1.263333;
  border-radius: 1.875rem;
  overflow: hidden;
}
.p-staff__item-img-text-wrap {
  position: absolute;
  left: 0;
  bottom: -1.0625rem;
}
@media screen and (max-width: 399px) {
  .p-staff__item-img-text-wrap {
    bottom: -1.1875rem;
  }
}
.p-staff__item-img-text {
  padding: 0.375rem 0.5rem;
  color: #fff;
  background: #E65C00;
  font-size: clamp(1rem, 0.912rem + 0.38vw, 1.25rem);
  font-weight: bold;
  display: inline-block;
  line-height: 1.2;
}
@media screen and (max-width: 399px) {
  .p-staff__item-img-text {
    padding: 0.375rem 0.5rem;
  }
}
.p-staff__item-img-text:first-child {
  margin-bottom: 0.375rem;
}
.p-staff__item-content {
  padding-top: clamp(2rem, 1.956rem + 0.19vw, 2.125rem);
}
.p-staff__item-job-wrap {
  display: flex;
  margin-bottom: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
}
.p-staff__item-post {
  font-weight: bold;
  color: #333333;
  font-size: clamp(0.75rem, 0.662rem + 0.38vw, 1rem);
  line-height: 1;
  margin-right: 0.5625rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 399px) {
  .p-staff__item-post {
    margin-right: 0.75rem;
  }
}
.p-staff__item-join {
  font-weight: bold;
  color: #333333;
  font-size: clamp(0.75rem, 0.662rem + 0.38vw, 1rem);
  line-height: 1;
  transition: all 0.3s ease;
}
.p-staff__item-name {
  font-weight: bold;
  font-size: clamp(1.25rem, 1.162rem + 0.38vw, 1.5rem);
  color: #333333;
  line-height: 1;
  transition: all 0.3s ease;
}

.swiper-button-prev,
.swiper-button-next {
  height: 58px !important;
  width: 58px !important;
  border-radius: 50%;
  border: #333333 solid 1px;
  background: #fff;
  position: static !important;
  transition: 0.3s ease all;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  transition: 0.3s ease all;
  scale: 1.2;
}

.swiper-button-box {
  position: absolute;
  bottom: -148px;
  right: 15.8vw;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 999px) {
  .swiper-button-box {
    display: none;
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "" !important;
}

.swiper-button-prev::before,
.swiper-button-next::before {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  color: #333333;
  font-size: 20px !important;
}

.swiper-button-prev::before {
  content: "\f060" !important;
}

.swiper-button-next::before {
  content: "\f061" !important;
}

.p-header {
  height: clamp(3.5rem, 2.136rem + 5.82vw, 7.375rem);
  background: transparent;
}
.p-header__inner {
  height: inherit;
  display: flex;
  align-items: center;
  padding-left: clamp(0.75rem, 0.354rem + 1.69vw, 1.875rem);
  padding-right: clamp(0.75rem, 0.354rem + 1.69vw, 1.875rem);
}
.p-header__logo {
  display: flex;
  align-items: center;
  width: clamp(9.438rem, 7.237rem + 9.39vw, 15.688rem);
  height: clamp(2.5rem, 1.928rem + 2.44vw, 4.125rem);
}
.p-header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
  transition: all ease 0.3;
}
.p-header__logo a:hover {
  opacity: 0.7;
  transition: all ease 0.3;
}
.p-header__logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-header__logo--black {
  display: none;
}
.p-header__btn {
  margin-left: auto;
  display: flex;
  align-items: center;
  column-gap: 1.375rem;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__btn {
    display: none;
  }
}
.p-header__btn-essentials {
  background: #333333;
  color: #fff;
}
.p-header__btn-essentials:hover {
  background: #fff;
  border: 1px solid #333333;
  color: #333333;
}
.p-header__btn-entry {
  background: #E65C00;
  color: #fff;
}
.p-header__btn-entry:hover {
  background: #D45400;
}

.p-header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  visibility: visible;
  background: #FDF8F0;
  animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.p-header.l-header.p-header--sticky > .p-header__inner > .p-header__logo > a .p-header__logo--white {
  display: none;
}
.p-header.l-header.p-header--sticky > .p-header__inner > .p-header__logo > a .p-header__logo--black {
  display: block;
}

.p-benefits {
  padding-top: clamp(2rem, 0.79rem + 5.16vw, 5.438rem);
  padding-bottom: clamp(4.938rem, 4.343rem + 2.54vw, 6.625rem);
  padding-right: 1.0625rem;
  padding-left: 1.0625rem;
}
.p-benefits__inner {
  max-width: 64rem;
  margin-right: auto;
  margin-left: auto;
}
.p-benefits__title {
  text-align: center;
  margin-bottom: clamp(3.125rem, 1.717rem + 6.01vw, 7.125rem);
}
@media screen and (max-width: 999px) {
  .p-benefits__title {
    text-align: left;
  }
}
.p-benefits__title-main {
  margin-bottom: clamp(2.75rem, 2.574rem + 0.75vw, 3.25rem);
}
.p-benefits__title-sub {
  margin-right: -3rem;
  line-height: 1;
}
@media screen and (max-width: 999px) {
  .p-benefits__title-sub {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-benefits__title-sub {
    line-height: 1.5;
  }
}
.p-benefits__main {
  display: flex;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  column-gap: 5.875rem;
  padding-right: clamp(0rem, -0.77rem + 3.29vw, 2.188rem);
  padding-left: clamp(0rem, -0.77rem + 3.29vw, 2.188rem);
}
@media screen and (max-width: 999px) {
  .p-benefits__main {
    flex-direction: column;
  }
}
.p-benefits__item {
  transition: 0.3s ease all;
}
.p-benefits__item:hover > .p-benefits__item-box > .p-benefits__item-bg > img {
  transform: scale(1.1);
  transition: 0.3s ease all;
}
.p-benefits__item:hover > .p-benefits__item-box > .p-benefits__item-view-more-btn {
  transform: scale(1.2);
  transition: 0.3s ease all;
}
.p-benefits__item:hover > .p-benefits__item-desc {
  transition: 0.3s ease all;
  color: #E65C00;
}
@media screen and (max-width: 999px) {
  .p-benefits__item:first-child {
    margin-bottom: 2.375rem;
  }
}
@media screen and (max-width: 399px) {
  .p-benefits__item:first-child {
    margin-bottom: 2.25rem;
  }
}
.p-benefits__item-box {
  position: relative;
  width: clamp(15.688rem, -2.958rem + 79.56vw, 26.875rem);
  margin-left: auto;
  margin-right: auto;
}
.p-benefits__item-sub-title {
  position: absolute;
  top: 0;
  right: clamp(0.813rem, 0.083rem + 3.11vw, 1.25rem);
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: clamp(0.875rem, -0.167rem + 4.44vw, 1.5rem);
  letter-spacing: 0.15em;
}
.p-benefits__item-bg {
  width: clamp(15.688rem, -2.958rem + 79.56vw, 26.875rem);
  height: clamp(15.688rem, -2.958rem + 79.56vw, 26.875rem);
  border-radius: 50%;
  background: #FDF8F0;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  z-index: -1;
}
.p-benefits__item-bg img {
  transition: 0.3s ease all;
  width: auto;
  height: auto;
  max-width: clamp(8rem, 5rem + 12vw, 13rem);
  max-height: clamp(8rem, 5rem + 12vw, 13rem);
  object-fit: contain;
}
.p-benefits__item-title {
  position: absolute;
  top: clamp(14.25rem, -1.479rem + 67.11vw, 23.688rem);
  display: inline-block;
  font-size: clamp(1.25rem, 0.667rem + 2.5vw, 1.625rem);
  font-weight: bold;
  color: #fff;
  background: #E65C00;
  padding: 0.3125rem 0.75rem;
  word-break: keep-all;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-benefits__item-title {
    padding: 0.4375rem 0.75rem;
  }
}
.p-benefits__item-sub {
  line-height: 1.4;
  margin-top: 1.75rem;
  max-width: 31.25rem;
}
@media screen and (max-width: 767px) {
  .p-benefits__item-sub {
    margin-top: 2.25rem;
  }
}
@media screen and (max-width: 399px) {
  .p-benefits__item-sub {
    line-height: 1.5;
  }
}
.p-benefits__item-desc {
  line-height: 1.5;
  margin-top: 1.6875rem;
  max-width: 31.25rem;
  transition: 0.3s ease all;
}
@media screen and (max-width: 767px) {
  .p-benefits__item-desc {
    margin-top: 2.25rem;
  }
}
@media screen and (max-width: 399px) {
  .p-benefits__item-desc {
    line-height: 1.5;
  }
}
.p-benefits__item-view-more-btn {
  position: absolute;
  width: clamp(2.625rem, 0.958rem + 7.11vw, 3.625rem);
  height: clamp(2.625rem, 0.958rem + 7.11vw, 3.625rem);
  top: clamp(10.625rem, -3.542rem + 60.44vw, 19.125rem);
  right: clamp(0.813rem, 0.083rem + 3.11vw, 1.25rem);
  border: 0.125rem solid #333333;
  background: #333333;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.3s ease all;
}
.p-benefits__item-view-more-btn > .arrow-bg-black {
  color: #fff;
}

.p-blog {
  padding-top: clamp(4.875rem, 4.655rem + 0.94vw, 5.5rem);
  padding-bottom: clamp(3.75rem, 3.31rem + 1.88vw, 5rem);
  background: #FDF8F0;
}
.p-blog__inner {
  position: relative;
  max-width: 64rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(1.063rem, 0.688rem + 1.6vw, 2.125rem);
  padding-left: clamp(1.063rem, 0.688rem + 1.6vw, 2.125rem);
}
.p-blog__title {
  margin-bottom: clamp(2.625rem, 2.229rem + 1.69vw, 3.75rem);
}
.p-blog__title-main {
  margin-bottom: clamp(2.688rem, 2.027rem + 2.82vw, 4.563rem);
}
.p-blog__btn {
  position: absolute;
  top: -0.1875rem;
  right: 3.375rem;
  display: flex;
  transition: 0.3s ease all;
}
.p-blog__btn:hover > .p-blog__btn-img {
  border: 0.125rem solid #E65C00;
  transition: 0.3s ease all;
}
.p-blog__btn:hover > .p-blog__btn-img > i {
  color: #E65C00;
  transition: 0.3s ease all;
}
.p-blog__btn:hover > .p-blog__btn-text {
  color: #E65C00;
  text-decoration: underline #E65C00 0.125rem;
  transition: 0.3s ease all;
}
@media screen and (max-width: 767px) {
  .p-blog__btn {
    position: static;
    margin-top: 3.25rem;
  }
}
.p-blog__btn-img {
  width: 3.625rem;
  height: 3.625rem;
  border: 0.0625rem solid #333333;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.3s ease all;
}
.p-blog__btn-img > i {
  color: #333333;
  transition: 0.4s ease all;
}
.p-blog__btn-text {
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 1rem;
  margin-left: 0.8125rem;
  text-decoration: underline #333333 0.125rem;
  text-underline-offset: 0.125rem;
  transition: 0.4s ease all;
}

.p-blog-list {
  display: flex;
  justify-content: space-between;
  row-gap: clamp(0.563rem, 0.254rem + 1.31vw, 1.438rem);
  flex-wrap: wrap;
}
@media screen and (max-width: 999px) {
  .p-blog-list {
    flex-direction: column;
    width: 100%;
  }
}
.p-blog-list__item {
  border-radius: 0.625rem;
  overflow: hidden;
  display: flex;
  transition: 0.3s ease all;
}
.p-blog-list__item:hover > .p-blog-list__item-img-box img {
  transform: scale(1.2);
  transition: 0.3s ease all;
}
.p-blog-list__item:hover > .p-blog-list__item-text-box > .p-blog-list__item-text-box-category {
  color: #E65C00;
  transition: 0.3s ease all;
}
.p-blog-list__item:hover > .p-blog-list__item-text-box > .p-blog-list__item-text-box-desc {
  color: #E65C00;
  transition: 0.3s ease all;
}
.p-blog-list__item:hover > .p-blog-list__item-text-box > .p-blog-list__item-text-box-date {
  color: #E65C00;
  transition: 0.3s ease all;
}
@media screen and (max-width: 399px) {
  .p-blog-list__item {
    height: 7.5625rem;
  }
}
.p-blog-list__item-img-box {
  width: 9.8125rem;
  height: 11.3125rem;
  overflow: hidden;
}
@media screen and (max-width: 399px) {
  .p-blog-list__item-img-box {
    width: 35.483871%;
    height: 7.5625rem;
  }
}
.p-blog-list__item-img-box img {
  width: 157px;
  height: 181px;
  object-fit: cover;
  transition: 0.3s ease all;
}
@media screen and (max-width: 399px) {
  .p-blog-list__item-img-box img {
    height: 121px;
  }
}
.p-blog-list__item-text-box {
  display: flex;
  width: 18.4375rem;
  flex-direction: column;
  padding-top: clamp(0.563rem, 0.32rem + 1.03vw, 1.25rem);
  padding-right: clamp(0.438rem, 0.085rem + 1.5vw, 1.438rem);
  padding-bottom: clamp(0.313rem, -0.018rem + 1.41vw, 1.25rem);
  padding-left: clamp(1.125rem, 1.037rem + 0.38vw, 1.375rem);
  background: #fff;
}
@media screen and (max-width: 999px) {
  .p-blog-list__item-text-box {
    width: 70%;
  }
}
@media screen and (max-width: 399px) {
  .p-blog-list__item-text-box {
    width: 64.516129%;
  }
}
.p-blog-list__item-text-box-toppage {
  background: #fff;
}
.p-blog-list__item-text-box-category {
  font-size: clamp(0.75rem, 0.706rem + 0.19vw, 0.875rem);
  margin-bottom: clamp(0.625rem, 0.339rem + 1.22vw, 1.438rem);
  margin-left: clamp(1rem, 0.956rem + 0.19vw, 1.125rem);
  color: #333333;
  position: relative;
  transition: 0.3s ease all;
}
.p-blog-list__item-text-box-category::before {
  content: "";
  position: absolute;
  left: -1.125rem;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/categorry.png");
  background-position: center;
  background-size: cover;
  width: clamp(0.75rem, 0.706rem + 0.19vw, 0.875rem);
  height: 0.875rem;
}
@media screen and (max-width: 399px) {
  .p-blog-list__item-text-box-category::before {
    left: -1rem;
  }
}
.p-blog-list__item-text-box-desc {
  font-size: clamp(0.875rem, 0.787rem + 0.38vw, 1.125rem);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: auto;
  text-decoration: underline #333333 0.0625rem;
  text-underline-offset: clamp(0.125rem, 0.103rem + 0.09vw, 0.188rem);
  color: #333333;
  transition: 0.3s ease all;
}
.p-blog-list__item-text-box-date {
  font-size: 0.75rem;
  color: #333333;
  transition: 0.3s ease all;
}

.p-recruitment {
  padding-top: clamp(1.938rem, 0.705rem + 5.26vw, 5.438rem);
  padding-bottom: clamp(5.5rem, 4.378rem + 4.79vw, 8.688rem);
  background: #FDF8F0;
  overflow: hidden;
}
.p-recruitment__inner {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  padding-right: clamp(1.063rem, 0.688rem + 1.6vw, 2.125rem);
  padding-left: clamp(1.063rem, 0.688rem + 1.6vw, 2.125rem);
}
.p-recruitment__title {
  text-align: center;
  margin-bottom: clamp(1.75rem, 1.046rem + 3vw, 3.75rem);
}
@media screen and (max-width: 999px) {
  .p-recruitment__title {
    text-align: left;
  }
}
.p-recruitment__title-main {
  margin-bottom: clamp(2.688rem, 2.599rem + 0.38vw, 2.938rem);
}
.p-recruitment__top-wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-recruitment__top-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.p-recruitment__link {
  color: #333333;
  background: #fff;
  font-weight: bold;
  font-size: 1.25rem;
  height: clamp(5.375rem, 4.627rem + 3.19vw, 7.5rem);
  position: relative;
  display: grid;
  place-items: center;
  transition: 0.3s ease all;
}
.p-recruitment__link::after {
  position: absolute;
  content: "";
  right: 1.7rem;
  width: 0.875rem;
  height: 0.875rem;
  border-top: 0.25rem solid #333333;
  border-right: 0.25rem solid #333333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.p-recruitment__link:hover {
  color: #fff;
  background: #333333;
  transition: 0.3s ease all;
}
.p-recruitment__link:hover::after {
  border-top: 0.25rem solid #fff;
  border-right: 0.25rem solid #fff;
  transition: 0.3s ease all;
}

.p-recruitment-link__top {
  width: 49.1632%;
  margin-bottom: clamp(1.188rem, 1.143rem + 0.19vw, 1.313rem);
}
@media screen and (max-width: 767px) {
  .p-recruitment-link__top {
    width: 100%;
  }
}
.p-recruitment-link__bottom {
  width: 100%;
}

.p-footer__top {
  padding: 0 1rem;
  background-image: url(../images/cta.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  width: 100vw;
  height: clamp(15.625rem, 10.38rem + 22.38vw, 30.52rem);
}
.p-footer__top-box {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  padding-top: clamp(1.5rem, 0.928rem + 2.44vw, 3.125rem);
  padding-bottom: clamp(1.813rem, 1.35rem + 1.97vw, 3.125rem);
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 59.75rem;
  width: calc(100vw - 32px);
  border-radius: 1.25rem;
  background: #fff;
  text-align: center;
}
.p-footer__top-box-text {
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: clamp(1.5rem, 1.346rem + 0.66vw, 1.938rem);
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
}
@media screen and (max-width: 399px) {
  .p-footer__top-box-text {
    line-height: 2.5;
  }
}
.p-footer__top-box-link {
  background: #E65C00;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-weight: 700;
  color: #fff;
  width: clamp(13.75rem, 6.356rem + 31.55vw, 34.75rem);
  height: clamp(3.375rem, 3.023rem + 1.5vw, 4.375rem);
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  margin-right: auto;
  margin-left: auto;
  position: relative;
  display: grid;
  place-items: center;
  transition: 0.3s ease all;
}
@media screen and (max-width: 399px) {
  .p-footer__top-box-link {
    width: 12.5rem;
  }
}
.p-footer__top-box-link:hover {
  background: #D45400;
  transition: 0.3s ease all;
}
.p-footer__top-box-link::after {
  position: absolute;
  content: "";
  right: 1.5rem;
  width: 0.75rem;
  height: 0.75rem;
  border-top: 0.25rem solid #fff;
  border-right: 0.25rem solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.p-footer__bottom {
  background: #fff;
}
.p-footer__bottom-outer {
  max-width: 82rem;
  height: 27.625rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: clamp(9rem, 7.79rem + 5.16vw, 12.438rem);
  padding-bottom: 4.1875rem;
  background: #FDF8F0;
  border-radius: 0, 0, 1.25rem, 1.25rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom-outer {
    margin-bottom: 0;
    height: auto;
  }
}
.p-footer__bottom-inner {
  max-width: 61.75rem;
  height: 10.9375rem;
  padding: 0 1rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom-inner {
    flex-direction: column-reverse;
    height: auto;
  }
}
.p-footer__bottom-logo-box {
  width: 15.6875rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-right: 6.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom-logo-box {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    align-items: center;
    text-align: center;
  }
}
.p-footer__bottom-logo {
  margin-bottom: auto;
  transition: all ease 0.3;
}
.p-footer__bottom-logo:hover {
  opacity: 0.7;
  transition: all ease 0.3;
}
.p-footer__bottom-logo img {
  margin-top: -0.0625rem;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}
.p-footer__bottom-logo a {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom-logo {
    margin-bottom: 2.75rem;
    margin-right: 0;
    margin-left: 0;
  }
}
.p-footer__bottom-nav-box {
  max-width: 37.3125rem;
  width: 62.447699%;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom-nav-box {
    margin-right: auto;
    margin-left: auto;
    width: 90%;
  }
}
.p-footer__bottom-nav {
  margin-top: 1.0625rem;
  margin-bottom: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom-nav {
    margin-bottom: 3.4375rem;
  }
}
.p-footer__bottom-nav-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.375rem;
  row-gap: 2.5625rem;
}
@media screen and (max-width: 399px) {
  .p-footer__bottom-nav-list {
    flex-direction: column;
    text-align: center;
    row-gap: 1.25rem;
  }
}
.p-footer__bottom-nav-list-item {
  font-weight: bold;
  font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
  color: #333333;
  transition: all 0.3s ease;
}
.p-footer__bottom-nav-list-item:hover {
  color: #E65C00;
  transition: all 0.3s ease;
}
.p-footer__bottom-icon {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom-icon {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1.875rem;
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
.p-footer__bottom-icon-list {
  display: flex;
  column-gap: 1rem;
  justify-content: center;
}
.p-footer__bottom-icon-list-item {
  width: 1.5rem;
  height: 1.5rem;
  transition: all 0.3s ease;
}
.p-footer__bottom-icon-list-item:hover {
  opacity: 0.7;
  transition: all 0.3s ease;
}
.p-footer__bottom-copyright {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 0.75rem;
  color: #999;
  margin-bottom: -0.0625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom-copyright {
    text-align: center;
  }
}
@media screen and (max-width: 399px) {
  .p-footer__bottom-copyright {
    margin-right: -0.4375rem;
  }
}
.p-footer__bottom-note {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: #999;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom-note {
    text-align: center;
  }
}

.p-sub-fv {
  height: 339px;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 399px) {
  .p-sub-fv {
    height: 200px;
  }
}
.p-sub-fv.p-sub-fv--about-us {
  background-image: url(../images/about-fv.jpeg);
}
.p-sub-fv.p-sub-fv--staff {
  background-image: url(../images/staff-fv.jpeg);
}
.p-sub-fv.p-sub-fv--benefits {
  background-image: url(../images/benefits-fv.jpeg);
}
.p-sub-fv.p-sub-fv--career {
  background-image: url(../images/career-fv.jpeg);
}
.p-sub-fv.p-sub-fv--blog {
  background-image: url(../images/blog-fv.jpeg);
}
.p-sub-fv.p-sub-fv--details {
  background-image: url(../images/details-fv.jpeg);
}
.p-sub-fv.p-sub-fv--faq {
  background-image: url(../images/faq-fv.jpeg);
  background-position: 10%, 50%;
}
.p-sub-fv__inner {
  position: relative;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 22px;
}
.p-sub-fv__inner-title {
  position: absolute;
  left: 22px;
  top: 75px;
  font-weight: normal;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 4rem;
  color: #333333;
  background: #fff;
  padding: 2px 10px;
  line-height: 1;
}
@media screen and (max-width: 399px) {
  .p-sub-fv__inner-title {
    font-size: 37px;
    top: 50px;
  }
}
.p-sub-fv__inner-sub {
  position: absolute;
  top: 163px;
  left: 22px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  color: #333333;
  background: #fff;
  padding: 3px 10px;
}
@media screen and (max-width: 399px) {
  .p-sub-fv__inner-sub {
    font-size: 16px;
    top: 100px;
  }
}
.p-sub-fv__inner-text {
  position: absolute;
  top: 211px;
  left: 22px;
  line-height: 1;
  font-size: 1rem;
  font-weight: bold;
  color: #D45400;
  background: #fff;
  padding: 7px 10px;
}
@media screen and (max-width: 399px) {
  .p-sub-fv__inner-text {
    font-size: 12px;
    top: 130px;
  }
}

.p-breadcrumb {
  background: #F0F0F0;
}
.p-breadcrumb__inner {
  background: #F0F0F0;
  margin: auto;
  padding: 1.125rem 1.5rem 1.25rem;
  max-width: 64rem;
  width: 100%;
  line-height: 1;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__inner {
    padding: 0.625rem 0.75rem;
  }
}

.p-breadcrumb span {
  line-height: 1;
  font-size: 0.875rem;
}
@media screen and (max-width: 399px) {
  .p-breadcrumb span {
    font-size: 12px;
  }
}

.p-breadcrumb__top {
  margin-right: 2px;
}

.p-important {
  padding-top: clamp(3.75rem, 3.618rem + 0.56vw, 4.125rem);
}
.p-important__inner {
  max-width: 64rem;
  width: 100%;
  padding-left: clamp(1rem, 0.868rem + 0.56vw, 1.375rem);
  padding-right: clamp(1rem, 0.868rem + 0.56vw, 1.375rem);
  margin: 0 auto;
}
.p-important__title {
  margin-bottom: clamp(2.875rem, 1.995rem + 3.76vw, 5.375rem);
}
.p-important__list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.563rem, 1.342rem + 0.94vw, 2.188rem);
}
.p-important__item {
  background: #FDF8F0;
  border-radius: 0.625rem;
  padding-top: clamp(1.625rem, 1.537rem + 0.38vw, 1.875rem);
  padding-bottom: clamp(1.625rem, 1.537rem + 0.38vw, 1.875rem);
  padding-right: clamp(1.875rem, 0.775rem + 4.69vw, 5rem);
  padding-left: clamp(1.875rem, 0.775rem + 4.69vw, 5rem);
}
.p-important__item + .p-important__inner-list-item {
  margin-top: clamp(1.563rem, 1.342rem + 0.94vw, 2.188rem);
}
.p-important__item-title-wrap {
  display: flex;
  gap: clamp(0.75rem, 0.552rem + 0.85vw, 1.313rem);
}
@media screen and (max-width: 767px) {
  .p-important__item-title-wrap {
    flex-direction: column;
    align-items: center;
  }
}
.p-important__item-title-wrap span {
  font-weight: normal;
  height: clamp(2.5rem, 2.324rem + 0.75vw, 3rem);
  width: clamp(2.5rem, 2.324rem + 0.75vw, 3rem);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: clamp(1rem, 0.956rem + 0.19vw, 1.125rem);
  border: #333333 0.0625rem solid;
}
.p-important__item-title {
  font-weight: bold;
  font-size: clamp(1rem, 0.912rem + 0.38vw, 1.25rem);
  margin-bottom: clamp(1rem, 0.89rem + 0.47vw, 1.313rem);
  padding: 0.875rem 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-important__item-title {
    padding: 0;
    line-height: 1.5;
    text-align: center;
  }
}
.p-important__item-text {
  font-size: 1rem;
  line-height: 1.5;
}

.p-message {
  padding: 7.8125rem 0 0;
}
@media screen and (max-width: 399px) {
  .p-message {
    padding: 5.625rem 0 0;
  }
}
.p-message__inner {
  max-width: 64rem;
  width: 100%;
  padding: 0 1.375rem;
  margin: 0 auto;
}
.p-message__title {
  margin-bottom: 6.8125rem;
}
@media screen and (max-width: 399px) {
  .p-message__title {
    margin-bottom: 1.875rem;
  }
}
.p-message__wrap {
  display: flex;
  gap: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-message__wrap {
    gap: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-message__wrap {
    flex-direction: column-reverse;
    place-items: center;
  }
}
.p-message__img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-message__img {
    max-width: 25rem;
  }
}
.p-message__img img {
  width: 100%;
  aspect-ratio: 484/629;
  object-fit: cover;
}
.p-message__content {
  max-width: 29.9375rem;
  width: 100%;
  padding-top: 18px;
}
.p-message__text {
  margin-top: 1.125rem;
}
.p-message__heading {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.5;
  line-break: strict;
  word-break: keep-all;
  margin-bottom: 2.75rem;
  margin-left: -5rem;
}
@media screen and (max-width: 767px) {
  .p-message__heading {
    margin-left: 0;
  }
}
@media screen and (max-width: 399px) {
  .p-message__heading {
    font-size: 1.375rem;
    margin-bottom: 1.875rem;
  }
}
.p-message__desc {
  font-size: 1rem;
  line-height: 2;
  color: #333333;
}
.p-message__desc + .p-message__desc {
  margin-top: 1.9375rem;
}
@media screen and (max-width: 399px) {
  .p-message__desc + .p-message__desc {
    margin-top: 1.25rem;
  }
}
.p-message__name {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.75rem;
  margin-bottom: 0;
}
.p-message__name img {
  display: block;
  width: 100%;
  max-width: 13.75rem;
  height: auto;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .p-message__name img {
    max-width: 11.25rem;
    margin-left: auto;
    margin-right: 0;
  }
}
@media screen and (max-width: 399px) {
  .p-message__name img {
    max-width: 10rem;
  }
}

.p-business {
  padding: 6.9375rem 0 0;
}
.p-business__inner {
  max-width: 64rem;
  width: 100%;
  margin: 0 auto;
}
.p-business__inner-title {
  padding: 0 1.375rem;
  margin-bottom: 5.125rem;
}
@media screen and (max-width: 399px) {
  .p-business__inner-title {
    margin-bottom: 2.5rem;
  }
}
.p-business__inner-title-main {
  margin-bottom: 2.75rem;
}
@media screen and (max-width: 399px) {
  .p-business__inner-title-main {
    margin-bottom: 1.5rem;
  }
}
.p-business__inner-title-sub {
  max-width: 42.5625rem;
  margin-top: 0;
  line-height: 1.5;
}
.p-business__inner-list-item-content {
  max-width: 31.125rem;
  width: 100%;
  padding-top: 1.375rem;
}
.p-business__inner-list-item-content-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  color: #D45400;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 399px) {
  .p-business__inner-list-item-content-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.p-business__inner-list-item-content-text {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 399px) {
  .p-business__inner-list-item-content-text {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.p-business__inner-list-item-content-desc {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 26.875rem;
}
.p-business__inner-list-item-img {
  max-width: 28.875rem;
  width: 100%;
}
.p-business__inner-list-item-img img {
  overflow: hidden;
  aspect-ratio: 462/264;
  border-radius: 1.25rem;
  object-fit: cover;
  width: 100%;
}
.p-business__inner-list-item {
  display: flex;
  gap: 2.625rem;
  padding: 3.0625rem 1.375rem;
  border-bottom: 1px solid #E65C00;
}
@media screen and (max-width: 399px) {
  .p-business__inner-list-item {
    gap: 1.5rem;
  }
}
.p-business__inner-list-item:first-child {
  padding-top: 0;
  gap: 2.9375rem;
}
@media screen and (max-width: 399px) {
  .p-business__inner-list-item:first-child {
    gap: 1.5rem;
  }
}
.p-business__inner-list-item:first-child > .p-business__inner-list-item-img {
  max-width: 28.5625rem;
}
.p-business__inner-list-item:first-child > .p-business__inner-list-item-img img {
  aspect-ratio: 457/261;
}
.p-business__inner-list-item:first-child > .p-business__inner-list-item-content > .p-business__inner-list-item-text {
  line-height: 1;
}
.p-business__inner-list-item:last-child {
  padding-top: 60px;
  padding-bottom: 0;
  border-bottom: none;
}
.p-business__inner-list-item:last-child > .p-business__inner-list-item-content {
  padding-top: 11px;
  max-width: 432px;
}
@media screen and (max-width: 767px) {
  .p-business__inner-list-item {
    flex-direction: column-reverse;
  }
}

.p-company {
  padding: 9.25rem 0 8.6875rem;
}
@media screen and (max-width: 399px) {
  .p-company {
    padding: 6.25rem 0 6rem;
  }
}

.p-company__title {
  margin-bottom: 7.0625rem;
}
@media screen and (max-width: 399px) {
  .p-company__title {
    margin-bottom: 2.5rem;
  }
}

.p-company__inner {
  margin: auto;
  padding: 0 1.375rem;
  max-width: 64rem;
  width: 100%;
}

.p-sub-staff {
  padding-top: clamp(5rem, 3.9rem + 4.69vw, 8.125rem);
  padding-bottom: clamp(4.063rem, 3.49rem + 2.44vw, 5.688rem);
}

.p-sub-staff__inner {
  max-width: 64rem;
  width: 100%;
  padding: 0 1.1875rem;
  margin: 0 auto;
}

.p-sub-staff__wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  row-gap: clamp(2.5rem, 2.324rem + 0.75vw, 3rem);
  column-gap: 43px;
  justify-content: center;
}

.p-sub-blog {
  padding-top: clamp(4.75rem, 3.562rem + 5.07vw, 8.125rem);
  padding-bottom: clamp(3.75rem, 2.011rem + 7.42vw, 8.688rem);
  background: #fff;
}
.p-sub-blog__inner {
  max-width: 64rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(1.063rem, 0.688rem + 1.6vw, 2.125rem);
  padding-left: clamp(1.063rem, 0.688rem + 1.6vw, 2.125rem);
}

.p-blog-list__item-text-box--sub-background {
  background: #FDF8F0;
}

.p-system {
  padding-top: clamp(5.625rem, 4.415rem + 5.16vw, 9.063rem);
}
.p-system__inner {
  max-width: 64rem;
  width: 100%;
  padding: 0 1.375rem;
  margin: 0 auto;
}
.p-system__title {
  margin-bottom: clamp(3.313rem, 1.992rem + 5.63vw, 7.063rem);
}

.p-system-profile__description--margin-left {
  margin-left: -0.0625rem;
}

.p-system-voice {
  padding-top: clamp(5.625rem, 4.789rem + 3.57vw, 8rem);
  padding-bottom: clamp(6.25rem, 5.392rem + 3.66vw, 8.688rem);
}

.p-system-voice__inner {
  max-width: 64rem;
  width: 100%;
  padding: 0 1.375rem;
  margin: 0 auto;
}

.p-system-voice__title {
  margin-bottom: 1.4375rem;
}

.p-system-voice__content {
  display: flex;
  gap: 2.875rem;
  margin-bottom: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-system-voice__content {
    flex-direction: column;
  }
}

.p-system-voice__item {
  width: calc(50% - 23px);
}
@media screen and (max-width: 767px) {
  .p-system-voice__item {
    width: 100%;
  }
}

.p-system-voice__join {
  line-height: 1;
  font-weight: bold;
  color: #D45400;
  margin-bottom: 0.8125rem;
}

.p-system-voice__name {
  font-weight: bold;
  line-height: 1;
  font-size: 1.5rem;
  margin-bottom: 1.5625rem;
}

.p-system-voice__description {
  line-height: 1.8;
}

.p-system-voice__img img {
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.p-career {
  padding-top: clamp(5.625rem, 4.415rem + 5.16vw, 9.063rem);
  padding-bottom: clamp(3.75rem, 2.011rem + 7.42vw, 8.688rem);
}

.p-career__inner {
  max-width: 64rem;
  width: 100%;
  padding: 0 1.375rem;
  margin: 0 auto;
}

.p-career__title {
  margin-bottom: clamp(2.5rem, 2.324rem + 0.75vw, 3rem);
}

.p-career__title-main {
  margin-bottom: clamp(2.688rem, 1.147rem + 6.57vw, 7.063rem);
}

.p-career__img-wrap {
  margin-bottom: clamp(4.313rem, 3.872rem + 1.88vw, 5.563rem);
}

.p-career__img {
  margin-bottom: clamp(1.688rem, 1.467rem + 0.94vw, 2.313rem);
}
.p-career__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0.625rem;
}

.p-career__img-description {
  line-height: 1;
}

.p-career__item {
  margin-bottom: 2.375rem;
}

.p-career__item-heading {
  background: #E65C00;
  color: #fff;
  border-radius: 0.625rem;
  line-height: 1;
  font-weight: bold;
  padding: 0.75rem 1.3125rem;
  margin-bottom: clamp(1.25rem, 0.59rem + 2.82vw, 3.125rem);
  font-size: clamp(1.25rem, 1.162rem + 0.38vw, 1.5rem);
}

.p-career__item-description {
  line-height: 1.8;
}

.p-details-menu {
  padding-top: clamp(5rem, 3.57rem + 6.1vw, 9.063rem);
}

.p-details-menu__title-sub {
  margin-top: 2.5rem;
}

.p-details-menu__inner {
  max-width: 64rem;
  width: 100%;
  padding: 0 1.375rem;
  margin: 0 auto;
}

.p-details-menu__title {
  margin-bottom: clamp(1.875rem, 0.995rem + 3.76vw, 4.375rem);
}

.p-details-consulting {
  padding: 6.0625rem 0 0;
}

.p-details-consulting__inner {
  max-width: 64rem;
  width: 100%;
  padding: 0 1.375rem;
  margin: 0 auto;
}

.p-details-consulting__title {
  margin-bottom: clamp(3.125rem, 1.739rem + 5.92vw, 7.063rem);
}

.p-details-consulting__list {
  padding-bottom: 35px;
}

.p-details-consulting__list-first {
  padding-bottom: 42px;
}

.p-details-solution {
  padding: 5.5rem 0 0;
}

.p-details-solution__inner {
  max-width: 64rem;
  width: 100%;
  padding: 0 1.375rem;
  margin: 0 auto;
}

.p-details-solution__title {
  margin-bottom: clamp(3.125rem, 1.739rem + 5.92vw, 7.063rem);
}

.p-details-solution__list {
  padding-bottom: 35px;
}

.p-details-solution__list-first {
  padding-bottom: 42px;
}

.p-details-engineer {
  padding-top: 5.5rem;
  padding-bottom: clamp(5rem, 3.702rem + 5.54vw, 8.688rem);
}

.p-details-engineer__inner {
  max-width: 64rem;
  width: 100%;
  padding: 0 1.375rem;
  margin: 0 auto;
}

.p-details-engineer__title {
  margin-bottom: clamp(2.5rem, 0.893rem + 6.85vw, 7.063rem);
}

.p-details-engineer__list {
  padding-bottom: 35px;
}

.p-details-engineer__list-first {
  padding-bottom: 42px;
}

.p-faq-apply {
  padding-top: clamp(5.375rem, 5.155rem + 0.94vw, 6rem);
  background: #fff;
}

.p-faq-apply__inner {
  max-width: 64rem;
  width: 100%;
  padding: 0 1.375rem;
  margin: 0 auto;
}

.p-faq-apply__title {
  margin-bottom: clamp(2.5rem, 0.96rem + 6.57vw, 6.875rem);
}

.p-faq-career {
  padding-top: clamp(5rem, 4.868rem + 0.56vw, 5.375rem);
}

.p-faq-career__inner {
  max-width: 64rem;
  width: 100%;
  padding: 0 1.375rem;
  margin: 0 auto;
}

.p-faq-career__title {
  margin-bottom: clamp(2.5rem, 0.96rem + 6.57vw, 6.875rem);
}

.p-faq-benefits {
  padding-top: clamp(5rem, 4.824rem + 0.75vw, 5.5rem);
  padding-bottom: clamp(5rem, 3.702rem + 5.54vw, 8.688rem);
}

.p-faq-benefits__inner {
  max-width: 64rem;
  width: 100%;
  padding: 0 1.375rem;
  margin: 0 auto;
}

.p-faq-benefits__title {
  margin-bottom: clamp(2.5rem, 0.96rem + 6.57vw, 6.875rem);
}

.p-form {
  padding: 2rem 0 3.6875rem;
  border-top: 0.0625rem dotted #D45400;
}
@media screen and (max-width: 399px) {
  .p-form {
    padding: 1.5rem 0 2.5rem;
  }
}

.wpcf7-form:not(:has(.p-form)) {
  padding-top: 2rem;
  border-top: 0.0625rem dotted #D45400;
}
@media screen and (max-width: 399px) {
  .wpcf7-form:not(:has(.p-form)) {
    padding-top: 1.5rem;
  }
}

.p-form__wrap {
  display: flex;
  width: 100%;
  border-top: none;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .p-form__wrap {
    flex-direction: column;
    gap: 0.625rem;
  }
}

.p-form__wrap.p-form__wrap--textarea {
  align-items: flex-start;
}

.p-form > .p-form__wrap:first-child,
.wpcf7-form > .p-form__wrap:first-child,
.wpcf7-form .p-form > .p-form__wrap:first-child {
  margin-top: 1.25rem;
}
@media screen and (max-width: 399px) {
  .p-form > .p-form__wrap:first-child,
  .wpcf7-form > .p-form__wrap:first-child,
  .wpcf7-form .p-form > .p-form__wrap:first-child {
    margin-top: 1rem;
  }
}

.p-form__wrap + .p-form__wrap {
  margin-top: 1.625rem;
  padding-top: 1.25rem;
  border-top: 0.0625rem solid rgba(230, 92, 0, 0.45);
}

.p-form__label {
  font-size: 1rem;
  line-height: 1, 2;
  max-width: 10.1875rem;
  width: 100%;
  padding-right: 2.1875rem;
}
@media screen and (max-width: 399px) {
  .p-form__label {
    margin-bottom: 0.375rem;
    max-width: 100%;
  }
}

.p-form__label:has(+ .p-form__input) {
  display: flex;
  align-items: center;
}

.p-form__label span {
  color: #D45400;
}

.p-form__input,
.p-form__textarea {
  flex-grow: 1;
}

.p-form__submit {
  margin-top: 3.75rem;
  text-align: center;
}

/* CF7標準マークアップ向け（クラス無しでも崩れない） */
.p-entry .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}
.p-entry .wpcf7-form > p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
}
.p-entry .wpcf7-form > p:has(.wpcf7-acceptance),
.p-entry .wpcf7-form > p:has(input[type=checkbox]) {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}
.p-entry .wpcf7-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
}
.p-entry .wpcf7-form .wpcf7-acceptance {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}
.p-entry .wpcf7-form .wpcf7-acceptance label,
.p-entry .wpcf7-form .wpcf7-list-item label {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.p-entry .wpcf7-form .wpcf7-list-item {
  margin: 0;
}
.p-entry .wpcf7-form input[type=checkbox] {
  width: auto;
  max-width: none;
  padding: 0;
  margin: 0;
  appearance: auto;
  background: #fff;
  border-radius: 0;
}
.p-entry .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.p-entry .wpcf7-form input[type=text],
.p-entry .wpcf7-form input[type=email],
.p-entry .wpcf7-form input[type=tel],
.p-entry .wpcf7-form input[type=url],
.p-entry .wpcf7-form input[type=number],
.p-entry .wpcf7-form input[type=date],
.p-entry .wpcf7-form textarea,
.p-entry .wpcf7-form select {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  line-height: 1.4;
  color: #757575;
  border-radius: 0.625rem;
  border: 1px solid #E8DFD4;
  appearance: none;
  background-color: #FDF8F0;
}
.p-entry .wpcf7-form select {
  background-image: url(../images/select-arrow.png);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: right 16px center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.p-entry .wpcf7-form textarea {
  min-height: 12.5rem;
  resize: vertical;
}
.p-entry .wpcf7-form input[type=text]:focus,
.p-entry .wpcf7-form input[type=email]:focus,
.p-entry .wpcf7-form input[type=tel]:focus,
.p-entry .wpcf7-form input[type=url]:focus,
.p-entry .wpcf7-form input[type=number]:focus,
.p-entry .wpcf7-form input[type=date]:focus,
.p-entry .wpcf7-form textarea:focus,
.p-entry .wpcf7-form select:focus {
  border-color: #ccc;
  box-shadow: none;
  outline: none;
}
.p-entry .wpcf7-form .wpcf7-submit,
.p-entry .wpcf7-form input[type=submit],
.p-entry .wpcf7-form button[type=submit] {
  display: block;
  margin: 1.25rem auto 0;
  padding: 1.125rem 4.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: #333333;
  background: #fff;
  border: 1px solid #333333;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.p-entry .wpcf7-form input[type=submit]:hover,
.p-entry .wpcf7-form button[type=submit]:hover {
  opacity: 0.8;
}
.p-entry .wpcf7-form .wpcf7-not-valid-tip {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
}

.p-entry {
  padding: 2.0625rem 0 3.5625rem;
  background: #FDF8F0;
  margin-bottom: 8.6875rem;
}
@media screen and (max-width: 399px) {
  .p-entry {
    margin-bottom: 5rem;
  }
}

.p-entry__inner {
  max-width: 55rem;
  width: 100%;
  padding: 3.625rem 4.4375rem 1.375rem;
  margin: 0 auto;
  border-radius: 0.625rem;
  background: #fff;
}
@media screen and (max-width: 399px) {
  .p-entry__inner {
    padding: 2.375rem 1.0625rem 1rem;
  }
}

.p-entry__title {
  padding-bottom: 2.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 399px) {
  .p-entry__title {
    padding-bottom: 1.75rem;
  }
}

.p-entry__title-main--br {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-entry__title-main--br {
    display: block;
  }
}

.p-entry__title-sub {
  margin-bottom: 1.8125rem;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 399px) {
  .p-entry__title-sub {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
  }
}

.p-entry__title-main {
  margin-bottom: 3.1875rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-entry__title-main {
    line-height: 1.2;
  }
}
@media screen and (max-width: 399px) {
  .p-entry__title-main {
    margin-bottom: 1.625rem;
    font-size: 1.625rem;
  }
}
.p-entry__title-main span {
  color: #D45400;
}

.p-entry__title-description {
  max-width: 30.9375rem;
  margin-left: 7.125rem;
  margin-right: auto;
  line-height: 1.5;
}
@media screen and (max-width: 399px) {
  .p-entry__title-description {
    margin-left: auto;
  }
}

.p-entry__title-note {
  display: inline-block;
  margin-top: 0.5rem;
  color: #E65C00;
  font-size: 0.8125rem;
  font-weight: 500;
}

.p-entry-thanks {
  padding-bottom: clamp(2.938rem, 2.717rem + 0.94vw, 3.563rem);
  padding-top: 2.0625rem;
  padding-right: 1.0625rem;
  padding-left: 1.0625rem;
  background: #FDF8F0;
  margin-bottom: clamp(5rem, 3.702rem + 5.54vw, 8.688rem);
}

.p-entry-thanks__inner {
  max-width: 55rem;
  width: 100%;
  padding-top: clamp(3.125rem, 2.949rem + 0.75vw, 3.625rem);
  padding-bottom: clamp(4.063rem, 3.402rem + 2.82vw, 5.938rem);
  padding-right: 1rem;
  padding-left: 1rem;
  margin: 0 auto;
  border-radius: 0.625rem;
  background: #fff;
}

.p-entry-thanks__title {
  text-align: center;
}

.p-entry-thanks__title-main {
  margin-bottom: clamp(2.5rem, 2.258rem + 1.03vw, 3.188rem);
  font-size: clamp(1.375rem, 1.155rem + 0.94vw, 2rem);
  font-weight: bold;
  line-height: 1;
}

.p-entry-thanks__title-description {
  line-height: 1.5;
}

.p-form-input input {
  padding: 1rem 1.25rem;
  width: 100%;
  font-size: 1rem;
  line-height: 1;
  color: #757575;
  border-radius: 0.625rem;
  border: 1px solid #E8DFD4;
  appearance: none;
  background-color: #FDF8F0;
  background-image: none;
}

.p-form-input input:focus {
  border: 1px solid #ccc;
  box-shadow: none;
  outline: none;
}

.p-form-input input::placeholder {
  color: #757575;
  line-height: 1;
}

.p-form-select {
  width: 100%;
}

.p-form__label-select {
  padding-top: 18px;
}

.p-form-select > div:first-of-type {
  margin-bottom: 15px;
}

.p-form-select div input {
  appearance: none;
  background-color: #FDF8F0;
  border: 1px solid #E8DFD4;
  color: #757575;
  font-size: 16px;
  border-radius: 10px;
  max-width: 168px;
  margin-right: 12px;
  padding: 16px 20px 16px 20px;
  line-height: 1;
}

.p-form-select div div select {
  appearance: none;
  padding: 21px 20px 21px 20px;
  font-size: 12px;
  line-height: 1;
  border-radius: 10px;
  color: #333333;
  background-image: url(../images/select-arrow.png);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: right 13px top 24px;
  background-color: #FDF8F0;
  border: 1px solid #E8DFD4;
  max-width: 168px;
  width: 100%;
  cursor: pointer;
  margin-right: 10px;
  line-height: 1;
}

.p-form-select div select::-ms-expand {
  display: none;
}

.p-form-select div select:focus {
  border: 1px solid #ccc;
  box-shadow: none;
  outline: none;
}

.p-form__select-input-flex-wrap {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
}

.p-form__select-input-flex {
  display: flex;
  align-items: center;
  width: 194px;
}

.p-form__select-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-form__unit {
  font-size: 16px;
}

.p-form__select-input-flex p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

/* ラジオを縦並びに */
.p-form-radio .wpcf7-list-item {
  display: block;
  margin-bottom: 23px;
}

.p-form-radio .wpcf7-list-item.last {
  margin-bottom: 4px;
}

/* inputは非表示 */
.p-form-radio input {
  display: none;
}

/* ラベルテキスト側 */
.p-form-radio .wpcf7-list-item-label {
  padding-left: 36px;
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

/* 丸（外枠） */
.p-form-radio .wpcf7-list-item-label::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #FDF8F0;
  border: 1px solid #E8DFD4;
  border-radius: 50%;
}

/* 黒丸（選択時） */
.p-form-radio input:checked + .wpcf7-list-item-label::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 7px;
  transform: translateY(-50%);
  background: #333333;
  border-radius: 50%;
}

.p-form__wrap--checkbox {
  padding-top: 17px;
}

.p-form-checkbox label {
  display: block;
}

.p-form__label-checkbox {
  line-height: 1.5;
}

.p-form-checkbox label:not(:first-of-type) {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-form-checkbox label:not(:first-of-type) {
    margin-top: 0;
    margin-left: 1.25rem;
  }
}
@media screen and (max-width: 399px) {
  .p-form-checkbox label:not(:first-of-type) {
    margin-left: 0;
  }
}

.p-form-checkbox {
  margin-top: 3px;
}

.p-form-checkbox input {
  display: none;
}

.p-form-checkbox input + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 2.375rem;
  position: relative;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 1.1875rem;
}

.p-form-checkbox input + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #FDF8F0;
  border: 1px solid #E8DFD4;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}

.p-form-checkbox input + span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.4375rem;
  transform: translateY(-50%);
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  background: #333333;
  transition: 0.3s;
  opacity: 0;
}

.p-form-checkbox input:checked + span::after {
  opacity: 1;
}

.p-form-textarea {
  width: 100%;
}

.p-form-textarea textarea {
  padding: 1.25rem 1.25rem;
  width: 100%;
  height: 15rem;
  font-size: 1rem;
  color: #757575;
  border-radius: 0.625rem;
  border: 1px solid #E8DFD4;
  appearance: none;
  background-color: #FDF8F0;
  background-image: none;
}

.p-form-textarea textarea:focus {
  border: 1px solid #ccc;
  box-shadow: none;
  outline: none;
}

.p-form__label-textarea {
  padding-top: 1.125rem;
}

.p-form-submit {
  margin-top: 3.875rem;
}
@media screen and (max-width: 399px) {
  .p-form-submit {
    margin-top: 2.5rem;
  }
}

.p-form-submit input {
  padding: 1.25rem 6rem 1.125rem;
  color: #333333;
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  background-color: #fff;
  background-image: none;
  border: 1px solid #333333;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.p-form-submit input:hover,
.p-form-submit input:focus {
  outline: none;
}

@media screen and (max-width: 767px) {
  .p-form-submit input:hover {
    opacity: 0.8;
  }
}

.p-form-submit input::-moz-foucus-inner {
  padding: 0;
  border: none;
}

.p-form-privacy {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 399px) {
  .p-form-privacy {
    margin-top: 3.75rem;
  }
}

.p-form-privacy input {
  display: none;
}

.p-form-privacy input + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 1.4375rem;
  position: relative;
  font-size: 0.875rem;
  line-height: 1;
}

.p-form-privacy input + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #FDF8F0;
  border: 1px solid #E8DFD4;
  display: block;
  width: 1rem;
  height: 1rem;
}

.p-form-privacy input + span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.25rem;
  transform: translateY(-50%);
  display: block;
  width: 0.4375rem;
  height: 0.4375rem;
  background: #333333;
  transition: 0.3s;
  opacity: 0;
}

.p-form-privacy input:checked + span::after {
  opacity: 1;
}

.staff-single-fv {
  background: #FDF8F0;
}
.staff-single-fv__inner {
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto;
  padding: 43px 24px;
  display: flex;
  gap: 86px;
}
@media screen and (max-width: 999px) {
  .staff-single-fv__inner {
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
    padding: 32px 20px;
  }
}
.staff-single-fv__text-wrap {
  padding-top: 31px;
  min-width: 0;
}
@media screen and (max-width: 999px) {
  .staff-single-fv__text-wrap {
    padding-top: 0;
    width: 100%;
  }
}
.staff-single-fv__message-top {
  margin-bottom: 18px;
}
.staff-single-fv__message-top span {
  font-size: 36px;
  color: #333333;
  font-weight: bold;
  padding: 3px 10px;
  background: #fff;
  display: inline-block;
  line-height: 1.4;
}
@media screen and (max-width: 999px) {
  .staff-single-fv__message-top span {
    font-size: clamp(1.25rem, 0.875rem + 1.67vw, 2.25rem);
  }
}
.staff-single-fv__message-bottom {
  margin-bottom: 30px;
}
.staff-single-fv__message-bottom span {
  font-size: 24px;
  color: #333333;
  font-weight: bold;
  padding: 3px 10px;
  background: #fff;
  display: inline-block;
  line-height: 1.4;
}
@media screen and (max-width: 999px) {
  .staff-single-fv__message-bottom span {
    font-size: clamp(1rem, 0.75rem + 1.11vw, 1.5rem);
  }
}
.staff-single-fv__job {
  font-size: 14px;
  color: #D45400;
  font-weight: bold;
  margin-bottom: 12px;
}
.staff-single-fv__name {
  font-size: 24px;
  color: #333333;
  font-weight: bold;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 13px;
}
@media screen and (max-width: 767px) {
  .staff-single-fv__name {
    font-size: 20px;
  }
}
.staff-single-fv__time-join {
  font-size: 16px;
  color: #333333;
  display: inline-block;
}
.staff-single-fv__profile {
  font-size: 16px;
  color: #333333;
  line-height: 1.8;
  max-width: 605px;
}
.staff-single-fv__img-wrap {
  flex-shrink: 0;
  width: 286px;
  aspect-ratio: 286/368;
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  .staff-single-fv__img-wrap {
    width: min(100%, 286px);
  }
}
.staff-single-fv__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.staff-single-main__inner {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
.staff-single-main__inner-main-wrap {
  padding: 104px 24px;
  display: flex;
  gap: 56px;
}
@media screen and (max-width: 999px) {
  .staff-single-main__inner-main-wrap {
    flex-direction: column;
    gap: 40px;
    padding: 60px 20px;
  }
}
@media screen and (max-width: 767px) {
  .staff-single-main__inner-main-wrap {
    padding: 48px 16px;
  }
}
.staff-single-main__content-wrap {
  min-width: 0;
  flex: 1;
}
.staff-single-main__content-wrap h2 {
  margin-bottom: 50px;
  font-style: Bold;
  font-size: 24px;
  color: #333333;
  display: flex;
  align-items: center;
  position: relative;
  line-height: 1.4;
}
@media screen and (max-width: 999px) {
  .staff-single-main__content-wrap h2 {
    font-size: 20px;
    margin-bottom: 28px;
  }
}
.staff-single-main__content-wrap h2::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 216px;
  background-color: #333333;
  left: -236px;
}
@media screen and (max-width: 1199px) {
  .staff-single-main__content-wrap h2::before {
    display: none;
  }
}
.staff-single-main__content-wrap p {
  margin-bottom: 23px;
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
}
.staff-single-main__sidebar-wrap {
  flex-shrink: 0;
  width: 210px;
}
@media screen and (max-width: 999px) {
  .staff-single-main__sidebar-wrap {
    width: 100%;
    order: -1;
  }
}
.staff-single-main__inner-other-staff-wrap {
  padding: 66px 24px 139px;
}
@media screen and (max-width: 999px) {
  .staff-single-main__inner-other-staff-wrap {
    padding: 40px 20px 80px;
  }
}
.staff-single-main__other-staff-title {
  margin-bottom: 50px;
}
@media screen and (max-width: 999px) {
  .staff-single-main__other-staff-title {
    margin-bottom: 32px;
  }
}
.staff-single-main__other-staff-list {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 999px) {
  .staff-single-main__other-staff-list {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .staff-single-main__other-staff-list .p-staff__item {
    width: 100%;
    max-width: 300px;
  }
  .staff-single-main__other-staff-list .p-staff__item-job-wrap {
    flex-wrap: wrap;
    row-gap: 6px;
  }
}

.sidebar-toc-wrap {
  position: sticky;
  height: 400px;
  top: 150px;
}
@media screen and (max-width: 999px) {
  .sidebar-toc-wrap {
    position: static;
    height: auto;
  }
}

.sidebar-toc-wrap h3 {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  color: #666;
  margin-bottom: 13px;
}

.sidebar-toc li {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  color: #999;
  margin-bottom: 16px;
}

.sidebar-toc a.active {
  color: #333333;
}

.blog-single-main {
  background: #FDF8F0;
  padding-top: 34px;
  padding-bottom: 139px;
}
@media screen and (max-width: 767px) {
  .blog-single-main {
    padding-top: 24px;
    padding-bottom: 80px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.blog-single-main__inner {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: 10px;
  padding: 41px 40px 23px;
}
@media screen and (max-width: 767px) {
  .blog-single-main__inner {
    padding: 28px 20px 20px;
  }
}
.blog-single-main__category {
  position: relative;
  margin-left: 17px;
  margin-right: 19px;
  margin-bottom: 25px;
  display: inline-block;
}
.blog-single-main__category::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -17px;
  transform: translateY(-50%);
  background-image: url("../images/categorry 1.png");
  background-position: center;
  background-size: cover;
  width: clamp(0.75rem, 0.706rem + 0.19vw, 0.875rem);
  height: 0.875rem;
}
.blog-single-main__category__category span {
  position: absolute;
  display: block;
  top: 0;
}
.blog-single-main__date {
  font-size: 14px;
  color: #333333;
  display: inline-block;
}
.blog-single-main__title {
  font-style: Bold;
  font-size: 32px;
  color: #333333;
  margin-bottom: 41px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .blog-single-main__title {
    font-size: 22px;
    margin-bottom: 24px;
  }
}
.blog-single-main__img-wrap {
  margin-bottom: 45px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .blog-single-main__img-wrap {
    margin-bottom: 28px;
  }
}
.blog-single-main__img-wrap img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 720/411;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-single-content img {
  max-width: 100%;
  height: auto;
}
.blog-single-content h2 {
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 50px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .blog-single-content h2 {
    font-size: 20px;
    margin-bottom: 28px;
  }
}
.blog-single-content p {
  font-size: 16px;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 23px;
}
.blog-single-content .wp-block-list {
  margin-bottom: 23px;
}
.blog-single-content .wp-block-list li {
  position: relative;
  font-size: 16px;
  color: #333333;
  line-height: 1.8;
  margin-left: 24px;
}
.blog-single-content .wp-block-list li::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: -16px;
  width: 4px;
  height: 4px;
  background: #333333;
  border-radius: 50%;
}

.blog-single-post-navigation {
  min-height: 96px;
  height: auto;
  background: #F0F0F0;
}
.blog-single-post-navigation__inner {
  min-height: 96px;
  height: auto;
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  align-items: stretch;
  padding: 0 16px;
}
.blog-single-post-navigation__prev {
  width: 50%;
  font-size: 16px;
  color: #333333;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .blog-single-post-navigation__prev {
    font-size: 12px;
  }
}
.blog-single-post-navigation__prev::after {
  content: "";
  position: absolute;
  background: #333333;
  width: 1px;
  height: 56px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .blog-single-post-navigation__prev::after {
    height: 70%;
  }
}
.blog-single-post-navigation__prev a {
  display: block;
  width: 100%;
  padding: 20px 24px 20px 0;
}
@media screen and (max-width: 767px) {
  .blog-single-post-navigation__prev a {
    padding: 16px 12px 16px 0;
  }
}
.blog-single-post-navigation__next {
  width: 50%;
  font-size: 16px;
  color: #333333;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .blog-single-post-navigation__next {
    font-size: 12px;
  }
}
.blog-single-post-navigation__next a {
  display: block;
  width: 100%;
  padding: 20px 0 20px 24px;
}
@media screen and (max-width: 767px) {
  .blog-single-post-navigation__next a {
    padding: 16px 0 16px 12px;
  }
}
.blog-single-post-navigation__prev-wrap {
  display: flex;
  align-items: center;
  transition: all ease 0.3s;
}
.blog-single-post-navigation__prev-wrap:hover {
  opacity: 0.7;
}
.blog-single-post-navigation__next-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: all ease 0.3s;
}
.blog-single-post-navigation__next-wrap:hover {
  opacity: 0.7;
}
.blog-single-post-navigation__prev-img {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  margin-right: 21px;
}
@media screen and (max-width: 767px) {
  .blog-single-post-navigation__prev-img {
    margin-right: 10px;
  }
}
.blog-single-post-navigation__next-img {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  margin-left: 21px;
}
@media screen and (max-width: 767px) {
  .blog-single-post-navigation__next-img {
    margin-left: 10px;
  }
}
.blog-single-post-navigation__prev-text-wrap {
  min-width: 0;
  padding-right: 16px;
}
@media screen and (max-width: 767px) {
  .blog-single-post-navigation__prev-text-wrap {
    padding-right: 0;
  }
}
.blog-single-post-navigation__next-text-wrap {
  min-width: 0;
  padding-left: 16px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .blog-single-post-navigation__next-text-wrap {
    padding-left: 0;
  }
}
.blog-single-post-navigation__text-top {
  margin-bottom: 6px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.blog-single-post-navigation__text-bottom {
  line-height: 1.3;
}
.blog-single-post-navigation_next {
  width: 50%;
  font-size: 16px;
  color: #333333;
}
.grecaptcha-badge {
  visibility: hidden;
}