@charset "UTF-8";

/*------------ GrobalNavi ------------*/
.fixed{
	position: fixed;
	width: 960px;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	z-index: 10000;
	}

.top-margin {
	padding-top: 180px;
	}

.navi-wrap {
	width: 100%;
	background-color: rgba(255,255,255,0.85);
	}

.navi-bg {
	background: url(../img/title_bg.png) center top no-repeat;
	}

.navi-border {
	border-bottom: 2px solid #9fa0a0;
	}

.navi-inner {
	width: 960px;
	margin: 0 auto;
	}

.pc-ttl {
	float: left;
	width: 960px;
	min-height: 137px;
	text-align: center;
	margin-top: 44px;
	}

#globalNavi{
	width: 960px;
	margin: 0 auto;
	}

/*メニュー部分*/
nav{
	display: none;
	position: absolute;
	width: 960px;
	background: #fff;
	background-color: rgba(255,255,255,0.85);
	left: 50%;
	transform: translate(-50%, 0);
	padding-bottom: 40px;
	box-shadow: 5px 5px 18px 3px rgba(0,0,0,0.2);
	z-index: 10000;
	}

nav .navi-ttl{
	text-align: center;
	margin: 40px auto 0;
	}

nav .navi-ttl img {
	width: 434px;
	}

nav ul{
	width: 520px;
	display: block;
	margin: 25px auto 0;
	padding-left: 160px;
	}

nav li{
	float: left;
	width: 260px;
	font-size: 24px;
	font-weight: 900;
	margin-top: 28px;
	}

nav a {
	color: #000;
	transition: 0.5s;
	}

nav a:hover {
	color: #009944;
	}

nav a.window {
	display: inline-block;
	color: #ff0000;
	background: url(../img/window.gif) right 0.6rem no-repeat;
	padding-right: 25px;
	transition: 0.5s;
	}

nav a.window:hover {
	-webkit-transform: scale(1.1,1.1);
	transform: scale(1.1,1.1);
	}

/*開閉ボタン*/
#toggle{
	display: block;
	width: 30px;
	height: 30px;
	position: relative;
	top: 21px;
	left: 908px;
	z-index: 100;
	cursor: pointer;
	}

#toggle div {
	position: relative;
	}

#toggle span{
	display: block;
	position:absolute;
	width: 100%;
	height: 3px;
	background: #009944;
	left: 0;
	transition: 0.3s ease-in-out;
	}

#toggle span:nth-child(1){
	top: 0px;
	}

#toggle span:nth-child(2){
	top: 8px;
	}

#toggle span:nth-child(3){
	top:16px;
	}

/*開閉ボタンopen時*/
.open #toggle span:nth-child(1) {
	top: 12px;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	}

.open #toggle span:nth-child(2) {
	width: 0;
	left: 50%;
	}

.open #toggle span:nth-child(3) {
	top: 12px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	}

/*------------ 学部共通 ------------*/
.cat-nyusan {
	text-align: center;
	margin-top: 53px;
	}

.cat-labre {
	text-align: center;
	margin-top: 51px;
	}

h1 {
	text-align: center;
	}

p.catch {
	font-size: 20px;
	line-height: 48px;
	font-weight: 900;
	color: #0059ff;
	text-align :center;
	margin-top: 52px;
	}

.topics-start {
	text-align :center;
	margin: 60px auto 54px;
	}

.topics {
	width: 960px;
	box-sizing: border-box;
	margin-bottom: 90px;
	}

.subttl {
	font-size: 24px;
	line-height: 45px;
	font-weight: 900;
	text-align :center;
	margin-top: 40px;
	}

.topics-wrap {
	margin-top: 36px;
	padding-bottom: 40px;
	}

.topic-cont {
	padding-bottom: 74px;
	}

.topic-cont p {
	font-size: 18px;
	line-height: 40px;
	margin-top: 40px;
	padding: 0 80px;
	}

.topic-cont figure {
	text-align: center;
	}

h3 {
	width: 556px;
	font-size: 28px;
	text-align: center;
	margin: 0 auto 34px;
	padding: 15px 0;
	}

/* アコーディオン */
label {
	cursor :pointer;
	}

.open-btn {
	display: inline-block;
	}

.close-btn {
	display: inline-block;
	}

.open01 {
	position: relative;
	bottom: 40px;
	left: 885px;
	}

.close01 {
	position: relative;
	bottom: 40px;
	left: 885px;
	}

input {
	display: none;
	}

.hidden_show {
	height: 0;
	padding: 0;
	overflow: hidden;
	opacity: 0;
	transition: 0.4s;
	}

input:checked ~ .hidden_show {
	height: auto;
	opacity: 1;
	}

input:checked ~ .open-btn {
	display: none;
	}


/*------------ SP ------------*/
@media screen and (max-width: 640px) {

	/*------------ GrobalNavi ------------*/
	.fixed{
		width: 100%;
		}

	.top-margin {
		padding-top: 7.5vw;
		}

	.navi-wrap {
		background-color: rgba(255,255,255,0.85);
		}

	.navi-bg {
		background: none;
		}

	.navi-inner {
		width: 100%;
		}

	.sp-ttl {
		float: left;
		width: 34vw;
		min-height: 5.5vw;
		margin: 2vw 0 3vw 10vw;
		}

	#globalNavi{
		width: 100%;
		}

	/*メニュー部分*/
	nav{
		width: 100%;
		padding-bottom: 8vw;
		box-shadow: 0 2vw 3vw 1vw rgba(0,0,0,0.2);
		}

	nav .navi-ttl{
		width: 67.5vw;
		margin: 8vw auto 0;
		}

	nav ul{
		width: auto;
		display: block;
		margin: 0 auto;
		padding: 0;
		}

	nav li{
		float: none;
		width: auto;
		text-align: center;
		font-size: 2rem;
		margin-top: 2.2rem;
		}

	nav a {
		transition: none;
		}

	nav a.window {
		background: url(../img/sp/window.gif) right 0.7rem no-repeat;
		background-size: 4vw auto;
		padding-right: 5.2vw;
		transition: none;
		}

	/*開閉ボタン*/
	#toggle{
		left: 92vw;
		width: 4.6vw;
		height: 4.6vw;
		top: 2.1vw;
		}

	/*------------ 学部共通 ------------*/
	.cat-nyusan {
		margin-top: 8.2vw;
		}

	.cat-labre {
		margin-top: 7.7vw;
		}

	p.catch {
		font-size: 1.6rem;
		line-height: 2.8rem;
		}

	.topics-start {
		margin: 11vw auto 6vw;
		}

	.topics {
		width: 84vw;
		margin: 0 auto;
		margin-bottom: 12vw;
		}

	.subttl {
		font-size: 1.3rem;
		line-height: 2.4rem;
		margin-top: 3.8vw;
		}

	.topics-no {
		width: 20vw;
		}

	.topics-wrap {
		margin-top: 4.2vw;
		padding-bottom: 4vw;
		}

	.topic-cont {
		padding-bottom: 4.5vw;
		}

	.topic-cont p {
		font-size: 1.3rem;
		line-height: 2.6rem;
		padding: 0 6vw;
		}

	.topic-cont figure img {
		width: auto;
		height: auto;
		max-width: 100%;
		max-height: 100%;
		}

	/* アコーディオン */
	.open01 {
		width: 5.7vw;
		bottom: 3vw;
		left: 74.5vw;
		}

	.close01 {
		width: 5.7vw;
		bottom: 3vw;
		left: 74.5vw;
		}

	}