@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
main,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

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

input,
button,
select,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

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

picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

dialog {
  display: block;
}

[hidden] {
  display: none !important;
}

::-moz-selection {
  background: transparent;
}

::selection {
  background: transparent;
}

:focus {
  outline: none;
}

html {
  font-size: max(3.1111111111vw, 14px);
}
@media screen and (min-width: 900px) {
  html {
    font-size: min(1.4285714286vw, 16px);
  }
}

body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #555555;
  position: relative;
}

summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}
@media (any-hover: hover) {
  summary:hover {
    cursor: pointer;
  }
}

.l-inner {
  width: min(360px, 100%);
  padding-inline: 28px;
  margin-inline: auto;
}
@media screen and (min-width: 480px) {
  .l-inner {
    width: min(556px, 100%);
  }
}
@media screen and (min-width: 768px) {
  .l-inner {
    width: min(696px, 100%);
  }
}
@media screen and (min-width: 900px) {
  .l-inner {
    width: min(1160px, 100%);
    padding-inline: 20px;
  }
}

.l-header {
  width: 100%;
  max-width: 1440px;
  position: fixed;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 30;
  background: #ffffff;
  border-radius: 0px 0px 8px 8px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
}
@media screen and (min-width: 900px) {
  .l-header {
    border-radius: 0px 0px 20px 20px;
  }
}
.l-header.drawer-show {
  -webkit-box-shadow: 0px 0px 0px 0px;
          box-shadow: 0px 0px 0px 0px;
}

.l-header__inner {
  padding-inline: 0.5714285714rem;
  padding-block: 1.0714285714rem;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .l-header__inner {
    width: min(1352px, 100%);
    padding-inline: 1.25rem;
    padding-block: 0;
  }
}

.l-main {
  width: 100%;
}

.l-footer {
  background: #977e73;
  padding-block: 15px;
}

.l-footer__inner {
  padding-inline: 12px;
}

.c-button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: calc(1.25rem - 1px) 0.6428571429rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5714285714rem;
  border-radius: 4px;
  border: 1px solid #977e73;
  background: #ffffff;
  font-size: 1.1428571429rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.8px;
  color: #977e73;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.c-button.--inactive {
  background: #f5f3f2;
  border: 1px solid #f5f3f2;
  color: #ffffff;
  pointer-events: none;
}
@media screen and (min-width: 900px) {
  .c-button {
    font-size: 1rem;
  }
}
@media screen and (min-width: 900px) {
  .c-button {
    padding: calc(1.09375rem - 1px) 1.125rem;
  }
}
.c-button.--single .c-button__arrow {
  rotate: -45deg;
}
@media (any-hover: hover) {
  .c-button.--single:hover .c-button__arrow {
    translate: 50% -50%;
  }
}
@media (any-hover: hover) {
  .c-button:hover {
    background: #977e73;
    color: #ffffff;
  }
  .c-button:hover .c-button__icon.--normal path {
    fill: #ffffff;
  }
  .c-button:hover .c-button__icon.--instagram path {
    stroke: #ffffff;
  }
  .c-button:hover .c-button__arrow {
    translate: 50% 0;
  }
  .c-button:hover .c-button__arrow path {
    fill: #ffffff;
  }
}

.c-button__icon path,
.c-button__arrow path {
  -webkit-transition: fill 0.4s ease, stroke 0.4s ease;
  transition: fill 0.4s ease, stroke 0.4s ease;
}

.c-button__icon {
  width: 1.4285714286rem;
  aspect-ratio: 1;
}
@media screen and (min-width: 900px) {
  .c-button__icon {
    width: 1.25rem;
  }
}

.c-button__arrow {
  width: 1.4285714286rem;
  -webkit-transition: translate 0.4s ease;
  transition: translate 0.4s ease;
}
@media screen and (min-width: 900px) {
  .c-button__arrow {
    width: 1.25rem;
  }
}

.c-section-head {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .c-section-head.--text-left {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    text-align: left;
  }
}

.c-section-head__en {
  color: #977e73;
  font-family: "Poppins", sans-serif;
  font-size: 0.8571428571rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .c-section-head__en {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.8px;
  }
}

.c-section-head__ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.7142857143rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1.2px;
}
@media screen and (min-width: 900px) {
  .c-section-head__ja {
    font-size: 2.25rem;
    letter-spacing: 1.6px;
  }
}

.c-work-card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5714285714rem;
}
@media screen and (min-width: 900px) {
  .c-work-card {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    row-gap: 0.75rem;
  }
}

.c-work-card__link-img {
  border-radius: 8px;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .c-work-card__link-img.--top img {
    width: 340px;
  }
}
@media screen and (min-width: 900px) {
  .c-work-card__link-img {
    border-radius: 12px;
  }
}
@media (any-hover: hover) {
  .c-work-card__link-img:hover {
    opacity: 0.7;
  }
}
.c-work-card__link-img img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 31.9285714286rem;
}
@media screen and (min-width: 900px) {
  .c-work-card__link-img img {
    max-height: 31.25rem;
  }
}

.c-work-card__link-tag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 3px 15px;
  font-size: 0.8571428571rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.529px;
  border-radius: 4px;
  color: #977e73;
  border: 1px solid #977e73;
  background: #ffffff;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (min-width: 900px) {
  .c-work-card__link-tag {
    font-size: 1rem;
    letter-spacing: 0.8px;
  }
}
@media (any-hover: hover) {
  .c-work-card__link-tag:hover {
    background: #977e73;
    color: #ffffff;
  }
}

.c-work-card__title {
  font-size: 1.2857142857rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.9px;
}
@media screen and (min-width: 900px) {
  .c-work-card__title {
    font-size: 1.5rem;
    letter-spacing: 1.2px;
  }
}

.c-voice-box {
  padding: 1.7142857143rem 16px;
  background: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 900px) {
  .c-voice-box {
    width: 23.9130434783%;
    padding: 2.5rem 24px;
    border-radius: 16px;
  }
}
@media screen and (min-width: 900px) {
  .c-voice-box.--accordion {
    width: 30.8411214953%;
  }
}
.c-voice-box::before {
  content: "";
  position: absolute;
  width: 66px;
  height: 66px;
  background: url(../img/card-triangle.png) no-repeat center center/contain;
  right: 0;
  bottom: 0;
}

.c-voice-box__title {
  font-size: 1.1428571429rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.8px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .c-voice-box__title {
    font-size: 1.25rem;
    letter-spacing: 1px;
    text-align: left;
  }
}

.c-voice-box__text {
  margin-top: 0.5714285714rem;
  font-size: 0.8571428571rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .c-voice-box__text {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
    letter-spacing: 0.7px;
    text-align: left;
  }
}

.c-voice-box__name {
  margin-top: 0.5714285714rem;
  font-size: 0.8571428571rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.6px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .c-voice-box__name {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
    letter-spacing: 0.7px;
    text-align: left;
  }
}

.c-faq {
  background: #ffffff;
  border-radius: 8px;
  padding: 0.5714285714rem;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
}
@media screen and (min-width: 900px) {
  .c-faq {
    padding-block: 0.75rem;
    padding-inline: 16px;
  }
}
.c-faq[open] .c-faq__question::before {
  rotate: 180deg;
}

.c-faq__head {
  padding-right: 10px;
}

.c-faq__question-text {
  font-size: 0.8571428571rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .c-faq__question-text {
    padding-block: 4px;
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 1.4px;
  }
}

.c-faq__icon {
  display: grid;
  place-items: center;
  width: 2.5714285714rem;
  height: 2.5714285714rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  background: #977e73;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 0.7142857143rem;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
@media screen and (min-width: 900px) {
  .c-faq__icon {
    width: 3rem;
    height: 3rem;
    width: 36px;
    height: 36px;
    font-size: 1rem;
    letter-spacing: 0.8px;
  }
}

.c-faq__body {
  margin-top: 10px;
}

.c-faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.5714285714rem;
     -moz-column-gap: 0.5714285714rem;
          column-gap: 0.5714285714rem;
  padding-right: 10px;
  position: relative;
}
.c-faq__question::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 9px;
  right: -10px;
  top: 50%;
  translate: 0 -50%;
  background: url(../img/faq-arrow.png) no-repeat center center/contain;
  rotate: 0deg;
  -webkit-transition: rotate 0.4s ease;
  transition: rotate 0.4s ease;
}

.c-faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-faq__answer-text {
  font-size: 0.8571428571rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .c-faq__answer-text {
    padding-block: 4px;
    font-size: 0.875rem;
  }
}

.c-flow-box {
  padding: 1.7142857143rem 16px;
  border-radius: 8px;
  background: #fbfbfb;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
  position: relative;
}
@media screen and (min-width: 900px) {
  .c-flow-box {
    width: 30.5555555556%;
    min-height: 340px;
    padding-block: 2.5rem 27px;
    padding-inline: 25px;
    border-radius: 16px;
  }
}
.c-flow-box::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 3.5714285714rem;
  top: 100%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  background: #977e73;
}
@media screen and (min-width: 900px) {
  .c-flow-box:nth-of-type(1)::before, .c-flow-box:nth-of-type(2)::before, .c-flow-box:nth-of-type(4)::before, .c-flow-box:nth-of-type(5)::before {
    height: 100px;
    rotate: 90deg;
    top: 50%;
    left: 100%;
    translate: 50% -50%;
  }
}
@media screen and (min-width: 900px) {
  .c-flow-box:nth-of-type(3)::before {
    width: 1px;
    height: 1.75rem;
    top: calc(100% - 1px);
    left: calc(50% + 15px);
    translate: -50% 0;
    z-index: 1;
    border-radius: 100vmax;
  }
}
@media screen and (min-width: 900px) {
  .c-flow-box:nth-of-type(4)::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 1.8125rem;
    top: -1.6875rem;
    left: calc(50% - 15px);
    translate: -50% 0;
    z-index: 1;
    background: #977e73;
    border-radius: 100vmax;
  }
}
.c-flow-box:last-child::before {
  display: none;
}

