@charset "UTF-8";

/*-------------------------------------------
 lp-unique.css 上書き
-------------------------------------------*/

/* scroll */
html { 
    scroll-behavior: smooth;
   /*scroll-padding-top: 132px;*/
   scroll-padding-top: 0px;
  }

  @media (min-width: 769px) {
    html {
      /*scroll-padding-top: 148px;*/
      scroll-padding-top: 0px;
    }
}


#point,
#character,
#information,
#coupon{
    padding-top: 132px;
    margin-top: -132px;
    height: 1px;
}

@media (min-width: 769px) {
    #point,
    #character,
    #information,
    #coupon {
            padding-top: 148px;
            margin-top: -148px;
        }
}

.bw_contentsArea{
    margin: 0 !important;
}

.cp-main{
    margin-top: 0;
}

.cp-main .cont-padding{
    padding: var(--gap-base) var(--gap-base) var(--gap-base--wide) var(--gap-base);
}


@media (min-width: 600px) {
    .cp-main .cont-padding{
        padding: var(--gap-base--wide);
    }
}

.bw-footer{
    position: relative;
    z-index: 5;
}

/*-------------------------------------------
 基本設定
-------------------------------------------*/

.cp-body {
    --col-c-blue: #0F4D75;
    --col-c-red: #A8411E;
    --col-c-yellow: #FFFD5E;
	--gap-base--wide: min(8%, 56px);

    /* コンテンツの余白　基本 */
    --gap-base: min(4%, 56px);
    /* コンテンツの余白 スマホで上下の余白を設定する様 */
    --gap-base--wide: min(8%, 56px);


	/* コンテンツ最大幅 */
    --maxwidth: 768px;
    
    color: var(--col-book-black);
}

.cp-body a{
    opacity: 1;
    transition: var(--hover-transition);
}

@media (min-width: 769px) {
.cp-body a:hover{
    opacity: .7;
}
}

.cp-main a.btn-shadow:hover{
    opacity: 1;
}

.cp-body h1{
    margin-bottom: 0;
}

.cp-main .disp-inlineblock{
    display: inline-block;;
}

.cp-main .text--deco-slash::before, .cp-main .text--deco-slash::after {
    height: 2.3em;
    
}

.cp-main .only-500{
    display: block;
}

@media (min-width: 650px) {
    .cp-main .only-500{
        display: none;
    }
}

/*-------------------------------------------
 bw_content上
-------------------------------------------*/
.cp-isolation--maxwidth{
    width: 100%;
    max-width: var(--maxwidth);
	margin-left: auto;
	margin-right: auto;
}

.cp-isolation--maxwidth-lr-padding{
    display: block;
    width: 100%;
    padding-left: var(--gap-base);
    padding-right: var(--gap-base);
    max-width: var(--maxwidth);
    margin-left: auto;
    margin-right: auto;
}

.cp-isolation img{
    width: 100%;
    height: auto;
}

@media (min-width: 769px) {
    .cp-isolation--maxwidth-lr-padding{
        padding-left: 0;
        padding-right: 0;
    }
}

/*-------------------------------------------
 nav
-------------------------------------------*/

