.pc {
  display: block;
}
.sp {
  display: none;
}
@media (max-width: 834px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.inner {
  padding: 0 2rem;
}
@media (max-width: 834px) {
  .inner {
    padding: 0 3.2rem;
  }
}
.block {
  max-width: 112rem;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 834px) {
  .block {
    width: 100%;
  }
}
.heading {
  text-align: center;
}
.heading h2 {
  font-size: 6rem;
  color: #cea8a0;
  letter-spacing: 0.1em;
  font-weight: 200;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}
.heading p {
  font-size: 1.6rem;
  color: #3c3230;
  letter-spacing: 0.2em;
  font-weight: 400;
  line-height: 260%;
  margin-top: 4.8rem;
}
@media (max-width: 834px) {
  .heading h2 {
    font-size: 4.2rem;
  }
  .heading p {
    font-size: 1.3rem;
    margin-top: 4rem;
    text-align: left;
  }
}
.btn {
  text-align: center;
}
.btn-link {
  width: 40rem;
  height: 8rem;
  -webkit-box-shadow: 0 0.2rem 3rem #bda19d;
  box-shadow: 0 0.2rem 3rem #bda19d;
  background-color: rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  color: #3c3230;
  text-decoration: none;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
}
.btn-link .icon {
  width: 2.3rem;
  margin-right: 1.9rem;
}
@media (max-width: 834px) {
  .btn-link {
    width: 27.8rem;
    height: 6.4rem;
    font-size: 1.4rem;
  }
}
/* header */
.header {
  position: absolute;
  width: 100%;
  height: 8rem;
  z-index: 100;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.header-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.header-logo {
  width: 14.6rem;
  margin-left: 2.4rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  -o-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.header.scrolled .header-logo {
  opacity: 1;
  visibility: visible;
}
.header-logo img {
  width: 15rem;
}
.header-menu {
  background: rgba(179, 146, 138, 0.7);
  height: 100%;
  padding: 0 4.8rem;
  margin-left: auto;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.header-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 4.8rem;
  height: 100%;
}
.header-menu__item {
  height: 100%;
}
.header-menu__link {
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
  font-family: 'Poppins', sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  position: relative;
  font-weight: 300;
  letter-spacing: 0.1em;
}
/* .header-menu__item.active .header-menu__link {
  border-bottom: 0.3rem solid #746a68;
} */
.header.wrap .header-menu__item.active .header-menu__link {
  border-bottom: none;
}
.hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  background: #b3928a;
  padding: 2.2rem 1.2rem;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.hamburger span {
  display: block;
  height: 0.2rem;
  width: 2.6rem;
  margin: 0.3rem 0;
  background: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(0.1rem, 0rem);
  -ms-transform: rotate(45deg) translate(0.1rem, 0rem);
  transform: rotate(45deg) translate(0.1rem, 0rem);
  margin: 0;
}
.hamburger.active span:nth-child(2) {
  -webkit-transform: rotate(-45deg) translate(0.1rem, 0rem);
  -ms-transform: rotate(-45deg) translate(0.1rem, 0rem);
  transform: rotate(-45deg) translate(0.1rem, 0rem);
  margin: 0;
}
.header-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 100%;
  background: #918485;
  padding: 8rem 0;
  overflow: auto;
  -webkit-transition: right 0.3s ease;
  -o-transition: right 0.3s ease;
  transition: right 0.3s ease;
  z-index: 1000;
}
.header-mobile.active {
  display: block;
  right: 0;
}
.header-menu__container {
  margin-top: 6.4rem;
}
.header-menu__company {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 260%;
  letter-spacing: 0.2em;
  text-decoration: none;
}
.header-menu__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.header-menu__grid a {
  text-decoration: none;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 260%;
  position: relative;
}
.header-menu__direction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 6.4rem;
}
.header-menu__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 6.4rem;
  text-decoration: none;
}
.header-menu__icon {
  background: #746a68;
  width: 6.4rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.header-menu__icon img {
  width: 1.8rem;
}
.header-menu__btn span {
  width: 100%;
  background: rgba(116, 106, 104, 0.7);
  height: 100%;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2.2rem 2.4rem;
  font-family: 'Poppins', sans-serif;
}
.header-menu__btn span .icon {
  width: 1rem;
}
@media (max-width: 834px) {
  .header {
    height: 5rem;
    position: fixed;
  }
  .header-logo {
    display: block;
    width: 10.5rem;
    position: static;
    margin-top: 1.6rem;
    margin-left: 1.6rem;
    z-index: 1;
  }
  .header-logo img {
    width: 100%;
  }
  .header-menu {
    background: transparent;
    width: 5rem;
    padding: 0;
    display: none;
  }
  .header-menu.scrolled {
    opacity: 1;
  }
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    margin-left: auto;
    padding: 0;
  }
  .header-menu__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 4.8rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem 4.8rem;
    height: auto;
  }
  .header-menu__item {
    display: block;
  }
  .header-menu__link {
    padding: 0;
    height: auto;
    padding-left: 2.4rem;
  }
  .header-menu__link:before {
    content: '';
    background: #b3928a;
    width: 0.6rem;
    height: 0.6rem;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
  }
  .header-menu__item.active .header-menu__link {
    border-bottom: none;
  }
  .header-mobile.active {
    display: block;
    position: absolute;
    top: 0;
    height: 100vh;
    width: 100%;
    background: #918485;
    padding: 8rem 0;
    overflow: auto;
  }
  .header-menu__container {
    margin-top: 4rem;
  }
  .header-menu__company {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 260%;
    letter-spacing: 0.2em;
    text-decoration: none;
  }
  .header-menu__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem;
    margin-top: 0;
  }
  .header-menu__grid a {
    text-decoration: none;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    line-height: 260%;
    position: relative;
  }
  .header-menu__direction {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 6.4rem;
  }
  .header-menu__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 6.4rem;
    text-decoration: none;
  }
  .header-menu__icon {
    background: #746a68;
    width: 6.4rem;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .header-menu__icon img {
    width: 1.8rem;
  }
  .header-menu__btn span {
    width: 100%;
    background: rgba(116, 106, 104, 0.7);
    height: 100%;
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    font-weight: 300;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 2.2rem 2.4rem;
    font-family: 'Poppins', sans-serif;
  }
  .header-menu__btn span .icon {
    width: 1rem;
  }
}
.fixed-menu {
  position: fixed;
  right: 0;
  top: 11.9rem;
  z-index: 100;
}
.fixed-menu__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.3rem;
}
.fixed-menu__column .header-menu__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 5.6rem;
  height: 20rem;
  text-decoration: none;
}
.fixed-menu__column .header-menu__btn span {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  width: 100%;
  background: rgba(116, 106, 104, 0.7);
  height: 100%;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}
