@charset "UTF-8";

/* 
Theme Name: Millance
Author: Mimi
 */

/* CSS変数 */
:root {
    --font-color: #1F2337;
    --bg-color: #F7EDFA;
    --ombre: linear-gradient(90deg,rgba(230, 239, 238, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(244, 216, 246, 1) 100%);
    --green: #E6EFEE;
    --pink: #F2CCE0;
    --navy: #424C76;
    --pointpink: #EAA7CA;
}

html {
    scroll-behavior: smooth;
}

/* 全体の設定 */
body {
    font-family: "Plus Jakarta Sans","Noto Sans JP", serif;
    font-feature-settings: "palt";
    line-height: 1.5;
    font-size: 15px;
    letter-spacing: 0.05em;
    background-color: #FFF;
    color: var(--font-color);
}

img {
    width: 100%;
    height: auto;
}

section {
    padding: 100px 0 110px;
}

.flex {
    display: flex;
    justify-content: center;
}

.fixed {
    position: fixed;
    z-index: 10;
}

.block {
    display: block;
}

.bold {
    font-weight: bold;
}

.container  {
    max-width: 1000px;
    padding: 0 20px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    margin-bottom: 80px;
    font-size: 48px;
    line-height: 1;
    text-align: center;
    color: #486284;
}

.subtitle {
    font-size: 18px;
    margin-top: 10px;
}

.btn {
    width: 200px;
    height: 40px;
    background-color: var(--navy);
    color: #FFF;
    align-items: center;
    border-radius: 30px;
    font-size: 14px;
}

.center-btn {
    margin: 0 auto;
}

.line-icon {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.btn:hover {
    background-color: var(--pointpink);
    color: #FFF;
    transition: all 0.3s ease-in-out;
}

h3 {
    font-size: 22px;
}

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

/* アニメーション前 */
.fade-up{
    transform: translateY(50px);
    opacity: 0;
    transition: .6s;
}

/* トリガー発火でis-activeを付与 */
.fade-up.is-animated{
    transform: translateY(0);
    opacity: 1;
}
@media screen and (max-width: 890px) {
    body {
    font-size: 14px;
    }

    section {
        padding: 70px 0;
    }

    .container  {
        padding: 0 5%;
    }

    .section-title {
        font-size: 40px;
        margin-bottom: 70px;
    }

    .subtitle {
    font-size: 16px;
    }
}
/* ヘッダーとMV */

header.flex {
    width: 100vw;
    height: 60px;
    padding: 0 40px;
    align-items: center;
    background-color: #ffffff;
    justify-content: start;
}

.logo {
    width: 180px;
}

.header-nav {
    position: fixed;
    display: flex;
    z-index: 1;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    height: 50px;
    max-width: 600px;
    width: 90%;
    background-color: rgb(from var(--navy) r g b / 0.5);
    align-items: center;
    justify-content: space-around;
    padding: 10px 20px;
    border-radius: 8px;
}

.nav-menu {
    color: #fff;
    font-size: 14px;
}

nav a:hover {
    color: var(--navy);
}

.header-nav ul{
    gap: 25px;
    font-size: 18px;
}

.hamburger {
    display: none;
}

.menu li:nth-of-type(2) {
    transition-delay: .04s;
}

.menu li:nth-of-type(3) {
    transition-delay: .08s;
}

.menu li:nth-of-type(4) {
    transition-delay: .12s;
}

.menu li:nth-of-type(5) {
    transition-delay: .16s;
} */

.menu {
    display: none;
}

.sp-menu {
    display: none;
}

.sp-menu_container {
    flex-direction: column;
}
@media screen and (max-width: 945px) {
    .sp-only {
        display: flex;
    }

    header.flex {
        padding: 0 20px;
        justify-content: space-between;
    }

    .header-nav.pc-only {
        display: none;
    }

    .header-nav ul {
        display: none;
    }

    .hamburger {
        display: flex;
        background-color: #FFF;
        border: 1px solid var(--navy);
        cursor: pointer;
        padding: 5px 8px;
        width: 70px;
        align-items: center;
        gap: 5px;
        position: fixed;
        bottom: 10px;
        right: 10px;
        z-index: 1;
    }

    .hamburger .flex {
        align-items: center;
        gap: 5px;
    }

    .fa-solid {
        padding-top: 3px;
    }

    .btn-close {
        display: none;
    }

    .hamburger.open .btn-open {
        display: none;
    }

    .hamburger.open .btn-close {
        display: flex;
    }
    
    .hamburger:focus {
        outline: 0;
    }

    .menu.open {
        display: block;
        border-radius: 12px;
        backdrop-filter: blur(4px);
        background: rgba(66, 76, 118, 0.6);
        border: 1px solid #FFF;
        z-index: 99;
        position: fixed;
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%);
        height: auto;
        padding: 24px;
        width: 70%;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }
    
    .menu.open ul {
        flex-direction: column;
        gap: 10px;
    }

    .sp-menu_title {
        font-size: 16px;
        font-weight: 500;
        display: inline-block;
        position: relative;
        width: 100%;
        margin-bottom: 10px;
    }

    .sp-menu_title::after {
        background-color: var(--pointpink);
        bottom: 0;
        content: '';
        display: block;
        height: 2px;
        left: 0;
        position: absolute;
        transition: .5s all;
        width: 100px;
    }

    .sp-menu_title:hover::after {
        width: 100%;
    }

    .sp-menu .nav-menu {
        padding-bottom: 30px;
    }

    .sp-menu .nav-menu:last-child {
        padding-bottom: 0px;
    }


    .sp-menu_small {
        font-size: 13px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
}

@media screen and (max-width: 450px) {
    header.flex {
        padding: 0 10px;
    }

    .logo {
        width: 140px;
    }

    header .btn {
        width: 145px;
        padding: 0;
        font-size: 12px;
    }

    header .line-icon {
        margin-right: 5px;
    }
}
/* ここからNEW */
main {
    padding-top: 60px;
}

#mv {
    width: 100%;
    background-image: url(img/mv.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mv-upper {
    padding: 60px 0 0;
    width: 100%;
    height: 80vh;
}

.mv_text-wrap {
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.add-comment {
    font-size: 14px;
    margin-bottom: 10px;
}

.concept {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.3;
}

.sub-concept {
    font-size: 12px;
    opacity: 0.5;
}

.mv-lower {
    width: 100%;
    align-items: end;
}

.mv_left {
    width: calc(100% - 800px);
}

.mv_right {
    width: 800px;
}

.mv_img_right {
    width: 100%;
    object-fit: contain;
}

@media screen and (max-width: 945px) {
    .mv-upper {
        height: 65vh;
    }

    .concept {
    font-size: 32px;
}

    .mv-lower {
        display: flex;
        height: auto;
        justify-content: center;
        padding: 0 5%;
    }

    .mv_left {
        display: none;
    }

    .mv_right {
        max-width: 890px;
        width: 90%;
    }

    .mockup-img {
        height: auto;
        max-width: 70%;
        display: block;
    }
}

/* 問いかけセクション */
#question {
    text-align: center;
}

.question-title {
    margin-bottom: 50px;
}

.before-q {
    font-size: 17px;
    margin-bottom: 10px;
}

.text-q {
    font-size: 30px;
    font-weight: bold;
}

.question-speech {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 80px;
}

.each-speech {
    gap: 30px;
    align-items: center;
}

.question-img {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    border: #D9D9D9 1px solid;
    object-fit: cover;
}

.speechBubble {
    position:relative;
    /* width:400px; */
    flex: 0.5;
    background:#EFF0EA;
    padding:15px;
    text-align:center;
    border:3px solid #EFF0EA;
    color:#1F2337;
    font-size:15px;
    border-radius:50px;
    -webkit-border-radius:50px;
    -moz-border-radius:50px;
}
.speechBubble::after,.speechBubble::before{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    right:100%;
    top:50%;
}
.speechBubble::after{
    border-color: rgba(239, 240, 234, 0);
    border-top-width:10px;
    border-bottom-width:10px;
    border-left-width:22px;
    border-right-width:22px;
    margin-top: -10px;
    border-right-color:#EFF0EA;
}
.speechBubble::before{
    border-top-width:11px;
    border-bottom-width:11px;
    border-left-width:24px;
    border-right-width:24px;
    margin-top: -11px;
    margin-right: 1px;
    border-right-color:#EFF0EA;
}

.speechBubble_reverse::after,.speechBubble::before{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    left:100%;
    top:50%;
}

.speechBubble_reverse {
    position:relative;
    flex: 0.5;
    background:#E4EFF5;
    padding:15px;
    text-align:center;
    border:3px solid #E4EFF5;
    color:#1F2337;
    font-size:15px;
    border-radius:50px;
    -webkit-border-radius:50px;
    -moz-border-radius:50px;
}

.speechBubble_reverse::after{
    border-color: rgba(239, 240, 234, 0);
    border-top-width:10px;
    border-bottom-width:10px;
    border-left-width:22px;
    border-right-width:22px;
    margin-top: -10px;
    border-left-color:#E4EFF5;
}
.speechBubble_reverse::before{
    border-color: rgba(239, 240, 234, 0);
    border-top-width:11px;
    border-bottom-width:11px;
    border-left-width:24px;
    border-right-width:24px;
    margin-top: -11px;
    margin-left: 1px;
    border-left-color:#E4EFF5;
}
.speechBubble_reverse::after,.speechBubble::before{
    right:100%;
}

.speech {
    text-align: left;
    display: inline-block;
}

.reverse {
    flex-direction: row-reverse;
}

.question-comment p {
    margin-bottom: 20px;
}

.arrows {
    margin-top: 30px;
    width: 95px;
}

@media screen and (max-width: 890px) {
    .speechBubble, .speechBubble_reverse {
    flex: unset;
    width: 320px;
    font-size:14px;
    }
}

@media screen and (max-width: 450px) {
    .question-speech {
        gap: 10px;
    }

    .each-speech {
        flex-direction: column;
        gap: 10px;
    }

    .each-speech:last-child {
        flex-direction: column-reverse;
    }

    .speechBubble, .speechBubble_reverse {
        width: 260px;
    }

    .speechBubble {
        align-self: flex-start;
    }

    .speechBubble_reverse {
        align-self: flex-end;
    }

    .question-img {
        width: 100px;
        height: 100px;
    }

    .speechBubble::after,.speechBubble::before{
        /* right: 65%;
        top: -20px;
        rotate: 90deg; */
        display: none;
    }

    .speechBubble_reverse::before, .speechBubble_reverse::after {
        /* left: 65%;
        top: -20px;
        rotate: -90deg; */
        display: none;
    }

    .sp-none {
        display: none;
    }

    .text-q {
    font-size: 20px;
    }

    .arrows {
        width: 80px;
    }
}
/* 解決セクション */
#solution {
    padding: 100px 0 0 0;
}

.solution-comment {
    font-size: 20px;
    display: inline-block;
    margin-bottom: 60px;
}

.solution-comment span {
    font-size: 36px;
    font-weight: bold;
}

.solution-title {
    font-size: 30px;
}

.points-wrap {
    width: 80%;
    margin: 0 auto 150px;
}

.point-box {
    text-align: center;
    width: 280px;
    margin: 0 auto;
}

/* .point-box_top {
    background-color: var(--pink);
    color: #FFF;
    border-radius: 90px 90px 0 0;
    width: 90px;
    padding-top: 5px;
    margin: 0 auto;
} */
.point-box_top {
    background-color: var(--pink);
    color: #FFF;
    border-radius: 90px 90px 0 0;
    width: 60px;
    padding-top: 8px;
    padding-bottom: 1px;
    margin: 0 auto;
}

.point-box_top__text {
    font-size: 14px;
}

.point_number {
    font-family: 'Anek Telugu';
    font-size: 20px;
    font-weight: 800;
    line-height: 0.8;
}

.point-box_bottom {
    background-color: #FFF;
    border: 6px solid var(--pink);
    margin-top: -5px;
    font-size: 15px;
    padding: 15px 0;
    width: 100%;
    border-radius: 6px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 20px;
    justify-content: space-between;
}

.div1 { grid-area: 1 / 1 / 2 / 2; }
.div2 { grid-area: 1 / 2 / 2 / 3; }
.div3 { grid-area: 2 / 1 / 3 / 2; }
.div4 { grid-area: 2 / 2 / 3 / 3; }
.div5 { grid-area: 3 / 1 / 4 / 3;
        max-width: 430px;
        width: 100%;
        position: relative;
}

.div5 .point-box_top {
    background-color: var(--pointpink);
    border-radius: 90px 90px 0 0;
    width: 60px;
}
.div5 .point-box_bottom {
    border: 6px solid var(--pointpink);
    font-size: 16px;
}
.div5 .point_number {
    font-size: 24px;
}

.advantage {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center; /* 子要素の中央揃えにも効く */
    margin: 0 auto; /* 中央に寄せる（横方向） */
    width: 200px; /* コンテンツ幅に合わせる */
    position: absolute;
    top: 40px;
    left: -260px;
    z-index: -1;
}

.advantage_text {
    font-size: 16px;
    font-weight: bold;
    rotate: -8deg;
    margin-bottom: 10px;
    text-align: center;
}

.advantage_img {
    width: 100%;
}

.point5 {
    width: 100vw;
    background-image: url(img/point5-bg.jpg);
    background-size: cover;
    background-position: right;
    padding: 50px 0;
}

.underline {
    position: relative;
    display: inline-block;
}
.underline::after {
    content: "";
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 8px;
    background-color: #FBE7F1;
    z-index: -1;
}

.point5-text p {
    z-index: 2;
}

.point5-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
}

.point5-title span {
    /* font-size: 38px; */
    font-weight: bold;
    color: var(--pointpink);
}

.point5-content {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    max-width: 750px;
    width: 85%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.point5-text {
    align-items: flex-start;
    justify-content: start;
}

.icon-camera {
    width: 32px;
    margin-right: 15px;
}
@media screen and (max-width: 1029px) {
    .advantage {
        width: 200px;
        left: -210px;
    }
}

@media screen and (max-width: 890px) {
    .points-wrap {
        width: 100%;
        margin: 0 auto 150px;
    }
    .advantage {
        top: 130px;
        bottom: -220px;
        left: 50%;
        transform: translateX(-50%);
    }

    .advantage_img {
        width: 80%;
    }
    
    .points-wrap.grid {
        margin-bottom: 200px;
    }
}
@media screen and (max-width: 599px) {
    .points-wrap.grid {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        margin-bottom: 200px;
    }

    .solution-title {
        font-size: 26px;
    }

    .solution-comment {
        font-size: 18px;
    }

    .solution-comment span {
        font-size: 26px;
    }

    .point5 {
        padding: 50px 0;
    }

    .point5-title {
        font-size: 20px;
    }

    .point5-title span {
        font-size: 32px;
    }

    .point5-content {
        padding: 15px;
        max-width: 470px;
        width: 90%;
        gap: 20px;
    }

    .point5-text {
        font-size: 13px;
    }

    .icon-camera {
        width: 22px;
        margin-top: 5px;
    }
}
/* planセクション */
.plan_web {
    margin-bottom: 110px;
    position: relative;
}

.plan_web::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #E6EFEE;
    border-radius: 3px; /* これで両端丸くなる！ */
}

.plan_web_lp {
    position: relative;
    display: inline-block;
    margin-bottom: 30px; /* 下線との距離 */
}

.plan_web_lp::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--pink);
    border-radius: 3px; /* これで両端丸くなる！ */
    /* margin-bottom: 40px; */
}

