@charset "utf-8";

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

	CSS Document
	file name : default.css
 
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

* {
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
html,body{
	padding:0;
	margin:0;
	overflow-x:hidden !important;
	font-feature-settings: "palt" 1;
}
html{
	font-size: 62.5%;
}
body {
	font-family: 'Lato',"嗄ゴシック悶", "Yu Gothic", YuGothic, "ヒラギノ叔ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
	font-size: 1.5rem;
	line-height:2;
	letter-spacing:0.1em;
	color:#111;
	text-align: justify;
	background: #fff;
	
	height: 100%;
	width: 100%;
 }
@media screen and (max-width: 1200px) {
	body {
		font-size: 1.3rem;
		line-height:1.8;
	 }
}
@media screen and (max-width: 599px) {
	body {
		font-size: 1.1rem;
		line-height:1.8;
	 }
	img{
		max-width:100%;
	}
}
 
 
/*sp*/
.sp{
	display:none;
}
.pc{
	display:block;
}

@media screen and (max-width: 599px) {
	.pc{
		display:none;
	}
}
@media screen and (max-width: 540px) {
	.sp{
		display:block;
	}
}

/*top*/
#topcontrol{
	background:url(/opencampus2021/lib/img/pagetop.png) no-repeat;
	width:35px;
	height:35px;
	opacity:1;
	background-size:auto 100%;
}
@media screen and (max-width: 599px) {
	#topcontrol{
		width:30px;
		height:30px;
		bottom: 20px !important;
		right:20px !important;
	}
}


/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

    ALL
	
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td ,*{
	margin:0;
	padding:0;
}
figure{
	margin:0;
	padding:0;
	line-height:1;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
p{
	margin:0;
	padding:0;
}
img {
	border:0;
}
ol, ul {
	list-style:none;
}
ol{
	margin-left: 25px;
}


/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

    PH ANIMATION
	
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

.scale {
	position:relative;
	overflow:hidden;
}
.scale a:hover{
	opacity:1;
}
.scale a img{
	-webkit-transition: all 650ms cubic-bezier(0.645, 0.045, 0.355, 1);
	-moz-transition: all 650ms cubic-bezier(0.645, 0.045, 0.355, 1);
	-ms-transition: all 650ms cubic-bezier(0.645, 0.045, 0.355, 1);
	-o-transition: all 650ms cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 650ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
.scale a:hover img{
	-webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -o-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}
.scale a:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
	opacity:0;
    z-index: 10;
	transition: all 0.6s ease;
}
.scale a:hover:before {
	opacity:0.3;
}



.move{
	overflow:hidden;
	position:relative;
}
.move figure::before,
.move figure::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.move figure:before {
	background-color: #fce9f2;
	-webkit-transform-origin: left;
	-ms-transform-origin: left;
	transform-origin: left;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
	transition: -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
	transition: transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
	transition: transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53),
		-webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
	backface-visibility:hidden;
}
.move figure:after {
	background-color: #fff;
	-webkit-transform-origin: left;
	-ms-transform-origin: left; transform-origin: left;
	-webkit-transform: scaleX(0) translateX(0);
	-ms-transform: scaleX(0) translateX(0);
	transform: scaleX(0) translateX(0);
	-webkit-transition: -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
	transition: -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
	transition: transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
	transition: transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53),
		-webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
	backface-visibility:hidden;
}
.move.on figure:before {
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
}
.move.on figure:after {
	-webkit-transform: scaleX(1) translateX(101%);
	-ms-transform: scaleX(1) translateX(101%);
	transform: scaleX(1) translateX(101%);
}



/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

    LIST
	
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

li{
	list-style:none;
}
ol.list li{
	list-style:decimal;
	margin-left: 25px;
}

	

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

    リンク、リンクカラ`、{
	
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

a:link{
    color: #333;
	text-decoration:none;
	cursor:pointer !important;
	-webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -o-transition: 0.7s;
    -ms-transition: 0.7s;
    transition: 0.7s;
}
a:visited{
    color: #333;
}
a:active{
	color: #333;
}
a:hover{
    color: #aaa;
	opacity:0.6;
    text-decoration:none;
}


/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

    h1 - h6
	
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

h1,h2,h3,h4,h5,h6{
	line-height:1.6;
	color: #222;
}


