@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "kosugi2";
  font-style: normal;
  font-weight: 400;
  src: url("../font/Kosugi-Regular.ttf") format("truetype");
  font-display: swap;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 2;
  margin: 0 auto;
  color: #231815;
  font-family: "Kosugi", sans-serif;
  line-height: var(--line-height);
  -webkit-font-smoothing: antialiased;
  font-weight: normal;
}
body a {
  text-decoration: none;
  color: #231815;
}
body img {
  width: 100%;
  height: auto;
}
body li {
  list-style: none;
}

:root {
  --line-height: clamp(24px, 3vw, 30px);
}

select {
  -webkit-appearance: none;
  appearance: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.red {
  color: red;
}

button {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}

[id] {
  scroll-margin-top: 150px;
}

.bg {
  background-color: #fff;
}

/* LP Specific Styles */
.breadcrumbsWrap {
  display: none !important;
}

.p-lp {
  font-family: "Kosugi", sans-serif;
  color: #534741;
  padding-top: 7.1rem;
}
@media (min-width: 1024px) {
  .p-lp {
    padding-top: 12.1rem;
  }
}
.p-lp h2,
.p-lp h3 {
  font-family: "Hina Mincho", serif;
  font-weight: 500;
  line-height: 1.6;
}
.p-lp h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
  text-align: center;
  color: #bfa580;
  letter-spacing: 0.2em;
}

.l-section h3 + h2,
.l-section-full h3 + h2 {
  margin-top: 0;
}

.l-section {
  padding: 8rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .l-section {
    padding: 5rem 5%;
  }
}
.l-section h2 {
  font-size: 3.6rem;
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
  font-weight: bold;
}
@media (max-width: 768px) {
  .l-section h2 {
    font-size: 2.8rem;
  }
}

.l-section-full {
  padding: 6rem 0;
  width: 100%;
}
.l-section-full h2 {
  font-size: 3.6rem;
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
  font-weight: bold;
}
@media (max-width: 768px) {
  .l-section-full h2 {
    font-size: 2.8rem;
  }
}

/* FV */
.p-lp-fv {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #333;
  color: #fff;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  padding: 2rem;
}
@media (max-width: 768px) {
  .p-lp-fv {
    padding: 2rem;
    min-height: 60vh;
  }
}
.p-lp-fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.28);
  z-index: 1;
}

.p-lp-fv__bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.p-lp-fv__bg-slider .slick-list,
.p-lp-fv__bg-slider .slick-track {
  height: 100%;
}

