@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;
}

/* d払いcommon上書き */
.dh-bread-nav .dh-bread-nav-list{
	padding-left: 8%;
}
@media screen and (min-width: 768px) {
    .dh-bread-nav {
        margin: 0 auto;
    }
}
@media screen and (max-width: 767.98px) {
    .dh-bread-nav {
        margin-top: 0;
        padding-left: 0;
        width: 100%;
    }
}













.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 0;
    padding: 3.25em 3em 0;
    border: solid 1px #000000;
    border-radius: 10px;
	background-color: #fffffa;
}
.newsBox .box-title {
    position: absolute;
    display: inline-block;
	top: -18px;
    left: 18px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
}




.news-list{
	list-style: none outside;
	margin: 0;
	padding: 0;
	background-color: #fffffa;
  }
  .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 .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;
  }
  }
  
  /*  */
.dh-bread-nav-list{
	background-color: #ffffff;
}
.cont01{
	background-color: #fff5d2;
	background-repeat: no-repeat;
	background-size: contain;
	padding: 8% 9% 15%;
	font-size: 14px;
	
    border-radius: 0 0 2000px 2000px / 0 0 300px 300px;
}
.blogDate{
	font-weight: bold;
	padding-bottom: 1.5em;
}
.blogTtl{
    font-size: 2em;
    font-weight: bold;
    line-height: 1.5;
    padding-bottom: 1.5em;
}
.blogTagArea li{
	display:inline-block;
}
.blogTagArea li {
	background-color: #ffd74c;
    padding: 0.5rem 2.5rem;
    border-radius: 50px;
    margin-right: 0.5rem;
    color: #000000;
	font-size: 14px;
}




.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% 5.5%;
	margin-top: 9%;
	display: flex;
}
.contInnerTxt{
	padding: 1.5em 0;
	font-size: 18px;
	line-height: 1.5;
}
.contInnerTxt .ttl{
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 0.8em;
}
.blogImg{
	width: 47%;
	margin-right: 6%;
	margin: auto 6% auto 0;
}
.blogCapArea{
	width: 47%;
}
.blogCapArea .schoolName{
	font-size: 1.5em;
    font-weight: bold;
    /* padding-top: 8%; */
    padding-bottom: 9%;
}
.blogCapArea .schoolIntro{
	font-size: 1em;
	line-height: 1.5;
	padding-bottom: 10%;
}



@media screen and (max-width: 767.98px) {
	.blogTtl{
		font-size: 1.75em;
	}
	.contInnerBox{
		display:block;
	}
	.blogImg{
		width: 100%;
		margin-bottom: 6%;
	}
	.blogCapArea{
		width: 100%;
	}
}





.cont02{
	padding: 8.5% 8.285% 3%;
	font-size: 16px;
	line-height: 1.5;
}

.dh-image{
	margin: 4% 0;
}


.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-image: url(../img/bg04.png);
	background-repeat: no-repeat;
	background-size: contain;
	padding: 3% 4.285% 40%;
}

.cont04 .cont01Ttl{
	padding-bottom: 2.5%;
}
.cont04 ul{
	width: 78%;
	margin: 0 auto;
	position: relative;
}
.cont04 .slider::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: -100%;
    right: -10%;
}
.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{
	padding: 2.5% 4.285% 10%;
}
.baloonBox{
	max-width: 425px;
	width: 66.4%;
	margin: 0 auto 1%;
}



.cont09 {
    overflow: hidden;
}

.top-circle {
    background-color: #fff5d2;
    border-radius: 2000px 2000px 0 0 / 300px 300px 0 0;
    margin: 2% -10% 0;
    padding: 6% 10%;
    min-height: 300px;
    text-align: center;
}
.relatedArtBlock{
    padding: 5.75% 9% 10%;
	overflow: hidden;
	text-align: left;
}
.relatedArt{
	float: left;
    /*max-width: 270px;*/
    width: 47%;
    background-color: #ffffff;
    border: 1px solid #000000;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 3.5% 3.5% 3.5%;
}
.relatedArt:nth-child(1){
	margin-right: 6%;
}
.relateArtImg{
	width: 100%;
}
.relateArtTxt{
	font-size: 1.6em;
	line-height: 1.5;
	margin-bottom: 5%;
}
@media screen and (max-width: 767px){
	.relatedArt{
		float: none;
		width: 100%;
        margin-bottom: 10%;
	}
	.relatedArt:nth-child(1) {
		margin-right: 0;
	}
}

