@charset "UTF-8";
/* 共通 */
.br-sp {
  display: none;
}

.lp-beard-section {
  padding: 90px 0 112px 0;
}

.lp-beard-section1 {
  background-color: #f5f5f5;
}

.lp-beard-section1 + .lp-beard-section1,
.lp-beard-section2 + .lp-beard-section2 {
  padding-top: 0;
}

.lp-beard-title {
  font-size: 36px;
  color: #0e243e;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 60px;
}
.lp-beard-title span {
  display: block;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .br-sp {
    display: initial;
  }
  .lp-beard-section {
    padding: 40px 0 64px 0;
    font-size: 14px;
  }
  .lp-beard-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .lp-beard-title span {
    font-size: 12px;
  }
}
/* ヒーローセクション */
.lp-beard-section-hero {
  background-image: url(../img/lp-beard/hero-bg.jpg);
  background-size: cover;
}

.lp-beard-hero-text {
  font-size: 56px;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1em;
}

.lp-beard-hero-title {
  font-size: 28px;
  line-height: 1.5;
  font-weight: 600;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .lp-beard-hero-text {
    font-size: 36px;
  }
  .lp-beard-hero-title {
    font-size: 18px;
  }
}
/* ビフォーアフター */
.lp-beard-beforeafter-tabbed-interface {
  /* --- ラジオボタン本体は非表示 -------------------- */
  /* チェック中のタブを強調 */
  /* --- コンテンツエリア ---------------------------- */
  /* 対応するタブが選択されたときだけ表示 */
}
.lp-beard-beforeafter-tabbed-interface input[type=radio] {
  display: none;
}
.lp-beard-beforeafter-tabbed-interface .lp-beard-beforeafter-tabs {
  display: flex;
  justify-content: center;
  gap: 0 20px;
  margin-bottom: 40px;
}
.lp-beard-beforeafter-tabbed-interface .lp-beard-beforeafter-tabs label {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 17em;
  padding: 0.5em 2.5em;
  border-radius: 999px;
  border: 1px solid #1d5ae3;
  color: #1d5ae3;
  font-weight: bold;
}
.lp-beard-beforeafter-tabbed-interface #tab1:checked ~ .lp-beard-beforeafter-tabs label[for=tab1],
.lp-beard-beforeafter-tabbed-interface #tab2:checked ~ .lp-beard-beforeafter-tabs label[for=tab2],
.lp-beard-beforeafter-tabbed-interface #tab3:checked ~ .lp-beard-beforeafter-tabs label[for=tab3] {
  background: #fff;
  color: #934ef2;
  border-color: #fff;
}
.lp-beard-beforeafter-tabbed-interface .lp-beard-beforeafter-tab-contents {
  display: grid;
}
.lp-beard-beforeafter-tabbed-interface .lp-beard-beforeafter-tab-content {
  grid-area: 1/1;
  opacity: 0;
  pointer-events: none; /* 初期は透明＆クリック不可 */
  transition: opacity 0.5s ease; /* フェード時間 */
}
.lp-beard-beforeafter-tabbed-interface #tab1:checked ~ .lp-beard-beforeafter-tab-contents #content1,
.lp-beard-beforeafter-tabbed-interface #tab2:checked ~ .lp-beard-beforeafter-tab-contents #content2,
.lp-beard-beforeafter-tabbed-interface #tab3:checked ~ .lp-beard-beforeafter-tab-contents #content3 {
  opacity: 1;
  pointer-events: auto;
}

.lp-beard-beforeafter-content-wrap {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 40px auto;
  display: flex;
  gap: 0 60px;
}

.lp-beard-beforeafter-content {
  position: relative;
  flex: 1;
}
.lp-beard-beforeafter-content:first-child .lp-beard-beforeafter-content-img::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -40px;
  margin: auto 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid #934ef2;
  border-right: 0;
}

.lp-beard-beforeafter-content-img {
  position: relative;
  aspect-ratio: 3/2;
  margin-bottom: 20px;
}
.lp-beard-beforeafter-content-img img {
  object-fit: cover;
  border-radius: 20px;
  overflow: hidden;
}

.lp-beard-beforeafter-content-text {
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  color: #1d5ae3;
}

.lp-beard-beforeafter-plan {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 20px auto;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}