.fixed-menu__column .header-menu__btn span img {
  display: none;
}
.fixed-menu__column .header-menu__btn span .icon {
  width: 1rem;
}
.fixed-menu__column .header-menu__icon {
  background: #746a68;
  width: 100%;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.fixed-menu__column .header-menu__icon img {
  width: 1.8rem;
}
@media (max-width: 834px) {
  .fixed-menu {
    bottom: 0;
    top: auto;
    width: 100%;
    z-index: 99;
  }
  .fixed-menu__column {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 0;
  }
  .fixed-menu__column .header-menu__btn {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 7rem;
  }
  .fixed-menu__column .header-menu__btn:nth-child(1) {
    background: #746a68;
  }
  .fixed-menu__column .header-menu__btn:nth-child(2) {
    background: #9B9493;
    opacity: 1;
  }
  .fixed-menu__column .header-menu__icon {
    display: none;
  }
  .fixed-menu__column .header-menu__btn span {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    font-size: 1.3rem;
    gap: 0.8rem;
    background: transparent;
  }
  .fixed-menu__column .header-menu__btn span img {
    display: block;
    width: 1.8rem;
  }
  .fixed-menu__column .header-menu__btn span .icon {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
  }
  .fixed-menu__column .header-menu__btn span .icon img {
    width: 100%;
  }
}
/* footer */
.footer {
  background: #918485;
  padding: 6.4rem 0;
}
.footer .inner {
  padding: 0 12rem 0 6.4rem;
}
.footer-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 16%;
}
.footer-logo {
  display: block;
  height: auto;
}
.footer-banner {
  width: 30rem;
  height: auto;
}
.footer-content {
  width: 76%;
}
.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  flex-direction: column;
  align-items: end;
  gap: 4rem;
}
.footer-contaier {
  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;
  gap: 8.4rem;
}
.footer-list {
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
}
.footer-item {
  position: relative;
  padding-left: 2.3rem;
}
.footer-item:before {
  content: '';
  background: #b3928a;
  width: 0.6rem;
  height: 0.6rem;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
}
.footer-link {
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-family: 'Poppins', sans-serif;
}
.footer-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  gap: 2rem;
}
.footer-company {
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-company .icon {
  width: 1rem;
  margin-left: 1rem;
}
.footer-child {
  color: #fff;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  position: relative;
  padding-left: 1.5rem;
  border-left: 0.1rem solid #fff;
}
.footer-child:first-child {
  border-left: none;
}
.footer-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  margin-top: 4.4rem;
}
.footer-direction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.6rem;
}
.footer-menu__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 6.4rem;
  text-decoration: none;
}
.footer-menu__icon {
  background: #746a68;
  width: 6.4rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer-menu__icon img {
  width: 1.8rem;
}
.footer-menu__btn span {
  width: 100%;
  background: rgba(116, 106, 104, 0.7);
  height: 100%;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2.2rem 2.4rem;
  font-family: 'Poppins', sans-serif;
}
.footer-menu__btn span .icon {
  width: 1rem;
}
.footer-copy {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  opacity: 0.5;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  margin-top: 4.4rem;
}
@media (max-width: 834px) {
  .footer {
    padding: 4rem 0 13.5rem;
    position: relative;
  }
  .footer .inner {
    padding: 0 3.2rem;
  }
  .footer-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer-box {
    width: 100%;
  }
  .footer-logo {
    width: 18rem;
    margin: 0 auto;
  }
  .footer-banner {
    width: 100%;
  }
  .footer-box .footer-banner {
    display: none;
  }
  .footer-content {
    width: 100%;
    margin-top: 4rem;
  }
  .footer-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
  .footer-contaier {
    gap: 4rem;
    width: 100%;
  }
  .footer-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem;
  }
  .footer-column {
    gap: 3.2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-child {
    border-left: none;
    padding-left: 0;
  }
  .footer-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;
    margin-top: 4rem;
    gap: 4rem;
  }
  .footer-direction {
    display: none;
  }
  .footer-copy {
    text-align: center;
  }
}
/* mv */
.lp-mv {
  /* background: url("../img/eyebrow/mv-pc.png") no-repeat;
	background-size: cover;
	background-position: center; */
  position: relative;
  z-index: 50;
}
.lp-mv__img01 {
  position: absolute;
  width: 60%;
  bottom: -11rem;
  right: 0;
}
.lp-mv__img02 {
  position: absolute;
  width: 50%;
  bottom: -6.3rem;
  left: 15rem;
  z-index: 2;
}
.lp-mv__logo {
  width: 40%;
  position: absolute;
  left: 20rem;
  bottom: 35rem;
}
/* concept */
.lp-concept {
  background: url('../img/eyebrow/concept-bg.png') no-repeat;
  background-size: cover;
  background-position: right;
  padding: 8rem 0 30.1rem;
  position: relative;
  margin-top: -7%;
}
.lp-concept:before {
  content: '';
  background: url('../img/eyebrow/concept-img01.png') no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: -9.1%;
  display: block;
  width: 43.1rem;
  height: 58.6rem;
  z-index: 50;
}
.lp-concept:after {
  content: '';
  background: url('../img/eyebrow/concept-img03.png') no-repeat;
  background-size: cover;
  position: absolute;
  left: 3%;
  top: 10%;
  display: block;
  width: 34rem;
  height: 34.9rem;
  z-index: 49;
}
.lp-concept .block {
  max-width: 36rem;
  position: relative;
}
.lp-concept .block:before {
  content: '';
  background: #cea8a0;
  position: absolute;
  left: -8rem;
  bottom: 0;
  display: block;
  width: 0.1rem;
  height: 60rem;
  z-index: 60;
}
.lp-concept__wrap {
  max-inline-size: -webkit-max-content;
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  margin-inline: auto;
}
.lp-concept .heading {
  text-align: left;
}
.lp-concept__txt {
  font-size: 1.6rem;
  font-weight: 400;
  color: #3c3230;
  letter-spacing: 0.2em;
  line-height: 260%;
  margin: 6.4rem 0;
  white-space: nowrap;
}
.lp-concept .btn-link {
  margin: 0;
}
@media (max-width: 834px) {
  .lp-concept {
    padding: 13.1rem 0 46.5rem;
    background: url('../img/eyebrow/concept-sp-bg.png') no-repeat;
    background-size: cover;
    margin-top: -11rem;
  }
  .lp-concept:after {
    content: '';
    background: url('../img/eyebrow/concept-img02.png') no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 87%;
    height: 12.8rem;
    top: auto;
    bottom: 27rem;
    left: auto;
    right: 0;
    z-index: 1;
  }
  .lp-concept:before {
    content: '';
    background: url('../img/eyebrow/concept-sp-img01.png') no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 28.7rem;
    bottom: -0.9rem;
    z-index: 2;
  }
  .lp-concept .inner {
    padding: 0 1.6rem 0 4.6rem;
  }
  .lp-concept .block {
    max-width: 100%;
    position: relative;
  }
  .lp-concept .block:before {
    content: '';
    background: #cea8a0;
    position: absolute;
    left: -2.4rem;
    bottom: 0;
    display: block;
    width: 0.1rem;
    height: 51rem;
  }
  .lp-concept__txt {
    font-size: 1.3rem;
    margin: 4rem 0;
    white-space: normal;
  }
}
/* menu */
.lp-menu {
  background: url('../img/eyebrow/menu-bg.png') no-repeat;
  background-size: cover;
  background-position: center;
  padding: 16rem 0 10.9rem;
  margin-bottom: -2.9rem;
  position: relative;
}
.lp-menu:after {
  content: '';
  background: url('../img/eyebrow/concept-img02.png') no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  right: 0;
  top: -22rem;
  display: block;
  width: 82rem;
  height: 32rem;
  z-index: 50;
}
.lp-menu .heading {
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.lp-menu .heading h2 {
  color: #fff;
}
.lp-menu .heading p {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 260%;
  margin-top: 1rem;
}
.lp-menu__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 4rem;
  margin-top: 6.4rem;
}
.lp-menu__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6.4rem;
  width: 100%;
}
.lp-menu__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.4rem;
  width: 100%;
}
.lp-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
.lp-menu__item {
  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;
  border-bottom: 0.1rem solid #e0cfcc;
  padding-bottom: 2rem;
}
.lp-menu__ttl {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 200%;
  color: #3c3230;
  padding-left: 2.3rem;
  position: relative;
}
.lp-menu__ttl:before {
  content: '';
  background: #b3928a;
  width: 0.6rem;
  height: 0.6rem;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
}
.lp-menu__price {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #3c3230;
}
@media (max-width: 834px) {
  .lp-menu {
    padding: 6.4rem 0;
    background: url('../img/eyebrow/menu-sp-bg.png') no-repeat;
    background-size: cover;
    margin-top: 0;
    margin-bottom: 0;
  }
  .lp-menu:after {
    content: none;
  }
  .lp-menu .heading {
    flex-direction: column;
    align-items: baseline;
    gap: 4rem;
  }
  .lp-menu .heading p {
    font-size: 1.3rem;
    margin-top: 0;
  }
  .lp-menu__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
  }
  .lp-menu__column {
    gap: 4rem;
  }
  .lp-menu__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    align-items: baseline;
  }
  .lp-menu__ttl {
    font-size: 1.3rem;
    margin-right: auto;
    padding-left: 1.8rem;
    width: 77%;
  }
  .lp-menu__price {
    font-size: 1.5rem;
    margin-left: auto;
  }
}
/* reserve */
.lp-reserve {
  position: relative;
  background: url('../img/eyebrow/reserve-bg.png') no-repeat;
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
}
.lp-reserve .block {
  position: relative;
}
.lp-reserve .block:before {
  content: '';
  background: url('../img/eyebrow/reserve-bg01.png') no-repeat;
  background-size: cover;
  background-position: center;
  display: block;
  width: 18.7rem;
  height: 24.5rem;
  position: absolute;
  top: -4%;
  right: 98%;
}
.lp-reserve .block:after {
  content: '';
  background: url('../img/eyebrow/reserve-bg02.png') no-repeat;
  background-size: cover;
  background-position: center;
  display: block;
  width: 25rem;
  height: 19.9rem;
  position: absolute;
  top: -10%;
  left: 81%;
  z-index: 1;
}
.lp-reserve__left {
  position: absolute !important;
  left: 0;
  top: 0;
  width: 19%;
  height: 100%;
}
.lp-reserve__right {
  position: absolute !important;
  right: 0;
  top: 0;
  width: 19%;
  height: 100%;
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
}
.lp-reserve__right .slick-slide {
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
}
.lp-reserve .slick-list {
  min-height: 100%;
  overflow: hidden;
}
.lp-reserve__img {
  height: 100%;
  display: block !important;
}
.lp-reserve__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.lp-reserve__wrap {
  position: relative;
  z-index: 2;
}
.lp-reserve__main {
  position: relative;
}
.lp-reserve__main:before {
  content: '';
  background: url('../img/eyebrow/reserve-bg04.png') no-repeat;
  background-size: cover;
  background-position: center;
  display: block;
  width: 18rem;
  height: 26.5rem;
  position: absolute;
  bottom: -14rem;
  right: 103%;
}
.lp-reserve__main:after {
  content: '';
  background: url('../img/eyebrow/reserve-bg03.png') no-repeat;
  background-size: cover;
  background-position: center;
  display: block;
  width: 7.3rem;
  height: 14.7rem;
  position: absolute;
  bottom: -3rem;
  left: 124%;
  z-index: 1;
}
.lp-reserve__wrap .block {
  max-width: 43rem;
}
.lp-reserve__wrap .heading h2 {
  color: #fff;
}
.lp-reserve__txt {
  text-align: center;
  color: #3c3230;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 260%;
  margin: 4.8rem 0;
}
.lp-reserve__sbtxt {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #3c3230;
  line-height: 200%;
}
.lp-reserve__sbtxt .arrow {
  background: #fff;
  -webkit-box-shadow: 0 0.2rem 3rem #bda19d;
  box-shadow: 0 0.2rem 3rem #bda19d;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.lp-reserve__sbtxt .arrow img {
  width: 0.5rem;
}
.lp-reserve__sbtxt .lp-reserve__link {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #3c3230;
  line-height: 200%;
}
.lp-reserve__column {
  margin-top: 8.1rem;
}
.lp-reserve__box {
  text-align: center;
}
.lp-reserve__sbttl {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #3c3230;
  line-height: 200%;
  margin-top: 8rem;
  position: relative;
  display: inline-block;
}
.lp-reserve__sbttl:before {
  content: '';
  background: url('../img/eyebrow/left.png') no-repeat;
  background-size: cover;
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -4rem;
  margin: auto;
}
.lp-reserve__sbttl:after {
  content: '';
  background: url('../img/eyebrow/right.png') no-repeat;
  background-size: cover;
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -4rem;
  margin: auto;
}
.lp-reserve__sbttl span {
  color: #c87886;
  font-weight: 700;
}
.lp-reserve__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3.2rem;
}
@media (max-width: 834px) {
  .lp-reserve {
    padding: 10.5rem 0;
    background: url('../img/eyebrow/reserve-sp-bg.png') no-repeat;
    background-size: cover;
    background-position: center;
  }
  .lp-reserve .block:before {
    width: 9.7rem;
    height: 12.7rem;
    top: -6rem;
    left: 0;
    right: auto;
  }
  .lp-reserve .block:after {
    width: 13rem;
    height: 10rem;
    right: 0;
    left: auto;
    top: 14rem;
  }
  .lp-reserve__left {
    width: 100%;
    right: 0;
    height: 10.5rem;
  }
  .lp-reserve__right {
    left: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    height: 10.5rem;
  }
  .lp-reserve .slick-slide img {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    height: 10.5rem;
    width: 100%;
  }
  .lp-reserve__wrap {
    padding: 6.4rem 1.6rem;
  }
  .lp-reserve__wrap:before {
    content: none;
  }
  .lp-reserve__main:after {
    width: 4.3rem;
    height: 7.6rem;
    top: -5rem;
    bottom: initial;
    right: 1.9rem;
    left: auto;
  }
  .lp-reserve__main:before {
    content: none;
  }
  .lp-reserve__txt {
    text-align: left;
    margin-top: 4rem;
    margin-bottom: 0;
    font-size: 1.3rem;
    padding: 0 1.5rem 0 1.7rem;
  }
  .lp-reserve__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-top: 4rem;
  }
  .lp-reserve__column .btn {
    padding: 0 3.3rem;
  }
  .lp-reserve__sbtxt {
    margin-top: 0;
    margin-bottom: 4rem;
    font-size: 1.3rem;
    padding: 0 1.5rem 0 1.7rem;
  }
  .lp-reserve__sbtxt .lp-reserve__link {
    font-size: 1.3rem;
  }
  .lp-reserve__direction {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .lp-reserve__container {
    position: relative;
    margin-top: 4rem;
    padding-right: 1.8rem;
  }
  .lp-reserve__container:before {
    content: '';
    background: url('../img/eyebrow/reserve-bg04.png') no-repeat;
    background-size: cover;
    display: block;
    width: 15rem;
    height: 22rem;
    position: absolute;
    left: -1rem;
  }
  .lp-reserve__box {
    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;
    margin-left: auto;
    width: 50%;
    position: relative;
  }
  .lp-reserve__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 13.5rem;
    margin-top: 2.5rem;
  }
  .lp-reserve__sbttl {
    margin-top: 0;
    font-size: 1.6rem;
  }
  .lp-reserve__sbttl:before {
    content: none;
  }
  .lp-reserve__sbttl:after {
    content: '';
    background: url('../img/eyebrow/top-sp.png') no-repeat;
    background-size: cover;
    width: 3.1rem;
    height: 2rem;
    right: 1rem;
    top: -7rem;
  }
  .lp-reserve__sbttl span {
    display: block;
  }
}
/* style */
.lp-style {
  background: url('../img/eyebrow/style-bg.png') no-repeat;
  background-size: cover;
  padding: 8rem 0;
}
.lp-style .inner {
  padding: 0 4rem;
}
.lp-style__txt {
  font-size: 1.6rem;
  line-height: 260%;
  letter-spacing: 0.2em;
  color: #3c3230;
  margin: 4.8rem 0;
  text-align: center;
}
.lp-style .slick-slide {
  padding: 0 0.8rem;
}
.lp-style .slick-slide {
  height: auto;
}
.lp-style .lp-style__item {
  position: relative;
  padding-top: 100%;
}
.lp-style .lp-style__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-style__sbttl {
  margin-top: 8rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #3c3230;
  line-height: 200%;
  position: relative;
  display: inline-block;
}
.lp-style__sbttl:before {
  content: '';
  background: url('../img/eyebrow/left.png') no-repeat;
  background-size: cover;
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -4rem;
  margin: auto;
}
.lp-style__sbttl:after {
  content: '';
  background: url('../img/eyebrow/right.png') no-repeat;
  background-size: cover;
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -4rem;
  margin: auto;
}
.lp-style__sbttl span {
  color: #c87886;
  font-weight: 700;
}
.lp-style .slide-arrow.prev-arrow {
  background: #fff;
  opacity: 0.9;
  border-radius: 50%;
  width: 5.2rem;
  height: 5.2rem;
  cursor: pointer;
  position: absolute;
  left: -2rem;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 50;
}
.lp-style .slide-arrow.prev-arrow:before {
  content: '';
  background: url('../img/eyebrow/prev-arrow.png') no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0.8rem;
  height: 1.2rem;
}
.lp-style .slide-arrow.next-arrow {
  background: #fff;
  opacity: 0.9;
  border-radius: 50%;
  width: 5.2rem;
  height: 5.2rem;
  cursor: pointer;
  position: absolute;
  right: -2rem;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 50;
}
.lp-style .slide-arrow.next-arrow:before {
  content: '';
  background: url('../img/eyebrow/next-arrow.png') no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0.8rem;
  height: 1.2rem;
}
.lp-style__movie-wrap {
  max-width: 86rem;
  margin: 0 auto;
  text-align: center;
}
.lp-style__movie {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4rem 1fr 4rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 1.8rem;
}
.lp-style__movie li {
  width: 100%;
  height: 100%;
  display: -webkit-box;
}
.lp-style__movie li video {
  width: 100%;
  height: 100%;
}
@media (max-width: 834px) {
  .lp-style {
    padding: 6.4rem 0;
    background: url('../img/eyebrow/style-sp-bg.png') no-repeat;
    background-size: cover;
  }
  .lp-style .inner {
    padding: 0 3.2rem;
  }
  .lp-style__txt {
    text-align: left;
    font-size: 1.3rem;
  }
  .lp-style .slick-slide {
    padding: 0 0.4rem;
  }
  .lp-style .slide-arrow.prev-arrow {
    width: 3.2rem;
    height: 3.2rem;
  }
  .lp-style .slide-arrow.prev-arrow:before {
    width: 0.4rem;
    height: 0.7rem;
  }
  .lp-style .slide-arrow.next-arrow {
    width: 3.2rem;
    height: 3.2rem;
  }
  .lp-style .slide-arrow.next-arrow:before {
    width: 0.4rem;
    height: 0.7rem;
  }
  .lp-style__sbttl {
    margin-top: 4rem;
  }
  .lp-style__sbttl:before {
    content: '';
    background: url('../img/eyebrow/left-sp.png') no-repeat;
    background-size: cover;
    left: -3.8rem;
    width: 1.4rem;
    height: 3.6rem;
  }
  .lp-style__sbttl:after {
    content: '';
    background: url('../img/eyebrow/right-sp.png') no-repeat;
    background-size: cover;
    right: -3.8rem;
    width: 1.4rem;
    height: 3.6rem;
  }
  .lp-style__movie {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.1rem;
    width: 61%;
    margin: 2.4rem auto 0;
  }
}
/* product */
.lp-product {
  background: #fff;
  padding: 8rem 0;
  position: relative;
}
.lp-product::before {
  content: '';
  background: url('../img/eyebrow/product-img01.png') no-repeat;
  background-size: cover;
  background-position: center;
  width: 25.9rem;
  height: 19.2rem;
  position: absolute;
  top: 9rem;
  left: 10rem;
}
.lp-product::after {
  content: '';
  background: url('../img/eyebrow/product-img02.png') no-repeat;
  background-size: cover;
  background-position: center;
  width: 50rem;
  height: 30.9rem;
  position: absolute;
  top: -5rem;
  right: 0rem;
}
.lp-product__wrap {
  margin-top: 6.4rem;
  text-align: center;
}
.lp-product__img {
  position: relative;
}
.lp-product__img .btn {
  position: absolute;
  bottom: 13rem;
  left: 8rem;
}
.lp-product__sbttl {
  margin-top: 6.4rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #3c3230;
  line-height: 200%;
  position: relative;
  display: inline-block;
}
.lp-product__sbttl:before {
  content: '';
  background: url('../img/eyebrow/left-sp.png') no-repeat;
  background-size: cover;
  display: block;
  width: 1.4rem;
  height: 3.6rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -4rem;
  margin: auto;
}
.lp-product__sbttl:after {
  content: '';
  background: url('../img/eyebrow/right-sp.png') no-repeat;
  background-size: cover;
  display: block;
  width: 1.4rem;
  height: 3.6rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -4rem;
  margin: auto;
}
.lp-product__sbttl span {
  color: #c87886;
  font-weight: 700;
}
.lp-product__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4rem;
  margin-top: 2.8rem;
}
.lp-product__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0 0.2rem 3rem #bda19d;
  box-shadow: 0 0.2rem 3rem #bda19d;
  background: #f5f5f5;
  height: 8rem;
  width: 40rem;
}
.lp-product__link img {
  width: 12rem;
}
@media (max-width: 834px) {
  .lp-product {
    padding: 14.2rem 0 6.4rem;
  }
  .lp-product::before {
    content: none;
  }
  .lp-product::after {
    width: 26rem;
    height: 17.2rem;
    right: 1.9rem;
    top: -4rem;
  }
  .lp-product__wrap {
    margin-top: 4rem;
  }
  .lp-product__img .btn {
    width: 27.8rem;
    left: 0;
    right: 0;
    bottom: 2rem;
    margin: auto;
  }
  .lp-product__sbttl {
    margin-top: 4rem;
    font-size: 1.6rem;
  }
  .lp-product__sbttl:before {
    content: '';
    background: url('../img/eyebrow/left-sp.png') no-repeat;
    background-size: cover;
    left: -2.2rem;
    width: 1rem;
    height: 2.7rem;
  }
  .lp-product__sbttl::after {
    content: '';
    background: url('../img/eyebrow/right-sp.png') no-repeat;
    background-size: cover;
    right: -2.2rem;
    width: 1rem;
    height: 2.7rem;
  }
  .lp-product__sbttl:after {
    right: -2.2rem;
  }
  .lp-product__flex {
    gap: 1.9rem;
    margin-top: 2.3rem;
  }
  .lp-product__link {
    height: 6.4rem;
    width: 27.8rem;
  }
  .lp-product__link img {
    width: 10rem;
  }
}
/* faq */
.lp-faq {
  background: #f6efe7;
  padding: 8rem 0;
}
.lp-faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6.4rem;
  margin-top: 6.4rem;
}
.lp-faq__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.4rem;
}
.lp-faq__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.6rem;
  cursor: pointer;
  padding-right: 2.4rem;
  border-bottom: 0.1rem solid #e2d3cb;
  padding-bottom: 2.4rem;
}
.lp-faq__icon {
  max-width: 4.1rem;
}
.lp-faq__ttl {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 200%;
  color: #3c3230;
}
.lp-faq__foot {
  padding-left: 5.8rem;
  display: none;
}
.lp-faq__item.is-open .lp-faq__foot {
  display: block;
}
.lp-faq__toggle-icon {
  margin-left: auto;
  font-size: 2rem;
  font-weight: bold;
  width: 1.6rem;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.lp-faq__item:not(.is-open) .lp-faq__toggle-icon::before {
  content: '＋';
  color: #cea8a0;
}
.lp-faq__item.is-open .lp-faq__toggle-icon::before {
  content: '−';
  color: #cea8a0;
}
.lp-faq__txt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 260%;
  letter-spacing: 0.2em;
  color: #3c3230;
}
.lp-faq__sbtxt {
  margin-top: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgb(60, 50, 48);
  line-height: 200%;
  gap: 1.5rem;
}
.lp-faq__sbtxt .arrow {
  -webkit-box-shadow: rgb(189, 161, 157) 0px 0.2rem 3rem;
  box-shadow: rgb(189, 161, 157) 0px 0.2rem 3rem;
  width: 3.2rem;
  height: 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgb(255, 255, 255);
  border-radius: 50%;
}
.lp-faq__sbtxt .arrow img {
  width: 0.5rem;
}
.lp-faq__sbtxt .lp-faq__link {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #3C3230;
  line-height: 200%;
}
@media (max-width: 834px) {
  .lp-faq {
    padding: 6.4rem 0;
  }
  .lp-faq__list {
    margin-top: 4rem;
  }
  .lp-faq__item {
    gap: 2.7rem;
  }
  .lp-faq__head {
    padding-right: 0.8rem;
    gap: 2.3rem;
  }
  .lp-faq__icon {
    max-width: 3.6rem;
  }
  .lp-faq__ttl {
    font-size: 1.5rem;
    font-weight: 700;
  }
  .lp-faq__foot {
    padding-left: 0;
  }
  .lp-faq__txt {
    font-size: 1.3rem;
    line-height: 160%;
  }
  .lp-faq__sbtxt {
    gap: 1.6rem;
  }
  .lp-faq__sbtxt .lp-faq__link {
    font-size: 1.3rem;
  }
  .lp-faq__sbtxt .lp-faq__direction span {
    display: block;
  }
}
/* news */
.lp-news {
  background: #fff;
  padding: 8rem 0;
}
.lp-news__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.lp-news .heading {
  width: 15%;
}
.lp-news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 73%;
}
.lp-news__item {
  border-bottom: 0.1rem solid #e2d3cb;
}
.lp-news__link {
  padding: 4rem 0;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 2.4rem;
  position: relative;
}
.lp-news__item:first-child .lp-news__link {
  padding: 0 0 4rem;
}
.lp-news__link:after {
  content: '';
  background: url('../img/eyebrow/arrow.png') no-repeat;
  background-size: cover;
  background-position: center;
  width: 0.8rem;
  height: 1.2rem;
  position: absolute;
  right: 3.2rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
.lp-news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.4rem;
}
.lp-news__day {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: #000000;
  position: relative;
  padding-left: 2.3rem;
}
.lp-news__day:before {
  content: '';
  background: #b3928a;
  width: 0.6rem;
  height: 0.6rem;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
}
.lp-news__category {
  font-size: 1.4rem;
  color: #000000;
  letter-spacing: 0.2em;
  padding: 0.8rem 0;
  width: 13rem;
  text-align: center;
}
.lp-news__category.salon {
  background: #e8dedc;
}
.lp-news__category.event {
  background: #ece2cb;
}
.lp-news__category.new {
  background: #e3e6ea;
}
.lp-news__category.publish {
  background: #E0DDE9;
}
.lp-news__ttl {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: #000000;
  line-height: 260%;
  width: 50%;
}
.lp-news .btn {
  margin-top: 6.4rem;
}
@media (max-width: 834px) {
  .lp-news {
    padding: 6.4rem 0;
  }
  .lp-news__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .lp-news .heading {
    width: 100%;
  }
  .lp-news__list {
    width: 100%;
    margin-top: 4.8rem;
  }
  .lp-news__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .lp-news__link:after {
    right: 1.5rem;
  }
  .lp-news__head {
    gap: 1.7rem;
  }
  .lp-news__day {
    font-size: 1.3rem;
  }
  .lp-news__category {
    font-size: 1.3rem;
    padding: 0.6rem 0;
    width: 12rem;
  }
  .lp-news__ttl {
    font-size: 1.3rem;
    line-height: 200%;
    width: 88%;
  }
  .lp-news .btn {
    margin-top: 4.8rem;
  }
}
/* social */
.lp-social {
  background: url('../img/eyebrow/social-bg.png') no-repeat;
  background-size: cover;
  padding: 8rem 0;
}
.lp-social .block {
  max-width: 50rem;
}
.lp-social .heading h2 {
  color: #fff;
}
.lp-social__txt {
  font-size: 1.6rem;
  color: #3c3230;
  font-weight: 400;
  line-height: 260%;
  letter-spacing: 0.2em;
  margin: 6.4rem 0;
  text-align: center;
}
.lp-social__btn {
  margin-top: 6.7rem;
}
.lp-social__btn-link {
  width: 100%;
  height: 8rem;
  color: #3c3230;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  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;
  text-decoration: none;
  -webkit-box-shadow: 0 0.2rem 3rem #bda19d;
  box-shadow: 0 0.2rem 3rem #bda19d;
  background-color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 834px) {
  .lp-social {
    padding: 6.4rem 0;
    background: url('../img/eyebrow/social-sp-bg.png') no-repeat;
    background-size: cover;
  }
  .lp-social__txt {
    font-size: 1.3rem;
    margin: 4rem 0;
    text-align: left;
  }
}
/* mv */
.page-mv {
  background: url('../img/eyebrow/page-pc-mv.png') no-repeat;
  background-size: cover;
  padding: 21.9rem 0 10.3rem;
}
.page-mv h2 {
  color: #cea8a0;
  font-size: 6rem;
  font-weight: 200;
  letter-spacing: 0.01em;
}
.page-mv span {
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #746A68;
  margin-top: 3.2rem;
  display: inline-block;
}
@media (max-width: 834px) {
  .page-mv {
    padding: 17.1rem 0 7.8rem;
    background: url('../img/eyebrow/page-sp-mv.png') no-repeat;
    background-size: cover;
  }
  .page-mv h2 {
    font-size: 4.2rem;
  }
  .page-mv span {
    margin-top: 2.4rem;
    font-size: 2.4rem;
    line-height: 140%;
  }
}
/* news */
.page-news {
  background: #fff;
  padding: 8rem 0 12rem;
}
.page-news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.page-news__item {
  border-bottom: 0.1rem solid #b3928a;
}
.page-news__link {
  padding: 4rem 3.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.9rem;
  text-decoration: none;
}
.page-news__item:first-child .page-news__link {
  padding: 0 3.9rem 4rem;
}
.page-news__left {
  width: 22%;
}
.page-news__right {
  width: 69%;
}
.page-news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.4rem;
  margin-bottom: 3.8rem;
}
.page-news__day {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: #000000;
  position: relative;
  padding-left: 2.3rem;
}
.page-news__day:before {
  content: '';
  background: #b3928a;
  width: 0.6rem;
  height: 0.6rem;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
}
.page-news__category {
  font-size: 1.4rem;
  color: #000000;
  letter-spacing: 0.2em;
  padding: 0.8rem 2.3rem;
}
.page-news__category.salon {
  background: #e8dedc;
}
.page-news__category.event {
  background: #ece2cb;
}
.page-news__category.new {
  background: #e3e6ea;
}
.page-news__category.publish {
  background: #E0DDE9;
}
.page-news__ttl {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: #000000;
  line-height: 260%;
  width: 100%;
}
@media (max-width: 834px) {
  .page-news {
    padding: 8rem 0;
  }
  .page-news__list {
    width: 100%;
  }
  .page-news__item:first-child .page-news__link {
    padding: 0 0 4rem;
  }
  .page-news__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 4rem 0;
  }
  .page-news__right {
    width: 100%;
  }
  .page-news__foot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .page-news__img {
    width: 45%;
    padding-right: 5%;
  }
  .page-news__head {
    gap: 1.7rem;
    margin-bottom: 2.4rem;
  }
  .page-news__day {
    font-size: 1.3rem;
  }
  .page-news__category {
    font-size: 1.3rem;
    padding: 0.7rem 3rem;
  }
  .page-news__ttl {
    font-size: 1.3rem;
    line-height: 200%;
    width: 55%;
  }
}
/* single-news */
.single-news {
  padding: 8rem 0 12rem;
}
.single-news__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.4rem;
  border-bottom: 0.1rem solid #b3928a;
  padding-bottom: 2.4rem;
}
.single-news__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.4rem;
}
.single-news__day {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: #000000;
  position: relative;
  padding-left: 2.3rem;
}
.single-news__day:before {
  content: '';
  background: #b3928a;
  width: 0.6rem;
  height: 0.6rem;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
}
.single-news__category {
  font-size: 1.4rem;
  color: #000000;
  letter-spacing: 0.2em;
  padding: 0.8rem 2.3rem;
}
.single-news__category.salon {
  background: #e8dedc;
}
.single-news__category.event {
  background: #ece2cb;
}
.single-news__category.new {
  background: #e3e6ea;
}
.single-news__category.publish {
  background: #E0DDE9;
}
.single-news__ttl {
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  color: #000000;
  line-height: 240%;
}
.single-news__body {
  margin-top: 4rem;
}
.single-news__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.single-news__img {
  width: 45%;
  padding-right: 5%;
}
.single-news__img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.single-news__txt {
  width: 55%;
}
.single-news__txt p {
  font-size: 1.4rem;
  line-height: 260%;
  letter-spacing: 0.2em;
  font-weight: 400;
  overflow-wrap: anywhere;
}
.single-news__txt a {
  font-size: 1.4rem;
  line-height: 260%;
  letter-spacing: 0.2em;
  font-weight: 400;
  color: #000000;
  margin-top: 2.5rem;
  display: block;
}
@media (max-width: 834px) {
  .single-news {
    padding: 8rem 0;
  }
  .single-news__wrap {
    gap: 2.4rem;
  }
  .single-news__header {
    gap: 2.4rem;
  }
  .single-news__column {
    gap: 1.7rem;
  }
  .single-news__day {
    font-size: 1.3rem;
  }
  .single-news__category {
    font-size: 1.3rem;
    padding: 0.6rem 2.2rem;
  }
  .single-news__ttl {
    font-size: 1.8rem;
    line-height: 200%;
  }
  .single-news__body {
    margin-top: 2.4rem;
  }
  .single-news__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.4rem;
  }
  .single-news__img {
    width: 100%;
    padding-right: 0;
  }
  .single-news__txt {
    width: 100%;
  }
  .single-news__txt p {
    font-size: 1.3rem;
  }
}
/* page-link */
.page-link {
  margin-top: 12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.page-link__prev a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 0.1rem solid #b3928a;
}
.page-link__prev span {
  display: inline-block;
  vertical-align: middle;
  color: #232221;
  line-height: 1;
  position: relative;
  width: 0.8em;
  height: 0.8em;
  -webkit-transform: translateX(25%) rotate(-135deg);
  -ms-transform: translateX(25%) rotate(-135deg);
  transform: translateX(25%) rotate(-135deg);
}
.page-link__prev span:before {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1rem;
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}
.page-link__prev span:after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1rem;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}
.page-link__next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 0.1rem solid #b3928a;
}
.page-link__next span {
  display: inline-block;
  vertical-align: middle;
  color: #232221;
  line-height: 1;
  position: relative;
  width: 0.8em;
  height: 0.8em;
  -webkit-transform: translateX(-25%) rotate(45deg);
  -ms-transform: translateX(-25%) rotate(45deg);
  transform: translateX(-25%) rotate(45deg);
}
.page-link__next span:before {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1rem;
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}
.page-link__next span:after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1rem;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}
.page-link__back a {
  background: #b3928a;
  width: 36rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  font-weight: 400;
  line-height: 260%;
}
.page-link__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.1rem;
}
.page-link__ttl .icon {
  width: 2.1rem;
}
@media (max-width: 834px) {
  .page-link {
    margin-top: 6.4rem;
  }
  .page-link__back a {
    width: 18rem;
  }
}
/* pankuzu */
.pankuzu {
  background: #fff;
  margin-top: 4.5rem;
}
.pankuzu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem 3.8rem;
}
.pankuzu-item {
  position: relative;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  font-weight: 400;
  line-height: 260%;
  color: #000000;
}
.pankuzu-item::after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.1rem solid #232221;
  border-right: 0.1rem solid #232221;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -2rem;
  margin: auto 0 auto 0.8rem;
}
.pankuzu-item:last-child::after {
  content: none;
}
.pankuzu-link {
  cursor: pointer;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  font-weight: 400;
  line-height: 260%;
  text-decoration: none;
  color: #000000;
}
.pankuzu-link img {
  width: 1.6rem;
}
@media (max-width: 834px) {
  .pankuzu {
    margin-top: 4rem;
  }
  .pankuzu-item {
    font-size: 1.3rem;
  }
  .pankuzu-item:last-child {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow-x: hidden;
  }
  .pankuzu-link {
    font-size: 1.3rem;
  }
}
/* pagination */
.pagination {
  margin-top: 8rem;
}
.pagination-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination-item {
  list-style: none;
}
.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  border: 1px solid #b3928a;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.page-numbers.current {
  background-color: #b3928a;
  color: #fff;
}
.page-numbers.dots {
  border: none;
  background: none;
  cursor: default;
}
@media (max-width: 834px) {
  .pagination {
    margin-top: 4rem;
  }
  .page-numbers {
    font-size: 1.3rem;
  }
}
.pagetop {
  height: 8rem;
  width: 8rem;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #b3928a;
  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;
  z-index: 90;
}

