/*==============================================================

共通設定

==============================================================*/

html {
    background-image: url("../../../images/lp/dark-reishi/bgimg.png");
    background-position: top center;
    background-repeat: repeat;
}

@media only screen and (min-width: 751px) {
    html {
        background-position: left top;
    }
}

body {
    background: transparent;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", sans-serif;

}

#exHeader,
#lp_content,
footer {
    max-width: 750px;
    margin: 0 auto;
}

#exHeader .headerCoin {
    display: none;
}

h1 {
    margin: 0;
    font-size: 0;
    line-height: 0;
}

#lp_content img {
    display: block;
}

.section,
.section > img,
.section > h1 > img,
.teacher__imfo--img > img {
    width: 750px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.center-absolute {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}


.relative {
    position: relative;
    display: block;
}

.absolute {
    position: absolute;
}

.yellow {
    color: #fbf90c;
}

.marker {
    background: linear-gradient(transparent 70%, rgba(255, 255, 0, 0.5) 70%);
}

.marker {
    background: linear-gradient(transparent 60%, #fff176 60%);
    /* #fff176 = 黄(薄め) */
    /* 文章が複数行に折り返しても下線のように途切れず塗られる */
    padding: 0 2px;
}


/*==============================================================

マージン設定

==============================================================*/
.wd-40 {
    width: 40%;
}

.wd-80 {
    width: 60%;
}

.mt-3 {
    margin-top: 3%;
}


.mt-5 {
    margin-top: 5%;
}

.mt-10 {
    margin-top: 10%;
}

.mb-3 {
    margin-bottom: 5%;
}

.mb-5 {
    margin-bottom: 5%;
}

.mt-53 {
    margin-top: 44%;
}

.mt-100 {
    margin-top: 114%;
}

.mt-125 {
    margin-top: 128%;
}

.mt-3 {
    margin-top: 1%;
}

/*==============================================================

スクロールしたら画像が出てくる設定

==============================================================*/

/* 最初は透明＆下に 40px ずらす */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}

[data-reveal].is-shown {
    /* 交差したら */
    opacity: 1;
    transform: translateY(0);
}

/* 交差後 0.8s で transform をリセット  -------------------- */
[data-reveal].is-shown {
    transform: none;
    /* translateY を解除して GPU レイヤーから戻す */
}

/*==============================================================

CTA設定

==============================================================*/
.wd-80-cta {
    width: 85%;
    ;
    left: 50%;
    /* ← 中央基準 */
    transform: translateX(-50%);
    position: absolute;
    /* 既に付いているはず */
}

/* ────── 質問エリア用 CTA を中央に配置 ────── */
.cta-under {
    /* ❶ ラッパー section */
    text-align: center;
    /* 中央寄せの基点 */
    margin: 40px 0 10px;
    /* タイトルと少し余白を取る */
}

.cta-under .cta-wrap {
    /* ❷ <a> を行内ブロック化して中央へ */
    display: inline-block;
}

.cta-under__canvas {
    /* ❸ 2つ目だけ absolute を外す */
    position: static !important;
    /* ← 既存の absolute を打ち消す */
    display: block;
    width: 85%;
    /* 1つ目と同じ見た目 */
    max-width: 750px;
    /* PC でもハミ出さない */
    margin: 0 auto;
    /* 左右 auto でド真ん中 */
    height: auto;
    /* アスペクト比維持 */
}

.cta-canvas {
    position: absolute; /* 必須 */
    z-index: 10; /* 必要に応じて値を調整 */
}

.cta-canvas--hero {
    top: 82.4%;
}

.cta-canvas--lower {
    top: 60%;
}

/*==============================================================

CTAボタン心臓設定

==============================================================*/

.pulse {
    animation: heartbeat 1.2s infinite;
    transform-origin: center;
    width: 81%;
    transform: translateX(-50%) scale(1.2);
    /* 両方をまとめて書く */
}

.pulse2 {
    animation: heartbeat 1.2s infinite;
    transform-origin: center;
    width: 50%;
    transform: translateX(-50%) scale(1.2);
    /* 両方をまとめて書く */
}


@keyframes heartbeat {
    0% {
        transform: translateX(-50%) scale(1);
    }

    30% {
        transform: translateX(-50%) scale(1.2);
    }

    60% {
        transform: translateX(-50%) scale(1);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

/*==============================================================

占い師説明プルダウン設定

==============================================================*/


.acc-item {
  max-width: 900px;
  margin: 0 auto;
}

.acc-btn {
  width: 100%;
  padding: 20px 56px 20px 64px;
  border: none;
  border-bottom: 3px solid #fdf093;
  background: transparent;
  color: #fdf093;
  font-size: 32px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.acc-btn::after {
  content: "";
  width: 14px;
  height: 14px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg);
  transition: transform .3s;
}

.acc-btn.active::after {
  transform: rotate(-135deg); /* 開いた時に上向き矢印 */
}

/* 開閉エリア */
.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  background: #fff;
  padding: 0 64px;
}

.acc-content p {
  padding: 20px 0;
  margin: 0;
  font-size: 18px;
  color: #0d0d0d;
  line-height: 1.7;
}

/* 上にも線を入れたい場合（任意） */
.acc-item:first-child .acc-btn {
  border-top: 3px solid #000000;
}

hr {
  border: none;
  border-top: 1px solid #0a0a0a;
  margin: 40px 0;
}


/*==============================================================

画像スライダー設定

==============================================================*/
.slider-area {
    background-color: #bfd8e0;
    max-width: 750px;
    margin: 0 auto;
    /* ← 追加！中央配置 */
    padding-bottom: 7px;
}

.slider-container {
    position: relative;
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    /* ←ボタンのサイズを固定 */
    height: 40px;
    /* ←ボタンのサイズを固定 */
    font-size: 20px;
    /* ←アイコンサイズ調整 */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}


.prev {
    left: 10px;
}

.next {
    right: 10px;
}



/*==============================================================

ofa設定

==============================================================*/
.fade-in-image {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(10px);
    transition: opacity 1.5s ease-out, transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), filter 1.5s ease-out;

}

/* 表示トリガーがかかると */
.fade-in-image.show {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

/*==============================================================

フォント設定

==============================================================*/
.fw-b{
    font-weight: bold;
}

.marker {
  background: linear-gradient(transparent 60%, #ffff5e 60%);
  /*  ↑ 下40%だけ蛍光色を乗せる */
  display: inline;
}


/*==============================================================

Q&A設定

==============================================================*/
.qa-6 {
    max-width: 700px;
    margin: 0 auto 5px auto;
    border-bottom: 2px solid #d6dde3;
}

.qa-6 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

.qa-6 summary::before,
.qa-6 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-6 summary::before {
    color: #a02bee;
    content: "Q";
}

.qa-6 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    content: '';
    transition: transform .5s;
}

.qa-6[open] summary::after {
    transform: rotate(225deg);
}

.qa-6 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #ffffff;
    transition: transform .5s, opacity .5s;
    line-height: 1.6;
}

.qa-6[open] p {
    transform: none;
    opacity: 1;
}

.qa-6 p::before {
    color: #df060c;
    line-height: 1.2;
    content: "A";
}

/*==============================================================

占い師紹介設定

==============================================================*/
.teacher__imfo {
    background-color: #1d1e1e;
}

.teacher__imfo--img--icon {
    width: 25%;
}

.teacher__imfo--img--icon2 {
    width: 28%;
}

.teacher__imfo--img--icon3 {
    width: 33%;
}

.teacher__imfo--img--icon4 {
    width: 29%;
}

.teacher__imfo--img--icon5 {
    width: 18%;
}

.lf-29 {
    left: 29%;
}

.lf-30 {
    left: 31%;
}

.lf-40 {
    left: 40%;
}

.lf-46 {
    left: 46%;
}

.lf-50 {
    left: 46%;
}

.lf-52 {
    left: 56%;
}


.lf-80 {
    left: 71%;
}

.tp-5 {
    top: 5%;
}

.tp-26 {
    top: 26%;
}

.tp-30 {
    top: 20%;
}

.tp-33 {
    top: 30%;
}




/*==============================================================

占い師タイトル設定

==============================================================*/
.title {
    width: 80%;
}

.sab-title {
    width: 50%;
    padding-top: 3%;
    padding-bottom: 3%;
}


/*==============================================================

占い師説明プルダウン設定

==============================================================*/
/* ───────── アコーディオン ───────── */
.accordion {
    max-width: 750px;
    margin: 0 auto;
}

.accordion__text {
    font-family:
        "Hiragino Kaku Gothic ProN",
        /* macOS 新 ‐ 推奨 */
        "Hiragino Sans",
        /* iOS / macOS 共通 */
        "Yu Gothic", "YuGothic",
        /* Windows10/11 */
        "Noto Sans JP",
        /* Android & Web フォールバック */
        Arial,
        /* 非日英混在時の安全策 */
        sans-serif;

    color: #201d57;
    font-weight: bold;
    line-height: 1.8;

    background: #e4e4e4;
    /* 白箱 */
    padding: 20px 22px;
    border-radius: 12px;
    line-height: 1.8;

    margin-bottom: 24px;

}

.accordion__text:last-child {
    margin-bottom: 0;
}

.accordion__item+.accordion__item {
    /* ボタン間の余白 */
    margin-top: 20px;
}

/* ボタン本体 */
.accordion__button {
    position: relative;
    width: 100%;
    padding: 0;
    /* 画像をそのまま表示 */
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

/* ───────── ▼ 三角アイコン ───────── */
.accordion__icon {
    position: absolute;
    top: 61%;
    right: 12.5%;
    width: 26px;
    height: 26px;
    /* 大きさはお好みで */
    pointer-events: none;
    /* クリックを邪魔しない */

    /* ▼ 下向き三角を clip-path で描画 */
    background: #b2893b;
    /* ← 色を変えたい時はここ */
    clip-path: polygon(50% 100%, 0 0, 100% 0);

    transform: translateY(-50%) rotate(0deg);
    /* ▼ が初期状態 */
    transition: transform .3s ease;
}

/* 展開時に ▲（上向き）へ反転 */
.accordion__button[aria-expanded="true"] .accordion__icon {
    transform: translateY(-50%) rotate(180deg);
}


@media (max-width: 750px) {
    .accordion__icon {
        right: 15%;
        width: 15px;
        height: 15px;
    }
}

/* SP レスポンシブ */
@media (max-width: 750px) {
    .accordion__panel {
        font-size: 14px;
    }
}

.accordion__panel {
    padding: 18px 12px;
}

.accordion__text {
    padding: 18px 18px;
    font-size: 14px;
}


/*==============================================================

フォーム設定

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


.form-container {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    background-color: white;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-image: none;

}

.form-group {
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 13px;
    margin-top: 43px;
    color: #fff;
    text-align: left;
    margin-left: 8%;
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Sans", "Arial", sans-serif;

}

.required {
    background-color: #58bb55;
    /* 必須ラベルの背景色 */
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 5px;
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Sans", "Arial", sans-serif;
}


input[type="email"],
input[type="password"] {
    width: 85%;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 4px;
    font-size: 16px;
}

.Memberregistration-form__container {
    margin: 0 auto;
    text-align: center;
}


.note {
    font-size: 14px;
    color: #ffff;
    margin-top: 4px;
    margin-right: 55%;
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Sans", "Arial", sans-serif;
}


input[type="checkbox"] {
    margin-right: 5px;
}

.form-group label input[type="checkbox"] {
    display: inline-block;
}

form .form-group:last-child {
    margin-top: 20px;
}

/*==============================================================

フッター設定

==============================================================*/

footer {
    font-size: 13px;
    letter-spacing: 0.1rem;
    font-weight: 100;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #34424d;
}

li {
    float: left;
    width: 50%;
}

li:last-child {
    border-right: none;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover:not(.active) {
    background-color: #bbb;
}

.li-left {
    border-right: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
}

.li-right {
    border-bottom: 1px solid #bbb;
}

.copywriter {
    font-size: 10px;
    color: #bbb;
    background-color: #34424d;
    text-align: center;
    padding: 14px 16px;
}

/*==============================================================

header

==============================================================*/

#exHeader {
    display: block;
    width: 100%;
    height: 44px;
    padding: 0;
    clear: both;
    overflow: hidden;
    position: relative;
    border-top: 2px solid #000;
    border-bottom: solid 1px #e5e5e5;
    box-sizing: border-box;
    background: #fbfbfb;
}

#exHeader #exHeaderInner {
    display: flex;
    justify-content: flex-end;
    margin: 3px 3px 0 0;
}