.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;
}


.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;
}


/* ブログ */
.centerline{
	border-top: 2px solid #ccc;
}
.shareBlock{
	margin: 0 4% 0 auto;
    width: 75%;
    padding: 3% 6.285% 5%;
}
.shareBlockInner{
    width: 100%;
    text-align: right;
    border: 2px solid #505357;
	border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
	padding: 4% 8%;
}
.shareBlockInner a img{
	max-width: 44px;
}
.shareIco{
	width: 15%;
}
.XBtn{
	width: 25%;
}
.facebookBtn{
	width: 21%;
    margin-top: 2%;
}
.lineBtn{
	width: 26%;
}
@media screen and (max-width: 767.98px) {
	.shareBlock{
		margin: 0 auto;
		width: 100%;
		padding: 13% 4.285% 10%;
	}
	.shareBlockInner{
		width: 100%;
		text-align: right;
		border: 1px solid #505357;
		border-radius: 50px;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 10px;
		padding: 5% 8%;
	}
	.shareBlockInner a img{
		max-width: 44px;
	}
	.shareIco{
		width: 15%;
	}
	.XBtn{
		width: 25%;
	}
	.facebookBtn{
		width: 25%;
	}
	.lineBtn{
		width: 26%;
	}




	

}

.pagerBlock{
    margin: 2% 8% 6%;
    padding: 1.5% 0;
	display: flex;
	border-top: 1px solid #505357;
	border-bottom: 1px solid #505357;
	font-size: 14px;
	text-align: center;
	position: relative;
}
.pagerBlock a{
	color: #000000;
}
.prevPage{
	width: 33%;
		padding: 3% 0;
}
.topPage{
	width: 33%;
	padding: 3% 0;
}
.nextPage{
	width: 33%;
	padding: 3% 0;
}
.topPage{
	border-left: 1px solid #505357;
	border-right: 1px solid #505357;

}
.prevPage::before{
	content: "＜";
	position: absolute;
	left: 5%;
}
.nextPage::after{
	content: "＞";
	position: absolute;
	right: 5%;
}
@media screen and (max-width: 767.98px) {
	.pagerBlock{
		font-size: 12px;
	}
	.prevPage::before{
		left: 0;
	}
	.nextPage::after{
		right: 0;
	}
}





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% 50%;
	}
	.cont04 .slider::after{
		content: '';
		display: inline-block;
		width: 130px;
        height: 90px;
		background-image: url(../img/poinko.png);
		background-size: contain;
		position: absolute;
		bottom: -116%;
		right: -10%;
	}
}












.slider-2 .slick-slide {
	width: 600px;
	height: 400px;
	margin: 0 40px;
	position: relative;
	overflow: hidden;
  }
  .slider-2 .slick-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  .slider-2 .slick-arrow {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
	border: none;
	outline: none;
	font-size: 0;
	position: absolute;
	top: 180px;
	z-index: 1;
	filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  }
  .slider-2 .slick-arrow::before {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	border: 1px solid #09000d;
	border-width: 3px 3px 0 0;
	position: absolute;
	top: 24px;
	transform: rotate(45deg);
  }
  .slider-2 .slick-next {
	right: 0;
  }
  .slider-2 .slick-prev {
	left: 0;
  }
  .slider-2 .slick-next::before {
	left: 20px;
  }
  .slider-2 .slick-prev::before {
	border-width: 0 0 3px 3px;
	right: 22px;
  }
  .dots-2 .slick-dots {
	text-align: center;
  }
  .dots-2 .slick-dots li {
	display: inline-block;
  }
  .dots-2 .slick-dots button {
	display: block;
	width: 10px;
	height: 10px;
	margin: 6px;
	font-size: 0;
	padding: 0;
	border: 0;
	outline: none;
	cursor: pointer;
	background: #bcbcbc;
	border-radius: 50%;
  }
  .dots-2 .slick-dots .slick-active button {
	background: #0a467d;
  }
