/* ==========================================
   基本設定
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;

    background: #ffffff;
    color: #222222;

    font-family:
        "Yu Mincho",
        "YuMincho",
        "Hiragino Mincho ProN",
        "Hiragino Mincho Pro",
        serif;

    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.page1 {
    width: 100%;
    overflow: hidden;
}


/* ==========================================
   最初の画面全体
========================================== */

.first-view {
    width: 100%;
    padding: 8px 0 18px;
    background: transparent;
}

.first-view-inner {
    width: 100%;
    max-width: 390px;

    margin: 0 auto;
    padding: 0 10px;
}


/* ==========================================
   タイトル
========================================== */

.first-view-heading {
    width: 100%;
    text-align: center;

    margin-top: 15px;
}
.first-view-title {
    margin: 0;

    color: #ef7900;

    font-size: 48px;
    font-weight: 500;

    line-height: 1.05;
    letter-spacing: -0.06em;

    white-space: nowrap;
}

.first-view-subtitle {
    margin: 8px 0 0;

    color: #111111;

    font-size: 29px;
    font-weight: 500;

    line-height: 1.25;
    letter-spacing: -0.05em;

    white-space: nowrap;
}


/* ==========================================
   オレンジライン画像
========================================== */

.first-view-line {
    display: block;

    width: 100%;
    height: auto;

    margin: -4px auto -8px;
}


/* ==========================================
   ウエスト画像とチェック項目
========================================== */

.first-view-content {
    display: flex;
    align-items: flex-start;

    width: 100%;

    margin-top: 0;
}


/* ==========================================
   左側・ウエスト画像
========================================== */

.waist-area {
    width: 54%;
    flex-shrink: 0;
}

.waist-image {
    display: block;

    width: 120%;
    max-width: none;
    height: auto;

    margin-left: -4%;
margin-top: 25px;　　
}


/* ==========================================
   右側・悩み項目
========================================== */

.worry-area {
    width: 46%;

    padding-top: 4px;
    padding-left: 4px;
}


/* 1項目全体 */

.worry-item {
    display: grid;

    grid-template-columns: 19px minmax(0, 1fr);
    column-gap: 5px;

    align-items: start;

    width: 100%;

    margin: 0 0 7px;
    padding: 0 0 7px;

   border-bottom: none;
}
.worry-item:last-child {
    margin-bottom: 0;
}


/* ==========================================
   赤い丸チェック
========================================== */

.worry-check {
    display: flex !important;

    align-items: center;
    justify-content: center;

    width: 17px !important;
    height: 17px !important;
    min-width: 17px;

    margin-top: 2px;

    border: none;
    border-radius: 50%;

    background-color: #ef0012 !important;
    color: #ffffff !important;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px !important;
    font-weight: 700;

    line-height: 1 !important;
    text-align: center;

    overflow: hidden;
}


/* ==========================================
   チェック横の文章
========================================== */

.worry-text {
    margin: 0;

    color: #222222;

    font-size: 14px;
    font-weight: 500;

    line-height: 1.7;
    letter-spacing: 0;
}

.worry-text strong {
    color: #df251d;
    font-weight: 600;
}


/* ==========================================
   小さいスマートフォン
========================================== */

@media screen and (max-width: 350px) {

    .first-view-inner {
        padding-right: 7px;
        padding-left: 7px;
    }

    .first-view-title {
        font-size: 42px;
    }

    .first-view-subtitle {
        font-size: 26px;
    }

    .waist-area {
        width: 53%;
    }

    .worry-area {
        width: 47%;
        padding-left: 2px;
    }

    .worry-item {
        grid-template-columns: 17px minmax(0, 1fr);
        column-gap: 4px;
    }

    .worry-check {
        width: 15px !important;
        height: 15px !important;
        min-width: 15px;

        font-size: 10px !important;
    }

    .worry-text {
        font-size: 12px;
    }
}


/* ==========================================
   PC表示
========================================== */

