@charset "UTF-8";

/*--------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------
 COMMON SETTEING
 --------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------*/
/* scroll */
html { 
    scroll-behavior: smooth;
    scroll-padding-top: 56px;
  }
  @media (min-width: 769px) {
    html {
      scroll-padding-top: 80px;
    }
  }

@media (min-width: 769px) {
  .cp-body .bw-breadcrumb{
    padding-left: 3%;
    padding-right: 3%;
  }
}

@media (min-width: 1000px) {
  .cp-body .bw-breadcrumb{
    padding-left: 0;
    padding-right: 0;
  }
}

/* footer上の余白削除 */
.bw-footer {
    padding-top: 0;
}

/* メインコンテンツ ヘッダー空き　調整用 */

body[data-page-type="top"] .bw_contentsArea,
.bw_contentsArea {
    margin-top: 51px !important;
}


/* PCヘッダー空き調整 */

@media all and (min-width: 769px) {
    body[data-page-type="top"] .bw_contentsArea,
    .bw_contentsArea {
        margin-top: 66px !important;
    }
}


/* PC パンクズ下の　margin　対策用 */

body[data-page-type="top"] .bw_contentsArea {
    display: block;
}


/*-------------------------------------------
 基本設定
-------------------------------------------*/

.cp-body {
    /* transition */
    --hover-transition: all .3s ease-out;
    /* テキストリンク */
    --col-txt-link: #1889CF;
    /* docomo red */
    --col-d-red: #cc0033;
    /* docomo green */
    --col-d-green: #009141;
    /* light gray(border.etc.) */
    --col-d-gray: #D9D9D9;
    /* btn shadow */
    --btn-shadow: #800020;
	/* コンテンツの余白　基本 */
	--gap-base: min(6%, 56px);

	/* コンテンツの余白 スマホで上下開けるための記述 */
	--gap-base--wide: min(8%, 56px);
}


/*-------------------------------------------
 ページ調整
-------------------------------------------*/
.cp-main {
    /* 基本テキスト設定 */
    font-size: 16px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    line-height: 1.7;
}


/* PCで上にマージン */
@media all and (min-width: 769px) {
    .cp-main {
        margin-top: 15px;
    }
}


/* commonのlineheightを上書き他に合わせる */

.cp-main p {
    line-height: 1.7;
}

.cp-main__inner {
    /* 基本的に横中央になるように */
    margin: 0 auto;
}

/* h系設定リセット */
.cp-main h1,
.cp-main h2,
.cp-main h3,
.cp-main h4,
.cp-main h5,
.cp-main h6 {
    font-weight: bold;
    margin-bottom: 0;
    max-width: initial;
}


/*-------------------------------------------
 基本色設定
-------------------------------------------*/
.cp-main{
	/* max960で 960以下で左右に入れたい余白の数値 */
	/* 基本的にヘッダーなどに合わせ 8px */
	--size-rl-padding: 8px;

	/* （自動計算用） */
	--size-rl-padding-plus: calc( var(--size-rl-padding) + 2);

	/* コンテンツの余白　基本 */
	--gap-base: min(5%, 58px);

	/* コンテンツの余白 スマホで上下開けたい */
	--gap-base-tb: min(10%, 58px);

	/* 最大幅 */
	--maxwidth: 960px;
}