.lp-beard-beforeafter-info {
  width: 100%;
  max-width: 940px;
  margin: auto;
  font-size: 13px;
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .lp-beard-beforeafter-tabbed-interface .lp-beard-beforeafter-tabs {
    gap: 0 10px;
  }
  .lp-beard-beforeafter-tabbed-interface .lp-beard-beforeafter-tabs label {
    max-width: 15em;
    padding: 0.5em 1em;
    font-size: 1.2rem;
  }
  .lp-beard-beforeafter-content-wrap {
    width: 80%;
    flex-direction: column;
    gap: 40px 0;
  }
  .lp-beard-beforeafter-content:first-child {
    position: relative;
  }
  .lp-beard-beforeafter-content:first-child::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -25px;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 15px solid #934ef2;
    border-bottom: 0;
  }
  .lp-beard-beforeafter-content:first-child .lp-beard-beforeafter-content-img::after {
    content: none;
  }
  .lp-beard-beforeafter-content-img {
    margin-bottom: 10px;
  }
  .lp-beard-beforeafter-content-text {
    font-size: 18px;
  }
  .lp-beard-beforeafter-plan {
    font-size: 13px;
  }
  .lp-beard-beforeafter-info {
    font-size: 11px;
  }
}
/* 回数ごとの変化 */
.lp-beard-process-beard-gallery {
  padding: 20px;
}

.lp-beard-process-beard-gallery-text {
  text-align: center;
  font-weight: bold;
  color: #1d5ae3;
  margin-top: 15px;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .lp-beard-process-beard-gallery-text {
    font-size: 1.4rem;
  }
}
/* メリットデメリット */
.lp-beard-merit-text1 {
  font-size: 20px;
  line-height: 2;
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
  color: #c50000;
}
.lp-beard-merit-text1 span {
  text-decoration: underline;
}

.lp-beard-merit-text2 {
  line-height: 2;
}

.lp-beard-merit-list-wrap {
  width: 100%;
  margin: 0 auto 40px auto;
  display: flex;
  gap: 0 40px;
}

.lp-beard-merit-list {
  flex: 1;
}

.lp-beard-merit-list-title {
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  padding: 8px;
  border-radius: 10px 10px 0 0;
}

.lp-beard-merit-list ul {
  background-color: #ffffff;
  border-radius: 0 0 10px 10px;
  padding: 20px;
  list-style: none;
  margin: 0;
}
.lp-beard-merit-list ul li {
  padding: 8px;
  font-size: 16px;
  background-color: #e8e8e8;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 10px;
}
.lp-beard-merit-list ul li:last-child {
  margin-bottom: 0;
}

.lp-beard-merit-list1 .lp-beard-merit-list-title {
  background-color: #1d5ae3;
}
.lp-beard-merit-list1 ul {
  width: 100%;
}
.lp-beard-merit-list1 ul li {
  width: 100%;
  position: relative;
  color: #171f59;
}
.lp-beard-merit-list1 ul li::before {
  position: absolute;
  top: 8px;
  left: 15px;
  margin: auto 0;
  content: "✔";
}

.lp-beard-merit-list2 .lp-beard-merit-list-title {
  background-color: #666666;
}
.lp-beard-merit-list2 ul {
  width: 100%;
}
.lp-beard-merit-list2 ul li {
  width: 100%;
  position: relative;
  color: #333333;
}
.lp-beard-merit-list2 ul li::before {
  position: absolute;
  top: 8px;
  left: 15px;
  margin: auto 0;
  content: "⚠";
}

@media screen and (max-width: 768px) {
  .lp-beard-merit-text1 {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .lp-beard-merit-list-wrap {
    flex-direction: column;
    margin: 0 auto 20px auto;
    gap: 30px 0;
  }
  .lp-beard-merit-list-title {
    font-size: 16px;
  }
  .lp-beard-merit-list ul li {
    font-size: 11px;
  }
  .lp-beard-merit-list1 ul li::before,
  .lp-beard-merit-list2 ul li::before {
    left: 8px;
  }
}
/* 違い */
.lp-beard-difference-text {
  line-height: 2;
  margin-bottom: 40px;
}
.lp-beard-difference-text:last-child {
  margin-bottom: 0;
}

.lp-beard-difference-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.lp-beard-difference-table th,
.lp-beard-difference-table td {
  border: 1px solid #e8e8e8;
  padding: 10px 20px;
  text-align: center;
  background-color: #f5f5f5;
}
.lp-beard-difference-table tr th:nth-of-type(1) {
  width: 30%;
  background-color: #cccccc;
}
.lp-beard-difference-table tr th:nth-of-type(2) {
  width: 35%;
  background-color: #1d5ae3;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
}
.lp-beard-difference-table tr th:nth-of-type(2) span {
  font-size: 12px;
}
.lp-beard-difference-table tr th:nth-of-type(3) {
  width: 35%;
  background-color: #666666;
  color: #ffffff;
  font-size: 18px;
}
.lp-beard-difference-table th img {
  max-width: 50%;
  height: auto;
  margin-top: 0.25em;
}
.lp-beard-difference-table td.regina {
  font-weight: 600;
  background-color: #ffffff;
}
.lp-beard-difference-table h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1d5ae3;
}