.plan-title {
    font-size: 24px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.plan-title span {
    font-size: 30px;
    font-weight: 500;
}

.plan-title::before {
    content: "";
    position: absolute;
    left: -10%;
    bottom: 25px;
    width: 120%;
    height: 15px; /* 下線の太さ */
    background: var(--ombre);
    border-radius: 15px; /* 角丸 */
    z-index: -1; /* 文字の下に配置 */
}

.web-title::after{
    content: "（デザイン＋実装）";
    display: block;
    font-size: 0.9rem; /* お好みで調整 */
}

.combo-title::after{
    content: "（デザイン＋実装＋フォト）";
    display: block;
    font-size: 0.9rem; /* お好みで調整 */
}

.combo-note {
    margin-bottom: 15px;
}

.plan-box_wrap {
    padding: 40px 0 70px;
    gap: 20px;
}

.plan-box {
    padding: 20px 10px;
    border: 1px solid var(--navy);
    width: 210px;
    height: 150px;
    border-radius: 10px;
    align-content: center;
}

.box_pink:nth-child(1) {
    background-color: rgba(251, 231, 241, 0.3);
}
.box_pink:nth-child(2) {
    background-color: rgba(251, 231, 241, 0.6);
}
.box_pink:nth-child(3) {
    background-color: rgba(251, 231, 241, 1);
}
.plan-box_text {
    font-size: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plan span{
    font-size: 20px;
    font-weight: 500;
}

.price span {
    font-size: 20px;
    display: block;
    /* margin-left: 12px; */
}

.plan.bold {
    font-size: 24px;
    font-weight: 500;
}

.plan_web_list {
    width: fit-content;
    display: inline-grid;
}

.plan_web_list_each {
    justify-content: start;
    gap: 5px;
    align-items: center;
    margin-bottom: 5px;
}

@media screen and (max-width: 750px) {
    .plan_web .plan-box_wrap {
        flex-direction: column;
        align-items: center;
        padding: 40px 0 70px;
        gap: 15px;
    }

    .plan-title {
        font-size: 20px;
    }

    .plan-box {
        width: 300px;
        height: auto;
    }

    .box_pink .plan-box_text {
        font-size: 14px;
        flex-direction: row;
        gap: 30px;
        align-items: center;
        justify-content: center;
    }

    .price span {
        font-size: 17px;
    }

    .plan_web_list_each {
        align-items: flex-start;
        text-align: left;
    }

    .plan_web_list_each i {
        padding-top: 4px;
    }
}
/* フォトプラン */
.plan_photo {
    margin-bottom: 110px;
}

.plan_photo_intro {
    position: relative;
    width: fit-content;
    margin: 0 auto 60px;
}

.plan_photo .plan-box_wrap {
    gap: 15px;
}

.comment_img {
    width: 115px;
    display: block;
    position: absolute;
    left: -60px;
    top: -30px;
}

.plan_photo_intro p {
    border-bottom: 1px solid var(--font-color);
    display: inline-block;
    margin-bottom: 10px;
}

.intro_text {
    font-size: 20px;
}

.intro_text span {
    font-weight: bold;
    color: var(--pointpink);
}

.photo_title::before {
    bottom: 0px;
}

.photo_title_text {
    margin-bottom: 40px;
}

.togari-card {
    width: 350px;
    padding: 15px;
    background-color: #FFF;
    border-radius: 8px;
    margin: 20px auto 0;
}

.togari-profile_wrap {
    gap: 20px;
    align-items: center;
}

.togari-card_title {
    font-weight: 500;
    margin-bottom: 10px;
}

.togari-img {
    width: 120px;
}

.togari-text {
    text-align: center;
}

.togari-name_en {
    font-size: 12px;
}

.togari-name_jp {
    font-size: 20px;
}

.togari-text .btn {
    width: fit-content;
    padding: 8px 20px;
    margin: 10px auto 0;
}

#plan_sub .plan-box {
    width: 40%;
    height: auto;
}

.box_green {
    background-color: rgba(230, 239, 238, 0.3);
}

.box_green:nth-child(2) {
    background-color: rgba(230, 239, 238, 0.6);
}
.box_green:nth-child(3) {
    background-color: rgba(230, 239, 238, 1);
}

.condition {
    font-size: 14px;
}
@media screen and (max-width: 700px) {
    .comment_img {
        width: 90px;
        left: -15px;
        top: -40px;
    }

    .box_green {
        width: 90%;
        /* align-content: center; */
    }

    .plan_photo .plan-box_wrap {
        flex-direction: column;
        align-items: center;
    }

    .box_green {
        max-width: 350px;
    }
    
    .togari-card {
        width: 290px;
    }

    .togari-name_jp {
        font-size: 18px;
    }

    .togari-img {
        width: 100px;
    }

    #plan_sub .plan-box {
    width: 90%;
}
}
/* デモセクション */
.plan_photo_demo {
    padding: 40px 0 80px;
    position: relative;
}

