/* 2025/07/26 */

@charset "utf-8";

html { overflow: auto; }
body { overflow: hidden; }

html {
  overflow-y: scroll;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: sans-serif;
  line-height: 1.618;

  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1,h2,h3,h4,h5,h6,p,ul,ol {
  margin: 0;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.41;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

p:not(:last-child),ul,ol {
  margin-bottom: 1em;
}


/*@media(max-width: 599px) {
  p br {
    display: none;
  }
}*/

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

strong {
  font-weight: 700;
}

ins {
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

figure {
  border: 0;
  margin: 0;
}

fieldset {
  border: 0;
}

/* 文字色
======================================================================= */

body {
  color: #333;
}

/* リンク */

a,
a:hover {
  color: #1a0dab;
  text-decoration: underline;
}

a:hover, 
a:focus {
  text-decoration: none;
}

a:active {
  color: #1a0dab;
  text-decoration: none;
}

a:hover > img {
  opacity: .9;
}

/* =======================================================================
  メディアクエリによる表示／非表示
======================================================================= */

.pc { display: block; }
.sp { display: none; }

@media(max-width: 599px) {
  .pc { display: none; }
  .sp { display: block; }
}

/* =======================================================================
  レイアウト
======================================================================= */

/* 幅 */

.l-width {
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  max-width: 808px;
}

/* バック横幅いっぱい */

body .l-wide {
  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

/* 間隔 */

.l-margin {
  margin: 24px auto;
}

.l-padding {
  padding: 24px;
}

.l-padding-s {
  padding: 1.5em;
}

.l-padding > .l-margin:first-child {
  margin-top: 0;
}
.l-padding > .l-margin:last-child {
  margin-bottom: 0;
}

/*@media(max-width: 599px) {
  .l-margin {
    margin: 24px auto;
  }
  .l-padding {
    padding: 24px;
  }
}*/


/* 形状 */

.is-shadow-s {
  box-shadow: 0 3px 4px 0 rgb(0 0 0 / .1);
}

.is-shadow-l {
  filter: drop-shadow(0 10px 13px rgb(0 0 0 / .3));
}

.is-round {
  border-radius: 8px;
}

/* ◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢  ▲ ここまでは基本触らない ▲  ◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢ */

/* =======================================================================
  メイン
======================================================================= */

.main {
  padding-bottom: 40px;
  margin: 0 auto;
}

.main > *:first-child {
  margin-top: 0;
}
.main > *:last-child {
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .main {
    padding-bottom: 24px;
  }
}

/* =======================================================================
  タイポグラフィー
======================================================================= */

.main p:not([class]), .main ul, .main ol {
  font-size: 1.1em;
}

@media(max-width: 599px) {
  .main p:not([class]), .main ul, .main ol {
    font-size: 1em;
  }
}

/* =======================================================================
  スマホファースト
======================================================================= */

/* --- PC側の背景設定 --- */
.background-wrapper {
  width: 100%;
  min-height: 100vh; /* 画面の高さいっぱいに広げる */
  background-color: #e0e0e0; /* 背景色（画像にすることも可能） */
}

/* --- スマホLP本体の設定 --- */
.lp-container {
  width: 100%;
  max-width: 599px; /* スマホの最大幅 */
  min-height: 100vh;
  background-color: #fff;

  /* PCで見たときに、背景とLPの境界をわかりやすくする影 */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); 
}

.lp-container img {
  display: block;
  width: 100%;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
  margin: 0 auto;
}

.lp-container p {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  max-height: 99999px;
}

/* =======================================================================
  ヘッダー
======================================================================= */

.header {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 100%;
  max-width: 599px; /* スマホの最大幅 */
}

/* =======================================================================
  CTA
======================================================================= */

.cta__txt {
  text-align: center;
  padding: 24px;
}

.cta__btn {
  display: block;
  padding: 24px 24px 0;
}

.cta .is-shadow-l:hover {
  filter: none;
}

/* =======================================================================
  こんな経験ありませんか？
======================================================================= */

.problem__cta {
  position: relative;
}

.cta__btn-2 {
  position: absolute;
  top: 34%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 100%;
}

@media(max-width: 599px) {
  .cta__btn-2 {
    top: 30%;
  }
}

/* =======================================================================
  なぜ上手くいかないのか
======================================================================= */

.reason__cta {
  position: relative;
}

.cta__btn-3 {
  position: absolute;
  top: 65%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 100%;
}

@media(max-width: 599px) {
  .cta__btn-3 {
    top: 62%;
  }
}

/* =======================================================================
  脱毛症には大きく7種類
======================================================================= */

/* =======================================================================
  薄毛になってしまうメカニズム
======================================================================= */

/* =======================================================================
  薄毛の原因
======================================================================= */

.cause {
  background-color: #f2efe6;
}

.cause__cta {
  position: relative;
}

.cta__btn-4 {
  position: absolute;
  top: 35%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 100%;
}

@media(max-width: 599px) {
  .cta__btn-4 {
    top: 32%;
  }
}

/* =======================================================================
  最も重要な3ステップ
======================================================================= */

/* =======================================================================
  リード
======================================================================= */

/* =======================================================================
  私たちの4つの強み
======================================================================= */

/* =======================================================================
  施術の流れ
======================================================================= */

.flow {
  background-color: #d8dce6;
}

.flow__item {
  display: flex;
  gap: 24px;
  padding: 40px;
}

 .flow__item video {
  margin-bottom: 15px;
 }

.flow__movie {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 9 / 16;
}

.flow__item > div {
  flex: 1;
  min-width: 0;
}

@media(max-width: 599px) {
  .flow__item {
    padding: 24px;
  }
}

/* =======================================================================
  価格
======================================================================= */

.price {
  position: relative;
}

.cta__btn-5 {
  position: absolute;
  top: 74%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 100%;
}

@media(max-width: 599px) {
  .cta__btn-5 {
    top: 72%;
  }
}

/* =======================================================================
  オーナーの想い
======================================================================= */

.message {
  position: relative;
  background-color: #fdfae9;
}

.cta__btn-6 {
  position: absolute;
  top: 95%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 100%;
}

@media(max-width: 599px) {
  .cta__btn-6 {
    top: 94.5%;
  }
}

/* =======================================================================
  サロン情報
======================================================================= */

.access__map {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
  padding: 0 40px;
}

/* =======================================================================
  FAQ
======================================================================= */

/* =======================================================================
  CTA2
======================================================================= */

.cta-2 {
  position: relative;
}

.cta__btn-7 {
  position: absolute;
  top: 40%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 100%;
}

@media(max-width: 599px) {
  .cta__btn-7 {
    top: 35%;
  }
}

/* =======================================================================
  フッター
======================================================================= */

.footer {
  margin: 0;
  padding: 40px 0;
  font-size: .8em;
  text-align: center;
  background-color: #b92c60;
  color: #fff;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  margin-bottom: 30px;
}

.footer__navi {
  text-align: right;
}

.footer__navi p {
  margin-bottom: 0;
}

.footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display:flex;
  justify-content: flex-end;
}

.footer__nav ul li {
  font-size: .9em;
}

.footer__nav ul li:not(:last-child) {
  margin-right: 1em;
  padding-right: 1em;
  border-right: 1px solid #ccc;
}

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

.footer a:hover {
  text-decoration: underline;
}

.footer__copy {
  font-size: 1em;
  text-align: right;
}

@media(max-width: 599px) {
  .footer {
    padding: 24px 0;
  }
  .footer__inner {
    display: block;
  }
  .footer__logo {
    margin-bottom: 24px;
  }
  .footer__logo img {
    max-width: 50%;
  }
  .footer__nav ul {
    justify-content: center;
  }
  .footer__copy {
    text-align: center;
  }
}

/* =======================================================================
  色囲み
======================================================================= */

.color-box {
  background-color: #f2efe6;
}

.main .color-box *:last-child {
  margin-bottom: 0;
}

/* =======================================================================
  線囲み
======================================================================= */

.border-box {
  border: 1px solid #ddd;
}

.main .border-box *:last-child {
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .border-box {
  }
}

/* =======================================================================
  アクセント
======================================================================= */

.a-bold,
p.a-bold {
  font-weight: 700;
}

.a-big,
p.a-big {
  font-size: 21px;
}

.a-big1,
p.a-big1 {
  font-size: 24px;
}

.a-big2,
p.a-big2 {
  font-size: 27px;
}

.a-big3,
p.a-big3 {
  font-size: 30px;
}

@media(max-width: 599px) {
  .a-big,
  p.a-big {
    font-size: 17px;
  }

  .a-big1,
  p.a-big1 {
    font-size: 19px;
  }

  .a-big2,
  p.a-big2 {
    font-size: 21px;
  }

  .a-big3,
  p.a-big3 {
    font-size: 23px;
  }
}

.a-center,
p.a-center {
  text-align: center;
}

.a-marker,
p.a-marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #ffea00;
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}

.a-red,
p.a-red {
  color: #cc2200;
}

.a-underline,
p.a-underline {
  text-decoration: underline;
}

/* 点滅 */

.a-blink {
	animation: blink .8s ease-in-out infinite alternate;
}

@keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/* フワフワ */

.a-fuwafuwa {
  animation: 2s fuwafuwa infinite;
}

@keyframes fuwafuwa {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(15px); }
}

/* 

vwの値 = (目標のサイズ(px) / ビューポート幅(px)) × 100
（例）5.6vw = (21px ÷ 375px) × 100

ビューポート375pxの場合

18px = 4.80vw
19px = 5.07vw
24px = 5.33vw
21px = 5.60vw
22px = 5.87vw
23px = 6.13vw
24px = 6.40vw
25px = 6.67vw
26px = 6.93vw
27px = 7.20vw
28px = 7.47vw
29px = 7.73vw
30px = 8.00vw
31px = 8.27vw
32px = 8.53vw
33px = 8.80vw
34px = 9.07vw
35px = 9.33vw
36px = 9.60vw
37px = 9.87vw
38px = 10.13vw
39px = 10.40vw
40px = 10.67vw

*/

/* 
 * LP Template
 * © Motokazu Yoshida Design
 */