@charset "utf-8";
/* JCB 2025 */

  #appdeeplink{
    display: none;
  }

/*設定
--------------------*/
:root {
  --black: #212528;
  --white: #fff;
  --gray: #707070;
  --orange: #EB4D28;
  --orangeD: #FFE4B1;
  --green: #C0ECD3;
  --red: #E61F20;
  --yellow: #FFCA00;
  --yellowMarker: #FDF190;
  --border: #656565;
  --bgGreen: #C0ECD3;
  --bgOrange: #FFE6AE;
  --bgOrangeL: #FFEFC9;
  --btnOrangeGrd: linear-gradient(45deg, #F9DC8C 35%, #FDBE9D);
  --btnGray: #E9E9E9;
  --radius-3: 3px;
}

/*共通 パーツ
-------------------------------*/
article {
  font-family: "Yu Gothic", "Yu Gothic medium", "Arial", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  overflow: hidden;
}

/*
header:has(> #obi-10man) + article {
    margin-top: 98px!important;
}
*/

a:hover {
  text-decoration: none;
  opacity: 0.6;
}

figure {
    margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

small {
  font-size: 70%;
	display: inline-block;
}

#pageup {
    bottom: 120px;
}
@media screen and (min-width: 768px) {
    #pageup {
        bottom: 20px;
    }
}

/*　PC/SP　switch
-------------------------------*/
/* sp */
@media screen and (max-width: 767px) {
  .pc-on {
    display: none;
  }
  .tab-on {
    display: none;
  }
  .sp-on {
    display: block;
  }
  .text-left-sp {
    text-align: left;
  }
}

/*pc・tab*/
@media screen and (min-width: 768px) {
  .pc-on {
    display: block;
  }
  .tab-on {
    display: none;
  }
  .sp-on {
    display: none;
  }

  .text-center-pc {
    text-align: center;
  }
}

/* only tab */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .tab-on {
    display: block;
  }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1000px;
    }
}

@media (min-width: 576px) and (max-width: 768px){
    .container {
        max-width: 100%;
    }
}


/* color
-----------------------------------*/
.color-black {
    color: var(--black)!important;
}
.color-white {
    color: var(--white)!important;
}
.color-red {
    color: var(--red)!important;
}
.color-orange {
    color: #F8BF24!important;
}
.bg-white {
     background: var(--white)!important;
}
.bg-green {
    background: var(--bgGreen)!important;
}
.bg-orange-l{
    background: var(--bgOrangeL)!important;
}


/*　section 
-------------------------------*/
.section {
  padding: 50px 0 50px;
  position: relative;
}

/*PC時*/
@media (min-width: 768px) {
  .section {
    padding: 80px 0 80px;
  }
}

/* block
-------------------------------*/
.block {
  padding: 30px 0 0;
}

/*PC時*/
@media (min-width: 768px) {
  .block {
    padding: 60px 0 0;
  }
}

/*　h2 
-------------------------------*/
.heading {
	text-align: center;
	margin: 0 auto 45px;
}

.heading-img{
	margin: 0;
}
.heading-img img {
	max-width: 57%;
}
.heading-text {
	font-size: 18px;
	font-weight: bold;
	margin: 20px 0 0;
}
.heading span {
	display: block; /*縦並び*/
}

/*PC時*/
@media (min-width: 768px) {
	.heading-text {
		font-size: 24px;
		margin: 25px 0 0;
	}
}

/*　h3
-------------------------------*/
.title {
    width: fit-content;
    text-align: center;
    margin: auto;
    position: relative;
    padding-bottom: 10px;
}
.title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle farthest-side, var(--border), var(--border) 40%, transparent 50%, transparent);
    background-size: 5px;
    display: inline-block;
    width: 30px;
    height: 7px;
}

.title-img {
    display: block;
    text-align: center;
    line-height: 1.1;
}
.title-img img {
    max-width: 57%;
    text-align: center;
    line-height: 1.1;
}
.title-text {
    font-size: 12px;
    font-weight: bold;
    text-align: center
}

/*ラインなし見出し*/
.title.title-noline {
    position: static;
    font-size: 16px;
    font-weight: bold;
}
.title.title-noline::after {
    content: none;
}

@media (min-width: 768px) {
    .title {
        padding-bottom: 8px;
    }
    .title::after {
        width: 35px;
    }
    .title-img {
        margin: 0 auto 16px;
        width: 100%;
    }
    .title-img img {
        max-width: 100%;
    }
    .title-text {
        font-size: 20px;
    }
    
    /*ラインなし見出し*/
    .title.title-noline {
        font-size: 20px;
    }
}


/* text
------------------------------*/
.big {
    font-size: 32px;
} 
.large {
    font-size: 18px;
}
.large-2 {
    font-size: 18px;
}
.middle {
    font-size: 18px;
}
.small {
    font-size: 13px;
}
.small-2 {
    font-size: 16px;
}
@media (min-width: 768px) {
    .big {
        font-size: 22px;
    }
    .large {
        font-size: 22px;
    }
    .middle {
        font-size: 22px;
    }
    .small {
        font-size: 18px;
    }
    .small-2 {
        font-size: 16px;
    }
}

/*　text-decoration 
-------------------------------*/
.marker {
    background-image: -webkit-linear-gradient(transparent 60%, var(--yellowMarker) 40%);
    background-image: -o-linear-gradient(transparent 60%, var(--yellowMarker) 40%);
    background-image: linear-gradient(transparent 60%, var(--yellowMarker) 40%);
}