.c-flow-box__head {
  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;
}

.c-flow-box__head-img {
  width: 2.5714285714rem;
  height: 2.5714285714rem;
}
@media screen and (min-width: 900px) {
  .c-flow-box__head-img {
    width: 2.25rem;
    height: 2.25rem;
  }
}

.c-flow-box__head-title {
  margin-top: 0.5714285714rem;
  font-size: 1.1428571429rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 900px) {
  .c-flow-box__head-title {
    margin-top: 0.5rem;
    font-size: 1.25rem;
    letter-spacing: 1px;
  }
}

.c-flow-box__text {
  margin-top: 0.5rem;
  font-size: 0.8571428571rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .c-flow-box__text {
    margin-top: 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.7px;
  }
}

.c-flow-box__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.5714285714rem;
     -moz-column-gap: 0.5714285714rem;
          column-gap: 0.5714285714rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0.5714285714rem;
  margin-inline: auto;
  padding-block: 0.2857142857rem;
  padding-inline: 0.5714285714rem;
  border-bottom: 1px solid #977e73;
  position: relative;
}
@media screen and (min-width: 900px) {
  .c-flow-box__link {
    margin-top: 0.9375rem;
    padding-block: 0.1875rem;
  }
}
@media (any-hover: hover) {
  .c-flow-box__link:hover .c-flow-box__link-img {
    translate: 10px;
  }
}

.c-flow-box__link-text {
  font-size: 0.5714285714rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.4px;
  color: #977e73;
}
@media screen and (min-width: 900px) {
  .c-flow-box__link-text {
    font-size: 0.5rem;
  }
}

.c-flow-box__link-img {
  -webkit-transition: translate 0.4s ease;
  transition: translate 0.4s ease;
}

.c-page-head {
  width: 100%;
  min-height: 187px;
  max-height: 22.8571428571rem;
  aspect-ratio: 360/187;
  padding-top: 4.1428571429rem;
  padding-bottom: 1.7142857143rem;
  position: relative;
}
@media screen and (min-width: 900px) {
  .c-page-head {
    max-height: 18.875rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.c-page-head.--is-single {
  min-height: 173px;
  aspect-ratio: 360/173;
}
@media screen and (min-width: 900px) {
  .c-page-head.--is-single {
    aspect-ratio: 1440/283;
  }
}
.c-page-head.--works {
  min-height: 214px;
  max-height: 25.7142857143rem;
  aspect-ratio: 360/214;
}
@media screen and (min-width: 900px) {
  .c-page-head.--works {
    min-height: 300px;
    max-height: 21.375rem;
    aspect-ratio: 1440/342;
  }
}
.c-page-head.--contact {
  min-height: 238px;
  max-height: 25.7142857143rem;
  aspect-ratio: 360/238;
}
@media screen and (min-width: 900px) {
  .c-page-head.--contact {
    min-height: 320px;
    max-height: 23.125rem;
    aspect-ratio: 1440/370;
  }
}
.c-page-head.--page {
  min-height: 24.1428571429rem;
  max-height: 28.5714285714rem;
}
@media screen and (min-width: 900px) {
  .c-page-head.--page {
    min-height: 23.625rem;
    max-height: 28.75rem;
  }
}
.c-page-head.--page .c-page-head__inner {
  padding-inline: 28px;
}
@media screen and (min-width: 900px) {
  .c-page-head.--page .c-page-head__inner {
    padding-inline: 0;
  }
}
.c-page-head::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 1;
}

.c-page-head__wrap {
  width: 100%;
  position: absolute;
  z-index: 2;
}

.c-page-head__img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-page-head__inner {
  padding-inline: 12px;
}
@media screen and (min-width: 900px) {
  .c-page-head__inner {
    padding-inline: 0;
    max-width: 1440px;
    margin-inline: auto;
  }
}

.c-page-head__title {
  margin-top: 2.1428571429rem;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .c-page-head__title {
    margin-top: 2.5rem;
  }
}

.c-page-head__title-en {
  font-size: 0.8571428571rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .c-page-head__title-en {
    font-size: 1rem;
    letter-spacing: 0.8px;
  }
}

.c-page-head__title-page {
  font-size: 3.4285714286rem;
  line-height: 1.2;
  letter-spacing: 2.4px;
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width: 900px) {
  .c-page-head__title-page {
    font-size: 3rem;
  }
}

.c-page-head__title-ja {
  font-size: 1.7142857143rem;
  line-height: 1.2;
  letter-spacing: 1.2px;
}
@media screen and (min-width: 900px) {
  .c-page-head__title-ja {
    font-size: 2.25rem;
    letter-spacing: 1.8px;
  }
}
.c-page-head__title-ja.--page {
  font-weight: 500;
}

.c-page-head__link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8571428571rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .c-page-head__link {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 1.4px;
  }
}

.c-page-head__link-anchor {
  position: relative;
  text-decoration-line: underline;
  text-decoration-color: #555555;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media (any-hover: hover) {
  .c-page-head__link-anchor:hover {
    opacity: 0.7;
  }
}

.c-page-head__title-text {
  margin-top: 0.5714285714rem;
  font-size: 0.8571428571rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .c-page-head__title-text {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 1.4px;
  }
}
.c-page-head__title-text.--page {
  margin-top: 0.75rem;
}

.c-page-head__btn {
  max-width: 12.5714285714rem;
  margin-top: 0.8571428571rem;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .c-page-head__btn {
    max-width: 11rem;
    margin-top: 0.75rem;
  }
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1.2857142857rem;
  padding-block: 0.6428571429rem;
}
@media screen and (min-width: 900px) {
  .breadcrumb {
    padding-block: 0.65625rem;
    margin-left: calc(11.1111111111% + 4px);
  }
}
.breadcrumb span {
  display: inline-block;
  font-size: 0.8571428571rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .breadcrumb span {
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0.8px;
  }
}
.breadcrumb > span {
  display: inline-block;
  margin-right: 0.2857142857rem;
  margin-left: 0;
  margin-right: 0.2857142857rem;
}
@media screen and (min-width: 900px) {
  .breadcrumb > span {
    margin-inline: 0.25rem;
  }
}
@media screen and (min-width: 900px) {
  .breadcrumb > span:last-child {
    margin-right: 0;
  }
}
.breadcrumb .breadcrumb__home {
  display: block;
  margin-right: 0.2857142857rem;
}
@media screen and (min-width: 900px) {
  .breadcrumb .breadcrumb__home {
    margin-right: 0.5rem;
  }
}
.breadcrumb a {
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.breadcrumb a:hover {
  opacity: 0.7;
}
.breadcrumb img {
  display: block;
  margin-top: 0.0714285714rem;
  width: 0.7857142857rem;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 900px) {
  .breadcrumb img {
    width: 1rem;
    height: 1rem;
  }
}
.breadcrumb > img {
  display: block;
  width: 0.7142857143rem;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-contact-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.2142857143rem;
}

.c-contact-field__label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.7px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .c-contact-field__label {
    font-size: 1.25rem;
    letter-spacing: 1px;
  }
}
.c-contact-field__label.--required::before {
  content: "※";
  position: absolute;
  font-size: 0.5714285714rem;
  top: 0;
  right: -0.8571428571rem;
  color: #f26b6d;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.4px;
}
@media screen and (min-width: 900px) {
  .c-contact-field__label.--required::before {
    right: -0.7rem;
    font-size: 0.5rem;
  }
}

.c-contact-field__input,
.c-contact-field__textarea {
  width: 100%;
  background: #ffffff;
  color: #555555;
  caret-color: #555555;
  font-size: 0.7857142857rem;
  line-height: 1.2;
  letter-spacing: 0.55px;
  border-radius: 8px;
}
@media screen and (min-width: 900px) {
  .c-contact-field__input,
  .c-contact-field__textarea {
    font-size: 1rem;
    letter-spacing: 0.8px;
  }
}
.c-contact-field__input::-webkit-input-placeholder, .c-contact-field__textarea::-webkit-input-placeholder {
  color: #e8e1de;
}
.c-contact-field__input::-moz-placeholder, .c-contact-field__textarea::-moz-placeholder {
  color: #e8e1de;
}
.c-contact-field__input:-ms-input-placeholder, .c-contact-field__textarea:-ms-input-placeholder {
  color: #e8e1de;
}
.c-contact-field__input::-ms-input-placeholder, .c-contact-field__textarea::-ms-input-placeholder {
  color: #e8e1de;
}
.c-contact-field__input::placeholder,
.c-contact-field__textarea::placeholder {
  color: #e8e1de;
}

.c-contact-field__input {
  width: 100%;
  padding: 0.7142857143rem 14px;
}
@media screen and (min-width: 900px) {
  .c-contact-field__input {
    padding: 0.9375rem 16px;
  }
}

