@charset "UTF-8";

/* -------------------------------------------------------

   UTILITY

------------------------------------------------------- */

/*
   テキスト
----------------------------------------*/

/* フォントサイズ */
.fsXL {font-size: 16px;}
.fsL {font-size: 15px;}
.fsS {font-size: 13px;}
.fsXS {font-size: 12px;}
.fsXXS {font-size: 11px;}
@media only screen and (min-width:361px) {
	.fsXL {font-size:1.4em;}
	.fsL {font-size:1.2em;}
	.fsS {font-size:0.9em;}
	.fsXS {font-size:0.8em;}
	.fsXXS {font-size:0.67em;}
}

/* フォントの太さ */
.fwB {font-weight: bold;}
.fwN {font-weight: normal;}

/* テキストカラー */
.white {color : white;}
.black {color: black;}
.gray {color: gray;}
.error {color: #ff0000;}
.dRed {color: #d00e31;} /* docomo red */

/* 行揃え */
.textLeft {text-align: left;}
.textRight {text-align: right;}
.textCenter {text-align: center;}

/* 非表示テキスト */
.invisibleTxt {display: none;}

/* インデント */
.notesIndent{
	text-indent: -1.0em;
	padding: 0px 0px 0px 1em; /* 左一文字分開ける */
	font-size: 16px;
	line-height: 1.4;
}
.txtIndent {
    text-indent: -1em;
    padding-left: 1em;
}
.txtIndent02 {
    text-indent: -2em;
    padding-left: 2em;
}
.txtIndent03 {
    text-indent: -1.5em;
    padding-left: 1.5em;
}
/* 段落 */
.lineSpan{
	margin-bottom: 1em; /* 下一行分開ける */
}


/*
   ブロック
----------------------------------------*/

/* フロート */
.floatLeft {float: left;}
.floatRight {float: right;}
.floatNone {float: none;}

/* clearfix */
/* .cfx {*zoom: 1;} */
.cfx:before,
.cfx:after {
	content: "";
	display: table;
}
.cfx:after {
	clear: both;
}

/* ブロック要素 */
.dBlock {display: block;}


/*
   余白
----------------------------------------*/

/*----------------margin----------------*/
/* px指定 */
.mt0 {margin-top: 0 !important;}
.mt5 {margin-top: 5px !important;}
.mt10 {margin-top: 10px !important;}

.mb0 {margin-bottom: 0 !important;}
.mb5 {margin-bottom: 5px !important;}
.mb10 {margin-bottom: 10px !important;}

.ml0 {margin-left: 0 !important;}
.ml5 {margin-left: 5px !important;}
.ml10 {margin-left: 10px !important;}

.mr0 {margin-right: 0 !important;}
.mr5 {margin-right: 5px !important;}
.mr10 {margin-right: 10px !important;}

/* %指定 */
.mt5p {margin-top: 0.46297% !important;}
.mt10p {margin-top: 0.92593% !important;}
.mt20p {margin-top: 1.85186% !important;}
.mt30p {margin-top: 2.77778% !important;}
.mt40p {margin-top: 3.7038% !important;}
.mt50p {margin-top: 4.62963% !important;}
.mt60p {margin-top: 5.55556% !important;}
.mt70p {margin-top: 6.48149% !important;}

.mb5p {margin-bottom: 0.46297% !important;}
.mb10p {margin-bottom: 0.92593% !important;}
.mb20p {margin-bottom: 1.85186% !important;}
.mb30p {margin-bottom: 2.77778% !important;}
.mb40p {margin-bottom: 3.7038% !important;}
.mb50p {margin-bottom: 4.62963% !important;}
.mb60p {margin-bottom: 5.55556% !important;}
.mb70p {margin-bottom: 6.48149% !important;}

.mr5p {margin-right: 0.46297% !important;}
.mr10p {margin-right: 0.92593% !important;}
.mr20p {margin-right: 1.85186% !important;}
.mr40p {margin-right: 3.7038% !important;}
.mr80p {margin-right: 7.40741% !important;}

.ml5p {margin-left: 0.46297% !important;}
.ml10p {margin-left: 0.92593% !important;}
.ml20p {margin-left: 1.85186% !important;}
.ml40p {margin-left: 3.7038% !important;}
.ml80p {margin-left: 7.40741% !important;}

/*----------------padding---------------*/

/* px指定 */
.pt0 {padding-top: 0 !important;}
.pt5 {padding-top: 5px !important;}
.pt10 {padding-top: 10px !important;}

.pb0 {padding-bottom: 0 !important;}
.pb5 {padding-bottom: 5px !important;}
.pb10 {padding-bottom: 10px !important;}

.pl0 {padding-left: 0 !important;}
.pl5 {padding-left: 5px !important;}
.pl10 {padding-left: 10px !important;}

.pr0 {padding-right: 0 !important;}
.pr5 {padding-right: 5px !important;}
.pr10 {padding-right: 10px !important;}

/* %指定 */
.pt5p {padding-top: 0.46297% !important;}
.pt10p {padding-top: 0.92593% !important;}
.pt20p {padding-top: 1.85186% !important;}
.pt30p {padding-top: 2.77778% !important;}
.pt40p {padding-top: 3.7038% !important;}
.pt50p {padding-top: 4.62963% !important;}
.pt60p {padding-top: 5.55556% !important;}
.pt70p {padding-top: 6.48149% !important;}

.pb5p {padding-bottom: 0.46297% !important;}
.pb10p {padding-bottom: 0.92593% !important;}
.pb20p {padding-bottom: 1.85186% !important;}
.pb30p {padding-bottom: 2.77778% !important;}
.pb40p {padding-bottom: 3.7038% !important;}
.pb50p {padding-bottom: 4.62963% !important;}
.pb60p {padding-bottom: 5.55556% !important;}
.pb70p {padding-bottom: 6.48149% !important;}

.pr5p {padding-right: 0.46297% !important;}
.pr10p {padding-right: 0.92593% !important;}
.pr20p {padding-right: 1.85186% !important;}
.pr40p {padding-right: 3.7038% !important;}
.pr80p {padding-right: 7.40741% !important;}

.pl5p {padding-left: 0.46297% !important;}
.pl10p {padding-left: 0.92593% !important;}
.pl20p {padding-left: 1.85186% !important;}
.pl40p {padding-left: 3.7038% !important;}
.pl80p {padding-left: 7.40741% !important;}

.pl1em{padding-left: 1em;}

/* デバイス表示切り分け */
.pcView {display: none;}
.spView {display: block;}

@media only screen and (min-width:641px) {
	.pcView {display: block;}
	.spView {display: none;}
}


sup {
	font-size: 70%;
	vertical-align: top;
	position: relative;
	top: 0.1em;
}

.dh-Grid{background-color: #ffffff;}
@media screen and (max-width: 767.98px) {
    .dh-Grid {
        padding-left: 0;
        padding-right: 0;
    }
}

.newsBlock{
	background-color: #4a62ba;
	padding: 3% 4% 2%;
}

.bottomImg{
	background-color: #ffdfe1;
}
.newsBox {
    position: relative;
    margin: 2em 0 6em;
    padding: 3.25em 3em 2em;
    border: solid 1px #000000;
    border-radius: 10px;
	background-color: #fffffa;
}
.newsBox .box-title {
    position: absolute;
    display: inline-block;
	top: -21px;
    left: 0;
    /* padding: 0 9px; */
    line-height: 1;
    font-size: 19px;
}

.news-list{
	list-style: none outside;
    margin: 0;
    padding: 0;
    background-color: #fffffa;
    height: 17em;
    overflow: auto;
  }
  .news-list .item a{
	display: flex;
	flex-wrap: wrap;
	flex-wrap: nowrap;
	text-decoration: none;
	color: #333;
	border-bottom: 1px solid #CCC;
	padding: 20px 0;
  }
.news-list .item a:last-child{
	border-bottom: none;
}
  .news-list .item .date{
	margin: 0;
	min-width: 120px;
	font-size: 18px;
	font-weight: bold;
	color: #4a62ba;
	padding: 0 20px 0 0;
  }
  .news-list .item .title{
	margin: 0;
	width: 100%;
	font-size: 18px;
  }
  .news-list .item a:hover .title{
	color: #00F;
  }
  
  @media screen and (max-width: 767px){
  .news-list .item a{
	flex-wrap: wrap;
  }
  .news-list .item .date{
	min-width: 100px;
  }
  .news-list .item .title{
	margin-top: 10px;
  }
  .news-list{
    height: 26em;
  }
}
.fesBox{

}
.fesBoxTtl{
	padding-bottom: 0.75%;
}


.fes-list{
	list-style: none outside;
    margin: 0;
    padding: 0;
    background-color: #fffffa;
    height: 17em;
    overflow: auto;
  }
  .fes-list .item a{
	display: flex;
	flex-wrap: wrap;
	flex-wrap: nowrap;
	text-decoration: none;
	color: #333;
	border-bottom: 1px solid #CCC;
	padding: 20px 0;
  }
.fes-list .item a:last-child{
	border-bottom: none;
}
  .fes-list .item .date{
	margin: 0;
	width: 19%;
	font-size: 16px;
	font-weight: bold;
	color: #4a62ba;
	padding: 0 20px 0 0;
  }
  .fes-list .item .title{
	margin: 0;
	width: 52%;
	font-size: 16px;
  }
  .fes-list .item a:hover .title{
	color: #00F;
  }

 .fes-list .item .cpY{
	margin: 0;
	width: 26%;
	font-size: 16px;
	color: #ff5f6b;
	border: 2px solid #ff5f6b;
	border-radius: 5px;
	line-height: 1.5;
    text-align: center;
  }
 .fes-list .item .cpN{
	margin: 0;
	width: 26%;
	font-size: 16px;
	color: #4a62ba;
	border: 2px solid #4a62ba;
	border-radius: 5px;
	line-height: 1.5;
    text-align: center;
  }


  @media screen and (max-width: 767px){
  .fes-list .item a{
	flex-wrap: wrap;
  }
  .fes-list .item .date{
	min-width: 100px;
  }
  .fes-list .item .title{
	margin-top: 10px;
  }
  .fes-list{
    height: 26em;
  }
}
/* キャッシュレス学園祭一覧アコーディオン */
.fesBoxList{
    margin: 1.3em 0 1em;
    /* padding: 3.25em 3em 2em; */
    border: solid 1px #000000;
    border-radius: 10px;
    background-color: #fffffa;
	font-size: 16px;
	font-weight: bold;
}

.fesBoxList ul.fesBoxHeadline{
	width: 100%;
	font-size: 22px;
	background-color: #d4f1f8;
	line-height: 2;
	overflow: hidden;
}
.fesBoxList ul.fesBoxHeadline li{
	float: left;
}

.fesBoxList .c1,
.fesBoxList .c2,
.fesBoxList .c3{
	text-align: center;
}

.fesBoxList .c1{
	max-width: 214px;
	width: 33%;
}
.fesBoxList .c2{
	max-width: 123px;
	width: 19%;
	border-left: 1px solid #ffffff;
	border-right: 1px solid #ffffff;

}
.fesBoxList .c3{
	max-width: 300px;
	width: 47%;
}
.fesBoxList .c1 a
.fesBoxList .c2 a,
.fesBoxList .c3 a{
	display: block;
	text-align: center;
}
.fesBoxList ul.fesBoxLine{
	width: 90%;
	margin: 0 auto;
	font-size: 22px;
	overflow: hidden;
	text-align: center;
	position: relative;
}
.fesBoxList ul.fesBoxLine li{
	float: left;
	display: block;
	padding: 1em 0 1em;
}
.fesBoxList ul.fesBoxLine li a{
	/* display: block;
	padding: 1em 0 1em; */
}
.fesBoxList ul.tagArea{
	width: 94%;
	margin: 0 auto;
	overflow: hidden;
	text-align: center;
	position: relative;
	padding-bottom: 3%;
}
.cpTag{
    width: 32%;
    float: left;
    text-align: center;
    margin-left: 2%;
    margin-bottom: 2%;
    padding: 1.5% 1% 1.5%;
    border-radius: 100px;
	background-color: #ccc;
    font-size: 18px;
	color: #ffffff;
}
.cpTag:nth-child(3n+1){
	margin-left: 0;
}
.cpTag a{
	color: #ffffff;
	display: block;
}
.cp01{background-color: #cc0033;}
.cp02{background-color: #4a62ba;}
.cp03{background-color: #e4b300;}
.cp04{background-color: #ff5f6b;}
.cp05{background-color: #333333;}
.cp06{background-color: #8f8f8f;}

ul.hr::after{
	content: "";
    position: absolute;
    border-bottom: 1px solid #8f8f8f;
    bottom: 0;
    left: 0;
    width: 100%;
    height: inherit;
}
.fesBoxListNV{
	position: relative;
}

.fesBoxButton {
    text-align: center;
    padding: 3.5% 0% 3.5%;
    color: #000;
    background: #fff;
    width: 53%;
    margin: 4% auto;
    border-radius: 100px;
    border: 2px solid #000;
	font-size: 22px;
	display: block;
	position: relative;
}

.fesBoxButton::after {
	content: '＋';
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    color: #000;
}

.fesBoxButton.close::after {
  content: '－';
  position: absolute;
  top: 50%;
  right: 10%;
  /* transform: translateY(-50%); */
  color: #000;
}
.txtArea{
	width: 90%;
	margin: 0 auto;
	color: #ffffff;
	font-size: 16px;
    padding-bottom: 4%;
	line-height: 1.5;
}

@media screen and (max-width: 768px) {
	.fesBoxList ul.fesBoxHeadline {
		font-size: 16px;
	}
	.fesBoxList ul.fesBoxLine {
		width: 96%;
		font-size: 14px;
	}
	.cpTag{
		width: 48%;
		float: left;
		text-align: center;
		margin-left: 2%;
		margin-bottom: 2%;
		padding: 1.5% 1% 1.5%;
		border-radius: 100px;
		font-size: 14px;
		color: #ffffff;
	}
	.cpTag:nth-child(2n+1) {
		margin-left: 0;
	}
	.cpTag:nth-child(3n+4) {
		margin-left: 2%;
	}
	.fesBoxButton {
		font-size: 16px;
	}
	.txtArea{
		font-size: 14px;
	}
}


/* アンカーボタン */
.dh-button.dh-button-type2 .button {
    align-items: center;
    background-color: #d4f1f8;
    border: 1px solid #000000;
    border-radius: 144px;
    cursor: pointer;
    display: flex;
    height: 50px;
    justify-content: center;
    position: relative;
    transition: opacity .3s ease-out;
    width: 100%;
	border-bottom: 4px solid #000000;
}
.anchor_area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    margin: 3.6rem 0;
    gap: 1rem;
    border-radius: 10px;
}

.dh-button.dh-button-type2.anchor_btn {
    flex-basis: 48.5%;

}

.dh-button.dh-button-type2.anchor_btn .button {
    padding-left: 20px;
    justify-content: flex-start;
    border-radius: 10px;
    height: 80px;
}

.dh-button.dh-button-type2 .button .text {
    line-height:1.2;
}
.dh-button.dh-button-type2 .button .text {
    color: #4d4639;
    font-size: 1.8rem;
    font-weight: 700;
}
.dh-button.dh-button-type2 .button .icon-right.type-arror-down {
    background: url(/keitai_payment/corporation/schoolfestival/kse_special_package/img/ico_arrow.png) no-repeat 0 0, 100%;
}

@media screen and (max-width: 768px) {
    .anchor_area,
    .area_shop,
    .camp_content,
    .camp_detail,
    .contact_area {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .anchor_area {
        padding: 2rem 1.6rem;
        flex-direction: column;
    }
	.dh-button.dh-button-type2.anchor_btn .button {
		padding-left: 20px;
		padding-right: 40px;
		justify-content: flex-start;
		border-radius: 10px;
		height: 80px;
	}
}




  /*  */
.cont01{
	background-color: #ffdfe1;
	background-image: url(../img/bg01.png);
	background-repeat: no-repeat;
	background-size: contain;
	padding: 11.5% 4.285% 5%;
	margin-top: -0.5%;
}
.contInnerBox{
	max-width: 640px;
	width: 100%;
	background-color: #ffffff;
	border: 1px solid #000000;
	border-radius: 10px;
	box-sizing: border-box;
	padding: 4.5% 4.5% 3%;
	margin-top: 9%;
}
.contInnerTxt{
	padding: 1.5em 0 0;
	font-size: 18px;
	line-height: 1.5;
}
.contInnerTxt .ttl{
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 0.8em;
}

.cont02{
	background-color: #d4f1f8;
	background-image: url(../img/bg02.png);
	background-repeat: no-repeat;
	background-size: contain;
	padding: 23.5% 4.285% 5%;
}
.cont03{
	background-color: #ffffff;
	background-image: url(../img/bg03.png);
	background-repeat: no-repeat;
	background-size: contain;
	padding: 12.5% 4.285% 8%;
}
.cautionBox{
	max-width: 640px;
	width: 100%;
	background-color: #ffffff;
	border: 1px solid #000000;
	padding: 1.5% 4.5% 2.5%;
	margin-top: 9%;
	font-size: 16px;
	line-height: 1.5;
}
.cont04{
	background-color: #ffdfe1;
}

.cont04 .cont01Ttl{
	padding-bottom: 2.5%;
}
.cont04Inner{
	display: block;
    width: 100%;
    background-color: #fff5d2;
    /* height: 100%; */
    padding: 3% 4.285% 25%;
    background-image: url(../img/bg04.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: bottom;
    position: relative;
}

.cont05{
	background-color: #ffdfe1;
	margin-top: -7%;
    padding: 10% 4.285% 2%;
}

.slider02 li{
	padding-bottom: 4%;
}

.cont06{
	background-color: #ffdfe1;
    padding: 1% 4.285% 2%;
}

.cont07{
	background-color: #ffffff;
	background-image: url(../img/bg05.png);
	background-repeat: no-repeat;
	background-size: contain;
	padding: 12.5% 4.285% 8%;
}

.cont08{
	background-color: #fcf3c8;
	padding: 2.5% 4.285% 2%;
}
.baloonBox{
	max-width: 425px;
	width: 66.4%;
	margin: 0 auto 1%;
}
.cont09{
    background-color: #ffffff;
    margin: 9% 0 0;
    padding-bottom: 9%;
}
.contInnerBox02 {
    background-color: #ffe3e5;
    width: 100%;
    padding: 3% 8.575% 3%;
}

.dh-carousel .dh-carousel-inner{
	background-color: transparent;
}
.dh-carousel.carousel-type4 .dh-carousel-inner{
	background-color: transparent;
}

.dh-carousel.carousel-type4 .dh-carousel-inner .splide .splide__pagination{
	display: flex;
}

.slideBlock{
	width: 80%;
	margin: 0 auto;
}
.txtBlock{
	background-color: #ffffff;
	font-size: 1.7em;
	padding: 1em 1.5em;
	line-height: 1.5;
}
.floatBnr{
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: #ffffff;
	color: white;
	padding: 10px 20px;
	width: 100%;
}
.floatBnrPc{
	max-width: 640px;
	width: 91.42857%;
	margin: 0 auto;
}

footer.dh-footer {
    padding-bottom: 20%;
}


@media screen and (max-width: 767.98px) {
	.contInnerTxt .ttl {
		font-size: 1.8rem;
	}
	.cont04 {
		/* background-image: url(../img/bg04_sp.png);
		background-repeat: no-repeat;
		background-size: cover;
		padding: 3% 4.285% 30%; */
	}
	.cont04Inner::after{
		content: '';
		display: inline-block;
		width: 130px;
        height: 90px;
		background-image: url(../img/poinko.png);
		background-size: contain;
		position: absolute;
		bottom: 0%;
		right: 10%;
	}
	.cont04Inner{
		display: block;
		width: 100%;
		background-color: #fff5d2;
		/* height: 100%; */
		padding: 3% 4.285% 30%;
		background-image: url(../img/bg04_sp.png);
		background-repeat: no-repeat;
		background-size: cover;
		background-position-y: bottom;
		position: relative;
}
}




.cont04 .dh-carousel .dh-carousel-inner .splide:not(.is_top) .splide__slide {
    width: 100% !important;
}



.cont04Inner::after{
    content: '';
    display: inline-block;
    width: 247px;
    height: 159px;
    background-image: url(../img/poinko.png);
	background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0%;
    right: 10%;
}
@media screen and (max-width: 767.98px) {
	.cont04Inner::after{
		content: '';
		display: inline-block;
		width: 130px;
        height: 90px;
		background-image: url(../img/poinko.png);
		background-size: contain;
		position: absolute;
		bottom: 0%;
		right: 10%;
	}
}


.moreBlock{
	text-align: center;
	padding: 3% 5%;
}

.news-list .item a.disLink:hover .title {
    color: #333333;
}