/*pc時*/
@media (min-width: 768px) {
/*
	.marker {
		padding: 0 5px;
	}
*/
}

/*　btn design
-------------------------------*/
.btn {
    border-radius: 100px;
    padding: 20px 26px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    position: relative;
    transition: 0.3s;
    color: var(--black);
}
.btn:hover {
    opacity: 0.6;
    color: var(--black);
}
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 3.6%;
    transform: translateY(-50%);
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
}
@media (min-width: 768px) {
    .btn {
        padding: 20px 26px;
        font-size: 18px;
    }
    .btn::after {
        right: 3.6%;
        font-size: 16px;
    }
}
/*btn cv*/
.btn-cv-grd {
    background: var(--btnOrangeGrd);
    color: var(--black);
}

/* btn　black*/
.btn-black {
    background: var(--black);
    color: var(--white);
}
.btn-black:hover {
    color: var(--white);
}

/* btn　gray*/
.btn-gray {
    background: var(--btnGray);
    color: var(--black);
    padding-top: 8px;
    padding-bottom: 6px;
}

/* btn text */
.btn-text {
   text-decoration: underline;
    padding: 2px;
    display: inline-block;
}
.btn-text:hover {
    opacity: 0.6;
}

/* btn icon */
.btn-normal::after {
    content: '\f105';
    color: var(--black);
}
.btn-text.btn-normal::after {
    font-size: 10px;
    right: 17.6%;
}
.btn-newtab::after {
    top: calc(50% -2px);
    content: '\f35d';
    color: var(--white);
}

.btn-arrow::after {
    content: '\f0a9';
    color: var(--white);  
}

@media (min-width: 768px) {
    /*btn cv*/
    .btn-cv {
        background: var(--gradOrange);
        color: var(--black);
    }

    /* btn　black*/
    .btn-black {
        background: var(--black);
        color: var(--white);
    }
    .btn-black:hover {
        color: var(--white);
    }

    /* btn　gray*/
    .btn-gray {
        padding-top: 12px;
        padding-bottom: 10px;
        font-size: 16px;
    }

    /* btn icon */
    .btn-normal::after {
        font-size: 14px;
    }
    .btn-newtab::after {
        font-size: 16px;
    }
}

/* box
----------------------------------*/
.box-border {
	border: solid 2px var(--border);
	padding: 18px 16px;
    background: var(--white);
    border-radius: 10px;
}

.box-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border);
}

.box-sub-text {
    width: fit-content;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 45px;
    margin: 24px auto 16px;
    position: relative;
}
.box-sub-text::before,
.box-sub-text::after {
    content: '';
    position: absolute; 
}
.box-sub-text::before { 
    top: 2px;
    left: 0;
    height: 0;
    border-style: solid;
    border-top: 20px solid transparent;
    border-bottom: 22px solid transparent;
    border-left: 14px solid var(--white);
    border-right: 0;
}
.box-sub-text::after {
  top: 2px;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 20px solid transparent;
  border-bottom: 22px solid transparent;
  border-right: 14px solid var(--white);
  border-left: 0;
}
.box-border.middle {
    max-width: 100%;
    margin: auto;
    padding: 0 0 16px;
    overflow: hidden;
    background: #FDFAF3;
}
.box-border.middle .box-title {
    padding: 12px 3% 10px;
    border-bottom: 0;
    background: var(--orangeD);
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.box-border.middle .box-title span{
    position: relative;
}
.box-border.middle .box-title span::before,
.box-border.middle .box-title span::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 2px;
    height: 80%;
    bottom: 0;
    border-radius: 50px;
    background: var(--black);
}
.box-border.middle .box-title span::before {
    left: -40px;
    transform: translateX(-50%) rotate(-28deg);
}
.box-border.middle .box-title span::after {
    right: -18px;
    transform: translateX(-50%) rotate(28deg);
}

@media (min-width: 768px) {
    .box-border {
        border: solid 3px var(--border);
        padding: 24px 1.6% 22px;
    }
    
    .box-border.middle {
        padding: 0 0 16px;
        margin-bottom: 24px;
    }
    .box-border.middle .box-title {
        padding: 16px 3% 12px;
        font-size: 22px;
    }
    .box-border.middle .box-title span::before,
    .box-border.middle .box-title span::after {
        height: 100%;
        bottom: 0;
    }
    .box-border.middle .box-title span::before {
        left: -20px;
        transform: translateX(-50%) rotate(-28deg);
    }
    .box-border.middle .box-title span::after {
        right: -18px;
        transform: translateX(-50%) rotate(28deg);
    }
}

/* tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .box-title {
        font-size: 22px;
    }
    .box-border.middle .box-title {
        font-size: 20px;
        padding: 20px 3% 18px;
    }
}

@media (max-width: 340px) {
    .box-sub-text {
        padding: 10px 36px;
    }
}



/*角丸
------------------------------------*/
.border-ro-3 {
    border-radius: var(--radius-3);
}
	
/*　MV
-------------------------------*/
#hero{
	padding-top: 0;
}

/*mv img*/
h1.mv-area {
  width: 100%;
  text-align: center;
}

/*term*/
.term-area {
    padding: 16px 0;
}

.term-list {
    border-radius: 3px;
    background: var(--white);
}