.c-contact-field__textarea {
  padding: 0.9375rem 1rem;
  min-height: 175px;
  resize: none;
  aspect-ratio: 304/175;
}
@media screen and (min-width: 900px) {
  .c-contact-field__textarea {
    aspect-ratio: 800/322;
    padding: 1.75rem 16px;
    min-height: 322px;
  }
}
.c-contact-field__textarea::-webkit-input-placeholder {
  color: #e8e1de;
}
.c-contact-field__textarea::-moz-placeholder {
  color: #e8e1de;
}
.c-contact-field__textarea:-ms-input-placeholder {
  color: #e8e1de;
}
.c-contact-field__textarea::-ms-input-placeholder {
  color: #e8e1de;
}
.c-contact-field__textarea::placeholder {
  color: #e8e1de;
}

.p-privacy-policy {
  padding-block: 1.7142857143rem;
}
@media screen and (min-width: 900px) {
  .p-privacy-policy {
    padding-block: 4rem;
  }
}

.p-privacy-policy__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.08rem;
}
@media screen and (min-width: 900px) {
  .p-privacy-policy__list {
    row-gap: 2rem;
  }
}

.p-privacy-policy__head {
  padding-left: 0.2857142857rem;
  border-left: 4px solid #977e73;
  font-size: 0.8571428571rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .p-privacy-policy__head {
    padding-left: 0.3rem;
    font-size: 0.875rem;
    letter-spacing: 0.7px;
  }
}

.p-privacy-policy__text,
.p-privacy-policy__detail-list {
  font-size: 0.8571428571rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .p-privacy-policy__text,
  .p-privacy-policy__detail-list {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 1.4px;
  }
}

.p-privacy-policy__detail-list li {
  position: relative;
  padding-left: 0.8571428571rem;
}
@media screen and (min-width: 900px) {
  .p-privacy-policy__detail-list li {
    padding-left: 0.75rem;
  }
}
.p-privacy-policy__detail-list li::before {
  content: "";
  position: absolute;
  width: 0.5714285714rem;
  height: 0.5714285714rem;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  background: #977e73;
}
@media screen and (min-width: 900px) {
  .p-privacy-policy__detail-list li::before {
    width: 0.5rem;
    height: 0.5rem;
  }
}

.c-single-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.2142857143rem;
  gap: 0.5714285714rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 359px) {
  .c-single-pagination {
    gap: 0.2857142857rem;
  }
}
@media screen and (min-width: 900px) {
  .c-single-pagination {
    gap: 0.75rem;
    margin-top: 2rem;
  }
}