.plan_photo_demo::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #E6EFEE;
    border-radius: 3px; /* これで両端丸くなる！ */
}

.demo-intro_wrap {
    align-items: center;
    gap: 30px;
    width: fit-content;
    position: relative;
    margin: 0 auto;
    padding-top: 30px;
}

.checkitout_img {
    width: 115px;
    display: block;
    position: absolute;
    left: -80px;
    top: 0;   
}

.photoplan-mimi_img {
    width: 125px;
}

.demo-before-after {
    gap: 45px;
    width: 100%;
    align-items: center;
    margin-bottom: 40px;
}

.demo-before-after ul {
    text-align: left;
    display: flex;
    flex-direction: column;
    /* width: auto; */
}

.demo-before-after li {
    display: inline-block;
    width: fit-content;
    line-height: 2;
}
.fa-circle-arrow-right {
    font-size: 2em;
}

.demo-before-after img{
    width: 150px;
} 

.demo-before,.demo-after {
    gap: 20px;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
    border-radius: 10px;
}

.demo-before {
    background-color: #F3F3F3;
}

.demo-after {
    background-color: #FBE7F1;
}

.demo-before-after_title {
    font-weight: bold;
    font-size: 20px;
}

.demo-before .demo-before-after_title {
    color: #B3C154
}