@media screen and (max-width: 768px) {
  .lp-beard-difference-text {
    margin-bottom: 20px;
  }
  .lp-beard-difference-table {
    margin-bottom: 20px;
  }
  .lp-beard-difference-table th,
  .lp-beard-difference-table td {
    padding: 5px 10px;
    font-size: 13px;
  }
  .lp-beard-difference-table tr th:nth-of-type(2) {
    font-size: 14px;
  }
  .lp-beard-difference-table tr th:nth-of-type(2) span {
    font-size: 10px;
  }
  .lp-beard-difference-table tr th:nth-of-type(3) {
    font-size: 14px;
  }
  .lp-beard-difference-table th img {
    max-width: 100%;
  }
  .lp-beard-difference-table h3 {
    font-size: 14px;
  }
}
/* 理由 */
.lp-beard-reason-wrap {
  display: flex;
  gap: 0 60px;
}

.lp-beard-reason {
  flex: 1;
  position: relative;
}
.lp-beard-reason::after {
  position: absolute;
  top: 0;
  right: -30px;
  height: 100%;
  content: "";
  border-right: 1px dotted #0e243e;
}
.lp-beard-reason:last-of-type::after {
  border-right: none;
}

.lp-beard-reason-heading {
  display: flex;
  align-items: center;
  gap: 0 20px;
  margin-top: 20px;
}

.lp-beard-reason-number {
  font-family: Montserrat, sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: #1d5ae3;
  font-size: 48px;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  background: linear-gradient(140deg, rgb(121, 63, 214) 0%, rgb(61, 99, 227) 52.71%, rgb(0, 65, 139) 100%) text;
}

.lp-beard-reason-title {
  font-size: 24px;
  font-weight: 600;
}

.lp-beard-reason-img {
  aspect-ratio: 3/2;
  margin: 30px 0 20px 0;
  border-radius: 20px;
  background-color: #ffffff;
  overflow: hidden;
}
.lp-beard-reason-img img {
  object-fit: cover;
  height: 100%;
}

.lp-beard-reason-text {
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .lp-beard-reason-wrap {
    flex-direction: column;
    gap: 40px 0;
  }
  .lp-beard-reason {
    border-top: 1px dotted #0e243e;
  }
  .lp-beard-reason:first-of-type {
    border-top: none;
  }
  .lp-beard-reason::after {
    content: none;
  }
  .lp-beard-reason-title {
    font-size: 20px;
  }
  .lp-beard-reason-img {
    margin: 20px 0;
  }
}
/* 実績と経験 */
.lp-beard-point-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}

.lp-beard-point {
  display: flex;
  gap: 0 60px;
  align-items: flex-start;
  background-color: #ffffff;
  padding: 60px;
  border-radius: 20px;
}
.lp-beard-point > * {
  flex: 1;
}
.lp-beard-point:nth-of-type(even) {
  flex-direction: row-reverse;
}

.lp-beard-point-info-title {
  font-size: 24px;
  font-weight: 600;
  color: #1d5ae3;
  margin: 60px 0 20px 0;
  line-height: 1.5;
}

.lp-beard-point-info-text {
  line-height: 2;
}

.lp-beard-point-img {
  aspect-ratio: 4/3;
  border-radius: 20px;
  background-color: #f5f5f5;
  min-height: 0;
  overflow: hidden;
}
.lp-beard-point-img img {
  object-fit: cover;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .lp-beard-point-wrap {
    gap: 40px 0;
  }
  .lp-beard-point {
    flex-direction: column;
    gap: 20px 0;
    padding: 30px;
  }
  .lp-beard-point:nth-of-type(even) {
    flex-direction: column;
  }
  .lp-beard-point-info-title {
    font-size: 20px;
    margin-top: 10px;
  }
}
/* その他上書き */
#lp-beard #price-discount {
  padding-top: 0;
  padding-bottom: 150px;
}
#lp-beard .faq .bottom-link:nth-of-type(n + 3) {
  margin-top: 3.2vh;
}
#lp-beard .clinic-information-content {
  position: relative;
}
#lp-beard .clinic-information-content-wrap {
  display: flex;
  gap: 0 60px;
}
#lp-beard .clinic-information-content-wrap > * {
  flex: 1;
}
#lp-beard .clinic-information-title {
  text-align: center;
}
#lp-beard .clinic-information-list {
  color: #934ef2;
  line-height: 2;
  margin-bottom: 30px;
}
#lp-beard .clinic-information-icon {
  margin: 20px auto 30px auto;
  padding-bottom: 0;
}
#lp-beard #breadcrumbs {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #lp-beard .clinic-information-content-wrap {
    flex-direction: column;
    gap: 60px 0;
  }
  #lp-beard .clinic-information-content {
    width: 90%;
    padding-top: 0;
  }
  #lp-beard .clinic-information-list {
    font-size: 14px;
  }
}