.c-archive-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.2142857143rem;
  gap: 0.5714285714rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 359px) {
  .c-archive-pagination {
    gap: 0.2857142857rem;
  }
}
@media screen and (min-width: 900px) {
  .c-archive-pagination {
    gap: 0.75rem;
    margin-top: 2rem;
  }
}
.c-archive-pagination a {
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.c-archive-pagination a:hover {
  opacity: 0.7;
}
.c-archive-pagination a.next:hover, .c-archive-pagination a.prev:hover {
  opacity: 0.7;
}
.c-archive-pagination .page-numbers {
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #977e73;
  border: 1px solid #977e73;
  font-size: 1.1428571429rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.8px;
  border-radius: 4px;
  width: 2.15rem;
  height: 2.15rem;
}
@media screen and (min-width: 900px) {
  .c-archive-pagination .page-numbers {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.c-archive-pagination .page-numbers.current {
  background: #977e73;
  color: #ffffff;
}
.c-archive-pagination .prev,
.c-archive-pagination .next {
  position: relative;
}
.c-archive-pagination .prev::before,
.c-archive-pagination .next::before {
  content: "";
  width: 0.4285714286rem;
  height: 0.8571428571rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-archive-pagination .prev::before {
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(180deg);
          transform: translateY(-50%) translateX(-50%) rotate(180deg);
  background: url(../img/paginate-arrow.png) no-repeat center center/contain;
}
.c-archive-pagination .next::before {
  right: 50%;
  -webkit-transform: translateY(-50%) translateX(50%);
          transform: translateY(-50%) translateX(50%);
  background: url(../img/paginate-arrow.png) no-repeat center center/contain;
}

@media screen and (min-width: 900px) {
  .p-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-header__logo {
  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;
  -webkit-column-gap: 0.3907142857rem;
     -moz-column-gap: 0.3907142857rem;
          column-gap: 0.3907142857rem;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media (any-hover: hover) {
  .p-header__logo:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 900px) {
  .p-header__logo {
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }
}

.p-header__logo-img {
  width: 2rem;
  height: 2rem;
}
@media screen and (min-width: 900px) {
  .p-header__logo-img {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.p-header__logo-text {
  font-size: 1.2690714286rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.888px;
}
@media screen and (min-width: 900px) {
  .p-header__logo-text {
    font-size: 1.625rem;
    letter-spacing: 1.3px;
  }
}

.p-header__nav {
  display: none;
}
@media screen and (min-width: 900px) {
  .p-header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 900px) {
  .p-header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
  .p-header__list li a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: color 0.4s ease;
    transition: color 0.4s ease;
  }
}
@media screen and (min-width: 900px) and (any-hover: hover) {
  .p-header__list li a:hover {
    color: #977e73;
  }
}

@media screen and (min-width: 900px) {
  .p-header__list-text-en {
    font-family: "Poppins", sans-serif;
    font-size: 0.5rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.4px;
  }
}

@media screen and (min-width: 900px) {
  .p-header__list-text-ja {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.8px;
  }
}

@media screen and (min-width: 900px) {
  .p-header-contact-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 0.5714285714rem;
       -moz-column-gap: 0.5714285714rem;
            column-gap: 0.5714285714rem;
    padding-block: 1.8125rem;
    margin-left: 1.9375rem;
    padding-inline: 2.0625rem;
    border: 1px solid #977e73;
    background: #977e73;
    -webkit-transition: background 0.4s ease;
    transition: background 0.4s ease;
  }
}
@media screen and (min-width: 900px) and (any-hover: hover) {
  .p-header-contact-button:hover {
    background: #ffffff;
  }
  .p-header-contact-button:hover .p-header-contact-button__img path {
    fill: #977e73;
  }
  .p-header-contact-button:hover .p-header-contact-button___text {
    color: #977e73;
  }
}

.p-header-contact-button__img path {
  -webkit-transition: fill 0.4s ease;
  transition: fill 0.4s ease;
}
@media screen and (min-width: 900px) {
  .p-header-contact-button__img {
    width: 1.25rem;
  }
}

@media screen and (min-width: 900px) {
  .p-header-contact-button___text {
    color: #ffffff;
    -webkit-transition: color 0.4s ease;
    transition: color 0.4s ease;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.8px;
  }
}

.p-drawer__icon {
  width: 2.4285714286rem;
  aspect-ratio: 1;
  position: fixed;
  top: 0.8571428571rem;
  right: 0.5714285714rem;
  z-index: 30;
}
@media screen and (min-width: 900px) {
  .p-drawer__icon {
    display: none;
  }
}
.p-drawer__icon.js-show .p-drawer__icon-open {
  display: none;
}
.p-drawer__icon.js-show .p-drawer__icon-close {
  display: block;
}

.p-drawer__icon-open,
.p-drawer__icon-close {
  width: 100%;
}

.p-drawer__icon-close {
  display: none;
}

.p-drawer {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 4.1428571429rem;
  left: 0;
  translate: 0 -100%;
  -webkit-transition: translate 0.4s ease;
  transition: translate 0.4s ease;
  border-radius: 0px 0px 8px 8px;
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .p-drawer {
    display: none;
  }
}
.p-drawer.js-show {
  translate: 0 0;
}

.p-drawer__body {
  border-top: 1px solid #f5f3f2;
  max-width: min(18.5714285714rem + 40px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
  padding-bottom: 0.8571428571rem;
}

.p-drawer__list li {
  padding-block: 1.6428571429rem;
  border-bottom: 1px solid #f5f3f2;
}
@media screen and (min-width: 900px) {
  .p-drawer__list li {
    padding-block: 1.4375rem;
  }
}
.p-drawer__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
@media (any-hover: hover) {
  .p-drawer__list li a:hover {
    color: #977e73;
  }
}

.p-drawer__list-text-en {
  font-family: "Poppins", sans-serif;
  font-size: 0.5714285714rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.4px;
}
@media screen and (min-width: 900px) {
  .p-drawer__list-text-en {
    font-size: 0.5rem;
  }
}

.p-drawer__list-text-ja {
  font-size: 1.1428571429rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 900px) {
  .p-drawer__list-text-ja {
    font-size: 1rem;
  }
}

.p-drawer__button-container {
  max-width: 18.2142857143rem;
  margin-top: 0.8571428571rem;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .p-drawer__button-container {
    max-width: 15.9375rem;
    margin-top: 0.75rem;
  }
}

@media screen and (min-width: 900px) {
  .p-top-wrap {
    margin-top: 775px;
    border-radius: 60px 60px 0px 0px;
  }
}

.p-fv {
  padding-top: 5.7857142857rem;
  padding-bottom: 0.7142857143rem;
  position: relative;
  background: url(../img/fv-bg.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 900px) {
  .p-fv {
    position: fixed;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    aspect-ratio: 1440/775;
    z-index: -1;
    padding-top: 19.3125rem;
    padding-bottom: 60px;
  }
}
.p-fv::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 1;
}

.p-fv__inner {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .p-fv__inner {
    min-height: 450px;
  }
}

@media screen and (min-width: 900px) {
  .p-fv__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
}

.p-fv__text {
  padding-inline: 16px;
  font-size: 1.4285714286rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 1px;
}
@media screen and (min-width: 900px) {
  .p-fv__text {
    padding-inline: 0;
    font-size: 2.375rem;
    letter-spacing: 1.9px;
  }
}

.p-fv__image {
  margin-top: 1.7142857143rem;
}
@media screen and (min-width: 900px) {
  .p-fv__image {
    margin-top: 0;
    width: 58.75%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
}
.p-fv__image img {
  display: block;
  width: 100%;
}

.p-fv__button--sp {
  max-width: 18.2142857143rem;
  margin-inline: auto;
  margin-top: 1.7142857143rem;
}

@media screen and (min-width: 900px) {
  .p-fv__button--pc {
    max-width: 15.9375rem;
    margin-top: 1.5rem;
  }
}

.p-fv__scroll-text {
  position: absolute;
  left: 0.4285714286rem;
  bottom: 4.2857142857rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #977e73;
  font-family: "Poppins", sans-serif;
  font-size: 0.7142857143rem;
  line-height: 1.2;
  letter-spacing: 0.5px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 4;
}
@media screen and (min-width: 900px) {
  .p-fv__scroll-text {
    left: -0.375rem;
    bottom: 2.375rem;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0.8px;
  }
}
@media screen and (min-width: 1600px) {
  .p-fv__scroll-text {
    left: -170px;
  }
}

.p-fv__scroll-bar {
  width: 1px;
  height: 3.4285714286rem;
  position: absolute;
  left: 1.7857142857rem;
  bottom: -0.4285714286rem;
  background: transparent;
  z-index: 4;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .p-fv__scroll-bar {
    height: 5.25rem;
    left: 1.625rem;
    bottom: -4.7rem;
  }
}
@media screen and (min-width: 1600px) {
  .p-fv__scroll-bar {
    left: -139px;
  }
}

.p-fv__scroll-bar-active {
  width: 1px;
  height: 3.4285714286rem;
  position: absolute;
  left: 0;
  bottom: 100%;
  background: #977e73;
  z-index: 5;
  -webkit-animation: 3s 0s linear infinite scrollDown;
          animation: 3s 0s linear infinite scrollDown;
}
@-webkit-keyframes scrollDown {
  0% {
    bottom: 100%;
  }
  100% {
    bottom: -50px;
  }
}
@keyframes scrollDown {
  0% {
    bottom: 100%;
  }
  100% {
    bottom: -50px;
  }
}

.p-response {
  padding-block: 10px 19px;
  background: #fbfbfb;
}
@media screen and (min-width: 900px) {
  .p-response {
    margin-top: 775px;
    background: transparent;
    padding-block: 0;
  }
}

.p-response__wrap {
  padding-block: 24px;
  background: #ffffff;
  border-radius: 20px 20px 0px 0px;
}
@media screen and (min-width: 900px) {
  .p-response__wrap {
    padding-block: 64px;
    backdrop-filter: blur(4px);
    border-radius: 60px 60px 0px 0px;
  }
}

@media screen and (min-width: 900px) {
  .p-response__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
}

.p-response__text {
  margin-top: 0.5714285714rem;
  text-align: center;
  font-size: 0.8571428571rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .p-response__text {
    margin-top: 1rem;
    text-align: left;
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 1.4px;
  }
}

.p-response__figures {
  width: 100%;
  margin-top: 16px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .p-response__figures {
    margin-top: 0;
    width: 40.3571428571%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 33px;
  }
}

.p-response__figures-wrap {
  aspect-ratio: 304/236;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-response__figures-wrap {
    width: 100%;
    max-width: 452px;
    aspect-ratio: 452/396;
  }
}

.p-response__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}

.p-response__line {
  stroke-dasharray: 700;
  stroke-dashoffset: -700;
  -webkit-animation: draw-line 3s ease-out forwards;
          animation: draw-line 3s ease-out forwards;
}

@-webkit-keyframes draw-line {
  from {
    stroke-dashoffset: -700;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draw-line {
  from {
    stroke-dashoffset: -700;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.p-response__item {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 7.1428571429rem;
  height: 7.1428571429rem;
  text-align: center;
  color: #977e73;
  border: 1px solid #977e73;
  border-radius: 50%;
  font-size: 1.1428571429rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.8px;
  position: absolute;
  z-index: 1;
  background: #ffffff;
}
@media screen and (min-width: 900px) {
  .p-response__item {
    font-size: 1rem;
    width: 10rem;
    height: 10rem;
    max-width: 160px;
    max-height: 160px;
  }
}
.p-response__item:nth-child(1) {
  top: 0;
  left: 50%;
  translate: -50% 0;
}
.p-response__item:nth-child(2) {
  bottom: 0;
  left: 12px;
}
@media screen and (min-width: 900px) {
  .p-response__item:nth-child(2) {
    left: 0;
  }
}
.p-response__item:nth-child(3) {
  bottom: 0;
  right: 12px;
}
@media screen and (min-width: 900px) {
  .p-response__item:nth-child(3) {
    right: 0;
  }
}

.p-works {
  background: #f5f3f2;
}
@media screen and (min-width: 900px) {
  .p-works {
    height: 100vh;
    min-height: 889px;
  }
}

@media screen and (min-width: 900px) {
  .p-works__inner {
    width: 100%;
    padding-inline: 0;
  }
}

.p-works__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.1428571429rem;
}
@media screen and (min-width: 900px) {
  .p-works__head {
    max-width: 1160px;
    padding-inline: 20px;
    margin-inline: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}

.p-works__text {
  font-size: 0.8571428571rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .p-works__text {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.7px;
  }
}

@media screen and (min-width: 900px) {
  .p-works__scroll {
    overflow: hidden;
    padding-left: 1.25rem;
  }
}

.p-works__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.1428571429rem;
  margin-top: 1.1428571429rem;
}
@media screen and (min-width: 900px) {
  .p-works__list {
    margin-top: 2rem;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-works__btn {
  margin-inline: auto;
  max-width: 17rem;
  margin-top: 1rem;
}
@media screen and (min-width: 900px) {
  .p-works__btn {
    margin-top: 2rem;
    max-width: 13.125rem;
  }
}

.c-work-card__link-img {
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media (any-hover: hover) {
  .c-work-card__link-img:hover {
    opacity: 0.7;
  }
}

.p-skill {
  background: #ffffff;
}

.p-skill__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 1.1428571429rem;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .p-skill__items {
    margin-top: 2rem;
    max-width: 1000px;
    gap: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .p-skill__items {
    gap: 32px;
  }
}

.p-skill__item {
  width: 41.4473684211%;
  max-width: 126px;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
.p-skill__item.displayed {
  -webkit-animation: fadeUp 1s ease-out forwards;
          animation: fadeUp 1s ease-out forwards;
}
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-skill__item:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.p-skill__item:nth-child(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.p-skill__item:nth-child(3) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.p-skill__item:nth-child(4) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.p-skill__item:nth-child(5) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.p-skill__item:nth-child(6) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.p-skill__item:nth-child(7) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.p-skill__item:nth-child(8) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.p-skill__item:nth-child(9) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.p-skill__item:nth-child(10) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.p-skill__item:nth-child(11) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.p-skill__item:nth-child(12) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
@media screen and (min-width: 480px) {
  .p-skill__item {
    max-width: 210px;
  }
}
@media screen and (min-width: 900px) {
  .p-skill__item {
    width: 14.1129032258%;
    max-width: 140px;
  }
}
@media (any-hover: hover) {
  .p-skill__item:hover .p-skill__item-img {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

.p-skill__item-img {
  max-width: 80px;
  margin-inline: auto;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}
@media screen and (min-width: 480px) {
  .p-skill__item-img {
    max-width: 100px;
  }
}
@media screen and (min-width: 900px) {
  .p-skill__item-img {
    max-width: 140px;
  }
}
.p-skill__item-img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-skill__item-title {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 1.4px;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 900px) {
  .p-skill__item-title {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 1.4px;
  }
}

.p-skill__item-title-supplement {
  font-family: "Poppins", sans-serif;
  font-size: 0.5714285714rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.4px;
}

.p-production {
  background: #f5f3f2;
}

.p-production__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5714285714rem;
  margin-top: 1.1428571429rem;
}
@media screen and (min-width: 900px) {
  .p-production__items {
    margin-top: 2rem;
    row-gap: 2rem;
  }
}

.p-production__item {
  border-radius: 8px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .p-production__item {
    border-radius: 12px;
  }
}
.p-production__item[open] {
  border-radius: 8px 8px 12px 12px;
}
.p-production__item[open] .p-production__item-head::before {
  rotate: 0deg;
}

.p-production__item-head {
  padding: 0.8571428571rem 1.7142857143rem;
  background: #ffffff;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .p-production__item-head {
    padding: 1rem 2.5rem;
  }
}
.p-production__item-head::before {
  content: "";
  position: absolute;
  right: 1.7142857143rem;
  top: 50%;
  translate: 0 -50%;
  width: 0.8571428571rem;
  height: 0.5714285714rem;
  background: url(../img/accordion-arrow.png) no-repeat center center/cover;
  -webkit-transition: rotate 0.4s ease;
  transition: rotate 0.4s ease;
  rotate: -180deg;
}
@media screen and (min-width: 900px) {
  .p-production__item-head::before {
    right: 2.5rem;
  }
}

.p-production__item-title {
  font-size: 1.1428571429rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 900px) {
  .p-production__item-title {
    font-size: 1.25rem;
    letter-spacing: 1px;
  }
}

.p-production__item-body {
  background: #e8e3e0;
}

.p-smallbiz-flow {
  background: #e8e3e0;
}

.p-smallbiz-flow__wrap {
  padding-block: 0.8571428571rem;
  background: #ffffff;
  border-radius: 12px;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-flow__wrap {
    padding-block: 0;
  }
}

.p-smallbiz-flow__inner {
  padding-inline: 12px;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-flow__inner {
    max-width: 888px;
    padding-block: 2rem;
    margin-inline: auto;
  }
}

.p-smallbiz-flow__text {
  margin-top: 0.5rem;
  font-size: 0.8571428571rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-flow__text {
    margin-top: 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.7px;
  }
}

.p-smallbiz-flow__boxes {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 1.1428571429rem;
  margin-top: 1.1428571429rem;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-flow__boxes {
    margin-top: 1.9375rem;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
    row-gap: 3.375rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-inline: auto;
  }
}
@media screen and (min-width: 900px) {
  .p-smallbiz-flow__boxes::before {
    content: "";
    position: absolute;
    width: 73.0324074074%;
    height: 1px;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1;
    background: #977e73;
    border-radius: 100vmax;
  }
}

.p-smallbiz-faq__wrap {
  background: #ffffff;
  border-radius: 12px;
  padding-block: 0.8571428571rem;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-faq__wrap {
    padding-block: 32px;
  }
}

.p-smallbiz-faq__inner {
  padding-inline: 12px;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-faq__inner {
    width: 100%;
    max-width: 888px;
    margin-inline: auto;
  }
}

.p-smallbiz-faq__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5714285714rem;
  margin-top: 1.1428571429rem;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-faq__boxes {
    margin-top: 1.875rem;
    row-gap: 2rem;
  }
}

.p-smallbiz-voice {
  padding-block: 0.8571428571rem;
  background: #e8e3e0;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-voice {
    padding-block: 2rem;
  }
}

.p-smallbiz-voice__inner {
  padding-inline: 12px;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-voice__inner {
    max-width: 880px;
    margin-inline: auto;
  }
}

.p-smallbiz-voice__text {
  margin-top: 0.4285714286rem;
  font-size: 0.8571428571rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-voice__text {
    margin-top: 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.7px;
  }
}

.p-smallbiz-voice__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.4285714286rem;
  margin-top: 1.1428571429rem;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-voice__boxes {
    margin-top: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-smallbiz-voice__btn {
  margin-top: 1.1428571429rem;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-voice__btn {
    max-width: 171px;
    margin-inline: auto;
    margin-top: 1.875rem;
  }
}

.p-smallbiz-plan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.1428571429rem;
  padding-block: 0.8571428571rem;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-plan {
    padding-block: 2rem;
  }
}

.p-smallbiz-plan__inner {
  padding-inline: 12px;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-plan__inner {
    width: 100%;
    max-width: 880px;
    margin-inline: auto;
  }
}

.p-smallbiz-plan__text {
  margin-top: 0.5714285714rem;
  font-size: 0.8571428571rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.6px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-plan__text {
    margin-top: 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
  }
}

.p-smallbiz-plan__section {
  margin-top: 1.1428571429rem;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-plan__section {
    margin-top: 2rem;
  }
}

.p-smallbiz-plan__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-bottom: 2px;
  font-size: 1.2857142857rem;
  font-weight: 500;
  line-height: 1.225;
  letter-spacing: 0.9px;
  border-bottom: 2px solid #977e73;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-plan__title {
    font-size: 1.5rem;
    line-height: 1.2;
    letter-spacing: 1.2px;
  }
}

.p-smallbiz-plan__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5714285714rem;
  margin-top: 1.1428571429rem;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-plan__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
    margin-top: 1rem;
  }
}

.p-smallbiz-plan-card {
  padding-block: 1.7142857143rem;
  padding-inline: 20px;
  background: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-plan-card {
    width: 30.8411214953%;
    padding-block: 2.5rem;
    padding-inline: 20px;
    border-radius: 16px;
  }
}
.p-smallbiz-plan-card::before {
  content: "";
  position: absolute;
  width: 4.7142857143rem;
  height: 4.7142857143rem;
  background: url(../img/card-triangle.png) no-repeat center center/contain;
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-plan-card::before {
    width: 4.125rem;
    height: 4.125rem;
  }
}

.p-smallbiz-plan-card__head {
  text-align: center;
}

.p-smallbiz-plan-card__name {
  font-size: 0.8571428571rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
}

@media screen and (min-width: 900px) {
  .p-smallbiz-plan-card__price {
    margin-top: 0.4375rem;
  }
}

.p-smallbiz-plan-card__price-number {
  font-family: "Poppins", sans-serif;
  font-size: 1.7142857143rem;
  line-height: 1.2;
  letter-spacing: 1.2px;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-plan-card__price-number {
    font-size: 2.25rem;
    letter-spacing: 1.8px;
  }
}

.p-smallbiz-plan-card__price-unit {
  font-size: 0.8571428571rem;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-plan-card__price-unit {
    font-size: 0.875rem;
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}

.p-smallbiz-plan-card__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.2857142857rem;
  margin-top: 0.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-plan-card__list {
    margin-top: 0.9375rem;
    row-gap: 0.75rem;
  }
}
.p-smallbiz-plan-card__list li {
  padding-block: 0.2142857143rem;
  padding-left: 42px;
  font-size: 0.8571428571rem;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.6px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-smallbiz-plan-card__list li {
    padding-block: 1.5px;
    font-size: 0.875rem;
    letter-spacing: 0.7px;
  }
}
.p-smallbiz-plan-card__list li::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  aspect-ratio: 1;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  background: url(../img/list-check-icon.png) no-repeat center center/cover;
}

.p-production-skill {
  padding-block: 0.8571428571rem;
  background: #ffffff;
}
@media screen and (min-width: 900px) {
  .p-production-skill {
    padding-block: 2rem;
  }
}

.p-production-skill__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 1.1428571429rem;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .p-production-skill__items {
    margin-top: 2rem;
    max-width: 864px;
    gap: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .p-production-skill__items {
    gap: 32px;
  }
}

.p-production-skill__item {
  width: 41.4473684211%;
  max-width: 126px;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
.p-production-skill__item.displayed {
  -webkit-animation: fadeUp 1s ease-out forwards;
          animation: fadeUp 1s ease-out forwards;
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-production-skill__item:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.p-production-skill__item:nth-child(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.p-production-skill__item:nth-child(3) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.p-production-skill__item:nth-child(4) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.p-production-skill__item:nth-child(5) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.p-production-skill__item:nth-child(6) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.p-production-skill__item:nth-child(7) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.p-production-skill__item:nth-child(8) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.p-production-skill__item:nth-child(9) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.p-production-skill__item:nth-child(10) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.p-production-skill__item:nth-child(11) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.p-production-skill__item:nth-child(12) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
@media screen and (min-width: 480px) {
  .p-production-skill__item {
    max-width: 210px;
  }
}
@media screen and (min-width: 900px) {
  .p-production-skill__item {
    width: 22.2222222222%;
    max-width: 192px;
  }
}
@media (any-hover: hover) {
  .p-production-skill__item:hover .p-production-skill__item-img {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

.p-production-skill__item-img {
  max-width: 80px;
  margin-inline: auto;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}
@media screen and (min-width: 480px) {
  .p-production-skill__item-img {
    max-width: 100px;
  }
}
@media screen and (min-width: 900px) {
  .p-production-skill__item-img {
    max-width: 140px;
  }
}
.p-production-skill__item-img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-production-skill__item-title {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 1.4px;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 900px) {
  .p-production-skill__item-title {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 1.4px;
  }
}

.p-production-skill__item-title-supplement {
  font-family: "Poppins", sans-serif;
  font-size: 0.5714285714rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.4px;
}

.p-price {
  background: #ffffff;
}

.p-price__wrap {
  padding-block: 0.8571428571rem;
  border-radius: 12px;
  background: #e8e3e0;
}
@media screen and (min-width: 900px) {
  .p-price__wrap {
    padding-block: 2rem;
  }
}

.p-price__inner {
  padding-inline: 12px;
}
@media screen and (min-width: 900px) {
  .p-price__inner {
    width: 100%;
    max-width: 888px;
    margin-inline: auto;
  }
}

.p-price__text {
  margin-top: 0.5714285714rem;
  font-size: 0.8571428571rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .p-price__text {
    margin-top: 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.7px;
  }
}

.p-price__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5rem;
  margin-top: 1.1428571429rem;
}
@media screen and (min-width: 900px) {
  .p-price__list {
    margin-top: 2rem;
    row-gap: 1rem;
  }
}
.p-price__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.7142857143rem;
     -moz-column-gap: 0.7142857143rem;
          column-gap: 0.7142857143rem;
  padding-block: 0.5714285714rem;
  border-bottom: 1px solid #977e73;
}
@media screen and (min-width: 900px) {
  .p-price__list li {
    padding-block: 0.45625rem;
  }
}

.p-price__list-name {
  font-size: 0.8571428571rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .p-price__list-name {
    font-size: 0.875rem;
    letter-spacing: 0.7px;
  }
}

.p-price__list-price {
  font-family: "Poppins", sans-serif;
  font-size: 0.7142857143rem;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
@media screen and (min-width: 900px) {
  .p-price__list-price {
    font-size: 1rem;
    letter-spacing: 0.8px;
  }
}

.p-price__btn {
  margin-top: 1.1428571429rem;
}
@media screen and (min-width: 900px) {
  .p-price__btn {
    max-width: 171px;
    margin-top: 2rem;
    margin-inline: auto;
  }
}

.p-production-voice {
  padding-block: 0.8571428571rem;
  background: #ffffff;
}
@media screen and (min-width: 900px) {
  .p-production-voice {
    padding-block: 2rem;
  }
}

.p-production-voice__inner {
  padding-inline: 12px;
}
@media screen and (min-width: 900px) {
  .p-production-voice__inner {
    width: 100%;
    max-width: 880px;
    margin-inline: auto;
  }
}

.p-production-voice__text {
  font-size: 0.8571428571rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
  margin-top: 0.5714285714rem;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .p-production-voice__text {
    margin-top: 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.7px;
  }
}

.p-production-voice__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.4285714286rem;
  margin-top: 1.1428571429rem;
}
@media screen and (min-width: 900px) {
  .p-production-voice__boxes {
    margin-top: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-production-faq {
  background: #ffffff;
}

.p-production-faq__wrap {
  padding-block: 12px;
  border-radius: 12px;
  background: #e8e3e0;
}
@media screen and (min-width: 900px) {
  .p-production-faq__wrap {
    padding-block: 32px;
  }
}

.p-production-faq__inner {
  padding-inline: 12px;
}
@media screen and (min-width: 900px) {
  .p-production-faq__inner {
    width: 100%;
    max-width: 888px;
    margin-inline: auto;
  }
}

.p-production-faq__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 7px;
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .p-production-faq__boxes {
    margin-top: 30px;
    row-gap: 32px;
  }
}

.p-voice {
  background: #ffffff;
}

.p-voice__text {
  margin-top: 0.5714285714rem;
  text-align: center;
  font-size: 0.8571428571rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.6px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .p-voice__text {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.7px;
  }
}

.p-voice__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.4285714286rem;
  margin-top: 1.1428571429rem;
}
@media screen and (min-width: 900px) {
  .p-voice__boxes {
    padding-inline: 8px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 1.4492753623%;
       -moz-column-gap: 1.4492753623%;
            column-gap: 1.4492753623%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 1.9375rem;
  }
}

.p-voice__btn {
  margin-top: 1.1428571429rem;
}
@media screen and (min-width: 900px) {
  .p-voice__btn {
    margin-top: 1.875rem;
    max-width: 10.6875rem;
    margin-inline: auto;
  }
}

.p-reason {
  background: #f5f3f2;
}
@media screen and (min-width: 900px) {
  .p-reason {
    padding-block: 9rem;
  }
}

@media screen and (min-width: 900px) {
  .p-reason__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-column-gap: 0.7142857143rem;
       -moz-column-gap: 0.7142857143rem;
            column-gap: 0.7142857143rem;
  }
}

.p-reason__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5714285714rem;
  margin-top: 1.1428571429rem;
}
@media screen and (min-width: 900px) {
  .p-reason__boxes {
    width: 77.1428571429%;
    margin-top: 0;
    row-gap: 2rem;
  }
}

.p-reason__box {
  border-radius: 8px;
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
}
@media screen and (min-width: 900px) {
  .p-reason__box {
    border-radius: 12px;
  }
}

.p-reason-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5714285714rem;
  padding: 0.8571428571rem 12px;
}
@media screen and (min-width: 900px) {
  .p-reason-box {
    padding: 1.5rem 24px;
    row-gap: 0.9375rem;
  }
}
.p-reason-box:nth-of-type(2) .p-reason-box__title {
  text-align: left;
}

.p-reason-box__title {
  max-width: 17.8571428571rem;
  margin-inline: auto;
  font-size: 1.2857142857rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.9px;
  text-align: center;
}
@media screen and (min-width: 480px) {
  .p-reason-box__title {
    max-width: 24.2857142857rem;
  }
}
@media screen and (min-width: 900px) {
  .p-reason-box__title {
    max-width: initial;
    margin-inline: initial;
    font-size: 1.5rem;
    letter-spacing: 1.2px;
    text-align: left;
  }
}

.p-reason-box__text {
  font-size: 0.8571428571rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .p-reason-box__text {
    font-size: 0.875rem;
    letter-spacing: 0.7px;
  }
}

.p-contact {
  background: #ffffff;
}

.p-contact__card {
  padding: 0.8571428571rem 8px;
  border-radius: 12px;
  border: 1px solid #977e73;
}
@media screen and (min-width: 900px) {
  .p-contact__card {
    padding-block: 3.5rem;
  }
}

@media screen and (min-width: 900px) {
  .p-contact__card-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 39.625rem;
    margin-inline: auto;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
}

@media screen and (min-width: 900px) {
  .p-contact__card-head {
    max-width: 19.625rem;
    width: 100%;
  }
}

.p-contact__text {
  margin-top: 0.375rem;
  font-size: 0.8571428571rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .p-contact__text {
    margin-top: 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.7px;
    text-align: left;
  }
}

.p-contact__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.6428571429rem;
  margin-top: 1.1428571429rem;
}
@media screen and (min-width: 900px) {
  .p-contact__items {
    row-gap: 1rem;
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.p-footer-works {
  background: #ffffff;
  width: 100%;
}

.p-footer-work__items {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 578px;
  min-height: 41.2857142857rem;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .p-footer-work__items {
    max-width: 1440px;
    min-height: 36.125rem;
    margin-inline: auto;
  }
}

.p-footer-work__item {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 12px;
  overflow: hidden;
}
.p-footer-work__item img {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-footer-work__item:nth-child(1) {
  top: 0;
  left: 0.2142857143rem;
}
@media screen and (min-width: 900px) {
  .p-footer-work__item:nth-child(1) {
    left: initial;
    right: calc(50% + 15.1875rem);
  }
}
.p-footer-work__item:nth-child(1) img {
  width: min(14.7142857143rem, 100%);
  height: 8.2857142857rem;
}
@media screen and (min-width: 900px) {
  .p-footer-work__item:nth-child(1) img {
    width: 29.75rem;
    height: 16.75rem;
  }
}
.p-footer-work__item:nth-child(2) {
  top: 11.0714285714rem;
  left: 3.0714285714rem;
}
@media screen and (min-width: 900px) {
  .p-footer-work__item:nth-child(2) {
    top: 1.4375rem;
    left: calc(50% + 17rem);
  }
}
.p-footer-work__item:nth-child(2) img {
  height: 97px;
  width: min(11.8571428571rem, 100%);
  height: 6.9285714286rem;
}
@media screen and (min-width: 900px) {
  .p-footer-work__item:nth-child(2) img {
    width: 24.0625rem;
    height: 13.9229375rem;
  }
}
.p-footer-work__item:nth-child(3) {
  top: 19.3571428571rem;
  right: 0;
}
@media screen and (min-width: 900px) {
  .p-footer-work__item:nth-child(3) {
    top: initial;
    right: initial;
    left: calc(50% + 15.3125rem);
    bottom: 0;
  }
}
.p-footer-work__item:nth-child(3) img {
  width: min(14.7142857143rem, 100%);
  height: 8.2857142857rem;
}
@media screen and (min-width: 900px) {
  .p-footer-work__item:nth-child(3) img {
    width: 29.75rem;
    height: 16.75rem;
  }
}
.p-footer-work__item:nth-child(4) {
  top: 29rem;
  right: calc(50% - 5.2142857143rem);
}
@media screen and (min-width: 900px) {
  .p-footer-work__item:nth-child(4) {
    top: 13.8125rem;
    right: calc(50% - 7.25rem);
  }
}
.p-footer-work__item:nth-child(4) img {
  width: min(10.5rem, 100%);
  height: 6rem;
}
@media screen and (min-width: 900px) {
  .p-footer-work__item:nth-child(4) img {
    width: 21.1875rem;
    height: 12.25rem;
  }
}
.p-footer-work__item:nth-child(5) {
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 900px) {
  .p-footer-work__item:nth-child(5) {
    left: initial;
    right: calc(50% + 9.25rem);
  }
}
.p-footer-work__item:nth-child(5) img {
  width: min(12.7142857143rem, 100%);
  height: 7.3571428571rem;
}
@media screen and (min-width: 900px) {
  .p-footer-work__item:nth-child(5) img {
    width: 25.75rem;
    height: 14.875rem;
  }
}

.p-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.5714285714rem;
     -moz-column-gap: 0.5714285714rem;
          column-gap: 0.5714285714rem;
}

.p-footer__link {
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media (any-hover: hover) {
  .p-footer__link:hover {
    opacity: 0.7;
  }
}
.p-footer__link img {
  width: 1.7142857143rem;
  height: 1.7142857143rem;
  aspect-ratio: 1;
}
@media screen and (min-width: 900px) {
  .p-footer__link img {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.p-footer__copyright {
  margin-top: 1.0714285714rem;
  width: 100%;
  display: inline-block;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 0.7142857143rem;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .p-footer__copyright {
    margin-top: 0.8125rem;
    font-size: 1rem;
    letter-spacing: 0.8px;
  }
}

@media screen and (min-width: 900px) {
  .p-about-profile__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 4.1875rem;
       -moz-column-gap: 4.1875rem;
            column-gap: 4.1875rem;
  }
}

.p-about-profile__image {
  padding-inline: 19px;
}
@media screen and (min-width: 900px) {
  .p-about-profile__image {
    padding-inline: 0;
    max-width: 16.625rem;
  }
}
.p-about-profile__image img {
  width: 100%;
}

.p-about-profile__content {
  margin-top: 1.1428571429rem;
}
@media screen and (min-width: 900px) {
  .p-about-profile__content {
    margin-top: 0;
  }
}

@media screen and (min-width: 900px) {
  .p-about-profile__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.p-about-profile__detail-basic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
}
@media screen and (min-width: 900px) {
  .p-about-profile__detail-basic {
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }
}

.p-about-profile__detail-name {
  font-size: 1.2857142857rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.9px;
}
@media screen and (min-width: 900px) {
  .p-about-profile__detail-name {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 1.2px;
  }
}

.p-about-profile__detail-age-number {
  font-size: 1.1428571429rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 900px) {
  .p-about-profile__detail-age-number {
    font-size: 1.25rem;
    letter-spacing: 1px;
  }
}
.p-about-profile__detail-age-unit {
  font-size: 0.5714285714rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.4px;
}
@media screen and (min-width: 900px) {
  .p-about-profile__detail-age-unit {
    font-size: 0.5rem;
  }
}

.p-about-profile__detail-area {
  margin-top: 0.1428571429rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.5714285714rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.4px;
}
@media screen and (min-width: 900px) {
  .p-about-profile__detail-area {
    font-size: 0.5rem;
  }
}

.p-about-profile__detail-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.5714285714rem;
     -moz-column-gap: 0.5714285714rem;
          column-gap: 0.5714285714rem;
  margin-top: 0.3571428571rem;
}
@media screen and (min-width: 900px) {
  .p-about-profile__detail-links {
    margin-top: 0.5rem;
  }
}

.p-about-profile__detail-link {
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media (any-hover: hover) {
  .p-about-profile__detail-link:hover {
    opacity: 0.7;
  }
}
.p-about-profile__detail-link img {
  width: 1.7142857143rem;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 900px) {
  .p-about-profile__detail-link img {
    width: 1.5rem;
  }
}

.p-about-profile__detail-text {
  margin-top: 0.8571428571rem;
  font-size: 0.8571428571rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .p-about-profile__detail-text {
    margin-top: 1.75rem;
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 1.4px;
  }
}

.p-about-profile__response {
  margin-top: 0.7857142857rem;
}
@media screen and (min-width: 900px) {
  .p-about-profile__response {
    margin-top: 1.75rem;
  }
}

.p-about-profile__response-title {
  font-size: 0.8571428571rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .p-about-profile__response-title {
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0.8px;
  }
}

.p-about-profile__response-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-about-profile__response-list li {
  padding-left: 0.8571428571rem;
  list-style: none;
  font-size: 0.8571428571rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-about-profile__response-list li {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 1.4px;
  }
}
.p-about-profile__response-list li::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.5714285714rem;
  aspect-ratio: 1;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  background: #977e73;
}

.p-about-skill {
  background: #fbfbfb;
}

.p-about-skill__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .p-about-skill__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 32px;
    max-width: 748px;
    margin-inline: auto;
    padding-inline: 6px;
    margin-top: 32px;
  }
}

.p-about-skill-box {
  padding: 40px 24px;
  border-radius: 16px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
  max-height: 213px;
  background: #ffffff;
}
@media screen and (min-width: 480px) {
  .p-about-skill-box {
    max-height: 320px;
  }
}
@media screen and (min-width: 900px) {
  .p-about-skill-box {
    width: 47.8260869565%;
    max-height: 266px;
    height: 266px;
  }
}
.p-about-skill-box::before {
  content: "";
  position: absolute;
  width: 66px;
  height: 66px;
  background: url(../img/skill-triangle.png) no-repeat center center/contain;
  right: 0;
  bottom: 0;
}

.p-about-skill-box__head {
  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;
}

.p-about-skill-box__head-img img {
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 900px) {
  .p-about-skill-box__head-img img {
    width: 36px;
    height: 36px;
  }
}

.p-about-skill-box__head-text {
  font-size: 1.1428571429rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 900px) {
  .p-about-skill-box__head-text {
    font-size: 1.25rem;
    letter-spacing: 1px;
  }
}

.p-about-skill-box__text {
  margin-top: 7px;
  font-size: 0.8571428571rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .p-about-skill-box__text {
    margin-top: 16px;
    font-size: 0.875rem;
    letter-spacing: 0.7px;
  }
}

.p-three-strengths__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.1428571429rem;
  margin-top: 1.0714285714rem;
}
@media screen and (min-width: 900px) {
  .p-three-strengths__cards {
    row-gap: 0;
    max-width: 960px;
    margin-inline: auto;
    margin-top: 1.9375rem;
  }
}

.p-strength-card {
  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;
  row-gap: 0.5714285714rem;
  padding-block: 0.6785714286rem;
}
@media screen and (min-width: 900px) {
  .p-strength-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
    padding-block: 2.5rem;
  }
}
.p-strength-card:first-child {
  padding-block: 0;
}
@media screen and (min-width: 900px) {
  .p-strength-card:first-child {
    padding-block: 2.5rem;
  }
}
@media screen and (min-width: 900px) {
  .p-strength-card:nth-of-type(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 900px) {
  .p-strength-card__img {
    max-width: 27.0625rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.p-strength-card__img img {
  width: 100%;
}

.p-strength-card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.3571428571rem;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .p-strength-card__title {
    text-align: left;
    row-gap: 0.5rem;
  }
}

.p-strength-card__title-en {
  font-size: 0.8571428571rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.6px;
  color: #977e73;
}
@media screen and (min-width: 900px) {
  .p-strength-card__title-en {
    font-size: 1rem;
    letter-spacing: 0.8px;
  }
}

.p-strength-card__title-ja {
  font-size: 1.2857142857rem;
  letter-spacing: 0.9px;
  font-weight: 500;
}
@media screen and (min-width: 900px) {
  .p-strength-card__title-ja {
    font-size: 1.5rem;
    line-height: 1.2;
    letter-spacing: 1.2px;
  }
}

.p-strength-card__text {
  margin-top: 0.7142857143rem;
  font-size: 0.8571428571rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .p-strength-card__text {
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 1.4px;
  }
}

.p-works-page__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-inline: 4px;
  gap: 0.5714285714rem;
}
@media screen and (min-width: 900px) {
  .p-works-page__tabs {
    gap: 0.5rem;
  }
}

.p-works-page__tab {
  min-width: 4.8571428571rem;
  color: #977e73;
  text-align: center;
  font-size: 0.8571428571rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.6px;
  padding-block: 0.7142857143rem 1.1428571429rem;
  position: relative;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media (any-hover: hover) {
  .p-works-page__tab:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 900px) {
  .p-works-page__tab {
    min-width: 11.125rem;
    padding-block: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0.8px;
  }
}
.p-works-page__tab::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.1428571429rem;
  bottom: 0.5714285714rem;
  left: 50%;
  translate: -50% 0;
  background: #e8e1de;
}
.p-works-page__tab.current {
  pointer-events: none;
}
.p-works-page__tab.current::before {
  background: #977e73;
}
.p-works-page__tab.current::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  left: 50%;
  translate: -50%;
  bottom: 0.2142857143rem;
  border-style: solid;
  border-width: 0 0.5714285714rem 0.4285714286rem 0.5714285714rem;
  border-color: transparent transparent #977e73 transparent;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 900px) {
  .p-works-page__tab.current::after {
    bottom: 0px;
    border-width: 0 10px 10px 10px;
  }
}

.p-works-page__content {
  margin-top: 1.1428571429rem;
}
@media screen and (min-width: 900px) {
  .p-works-page__content {
    margin-top: 2rem;
  }
}

.p-works-page__list {
  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;
  row-gap: 1.0714285714rem;
}
@media screen and (min-width: 900px) {
  .p-works-page__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 2.8571428571%;
       -moz-column-gap: 2.8571428571%;
            column-gap: 2.8571428571%;
    row-gap: 2rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (min-width: 1200px) {
  .p-works-page__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

@media screen and (min-width: 900px) {
  .p-works-page__item {
    width: 30.3571428571%;
  }
}

.p-works-page__no-post-text {
  width: 100%;
  text-align: center;
}

.p-archive {
  padding-block: 1.7142857143rem;
  background: #fbfbfb;
}
@media screen and (min-width: 900px) {
  .p-archive {
    padding-block: 4rem;
  }
}

.p-single {
  padding-block: 1.7142857143rem;
  background: #ffffff;
}
@media screen and (min-width: 900px) {
  .p-single {
    padding-block: 4rem;
  }
}
.p-single table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid transparent;
  text-align: left;
  table-layout: fixed;
}
@media screen and (min-width: 900px) {
  .p-single table {
    border-radius: 12px;
  }
}
.p-single thead {
  background: #977e73;
  border: none;
}
.p-single th,
.p-single td {
  vertical-align: middle;
  padding: 0.5rem 0.2143rem;
  font-size: 0.8571428571rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-wrap: anywhere;
}
@media screen and (min-width: 900px) {
  .p-single th,
  .p-single td {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.8px;
  }
}
.p-single th {
  border: 1px solid #ffffff;
  color: #ffffff;
}
@media screen and (min-width: 900px) {
  .p-single th {
    padding: 1rem;
  }
}
.p-single th:nth-of-type(1) {
  width: 34.2105263158%;
}
@media screen and (min-width: 900px) {
  .p-single th:nth-of-type(1) {
    width: 44.2857142857%;
  }
}
.p-single td {
  border: 1px solid #e8e1de;
  color: #977e73;
}
@media screen and (min-width: 900px) {
  .p-single td {
    padding: calc(1.5rem - 1px) 1rem;
  }
}

.p-single__head-thumbnail {
  margin-bottom: 1rem;
  border-bottom: 2px solid #e8e1de;
  padding-bottom: 1.1428571429rem;
}
@media screen and (min-width: 900px) {
  .p-single__head-thumbnail {
    padding-bottom: 2rem;
  }
}
.p-single__head-thumbnail img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  overflow: hidden;
  max-height: 21.4285714286rem;
}
@media screen and (min-width: 900px) {
  .p-single__head-thumbnail img {
    max-height: 31.25rem;
  }
}

.p-single__head-thumbnail-wrap {
  border-radius: 12px;
  overflow: hidden;
}

.p-single__head-field {
  margin-top: 1.0714285714rem;
  padding-bottom: 1.0714285714rem;
  border-bottom: 2px solid #e8e1de;
}
.p-single__head-field:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 900px) {
  .p-single__head-field {
    margin-top: calc(2.5rem - 1px);
    padding-bottom: calc(2.5rem - 1px);
  }
}

.p-single__head-description {
  font-size: 0.8571428571rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .p-single__head-description {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 1.4px;
  }
}

.p-single__btn {
  width: 82.5657894737%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 1.1428571429rem;
}
@media screen and (min-width: 900px) {
  .p-single__btn {
    width: 100%;
    margin-right: auto;
    margin-left: 0;
    max-width: 15.883875rem;
    margin-top: 2rem;
  }
}

.p-single__detail-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.5357142857rem;
}
@media screen and (min-width: 900px) {
  .p-single__detail-list {
    row-gap: 0.5rem;
  }
}
.p-single__detail-list li {
  padding-left: 0.75rem;
  position: relative;
  font-size: 0.8571428571rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .p-single__detail-list li {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 1.4px;
  }
}
.p-single__detail-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 0.5714285714rem;
  height: 0.5714285714rem;
  aspect-ratio: 1;
  background: #977e73;
}

.p-single__point {
  margin-top: 1.7142857143rem;
  padding: calc(1.1428571429rem - 1px);
  border: 1px solid #977e73;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-single__point {
    margin-top: 0;
    padding: 1rem;
  }
}

.p-single__point-list li {
  padding-left: 1.3rem;
  list-style-type: none;
  position: relative;
  font-size: 0.8571428571rem;
  line-height: 1.6;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 900px) {
  .p-single__point-list li {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 1.4px;
  }
}
.p-single__point-list li::before {
  content: "";
  position: absolute;
  width: 0.1428571429rem;
  aspect-ratio: 1;
  top: 0.5714285714rem;
  left: 0.6rem;
  background: #555555;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .p-single__point-list li::before {
    width: 0.125rem;
    top: 0.875rem;
    left: 0.5rem;
  }
}

.p-single__point-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.2857142857rem;
     -moz-column-gap: 0.2857142857rem;
          column-gap: 0.2857142857rem;
  position: absolute;
  background: #977e73;
  padding: 0.2857142857rem 2.8571428571em;
  left: -1px;
  top: 0;
  translate: 0 -50%;
}
@media screen and (min-width: 900px) {
  .p-single__point-card {
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
    padding: 0 2.4rem;
  }
}