.p-lp-fv__bg-slide {
  width: 100%;
  height: 100%;
}
.p-lp-fv__bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-lp-fv__content {
  position: relative;
  font-weight: bold;
  font-family: serif;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-lp-fv__content h1 {
  font-size: 8rem;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: #fff;
  width: fit-content;
  text-align: left;
  padding-left: 5%;
}
@media screen and (max-width: 768px) {
  .p-lp-fv__content h1 {
    font-size: 3.5rem;
  }
}
.p-lp-fv__content p {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-lp-fv__content p {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.p-lp-fv__logo {
  max-width: 260px;
  height: auto;
  margin-bottom: 2rem;
  display: inline-block;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}
@media screen and (max-width: 768px) {
  .p-lp-fv__logo {
    max-width: 180px;
  }
}

.p-lp-coupon {
  background: #fff;
  border: 2px dashed #998675;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 600px;
}

/* Grid */
.l-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .l-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Categories / Cards */
.p-lp-card {
  position: relative;
  overflow: visible;
}
.p-lp-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
}

.wall-slider .p-lp-card {
  margin: 15px 10px;
}

.p-lp-card__badge {
  position: absolute;
  top: -5px;
  left: -5px;
  z-index: 2;
  width: 40px;
  height: 40px;
  background: #bfa580;
  color: #fff;
  font-family: "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.box.js-on ~ .p-lp-card__content .p-lp-card__badge {
  opacity: 1;
  transform: scale(1);
}

.p-lp-card__badge--1 {
  background: linear-gradient(135deg, #ffe082, #ffca28);
}

.p-lp-card__badge--2 {
  background: linear-gradient(135deg, #cfd9df, #e2ebf0);
}

.p-lp-card__badge--3 {
  background: linear-gradient(135deg, #ffab91, #ff8a65);
}

.p-lp-category-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  padding: 2rem;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .p-lp-category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .p-lp-category-list {
    grid-template-columns: repeat(5, 1fr);
  }
}

.p-lp-category-item {
  text-align: center;
}
@media (max-width: 768px) {
  .p-lp-category-item {
    width: calc(50% - 1rem);
  }
}
.p-lp-category-item .box {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.p-lp-category-item .box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: transform 0.3s;
}
.p-lp-category-item:hover .box img {
  transform: scale(1.05);
}
.p-lp-category-item p {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 0.5rem;
}

.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  text-align: center;
}

.rank-slider,
.wall-slider {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.rank-slider .slick-slide,
.wall-slider .slick-slide {
  margin: 0 10px;
}

/* Steps - Vertical Flow */
.p-lp-flow {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.p-lp-flow__item {
  display: flex;
  align-items: stretch;
  position: relative;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .p-lp-flow__item {
    flex-direction: column;
  }
}
.p-lp-flow__item:not(:last-child)::after {
  content: "▼";
  position: absolute;
  bottom: -3.8rem;
  left: 6%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: #534741;
}
@media (max-width: 768px) {
  .p-lp-flow__item:not(:last-child)::after {
    left: 50%;
  }
}

.p-lp-flow__label {
  width: 10%;
  min-width: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 1rem;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 768px) {
  .p-lp-flow__label {
    width: 100%;
    min-width: auto;
    flex-direction: row;
    gap: 1rem;
  }
}
.p-lp-flow__label span {
  display: block;
  font-size: 2rem;
  font-family: "Hina Mincho", serif;
}

.p-lp-flow__label--brown {
  background: #534741;
}

.p-lp-flow__label--gold {
  background: #bfa580;
}

.p-lp-flow__num {
  font-size: 3.6rem !important;
  margin-top: 0.5rem;
}

.p-lp-flow__content {
  flex: 1;
  background: #f9f9f9;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #ddd;
}

.p-lp-flow__title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #534741;
  font-family: "Hina Mincho", serif;
}

.p-lp-flow__desc {
  font-size: 1.6rem;
  line-height: 1.6;
}

/* Buttons */
.p-lp-btn {
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid #534741;
  color: #534741;
  text-decoration: none;
  transition: 0.3s;
}
.p-lp-btn:hover {
  background: #3c332e;
  color: #fff;
}

.p-lp-btn--white {
  background: #fff;
  color: #534741;
  border: none;
}

/* CTA */
.p-lp-cta-btn {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 1.5rem;
  background: #e9762c;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  text-shadow: none;
  border-radius: 5px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: bold;
  box-sizing: border-box;
}
.p-lp-cta-btn:hover {
  opacity: 0.9;
}

.p-lp-cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-lp-cta-wrapper {
    flex-direction: column;
  }
}

.p-lp-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 500px;
}
@media (min-width: 768px) {
  .p-lp-cta-group {
    flex-direction: row;
    max-width: 800px;
    gap: 2rem;
  }
}
.p-lp-cta-group .p-lp-cta-btn {
  max-width: none;
  padding: 1.5rem 2rem;
  font-size: 1.6rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .p-lp-cta-group .p-lp-cta-btn {
    width: 50%;
  }
}
.p-lp-cta-group .p-lp-cta-btn--secondary {
  background: #998675;
}
.p-lp-cta-group .p-lp-cta-btn--secondary:hover {
  opacity: 0.9;
}

.p-lp-banner-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #534741;
  font-size: 1.4rem;
  background: transparent;
  border: none;
  text-decoration: underline;
  text-align: center;
  font-weight: normal;
  padding: 0;
  width: auto;
  height: auto;
}
.p-lp-banner-link:hover {
  text-decoration: none;
  opacity: 0.7;
  color: #534741;
}

/* Points (Reasons) */
.p-lp-point {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-lp-point__icon {
  color: #998675;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-lp-point__icon svg {
  width: 64px;
  height: 64px;
}

.p-lp-point__title {
  font-size: 2rem !important;
  margin-bottom: 1rem;
  color: #534741 !important;
  min-height: 3.2em;
  display: flex;
  align-items: center;
  font-weight: bold !important;
  justify-content: center;
  font-family: "Kosugi", sans-serif !important;
}

.p-lp-point__desc {
  font-size: 1.6rem;
  line-height: 1.8;
}

/* Support Box */
.p-lp-support-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 2rem;
  padding: 4rem 2rem 2rem;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .p-lp-support-box {
    padding: 4rem 5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-support-box {
    padding-top: 5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    box-sizing: border-box;
  }
}

.p-lp-support-box__label {
  position: absolute;
  top: 0;
  left: 0;
  background: #f0f0f0;
  padding: 0.5rem 2rem;
  font-weight: bold;
  color: #534741;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 8px;
  font-size: 1.4rem;
}

.p-lp-support-box__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .p-lp-support-box__item {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-support-box__item {
    gap: 2rem;
  }
}

.p-lp-support-box__icon {
  color: #534741;
  min-width: 48px;
}
.p-lp-support-box__icon svg {
  width: 60px;
  height: 60px;
}
.p-lp-support-box__icon svg:first-child {
  margin-bottom: 10px;
}

.p-lp-support-box__text {
  flex-grow: 1;
}
@media (min-width: 768px) {
  .p-lp-support-box__text {
    min-width: 0;
  }
}

.p-lp-support-box__title {
  font-weight: bold;
  color: #534741;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.p-lp-support-box__desc {
  font-size: 1.6rem;
  line-height: 1.6;
}

.p-lp-support-box__btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin: 1.5rem auto 0;
}
@media (min-width: 768px) {
  .p-lp-support-box__btn-group {
    max-width: 300px;
    margin-left: auto;
    flex-shrink: 0;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-support-box__btn-group {
    margin-left: 0;
    width: 100%;
  }
}

.p-lp-support-box__btn {
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid #534741;
  background: #534741;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s, background 0.3s, color 0.3s;
  white-space: nowrap;
  text-align: center;
  min-width: 250px;
  border-radius: 5px;
  font-size: 1.6rem;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .p-lp-support-box__btn {
    width: 100%;
    max-width: 300px;
    flex-shrink: 0;
  }
}
.p-lp-support-box__btn:hover {
  background: #fff;
  color: #534741;
}

.p-lp-support-box__list {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
  font-size: 1.4rem;
  color: #534741;
  text-align: left;
}
.p-lp-support-box__list li {
  list-style: disc;
  margin-bottom: 0.5rem;
}

.p-lp-contact-info {
  margin-top: 1.5rem;
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}
.p-lp-contact-info__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .p-lp-contact-info__flex {
    flex-wrap: wrap;
  }
}
.p-lp-contact-info__tel-fax {
  flex: 1;
}
.p-lp-contact-info__tel-fax .p-lp-contact-info__row {
  margin-bottom: 5px;
}
.p-lp-contact-info__tel-fax .p-lp-contact-info__row:last-child {
  margin-bottom: 0;
}
.p-lp-contact-info__tel-fax .p-lp-contact-info__row dt {
  width: 40px;
}
.p-lp-contact-info__btn-inner {
  flex: 0 0 auto;
}
.p-lp-contact-info__btn-inner .p-lp-support-box__btn {
  width: 300px;
  max-width: 100%;
  padding: 1rem;
  margin: 0;
  font-size: 1.6rem;
  min-width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.p-lp-contact-info__row {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}
.p-lp-contact-info__row:last-child {
  margin-bottom: 0;
}
.p-lp-contact-info__row dt {
  font-weight: bold;
  width: 80px;
  color: #534741;
}
.p-lp-contact-info__row dd {
  margin: 0;
  flex-grow: 1;
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-lp-contact-info__row {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1.4rem;
    gap: 1rem;
  }
  .p-lp-contact-info__row dt {
    width: 80px;
    flex-shrink: 0;
  }
  .p-lp-contact-info__row dd {
    word-break: break-all;
  }
}

.p-lp-contact-info__row--full {
  margin-top: 5px;
  padding-top: 10px;
  border-top: 1px dotted #ccc;
}
.p-lp-contact-info__row--full dt {
  width: 100px;
  flex-shrink: 0;
  margin-right: 1rem;
}
@media (max-width: 768px) {
  .p-lp-contact-info__row--full {
    flex-direction: column;
    align-items: center;
  }
  .p-lp-contact-info__row--full dt {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .p-lp-contact-info__row--full dd {
    text-align: center;
    display: block;
    width: 100%;
  }
}

.p-lp-support__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-lp-support__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-lp-support__item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 2rem 1rem;
  text-align: center;
  color: #534741;
}
.p-lp-support__item h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #998675;
  line-height: 1.4;
}

.p-lp-support__desc {
  font-weight: bold;
  margin-bottom: 1rem;
}

.p-lp-support__details {
  font-size: 1.6rem;
  background: #f4f4f4;
  padding: 0.5rem;
  border-radius: 4px;
  text-align: left;
  display: inline-block;
}

/* Fixed CTA */
.p-lp-fixed-cta {
  position: fixed;
  bottom: 100px;
  right: 0;
  background: #998675;
  color: #fff;
  border: 2px solid #998675;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  padding: 20px 15px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 999999 !important;
  transition: opacity 0.3s, background 0.3s, color 0.3s;
  line-height: 1.2;
  transform: translateZ(0);
}
.p-lp-fixed-cta.is-visible {
  display: flex !important;
  animation: fadeIn 0.3s forwards;
}
.p-lp-fixed-cta:hover {
  background: #fff;
  color: #998675;
}
@media (max-width: 768px) {
  .p-lp-fixed-cta {
    padding: 10px 5px;
  }
}

.p-lp-fixed-cta__icon {
  margin-bottom: 8px;
  display: flex;
}

.p-lp-fixed-cta__text {
  font-weight: bold;
  font-size: 1.4rem;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .p-lp-fixed-cta__text {
    font-size: 0.9rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Components */
.p-lp-card__content--horizontal {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  margin-top: 10px;
}

.p-lp-card__title {
  margin: 0;
  text-align: left;
}

.p-lp-section-intro {
  font-size: 1.4rem;
  color: #998675;
  letter-spacing: 0.1em;
}

.p-lp-section-desc {
  max-width: 800px;
  margin: 0 auto;
  line-height: 2;
  font-size: 1.6rem;
}

.p-lp-section-desc--lead {
  font-size: 2rem;
  font-family: "Hina Mincho", serif;
}
@media (max-width: 768px) {
  .p-lp-section-desc--lead {
    font-size: 1.6rem;
  }
}

.p-lp-wall-detail {
  background: #e5e0d8;
}

.p-lp-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.p-lp-card__tag {
  display: inline-block;
  padding: 2px 10px;
  border: 1px solid #998675;
  color: #998675;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: bold;
  background: #fff;
}

.p-lp-cta-text-wrap {
  text-align: right;
  margin-top: 2rem;
}

.p-lp-cta-text-link {
  display: block;
}

.p-lp-sample-hero {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.p-lp-sample-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .p-lp-sample-hero {
    height: 200px;
  }
}

.p-lp-sample-content {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.p-lp-easy-mark {
  display: inline-block;
  background: #e45757;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  position: relative;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.p-lp-easy-mark::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: #e45757 transparent transparent transparent;
}

.p-lp-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .p-lp-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Flow Horizontal */
.p-lp-flow-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 6rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-lp-flow-horizontal {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

.p-lp-flow-step {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-lp-flow-step {
    width: 100%;
    max-width: 300px;
  }
}

.p-lp-flow-step__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #534741;
}

.p-lp-flow-step__icon {
  width: 90px;
  height: 90px;
  border: 2px solid #bfa580;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bfa580;
  margin-bottom: 1.5rem;
  background: #fff;
}
.p-lp-flow-step__icon svg {
  width: 45px;
  height: 45px;
}

.p-lp-flow-step__desc {
  font-size: 1.5rem;
  color: #534741;
  line-height: 1.6;
  text-align: center;
}

.p-lp-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
  color: #ddd;
  width: 30px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-lp-flow-arrow {
    transform: rotate(90deg);
    padding-top: 0;
  }
}

.p-lp-sample-info {
  text-align: left;
  padding: 0;
  margin-bottom: 3rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}
.p-lp-sample-info dl {
  margin-bottom: 0;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  flex: 1;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
}
.p-lp-sample-info dt {
  font-weight: bold;
  color: #534741;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  border-bottom: 2px solid #e5e0d8;
  padding-bottom: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.p-lp-sample-info dt svg {
  width: 40px;
  height: 40px;
  color: #bfa580;
}
.p-lp-sample-info dd {
  margin: 0;
  line-height: 1.8;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .p-lp-sample-info {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.p-lp-slider .p-lp-card {
  margin: 0 10px;
}

.slick-prev:before,
.slick-next:before {
  color: #534741;
  font-size: 30px;
}

/* Utility */
.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-mb-20 {
  margin-bottom: 2rem;
}

.u-mb-30 {
  margin-bottom: 3rem;
}

.u-mb-40 {
  margin-bottom: 4rem;
}

.u-mt-neg-20 {
  margin-top: -2rem;
}

.u-mt-neg-30 {
  margin-top: -3rem;
}

.u-bg-gray {
  background-color: #f8f6f4;
}

.u-color-white {
  color: #fff;
}

.u-color-theme {
  color: #534741;
}

.u-color-gold {
  color: #bfa580;
}

.u-font-bold {
  font-weight: bold;
}

.u-ls-1 {
  letter-spacing: 0.1em;
}

.u-mt-20 {
  margin-top: 2rem;
}

.u-mb-05 {
  margin-bottom: 0.5rem;
}

.u-sp-only {
  display: none;
}
@media (max-width: 768px) {
  .u-sp-only {
    display: block;
  }
}

@media (max-width: 768px) {
  .u-pc-only {
    display: none;
  }
}

@media (max-width: 768px) {
  .u-nowrap-sp {
    white-space: nowrap;
  }
}

.u-text-link {
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .u-text-link {
    text-decoration: underline;
  }
}

.u-text-small {
  font-size: 1.2rem;
  color: #888;
}

/* Modal Styles */
.p-lp-modal {
  display: none !important;
}
/*# sourceMappingURL=lp.css.map */
