@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Shippori Mincho", serif;
  color: #685744;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: opacity 0.8s 0.3s ease-out;
  opacity: 0;
  -webkit-font-smoothing: antialiased;
}

footer {
  margin-top: auto;
}

html {
  font-size: 10px;
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.8650519031vw;
  }
}
@media (min-width: 1156px) {
  html {
    font-size: 10px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Form reset */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  padding: 0;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

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

input[type=submit],
input[type=button],
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 1;
}

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

input,
select,
textarea {
  font-size: max(1rem, 16px);
}

.c-button {
  display: block;
  width: 100%;
  max-width: 29rem;
  margin-inline: auto;
  position: relative;
  background-color: #C7AF49;
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 1.7rem 0 1.7rem 3rem;
  box-shadow: 0.5rem 0.5rem #6B603B;
  transition: background-color 0.3s ease-out;
  transform: translateX(-0.3rem);
}
@media screen and (min-width: 768px) {
  .c-button {
    max-width: 47.7rem;
    padding: 1.9rem 0 1.9rem 4.8rem;
    font-size: 3rem;
  }
}

.c-button:hover {
  background-color: #B7A451;
  opacity: 1;
}

.c-button::before {
  content: "";
  display: block;
  width: 8.2rem;
  aspect-ratio: 1/1;
  background-image: url(../images/common/free.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 1.2rem;
  top: -2.5rem;
}
@media screen and (min-width: 768px) {
  .c-button::before {
    left: 4.6rem;
    top: -4.6rem;
    width: 11.8rem;
  }
}

.c-subtitle {
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.3913043478;
  transform: translateX(-0.2rem);
}
@media screen and (min-width: 768px) {
  .c-subtitle {
    font-size: 4rem;
    transform: translateX(-0.4rem);
  }
}

.c-title {
  margin-top: 1.5rem;
  font-size: 4.4rem;
  font-weight: 600;
  line-height: 1.3181818182;
  transform: translateX(-0.2rem);
}
@media screen and (min-width: 768px) {
  .c-title {
    margin-top: 1.2rem;
    font-size: min(8.8vw, 11rem);
    line-height: 1.2454545455;
    transform: translateX(-0.4rem);
  }
}

.c-underline {
  position: relative;
  display: inline-block;
  --linewidth: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  [data-title=num] .c-underline {
    display: flex;
    align-items: center;
    -moz-column-gap: 1.8rem;
         column-gap: 1.8rem;
  }
}

[data-line=second].c-underline::after {
  transition-delay: 0.8s;
}

.active .c-underline {
  --linewidth: 100%;
}

.c-underline::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: var(--linewidth);
  height: 1.5rem;
  background-color: #E2D59E;
  z-index: -1;
  transition: width 1.2s ease-out;
}
@media screen and (min-width: 768px) {
  .c-underline::after {
    height: 2rem;
  }
}

[data-section=measures] .c-underline::after {
  background-color: #3E3A35;
}

.l-answer {
  padding-top: calc(5.5rem + 9.72vw);
  padding-bottom: 8.6rem;
}
@media screen and (min-width: 768px) {
  .l-answer {
    padding-top: calc(11.5rem + 9.663250366vw);
    padding-bottom: 18.1rem;
  }
}

.l-building {
  padding-top: 8.1rem;
  padding-bottom: 8.3rem;
}
@media screen and (min-width: 768px) {
  .l-building {
    padding-top: 17.6rem;
    padding-bottom: 16.9rem;
  }
}

.l-concerns {
  padding-top: 8.3rem;
}
@media screen and (min-width: 768px) {
  .l-concerns {
    padding-top: 10.9rem;
  }
}

.l-contact {
  padding-top: calc(4.4rem + 9.72vw);
  padding-bottom: 8.3rem;
}
@media screen and (min-width: 768px) {
  .l-contact {
    padding-top: calc(8.7rem + 9.663250366vw);
    padding-bottom: 14.6rem;
  }
}

.l-footer {
  padding-top: 6.9rem;
  padding-bottom: 19rem;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding-top: 8.3rem;
    padding-bottom: 14.1rem;
  }
}

.l-inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1206px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.l-limited {
  padding-top: 6.9rem;
  padding-bottom: 4.6rem;
}
@media screen and (min-width: 768px) {
  .l-limited {
    padding-top: 14.5rem;
    padding-bottom: 8.9rem;
  }
}

.l-measures {
  padding-top: 8.2rem;
  padding-bottom: 8.6rem;
}
@media screen and (min-width: 768px) {
  .l-measures {
    padding-top: 16.1rem;
    padding-bottom: 19.3rem;
  }
}