.p-single__point-card-img {
  width: 1rem;
  aspect-ratio: 1;
}

.p-single__point-card-text {
  font-size: 0.8571428571rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.6px;
  color: #ffffff;
}
@media screen and (min-width: 900px) {
  .p-single__point-card-text {
    font-size: 1rem;
    letter-spacing: 0.8px;
  }
}

.p-single__card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  row-gap: 0.5rem;
  margin-top: 1.1428571429rem;
}
@media screen and (min-width: 480px) {
  .p-single__card-content {
    row-gap: 1.1428571429rem;
  }
}
@media screen and (min-width: 900px) {
  .p-single__card-content {
    -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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
    row-gap: 0.5rem;
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-single__card-content {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.p-single__card {
  padding: 8.88px 8.88px 7.94px;
  background: #f5f3f2;
  border-radius: 12px;
}
@media screen and (min-width: 900px) {
  .p-single__card {
    width: 24.4642857143%;
    padding: 8px;
  }
}
.p-single__card img {
  width: 100%;
  inset: 0;
}

.p-single__card-wrap {
  padding-inline: 0.5rem;
  overflow-y: scroll;
  aspect-ratio: 288.467/564.182;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-single__card-wrap {
    aspect-ratio: 400/600;
  }
}
@media screen and (min-width: 900px) {
  .p-single__card-wrap {
    aspect-ratio: 246/480;
  }
}
.p-single__card-wrap::-webkit-scrollbar {
  width: 12px;
}
.p-single__card-wrap::-webkit-scrollbar-track {
  background: #fbfbfb;
}
.p-single__card-wrap::-webkit-scrollbar-thumb {
  background: #e8e1de;
  border-radius: 100vmax;
}

@supports (-moz-appearance: none) {
  .p-single__card-wrap {
    scrollbar-width: thin;
    scrollbar-color: #e8e1de #fbfbfb;
  }
}
.p-other {
  background: #fbfbfb;
}

.p-other__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 16px;
  row-gap: 32px;
}
@media screen and (min-width: 900px) {
  .p-other__content {
    padding-inline: 18px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 32px;
    -webkit-column-gap: 2.8571428571%;
       -moz-column-gap: 2.8571428571%;
            column-gap: 2.8571428571%;
  }
}

.p-other__card img {
  max-height: 500px;
}
@media screen and (min-width: 900px) {
  .p-other__card {
    width: 31.4814814815%;
  }
}

.p-other__btn {
  margin-top: 32px;
  width: 74.6710526316%;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .p-other__btn {
    margin-top: 28px;
    max-width: 227px;
  }
}

.p-contact-page {
  padding-block: 1.7142857143rem;
  background: #fbfbfb;
}
@media screen and (min-width: 900px) {
  .p-contact-page {
    padding-block: 4rem;
  }
}

.p-contact-page__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.0714285714rem;
}
@media screen and (min-width: 900px) {
  .p-contact-page__fields {
    max-width: 800px;
    margin-inline: auto;
    row-gap: 1.5rem;
  }
}

.p-contact-page__privacy-label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 0.4285714286rem;
  margin-top: 0.1428571429rem;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .p-contact-page__privacy-label {
    padding-block: 0;
  }
}
.p-contact-page__privacy-label::before {
  content: "※";
  position: absolute;
  font-size: 0.5714285714rem;
  top: 0;
  right: -0.8571428571rem;
  color: #f26b6d;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.4px;
}
@media screen and (min-width: 900px) {
  .p-contact-page__privacy-label::before {
    font-size: 0.5rem;
  }
}

