@charset "UTF-8";

/*== pagetitle01
======================================================================*/
.pagetitle01 {
	background: #EEF2F9;
	position: relative;
}

.pagetitle01__text {
	text-align: center;
	max-width: 1300px;
	padding: 45px 20px 20px;
	margin: 0 auto;
}

.pagetitle01__text--en {
	font-size: 20px;
	display: block;
}

.pagetitle01__text--ja {
	font-size: 45px;
	line-height: 1.6;
	display: block;
}

@media screen and (min-width:1024px) {
	.pagetitle01__text {
		padding: 50px 20px 20px;
	}

	.pagetitle01__text--en {
		font-size: 25px;
	}

	.pagetitle01__text--ja {
		font-size: 56px;
	}
}



/*== breadcrumbs
======================================================================*/
.breadcrumbs {
	background: #EEF2F9;
}

.breadcrumbs__list {
	padding: 15px 20px 20px;
	max-width: 100%;
	margin: 0 auto;
}

.breadcrumbs__list-item {
	font-size: 12px;
	line-height: 1.2;
	padding-right: 1.25em;
	position: relative;
	display: inline-block;
}

.breadcrumbs__list-item,
.breadcrumbs__list-item a {
	color: #222;
}

.breadcrumbs__list-item a::after {
	content: ">";
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
	right: .25em;
}

@media screen and (min-width:1024px) {
	.breadcrumbs__list {
		padding: 15px 30px 20px;
	}

	.breadcrumbs__list-item {
		font-size: 14px;
	}
}



/*== pagenation
======================================================================*/
.pagenation {
	max-width: 1300px;
	margin: 60px auto 90px;
}

.pagenation__list {
	border-top: 1px solid #222;
	padding-top: 30px;
	display: flex;
	justify-content: center;
}

.pagenation__numbers-list{
	display: flex;
	justify-content: center;
}

.pagenation__item-prev {
	margin-right: 10px;
}

.pagenation__item-next {
	margin-left: 10px;
}

.pagenation__btn-numbers{
	display: flex;
	justify-content: center;
	align-items: center;
}

.pagenation__item + .pagenation__item {
	margin-left: 10px;
}

.pagenation__btn-prev,
.pagenation__btn-next {
	position: relative;
	width: 40px;
	height: 50px;
	background: #ccc;
}

.pagenation__btn-prev::after,
.pagenation__btn-next::after {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	border-top: 2px solid #222;
	border-right: 2px solid #222;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -3px;
	margin-left: -5px;
	transition: all ease .3s;
}

.pagenation__btn-prev::after{
	transform: rotate(225deg);
}

.pagenation__btn-next::after{
	transform: rotate(45deg);
}

.pagenation__btn-numbers {
	width: 40px;
	height: 50px;
	color: #222;
	background: #ccc;
}

.pagenation__item--current .pagenation__btn-numbers{
	background: #222;
	color: #ffffff;
}

.pagenation__item-ellipsis{
	padding: 6px 5px;
}

@media screen and (min-width:1024px) {

}



/*== common__title01
======================================================================*/
.common__title01 {
	font-size: 24px;
	font-weight: bold;
	margin: 0 0 5px;
}

@media screen and (min-width:1024px) {
	.common__title01 {
		font-size: 30px;
	}
}



/*== common__title02
======================================================================*/
.common__title02{
	text-align: center;
}

.common__title02--en{
	color: #2472E2;
	font-size: 20px;
	display: block;
}

.common__title02--ja{
	font-size: 35px;
	font-weight: 900;
	line-height: 1.3;
	display: block;
}


@media screen and (min-width:1024px) {
	.common__title02--en{
		font-size: 25px;
	}

	.common__title02--ja{
		font-size: 55px;
	}
}



/*== common__title03
======================================================================*/
.common__title03{
	font-size: 20px;
	font-weight: 900;
	border-bottom: 1px solid #222;
	padding-bottom: 5px;
}

@media screen and (min-width:1024px) {
	.common__title03{
		font-size: 25px;
		padding-bottom: 5px;
	}
}


/*== common__title04
======================================================================*/
.common__title04{
	text-align: center;
}

.common__title04--sub{
	color: #fff;
	font-size: 20px;
	font-weight: 900;
	background: #222;
	padding: 5px 20px;
	display: inline-block;
}

.common__title04--main{
	font-size: 35px;
	font-weight: 900;
	line-height: 1.3;
	margin-top: 15px;
	display: block;
}

@media screen and (min-width:1024px) {
	.common__title04--sub{
		font-size: 25px;
	}

	.common__title04--main{
		font-size: 50px;
	}
}




/*== common__btn01
======================================================================*/
.common__btn01 {
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	line-height: 65px;
	background: #222;
	width: 100%;
	max-width: 280px;
	padding: 0 20px;
	margin: 0 auto 15px;
	border-radius: 33px;
	display: block;
	cursor: pointer;
}

@media screen and (min-width:1024px) {
	.common__btn01 {
		max-width: 400px;
		line-height: 80px;
		border-radius: 40px;
	}
}