@charset "UTF-8";

html { 
    font-size: 62.5%;
}

body {
    color: #423F3A;
    font-size: 1.6rem;
    font-family: 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eafade;
}

img {
  display: block;
}

div.container {
    width: 480px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.font_w {
    color: #fff;
}

.font_b {
    font-weight: 700;
}

.small_p {
    font-size: 1.2rem;
}

.text_a_c {
    text-align: center;
}


/* ヘッダー全体 */
header.lp_header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 480px;
    max-width: 100%;
    height: 60px;
    z-index: 1000;
}

/* ロゴ */
.logo {
    display: flex;
    padding: 10px 10px;
}

.logo img {
    width: 100px;
    height: auto;
}

/*コンテンツ*/
img.fv_img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding-top: 50px;
}

img.contents_img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0;
    padding: 0;
}


/*体験予約*/
.reservation_section {
  background-color: #fff;
  padding: 10px 10px;
  margin-bottom: 120px;
  text-align: center;
}

/* CTA --------------------- */
div.campaign_area {
  max-width: 480px;
  margin: 40px auto;
  text-align: center;
  padding: 0 15px;
  box-sizing: border-box;
}

/* テキスト */
div.campaign_area p.campaign_text {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ボタン */
div.campaign_area a.campaign_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 30px;
  background: #FC705D;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

/* 矢印 */
div.campaign_area a.campaign_button span.arrow {
  font-size: 20px;
  line-height: 1;
}

/* ホバー */
div.campaign_area a.campaign_button:hover,
div.campaign_area a.campaign_button:focus-visible {
  background: #f45e48;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.25);
  outline: none;
}


/* 固定CTA --------------------- */
div.cta_area {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
  max-width: 480px;
  text-align: center;
  padding: 0 15px;
  box-sizing: border-box;
}

/* ボタン本体 */
div.cta_area a.cta_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95 %;
  margin: 0 auto;
  padding: 10px 10px;
  background: #FC705D;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

/* 左の白い丸バッジ */
div.cta_area a.cta_button span.cta_badge {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  color: #FC705D;
  border-radius: 50%;
  font-weight: 800;
  flex-shrink: 0; /* バッジが縮まない */
}

div.cta_area a.cta_button span.cta_badge span.cta_badge_line {
  display: block;
  font-size: 1.4rem;
  line-height: 1.1;
}

/* 右側テキスト */
div.cta_area a.cta_button span.cta_label {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.4;
  white-space: normal;
}

/* ホバー */
div.cta_area a.cta_button:hover,
div.cta_area a.cta_button:focus-visible {
  background: #f45e48;
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.25);
  outline: none;
}



/*コピーライト*/
.lp_footer {
    padding: 5px;
    background-color: #423F3A;
    color: #fff;
}




/* ----------------------------------------

レスポンシブ スマホサイズ 

----------------------------------------*/

@media (max-width: 480px) {

    div.container {
        width: 100%;
    }

    /* ヘッダー全体 */
    header.lp_header {
        width: 100%;
        max-width: 100%;
        padding: 3px 25px;
    }


}