/* 横幅MAX960 */
.cont960 {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.maxwidth860{
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

/********************************************
-------------------------------------------
 大枠　設定
-------------------------------------------
********************************************/

/*-------------------------------------------
 content padding margin
-------------------------------------------*/
/* コンテンツのpadding + max width */
.cp-main .cont-padding--maxwidth {
    padding: var(--gap-base--wide) var(--gap-base);
    max-width: calc(var(--maxwidth) + (var(--gap-base) * 2));
    margin-left: auto;
    margin-right: auto;
}

.cp-main .cont-padding--half-same-max-width {
    padding: calc( var(--gap-base) / 2);
    max-width: calc(var(--maxwidth));
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 789px) {
    .cp-main .cont-padding--maxwidth {
       padding: var(--gap-base);
    }
}

/* コンテンツの基本padding */
.cp-main .cont-padding{
	padding: var(--gap-base--wide) var(--gap-base);
	margin-left: auto;
    margin-right: auto;
}


/* コンテンツのpadding 上下が半分 */
.cp-main .cont-padding--tb-half{
	padding: calc( var(--gap-base) / 2) var(--gap-base);
	margin-left: auto;
    margin-right: auto;
}

/* コンテンツのpadding 上が半分 */
.cp-main .cont-padding--t-half{
	padding: calc( var(--gap-base) / 2) var(--gap-base) calc( var(--gap-base--wide));
	margin-left: auto;
    margin-right: auto;
}

/* コンテンツのpadding 上が半分 */
.cp-main .cont-padding--t-half-b{
	padding: calc( var(--gap-base) / 2) 0 var(--gap-base--wide) 0;
	margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 789px) {
    .cp-main .cont-padding--t-half {
		padding: calc( var(--gap-base) / 2) var(--gap-base) calc( var(--gap-base));
    }

    .cp-main .cont-padding--t-half-b {
		padding: calc( var(--gap-base) / 2) 0 var(--gap-base) 0;
    }
}


@media only screen and (min-width: 789px) {
    .cp-main .cont-padding--spwide{
		padding-right: var(--gap-base);
		padding-left: var(--gap-base);
	}
}

/* 上下marginで調整　コンテンツのpadding SPで横いっぱい 768以上で左右余白 */
.cp-main .cont-margin--spwide{
	margin-top: var(--gap-base--wide) ;
	margin-bottom: var(--gap-base--wide) ;
}

@media only screen and (min-width: 789px) {
    .cp-main .cont-margin--spwide{
		padding-right: var(--gap-base);
		padding-left: var(--gap-base);
	}
}



/* コンテンツのpadding上下座右同じ */
.cp-main .cont-padding--same{
	padding: var(--gap-base);
	margin-left: auto;
    margin-right: auto;
}

/* コンテンツのpadding左右のみ */
.cp-main .cont-padding--only-lr{
	padding-left: var(--gap-base);
	padding-right: var(--gap-base);
	width: min(100% ,var(--maxwidth));
	margin-left: auto;
    margin-right: auto;
}

/* コンテンツのpadding左右のみ */
.cp-main .cont-padding--only-l-half{
	padding-left: calc( var(--gap-base) / 2);
	padding-right: calc( var(--gap-base) / 2);
	width: min(100% ,var(--maxwidth));
	margin-left: auto;
    margin-right: auto;
}


/* コンテンツのpadding上下のみ */
.cp-main .cont-padding--only-tb{
	padding-top: var(--gap-base--wide);
	padding-bottom: var(--gap-base--wide);
	width: min(100% ,var(--maxwidth));
	margin-left: auto;
    margin-right: auto;
}

/* コンテンツのpadding上 */
.cp-main .cont-padding--only-t{
	padding-top: var(--gap-base--wide);
	width: min(100% ,var(--maxwidth));
	margin-left: auto;
    margin-right: auto;
}

/* コンテンツのpadding下 */
.cp-main .cont-padding--only-b{
	padding-bottom: var(--gap-base--wide);
	width: min(100% ,var(--maxwidth));
	margin-left: auto;
    margin-right: auto;
}

/* コンテンツのpadding全てなし */
.cp-main .cont-padding--none{
	padding: 0;
}

/* コンテンツの 基本margin */
.cp-main .cont-margin{
	margin: var(--gap-base--wide) var(--gap-base);
}


/* コンテンツの margin上下左右同じ */
.cp-main .cont-margin--same{
	margin: var(--gap-base);
}

/* コンテンツのmargin左右のみ */
.cp-main .cont-margin--only-lr{
	margin-left: var(--gap-base);
	margin-right: var(--gap-base);
}
/* コンテンツのmargin上下のみ */
.cp-main .cont-margin--only-tb{
	margin-top: var(--gap-base);
	margin-bottom: var(--gap-base);
}
/* コンテンツのmargin上 */
.cp-main .cont-margin--only-t{
	margin-top: var(--gap-base);
}
/* コンテンツのmargin下 */
.cp-main .cont-margin--only-b{
	margin-bottom: var(--gap-base);
}
/* コンテンツの左 */
.cp-main .cont-margin--only-l{
	margin-left: var(--gap-base);
}
/* margin右 */
.cp-main .cont-margin--only-r{
	margin-right: var(--gap-base);
}

/* コンテンツ内の最大幅 */
.cp-main .maxwidth{
	max-width: var(--maxwidth);
	margin-left: auto;
	margin-right: auto;
}


/* 画像はmaxまで横100％に */
.cp-main img {
    width: 100%;
    max-width: 100%;
    height: auto;
}


/* setting a テキスト　リセット */

.cp-main a {
    color: var(--col-txt-link);
}

.cp-main a {
    text-decoration: underline;
}

.cp-main a:hover {
    text-decoration: none;
}


/* pcでのhoverにopacityとtransitionを設定 */

@media (min-width: 769px) {
    .cp-main a,
    .cp-main a img,
    .cp-main .arrow:before,
    .cp-main .arrow:after,
    .cp-main .cp-btn__large,
    .cp-main .cp-btn__middle,
    .cp-main .cp-btn__small {
        transition: var(--hover-transition);
        opacity: 1;
    }
}

/* ページ内リンク調整用 */
.cp-body .page__anchor{
	height: 0px;
	display: block;
	padding-top: 56px;
	margin-top: -56px;
  }
  
  @media (min-width: 769px) {
	  .cp-body .page__anchor{
	  padding-top: 66px;
	  margin-top: -66px;
	}
  }
  

/*-------------------------------------------
 display
-------------------------------------------*
/* inline-blockに */
.cp-main .disp__inline-block {
    display: inline-block;
}

/* inline-blockに */
.cp-main .disp__block {
    display: block;
}


/* 固定 */
.cp-main .txt-f-12 {
    font-size: 12px;
    line-height: 1.4;
}


.cp-main strong {
    font-weight: 700;
}


/*-----------------------------------
 テキスト　＼ ／
------------------------------------*/
/* テキスト */
.cp-main .text__deco-slash{
	display: flex;
	align-items: center;
	justify-content: center;
    margin-bottom: 2%;
	margin-bottom: min(2% , 8px);
    font-weight:700;
    font-size: clamp(14px, 4vw , 18px);
}

.cp-main .text__deco-slash::before,
.cp-main .text__deco-slash::after{
	content: "";
	height: 2em;
	width: 3px;
	background: var(--col-c-blue);
	vertical-align: bottom;
}

.cp-main  .text__deco-slash::before {
	-webkit-transform: rotate(-30deg);
	transform: rotate(-30deg);
	margin-right: 0.7em;
}

.cp-main .text__deco-slash::after {
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
	margin-left: 0.7em;
}

/*-------------------------------------------
 リスト頭出し
-------------------------------------------*/

.cp-main .list__normal li {
    padding-left: 1em;
    text-indent: -1em;
}


.cp-main .list__normal li span{
	text-indent: 0;
}

/*-------------------------------------------
 下コンテンツのスマホの調整　ボーター入れる
-------------------------------------------*/

.bw-footer__download {
    padding-top: 2rem;
    border-top: 1px solid #ccc;
}


/*-------------------------------------------
close対応　
-------------------------------------------*/

/* ページ上テキスト */

/* setting other */
.attention__txt {
    font-size: 3.5vw;
    color: #cc0033;
}

@media only screen and (min-width: 390px) {
    .attention__txt {
        font-size: 12px;
    }
}


/* ボタン用 
------------------------*/


/* ボタンの色 */
.cp-main .cp-end {
    pointer-events: none !important;
    background-color: #c8c8c8 !important;
    border: none !important;
    color: #FFF !important;
    box-shadow: none !important;
}


/* 影 */
.cp-main .cp-end.btn-shadow {
    box-shadow: none !important;
}


/* 矢印 */
.cp-main .cp-end.arrow:before {
    border-color: #FFF !important;
}


/* 画像 */
.cp-main .cp-btn__large.cp-end img,
.cp-main .cp-btn__middle.cp-end img,
.cp-main .cp-btn__small.cp-end img {
    -webkit-filter: brightness(0) invert(1) !important;
    filter: brightness(0) invert(1) !important;
}


/* 画像直接用 
------------------------*/

.cp-main .cp-end .cp-end__img {
    -webkit-filter: grayscale(100%) !important;
    filter: grayscale(100%) !important;
    opacity: .5 !important;
}


/*-------------------------------------------
 テキストアンダーライン
-------------------------------------------*/

.cp-main .text-uline {
    background: linear-gradient(transparent 70%, var(--col-c-yellow) 30%);
}

/*-------------------------------------------
 テキストアンダーライン
-------------------------------------------*/

.cp-main .margin-b0{
    margin-bottom: 0!important;
}


/*-------------------------------------------
 HOVER
-------------------------------------------*/

/* ボタン　テキスト */
.cp-main a.cp-btn__large:hover,
.cp-main a.cp-btn__middle:hover,
.cp-main a.cp-btn__small:hover,
.cp-main a.entry-block__btn:hover {
    color: #fff;
    text-decoration: none;
}

@media only screen and (min-width: 769px) {
    /* text */
    .cp-main a.cp-btn__middle:hover,
    .cp-main .btn-genretop:hover,
    .cp-main a.cp-btn__small:hover
    {
        filter: brightness(115%) contrast(120%);
    }

}


/*-------------------------------------------
 メインビジュアル
-------------------------------------------*/

/* img */
.cp-main .mv-block__img {
    display: block;
    width: min(100% , 960px);
    margin-bottom: 0;
    margin: 0 auto;
}

/* ----------------------------------
   クーポンエリア
  -----------------------------------*/

  .coupon-block__frame {
    background: #f5f5f5;
    border-radius: 16px;
    padding: min(3vw, 40px) 16px;
  }
  .coupon-block__inner {
    max-width: 640px;
    margin: 0 auto;
  }
  .coupon-block__period-title {
    line-height: 1.3;
    font-size: 24px;
    font-weight: 600;
    color: var(--col-d-green);
    text-align: center;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
  }
  .coupon-block__period-title::before, .coupon-block__period-title::after {
    content: "";
    height: 2px;
    background: var(--col-d-green);
    flex-grow: 1;
  }
  .coupon-block__period-title::before {
    margin-right: 0.333em;
  }
  .coupon-block__period-title::after {
    margin-left: 0.333em;
  }
  .coupon-block__period-text {
    text-align: center;
    font-size: clamp(14px, 4.375vw, 16px);
    font-weight: 600;
    color: #000;
    margin: 1em 0;
    line-height: 1.7;
  }
  .coupon-block__period-text > span {
    display: inline-block;
  }
  .coupon-block__annotation {
    font-size: 12px;
    font-weight: 400;
    color: #000;
    margin-top: 1.5em;
  }

  .coupon-block__rounded-btn {
    margin-bottom: 20px;
  }


/* ----------------------------------
   リボン
  -----------------------------------*/
  .cp-main .h-ribbon {
    position: relative;
    width: calc(100% - 30px);
    left: 15px;
    color: #FFF;
    background: var(--col-d-green);
    padding: min(1.5%, 10px);
    text-align: center;
    font-size: clamp(15px, 2.8vw, 20px);
    font-weight: 700;
    margin-bottom: 1em;
  }
  
  .cp-main .h-ribbon::before, .cp-main .h-ribbon::after {
    display: block;
    background: var(--col-d-green);
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 16px;
  }
  .cp-main .h-ribbon::before {
    left: -15px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 90% 50%);
  }
  .cp-main .h-ribbon::after {
    right: -15px;
    clip-path: polygon(100% 0, 10% 50%, 100% 100%, 0 100%, 0 0);
  }
  .cp-main .h-ribbon__text {
    margin-bottom: 0;
    color: #fff;
    text-align: center;
    font-weight: 600;
	font-size: clamp(15px, 2.8vw, 20px);
  }


  /*-------------------------------------------
 ボタン
-------------------------------------------*/


/* ボタン large */
.cp-main .cp-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: relative;
    line-height: 1.2;
}


