

:root
{
    --green:#26C49E;
    --white:#fff;
    --black:#000;
}

h2
{
    font-size: 35px;
}
.pc-none
{
    display: none;
}
.sp-none
{
    display: block;
}

/*--------------------------------------------------------------- ファーストビュー */
.first-view
{
    height: 380px;
    width: 100%;
    background: url("img/aga/fv-img.jpg")no-repeat;
    background-size:cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;
}
.first-view h1
{
    margin: 0;
}



/*--------------------------------------------------------------- お悩み */
.symptoms
{
    background: url(img/aga/dot-bg_01.png);
    background-repeat: repeat;
    padding: 50px 0 0;
}
.symptoms .symptoms-inner
{
    width: 1200px;
    max-width: 100%;
    margin: 0px auto;
    padding: 50px 0 60px 0;
    background: var(--white);
    border-radius: 20px;
    position: relative;
}
.symptoms .symptoms-inner:before
{
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid var(--white);
}
    .symptoms ul
    {
        padding-left: 0;
    }
.symptoms-title
{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 50px;
    padding-bottom: 5px;
    width: auto;
    display: inline-block;

    background-image: radial-gradient(circle, #000000 1px, transparent 1px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 6px 2px;
}
.symptoms-title_wrapper
{
    text-align: center;
}
.symptoms-title span
{
    color: var(--green);
}
.symptoms ul
{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    list-style: none;
    width: 90%;
    margin: 0 auto;
    gap:  20px 10px;
}
.symptoms ul li
{
    position: relative;
    padding-left: 1.2em;
    font-weight: bold;
}
.symptoms ul li::before 
{
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.5em;
  height: 0.5em;
  background-color: var(--green); /* 好きな緑に */
  border-radius: 50%; /* 丸くする */
}

.symptoms-image
{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}
.symptoms img
{
    width: 100%;
    height: 200px;
    object-fit: contain;
}




/*--------------------------------------------------------------- 最先端AGA・FAGA鍼治療  */
section.treatment-details
{
    margin-top: 80px;
}

section.treatment-details .heading
{
    text-align: center;
}
section.treatment-details h2 
{
    display: flex;
    flex-direction: column;
    align-items: center;
}
section.treatment-details h2 span.heading_01
{
    color: var(--green);
    font-size: 24px;
}
section.treatment-details h2 span.heading_02
{
    position: relative;
    display: inline-block;
}
section.treatment-details h2 span.heading_02:before, 
section.treatment-details h2 span.heading_02:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: black;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
section.treatment-details h2 span.heading_02:before {
  left:-10%;
-webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
section.treatment-details h2 span.heading_02:after {
  right: -10%;
}



ul.treatment-details_box
{
    margin: 70px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.treatment-details_box li
{
  display: flex;
  /* gap: 60px; */
  width: 100%;
  min-height: 350px;
}
.treatment-details_box li:nth-child(2n)
{
    flex-direction: row-reverse;
}

/* 左右のカラム共通 */
.text-content,
.details-image {
  flex: 1;
}

/* テキスト側 */
.text-content {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  justify-content: flex-start;
  padding: 40px 40px 40px 80px;
  box-sizing: border-box;
}
.treatment-details_box li:nth-child(2n) .text-content
{
    padding: 40px 80px 40px 40px;
    justify-content: flex-end;
}


.text-block {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.point {
  color: var(--green);
  font-weight: bold;
  letter-spacing: 1px;
  display: block;
  /* margin-bottom: 10px; */
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.point span
{
 font-size: 50px;   
 line-height: 1;
}
.text-content h3
{
    font-size: 28px;
    margin: 30px 0 24px 0;
}
.text-content p
{
    margin: 0;
    padding: 0;
    line-height: 30px;
    text-align: justify;
}

/* 画像側 */
.details-image {
  background: #FFF5E7;
  box-sizing: border-box;
  padding: 35px;
  border-radius: 0 30px 30px 0;

  display: flex;
  justify-content: flex-end;
    align-items: center;
}
.treatment-details_box li:nth-child(2n) .details-image
{
    justify-content: flex-start;
    border-radius: 30px 0px 0 30px;
}
.details-image img
{
    width: auto;
    height: 270px;
    object-fit: contain;
}

.treatment-details_box li:nth-child(2) .details-image img
{
    padding-left: 40px;
}
.treatment-details_box li:nth-child(4) .details-image img
{
    padding-left: 80px;
}



/*--------------------------------------------------------------- 最先端AGA・FAGA鍼治療  */

section.approach
{
    background: #FFF5E7;
    padding: 30px 0 0;
}
section.approach .heading
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
section.approach .heading img
{
    height: 105px;
    width: auto;
}
section.approach .heading h2
{
    color:#3D312D
}


.approach-inner
{
    background: #FFE8D6;
    position: relative;
    padding-bottom: 80px;
}
.approach-inner::before
{
    content: "";
    background: url("img/aga/wave.png");
    background-repeat: repeat-x;
    width: 100%;
    height: 30px;
    background-size: contain;
    position: absolute;
    left: 0;
    top: -30px;
}
.approach-width
{
    width: 1140px;
    max-width: 100%;
    margin: 0 auto;
}

.approach-content
{
   padding-top: 50px;
   display: grid;
   grid-template-columns: repeat(2,1fr);
   margin-top: 35px;
   gap: 50px;
}
.approach-content p
{
    font-size: 18px;
    line-height: 34px;
    color: #3D312D;
    font-weight: bold;
    text-align: justify;
}
.approach-content img
{
    width: 100%;
}


.effects
{
    background: var(--white);
    border-radius: 20px;
    padding: 40px 0 60px 0;
    margin-top: 50px;
}
.effects > div
{
    width: 90%;
    margin: 0 auto;
}
.effects h3
{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    color: #3D312D;
}
.effects h3 span
{
    font-size: 30px;
}
.effects ul
{
    display: flex;
    gap: 30px;
    list-style: none;
    padding-left: 0;
}
.effects ul li
{
    position: relative;
}
.effects ul li img
{
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
}
.effects ul li:first-child img
{
    border: 5px solid #a3a3a3;
}
.effects ul li:nth-child(2) img
{
    border: 5px solid var(--green);
}
.effects .faga ul li:nth-child(2) img
{
    border: 5px solid #FB980D;
}
.effects ul li div
{
    background: #a3a3a3;
    padding: 10px 35px;
    color: var(--white);
    border-radius: 8px;
    font-size: 20px;
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
}
.effects ul li:nth-child(2) div
{
    background: var(--green);
}
.effects .faga ul li:nth-child(2) div
{
    background: #FB980D;
}
.effects .faga
{
    margin-top: 50px;
}


/*--------------------------------------------------------------- 当院のAGA治療が選ばれる理由  */


section.reasons-to-choose
{
    background: url("img/aga/dot-bg_01.png");
    padding: 70px 0 100px 0;
}
section.reasons-to-choose .heading
{
    text-align: center;
    margin-bottom: 50px;
}
section.reasons-to-choose h2
{
    text-align: center;
    color: var(--white);
    display: inline-block;

    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 6px 2px;

}
section.reasons-to-choose ul
{
    width: 1050px;
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px 50px ;
    list-style: none;
    padding-left: 0;
}
section.reasons-to-choose ul li
{
    background: var(--white);
    border-radius: 20px;
    padding: 50px 0;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
section.reasons-to-choose ul li h3
{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 22px;
    color: var(--green);
}
section.reasons-to-choose ul li h3 span
{
    font-size: 60px;
    line-height: 1;
    padding-bottom: 10px;
}
section.reasons-to-choose ul li p
{
    text-align: center;
    line-height: 30px;
    font-weight: bold;
}


/*--------------------------------------------------------------- 治療の流れ  */


section.flow
{
    padding: 70px 0;
}
section.flow h2
{
    text-align: center;
    margin-bottom: 40px;
    margin-top: 0;
}
section.flow ul
{
    width: 1050px;
    max-width: 100%;
    margin: 0 auto;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding-left: 0;
}
section.flow ul::before
{
    content: "";
    width: 3px;
    height: 100%;
    background: var(--green);
    position: absolute;
    left: 5%;
    top: 0;
    z-index: -1;
}
section.flow ul li
{
    display: grid;
    grid-template-columns: auto 1fr;
    /* align-items: center; */
    align-items: stretch;
}
section.flow ul li .step
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: var(--green);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 10px 0 0 10px;
    font-size: 13px;
    line-height: 1;
    font-weight: bold;
    box-sizing: border-box;
}
section.flow ul li .step span
{
    font-size: 30px;
    letter-spacing: 2px;
}
section.flow ul li .flow-detail
{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
     box-sizing: border-box;
     background: #EFF8F6;
     width: 100%;
     border-radius: 0 10px 10px 0;
}
section.flow ul li .flow-detail img
{
    width: auto;
    height: 73px;
    display: block;
}
section.flow ul li .flow-detail h3
{
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 0;
}
section.flow ul li .flow-detail p
{
    margin: 0;
}


/*--------------------------------------------------------------- 発毛鍼治療の価格  */

section.price
{
    background: url('img/bg-otoiawase.png');
    box-sizing: border-box;
    margin: 2em 0 0 0;
    padding: 70px 0;
}
section.price dl
{
    box-sizing: border-box;
    font-weight: bold;
    list-style: none;
    margin: 0 auto;
    max-width: 1140px;
    padding: 0;
    text-align: center;
}
section.price dt
{
    background: #25c49f;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-sizing: border-box;
    color: #fff;
    font-size: 30px;
    margin: 0;
    padding: 20px;
}
section.price dd
{
    align-items: center;
    background: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-sizing: border-box;
    color: #000;
    display: flex;
    flex-direction: column;
    margin: 0;
    /* padding: 20px; */
    padding-top: 30px;
}
section.price dd .price-intro
{
    display: flex;
    align-items: center;
    gap: 25px;
}
section.price dd .price-intro .label
{
    background: var(--green);
    color: var(--white);
    font-size: 26px;
    text-align: justify;
    padding: 12px 50px 12px 30px;
    line-height: 1.3;
    position: relative;
    letter-spacing: 2px;
      clip-path: polygon(
    0 0,
    80% 0,
    100% 50%,
    80% 100%,
    0 100%
  );
  margin: 0;
}
section.price dd .price-intro .label span
{
    letter-spacing: -4px;
}
section.price dd .price-intro .price
{
    font-size: 37px;
    margin: 0;
}
section.price dd .price-intro .price .big
{
    font-size: 90px;
    color: var(--green);
}
section.price dd .price-intro .price .small
{
    font-size: 25px;
    /* position: relative;
    left: -10px; */
}

section.price dd .normal-price
{
    font-size: 20px;
    background: #EBF5F3;
    border-radius: 50px;
    width: 100%;
    padding: 5px 0;
}
section.price dd .note
{
    font-size: 16px;
    font-weight: 400;
    margin: 25px 0 35px 0;
}
section.price dd .comment
{
    font-size: 16px;
    /* width: 50%; */
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(2,1fr);
    padding: 30px 0;
    width: 80%;
}
section.price dd hr
{
    width: 100%;
    height: 5px;
    background-image: radial-gradient(circle, #000000 1px, transparent 1px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 6px 2px;
    display: inline-block;
    border: none;
      /* border-top: 3px double #333333; */
}
section.price dd .comment div
{
    display: inline-block;
    text-align: left;
    line-height: 1.9;
}
section.price dd .tel
{
    font-size: 35px;
    text-align: center;
    /* width: 50%; */
}


/*--------------------------------------------------------------- バナー  */
.banner
{
    margin: 4em 0 0 0;
    text-align: center;
}
.banner img
{
    max-width: 75%;
    width: 680px;
}








/* レスポンシブ */

@media screen and (max-width:1200px)
{
    .symptoms .symptoms-inner,
    .approach-content,
    .effects,
    section.reasons-to-choose ul,
    section.flow ul,
    section.price dl
    {
        width: 90%;
    }
}


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

        .pc-none
    {
        display: block;
    }
    .sp-none
    {
        display: none;
    }
    h2
    {
        font-size: 26px;
        text-align: center;
    }


    .first-view
    {
        height: 200px;
    }
    .symptoms .symptoms-inner
    {
        padding: 20px 0 30px 0;
    }
    .symptoms-title
    {
        font-size: 24px;
        text-align: center;
        padding-bottom: 10px;
        margin-bottom: 20px;
        line-height: 32px;
    }
    .symptoms ul
    {
        grid-template-columns:1fr;
        gap:15px
    }
    .symptoms ul li
    {
        font-weight: 400;
    }
    .symptoms-image
    {
        margin-top: 50px;
    }
    .symptoms-image img
    {
        height: auto;
        width: 90%;
    }


    section.treatment-details
    {
        margin-top: 40px;
    }
    section.treatment-details h2
    {
        width: 90%;
        margin: 0 auto;
    }
    section.treatment-details h2 span.heading_01
    {
        font-size: 18px;
    }
    section.treatment-details h2 span.heading_02
    {
        font-size: 24px;
    }
    section.treatment-details h2 span.heading_02:before, 
    section.treatment-details h2 span.heading_02:after
    {
        width: 30px;
    }
    ul.treatment-details_box
    {
        margin: 30px 0 40px 0;
        gap: 40px;
    }
    .treatment-details_box li,
    .treatment-details_box li:nth-child(2n)
    {
        flex-direction: column;
    }
    .details-image,
    .treatment-details_box li:nth-child(2n) .details-image
    {
        border-radius: 10px;
        width: 90%;
        margin: 0 auto;
        padding: 20px;
    }
    .details-image img
    {
        width: 100%;
        height: 150px;
    }
    .treatment-details_box li:nth-child(2) .details-image img,
    .treatment-details_box li:nth-child(4) .details-image img
    {
        padding-left: 0;
    }
    .text-content,
    .treatment-details_box li:nth-child(2n) .text-content
    {
        padding: 0;
        width: 90%;
        margin: 0 auto;
        margin-top: 20px;
    }
    .text-content h3
    {
        font-size: 22px;
        margin: 0;
         grid-column: 2 / 3;
        grid-row: 1 / 2;
        line-height: 1.3;
    }
    .text-content p
    {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }
    .point
    {
        font-size: 12px;
         grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    .point span
    {
        font-size: 40px;
    }
    .text-block
    {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 10px 15px;
        align-items: end;
    }



    section.approach .heading img
    {
        height: 80px;
    }
    section.approach .heading
    {
        width: 90%;
        margin: 0 auto;
    }
    .approach-inner::before
    {
        background-size: cover;
        height: 20px;
        top: -20px;
    }
    .approach-content
    {
        grid-template-columns: 1fr;
        margin-top: 25px;
        padding-top: 20px;
        gap: 10px;
    }
    .approach-content p
    {
        font-size: 16px;
        line-height: 30px;
    }
    .effects
    {
        margin-top: 30px;
        padding: 20px 0 50px 0;
    }
    .effects h3
    {
        font-size: 18px;
        margin-top: 10px;
    }
    .effects h3 span
    {
        font-size: 24px;
    }
    .effects ul
    {
        flex-direction: column;
        width: 95%;
        margin:  0 auto;
    }
    .effects ul li div
    {
        font-size: 18px;
        padding: 5px 20px;
    }
    .effects ul li:first-child img
    {
        border: 4px solid #a3a3a3;
    }
    .effects ul li:nth-child(2) img 
    {
        border: 4px solid var(--green);
    }
    .effects .faga
    {
        margin-top: 30px;
    }
    .approach-inner
    {
        padding-bottom: 40px;
    }





    section.reasons-to-choose
    {
        padding: 40px 0 70px 0;
    }
    section.reasons-to-choose .heading
    {
        margin-bottom: 30px;
    }
    section.reasons-to-choose h2
    {
        padding-bottom: 10px;
        margin-top: 0;
        margin-bottom: 0;
    }
    section.reasons-to-choose ul
    {
        grid-template-columns:1fr;
        gap: 20px;
    }
    section.reasons-to-choose ul li
    {
        padding: 20px;
    }
    section.reasons-to-choose ul li p
    {
        margin-top: 0;
        font-size: 16px;
        line-height: 28px;
    }
    section.reasons-to-choose ul li h3 span
    {
        font-size: 55px;
    }
    section.reasons-to-choose ul li h3
    {
        font-size: 20px;
    }



    section.flow
    {
        padding: 50px 0;
    }
    section.flow h2
    {
        margin-bottom: 30px;
    }
    section.flow ul li .flow-detail
    {
        flex-direction: column;
        padding: 20px;
    }
    section.flow ul::before
    {
        left: 10%;
    }
    section.flow ul li .flow-detail img
    {
        height: 60px;
    }
    section.flow ul li .step
    {
        padding: 15px;
    }
    section.flow ul li .flow-detail h3
    {
        text-align: center;
    }


    section.price
    {
        margin-top: 0;
        padding: 50px 0;
    }
    section.price dt
    {
        font-size: 24px;
        padding: 15px;
    }
    section.price dd .price-intro
    {
        flex-direction: column;
        gap: 7px;
    }
    section.price dd .price-intro .label
    {
        clip-path: polygon(
                        0 0,
                        90% 0,
                        100% 50%,
                        90% 100%,
                        0 100%
                    );
    }
    section.price dd .price-intro .price
    {
        font-size: 24px;
        /* display: flex;
        align-items: center;
        justify-content: center; */
    }
    section.price dd .price-intro .price .big
    {
        font-size: 45px;
    }
    section.price dd .price-intro .price .small
    {
        font-size: 16px;
    }
    section.price dd .price-intro .label
    {
        font-size: 18px;
        padding: 6px 50px 6px 30px;
        box-sizing: border-box;
        width: 90%;
        text-align: center;
    }
    section.price dd .price-intro .label span
    {
        letter-spacing: 0;
    }
    section.price dd .normal-price
    {
        font-size: 16px;
        width: 90%;
        margin: 15px auto;
    }
    section.price dd .note
    {
        width: 90%;
        margin: 15px auto;
        font-size: 14px;
    }
    section.price dd .comment
    {
        grid-template-columns: 1fr;
        padding: 15px 0 20px 0;
        gap: 15px;
        width: 85%;
    }
    section.price dd .comment div
    {
        line-height: 1.5;

    }
    section.price dd .comment div.comment-text
    {
        font-size: 14px;
    }
    section.price dd .comment div.tel
    {
        font-size: 26px;
    }

    .banner img {
        max-width: 100%;
        width: 100%;
    }
        .banner a {
        display: block;
        margin: 1em 0 0 0;
    }
        .banner {
        margin: 2em auto;
        width: 90vw;
    }
}