.term-list div {
    font-size: 12px;
    font-weight: bold;
    line-height: 1.5;
    display: flex;
    align-items: center;
}
.term-list dt {
    padding: 4px 12px 3px;
    background: var(--bgOrangeL);
    border-radius: 5px;
    font-size: 12px;
    
}
.term-list dd {
    margin-left: 1.5%;
    font-size: 12px;
}


/*pc*/
@media screen and (min-width: 768px) {
    .term-area {
        padding: 20px 0;
    }

    .term-area .box-border {
        padding: 24px 60px 22px;
    }
    .term-list {
        margin: auto;
        max-width: 680px;
    }
    .term-list div {
        font-size: 20px;
    }
    .term-list dt {
        padding: 4px 12px 3px;
        font-size: 18px;
        width: 40%;
    }
    .term-list dd {
        font-size: 18px;
        margin-left: 12px;
    }

    /*pc backcolor*/
      .mv-wrap::after {
        width: 39.15%;
        right: 14.25%;
      }

      .mv-term {
        width: 755px;
        margin: 10px auto 30px;
        font-size: 20px;
      }
}

@media screen and (max-width: 340px) {
    .term-list dt {
        padding :4px 8px 3px;
        font-size: 11px;
    }
    .term-list dd {
        font-size: 11px;
    }
}

/*tab*/
@media screen and (min-width: 768px) and (max-width: 991px) {
  .mv-term {
    width: 100%;
	transform: scale(0.8);
  }
    
    .term-list dt {
        font-size: 14px;
    }
    .term-list dd {
        font-size: 14px;
    }
}


/*202505　追加*/
.term-area .color-red {
    color: #FF4D4D !important;
}

.term-area .box-border {
    max-width: 680px;
    margin: auto;
    padding: 24px 16px 22px;
}

.box-border-orange {
    background: var(--white);
    border-radius: 10px;
    padding: 20px 16px;
    border: 3px solid #FAAE7C;
    position: relative;
    margin-bottom: 30px;
}
.box-border-orange > p {
    font-size: 12px;
}

.box-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.box-wrap .left {
    width: 48%;
    max-width: 432px;
}
.box-wrap .right {
    width: 48%;
    max-width: 432px;
}

.cpn-terms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.cpn-terms-item {
    background: #FDD250;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    width: 80%;
    max-width: 80%;
}

.cpn-terms .cpn-terms-item:last-child {
    width: 100%;
    max-width: 100%;
    margin-top: 36px;
    position: relative;
}

.cpn-terms-item.ico-add::before {
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
}
.box-border-orange.half.ico-add::before {
    left: 50%;
    top: -28px;
    transform: translateX(-50%);
}
.box-border-orange.half.ico-result::after {
    left: 50%;
    bottom: -17px;;
    transform: translateX(-50%);
}

.ico-add::before,
.ico-result::after{
    content: '';
    position: absolute;
    display: inline-block; 
}
.ico-add::before {
    width: 23px;
    height: 23px;
    background: url('/static/img/campaign/jcb/ico-add.svg') no-repeat center center/ 100%;
}
.ico-result::after {
    width: 21px;
    height: 19px;
    background: url('/static/img/campaign/jcb/ico-result.svg') no-repeat center center/ 100%;
}

.cpn-terms-result {
    background: #FEEC86;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;  
}

.btn-text-blue {
    color: #1266A5;
    font-size: 12px;
    font-weight: 400;
    position: relative;
    display: inline-block;
    text-align: center;
}

.btn-text-blue::after {
    content: '\f105';
    position: absolute;
    right: -12px;
    display: inline-block;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.box-wrap .box-border-orange.half.ico-result::after {
    bottom: -17px;
}
.box-wrap .box-border-orange {
    margin-bottom: 17px;
}

/*sp*/
@media (max-width: 340px) {
    .box-border-orange {
        padding: 16px 14px;
    }
    .box-border-orange > p {
        font-size: 12px;
    }
    
    .cpn-terms-item {
        font-size: 13px;
    }
    
    .cpn-terms-result {
        padding: 10px;
        font-size: 13px;
    }
    
    .ico-add::before {
        width: 22px;
        height: 23px;
    }
}

@media (min-width: 600px) {

    .term-area .box-border {
        max-width: 680px;
        padding: 24px 46px 22px;
    }

    .box-border-orange {
        border-radius: 10px;
        padding: 20px 20px;
        border: 3px solid #FAAE7C;
    }

    .box-border-orange > p {
        font-size: 14px;
    }

    .box-wrap .left {
        width: 48%;
        max-width: 448px;
    }
    .box-wrap .right {
        width: 48%;
        max-width: 432px;
    }

    .cpn-terms {
        display: flex;
        justify-content: center;
    }
    .box-border-orange.half.ico-add::before {
        left: 50%;
        top: -47px;
    }
    .box-border-orange.half.ico-result::after {
        left: 50%;
        bottom: -55px;
    }
    .box-wrap .box-border-orange.half.ico-result::after {
        bottom: -55px;
    }

    .cpn-terms-result {
        padding: 10px 26px;
        font-size: 16px;
    }

    .btn-text-blue {
        font-size: 16px;
    }

    .btn-text-blue::after {
        right: -12px;
    }
}

@media (min-width: 768px) {
    .cpn-terms-item {
        padding: 10px 30px;
        border-radius: 30px;
        font-size: 15px;
        width: inherit;
    }

    .cpn-terms .cpn-terms-item:last-child {
        margin-left: 74px;
        margin-top: 0;
        width: inherit;
    }
    .cpn-terms-item.ico-add::before {
        left: 50%;
        top: -30px;
        transform: translateX(-50%);
    }
    .ico-add::before {
        width: 40px;
        height: 40px;
    }
    .ico-result::after {
        width: 42px;
        height: 38px;
    }
    .cpn-terms-item.ico-add::before {
        left: -56px;
        top: 5px;
        transform: inherit;
    }
    
    .cpn-terms-result {
        padding: 10px 30px;
        font-size: 20px;
    }
}

@media (min-width: 1000px) {
    .box-border-orange > p {
        font-size: 15px;
    }
}

/*　ページ内ナビ 
-------------------------------*/
.page-nav {
  width: 100%;
  margin: 24px auto 14px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /*折り返す*/
}

.page-nav > li {
  width: 48%;
  margin-bottom: 8px;
}
.page-nav > li:nth-of-type(odd) {
  margin-right: 2%;
}
.page-nav > li a {
    display: block;
    position: relative;
    z-index: 3;
    background: var(--bgOrangeL);
    color: var(--black);
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 16px 12px 16px;
    border-radius: 80px;
    border: solid 2px var(--border);
}

.page-nav > li:nth-of-type(even) a {
  margin-right: 0px;
}

.page-nav > li a {
    margin-bottom: 0;
}

.page-nav > li a::before {
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: calc(50% - 10px);
  right: calc(50% - 70px);
  font-weight: 900;
  color: var(--border);
  font-size: 13px;
}


/*メインナビ*/
#page-nav-area > .page-nav > li:first-child a {
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 1.1;
}
#page-nav-area > .page-nav > li:first-child a::before {
    top: calc(50% - 7px);
}


