@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000000;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
/* グローバル基盤 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  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;
  padding: 0;
  margin: 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]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img, svg, video, canvas, iframe, picture {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
}

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

button {
  border: none;
  padding: 0;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: initial;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
}

button {
  color: inherit;
  padding-block: 0;
  padding-inline: 0;
  text-align: justify;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* telリンクの下線＆青色を消す（共通） */
a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
  /* アクセシビリティ：フォーカス可視 */
}
a[href^="tel:"]:hover, a[href^="tel:"]:active, a[href^="tel:"]:focus {
  text-decoration: none;
}
a[href^="tel:"]:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* 念のためのiOS系強制上書き（必要な場合のみ） */
@supports (-webkit-touch-callout: none) {
  a[href^="tel:"] {
    color: inherit !important;
    text-decoration: none !important;
  }
}
a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
}
@media (hover: none) and (pointer: coarse) {
  a[href^="tel:"] {
    pointer-events: auto;
    color: inherit;
    text-decoration: underline;
  }
}

/* まず、必要な要素には明確なフォーカスリングを付ける */
:where(a, button, input, select, textarea, summary, [role=button], [role=link]):focus-visible {
  outline: 3px solid #23a5ff;
  outline-offset: 2px;
}

/* スクロール用に一時的に tabindex="-1" を付けた見出し/セクションはリングを消す */
:where(h1, h2, h3, h4, h5, h6, section, article, main, div)[id][tabindex="-1"]:focus-visible {
  outline: none;
}

/* 長い文字列の折返し徹底 */
:where(p, li, dd, td, th, figcaption, .c-text, .richtext) {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ------------------------------
    スクロールアニメーション
------------------------------ */
*[data-scroll], *[data-load] {
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  --gap: 100ms;
}
@media screen and (min-width: 768px) {
  *[data-scroll], *[data-load] {
    --gap: 300ms;
  }
}
*[data-scroll][data-scroll-delay="1"], *[data-load][data-scroll-delay="1"] {
  -webkit-transition-delay: calc(var(--gap) * 1);
          transition-delay: calc(var(--gap) * 1);
}
*[data-scroll][data-scroll-delay="2"], *[data-load][data-scroll-delay="2"] {
  -webkit-transition-delay: calc(var(--gap) * 2);
          transition-delay: calc(var(--gap) * 2);
}
*[data-scroll][data-scroll-delay="3"], *[data-load][data-scroll-delay="3"] {
  -webkit-transition-delay: calc(var(--gap) * 3);
          transition-delay: calc(var(--gap) * 3);
}
*[data-scroll][data-scroll-delay="4"], *[data-load][data-scroll-delay="4"] {
  -webkit-transition-delay: calc(var(--gap) * 4);
          transition-delay: calc(var(--gap) * 4);
}
*[data-scroll][data-scroll-delay="5"], *[data-load][data-scroll-delay="5"] {
  -webkit-transition-delay: calc(var(--gap) * 5);
          transition-delay: calc(var(--gap) * 5);
}
*[data-scroll][data-scroll-delay="6"], *[data-load][data-scroll-delay="6"] {
  -webkit-transition-delay: calc(var(--gap) * 6);
          transition-delay: calc(var(--gap) * 6);
}
*[data-scroll][data-scroll-delay="7"], *[data-load][data-scroll-delay="7"] {
  -webkit-transition-delay: calc(var(--gap) * 7);
          transition-delay: calc(var(--gap) * 7);
}
*[data-scroll][data-scroll-delay="8"], *[data-load][data-scroll-delay="8"] {
  -webkit-transition-delay: calc(var(--gap) * 8);
          transition-delay: calc(var(--gap) * 8);
}
*[data-scroll][data-scroll-delay="9"], *[data-load][data-scroll-delay="9"] {
  -webkit-transition-delay: calc(var(--gap) * 9);
          transition-delay: calc(var(--gap) * 9);
}
*[data-scroll][data-scroll-delay="10"], *[data-load][data-scroll-delay="10"] {
  -webkit-transition-delay: calc(var(--gap) * 10);
          transition-delay: calc(var(--gap) * 10);
}

*[data-scroll].scroll-show, *[data-load].scroll-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

*[data-scroll=fadein-top], *[data-load=fadein-top] {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

*[data-scroll=title01], *[data-load=title01] {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.l-inner {
  width: 100%;
  max-width: 27.5rem;
  padding-inline: 1rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 90rem;
    padding-inline: 1.5625rem;
  }
}

.l-main {
  overflow: hidden;
}
.c-btn {
  width: 21.3125rem;
  height: 3.0625rem;
  border-radius: 62.4375rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #877f5e;
  color: #ffffff;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .c-btn:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .c-btn:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .c-btn {
    width: 25.9375rem;
    height: 3.75rem;
    font-size: 1.25rem;
  }
}
.c-btn::before {
  content: "";
  display: block;
  background: #ffffff;
  -webkit-mask: url(../img/top/arrow_right.svg) no-repeat 50% 50%/contain;
          mask: url(../img/top/arrow_right.svg) no-repeat 50% 50%/contain;
  width: 0.9375rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 300/143;
  position: absolute;
  right: 1rem;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .c-btn::before {
    width: 1.25rem;
    right: 1.75rem;
  }
}
.c-btn span {
  position: relative;
  left: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-btn.is-lg {
    width: 28.5625rem;
  }
}
@media screen and (min-width: 768px) {
  .c-btn.is-sq {
    width: 31.375rem;
    height: 7.9375rem;
    border-radius: 0.9375rem;
    font-size: 1.5rem;
    line-height: 1.4166666667;
    text-align: center;
  }
}
.c-btn.is-yellow {
  background: #e9bd00;
  color: #508787;
}
.c-btn.is-yellow::before {
  background: #508787;
}
.c-btn.is-grayish {
  background: #dbd9cf;
  color: #1e1d1b;
}
.c-btn.is-grayish::before {
  display: none;
}
.c-btn.is-olive {
  background: #877f5e;
  color: #ffffff;
}
.c-btn.is-olive::before {
  display: none;
}

/* =========================
  c-image01（マルチ行進行バナー）
  ========================= */
.c-image01 {
  width: 100%;
  margin-left: calc(50% - 50dvw);
  position: relative;
  margin-top: -3.125rem;
  --scroll-gap: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .c-image01 {
    --scroll-gap: 1.1875rem;
    margin-top: -8.75rem;
  }
}
@-webkit-keyframes c-image01-marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-50% - var(--scroll-gap) / 2));
            transform: translateX(calc(-50% - var(--scroll-gap) / 2));
  }
}
@keyframes c-image01-marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-50% - var(--scroll-gap) / 2));
            transform: translateX(calc(-50% - var(--scroll-gap) / 2));
  }
}
.c-image01__track {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  -webkit-animation: c-image01-marquee 30s linear infinite;
          animation: c-image01-marquee 30s linear infinite;
  gap: var(--scroll-gap);
}
@media screen and (min-width: 768px) {
  .c-image01__track {
    -webkit-animation-duration: 30s;
            animation-duration: 30s;
  }
}
.c-image01__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0 var(--scroll-gap);
}
.c-image01__img {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 63.875rem;
}
@media screen and (min-width: 768px) {
  .c-image01__img {
    width: 149.6875rem;
  }
}