.cp-sub-nav__link{
    display: block;
    padding: 10px 6px;
    text-align: center;
    background-image: url(../img/nav_right.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: auto 130%;
}

.cp-sub-nav__link--none{
    background-image: none;
}

.cp-sub-nav__item{
    padding-bottom: 12px;
    background-image:  url(../img/nav_under.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: auto 12px;
}

.cp-sub-nav__item img{
    width: 100%;
    height: auto;
}

@media (min-width: 375px) {
    .cp-sub-nav__item img{
        width: min(100% , 74px);
    }
}

@media (min-width: 700px) {
.cp-sub-nav__item img{
    width: 140px;
}
}


@media (min-width: 769px) {
    .cp-sub-nav__item img{
    width: 172px;
    }

    .cp-sub-nav__item{
        padding-bottom: 18px;
        background-size: auto 18px;
    }

    .cp-sub-nav__link{
        background-size: auto 200%;
    }
}

/*
.cp-sub-nav__item{
    border-right: 1px dashed var(--col-book-black);
}

.cp-sub-nav__item:last-child{
    border-right: none;
}
*/


.cp-main .text-uline{
	background: linear-gradient(transparent 60%, var(--col-c-yellow) 50%);
}


/*-------------------------------------------
 コンテンツ背景
-------------------------------------------*/
body::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url(../img/bg.png) no-repeat center top #EAFEF7;
    background-size: cover;
}


/*-------------------------------------------
 suv nav
-------------------------------------------*/
.cp-sub-nav{
    position: sticky;
    top: 48px;
    left: 0;
    z-index: 2;
}
.cp-sub-nav__list {
    display: grid;
    grid-auto-flow: column;
    background: #FFF;
    border-top: 2px solid var(--col-book-black);
    border-left: 2px solid var(--col-book-black);
    border-right: 2px solid var(--col-book-black);
    margin-top: var(--gap-base);
    margin-right: var(--gap-base);
    margin-left: var(--gap-base);
}

@media only screen and (min-width: 769px)  {
    .cp-sub-nav__list {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    }

    .cp-sub-nav{
        top: 60px;
      }
}



/*-------------------------------------------
 lower 大枠
-------------------------------------------*/
.cp-main .cp-main__lower{

}

.cp-main .cp-main__lower-inner{
    padding-top: 10px;
    background: #FFF;
    border-bottom: 2px solid var(--col-book-black);
    border-left: 2px solid var(--col-book-black);
    border-right: 2px solid var(--col-book-black);
    margin-bottom: var(--gap-base);
    margin-right: var(--gap-base);
    margin-left: var(--gap-base);
}

.cp-main .cp-block__inner {
    border: 2px solid #FFFFFF;

}

@media only screen and (min-width: 769px) {
    .cp-main .cp-block__inner {
        border-width: 3px;
    }

    .cp-main .cp-main__lower-inner{
        margin-right: auto;
        margin-left: auto;
    }
    
}

/*-------------------------------------------
 セクションタイトル
-------------------------------------------*/
.cp-main .chap-title-box{
    position: relative;
    background-color: var(--col-book-green);
    background-image: url(../img/tit_bg_point.png);
    background-position: center center;
    background-repeat: repeat-x;
    background-size: auto 12px;
    z-index: 1;
}

.cp-main .chap-title-box::before{
    display: block;
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin-left: -7px;
    background-color: var(--col-book-green);
    width: 14px;
    height: 14px;
    border-radius: 2px;
    transform: rotate(45deg);
}

.cp-main .chap-title-box::after{
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: -3px;
    left: 0;
    border-top: 1px solid var(--col-book-black);
    border-bottom: 1px solid var(--col-book-black);
}

.cp-main .chap-title-box__inner{
    position: relative;
    padding: 6px 6px 8px 6px;
}


.cp-main .chap-title__title {
    position: relative;
    background-color: #FFF;
    border-radius: 100px;
    width: min(70% ,285px);
    padding-left: min(10%, 30px);
    padding-right: min(10%, 30px);
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
}

.cp-main .chap-title__title::before{
    display: block;
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin-left: -7px;
    background-color: #FFF;
    width: 14px;
    height: 14px;
    border-radius: 2px;
    transform: rotate(45deg);
}

.cp-main .chap-title-box__img{
    max-width: 210px;
}


/*-------------------------------------------
 キャラクター
-------------------------------------------*/
.cp-main .chara-block__title{
    background-image: url(../img/tit_bg_chara.png);
}

.cp-main .chara-block__inner{
    background-image: url(../img/bg_zarazara_light.png);
}

.cp-main .chara-list__item{
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px dashed #D9D9D9

}

.cp-main .chara-list__item:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;

}

.cp-main .chara-list__item-inner01{
    display: grid;
    grid-auto-flow: column;
    place-items: center;
    grid-template-columns: 30% 1fr ;
    gap: 16px;
}

.cp-main .chara-list__item-inner02{
    display: grid;
    grid-auto-flow: column;
    place-items: center;
    grid-template-columns: 1fr 30%;
    gap: 16px;
}

.cp-main .chara-list__name{
    font-size: clamp( 18px, 3.2vw , 24px);
    display: inline;
}

.cp-main .chara-list__name__age{
    font-size: clamp(14px, 3vw , 16px);
}
.cp-main .chara-list__text{
    margin-top: 6px;
    line-height: 1.5;
    font-size: clamp( 12px, 3.2vw , 16px);
}

/*-------------------------------------------
 作品情報
-------------------------------------------*/
.cp-main .intro-block__title{
    background-image: url(../img/tit_bg_intro.png);
}