.demo-after .demo-before-after_title {
    color: var(--pointpink)
}


.demo-img_box {
    gap: 15px;
}

.demo-btn {
    text-align: center;
}

.demo-btn .btn {
    padding: 16px 30px;
    height: auto;
    width: auto;
    border-radius: 10px;
    display: inline-block;
    margin-top: 15px;
    font-size: 18px;
}

@media screen and (max-width: 890px) {
    .demo-intro_wrap {
        flex-direction: column-reverse;
    }

    .checkitout_img {
        top: 90px;
        width: 100px;
        left: -50px;
    }

    .demo-before-after {
        flex-direction: column;
    }

    .fa-circle-arrow-right {
        rotate: 90deg;
    }
    
    .demo-before,.demo-after {
        padding: 10px;
    }

    .demo-img_box {
        gap: 0px;
    }
}

/* サブスクセクション */
.plan_photo_subscription {
    padding: 60px 0 80px;
    margin-top: 60px;
    position: relative;
}

.plan_photo_subscription::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background-color: #E6EFEE;
    border-radius: 3px; /* これで両端丸くなる！ */
}

.subscription-title_wrap {
    margin-bottom: 30px;
}

.subscription-title {
    font-size: 20px;
}

.subscription-note {
    text-align: right;
    font-size: 12px;
    margin-bottom: 40px;
}