/* hover */
.page-nav > li a:hover {
    opacity: 0.6;
}

@media (min-width: 1200px) {
	#page-nav-area{
		max-width: 1014px;
		padding: 0;
	}
}

@media (min-width: 768px) {
  .page-nav {
    max-width: 1014px;
    margin: 50px auto 100px;
    flex-wrap: nowrap; /*折り返さない*/
  }
  .page-nav > li {
    margin: 0 0.8%!important;
  }
  .page-nav > li a {
	font-size: 16px;
	padding: 18px 30px 16px 20px;
	margin: 20px 0 0 0;
  }

  .page-nav > li a::before {
    right: 10%;
    height: 100%;
    font-size: 14px;
  }

    #page-nav-area > .page-nav > li:first-child {
        width: 24%;
    }
    #page-nav-area > .page-nav > li:nth-child(2) {
        width: 16%;
    }
    #page-nav-area > .page-nav > li:nth-child(3),
    #page-nav-area > .page-nav > li:last-child {
        width: 20%;
    }

   #page-nav-area > .page-nav > li:first-child a {
      padding-top: 10px;
      padding-bottom: 8px;
      line-height: 1.2;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .page-nav > li a {
    font-size: 13px !important;
  }
}

@media (max-width: 340px) {
    .page-nav > li a::before {
        right: calc(50% - 60px);
    }
}


/*　section campaign
-------------------------------*/
.campaign {
    padding: 50px 0 20px;
}
.campaign-overview {
   position: relative;
}
.campaign-overview::before {
    content: '';
    position: absolute;
    top: -72px;
    left: -67px;
    width: 626px;
    height: 362px;
    display: block;
    background: url('/static/img/campaign/jcb/bg-campaign-sp.png') no-repeat center center/ cover;
}
.campaign .heading {
    padding: 2px 0 10px;
    margin: -148px auto 16px;
}
.campaign .box-border {
    padding: 80px 11px 45px; 
    position: relative;
    border: 1px solid var(--border);
    border-radius: 36px;
}
.campaign .box-border::before,
.campaign .box-border::after {
    content: '';
    position: absolute;
    top: -45px;
    z-index: 3;
    width: 80px;
    height: 108px;
    display: block;
}
.campaign .box-border::before {
    left: -14px;
    width: 74px;
    background: url('/static/img/campaign/jcb/img-confetti-l.svg') no-repeat center center/ 100%;
}
.campaign .box-border::after {
    right: -14px;
    background: url('/static/img/campaign/jcb/img-confetti-r.svg') no-repeat center center/ 100%;
}
.campaign .heading-img img {
	max-width: 80%;
}
.campaign .heading-text{
    font-size: 12px;
    margin: -16px 0 0;
}
.campaign-lead {
	text-align: center;
	font-size: 12px;
	line-height: 1.8;
}
.campaign-lead.small {
    font-size: 11px;
}

@media (min-width: 768px) {
    .campaign .container {
        max-width: 1140px;
    }
    .campaign-overview  {
        padding: 100px 0 60px;
    }
    .campaign-overview::before {
        top: -130px;
        left: 0;
        width: 100%;
        min-height: 694px;
        background: url('/static/img/campaign/jcb/bg-campaign-pc.png') no-repeat center center/ cover;
    }
    
    .campaign-overview .large {
        font-size: 28px;
    }
    .campaign .heading {
        margin: -237px auto 32px;
        padding: 2px 0 10px;
    }
    .campaign .box-border {
        padding: 80px 11px 60px; 
        border-radius: 46px;
    }
    .campaign .box-border::before,
    .campaign .box-border::after {
        top: -45px;
        width: 148px;
        height: 188px;
    }
    .campaign .box-border::before {
        left: 20px;
        width: 140px;
    }
    .campaign .box-border::after {
        right: 20px;
    }
    .campaign .heading-img img {
        max-width: 64%;
    }
    .campaign .heading-text{
        font-size: 22px;
        margin: -48px auto 3px;
    }
    .campaign-lead {
        text-align: center;
        font-size: 20px;
        line-height: 1.8;
    }
    .campaign-lead.small {
        font-size: 18px;
    }
}

/* tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .campaign .box-border::before, .campaign .box-border::after {
        top: -115px;
        width: 136px;
    }
    .campaign .heading {
        margin: -200px auto 32px;
    }
    .campaign-lead {
        font-size: 16px;
    }
    .campaign-lead.small {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .campaign-overview  {
        padding: 100px 0;
    }
    .campaign-overview::before {
        top: -54px;
        min-height: 36vw;
    }
}

@media (min-width: 1400px) {
    .campaign-overview::before {
        min-height: 41vw;
    }
}

@media (max-width: 374px) {
	.campaign-lead {
	  font-size: 13px;
    }
    .campaign-lead.small {
        font-size: 13px;
    }
}

@media (max-width: 340px) {
    .campaign .box-border::before, 
    .campaign .box-border::after {
        width: 60px;
    }
}


/* block flow
-----------------------------------*/*

/*slider*/
.js-slider-flow{
	margin-left: 10px;
}
.card {
	position: relative;
	padding: 0 0 24px;
    margin: 50px 9px 30px;
	border: solid 2px var(--border);
	border-radius: 5px;
	text-align: center;
	min-width: 190px;
	width: 307px;
}
/*icon*/
.card::before {
    content: "";
    display: block;
    width: 66px;
    height: 66px;
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: -48px;
    left: 4px;
}
.slider-item.item1 .card::before {
    background-image: url(/static/img/campaign/jcb/step01.svg?20250131);
}
.slider-item.item2 .card::before {
    background-image: url(/static/img/campaign/jcb/step02.svg?20250131);
}
.slider-item.item3 .card::before {
    background-image: url(/static/img/campaign/jcb/step03.svg?20250131);
}
.slider-item.item4 .card::before {
    background-image: url(/static/img/campaign/jcb/step04.svg?20250131);
}
.card h4 {
    width: 100%;
    padding: 27px 2%; 
    font-size: 16px;
    font-weight: bold;
    text-align: center;
	line-height: 1.5;
    background: var(--green);
    color: var(--black);
    border-radius: 5px 5px 0 0;
}
.slider-item.item3 .card h4 {
   padding: 20px 2% 12px;
}
.card-content {
    padding: 20px 4.5% 0;
}
.card-text {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}
.card-text-small {
	padding: 16px 0 0;
    font-size: 12px;
    text-indent: -1em;
    padding-left: 1em;
}
.card .btn {
  font-size: 14px;
  width: 100%;
}

/*個別設定*/
.slider-item.item1 .card .btn {
    padding: 16px 20px;
	font-size: 14px;
}
.slider-item.item3 .card .btn {
   margin: 60px auto;
   padding: 13px 2% 12px;
}

.card img{
	margin: 15px auto 0;
}
.slider-item.item4 .card img{
	margin: 35px auto 0;
}

/*slick-slider design*/
.slick-dots{
	bottom: -20px;
}
.slick-dots li {
    margin: 0 1px;
}
.slick-dots li button:before {
  width: 12px;
  height: 12px;
  content: '';
  background: #B5B5B5;
  text-align: center;
  opacity: .25;
  opacity: 1;
  color: #3d3c3c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 50%;
  border: none;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  background: #FDBE9D;
}
.slick-prev {
    left: -11px;
    z-index: 99;
}
.slick-next {
    position: absolute;
    left: auto;
    right: 30px;
}
.slick-prev:before,
.slick-next:before{
    content: '';
    color: #CBC8C8;
    display: inline-block;
    width: 12px;
    height: 14px;
    background: url("/static/img/campaign/jcb/ico-allow-gray.svg") no-repeat center center/ 100%;
}
.slick-prev:before {
    transform: rotate(-180deg);
}

@media (max-width: 340px) {
    .card {
        width: 290px;
    }

    .slick-next {
        right: -3px;
    }
}

@media (min-width: 768px) {

    /* block flow
    -------------------------------*/
	/*slider*/
	.js-slider-flow{
		margin-left: 0;
	}
	.card {
		min-width: 755px;
		text-align: center;
		border: solid 2px var(--border);
		padding: 0 0 20px;
		margin: 60px 24px 30px;
	}
	.card::before {
		width: 102px;
		height: 102px;
		top: -55px;
		left: 35px;
	}
	.card h4 {
        padding: 24px 2% 22px;
		font-size: 16px;
	}
    
    /*個別*/
	.slider-item.item1 .card .btn-cv-grd {
        padding: 20px 52px 18px 40px;
		font-size: 16px;
        box-shadow: 0 3px 6px rgba(114, 76, 77, 0.16);
	}
    .slider-item.item1 .card .btn-text.btn-normal::after {
        right: 36.0%;
    }
	.slider-item.item3 .card .btn {
		padding: 13px 90px 12px 70px;
		font-size: 16px;
        max-width: 374px;
        margin: 30px auto 40px;
	}
	
	/*slick-slider design*/
	.slick-dots{
		bottom: -24px;
	}
	.slick-dots li button:before {
	  width: 12px;
	  height: 12px;
	}
    .slick-prev {
        left: 5%;
    }
    .slick-next {
        right: 5%;
    }
    .slick-prev:before,
    .slick-next:before{
        width: 22px;
        height: 28px;
    }
}