@media screen and (min-width: 1024px) {

    .first-view {
        padding-top: 18px;
        padding-bottom: 28px;
    }

    .first-view-inner {
        max-width: 700px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .first-view-title {
        font-size: 70px;
    }

    .first-view-subtitle {
        margin-top: 10px;
        font-size: 45px;
    }

    .first-view-line {
        margin-top: -5px;
        margin-bottom: -10px;
    }

    .waist-area {
        width: 53%;
    }

    .worry-area {
        width: 47%;

        padding-top: 18px;
        padding-left: 12px;
    }

    .worry-item {
        grid-template-columns: 27px minmax(0, 1fr);
        column-gap: 9px;

        margin-bottom: 13px;
        padding-bottom: 12px;
    }

    .worry-check {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px;

        margin-top: 3px;

        font-size: 15px !important;
    }

    .worry-text {
        font-size: 21px;
        line-height: 1.65;
    }
}

/* ==========================================
   ページ1 下半分
========================================== */

.page1-lower-inner {
    position: relative;

    width: 100%;
    max-width: 390px;

    margin: 0 auto;
    padding: 5px 10px 14px;

    box-sizing: border-box;
}

/* ==========================================
   原因説明
========================================== */

.cause-message {
    position: relative;
    z-index: 3;

    width: 51%;
    margin: 0;
    padding-left: 20px;
  transform: translateY(-25px);
    box-sizing: border-box;
}
.cause-text {
    margin: 0;

    color: #222222;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.75;
    letter-spacing: 0.01em;
}

.cause-text span {
    #a96f00;    font-weight: 600;
}


/* ==========================================
   鍼 × 骨盤
========================================== */

.treatment-copy {
    position: relative;
    z-index: 3;
padding-left: 20px;
    width: 56%;
    margin-top: 9px;
}

.treatment-title {
    display: flex;
    align-items: center;

    width: 100%;

    white-space: nowrap;
}

.treatment-acupuncture {
    color: #d98218;

    font-family:
        "Yu Mincho",
        "YuMincho",
        "Hiragino Mincho ProN",
        serif;

    font-size: 61px;
    font-weight: 500;

    line-height: 1;
}

.treatment-cross {
    margin: 5px 10px 0;

    color: #111111;

    font-family:
        "Yu Mincho",
        "YuMincho",
        serif;

    font-size: 25px;
    font-weight: 400;

    line-height: 1;
}

.treatment-pelvis {
    margin-top: 7px;

    color: #111111;

    font-family:
        "Yu Mincho",
        "YuMincho",
        "Hiragino Mincho ProN",
        serif;

    font-size: 25px;
    font-weight: 600;

    line-height: 1;
}

.treatment-subtitle {
    margin: 4px 0 0;

    color: #333333;

    font-size: 11px;
    font-weight: 500;

    line-height: 1.6;

    white-space: nowrap;
}

.treatment-subtitle span {
    color: #e98219;
}


/* ==========================================
   女性の施術写真
========================================== */

.treatment-image-area {
    position: absolute;
    z-index: 1;

    right: -25px;
    bottom: 60px;

    width: 80%;
}

.treatment-image {
    display: block;

    width: 100%;
    max-width: none;
    height: auto;

    margin: 0;
}


/* 写真左側を白背景になじませる */

.treatment-image-area::before {
    content: "";

    position: absolute;
    z-index: 2;

    top: 0;
    left: 0;

    width: 22%;
    height: 100%;

    pointer-events: none;

    background: linear-gradient(
        to right,
        #ffffff 0%,
        rgba(255, 255, 255, 0.78) 35%,
        rgba(255, 255, 255, 0) 100%
    );
}


/* ==========================================
   小さいスマートフォン
========================================== */

@media screen and (max-width: 350px) {

    .page1-lower-inner {
        min-height: 255px;

        padding-right: 7px;
        padding-left: 7px;
    }

    .cause-text {
        font-size: 11px;
    }

    .treatment-copy {
        width: 57%;
    }

    .treatment-acupuncture {
        font-size: 52px;
    }

    .treatment-cross {
        margin-right: 7px;
        margin-left: 7px;

        font-size: 21px;
    }

    .treatment-pelvis {
        font-size: 21px;
    }

    .treatment-subtitle {
        font-size: 9px;
    }

    .treatment-image-area {
        right: -22px;
        width: 68%;
    }
}


/* ==========================================
   PC表示
========================================== */

@media screen and (min-width: 1024px) {

    .page1-lower-inner {
        max-width: 700px;
        min-height: 505px;

        padding: 12px 20px 25px;
    }

    .cause-message {
        width: 50%;
    }

    .cause-text {
        font-size: 22px;
        line-height: 1.8;
    }

    .treatment-copy {
        width: 56%;
        margin-top: 16px;
    }

    .treatment-acupuncture {
        font-size: 105px;
    }

    .treatment-cross {
        margin-right: 18px;
        margin-left: 18px;

        font-size: 42px;
    }

    .treatment-pelvis {
        font-size: 43px;
    }

    .treatment-subtitle {
        margin-top: 7px;

        font-size: 19px;
    }

    .treatment-image-area {
        right: -40px;

        width: 69%;
    }
}
/* 女性写真を最背面にする */

.page1 {
    position: relative;
}

.treatment-image-area {
    position: absolute;
    z-index: 0;

    right: -15px;   /* 少し左へ */
    bottom: 110px;  /* 少し下へ */
    width: 95%;
}

.first-view,
.page1-lower {
    position: relative;
    z-index: 2;

    background: transparent;
}

.first-view-inner,
.page1-lower-inner {
    position: relative;
    z-index: 3;
}
/* ==========================================
   ロゴ
========================================== */

.page-logo{

    text-align:center;

    margin-top:8px;
    margin-bottom:10px;
}

.page-logo-image{

    width:130px;

    max-width:70%;

    margin:0 auto;

    display:block;
}

/* ==========================================
   キャンペーン・料金・予約
========================================== */

.campaign-area {
    position: relative; left: 0px;
    z-index: 5;

    width: 100%;

    margin-top: 26px;
    padding: 0 8px 14px;
}

/* キャンペーン見出しだけ右へ移動 */

.campaign-title {
    transform: translateX(20px);
}

/* キャンペーン見出し */

.campaign-heading {
    margin-bottom: 12px;
}

.campaign-main {
    margin: 0;

    color: #222222;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.45;
}

.campaign-main span {
    margin: 0 2px;

    color: #e87900;

    font-size: 19px;
    font-weight: 500;
}

.campaign-english {
    margin: 0;

    color: #222222;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;

    line-height: 1.35;
}


/* ==========================================
   料金と予約ボタン
========================================== */

.campaign-bottom {
    display: flex;
    align-items: flex-end;

    width: 100%;

    gap: 6px;　　
}


/* 通常価格・初回価格 */

.normal-price,
.first-price {
    position: relative;
    flex-shrink: 0;
}


/* 価格ラベル */

.price-label {
    display: block;

    width: fit-content;

    margin-bottom: 3px;
    padding: 1px 8px;

    border-radius: 2px;

    font-size: 8px;
    font-weight: 600;

    line-height: 1.35;
}

.price-label-normal {
    border: 1px solid #c99643;

    background: #ffffff;
    color: #222222;
}

.price-label-first {
    border: 1px solid #e60012;

    background: #e60012;
    color: #ffffff;
}


/* 通常価格 */

.normal-price-number {
    position: relative;

    margin: 0;

    color: #222222;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 600;

    line-height: 1;
}

.normal-price-number span {
    font-size: 11px;
}


/* 通常価格の取り消し線 */

.normal-price-number::after {
    content: "";

    position: absolute;

    top: 48%;
    right: 0;
    left: 0;

    height: 2px;

    background: #222222;

    transform: rotate(-5deg);
}


/* 料金の矢印 */

.price-arrow {
    flex-shrink: 0;

    margin: 0 3px 4px;

    color: #df7a00;

    font-family: Arial, sans-serif;
    font-size: 21px;
    font-weight: 700;

    line-height: 1;
}


/* 初回価格 */

.first-price-number {
    display: inline-block;

    margin: 0;

    color: #e60012;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 33px;
    font-weight: 500;

    line-height: 0.9;
}

.first-price-number span {
    font-size: 15px;
}

.tax-text {
    position: absolute;

    right: -3px;
    bottom: 23px;

    color: #e60012;

    font-size: 7px;

    white-space: nowrap;
}


/* ==========================================
   WEB予約ボタン
========================================== */

.web-reservation-button {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 1;
    min-width: 0;
    height: 43px;

    margin-left: 4px;
    padding: 0 6px;

    border-radius: 4px;

    background: linear-gradient(
        to bottom,
        #e38a17 0%,
        #c96f00 100%
    );

    color: #ffffff;
    text-decoration: none;

    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}

.reservation-calendar {
    flex-shrink: 0;

    margin-right: 5px;

    font-family: Arial, sans-serif;
    font-size: 15px;
}

.reservation-text {
    white-space: nowrap;

    font-family:
        "Yu Gothic",
        "YuGothic",
        sans-serif;

    font-size: 9px;
    font-weight: 500;
}

.reservation-arrow {
    flex-shrink: 0;

    margin-left: 3px;

    font-family: Arial, sans-serif;
    font-size: 14px;
}


/* ==========================================
   キャンペーン追加後の下半分の高さ
========================================== */

.page1-lower-inner {
    min-height: 410px;
    transform: translateX(-15px);
}

/* ==========================================
   小さいスマートフォン
========================================== */

@media screen and (max-width: 350px) {

    .campaign-area {
        margin-top: 20px;
        padding-right: 3px;
        padding-left: 3px;
    }

    .campaign-main {
        font-size: 12px;
    }

    .campaign-main span {
        font-size: 17px;
    }

    .campaign-english {
        font-size: 12px;
    }

    .campaign-bottom {
        gap: 3px;
    }

    .price-label {
        padding-right: 5px;
        padding-left: 5px;

        font-size: 7px;
    }

    .normal-price-number {
        font-size: 17px;
    }

    .normal-price-number span {
        font-size: 9px;
    }

    .price-arrow {
        margin-right: 1px;
        margin-left: 1px;

        font-size: 17px;
    }

    .first-price-number {
        font-size: 27px;
    }

    .first-price-number span {
        font-size: 12px;
    }

    .tax-text {
        bottom: 19px;

        font-size: 6px;
    }

    .web-reservation-button {
        height: 39px;

        margin-left: 2px;
        padding-right: 3px;
        padding-left: 3px;
    }

    .reservation-calendar {
        margin-right: 3px;

        font-size: 12px;
    }

    .reservation-text {
        font-size: 7px;
    }

    .reservation-arrow {
        margin-left: 2px;

        font-size: 11px;
    }

    .page1-lower-inner {
        min-height: 370px;
    }
}


/* ==========================================
   PC表示
========================================== */

@media screen and (min-width: 1024px) {

    .campaign-area {
        margin-top: 45px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .campaign-heading {
        margin-bottom: 20px;
    }

    .campaign-main {
        font-size: 24px;
    }

    .campaign-main span {
        font-size: 31px;
    }

    .campaign-english {
        font-size: 24px;
    }

    .campaign-bottom {
        gap: 11px;
    }

    .price-label {
        padding: 2px 13px;

        font-size: 13px;
    }

    .normal-price-number {
        font-size: 34px;
    }

    .normal-price-number span {
        font-size: 18px;
    }

    .price-arrow {
        margin-right: 6px;
        margin-left: 6px;

        font-size: 35px;
    }

    .first-price-number {
        font-size: 55px;
    }

    .first-price-number span {
        font-size: 25px;
    }

    .tax-text {
        bottom: 39px;

        font-size: 11px;
    }

    .web-reservation-button {
        height: 70px;

        margin-left: 8px;
        padding-right: 12px;
        padding-left: 12px;

        border-radius: 6px;
    }

    .reservation-calendar {
        margin-right: 8px;

        font-size: 24px;
    }

    .reservation-text {
        font-size: 15px;
    }

    .reservation-arrow {
        margin-left: 5px;

        font-size: 22px;
    }

    .page1-lower-inner {
        min-height: 720px;
    }
}

.campaign-main{
    font-size:16px;
    font-weight:bold;
    color:#333;
    margin:0;
    line-height:1.4;
}

.campaign-main span{
    color:#c9a227;   /* ゴールド */
    font-size:30px;
    font-weight:700;
}

.campaign-english{
    margin-top:6px;
    font-size:18px;
    letter-spacing:2px;
    color:#222;
}
/*==============================
  キャンペーン
==============================*/

.campaign-area{
    position:relative;
    z-index:5;
    margin-top:25px;
    transform: translateY(-20px);
}

.campaign-title{
    margin-bottom:16px;
}

.campaign-row{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:16px;

    width:100%;
    max-width:100%;
    box-sizing:border-box;
}

.price-box{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    flex-wrap:nowrap;
    white-space:nowrap;

    width:100%;
    max-width:100%;
    box-sizing:border-box;
}

.normal-box,
.sale-box{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    text-align:center;
}

.price-label{
    display:inline-block;
    background:#fff;
    color:#222;
    border:1px solid #222;
    padding:2px 10px;
    border-radius:4px;
    font-size:12px;
    font-weight:700;
}

.sale-label{
    display:inline-block;
    background:#e60012;
    color:#fff;
    padding:2px 10px;
    border-radius:4px;
    font-size:12px;
    font-weight:700;
}

.normal-price{
    font-size:22px;
    font-weight:700;
    color:#222;
    line-height:1;
}

.normal-price span{
    font-size:14px;
}

.price-arrow{
    font-size:30px;
    color:#d08b18;
    font-weight:bold;
    margin-bottom:4px;
    flex-shrink:0;
}

.sale-price{
    font-size:40px;
    font-weight:800;
    color:#d52b1e;
    line-height:1;
}

.sale-price span{
    font-size:18px;
}

.normal-price,
.sale-price{
    white-space:nowrap;
}

.reserve-button{
    display:flex;
    align-items:center;
    justify-content:center;

    width:90%;
    max-width:360px;
    margin:0 auto;

    background:#c77a14;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    font-size:16px;

    padding:14px 20px;
    border-radius:8px;
    white-space:nowrap;
    box-sizing:border-box;
    transition:.2s;
}

.reserve-button:hover{
    background:#b26c12;
}

/* ==========================================
   PC表示専用（1024px以上）
   ※ このブロック内だけがPC表示に適用されます
========================================== */

@media screen and (min-width: 1024px) {

  /* ページ全体の土台 */
  .page1 {
    position: relative;
    width: 100%;
    min-height: 950px;
    overflow: hidden;
    background: #ffffff;
  }
    /* 上半分 */
    .first-view {
        position: relative;
        z-index: 3;
        width: 100%;
        min-height: 650px;
        padding: 20px 0 0;
        background: transparent;
        overflow: visible;
    }

    .first-view-inner {
        position: relative;
        z-index: 4;
        width: 100%;
        max-width: 1450px;
        min-height: 650px;
        margin: 0 auto;
        padding: 20px 30px;
        box-sizing: border-box;
    }

    /* ロゴ */
    .page-logo {
        position: relative;
        z-index: 8;
        margin-top: -20px;
        margin-bottom: 20px;
        text-align: center;
    }

    .page-logo-image {
        display: block;
        width: 160px;
        max-width: 160px;
        height: auto;
        margin: 0 auto;
    }

    /* メインタイトル */
    .first-view-heading {
        position: relative;
        z-index: 8;
        width: 60%;
        margin-top: 10px;
        margin-left: 0;
        text-align: left;
        transform: translateX(20px);
    }

    .first-view-heading .first-view-title {
        font-size: 110px !important;
        line-height: 1 !important;
        text-align: left;
    }

    .first-view-heading .first-view-subtitle {
        font-size: 65px !important;
        text-align: left;
    }

    /* オレンジ曲線 */
    .first-view-line {
        position: relative;
        z-index: 8;
        display: block;
        width: 760px;
        max-width: none;
        height: auto;
        margin: -5px 0 -10px -30px;
    }

    /* ウエストイラストとチェック項目 */
    .first-view-content {
        position: relative;
        z-index: 5;
        width: 100%;
        min-height: 430px;
        margin-top: 0;
    }

    .waist-area {
        position: absolute;
        z-index: 3;
        top: 20px;
        left: -90px;
        width: 600px;
        height: auto;
        margin: 0;
    }

    .waist-image {
        display: block;
        width: 600px;
        max-width: none;
        height: auto;
        margin: 0;
        opacity: 1;
        transform: none;
        pointer-events: none;
    }

    .worry-area {
        position: relative;
        z-index: 8;
        width: 43%;
        margin-left: 500px;
        padding-top: 25px;
        padding-left: 0;
    }

    /* 下半分 */
    .page1-lower {
        position: relative;
        z-index: 4;
        width: 100%;
        background: transparent;
        overflow: visible;
    }

    .page1-lower-inner {
        position: static;
        width: 100%;
        max-width: 1450px;
        min-height: 300px;
        margin: 0 auto;
        padding: 0 30px 30px;
        transform: none;
        box-sizing: border-box;
    }

    /* 女性のメイン画像 */
    .treatment-image-area {
        position: absolute;
        z-index: 1;
        top: -320px;
        right: 0;
        bottom: auto;
        width: 62%;
        height: auto;
        overflow: visible;
    }

    .treatment-image {
        display: block;
        width: 100%;
        max-width: none;
        height: auto;
        margin: 0;
        object-fit: contain;
        object-position: top;
    }

    /* 女性写真の左側を白背景になじませる */
    .treatment-image-area::before {
        content: "";
        position: absolute;
        z-index: 2;
        top: 0;
        left: 0;
        width: 28%;
        height: 100%;
        background: linear-gradient(
            to right,
            #ffffff 0%,
            rgba(255, 255, 255, 0.85) 30%,
            rgba(255, 255, 255, 0) 100%
        );
        pointer-events: none;
    }

    /* 女性写真より文字を前面に表示 */
    .cause-message,
    .treatment-copy,
    .campaign-area,
    .page-logo {
        position: relative;
        z-index: 8;
    }

    /* =====================================================
       PC版・5ブロック専用調整エリア

       今後、PCの文字ブロックを調整するときは、
       原則としてこの範囲だけを変更します。

       ① チェック3項目           .worry-area
       ② 鍼 × 骨盤               .treatment-copy
       ③ その原因〜              .cause-message
       ④ 期間限定50％OFF〜       .campaign-title
       ⑤ 価格・WEB予約ボタン     .campaign-row

       現在の数値は、PC表示が戻った状態を維持する初期値です。
    ===================================================== */

   /* ------------------------------------------
   ① チェック3項目
------------------------------------------ */
.worry-area {
    width: 43%;
    margin-left: 500px;
    padding-top: 25px;
    padding-left: 0;

    /* 右20px・下50px */
    transform: translate(20px, 50px);
}

.worry-text {
    font-size: 27px;
    line-height: 1.65;
}

.worry-check {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px;
    font-size: 18px !important;
}
    /* ------------------------------------------
       ② 鍼 × 骨盤
       「治療から生まれた ウエスト改善鍼」を含む
    ------------------------------------------ */
    .treatment-copy {
        width: 56%;
        margin-top: 16px;
        padding-left: 20px;
        transform: translate(0, 0);
    }

    .treatment-acupuncture {
        font-size: 115px;
    }

    .treatment-cross {
        margin-right: 18px;
        margin-left: 18px;
        font-size: 52px;
    }

    .treatment-pelvis {
        font-size: 50px;
    }

    .treatment-subtitle {
        margin-top: 7px;
        font-size: 23px;
    }

    /* ------------------------------------------
   ③ その原因〜かもしれません
------------------------------------------ */
.cause-message {
    width: 50%;
    margin: 0;
    padding-left: 20px;

    /* 鍼×骨盤の高さに合わせる */
    transform: translate(385px,160px);
}

.cause-text {
    font-size: 17px;
    line-height: 1.8;
}    

/* ------------------------------------------
       ④ 期間限定50％OFF〜Special
    ------------------------------------------ */
    .campaign-title {
        width: auto;
        margin-bottom: 21px;
        transform: translate(780px, -140px);
    }

    .campaign-main {
        font-size: 35px;
        line-height: 1.4;
    }

    .campaign-main span {
        font-size: 49px;
    }

    .campaign-english {
        margin-top: 6px;
        font-size: 37px;
        line-height: 1.35;
    }

/* ------------------------------------------
   ⑤ 通常価格・初回価格・WEB予約ボタン
------------------------------------------ */
.campaign-row {
    width: 100%;
    gap: 24px;
    transform: translate(0, -60px);
}

.price-label,
.sale-label {
    font-size: 20px;
}

.normal-price {
    font-size: 42px;
}

.normal-price span {
    font-size: 24px;
}

.price-arrow {
    font-size: 56px;
}

.sale-price {
    font-size: 72px;
}

.sale-price span {
    font-size: 30px;
}
.reserve-button {
    width: 95%;
    max-width: 540px;
    padding: 21px 30px;
    font-size: 24px;
}
}

/* =====================================================
   iPhone横向き専用｜最終版
===================================================== */
@media screen
  and (orientation: landscape)
  and (max-width: 950px) {

  /* ページ全体 */
  .page1 {
    position: relative !important;
    width: 100% !important;
    min-height: auto !important;
    overflow: hidden !important;
    background: #ffffff !important;
  }

  /* 上半分 */
  .first-view {
    position: relative !important;
    width: 100% !important;
    min-height: auto !important;
    padding: 8px 0 12px !important;
    overflow: hidden !important;
  }

  .first-view-inner {
    position: relative !important;
    width: 100% !important;
    max-width: 760px !important;
    min-height: auto !important;
    margin: 0 auto !important;
    padding: 8px 18px 0 !important;
  }

  /* ロゴ */
  .page-logo {
    position: relative !important;
    z-index: 10 !important;
    margin: 0 0 6px !important;
    text-align: center !important;
  }

  .page-logo-image {
    width: 105px !important;
    max-width: 105px !important;
    margin: 0 auto !important;
  }

  /* タイトル */
  .first-view-heading {
    position: relative !important;
    z-index: 10 !important;
    width: 58% !important;
    margin: 0 !important;
    transform: none !important;
    text-align: center !important;
  }

  .first-view-heading .first-view-title {
    font-size: 52px !important;
    line-height: 1.05 !important;
    text-align: center !important;
  }

  .first-view-heading .first-view-subtitle {
    margin-top: 5px !important;
    font-size: 31px !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }

  /* オレンジ曲線 */
  .first-view-line {
    position: relative !important;
    z-index: 10 !important;
    width: 58% !important;
    max-width: none !important;
    margin: -4px 0 -6px !important;
  }

  /* ウエスト画像＋チェック項目 */
  .first-view-content {
    position: relative !important;
    z-index: 8 !important;
    display: flex !important;
    align-items: flex-start !important;
    width: 58% !important;
    min-height: auto !important;
    margin-top: 0 !important;
  }

  .waist-area {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 52% !important;
    height: auto !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
  }

  .waist-image {
    display: block !important;
    width: 112% !important;
    max-width: none !important;
    height: auto !important;
    margin: 12px 0 0 -6% !important;
    transform: none !important;
  }

  .worry-area {
    position: relative !important;
    z-index: 10 !important;
    width: 48% !important;
    margin: 0 !important;
    padding: 6px 0 0 5px !important;
    transform: none !important;
  }

  .worry-item {
    grid-template-columns: 18px minmax(0, 1fr) !important;
    column-gap: 5px !important;
    margin-bottom: 5px !important;
    padding-bottom: 4px !important;
  }

  .worry-check {
    width: 17px !important;
    height: 17px !important;
    min-width: 17px !important;
    font-size: 11px !important;
  }

  .worry-text {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  /* 女性写真 */
  .treatment-image-area {
    position: absolute !important;
    z-index: 1 !important;
    top: 165px !important;
    right: -45px !important;
    bottom: auto !important;
    left: auto !important;
    width: 56% !important;
    height: auto !important;
    transform: none !important;
    overflow: visible !important;
  }

  .treatment-image {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    margin: 0 !important;
  }

  .treatment-image-area::before {
    width: 24% !important;
  }

  /* 下半分 */
  .page1-lower {
    position: relative !important;
    z-index: 5 !important;
    width: 100% !important;
    background: transparent !important;
  }

  .page1-lower-inner {
    position: relative !important;
    width: 100% !important;
    max-width: 760px !important;
    min-height: 360px !important;
    margin: 0 auto !important;
    padding: 0 18px 18px !important;
    transform: none !important;
  }

  /* その原因 */
  .cause-message {
    position: relative !important;
    z-index: 10 !important;
    width: 42% !important;
    margin: 0 !important;
    padding-left: 8px !important;
    transform: translateY(-8px) !important;
  }

  .cause-text {
    font-size: 13px !important;
    line-height: 1.7 !important;
  }

  /* 鍼×骨盤 */
  .treatment-copy {
    position: relative !important;
    z-index: 10 !important;
    width: 44% !important;
    margin-top: 10px !important;
    padding-left: 8px !important;
    transform: none !important;
  }

  .treatment-acupuncture {
    font-size: 62px !important;
  }

  .treatment-cross {
    margin-right: 9px !important;
    margin-left: 9px !important;
    font-size: 27px !important;
  }

  .treatment-pelvis {
    font-size: 28px !important;
  }

  .treatment-subtitle {
    margin-top: 4px !important;
    font-size: 12px !important;
  }

  /* キャンペーン */
  .campaign-area {
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    margin-top: 18px !important;
    padding: 0 8px 14px !important;
    transform: none !important;
  }

  .campaign-title {
    width: 100% !important;
    margin: 0 0 14px !important;
    transform: none !important;
    text-align: center !important;
  }

  .campaign-main {
    font-size: 17px !important;
  }

  .campaign-main span {
    font-size: 30px !important;
  }

  .campaign-english {
    margin-top: 4px !important;
    font-size: 21px !important;
  }

  /* 料金と予約ボタン */
  .campaign-row {
    width: 100% !important;
    gap: 14px !important;
    transform: none !important;
  }

  .price-box {
    justify-content: center !important;
  }

  .price-label,
  .sale-label {
    font-size: 11px !important;
  }

  .normal-price {
    font-size: 25px !important;
  }

  .normal-price span {
    font-size: 14px !important;
  }

  .price-arrow {
    font-size: 31px !important;
  }

  .sale-price {
    font-size: 44px !important;
  }

  .sale-price span {
    font-size: 18px !important;
  }

  .reserve-button {
    width: 72% !important;
    max-width: 430px !important;
    padding: 13px 20px !important;
    font-size: 16px !important;
  }
}

/* スマホ縦向き｜女性写真の現在位置を維持 */
@media screen
  and (max-width: 767px)
  and (orientation: portrait) {

  .page1 > .treatment-image-area {
    top: auto !important;
    right: -25px !important;
    bottom: 190px !important;
    left: auto !important;
    width: 95% !important;
  }
}


/* iPhone横向き｜女性写真の最終位置 */
@media screen and (orientation: landscape) and (max-width: 950px) {

  .page1 > .treatment-image-area {
    top: 165px !important;
    right: -45px !important;
    bottom: auto !important;
    left: auto !important;

    width: 70% !important;

    transform: translate(0px, -310px) !important;
  }

}

@media screen and (orientation: landscape) and (max-width: 950px) {

  .page1 > .treatment-image-area .treatment-image {
    transform: scale(1.2) !important;
    transform-origin: right top !important;
  }

}