.subscription-note p {
    text-align: left;
    display: inline-block;
}

@media screen and (max-width: 700px) {
    .subscription-note {
        font-size: 10px;
    }
}

/* その他サービスセクション */
.plan_others {
    margin-bottom: 110px;
}

.others_title::before {
    bottom: 0px;
}

.others-content_wrap {
    gap: 50px;
    margin-bottom: 40px;
}

.others-img {
    margin-bottom: 20px;
}

.others-menu {
    font-size: 18px;
    margin-bottom: 8px;
}

.others-note {
    text-align: right;
    display: block;
}

@media screen and (max-width: 700px) {
    .others-content_wrap {
        flex-direction: column;
        gap: 50px;
        margin-bottom: 40px;
    }

    .others-img {
        max-width: 450px;
    }

    .menu {
        font-size: 18px;
    }

}
/* planアウトロ */
.discount-comment {
    position: relative;
    border: 3px solid #B1CABD;
    border-radius: 20px;
    width: 100%;
    max-width: 650px;
    padding: 20px;
    margin: 0 auto;
    margin-bottom: 80px;
}

.discount-comment span {
    color: var(--pointpink);
    font-weight: 900;
    text-decoration: underline;
}

.service-hiromi {
    width: 68px;
    position: absolute;
    bottom: 0;
    right: 10px;
}