@media (min-width: 480px) and (max-width: 600px) {
    .slick-next {
        right: 28vw;
    }
}

/* tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .card {
        min-width: 700px;
        max-width: 730px;
    }
    .slick-prev {
        left: 1vw;
    }
    .slick-next {
        right: 1vw;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .slick-prev {
        left: 100px;
    }
    .slick-next {
        right: 100px;
    }
}

@media (min-width: 1200px) {
     .slick-prev {
        z-index: 99;
        left: 19vw;
    }
    .slick-next {
        right: 19vw;
    }
}
@media (min-width: 1400px) {
    .slick-prev {
        left: 21.5vw;
    }
    .slick-next {
        right: 21.5vw;
    }
}
@media (min-width: 1600px) {
    .slick-prev {
        left: 28vw;
    }
    .slick-next {
        right: 28vw;
    }
}




/*　block campaign-period
-------------------------------*/
.campain-period {
	padding: 10px 0 60px;
}

.campaign-term-wrap{
	margin: 40px auto 30px;
    border-radius: 10px;
    position: relative;
}

.campaign-term-wrap .term-list {
    position: relative;
}

.campaign-term-wrap .term-list div,
.campaign-term-wrap .term-list dt,
.campaign-term-wrap .term-list dd{
    display: block;
    text-align: center;
    margin: auto;
    font-size: 14px;
    line-height: 1.5;
}

.campaign-term-wrap .term-list div {
   margin-top: 12px;
}

.campaign-term-wrap .term-list dd {
    margin-top: 8px;
    margin-bottom: 3px;
}

.campaign-term-wrap .term-list dd p {
    font-size: 14px;
}

.campaign-term-wrap > .title {
    width: fit-content;
    text-align: center;
    margin: -35px auto 12px;
}
.campaign-term-wrap > .title-img {
    display: block;
    text-align: center;
    margin: auto;
    line-height: 1;
}

@media (min-width: 768px) {
	.campain-period {
		padding: 50px 0 120px;
	}
    
    .campaign-term-wrap {
        padding: 90px 3% 50px;
        max-width: 97%;
    }

    .campaign-term-wrap > .title {
        width: fit-content;
        padding: 0 30px 24px;
        margin: -128px auto 40px;
    }
    .campaign-term-wrap > .title-img {
        margin: auto;
        line-height: 1;
    }
    .campaign-term-wrap .term-list div,
    .campaign-term-wrap .term-list dt,
    .campaign-term-wrap .term-list dd {
        margin: initial;
        font-size: 16px;
    }
    .campaign-term-wrap .term-list dd p {
        font-size: 16px;
    }
    .campaign-term-wrap .term-list div {
       margin-top: 12px;
       display: flex;
       align-items: center;
        justify-content: flex-start;
       font-size: 16px;
    }
    .campaign-term-wrap .term-list dt {
        width: 26%;
        border-radius: 5px;
    }
    .campaign-term-wrap .term-list dd {
       margin-left: 1.6%;
    }
    .campaign-term-wrap .term-list p {
      font-size: 16px;
    }

/*
    .campaign-term-wrap .term-list div:nth-of-type(3){
        margin-top: 3px;
    }
    .campaign-term-wrap .term-list div:nth-of-type(3) dd {
        margin-top: 10px;
    }    
*/
}

/* tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .campaign-term-wrap .term-list dt,
    .campaign-term-wrap .term-list dd {
        font-size: 15px;
    }
}

@media (min-width: 991px) {
	.campaign-term-wrap ul{
		width: 85%;
	}
	.campaign-term-wrap li.cashback-detail{
		width: 70%;
	}
}
@media (min-width: 1200px) {
        .campaign-term-wrap {
            max-width: 860px;
        }
}

@media (max-width: 320px) {
    .term-list div {
        font-size: 11px;
    }
}

/*　section campaign-term
-------------------------------*/
.card-type {
    background: var(--bgOrange);
}
.card-type .heading {
    margin-bottom: 16px;
}
.card-type .heading-img img{
    max-width: 40%;
}

/*nav*/
.card-nav .card-nav-w {
    background: #FDBF9D;
}
.card-nav .card-nav-s {
    background: #C0ECD3;
}
.card-nav .copy-line {
    text-align: center;
    font-weight: bold;
    font-size: 13px;
    position: relative;
    display: block;
    margin: 0 auto 5px;
}
.card-nav .copy-line::before,
.card-nav .copy-line::after{
    content: '';
    position: absolute;
    display: inline-block;
    width: 2px;
    height: 80%;
    bottom: 0;
    border-radius: 50px;
    background: #333;
}
.card-nav .copy-line::before {
    left: 24px;
    transform: translateX(-50%) rotate(-30deg);
}
.card-nav .copy-line::after {
    right: 24px;
    transform: translateX(-50%) rotate(30deg);
}
#card-w .box-sub-text {
   background: var(--orangeD); 
}
#card-s .box-sub-text {
    background: var(--green); 
}

.text-wrap-border{
	border: solid 2px #3D3C3C;
	display: block;
	padding: 12px 20px;
	margin: 0 auto 20px;
	width: fit-content;
	font-weight: bold;
	font-size: 16px;
}