.cp-main .intro-block__inner{
    background-image: url(../img/bg_zara.png) ,url(../img/bg_koma.png);
    background-size: 40% auto ,100% auto;
    background-repeat: repeat, repeat-y;
}

.cp-main .story-area{
   border: 2px solid var(--col-book-black);
   border-radius: 8px;
   background: #FFFFFF;
   padding: min(4% ,32px);
   box-shadow: 4px 4px 0px 0px rgba(34, 34, 34, 0.25);
   margin-bottom: 2em;
}


.cp-main .story-area__title{
    background-color: var(--col-book-green);
    padding: 8px;
    font-size: clamp(14px ,3vw ,18px);
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
}

.cp-main .story-area__author{
    font-size: clamp(14px ,3vw ,18px);
    margin-top: .8em;
    margin-bottom: .5em;
}

.cp-main .story-area__text{
    line-height: 1.6;
    font-size: clamp(12px ,3vw ,18px);
}

/*-------------------------------------------
 クーポン
-------------------------------------------*/
.cp-main .coupon-block{
    padding-top: 0;
}

.cp-main .coupono-block__title{
    background-image: url(../img/tit_bg_coupon.png);
}

.cp-main .coupon-block__inner {
    border-radius: 16px;
    margin: auto;
    max-width: calc(600px + var(--gap-base--wide));
  }

.cp-main .coupon-block__frame {
    max-width: 640px;
    margin: 0 auto;
  }
  
  .cp-main .coupon-block__period-text {
    text-align: center;
    font-size: clamp(14px, 4.375vw, 16px);
    font-weight: 600;
    color: #000;
    line-height: 1.7;
  }
  
  .cp-main .coupon-block__period-text > span {
    display: inline-block;
  }
  
  .cp-main .coupon-block__annotation {
    font-size: 12px;
    font-weight: 400;
    color: #000;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
  }
  
  .cp-main .cp-btn--large {
    margin-bottom: 20px;
  }
  
  
  /* ----------------------------------
   クーポンの使い方
  -----------------------------------*/
  .cp-main .coupon-how__title{
      font-size: 18px;
      font-weight: bold;
      color: #886000;
      text-align: center;
      margin-bottom: .3em;
  }
  
  .cp-main .coupon-how__lead{
      color: var(--col-d-red);
      font-weight: bold;
  }
  
  .cp-main .coupon-how__sub-title{
      margin: 1.3em 0 .5em;
      font-weight: bold;
      color: #555;
      text-align: center;
  }
  
  .cp-main .coupon-how__img{
      margin-bottom: 2em;
  }
  
  .cp-main .list-coupon-note{
      font-size: 12px;
  }
  
  
  .cp-main .coupon-how__title + .cp-main .list-coupon-note{
      margin-top: 0 !important;
  }
  
  .cp-main .detail-entry-coupon__sub-title{
      margin: 1.3em 0 .5em;
      font-weight: bold;
      color: #555;
      text-align: center;
  }
    
  @media only screen and (min-width: 789px)  {
      .cp-main .coupon-how__title {
        font-size: 16px;
    }
    
  }

/*-------------------------------------------
アコーディオン
-------------------------------------------*/
/* 背景 */
.cp-main .accordion-area{
    background-color: #fff;
}

.cp-main .accordion-area__title{
    font-size: 16px;
    font-weight: bold;
    background: #D9D9D9;
    color: var(--col-book-black);
    padding: .5em;
    text-align: center;
    position: relative;
    opacity: 1;
    transition: all .3s;
}

.cp-main .accordion-area__title:hover{
    cursor: pointer;
}

.cp-main .accordion-area__icon {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translatey(-50%);
    width: 30px;
    height: 30px;
}