.contact-text {
    margin-bottom: 25px;
}

@media screen and (max-width: 599px) {
    .discount-comment {
        padding: 15px 80px 15px 15px;
        text-align: left;
    }

    .discount-comment .pc-only {
        display: none;
    }
}
/* Flowセクション */
#flow, #sample, #contact {
    background-color: var(--bg-color);
}

.flow-content {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 20px;
    display: grid;
    width: fit-content;
    margin: 0 auto;
    padding: 0 20px;
}

.flow-box_each {
    height: 300px;
    width: 250px;
    background-color: #fff;
    border-radius: 10px;
    padding: 25px 20px;
    position: relative;
}

.flow-box_upper {
    height: 45%;
}

.flow-box_each .fa-2xl {
    font-size: 5em;
    position: absolute;
    right: 10px;
    top: 55px;
    z-index: 0;
}

.flow-number {
    font-size: 150px;
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: bold;
    color: var(--green);
    position: absolute;
    top: -10px;
    left: 10px;
    z-index: 0;
}

.flow-number.color {
    color: #FBE7F1;
}

.flow-box_title {
    font-size: 20px;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.flow-text {
    padding: 10px 0;
}

@media screen and (max-width: 1129px) {
    .flow-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    }
}

@media screen and (max-width: 569px) {
    .flow-box_each {
        width: 85%;
        height: auto;
    }

    .flow-box_upper {
    height: 110px;
    }

    .flow-number {
        font-size: 130px;
    }

    .flow-box_title {
        padding-left: 5%;
    }

    .flow-text {
        padding: 20px 0 20px;
    }
}
/* 全幅画像 */
.full-bg {
    width: 100%;
    height: 470px;
    background-image: url(img/full_bg.webp);
    background-size: cover;
    background-position: center;
}
/* Aboutセクション */
.about-content {
    gap: 50px;
    width: 100%;
}