/* ボタン large */
.cp-main .cp-btn__large {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #cc0033;
    color: #fff;
    font-size: clamp(16px, 3.2vw, 24px);
    font-weight: 600;
    min-height: 60px;
    line-height: 1.2;
    border-radius: 9999px;
    padding: 16px 35px;
    text-align: center;
    position: relative;
}


/* ボタン middle -ボタンリンク- */
.cp-main .cp-btn__middle {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--col-d-red);
    color: #fff;
    padding: 12px;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    margin: auto;
    font-size: 12px;
    font-size: min(3vw ,16px);
    line-height: 1.3;
    position: relative;
    height: 40px;
}


/* ボタン small -ボタンリンク- */

.cp-main .cp-btn__small {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--col-d-red);
    color: #fff;
    padding: 12px;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    font-size: clamp(12px ,2.8vw ,16px);
    min-height: 40px;
    position: relative;
    padding: 0.5em 20px;
    margin: auto;
    line-height: 1.1;
}

/* ボタン　テキスト */
.cp-main a.cp-btn__large,
.cp-main a.cp-btn__middle,
.cp-main a.cp-btn__small,
.cp-main a.entry-block__btn {
    color: #fff;
    text-decoration: none;
}

/* ボタン　＞ */
.cp-main .arrow:before {
    position: absolute;
    content: " ";
    right: 12px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    top: 50%;
    transform:  translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
}