.p-contact-page__privacy-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.p-contact-page__privacy-input:checked + .p-contact-page__privacy-text::after {
  opacity: 1;
}

.p-contact-page__privacy-link {
  text-decoration-line: underline;
}

.p-contact-page__privacy-text {
  padding-left: 1.7142857143rem;
  position: relative;
  font-size: 0.7857142857rem;
  line-height: 1.2;
  letter-spacing: 0.55px;
}
@media screen and (min-width: 900px) {
  .p-contact-page__privacy-text {
    padding-left: 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.8px;
  }
}
.p-contact-page__privacy-text::before {
  content: "";
  position: absolute;
  width: 1.4285714286rem;
  aspect-ratio: 1;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  background: url(../img/check-frame.png) no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .p-contact-page__privacy-text::before {
    width: 1.25rem;
  }
}
.p-contact-page__privacy-text::after {
  content: "";
  position: absolute;
  width: 1.0478571429rem;
  aspect-ratio: 1;
  top: 50%;
  left: 0.1907142857rem;
  translate: 0 -50%;
  background: url(../img/check-icon.png) no-repeat center center/contain;
  opacity: 0;
}
@media screen and (min-width: 900px) {
  .p-contact-page__privacy-text::after {
    width: 0.916875rem;
  }
}

.p-contact-page__btn {
  width: 85.5263157895%;
  margin-top: 1.1428571429rem;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .p-contact-page__btn {
    width: 100%;
    max-width: 260px;
    margin-top: 2rem;
  }
}

.wpcf7-not-valid-tip {
  font-size: 0.7142857143rem;
  margin-top: 0.2857142857rem;
}
@media screen and (min-width: 900px) {
  .wpcf7-not-valid-tip {
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-response-output {
  display: none;
}

.grecaptcha-badge {
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

.u-sp-hidden {
  display: none;
}
@media screen and (min-width: 900px) {
  .u-sp-hidden {
    display: block;
  }
}

.u-pc-hidden {
  display: block;
}
@media screen and (min-width: 900px) {
  .u-pc-hidden {
    display: none;
  }
}

.u-section-padding {
  padding-block: 1.7142857143rem;
}
@media screen and (min-width: 900px) {
  .u-section-padding {
    padding-block: 4rem;
  }
}