.about-img {
    max-width: 260px;
    width: 100%;
    border-radius: 10px;
}

.about-text_wrap {
    text-align: left;
}

.about-title {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.04em;
    line-height: 1.2;
    margin-bottom: 5px;
}

.about-text {
    letter-spacing: 0.05em;
}

.about-text:nth-child(1) {
    margin-bottom: 40px;
}

@media screen and (max-width: 810px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-img {
        max-width: 180px;
    }

    .about-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .full-bg {
        height: 30vh;
}
}
@media screen and (max-width: 420px) {
    .full-bg {
        height: 22vh;
}
}
/* Memberセクション */
#member {
    background-image: var(--ombre);
}

.member-content {
    gap: 30px;
    flex-wrap: wrap;
}

.member-card {
    background-color: #FFF;
    width: 250px;
    flex-direction: column;
    border-radius: 10px;
    padding: 24px;
    gap: 10px;
    align-items: center;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}

.img-wrap {
    width: 170px;
    height: 170px;
    margin: 0 auto;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-text-wrap {
    font-weight: 500;
}

.name {
    font-size: 20px;
    font-weight: bold;
    align-self: flex-start;
}

.position {
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.21;
    margin-bottom: 15px;
}

.portfolio-btn {
    background: var(--bg-color);
    display: inline-block;
    padding: 6px;
    border-radius: 5px;
}

.portfolio-btn:hover{
    background: var(--pointpink);
}

@media screen and (max-width: 890px) {
    .profile-btn {
        width: 450px;
        padding: 20px 20px;
        gap: 12px;
    }
}

/* 最後のCTAセクション */
#last-cta {
    padding: 100px 0 0 0;
}

.cta-text_wrap {
    font-size: 24px;
    margin-bottom: 25px;
}

.speaking {
    position: relative;
    display: inline-block;
}