.c-floatCta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  justify-items: center;
  z-index: 2000;
  padding-bottom: 0.5rem;
  opacity: 0;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c-floatCta {
    display: none;
  }
}
.c-floatCta.is-active {
  opacity: 1;
  pointer-events: auto;
}

.p-lpHeader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.p-lpHeader__inner {
  padding-block: 0.75rem;
  padding-inline: 1rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-lpHeader__inner {
    padding-block: 1.75rem;
    padding-inline: 2.25rem;
  }
}
.p-lpHeader__logo {
  width: 5.75rem;
}
@media screen and (min-width: 768px) {
  .p-lpHeader__logo {
    width: 10.375rem;
  }
}

.p-lpFooter {
  background: #ece6dc;
}
.p-lpFooter__inner {
  padding-block: 1.625rem 4.5625rem;
}
@media screen and (min-width: 768px) {
  .p-lpFooter__inner {
    padding-block: 2.3125rem 1.25rem;
  }
}
.p-lpFooter__logo {
  width: 9.375rem;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-inline: auto;
}
@media (hover: hover) {
  .p-lpFooter__logo:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .p-lpFooter__logo:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .p-lpFooter__logo {
    width: 15rem;
  }
}
.p-lpFooter__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-lpFooter__address {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.25rem;
    margin-top: 1.375rem;
  }
}
.p-lpFooter__addressName {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .p-lpFooter__addressName {
    font-size: 1.25rem;
  }
}
.p-lpFooter__addressLine {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .p-lpFooter__addressLine {
    font-size: 1.25rem;
  }
}
.p-lpFooter__addressTel {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .p-lpFooter__addressTel {
    font-size: 1.25rem;
  }
}
.p-lpFooter__addressTel a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .p-lpFooter__addressTel a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .p-lpFooter__addressTel a:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
.p-lpFooter__note {
  font-weight: 500;
  font-size: 0.625rem;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-lpFooter__note {
    font-size: 0.8125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1.5625rem;
  }
}
.p-lpFooter__inc {
  font-weight: 500;
  font-size: 0.625rem;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  margin-top: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-lpFooter__inc {
    font-size: 0.8125rem;
    text-align: right;
    margin-right: 3.3125rem;
  }
}