.cp-main .accordion-area__icon__parts {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.cp-main .accordion-area__icon__parts::before,
.cp-main .accordion-area__icon__parts::after {
    position: absolute;
    content: "";
    display: block;
    transition: all 0.3s;
    background: var(--col-book-black);
    left: 50%;
    top: 50%;
    width: 50%;
    height: 2px;
    transform: translate(-50%, -50%);
}

/* plus */
.cp-main .accordion-area__icon__parts::before {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* minus */
.cp-main .acc-title.is-open .accordion-area__icon__parts::before {
    transform: translate(-50%, -50%) rotate(0deg);
}

.cp-main .accordion-area__main{
    padding: min(4% , 32px);
    border: 1px solid #D9D9D9;
    text-align: left;
    font-size: 14px;
    display: none;
    line-height: 1.5;
}


/*-------------------------------------------
 手動棚　共通設定
-------------------------------------------*/
.cp-main .cp-shelf{
	display: grid;
	grid-template-columns: repeat(auto-fit, 30.6666666667%);
	gap: 24px 4%;
    justify-content: center;
}

.cp-main .cp-shelf__item{
	display: flex;
    flex-direction: column;
}


.cp-main .cp-shelf__label--hidden{
    visibility: hidden;
}

.cp-main a.cp-shelf__link{
	text-decoration: none;
    color: var(--col-book-black);
}


.cp-main .cp-shelf__img-box{
	display: block;
	padding-top: min(130%, 250px);
	position: relative;
}

.cp-main .cp-shelf__img-box-inner{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* タイトルがない場合のマージン */
.cp-main .cp-shelf__link + .cp-shelf__btns{
	margin-top: 6px;
}

.cp-main .cp-shelf__img{
	display: block;
    margin: 0 auto;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 0;
}

.cp-main .cp-shelf__title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.5em;
    margin-bottom: 8px;
    min-height: 36px;
}

.cp-main .cp-shelf__btns{
	display: grid;
	gap: 6px;
}


.cp-main .cp-shelf__btn{
	display: flex;
	justify-content: center;
	align-items: center;
    padding: 12px 1px;
	line-height: 1;
	font-size: clamp(10px, 2.6vw, 14px);
    opacity: 1;
    border-radius: 8px;
    min-height: 40px;
}

.cp-main a.cp-shelf__btn--trial{
	line-height: 1;
	text-align: center;
	border: 1px solid var(--col-book-green--dark);
	color: var(--col-book-green--dark);
    background-color: #FFFFFF;
	text-decoration: none;
    font-weight: bold;
}

.cp-main a.cp-shelf__btn--buy{
	line-height: 1;
	text-align: center;
	border: 1px solid var(--col-book-green--dark);
	background: var(--col-book-green--dark);
	color: #FFF;
	text-decoration: none;
    font-weight: bold;
}

/* ボタンがない時にはこのclassを追加 */
.cp-main a.cp-shelf__btn--hidden{
	visibility: hidden;
}

@media screen and (min-width:600px) {
    .cp-main .cp-shelf__title{
        -webkit-line-clamp: 1;
        min-height: 18px;
    }
}

@media screen and (min-width:670px) {
	.cp-main .shelf-small{
		grid-template-columns: repeat(auto-fit, 22.75%);
	    gap: 24px 3%;
	}

    .cp-main a.cp-shelf__btn--trial{
        border: 2px solid var(--col-book-green--dark);
    }
}


/*-------------------------------------------
 おすすめ
-------------------------------------------*/

.cp-main .reccomend-block__title{
    background: var(--col-book-green);
    color: #FFFFFF;
    text-align: center;
    font-size: clamp(14px, 3.2vw , 20px);
    padding: .5em;
}


/*-------------------------------------------
 バナーエリア
-------------------------------------------*/

.cp-main .bnr-area{
    margin-top: min(10% ,40px);
}

.cp-main .bnr-area__title{
    margin-bottom: .7em;
    font-size: clamp(12px ,2.8vw,18px);
}

.cp-main .bnr-large{
    display: grid;
    gap: min(4vw , 16px);
}

.cp-main .bnr-small{
    display: grid;
    gap: min(4vw , 4%);
    grid-template-columns: repeat(auto-fit, 42%);
    justify-content: center;
}

.cp-main .bnr-small__item{
	text-align: center;
}


/*-------------------------------------------
 バナーエリア
-------------------------------------------*/
.cp-main .cp-copyright{
    margin: 2em;
    text-align: center;
    font-size: clamp(10px ,2.8vw ,12px);
}


@keyframes swing {
    0% {
        transform: scaleX(1)
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        transform: scaleX(1)
    }
}


/*-------------------------------------------
 hover animation
-------------------------------------------*/
@media (min-width: 769px) {
    a.cp-sub-nav__link:hover {
        opacity: 1;
    }
    a.cp-sub-nav__link:hover img {
      animation: transform-y .2s ease-in-out infinite alternate-reverse;
    }
    @keyframes transform-y {
      0% {
        transform: translateY(-3%);
      }
      100% {
        transform:  translateY(3%);
      }
    }
  }