@charset "UTF-8";

/* スムーズスクロール */
html { 
    scroll-behavior: smooth;
    scroll-padding-top: 56px;
  }
  @media (min-width: 769px) {
    html {
      scroll-padding-top: 80px;
    }
  }

.detail_lead{
    text-align: center;
}

.detail_lead__text01{
    font-size: 18px;
    line-height: 1.5;
}

.detail_lead__text02{
    font-size: 16px;
}

.detail_lead__text03{
    font-size: 14px;
    font-weight: normal;
}

/*-------------------
 dbook dcard
---------------------*/
.detail_otoku a{
    text-decoration: underline;
}

.detail_otoku {
    width: 100%;
    max-width: 992px;
    margin: 0 auto clamp(24px, 6.4vw, 40px);
    padding: 0 16px;
    text-align: center;
  }

.detail_otoku__frame{
    background: #92ebc0;
    border-radius: 16px;
    padding: clamp(24px, 6.4vw, 40px) 16px;
  }

.detail_otoku__inner{
    max-width: 640px;
    margin: 0 auto;
}

.detail_otoku__subtitle{
    margin-top: 20px;
}

.detail_otoku__box {
    background: #fff;
    padding: 4%;
    margin-top: 10px;
    border-radius: 15px;
    margin-left: auto;
    margin-right: auto;
}

.detail_otoku__box + .detail_otoku__subtitle{
    margin-top: 30px;
}

.detail-mt10{
    margin-top: 10px;
}
.detail-mt20{
    margin-top: 20px;
}

/* ------------------------------
 バナーエリア
-----------------------------------*/
.detail_bnr{
    width: 100%;
    /* max-width: 992px; */
    max-width: 800px;
    margin: 0 auto clamp(24px, 6.4vw, 40px);
    text-align: center;
}

.detail_bnr__frame{
    padding: 0 16px clamp(24px, 6.4vw, 40px);
}

.detail_bnr__link{
    opacity: 1;
    transition: 0.3s;
}

.detail_bnr__link:hover{
    opacity: 0.7;
}


/* ------------------------------
 テキスト横　＼／
-----------------------------------*/
.text__deco-slash {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0.7em;
    margin-bottom: min(2%, 8px);
    line-height: 1.3;
    font-size: clamp(16px, 3vw , 19px);
    font-weight: 700;
    text-align: center;
  }
  
  .text__deco-slash::before {
    content: "";
    height: 2em;
    width: 2px;
    background: #418deb;
    vertical-align: bottom;
    transform: rotate(-30deg);
  }
  
  .text__deco-slash::after {
    content: "";
    height: 2em;
    width: 2px;
    background: #418deb;
    vertical-align: bottom;
    transform: rotate(30deg);
  }