@charset "UTF-8";
/* 
CSS Document 
ページ共通CSS
*/

/*====================================
large pc 941px - max
pc 813px - 940px
tb 415px - 812px
====================================*/

.pc,.tb,.sp {display:none;}

@media(min-width:813px) {
	.pc {
		display:block !important;
	}
}
@media(min-width:415px) and (max-width:812px) {
	.tb {
		display:block !important;
	}
}
@media(max-width:414px) {
	.sp {
		display:block !important;
	}
}

.gradient {
	background: linear-gradient(135deg, #bfd7fd 0%,#dd8ab7 50%, #bfd7fd 100%);
	background-size:200% 200%;
	animation:gradientAnime 5s infinite alternate cubic-bezier(.46,.03,.52,.96);
}
.gradient.vertical {
	animation:gradientAnimeVertical 5s infinite alternate cubic-bezier(.46,.03,.52,.96);
}

@keyframes gradientAnime {
	0% {
		background-position: 0px 0px;
	}
	100% {
		background-position: 100% 0;
	}
}
@keyframes gradientAnimeVertical {
	0% {
		background-position: 0px 0px;
	}
	100% {
		background-position: 0px 100%;
	}
}

.orgContents {
	line-height: 1.6;
}

.orgContents a:hover {
	text-decoration: none;
	opacity: 1;
}

.orgContents * {
	box-sizing: border-box;
}

.orgContents > * {
	padding-top: 70px;
	padding-left: 20px;
	padding-right: 20px;
}

@media(max-width:812px) {
	.orgContents > * {
		padding-top: 45px;
		padding-left: 4%;
		padding-right: 4%;
	}
}

.orgContents h2,
.orgContents h3 {
	text-align: left;
}
.orgContents img {
	max-width:100%;
	vertical-align: top;
}

.orgContents section.sec {
	padding-top: 100px;
	padding-bottom: 100px;
}

@media(max-width:812px) {
	.orgContents section.sec {
		padding-top: 50px;
		padding-bottom: 50px;
		background: #fff;
		position: relative;
		z-index: 1;
	}
}

.boxButton {
	display:block;
	border:1px solid #000;
	font-size: 12px;
	padding:1.5em 1em;
	width:200px;
	text-align: center;
	transition: all 0.3s linear;
	opacity: 1 !important;
}
a:hover .boxButton,
.boxButton:hover {
	background: #000;
	color:#fff;
	text-decoration: none;
}

.boxButton.black {
	background: #404040;
	color:#fff;
}
.boxButton.black:hover {
	background: #fff;
	color:#000;
	text-decoration: none;
}

.boxButton.white {
	border-color:#fff;
	color:#fff;
}

a:hover .boxButton.white,
.boxButton.white:hover {
	background: #fff;
	color:#000;
}

.contentsNav {
	display:flex;
	justify-content: center;
	padding-top: 0;
}
.contentsNav > * {
	margin:0 1em;
}

.mincho {
	font-family: "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.secTit {
	font-size: 32px;
	text-align: center !important;
	margin-bottom: 1em;
}

@media(max-width:812px) {
	.secTit {
		font-size:20px;
	}
}

.secLead {
	text-align: center;
	margin-bottom:4em;
	line-height: 2;
}

.constBox {
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
}

.containerType02 .inner {
	max-width:1080px;
	padding:70px 6%;
	border:1px solid #000;
	margin: 0 auto;
}
.containerType02 .inner > .tit {
	font-size: 32px;
	text-align: center;
}
.containerType02 .inner > .stit {
	font-size: 22px;
	text-align: center;
	font-weight: normal;
	letter-spacing: 0.3em;
}
.containerType02 .inner ol li {
	margin-top: 70px;
	display:flex;
	align-items: center;
	justify-content: space-between;
}
.containerType02 .inner ol li > * {
	width:48%;
}
.containerType02 .inner ol li .num {
	font-size: 40px;
}
.containerType02 .inner ol li .tit {
	font-size: 20px;
}
.containerType02 .inner ol li .tit:first-child {
		margin-top: 0.5em;
	}
.containerType02 .inner ol li .desc {
	font-size: 14px;
	margin-top: 1.5em;
}

.containerType02 .inner ol li:nth-child(2n),
.containerType02 .inner ol li:nth-child(2n) .tit {
	text-align: right;
}
.containerType02 .inner ol li:nth-child(2n) .det {
	order:1;
}

@media(min-width:813px) {
	.containerType02 .inner ol li.center {
		flex-direction: column;
		margin-left: auto;
		margin-right: auto;
		max-width:440px;
	}
	.containerType02 .inner ol li.center > * {
		width:100%;
	}
	.containerType02 .inner ol li.center .det {
		order:1;
	}
}

@media(max-width:812px) {
	.containerType02 .inner {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.containerType02 .inner > .tit {
		font-size: 20px;
	}
	.containerType02 .inner > .stit {
		font-size: 18px;
	}
	.containerType02 .inner ol li {
		flex-direction: column;
		margin-top: 30px;
	}
	.containerType02 .inner ol li > * {
		width:100%;
	}
	.containerType02 .inner ol li .num {
		font-size: 25px;
	}
	.containerType02 .inner ol li .tit {
		font-size: 17px;
	}
	.containerType02 .inner ol li .desc {
		font-size: 12px;
		margin-top: 1em;
	}
	.containerType02 .inner ol li .det {
		order:1;
	}
	
}