.p-topLead__inner {
  padding-inline: 0;
}
@media screen and (min-width: 768px) {
  .p-topLead__inner {
    padding-left: 5rem;
    position: relative;
    height: 46.875rem;
  }
}
.p-topLead__visual {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-topLead__visual {
    position: static;
  }
}
@media screen and (min-width: 768px) {
  .p-topLead__images {
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-topLead__img {
    width: 53.125rem;
  }
}
.p-topLead__catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  position: absolute;
  left: 0;
  top: 8.9375rem;
}
@media screen and (min-width: 768px) {
  .p-topLead__catch {
    position: relative;
    top: auto;
    gap: 1.5rem;
    padding-top: 12.5rem;
  }
}
.p-topLead__textMain {
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  line-height: 1;
  height: 2.5rem;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 0.625rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-topLead__textMain {
    font-size: 2.8125rem;
    letter-spacing: 0.08em;
    background: transparent;
    height: auto;
    padding-inline: 0;
  }
}
.p-topLead__textMain:nth-of-type(2) {
  padding-right: 0.625rem;
  height: 2.875rem;
  padding-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-topLead__textMain:nth-of-type(2) {
    padding-top: 0.75rem;
    height: auto;
    padding-right: 0;
  }
}
.p-topLead__textMain:nth-of-type(2)::before {
  content: "";
  display: block;
  background: url(../img/top/accent.webp) no-repeat 0% 0%/contain;
  width: 12.1875rem;
  aspect-ratio: 585/74;
  position: absolute;
  top: -0.1875rem;
  left: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-topLead__textMain:nth-of-type(2)::before {
    background: url(../img/top/accent_pc.svg) no-repeat 0% 0%/contain;
    width: 18.875rem;
    top: -0.125rem;
    left: 1.0625rem;
    aspect-ratio: 300/7;
  }
}
.p-topLead__textMain:nth-of-type(3) {
  padding-right: 0.625rem;
}
.p-topLead__message {
  padding-top: 2rem;
  padding-inline: 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-topLead__message {
    padding-inline: 0;
    padding-top: 3rem;
    position: static;
  }
}
.p-topLead__desc {
  font-size: 0.875rem;
  line-height: 1.6428571429;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-topLead__desc {
    font-size: 1.25rem;
    line-height: 1.75;
  }
}
.p-topLead__ceo {
  position: absolute;
  right: 0.9375rem;
  top: -1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-topLead__ceo {
    right: 3.125rem;
    top: 2.9375rem;
  }
}
.p-topLead__ceoImg {
  width: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-topLead__ceoImg {
    width: 18.5rem;
    position: relative;
  }
}
.p-topLead__ceoInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
  padding-bottom: 2.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-topLead__ceoInfo {
    position: absolute;
    bottom: 7rem;
    left: -5.75rem;
  }
}
.p-topLead__ceoInfo::before {
  content: "";
  display: block;
  background: url(../img/top/ceo_sign.svg) no-repeat 50% 50%/contain;
  width: 5.5625rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 75/22;
  position: absolute;
  right: -2rem;
  bottom: 0.625rem;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-topLead__ceoInfo::before {
    width: 6.25rem;
    right: -0.9375rem;
    bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-topLead__ceoInfo::after {
    content: "";
    display: block;
    background: url(../img/top/ceo_bg.webp) no-repeat 50% 50%/contain;
    width: 17.25rem;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    aspect-ratio: 349/239;
    position: absolute;
    bottom: -3rem;
    left: -5rem;
  }
}
.p-topLead__ceoCompany {
  font-weight: 700;
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-topLead__ceoCompany {
    font-size: 0.9375rem;
  }
}
.p-topLead__ceoName {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-topLead__ceoName {
    font-size: 2rem;
  }
}
.p-topLead__cta {
  margin-top: 6.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-topLead__cta {
    margin-inline: 0;
    margin-top: 3.5rem;
  }
}

.p-price {
  position: relative;
  z-index: 10;
}
.p-price__inner {
  padding-inline: 0;
  padding-block: 1.875rem 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-price__inner {
    padding-block: 6.0625rem 3.125rem;
  }
}
.p-price__photos {
  position: relative;
  height: 0.0625rem;
  width: 100%;
}
.p-price__photo {
  position: absolute;
}
.p-price__photo.is-01 {
  width: 9.75rem;
  left: -0.75rem;
  top: 0;
}
@media screen and (min-width: 768px) {
  .p-price__photo.is-01 {
    width: 24.8125rem;
    left: -4rem;
    top: -6.0625rem;
  }
}
.p-price__photo.is-02 {
  width: 12rem;
  right: 0;
  top: 0;
}
@media screen and (min-width: 768px) {
  .p-price__photo.is-02 {
    width: 27.875rem;
    right: -4.1875rem;
  }
}
.p-price__photo.is-03 {
  width: 5.875rem;
  left: 1.0625rem;
  top: 5.25rem;
}
@media screen and (min-width: 768px) {
  .p-price__photo.is-03 {
    width: 19.8125rem;
    top: 15rem;
    left: 3.125rem;
  }
}
.p-price__photo.is-04 {
  width: 4.1875rem;
  right: 1.75rem;
  top: 5.25rem;
}
@media screen and (min-width: 768px) {
  .p-price__photo.is-04 {
    width: 13.8125rem;
    top: 18.125rem;
    right: 4.875rem;
  }
}
.p-price__photo img {
  border-radius: 0.3125rem;
}
.p-price__lead {
  margin-top: 7.625rem;
  padding-inline: 0.625rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-price__lead {
    margin-top: 0.5rem;
  }
}
.p-price__copy {
  width: 21.6875rem;
  margin-inline: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-price__copy {
    width: 37.0625rem;
  }
}
.p-price__copyNote {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
  margin-top: 0.75rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-price__copyNote {
    font-size: 1.875rem;
    margin-top: 0.875rem;
  }
}
.p-price__spec {
  background: #f8f6f1;
  max-width: 21.4375rem;
  margin-inline: auto;
  min-height: 6.5625rem;
  padding: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-price__spec {
    max-width: 33.4375rem;
    min-height: 5.875rem;
  }
}
.p-price__specText {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.5833333333;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-price__specText {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}
.p-price__compare {
  position: relative;
  margin-top: 4.375rem;
  max-width: 21.4375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-price__compare {
    margin-top: 3.75rem;
    max-width: 33.4375rem;
  }
}
.p-price__compareText {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.5454545455;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-price__compareText {
    font-size: 1.875rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
.p-price__comparePhoto1 {
  position: absolute;
  width: 7.6875rem;
  bottom: calc(100% + 0.125rem);
  left: -1.6875rem;
}
@media screen and (min-width: 768px) {
  .p-price__comparePhoto1 {
    width: 17.5rem;
    bottom: -9.875rem;
    left: auto;
    right: calc(100% + 3.5625rem);
  }
}
.p-price__comparePhoto2 {
  position: absolute;
  right: -0.5rem;
  bottom: -1.9375rem;
  width: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .p-price__comparePhoto2 {
    width: 10.75rem;
    bottom: -11.5625rem;
    right: auto;
    left: calc(100% + 1.4375rem);
  }
}

.p-why {
  position: relative;
}
.p-why::before {
  content: "";
  display: block;
  background: #ece6dc;
  width: 100%;
  height: calc(100% - 1rem);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  clip-path: polygon(50% 2rem, 100% 0%, 100% 100%, 0 100%, 0 0);
}
@media screen and (min-width: 768px) {
  .p-why::before {
    clip-path: polygon(50% 10.3125rem, 100% 0%, 100% 100%, 0 100%, 0 0);
    height: calc(100% + 4.25rem);
  }
}
.p-why__inner {
  position: relative;
  padding-inline: 0;
  padding-block: 0 5.9375rem;
}
@media screen and (min-width: 768px) {
  .p-why__inner {
    padding-block: 0 17.625rem;
  }
}
.p-why__label {
  width: 10.6875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-why__label {
    width: 19rem;
  }
}
.p-why__lead {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  max-width: 23.4375rem;
  margin-inline: auto;
  position: relative;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-why__lead {
    font-size: 2.1875rem;
    max-width: 100%;
    gap: 2.25rem;
    margin-top: 2.5rem;
  }
}
.p-why__lead2 {
  font-weight: 900;
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-why__lead2 {
    font-size: 3.9375rem;
  }
}
.p-why__lead2 span {
  display: inline-block;
  margin-right: -0.875rem;
}
.p-why__lead2::before, .p-why__lead2::after {
  content: "";
  display: block;
  background: url(../img/why/lead_bg.svg) no-repeat 50% 50%/contain;
  width: 1.125rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 3/5;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-why__lead2::before, .p-why__lead2::after {
    width: 2.5rem;
  }
}
.p-why__lead2::before {
  left: -1.25rem;
  top: -0.5rem;
  scale: -1 -1;
}
@media screen and (min-width: 768px) {
  .p-why__lead2::before {
    left: -3.125rem;
    top: -1.25rem;
  }
}
.p-why__lead2::after {
  right: -1.25rem;
  bottom: -0.5rem;
}
@media screen and (min-width: 768px) {
  .p-why__lead2::after {
    right: -3.125rem;
    bottom: -1.25rem;
  }
}
.p-why__list {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-why__list {
    max-width: 74.125rem;
    margin-inline: auto;
    gap: 2.25rem;
    margin-top: 0rem;
  }
}
.p-why__itemHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.p-why__itemHead.is-left {
  position: relative;
}
.p-why__itemHead.is-left .p-why__num {
  left: -0.25rem;
}
@media screen and (min-width: 768px) {
  .p-why__itemHead.is-left .p-why__num {
    left: 0;
    margin-right: 1.875rem;
  }
}
.p-why__itemHead.is-right {
  position: relative;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.p-why__itemHead.is-right .p-why__num {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  right: -0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-why__itemHead.is-right .p-why__num {
    right: 0;
    margin-left: 2.375rem;
  }
}
.p-why__num {
  font-weight: 900;
  font-size: 5.625rem;
  line-height: 1;
  letter-spacing: 0;
  color: #9d977b;
  position: relative;
  top: -0.375rem;
}
@media screen and (min-width: 768px) {
  .p-why__num {
    font-size: 15.625rem;
    top: -1.375rem;
  }
}
.p-why__title {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0.03em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-why__title {
    font-size: 2.375rem;
  }
}
.p-why__img {
  position: absolute;
  z-index: 10;
}
.p-why__img.is-01 {
  width: 8.5rem;
  right: -1.0625rem;
  top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .p-why__img.is-01 {
    width: 23.875rem;
    right: -6.4375rem;
    top: 1.25rem;
  }
}
.p-why__img.is-02 {
  width: 8.4375rem;
  left: -0.625rem;
  top: -0.25rem;
}
@media screen and (min-width: 768px) {
  .p-why__img.is-02 {
    width: 24.25rem;
    left: -6.25rem;
    top: -3rem;
  }
}
.p-why__img.is-03 {
  width: 12.25rem;
  right: -3.75rem;
  top: -2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-why__img.is-03 {
    width: 34.5rem;
    right: -15.625rem;
    top: -8.75rem;
  }
}
.p-why__points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  margin-top: 0.375rem;
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .p-why__points {
    padding-inline: 0;
    margin-top: -1.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4.25rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-why__point {
  background: #ffffff;
  border-radius: 0.3125rem;
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0.375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-why__point {
    height: 19.0625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 0.625rem;
  }
}
.p-why__point.is-row2 {
  height: 5.375rem;
}
@media screen and (min-width: 768px) {
  .p-why__point.is-row2 {
    height: 19.0625rem;
  }
}
.p-why__point.is-row3 {
  height: 6rem;
}
@media screen and (min-width: 768px) {
  .p-why__point.is-row3 {
    height: 19.0625rem;
  }
}
.p-why__point.is-row4 {
  height: 7.3125rem;
}
@media screen and (min-width: 768px) {
  .p-why__point.is-row4 {
    height: 19.0625rem;
  }
}
.p-why__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-why__icon.is-01_01 {
    padding-top: 3.1875rem;
    padding-bottom: 2.6875rem;
  }
}
.p-why__icon.is-01_01 img {
  width: 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-why__icon.is-01_01 img {
    width: 5.375rem;
  }
}
@media screen and (min-width: 768px) {
  .p-why__icon.is-01_02 {
    padding-top: 3.1875rem;
    padding-bottom: 2rem;
  }
}
.p-why__icon.is-01_02 img {
  width: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-why__icon.is-01_02 img {
    width: 7.6875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-why__icon.is-01_03 {
    padding-top: 1.5rem;
    padding-bottom: 2.1875rem;
  }
}
.p-why__icon.is-01_03 img {
  width: 3rem;
  position: relative;
  top: -0.25rem;
}
@media screen and (min-width: 768px) {
  .p-why__icon.is-01_03 img {
    width: 6.6875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-why__icon.is-02_01 {
    padding-top: 2.6875rem;
    padding-bottom: 2rem;
  }
}
.p-why__icon.is-02_01 img {
  width: 3.375rem;
}
@media screen and (min-width: 768px) {
  .p-why__icon.is-02_01 img {
    width: 7.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-why__icon.is-02_02 {
    padding-top: 2.6875rem;
    padding-bottom: 2rem;
  }
}
.p-why__icon.is-02_02 img {
  width: 2.6875rem;
}
@media screen and (min-width: 768px) {
  .p-why__icon.is-02_02 img {
    width: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .p-why__icon.is-02_03 {
    padding-top: 3.375rem;
    padding-bottom: 2.9375rem;
  }
}
.p-why__icon.is-02_03 img {
  width: 2.875rem;
}
@media screen and (min-width: 768px) {
  .p-why__icon.is-02_03 img {
    width: 6.4375rem;
  }
}
@media screen and (min-width: 768px) {
  .p-why__icon.is-03_01 {
    padding-top: 2.875rem;
    padding-bottom: 1.4375rem;
  }
}
.p-why__icon.is-03_01 img {
  width: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-why__icon.is-03_01 img {
    width: 6.125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-why__icon.is-03_02 {
    padding-top: 3.0625rem;
    padding-bottom: 3.0625rem;
  }
}
.p-why__icon.is-03_02 img {
  width: 3.0625rem;
}
@media screen and (min-width: 768px) {
  .p-why__icon.is-03_02 img {
    width: 6.0625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-why__icon.is-03_03 {
    padding-top: 1.625rem;
    padding-bottom: 2.8125rem;
  }
}
.p-why__icon.is-03_03 img {
  width: 3.25rem;
  position: relative;
  top: -0.25rem;
}
@media screen and (min-width: 768px) {
  .p-why__icon.is-03_03 img {
    width: 7.125rem;
  }
}
.p-why__desc {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.6428571429;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-why__desc {
    font-size: 1.125rem;
    line-height: 1.3888888889;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-why__desc span.is-ls {
  display: inline-block;
  letter-spacing: -0.06em;
  text-indent: -0.5rem;
}
.p-responsibility {
  position: relative;
}
.p-responsibility__inner {
  padding-inline: 0;
  padding-block: 3.75rem 2.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-responsibility__inner {
    padding-block: 4.8125rem 6.8125rem;
  }
}
.p-responsibility__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-responsibility__heading {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 1.875rem;
    margin-inline: auto 4.9375rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-responsibility__lead {
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #877f5e;
  color: #ffffff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 2.75rem;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .p-responsibility__lead {
    font-size: 3.4375rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    -webkit-font-feature-settings: "pkna";
            font-feature-settings: "pkna";
    text-orientation: upright;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.p-responsibility__lead span {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-responsibility__lead span {
    top: 1.25rem;
  }
}
.p-responsibility__message {
  margin-top: 2.625rem;
  padding-inline: 1rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-responsibility__message {
    margin-top: -4.125rem;
    padding-inline: 6.25rem 0;
    z-index: 10;
  }
}
.p-responsibility__text {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.6428571429;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 768px) {
  .p-responsibility__text {
    font-size: 1.4375rem;
    line-height: 1.7391304348;
  }
}
.p-responsibility__text span {
  margin-inline: -0.1875rem;
}
.p-responsibility__ceo {
  position: relative;
}
.p-responsibility__ceoImg {
  width: 17.3125rem;
  position: absolute;
  top: -9.375rem;
  left: 8.125rem;
}
@media screen and (min-width: 768px) {
  .p-responsibility__ceoImg {
    width: 37.75rem;
    top: -41.9375rem;
    left: auto;
    right: 14.375rem;
  }
}
.p-responsibility__ceoInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
  padding-bottom: 2.125rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-responsibility__ceoInfo {
    margin-top: -1.875rem;
    margin-inline: auto 5.125rem;
  }
}
.p-responsibility__ceoInfo::before {
  content: "";
  display: block;
  background: url(../img/top/ceo_sign.svg) no-repeat 50% 50%/contain;
  width: 5.5625rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 75/22;
  position: absolute;
  right: -2rem;
  bottom: 0.625rem;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-responsibility__ceoInfo::before {
    width: 11.1875rem;
    right: -1.1875rem;
    bottom: -1.5625rem;
  }
}
.p-responsibility__ceoCompany {
  font-weight: 700;
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-responsibility__ceoCompany {
    font-size: 0.75rem;
  }
}
.p-responsibility__ceoName {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-responsibility__ceoName {
    font-size: 2.5rem;
  }
}
.p-responsibility__photos {
  margin-top: 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-responsibility__photos {
    margin-top: 0rem;
    position: absolute;
    top: 4.8125rem;
    left: 0;
  }
}
.p-responsibility__photo {
  width: 9.75rem;
}
@media screen and (min-width: 768px) {
  .p-responsibility__photo {
    width: 46.875rem;
  }
}
.p-responsibility__photo.is-02 {
  margin-left: 2rem;
  margin-top: -0.0625rem;
}
@media screen and (min-width: 768px) {
  .p-responsibility__photo.is-02 {
    width: 50.8125rem;
    margin-top: 4.3125rem;
    margin-left: 4.9375rem;
  }
}
.p-responsibility__cta {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 2.9375rem;
}
@media screen and (min-width: 768px) {
  .p-responsibility__cta {
    margin-inline: 0;
    padding-inline: 6.25rem 0;
    margin-top: -0.75rem;
  }
}

.p-worksReviews {
  background: #ece6dc;
}
.p-worksReviews__inner {
  padding-inline: 0;
  padding-block: 2.6875rem 4.625rem;
}
@media screen and (min-width: 768px) {
  .p-worksReviews__inner {
    padding-block: 5rem 4.625rem;
  }
}
.p-worksReviews__eyebrow {
  width: 14.125rem;
  margin-left: 1rem;
}
@media screen and (min-width: 768px) {
  .p-worksReviews__eyebrow {
    width: 32.6875rem;
    margin-left: 14.3125rem;
  }
}
.p-worksReviews__title {
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-worksReviews__title {
    font-size: 3rem;
    margin-top: -1.25rem;
  }
}
.p-worksReviews__list {
  margin-top: 4.6875rem;
  padding-inline: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.75rem;
}
@media screen and (min-width: 768px) {
  .p-worksReviews__list {
    max-width: 80rem;
    margin-inline: auto;
    margin-top: 7.5rem;
    padding-inline: 0;
    gap: 8.75rem;
  }
}
.p-worksReviews__item {
  position: relative;
  border-radius: 0.625rem;
  background: #ffffff;
  padding-inline: 1rem;
  padding-block: 1rem 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-worksReviews__item {
    padding-inline: 1.625rem;
    padding-block: 1.625rem;
    height: 23.5625rem;
    width: 100%;
  }
}
.p-worksReviews__gallery.is-right .p-worksReviews__main {
  left: auto;
  right: -1rem;
}
@media screen and (min-width: 768px) {
  .p-worksReviews__gallery.is-right .p-worksReviews__main {
    left: auto;
    right: -5rem;
  }
}
.p-worksReviews__gallery.is-right .p-worksReviews__thumb {
  margin-inline: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-worksReviews__gallery.is-right .p-worksReviews__thumb {
    margin: 0;
    left: 1.625rem;
  }
}
.p-worksReviews__main {
  position: absolute;
  top: -1.75rem;
  left: -1rem;
  width: 10.9375rem;
}
@media screen and (min-width: 768px) {
  .p-worksReviews__main {
    width: 23.75rem;
    top: -3.5rem;
    left: -5rem;
  }
}
.p-worksReviews__main img {
  border-radius: 0.3125rem;
}
.p-worksReviews__thumb {
  width: 8.375rem;
  margin-inline: auto 0;
  padding: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-worksReviews__thumb {
    width: 20.625rem;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 1.625rem;
    right: 1.625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-worksReviews__container {
    max-width: 31.375rem;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .p-worksReviews__container.is-01 {
    margin-left: 21.0625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-worksReviews__container.is-02 {
    margin-left: 24.5625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-worksReviews__container.is-03 {
    margin-left: 21.0625rem;
  }
}
.p-worksReviews__leadBlock {
  max-width: 17.3125rem;
  height: 7.9375rem;
  position: relative;
  margin-inline: auto;
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-worksReviews__leadBlock {
    max-width: 100%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 6.9375rem;
    padding-inline: 2.0625rem 0.875rem;
    margin-top: 0;
    margin-inline: 0;
  }
}
.p-worksReviews__leadBlock::before, .p-worksReviews__leadBlock::after {
  content: "";
  display: block;
  background: url(../img/works/lead_bg.svg) no-repeat 50% 50%/contain;
  width: 2.875rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 1/1;
  position: absolute;
}
.p-worksReviews__leadBlock::before {
  top: 0;
  left: 0;
  scale: -1 -1;
}
.p-worksReviews__leadBlock::after {
  bottom: 0;
  right: 0;
}
.p-worksReviews__lead {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-worksReviews__lead {
    font-size: 1.875rem;
    line-height: 1.4333333333;
    text-align: left;
  }
}
.p-worksReviews__meta {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.3571428571;
  letter-spacing: 0.05em;
  text-align: center;
  color: #ffffff;
  border-radius: 0.3125rem;
  height: 3.25rem;
  background: #877f5e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-worksReviews__meta {
    font-size: 1rem;
    border-radius: 0.8125rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    margin-inline: auto;
    padding-inline: 1.875rem;
    padding-block: 0.1875rem 0.125rem;
    margin-inline: 0;
  }
}
.p-worksReviews__voice {
  margin-top: 1.6875rem;
}
.p-worksReviews__text {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.6428571429;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-worksReviews__text {
    font-size: 0.9375rem;
    line-height: 1.5333333333;
  }
}

.p-qa__inner {
  padding-block: 3.5rem 6.125rem;
}
@media screen and (min-width: 768px) {
  .p-qa__inner {
    padding-block: 7.9375rem 15.375rem;
  }
}
.p-qa__eyebrow {
  width: 16.625rem;
}
@media screen and (min-width: 768px) {
  .p-qa__eyebrow {
    width: 37.9375rem;
    margin-left: 6.3125rem;
  }
}
.p-qa__title {
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1.2916666667;
  letter-spacing: 0.05em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-qa__title {
    font-size: 3rem;
    line-height: 1;
  }
}
@media screen and (min-width: 768px) {
  .p-qa__title span {
    margin-right: -1.375rem;
  }
}
.p-qa__list {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-qa__list {
    max-width: 80rem;
    margin-inline: auto;
    margin-top: 6.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-qa__item {
    width: 37.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-qa__item:nth-of-type(even) {
    margin-inline: auto 0;
  }
}
@media screen and (min-width: 768px) {
  .p-qa__item:nth-of-type(2) {
    margin-top: -2.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-qa__item:nth-of-type(3) {
    margin-top: -3.125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-qa__item:nth-of-type(4) {
    margin-top: -5.25rem;
  }
}
.p-qa__q {
  color: #ffffff;
  background: #877f5e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
  border-radius: 0.1875rem;
  height: 2.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 0.5rem 0.625rem;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-qa__q {
    height: 3.875rem;
    border-radius: 0.3125rem;
    padding-inline: 0.75rem 0.875rem;
    gap: 0.625rem;
  }
}
.p-qa__qLabel {
  font-weight: 500;
  font-size: 1.625rem;
  line-height: 1;
  position: relative;
  top: -0.0625rem;
}
@media screen and (min-width: 768px) {
  .p-qa__qLabel {
    font-size: 2.9375rem;
    top: -0.125rem;
  }
}
.p-qa__qText {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-qa__qText {
    font-size: 1.875rem;
    letter-spacing: 0;
  }
}
.p-qa__a {
  position: relative;
  border-radius: 0.3125rem;
  padding-block: 2rem 1rem;
  padding-inline: 1.25rem;
  background: #f8f6f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.125rem;
  margin-top: -1rem;
  margin-left: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-qa__a {
    margin-left: 1.5rem;
    padding-block: 3.75rem 2.625rem;
    padding-inline: 2.5rem 1.25rem;
    margin-top: -2.0625rem;
  }
}
.p-qa__aLabel {
  font-weight: 500;
  font-size: 2.375rem;
  line-height: 1;
  letter-spacing: 0;
  color: #e9bd00;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-qa__aLabel {
    font-size: 4.5625rem;
  }
}
.p-qa__aText {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.6428571429;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-qa__aText {
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}

.p-present {
  position: relative;
}
.p-present::before {
  content: "";
  display: block;
  background: #508787;
  width: 100%;
  height: calc(100% + 2rem);
  clip-path: polygon(50% 0, 100% 2rem, 100% 100%, 0 100%, 0 2rem);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-present::before {
    height: calc(100% + 6rem);
    clip-path: polygon(50% 0, 100% 7.875rem, 100% 100%, 0 100%, 0 7.875rem);
  }
}
.p-present__inner {
  position: relative;
  padding-block: 0 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-present__inner {
    padding-block: 0 6.25rem;
  }
}
.p-present__eyebrow {
  width: 13.0625rem;
  margin-left: 2rem;
}
@media screen and (min-width: 768px) {
  .p-present__eyebrow {
    width: 26.125rem;
    margin-left: 15.1875rem;
  }
}
.p-present__title {
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1.4166666667;
  letter-spacing: 0.05em;
  text-align: center;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-present__title {
    font-size: 3rem;
    margin-top: -2.5625rem;
    position: relative;
    left: 1.5rem;
  }
}
.p-present__lead {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  color: #ffffff;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-present__lead {
    font-size: 1.875rem;
    position: relative;
    left: 1.5rem;
  }
}
.p-present__image {
  width: 15.625rem;
  margin-inline: auto;
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-present__image {
    width: 32.4375rem;
    margin-top: 4rem;
  }
}
.p-present__cta {
  margin-top: 2.5rem;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-present__cta {
    margin-top: 4rem;
  }
}
.p-present__note {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  margin-top: 1.125rem;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-present__note {
    font-size: 1rem;
    margin-top: 1.875rem;
  }
}

.p-message__inner {
  position: relative;
  padding-block: 14rem 2.875rem;
}
@media screen and (min-width: 768px) {
  .p-message__inner {
    padding-block: 14.4375rem 4.5rem;
  }
}
.p-message__visual {
  position: static;
}
.p-message__photo--old {
  width: 16.375rem;
  position: absolute;
  top: -0.6875rem;
  left: -1rem;
}
@media screen and (min-width: 768px) {
  .p-message__photo--old {
    width: 36.75rem;
    left: auto;
    right: 3.75rem;
    top: -2.3125rem;
  }
}
.p-message__photo--ceo {
  width: 12.625rem;
  position: absolute;
  top: 2.9375rem;
  right: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-message__photo--ceo {
    width: 18.75rem;
    top: 7.1875rem;
    left: 8.6875rem;
    right: auto;
  }
}
.p-message__photo--work {
  width: 11.8125rem;
  position: absolute;
  top: -1.125rem;
  right: -0.375rem;
}
@media screen and (min-width: 768px) {
  .p-message__photo--work {
    width: 17.9375rem;
    top: -15.625rem;
    right: 0.625rem;
  }
}
.p-message__eyebrow {
  width: 8.375rem;
}
@media screen and (min-width: 768px) {
  .p-message__eyebrow {
    width: 18rem;
    position: relative;
    left: -6.6875rem;
  }
}
.p-message__title {
  font-weight: 900;
  font-size: 1.4375rem;
  line-height: 1;
  letter-spacing: -0.1em;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-message__title {
    font-size: 3.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-message__body {
    padding-left: 33.625rem;
  }
}
.p-message__text {
  margin-top: 1.625rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.6428571429;
  letter-spacing: 0;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-message__text {
    font-size: 1.4375rem;
    line-height: 1.9130434783;
    letter-spacing: 0.03em;
    margin-top: 4.875rem;
  }
}
.p-message__text span.is-ls {
  letter-spacing: -0.5em;
}
.p-message__text span.is-ti {
  text-indent: -0.375rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-message__text span.is-ti {
    text-indent: -0.75rem;
  }
}
.p-message__sign {
  margin-top: 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-message__sign {
    margin-top: 6.875rem;
  }
}
.p-message__signInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
  padding-bottom: 1.875rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-message__signInfo {
    padding-bottom: 3.3125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    gap: 1.25rem;
  }
}
.p-message__signInfo::before {
  content: "";
  display: block;
  background: url(../img/top/ceo_sign.svg) no-repeat 50% 50%/contain;
  width: 6.5rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 75/22;
  position: absolute;
  right: -2rem;
  bottom: 0;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-message__signInfo::before {
    width: 12.375rem;
    right: -5.3125rem;
  }
}
.p-message__signCompany {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-message__signCompany {
    font-size: 1.25rem;
    padding-bottom: 0.3125rem;
  }
}
.p-message__signName {
  font-weight: 700;
  font-size: 1.4375rem;
  line-height: 1;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-message__signName {
    font-size: 3.0625rem;
  }
}
.p-message__ctas {
  margin-top: 8.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .p-message__ctas {
    gap: 9.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 7.5rem;
  }
}

.u-desktop-inline {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop-inline {
    display: inline-block;
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

.u-mobile-inline {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .u-mobile-inline {
    display: none;
  }
}

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

/* アクセシビリティ補助ユーティリティ（必要に応じてプロジェクト共通へ） */
.u-srOnly {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}