.l-narrowInner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .l-narrowInner {
    max-width: 1150px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.l-voices {
  padding-top: 7.9rem;
}
@media screen and (min-width: 768px) {
  .l-voices {
    padding-top: 16rem;
  }
}

.l-wideInner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .l-wideInner {
    max-width: 1366px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

@media screen and (min-width: 768px) {
  [data-inner=answer].p-answer__inner {
    max-width: 131.2rem;
  }
}

.p-answer__subtitle {
  text-align: center;
  margin-top: 2.4rem;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-answer__subtitle {
    margin-top: 3.8rem;
    font-size: 3.7rem;
  }
}

.p-answer__title {
  text-align: center;
  line-height: 1.34375;
  font-size: 3.2rem;
  font-weight: 600;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-answer__title {
    font-size: 7rem;
    margin-top: 0.8rem;
  }
}

.p-answer__title span::after {
  bottom: -0.2rem;
}
@media screen and (min-width: 768px) {
  .p-answer__title span::after {
    bottom: 0;
  }
}

.p-answer__prologue {
  margin-top: 4.1rem;
  display: grid;
  row-gap: 0.8rem;
}
@media screen and (min-width: 768px) {
  .p-answer__prologue {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 4.4rem;
  }
}

.p-answer__prologueText {
  color: #000;
  font-size: 1.6rem;
  line-height: 1.875;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-answer__prologueText {
    margin-top: 1.6rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-size: 1.8rem;
    line-height: 1.9444444444;
  }
}

.p-answer__prologueImg {
  width: 100%;
  max-width: 84vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-answer__prologueImg {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    max-width: 53.6rem;
    margin-left: 1.9rem;
  }
}

.p-answer__prologueImg img {
  aspect-ratio: 315/449;
}

.p-answer__contents {
  margin-top: 6rem;
  display: grid;
  row-gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-answer__contents {
    margin-top: 10.6rem;
  }
}

.p-answer__bottom {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-answer__bottom {
    margin-top: 9.7rem;
  }
}

.p-answer__button {
  margin-top: 7.6rem;
}
@media screen and (min-width: 768px) {
  .p-answer__button {
    margin-top: 13rem;
  }
}

.p-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.2857142857;
}
@media screen and (min-width: 768px) {
  .p-banner {
    display: flex;
    font-size: 1.6rem;
  }
}

.p-banner__wrap {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-banner__wrap {
    width: 66.66666%;
  }
}

.p-banner__wrap::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #989591;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.p-banner__wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #999591;
}
@media screen and (min-width: 768px) {
  .p-banner__wrap::after {
    left: auto;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #989591;
  }
}

.p-banner__item {
  background-color: #685744;
  color: #FFF;
  height: 5.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: background-color 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .p-banner__item {
    height: 6rem;
  }
}

.p-banner__item:hover {
  opacity: 1;
  background-color: #2C2723;
}

.p-banner__contact {
  width: 100%;
  height: 5.5rem;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1.1rem;
       column-gap: 1.1rem;
  background-color: #C7AF49;
  transition: background-color 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .p-banner__contact {
    width: 33.33333%;
    -moz-column-gap: 1.7rem;
         column-gap: 1.7rem;
    height: 6rem;
  }
}

.p-banner__contact:hover {
  background-color: #B7A451;
  opacity: 1;
}