.speaking::before {
    content: "＼";
    position: absolute;
    font-size: 48px;
    left: -55px;
    bottom: -5px;
}

.speaking::after {
    content: "／";
    position: absolute;
    font-size: 48px;
    bottom: -5px;
}

.millance-bottom-img {
    width: 100%;
    max-width: 280px;
}

/* コンタクトフォーム */
.contact-para {
    font-size: 14px;
    line-height: 1.5;
    margin: 40px 0 20px;
}

.wpcf7-form {
    text-align: left;
    max-width: calc(100% - 120px);
    width: 600px;
    margin: 20px auto;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5em;
    color: var(--font-color);
}

.required{
    color: var(--pointpink);
    font-size: 0.8em;
    margin-left: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75em;
    border: 1px solid #ccc;
    background: #FFF;
    border-radius: 6px;
    margin-bottom: 1em;
}

.contact-form input[type="submit"] {
    background-color: var(--navy);
    color: #fff;
    border: none;
    padding: 0.75em 2em;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
}

.contact-form input[type="submit"]:hover {
    background-color: var(--pointpink);
}

.cf-turnstile {
    transform: scale(0.7);
    text-align: center;
}

@media screen and (max-width: 890px) {
    #last-cta {
        padding: 80px 0 0 0;
    }
    
    .cta-text_wrap {
        font-size: 18px;
    }
    
    .speaking::before {
        font-size: 24px;
        left: -30px;
    }
    
    .speaking::after {
        font-size: 24px;
    }

    .wpcf7-form {
        max-width: calc(100% - 80px);
    }
}
/* フッター */

footer {
    background-color: var(--green);
    height: 150px;
    text-align: center;
    align-content: center;
}

.footer-inner {
    width: 100%;
}

.policy {
    display: block;
    text-decoration: underline;
    margin-bottom: 15px;
}

.copyright {
    display: inline;
}

/* プライバシーポリシー */
.policy-text {
    text-align: left;
    margin-top: 50px;
}

/* 子ぺーじ sample-page */
.sample-content {
    justify-content: center;
    flex-wrap: wrap;
    gap: 70px 50px;
}

.sample-box_each {
    width: 28%;
}

.sample-box_photo {
    position: relative;
}

.sample-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    margin-bottom: 20px;
    position: relative;
}

/* ホバー時の挙動 */
.sample-box_photo:hover .sample-img{
    filter: blur(3px);
    transition: 0.5s ease;
}

.hover-box {
    position: absolute;
    width: 90%;
    min-width: 220px;
    height: auto;
    padding: 5%;
    top: 50%;
    left: 50%;
    font-size: 12px;
    transform: translate(-50%, -50%);
    text-align: center;
    justify-content: center;
    align-items: center;
    background: #FFF;
    transition:  0.5s ease;
    opacity: 0;
    border-radius: 10px;
    border: 5px solid var(--pink);
}

.hover-box_title {
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 10px;
}

.hover-box .price {
    padding-bottom: 3px;
    border-bottom: 2px solid var(--font-color);
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.sample-box_photo:hover .hover-box {
    opacity: 1;
}

.price-details li{
    justify-content: space-between;
}
/* ホバー時の挙動ここまで⬆️ */

.sample-title {
    margin-bottom: 20px;
    font-size: 15px;
}

.tag-wrap {
    gap: 10px;
    margin-bottom: 20px;
}

.sample-tag {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 15px;
    background-color: #FFF;
}

.sample-tag.pink {
    background-color: var(--pink);
}
.sample-tag.green {
    background-color: var(--green);
}

.sample-btn {
    background-color: #fff;
    border: 2px solid var(--pink);
    color: var(--font-color);
    align-content: center;
    padding: 5px;
    border-radius: 15px;
    margin: 0 auto;
}

@media screen and (max-width: 890px) {
    .sample-content {
        justify-content: center;
        gap: 70px 50px;
    }

    .sample-box_each {
        width: 45%;
    }
}

@media screen and (max-width: 555px) {
    .sample-content {
        justify-content: center;
        gap: 70px 50px;
    }

    .sample-box_each {
        width: 80%;
    }

}