/* img */
.card-img {
    margin: 0 auto;
    text-align: center;
}
.card-img img {
    max-width: 82%;
}
.box-border.middle .card-img img {
    max-width: 100%;
}


/*list*/
.list-check > li {
    display: block;
    position: relative;
    margin-top: 12px;
}
.list-check > li::before {
    content: '\f058';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    color: var(--gray);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.list-check > li .point {
    padding-left: 22px;
}
.point {
    padding-left: 22px;
    font-weight: bold;
}
.point-sub {
    margin-top: 8px;
    font-size: 13px;
}
.point-2 {
    margin: 10px 0 12px;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.69;
}

#card-w .point .small,
#card-s .point .small {
    font-size: 13px;
}
#card-s .point-2 {
    font-size: 16px;
    line-height: 1.4;
}

/* btn */
 .card-type .btn-gray {
    display: block;
    padding: 10px 30px;
    font-size: 13px;
    text-align: center;
    margin: 20px auto 36px;
    width: 268px;
    max-width: 100%;
}

/* middle box*/
.box-border.middle .point {
    text-align: center;
    font-size: 13px;
    padding-left: 0;
}
.box-border.middle .point-sub {
    font-size: 11px;
    line-height: 1.5;
}
.card-type .box-border.middle .btn-gray {
    margin:  20px auto 16px;
}

.list-kome > li{
    padding-left: 12px;
    font-size: 10px;
    position: relative;
}
.list-kome > li::before {
    content: '※';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 10px;
}

.link-text {
    color: var(--black);
    text-decoration: underline;
}
.link-text:hover {
    color: var(--black);
    opacity: 0.8;
    text-decoration: underline;
}



@media (min-width: 768px) {
    .card-type .heading {
        margin-bottom: 24px;
    }
    .card-type .heading-img img{
        max-width: 100%;
    }

    /*nav*/
    .card-nav {
        max-width: 430px;
        margin: 0 auto 32px;
    }
    .card-nav > li a {
        max-width: 203px;
        padding: 15px 20px;
        margin: 2px 0 0 0;
    }
    .card-nav .copy-line {
        font-size: 14px;
    }
    .card-nav .copy-line::before {
        left: 40px;
    }
    .card-nav .copy-line::after {
        right: 40px;
    }
    
    .box-border.large {
        padding: 32px 3.5%;
    }
    
    /* img */
    .card-img img {
        max-width: 100%;
    }

    /*list*/
    .list-check > li {
        margin-top: 12px;
    }
    .list-check > li::before {
        left: -17px;
/*        top: 4px;*/
        font-size: 28px;
    }
    .list-check li .point {
        padding-left: 18px;
    }
    

    .list-kome > li{
        font-size: 11px;
    }
    .list-kome > li::before {
        font-size: 11px;
    }
    .point {
        padding-left: 30px;
    }
    .point-sub {
        padding-left: 18px;
        margin-top: 8px;
        font-size: 14px;
    }
    .point-2 {
        margin: 10px 0 12px;
        font-size: 14px;
        text-align: left;
        padding-left: 18px;
    }
    
    #card-w .point .small,
    #card-s .point .small {
        font-size: 18px;
    }
    #card-w .point .large,
    #card-s .point .large {
        font-size: 22px;
    }
    #card-s .point-2 {
        font-size: 16px;
    }
    #card-s .point-2 .middle{
        font-size: 20px;
    }

    /* btn */
    .card-type .btn-gray {
        padding: 12px 40px;
        font-size: 16px;
        margin: 26px auto 40px;
        width: 100%;
        max-width: 330px;
    }
    .card-type #card-s .btn-gray {
        margin: 26px auto 40px 0;
    }
    
    
    /* middle box*/
    .box-border.middle .point {
        text-align: left;
        font-size: 15px;
        padding-left: 0;
    }
    .box-border.middle .point-sub {
        font-size: 14px;
    }
    .card-type .box-border.middle .btn-gray {
        margin: 20px auto 16px 0;
    }
}