.pagetop__arrow {
  height: 0.8rem;
  width: 0.8rem;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  -webkit-transform: translateY(20%) rotate(-45deg);
  -ms-transform: translateY(20%) rotate(-45deg);
  transform: translateY(20%) rotate(-45deg);
}
@media (max-width: 834px) {
  .pagetop {
    position: absolute;
    bottom: calc(8rem - 1rem);
    height: 5rem;
    width: 5rem;
  }
}
.example {
  display: -ms-grid;
  display: grid;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(white),
    to(black)
  );
  background: -o-linear-gradient(top, white, black);
  background: linear-gradient(to bottom, white, black);
}
/* page-under */
.page-under {
  padding: 8rem 0 12rem;
}
@media (max-width: 834px) {
  .page-under {
    padding: 6.4rem 0;
  }
}
.page-under__wrap {
  background: #fff;
}
.page-under__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  padding: 2.4rem 0;
  border-top: 0.1rem solid #B3928A;
  border-bottom: 0.1rem solid #B3928A;
  line-height: 240%;
  letter-spacing: 0.2em;
}
@media (max-width: 834px) {
  .page-under__ttl {
    font-size: 1.8rem;
    line-height: 200%;
  }
}
.page-under__flex {
  display: flex;
  justify-content: space-between;
  margin: 8rem 8rem 0;
}
@media (max-width: 834px) {
  .page-under__flex {
    flex-direction: column;
    margin: 4rem 0 0;
  }
}
.page-under__img {
  width: 25%;
}
@media (max-width: 834px) {
  .page-under__img {
    width: 64%;
    margin: 0 auto;
  }
}
.page-under__content {
  width: 62%;
}
@media (max-width: 834px) {
  .page-under__content {
    width: 100%;
    margin-top: 4rem;
  }
}
.page-under__txt {
  font-size: 1.6rem;
  line-height: 260%;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #3C3230;
}
@media (max-width: 834px) {
  .page-under__txt {
    font-size: 1.4rem;
  }
}
.page-under__txt strong {
  color: #D90307;
}
.page-under__precautions {
  margin: 6.4rem 8rem 0;
  background: #F6EFE7;
  padding: 4rem 0;
  text-align: center;
}
@media (max-width: 834px) {
  .page-under__precautions {
    margin: 4rem 0 0;
    padding: 2.4rem 1.6rem;
  }
}
.page-under__precautions-ttl {
  font-size: 1.4rem;
  color: #3C3230;
  letter-spacing: 0.2em;
  font-weight: 700;
}
@media (max-width: 834px) {
  .page-under__precautions-ttl {
    font-size: 1.3rem;
  }
}
.page-under__precautions-txt {
  font-size: 1.4rem;
  line-height: 260%;
  letter-spacing: 0.2em;
  font-weight: 400;
  color: #3C3230;
  margin-top: 2.4rem;
}
@media (max-width: 834px) {
  .page-under__precautions-txt {
    font-size: 1.3rem;
    line-height: 200%;
    margin-top: 1.6rem;
    text-align: left;
  }
}
.page-under__btn {
  text-align: center;
  margin-top: 6.4rem;
}
@media (max-width: 834px) {
  .page-under__btn {
    margin-top: 4rem;
  }
}
.page-under__btn a {
  background: #D90307;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  width: 60rem;
  height: 8rem;
  box-shadow: 0 0.2rem 3rem 0 rgba(189, 161, 157, 0.5);
}
@media (max-width: 834px) {
  .page-under__btn a {
    width: 100%;
    font-size: 1.3rem;
    height: 6.4rem;
  }
}
.page-under__btn a img {
  width: 2.4rem;
  margin-right: 1.6rem;
}
@media (max-width: 834px) {
  .page-under__btn a img {
    width: 2rem;
    margin-right: 0.8rem;
  }
}