/* ボタン影 */
.cp-main .btn-shadow {
    box-shadow: 0px 3px 0 var(--btn-shadow);
    transition: var(--hover-transition);
    transform: translateY(0);
}

@media only screen and (min-width: 370px) {
    .cp-main .cp-btn__middle {
        font-size: min(3vw ,16px);
    }

    /* PC */
    .cp-main .arrow:before {
        right: 12px;
        width: 10px;
        height: 10px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
    }

     /* btn__large */
    .cp-main .cp-btn__large.arrow:before {
        right: 16px;
    }

    .cp-main .btn-shadow {
        box-shadow: 0px 3px 0 var(--btn-shadow);
    }
}

@media only screen and (min-width: 769px) {
     /* PC */
     .cp-main .arrow:before {
        right: 16px;
    }

    /* PC */
    .cp-main .cp-btn__large.arrow:before {
        right: 22px;
    }

    .cp-main .btn-shadow:hover {
        box-shadow: none !important;
        transform: translateY(3px);
    }

    .cp-main .arrow:hover:before{
        right: 12px;
    }

        /* ボタン large */
    .cp-main .cp-btn__large {
        min-height: 80px;
    }
}



/*-------------------------------------------
 メインタイトル
-------------------------------------------*/
.cp-main .main-title__large {
	background: var(--col-d-red);
	color: #FEF571;
	font-weight: 700;
	text-align: center;
	padding: min(2%, 10px);
	width: min(100% ,960px);
	margin-left: auto;
	margin-right: auto;
}