@media (min-width: 500px) and (max-width: 991px) {
  .card-nav > li a::before {
    right: 5%;
  }
}
@media (min-width: 500px) and (max-width: 767px) {
    .card-nav .copy-line::before {
        left: 16%;
    }
    .card-nav .copy-line::after {
        right: 16%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .box-border.middle .point {
        text-align: left;
    }
}
/*
@media (min-width: 991px) {
    .box-border.middle .point {
        text-align: left;
    }
}
*/
@media (max-width: 340px) {
    .card-nav .copy-line::before {
        left: 4%;
    }
    .card-nav .copy-line::after {
        right: 4%;
    }
}
/*
@media (max-width: 740px) {
    .card-type .btn-gray {
        font-size: 11px;
    }
}
*/


/*　section notes
-------------------------------*/
.notes-area {
	padding: 70px 0 60px;
}

.notes-area .heading{
	margin: 0 auto 10px;
}
.notes-area .heading-img img{
	max-width: 41%;
}

.notes-list li {
	margin-bottom: 8px;
	padding-left: 1em;
	position: relative;
	font-size: 12px;
	line-height: 1.5;
}
.notes-list li:before{
	content: "・";
    position: absolute;
    width: 1em;
    height: 1em;
    top: 0;
    left: 0;
    color: var(--black);
}

.notes-list li.parent-list{
	margin-bottom: 0;
}
.notes-list li.child-list {
    margin-left: 1em;
}

@media (min-width: 768px) {
	.notes-area {
		padding: 140px 0 140px;
	}
	.notes-area .heading {
		margin: 0 auto 30px;
	}
    .notes-area .heading-img img{
        max-width: 100%;
    }
    .notes-list {
        max-width: 970px;
        margin: auto;
    }
	.notes-list li{
		font-size: 14px;
        padding-left: 1.5em;
	}
}

/*　contact
-------------------------------*/
.contact-area {
	padding: 50px 0 65px;
	background: var(--bgOrangeL);
}

.contact-area .heading-img img{
   max-width: 60%;
}
.contact-area .heading-text{
   font-size: 13px
}

.contact-area .box-border {
    text-align: center;
    padding: 30px 3% 40px;
}

.contact-area .btn-black {
    margin: 16px auto 24px;
    width: 80%;
}
.contact-area .btn-black::after {
    right: 6%;
}

.contact-number{
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 2px;
}
.contact-lead {
	font-size: 12px;
	line-height: 1.8;
}

/*PC時*/
@media (min-width: 768px) {
	.contact-area {
		padding: 100px 0 120px;
	}
    
    .contact-area .container {
        max-width: 78%;
        margin: auto;
    }

	.contact-area .heading-text{
		margin-top: 16px;
        font-size: 18px;
	}
    .contact-area .btn-black {
        margin: 20px auto 36px;
        max-width: 371px;
    }
	.contact-number{
		font-size: 18px;
		margin-bottom: 0;
	}
	.contact-lead {
		font-size: 16px;	
    }
    
}

@media (min-width: 1200px) {
    .contact-area .container {
        max-width: 900px;
    }
}


/*　fixed btn
-------------------------------*/
.fixedBtn {
	opacity: 0;
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 5;
	transition: all 0.3s ease;
	margin: 0 auto;
	background: rgba(238,238,238,0.9);
	pointer-events: none;
}

.fixedBtn.is_visible{
  opacity: 1;
  pointer-events: all;
}

.fixedBtn .container{
	padding: 0;
}

.fixedBtn a:hover{
  text-decoration: none;
}
.fixedBtn .catch-copy {
    background: #3D3C3C;
    border-radius: 3px;
    width: fit-content;
    height: auto;
    padding: 10px 4%;
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
	font-size: 11px;
    margin: -15px auto 10px;
}
.catch-copy span{
    position: relative;
}

/*吹き出し*/
.catch-copy span:before,
.catch-copy span::after{
    content: ''; 
    position: absolute; 
    display: inline-block; 
    width: 2px; 
    height: 80%; 
    bottom: 0; 
    border-radius: 50px; 
    background: var(--white); 
}
.catch-copy span::before {
    left: -6px; 
    transform: translateX(-50%) rotate(-18deg);
}
.catch-copy span::after {
    right: -6px;
    transform: translateX(-50%) rotate(18deg);
}
.catch-copy span.color-orange {
    position: static;
}

/*btn*/
.fixed-btn-wrap {
    align-items: center;
    justify-content: center;
}
.fixed-btn-wrap .btn {
    width: 100%;
    max-width: 46%;
    font-size: 12px;
    margin: 0 0 8px;
    padding: 10px 2%;
}
.fixed-btn-wrap .btn:nth-child(2) {
    margin-left: 2%;
}

/*丹鉄側の追従ボタン*/
#jcb-tantetsu .fixedBtn .catch-copy {
    width: 80%;
}
#jcb-tantetsu .fixedBtn .catch-copy span::before {
    left: -12px; 
}
#jcb-tantetsu .fixedBtn .catch-copy span::after {
    right: -50px;
}


/*フッター*/
#section-footer{
	margin-bottom: 120px;
}

@media (min-width: 768px){
	.fixedBtn .catch-copy {
		font-size: 16px;
		min-width: 465px;
		padding: 10px 20px;
		margin: -15px auto 15px;
	}
	.fixedBtn .catch-copy:before {
		top: 63%;
		left: 50%;
	}
    .catch-copy span::before {
        left: -7px; 
    }
    .catch-copy span::after {
        right: -7px;
    }
    .fixed-btn-wrap .btn {
        max-width: 404px;
        font-size: 16px;
        margin: 0 0 16px;
        padding: 20px 16px;
    }
    .fixed-btn-wrap .btn:nth-child(2) {
        margin-left: 1%;
    }
    
    /*丹鉄側の追従ボタン*/
    #jcb-tantetsu .fixedBtn .catch-copy {
        width: fit-content;
    }
    #jcb-tantetsu .fixedBtn .catch-copy span::before {
        left: -12px; 
    }
    #jcb-tantetsu .fixedBtn .catch-copy span::after {
        right: -8px;
    }
    
	
	/*フッター*/
	#section-footer{
		margin-bottom: 100px;
	}
}

@media (max-width: 380px){
    .fixedBtn .catch-copy {
        font-size: 10px;
    }
    .fixed-btn-wrap .btn {
        font-size: 11px;
    }

    /*丹鉄側の追従ボタン*/
    #jcb-tantetsu .fixedBtn .catch-copy {
        width: 80%;
    }
    #jcb-tantetsu .fixedBtn .catch-copy span::before {
        left: -12px; 
    }
    #jcb-tantetsu .fixedBtn .catch-copy span::after {
        right: -55px;
    }
}