.p-banner__contact::before {
  content: "";
  display: block;
  width: 2.9rem;
  aspect-ratio: 29.15/20.6;
  background-image: url(../images/common/mail.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.p-block__title {
  font-size: 3rem;
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-block__title {
    align-items: center;
    -moz-column-gap: 1.8rem;
         column-gap: 1.8rem;
    font-size: 5rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 768px) {
  .p-block__title.u-desktop {
    display: flex;
  }
}

.p-block__num {
  font-size: 3.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-block__num {
    display: block;
    margin-bottom: 0.4rem;
  }
}
@media screen and (min-width: 768px) {
  .p-block__num {
    font-size: 6.3rem;
    display: flex;
    align-items: center;
    -moz-column-gap: 2.3rem;
         column-gap: 2.3rem;
    font-weight: 600;
  }
}

@media screen and (min-width: 768px) {
  .p-block__num::after {
    content: "";
    display: block;
    width: 1.5rem;
    aspect-ratio: 15/14;
    background-image: url(../images/common/arrow_brown.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}

@media screen and (min-width: 768px) {
  [data-section=measures] .p-block__num::after {
    background-image: url(../images/common/arrow_white_rounded.svg);
  }
}

.p-block__term {
  margin-top: 6.1rem;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5909090909;
}
@media screen and (min-width: 768px) {
  .p-block__term {
    margin-top: 6.7rem;
    font-size: 3rem;
    line-height: 1.6666666667;
  }
}

.p-block__item .p-block__term {
  margin-top: 0;
}

.p-block__text {
  margin-top: 4.2rem;
  font-size: 1.6rem;
  line-height: 1.875;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-block__text {
    margin-top: 3rem;
    font-size: 1.7rem;
    line-height: 2.0588235294;
  }
}

[data-section=measures] .p-block__text {
  color: #FFF;
}

.p-block__houseImg {
  margin-top: 4.5rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-block__houseImg {
    margin-top: 8rem;
    max-width: 95.1rem;
    transform: translateX(-1.8rem);
  }
}

.p-block__houseImg img {
  aspect-ratio: 335/558;
}
@media screen and (min-width: 768px) {
  .p-block__houseImg img {
    aspect-ratio: 951/460;
  }
}

.p-block__houseBottom {
  margin-top: 5.5rem;
  border: 1rem solid #EFEBE1;
  padding: 2.9rem 2rem 2.8rem;
}
@media screen and (min-width: 768px) {
  .p-block__houseBottom {
    margin-top: 7.2rem;
    padding: 5rem 5.9rem 5.4rem;
  }
}

.p-block__subject {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-block__subject {
    font-size: 2.5rem;
    line-height: 1.68;
  }
}

.p-block__family {
  margin-top: 2.3rem;
  padding: 1.4rem 1.6rem 1.6rem;
  background-color: #EFEBE1;
  font-size: 1.5rem;
  line-height: 1.3333333333;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-block__family {
    margin-top: 2.4rem;
    padding: 1rem 2.1rem;
    font-size: 1.6rem;
  }
}

.p-block__description {
  margin-top: 2.2rem;
  font-size: 1.6rem;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .p-block__description {
    margin-top: 2.6rem;
    font-size: 1.7rem;
    line-height: 2.0588235294;
  }
}

[data-item=building02].p-block__item {
  margin-top: 5.9rem;
}
@media screen and (min-width: 768px) {
  [data-item=building02].p-block__item {
    margin-top: 16.8rem;
  }
}

[data-item=building03].p-block__item {
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  [data-item=building03].p-block__item {
    margin-top: 22.2rem;
  }
}

[data-item=measure02].p-block__item {
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  [data-item=measure02].p-block__item {
    margin-top: 15.7rem;
  }
}

.p-block__body {
  margin-top: 6.1rem;
  display: grid;
  row-gap: 3.7rem;
}
@media screen and (min-width: 768px) {
  .p-block__body {
    margin-top: 10rem;
    display: flex;
    -moz-column-gap: 3.9rem;
         column-gap: 3.9rem;
  }
}

@media screen and (min-width: 768px) {
  .p-block__wrap {
    margin-top: -0.3rem;
  }
}

.p-block__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-block__img {
    max-width: 41.7rem;
    margin-left: auto;
  }
}

.p-block__img img {
  aspect-ratio: 335/216;
}
@media screen and (min-width: 768px) {
  .p-block__img img {
    aspect-ratio: 417/505;
    -o-object-fit: cover;
       object-fit: cover;
    transform: scale(1.1);
  }
}

.para-image {
  overflow: hidden;
}

.p-building__contents {
  margin-top: 8.2rem;
}
@media screen and (min-width: 768px) {
  .p-building__contents {
    margin-top: 14.8rem;
  }
}

.p-building__button {
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-building__button {
    margin-top: 15.6rem;
  }
}

.p-concerns__heading {
  position: relative;
  padding-bottom: 3.4rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-concerns__heading {
    padding-bottom: 1.7rem;
  }
}

.p-concerns__heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 9.72vw;
  background-image: url(../images/common/bg_white.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 100%;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-concerns__heading::after {
    height: 9.663250366vw;
  }
}

.p-concerns__subject {
  font-size: 2.5rem;
  line-height: 2.4;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-concerns__subject {
    letter-spacing: 0;
    font-size: 4rem;
    line-height: 1.75;
  }
}

.p-concerns__subject span {
  display: block;
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
  -webkit-text-decoration-color: #E2D59E;
          text-decoration-color: #E2D59E;
  text-decoration-thickness: 0.7rem;
  text-underline-offset: 1.3rem;
}
@media screen and (min-width: 768px) {
  .p-concerns__subject span {
    text-underline-offset: 1.2rem;
  }
}

.p-concerns__items {
  margin-top: 2.9rem;
  position: relative;
  width: 100%;
  max-width: 33.5rem;
  height: 43.57rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-concerns__items {
    margin-top: 1.1rem;
    max-width: 110rem;
    height: 49.04rem;
  }
}

.p-concerns__item {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: opacity 1.6s, transform 1.6s;
}

.active .p-concerns__item {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

[data-item=concern-01].p-concerns__item {
  top: 0;
  left: -1.1rem;
  width: 16.375rem;
}
@media screen and (min-width: 768px) {
  [data-item=concern-01].p-concerns__item {
    top: 2.6rem;
    left: 0;
    width: 27.62rem;
  }
}

[data-item=concern-01].p-concerns__item img {
  aspect-ratio: 163.75/169.8;
}

[data-item=concern-02].p-concerns__item {
  top: 10.4rem;
  left: 6.8rem;
  width: 17.58rem;
  transition-delay: 0.5s;
}
@media screen and (min-width: 768px) {
  [data-item=concern-02].p-concerns__item {
    top: auto;
    bottom: 3.3rem;
    left: 18.2rem;
    width: 29.65rem;
    z-index: 1;
  }
}

[data-item=concern-02].p-concerns__item img {
  aspect-ratio: 175.8/181.3;
}

[data-item=concern-03].p-concerns__item {
  top: 2.5rem;
  right: -1.4rem;
  width: 17.01rem;
  z-index: 1;
  transition-delay: 1s;
}
@media screen and (min-width: 768px) {
  [data-item=concern-03].p-concerns__item {
    top: 4rem;
    right: auto;
    left: 50%;
    transform: translate(-50%, 3rem);
    z-index: 2;
    width: 28.69rem;
  }
}

@media screen and (min-width: 768px) {
  .active [data-item=concern-03].p-concerns__item {
    transform: translate(-50%, 0);
  }
}

[data-item=concern-03].p-concerns__item img {
  aspect-ratio: 170.1/179.3;
}

[data-item=concern-04].p-concerns__item {
  bottom: 3.2rem;
  left: -1rem;
  width: 16.375rem;
  z-index: 1;
  transition-delay: 1.5s;
}
@media screen and (min-width: 768px) {
  [data-item=concern-04].p-concerns__item {
    left: auto;
    bottom: 0;
    right: 16.9rem;
    width: 27.62rem;
  }
}

[data-item=concern-04].p-concerns__item img {
  aspect-ratio: 163.75/169.8;
}

[data-item=concern-05].p-concerns__item {
  bottom: 0;
  right: -0.9rem;
  width: 17.58rem;
  z-index: 1;
  transition-delay: 2s;
}
@media screen and (min-width: 768px) {
  [data-item=concern-05].p-concerns__item {
    z-index: 2;
    bottom: auto;
    top: 0;
    right: 0;
    width: 29.65rem;
  }
}

[data-item=concern-05].p-concerns__item img {
  aspect-ratio: 175.8/181.3;
}

.p-concerns__text {
  margin-top: 3.3rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .p-concerns__text {
    font-size: 2rem;
    line-height: 2;
  }
}

.p-concerns__answer {
  background-color: #EFEBE1;
}

.p-contact {
  background-color: #685744;
  color: #FFF;
}

.p-contact__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-contact__title {
    font-size: 3.5rem;
    line-height: 1.7142857143;
  }
}

.p-contact__form {
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    margin-top: 8.3rem;
  }
}

.p-detail {
  padding-top: 3rem;
  padding-bottom: 3.1rem;
}
@media screen and (min-width: 768px) {
  .p-detail {
    padding-top: 7.8rem;
    padding-bottom: 8rem;
  }
}

[data-content=project-leader].p-detail {
  background-color: #E2DACA;
}

[data-content=mortgage-pro].p-detail {
  background-color: #D6CCB8;
}

.p-detail__body {
  display: grid;
  row-gap: 2.7rem;
}
@media screen and (min-width: 768px) {
  .p-detail__body {
    display: flex;
    align-items: flex-start;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
}

.p-detail__info {
  display: grid;
  row-gap: 0.6rem;
}
@media screen and (min-width: 768px) {
  .p-detail__info {
    display: flex;
    align-items: center;
    -moz-column-gap: 2.3rem;
         column-gap: 2.3rem;
  }
}

.p-detail__position {
  min-width: 18.8rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  padding: 0.6rem 0.5rem;
  background-color: #685744;
  color: #FFF;
  font-weight: 700;
  font-size: 1.7rem;
}
@media screen and (min-width: 768px) {
  .p-detail__position {
    min-width: 29.3rem;
    font-size: 2rem;
    padding: 0.9rem;
  }
}

.p-detail__name {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-detail__name {
    font-size: 1.6rem;
  }
}

.p-detail__subject {
  margin-top: 2.1rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5416666667;
}
@media screen and (min-width: 768px) {
  .p-detail__subject {
    font-size: 3rem;
    line-height: 1.4333333333;
  }
}

.p-detail__text {
  margin-top: 3.3rem;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.875;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-detail__text {
    margin-top: 3.5rem;
    font-size: 1.7rem;
    line-height: 2.0588235294;
  }
}

@media screen and (min-width: 768px) {
  [data-content=project-leader] .p-detail__text {
    max-width: 70.4rem;
  }
}

@media screen and (min-width: 768px) {
  [data-content=mortgage-pro] .p-detail__text {
    max-width: 68.8rem;
  }
}

.p-detail__history {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-detail__history {
    margin-top: 4rem;
  }
}

.p-detail__imgs {
  width: 100%;
  display: grid;
  row-gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-detail__imgs {
    max-width: 39.9rem;
    flex-shrink: 0;
    margin-left: auto;
  }
}

.p-detail__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-detail__img {
    max-width: 39.9rem;
  }
}

.p-detail__img img {
  aspect-ratio: 295/205;
}
@media screen and (min-width: 768px) {
  .p-detail__img img {
    aspect-ratio: 399/314;
  }
}

.p-detail__case {
  margin-top: 3rem;
  background-color: #E6E1D6;
  padding: 3rem 2rem 2.7rem;
}
@media screen and (min-width: 768px) {
  .p-detail__case {
    margin-top: 4.4rem;
    padding: 5rem 5rem 4.5rem;
  }
}

.p-detail__caseTitle {
  font-size: 1.6rem;
  font-weight: 500;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #685744;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.p-detail__caseText {
  margin-top: 1.9rem;
  font-size: 1.6rem;
  line-height: 1.5625;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-detail__caseText {
    margin-top: 2.5rem;
  }
}

.p-detail__description {
  margin-top: 1.7rem;
  color: #000;
  font-size: 1.6rem;
  line-height: 1.875;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-detail__description {
    margin-top: 1.4rem;
    line-height: 2.1875;
  }
}

.p-footer {
  background-color: #685744;
  border-top: 1px solid #FFF;
  color: #FFF;
}

@media screen and (min-width: 768px) {
  .p-footer__container {
    display: flex;
  }
}

.p-footer__logo {
  display: block;
  width: 100%;
  max-width: 21rem;
  aspect-ratio: 210/64.5;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
}

.p-footer__info {
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__info {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-footer__info {
    margin-top: 0;
    margin-left: 4.6rem;
  }
}

.p-footer__company {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-footer__company {
    font-size: 2.5rem;
  }
}

.p-footer__address {
  margin-top: 1.1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-footer__address {
    margin-top: 1.5rem;
    font-size: 1.6rem;
  }
}

.p-footer__map {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  -moz-column-gap: 0.6rem;
       column-gap: 0.6rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-footer__map {
    margin-top: 0.3rem;
    -webkit-margin-start: 0.2rem;
            margin-inline-start: 0.2rem;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    font-size: 1.6rem;
  }
}

.p-footer__map::after {
  content: "";
  display: block;
  width: 1.29rem;
  height: 1.71rem;
  background-image: url(../images/common/icon_map.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.p-footer__tel {
  margin-top: 0.5rem;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__tel {
    margin-top: 1rem;
    text-align: left;
  }
}

.p-footer__other {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  -moz-column-gap: 1.7rem;
       column-gap: 1.7rem;
}
@media screen and (min-width: 768px) {
  .p-footer__other {
    margin-top: 1.8rem;
    -moz-column-gap: 3.1rem;
         column-gap: 3.1rem;
  }
}

.p-footer__item {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.7rem;
       column-gap: 0.7rem;
}
@media screen and (min-width: 768px) {
  .p-footer__item {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}

.p-footer__term {
  background-color: #463F37;
  min-width: 7.4rem;
  text-align: center;
  font-size: 1.4rem;
  padding: 0.15rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-footer__term {
    min-width: 8rem;
    padding: 0.25rem;
  }
}

.p-footer__description {
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-footer__description {
    font-size: 1.6rem;
  }
}

.p-footer__others {
  margin-top: 4.7rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-footer__others {
    margin-top: 0;
    margin-left: auto;
  }
}

.p-footer__wrap {
  display: flex;
  justify-content: center;
  -moz-column-gap: 1.9rem;
       column-gap: 1.9rem;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .p-footer__wrap {
    display: contents;
  }
}

.p-footer__sns {
  display: flex;
  -moz-column-gap: 1.8rem;
       column-gap: 1.8rem;
}
@media screen and (min-width: 768px) {
  .p-footer__sns {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    margin-left: auto;
  }
}

.p-footer__sns a {
  display: block;
  width: 2.3rem;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .p-footer__sns a {
    width: 2.84rem;
  }
}

.p-footer__business {
  font-size: 1.4rem;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-decoration: underline;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  text-underline-offset: 2px;
}
@media screen and (min-width: 768px) {
  .p-footer__business {
    margin-left: auto;
  }
}

.p-footer__instagram {
  background-image: url(../images/common/icon_instagram.svg);
}

.p-footer__facebook {
  background-image: url(../images/common/icon_facebook.svg);
}

.p-footer__bottom {
  margin-top: 4.6rem;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom {
    margin-top: auto;
  }
}

.p-footer__copyright {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    margin-top: 1.2rem;
    margin-bottom: -0.1rem;
    text-align: right;
  }
}

.p-footer__copyright small {
  font-weight: 500;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
}

.p-footer__copyright small span {
  font-family: "Oswald", sans-serif;
}

.p-form {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-form {
    max-width: 91.6rem;
    margin-inline: auto;
  }
}

.p-form__wrap {
  display: grid;
  row-gap: 1.4rem;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-form__wrap {
    display: flex;
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
    align-items: flex-start;
    font-size: 1.6rem;
  }
}

.p-form__wrap:nth-child(n+2) {
  margin-top: 2.05rem;
}
@media screen and (min-width: 768px) {
  .p-form__wrap:nth-child(n+2) {
    margin-top: 4rem;
  }
}

.p-form__wrap label {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-form__wrap label {
    max-width: 19.1rem;
  }
}

.p-form__label {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.1rem;
       column-gap: 1.1rem;
}
@media screen and (min-width: 768px) {
  .p-form__label {
    margin-top: 0.8rem;
    justify-content: space-between;
  }
}

.p-form__label span {
  background-color: #C7AF49;
  width: 4.4rem;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.4;
  padding: 0.05rem;
}

.p-form__text,
.p-form__textarea {
  margin-left: auto;
  width: 100%;
  padding: 0.8rem;
  background-color: #FFF;
}
@media screen and (min-width: 768px) {
  .p-form__text,
  .p-form__textarea {
    max-width: 70rem;
    margin-top: 0;
  }
}

.p-form__textarea {
  height: 27.5rem;
}
@media screen and (min-width: 768px) {
  .p-form__textarea {
    height: 32rem;
  }
}

.p-form__button {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .p-form__button {
    margin-top: 8.6rem;
  }
}

.p-form__submit {
  display: block;
  width: 100%;
  max-width: 22.4rem;
  margin-inline: auto;
  position: relative;
  background-color: #C7AF49;
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 1.7rem 0;
  box-shadow: 0.5rem 0.5rem #271F14;
}
@media screen and (min-width: 768px) {
  .p-form__submit {
    max-width: 47.7rem;
    padding: 1.9rem 0;
    font-size: 3rem;
    transition: background-color 0.3s ease-out;
    transform: translateX(-0.3rem);
  }
}

.p-form__submit:hover {
  background-color: #B7A451;
  opacity: 1;
}

.p-form__message {
  margin-top: 4rem;
  font-size: 1.6rem;
}

.p-fv {
  width: 100%;
  height: calc(100vh - 11rem);
  height: calc(100dvh - 11rem);
  background-image: url(../images/common/fv_sp.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-fv {
    background-image: url(../images/common/fv.webp);
    height: 100vh;
    height: 100dvh;
  }
}

.p-fv__wrap {
  position: absolute;
  right: 0;
  bottom: 6.2rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-fv__wrap {
    right: 9.7364568082vw;
    bottom: auto;
    top: 50%;
    transform: translateY(-58%);
  }
}

.p-fv__title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.4583333333;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-fv__title {
    color: #FFF;
    margin-right: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-fv__title {
    font-size: 3.8rem;
    margin-right: 0.9rem;
  }
}

.p-fv__text {
  text-transform: uppercase;
  margin-top: 2.4rem;
  font-size: 4.3rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-fv__text {
    font-size: 8.5rem;
  }
}

.p-fv__text span {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-top: 2.5rem;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (min-width: 768px) {
  .p-fv__text span {
    margin-top: 4.4rem;
  }
}

.p-fv__text [data-text=with-house] {
  padding: 0.1rem 2rem 0.6rem 0.6rem;
}
@media screen and (min-width: 768px) {
  .p-fv__text [data-text=with-house] {
    padding: 0 1.2rem 0.7rem 1.3rem;
  }
}

.p-fv__text [data-text=project] {
  margin-top: 1.2rem;
  padding: 0.1rem 2rem 0.5rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-fv__text [data-text=project] {
    margin-top: 3.1rem;
    padding: 0.1rem 1.2rem 0.5rem 1.2rem;
  }
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.p-header__logo {
  display: block;
  width: 13.4rem;
  position: absolute;
  top: 1rem;
  left: 1rem;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 15.64rem;
    top: 1.9rem;
    left: 3.1rem;
  }
}

.p-header__logo img {
  aspect-ratio: 134/41.24;
}

.p-header__img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease-out;
}

[data-img=brown].p-header__img {
  opacity: 0;
}

.p-header__logo.is-scrolled [data-img=white].p-header__img {
  opacity: 0;
}

.p-header__logo.is-scrolled [data-img=brown].p-header__img {
  opacity: 1;
}

.p-history {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-history {
    max-width: 65.6rem;
  }
}

.p-history__title {
  font-size: 1.6rem;
  font-weight: 500;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #685744;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.p-history__block {
  margin-top: 1.4rem;
  display: flex;
  align-items: flex-start;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.3333333333;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-history__block {
    font-size: 1.6rem;
    line-height: 1.5625;
    -moz-column-gap: 0.8rem;
         column-gap: 0.8rem;
  }
}

.p-history__block:nth-of-type(n+2) {
  margin-top: 1.2rem;
}
@media screen and (min-width: 768px) {
  .p-history__block:nth-of-type(n+2) {
    margin-top: 0.7rem;
  }
}

.p-history__date {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-history__date {
    -moz-column-gap: 0.8rem;
         column-gap: 0.8rem;
  }
}

.p-history__year {
  width: 6.7rem;
}

.p-history__month {
  width: 3.8rem;
}

.p-item {
  display: grid;
  row-gap: 4.75rem;
}
@media screen and (min-width: 768px) {
  .p-item {
    grid-template-columns: repeat(2, 1fr);
    gap: 4.3rem min(7.3206442167vw, 10rem);
  }
}

.p-item__title {
  padding: 0.6rem;
  background-color: #685744;
  color: #FFF;
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-item__title {
    font-size: 2rem;
    padding: 0.9rem;
  }
}

.p-item__text {
  margin-top: 1.9rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.7rem;
  line-height: 1.7647058824;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-item__text {
    line-height: 2.0588235294;
  }
}

.p-limited {
  position: relative;
  background-color: #32302E;
  z-index: 1;
  color: #FFF;
}
@media screen and (min-width: 768px) {
  .p-limited {
    margin-top: -1px;
  }
}

.p-limited::after {
  content: "";
  display: block;
  width: 100%;
  height: 9.72vw;
  background-image: url(../images/common/bg_black.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 100%;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-limited::after {
    height: 9.663250366vw;
  }
}

.p-limited__pr {
  margin-top: 2.4rem;
  width: 100%;
  padding-bottom: 3.3rem;
  background-image: linear-gradient(to right, #FFF, #FFF 2px, transparent 2px, transparent 4px);
  background-size: 5px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
@media screen and (min-width: 768px) {
  .p-limited__pr {
    margin-top: 3.7rem;
    max-width: 74.8rem;
    margin-inline: auto;
    padding-bottom: 3.2rem;
    display: flex;
    align-items: center;
  }
}

.p-limited__prWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-1rem);
  -moz-column-gap: 1.1rem;
       column-gap: 1.1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-limited__prWrap {
    -moz-column-gap: 2.45rem;
         column-gap: 2.45rem;
    margin-left: 0.7rem;
  }
}

.p-limited__prWrap::after {
  content: "";
  display: block;
  width: 2.1rem;
  aspect-ratio: 21/18;
  background-image: url(../images/common/arrow_down.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 50%;
  transform: translateX(calc(-50% + 1rem));
  bottom: -4.3rem;
}
@media screen and (min-width: 768px) {
  .p-limited__prWrap::after {
    margin: 0;
    bottom: auto;
    left: auto;
    top: 50%;
    transform: translateY(-34%);
    right: -3.6rem;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    width: 1.4rem;
    aspect-ratio: 14/16;
    background-image: url(../images/common/arrow_white.svg);
  }
}

.p-limited__served {
  width: 100%;
  max-width: 9.8rem;
}
@media screen and (min-width: 768px) {
  .p-limited__served {
    max-width: 16.7rem;
  }
}

.p-limited__served img {
  aspect-ratio: 1/1;
}

.p-limited__fee {
  width: 100%;
  max-width: 19.68rem;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-limited__fee {
    max-width: 24.5rem;
    margin-top: 1.4rem;
  }
}

.p-limited__fee img {
  aspect-ratio: 196.8/78;
}

.p-limited__free {
  margin-top: 6.6rem;
  width: 100%;
  max-width: 25.4rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-limited__free {
    margin-top: 1.9rem;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
  }
}

.p-limited__free img {
  aspect-ratio: 254/127;
}

.p-limited__firstNote {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .p-limited__firstNote {
    margin-top: 2.4rem;
  }
}

.p-limited__note {
  display: flex;
  align-items: flex-start;
  font-size: 1.4rem;
  line-height: 1.5714285714;
  -moz-column-gap: 0.6rem;
       column-gap: 0.6rem;
}
@media screen and (max-width: 767px) {
  .p-limited__note {
    font-family: "Noto Sans JP", sans-serif;
  }
}
@media screen and (min-width: 768px) {
  .p-limited__note {
    justify-content: center;
    font-size: 1.6rem;
  }
}

.p-limited__note span {
  flex-shrink: 0;
}

.p-limited__description {
  margin-top: 5rem;
  border: 1px solid #FFF;
  padding: 1.7rem 0 2.7rem;
}
@media screen and (min-width: 768px) {
  .p-limited__description {
    margin-top: 6.8rem;
    display: flex;
    align-items: center;
    padding: 1.8rem 1.8rem 1.8rem 4.7rem;
    min-height: 12.4rem;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-limited__description::after {
    content: "";
    display: block;
    height: 100%;
    aspect-ratio: 37.7/124;
    background-image: url(../images/common/white_line.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 28.2rem;
  }
}

.p-limited__about {
  padding-bottom: 0.1rem;
  position: relative;
  font-size: 2rem;
  text-align: center;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-limited__about {
    flex-shrink: 0;
    font-size: 2.4rem;
    padding-bottom: 0;
  }
}

.p-limited__about::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 335/37.7;
  background-image: url(../images/common/white_line_sp.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 100%;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-limited__about::after {
    content: none;
  }
}

.p-limited__explanation {
  margin-top: calc(10.0533333333vw + 1rem);
  padding: 0 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-limited__explanation {
    margin-top: 0;
    margin-left: 8.5rem;
    padding: 0;
    font-size: 1.7rem;
    line-height: 1.6470588235;
  }
}

.p-limited__notes {
  margin-top: 3.3rem;
  display: grid;
  row-gap: 1.1rem;
}
@media screen and (min-width: 768px) {
  .p-limited__notes {
    margin-top: 3.6rem;
    row-gap: 0.3rem;
  }
}

.p-measures {
  background-color: #685744;
  color: #FFF;
}

.p-measures__contents {
  margin-top: 8.1rem;
}
@media screen and (min-width: 768px) {
  .p-measures__contents {
    margin-top: 12.9rem;
  }
}

.p-measures__button {
  margin-top: 7.9rem;
}
@media screen and (min-width: 768px) {
  .p-measures__button {
    margin-top: 13.4rem;
  }
}

.p-opening {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #685744;
  z-index: 150;
  transition: opacity 1s 3s ease-out, visibility 0s 4s ease-out;
}

.p-opening.close {
  opacity: 0;
  visibility: hidden;
}

.p-opening__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22.7rem;
}
@media screen and (min-width: 768px) {
  .p-opening__logo {
    width: 39.1rem;
  }
}

.p-opening__logo img {
  aspect-ratio: 391/120.5;
}

.p-speech {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 33.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-speech {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}

.p-speech::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: -1.8rem;
  right: 2.3rem;
  background-image: url(../images/common/direction_brown.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 3.48rem;
  aspect-ratio: 34.8/26.8;
}
@media screen and (min-width: 768px) {
  .p-speech::after {
    width: 4.36rem;
    right: 1.2rem;
  }
}

[data-section=limited] .p-speech::after {
  background-image: url(../images/common/direction_yellow.svg);
}
@media screen and (min-width: 768px) {
  [data-section=limited] .p-speech::after {
    right: 2.4rem;
  }
}

.p-speech__title {
  background-color: #685744;
  color: #FFF;
  font-size: 2.5rem;
  line-height: 1.32;
  font-weight: 600;
  padding: 1rem 0 1.2rem;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-speech__title {
    font-size: 2.8rem;
    padding: 1.5rem 5rem;
  }
}

[data-section=limited] .p-speech__title {
  background-color: #C7AF49;
  font-size: 2.2rem;
  letter-spacing: -0.05em;
  padding: 1.5rem 0 1.6rem;
}
@media screen and (min-width: 768px) {
  [data-section=limited] .p-speech__title {
    font-size: 3rem;
    letter-spacing: normal;
    padding: 1.2rem 6.9rem 1.6rem;
  }
}

.p-speech__title::before,
.p-speech__title::after {
  content: "";
  display: block;
  width: 3.16rem;
  aspect-ratio: 31.6/41.8;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 2.7rem;
}
@media screen and (min-width: 768px) {
  .p-speech__title::before,
  .p-speech__title::after {
    width: 1.87rem;
    aspect-ratio: 18.7/24.8;
  }
}

@media screen and (max-width: 767px) {
  [data-section=limited] .p-speech__title::before,
  [data-section=limited] .p-speech__title::after {
    content: none;
  }
}

.p-speech__title::before {
  left: 2rem;
  background-image: url(../images/common/diagonally_left.svg);
}

.p-speech__title::after {
  right: 2rem;
  background-image: url(../images/common/diagonally_right.svg);
}

@media screen and (min-width: 768px) {
  [data-section=limited] .p-speech__title::before {
    top: 2.2rem;
    left: 3.8rem;
  }
}

@media screen and (min-width: 768px) {
  [data-section=limited] .p-speech__title::after {
    top: 2.2rem;
    right: 3.8rem;
  }
}

.p-voices__title {
  display: block;
  margin-inline: auto;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-voices__title {
    font-size: 5rem;
  }
}

.p-voices__title span::after {
  bottom: -0.4rem;
}
@media screen and (min-width: 768px) {
  .p-voices__title span::after {
    bottom: 0.9rem;
  }
}

.p-voices__container {
  margin-top: 5.8rem;
}
@media screen and (min-width: 768px) {
  .p-voices__container {
    margin-top: 8.9rem;
  }
}

.p-voices__block {
  display: grid;
  row-gap: 3.9rem;
}
@media screen and (min-width: 768px) {
  .p-voices__block {
    display: flex;
    -moz-column-gap: min(4.0995607613vw, 5.6rem);
         column-gap: min(4.0995607613vw, 5.6rem);
  }
}

.p-voices__block:nth-of-type(n+2) {
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .p-voices__block:nth-of-type(n+2) {
    margin-top: 14.4rem;
  }
}

@media screen and (min-width: 768px) {
  .p-voices__block:nth-of-type(2n) {
    display: flex;
    flex-direction: row-reverse;
    -moz-column-gap: min(5.0512445095vw, 6.9rem);
         column-gap: min(5.0512445095vw, 6.9rem);
  }
}

@media screen and (min-width: 768px) {
  .p-voices__body {
    margin-top: 4.4rem;
  }
}

.p-voices__name {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 1.4rem;
  font-weight: 600;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #685744;
}
@media screen and (min-width: 768px) {
  .p-voices__name {
    font-size: 1.8rem;
  }
}

.p-voices__faq {
  margin-top: 1.7rem;
}
@media screen and (min-width: 768px) {
  .p-voices__faq {
    margin-top: 4.7rem;
  }
}

.p-voices__list:nth-of-type(n+2) {
  margin-top: 3.6rem;
}
@media screen and (min-width: 768px) {
  .p-voices__list:nth-of-type(n+2) {
    margin-top: 4.5rem;
  }
}

.p-voices__term,
.p-voices__text {
  display: flex;
  -moz-column-gap: 1.2rem;
       column-gap: 1.2rem;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .p-voices__term,
  .p-voices__text {
    -moz-column-gap: 1.6rem;
         column-gap: 1.6rem;
  }
}

.p-voices__term span,
.p-voices__text span {
  flex-shrink: 0;
  font-size: 1.8rem;
  color: #685744;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-voices__term span,
  .p-voices__text span {
    font-size: 2rem;
  }
}

.p-voices__term {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.5882352941;
}
@media screen and (min-width: 768px) {
  .p-voices__term {
    font-size: 2rem;
    line-height: 1.6;
  }
}

.p-voices__text {
  color: #000;
  margin-top: 2.2rem;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.625;
}
@media screen and (min-width: 768px) {
  .p-voices__text {
    margin-top: 2.1rem;
    font-size: 1.7rem;
    line-height: 1.7647058824;
  }
}

@media screen and (min-width: 768px) {
  .p-voices__text span {
    margin-top: -0.25rem;
  }
}

.p-voices__imgs {
  width: 100%;
  display: grid;
  row-gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-voices__imgs {
    max-width: 29rem;
    flex-shrink: 0;
  }
}

.p-voices__img img {
  width: 100%;
  aspect-ratio: 335/225;
}
@media screen and (min-width: 768px) {
  .p-voices__img img {
    aspect-ratio: 290/225;
  }
}

.p-voices__bottom {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .p-voices__bottom {
    margin-top: 16.8rem;
  }
}

.p-voices__bottom img {
  aspect-ratio: 375/630;
}
@media screen and (min-width: 768px) {
  .p-voices__bottom img {
    aspect-ratio: 1366/1223;
  }
}

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

.u-fadeIn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(3rem);
  transition: opacity 1s, transform 1s;
}

.u-fadeIn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.u-nowrap {
  white-space: nowrap;
}
/*# sourceMappingURL=styles.css.map */