/*-------------------------------------------
 マージン、　パディング設定
-------------------------------------------*/
/* bottom */
.cp-main .mb1{
	margin-bottom: 8px !important;
}

.cp-main .mb2{
	margin-bottom: 16px !important;
}

.cp-main .mb3{
	margin-bottom: 32px !important;
}

.cp-main .mb4{
	margin-bottom: 40px !important
}

.cp-main .mb5{
	margin-bottom: 48px !important;
}

.cp-main .mb-base{
	margin-bottom: var(--gap-base-tb) !important;
}

.cp-main .pb1{
	padding-bottom: 8px !important;
}

.cp-main .pb2{
	padding-bottom: 16px !important;
}

.cp-main .pb3{
	padding-bottom: 32px !important;
}

.cp-main .pb4{
	padding-bottom: 40px !important;
}

.cp-main .pb5{
	padding-bottom: 48px !important;
}

.cp-main .pb-base{
	padding-bottom: var(--gap-base-tb) !important;
}

/* top */
.cp-main .mt1{
	margin-top: 8px !important;
}

.cp-main .mt2{
	margin-top: 16px !important;
}

.cp-main .mt3{
	margin-top: 32px !important;
}

.cp-main .mt4{
	margin-top: 40px !important;
}

.cp-main .mt5{
	margin-top: 48px !important;
}

.cp-main .mt-base{
	margin-top: var(--gap-base-tb) !important;
}

.cp-main .pt1{
	padding-top: 8px !important;
}

.cp-main .pt2{
	padding-top: 16px !important;
}

.cp-main .pt3{
	padding-top: 32px !important;
}

.cp-main .pt4{
	padding-top: 40px !important;
}

.cp-main .pt5{
	padding-top: 50px !important;
}

.cp-main .pt-base{
	padding-top: var(--gap-base-tb) !important;
}