#exHeader #siteLogo {
    position: absolute;
    top: 7px;
    left: 5px;
}

#exHeader .headerBtn {
    margin-left: 2px;
}

#exHeader .exSupportNumber {
    display: flex;
    justify-content: flex-end;
}

#exHeader .exSupportNumber .exPhoneNumber {
    margin: 8px 8px 0 0;
}

#exHeader #exHeaderInner_recruit {
    display: flex;
    justify-content: flex-end;
    margin: 3px 3px 0 0;
}


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

    /*==============================================================

共通設定

==============================================================*/

    .section,
    .section > img,
    .section > h1 > img,
    .teacher__imfo--img > img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .cta-canvas--hero {
        top: 82%;
    }

    .cta-canvas--lower {
        top: 60%;
    }

    .introduction-text {
        font-size: 15px;
        width: 350px;
    }

    .form-container {
        height: 686px;
    }

    .note {
        margin-right: 27%;
    }

    .btn_canvas {
        width: 100%;
    }

    .wd-40 {
        width: 80%;
    }

    .section .mb-3,
    .mb-3 {
        margin-bottom: 5% !important;
    }

    .mt-3 {
        margin-top: 6%;
    }


    .acc-btn{
        font-size:20px ;
    }

    .acc-content p{
        font-size:15px ;
    }



    /*==============================================================

フッター設定

==============================================================*/

    .footer {
        font-size: 10px;
    }

    .next {
        right: 4px;
    }

    .prev {
        left: 4px;
    }

    .prev,
    .next {
        width: 30px;
        height: 30px;
    }
}
