@charset "utf-8";

/*//////////////////////////////////////////////////////////////////////////////

	共通

//////////////////////////////////////////////////////////////////////////////*/


/*------------------------------------------------------------------------------

	変数

------------------------------------------------------------------------------*/

:root {
	--main-color: 245,158,177;
	--pt-color: 101,66,161;
	--ot-color: 55,97,169;
	--st-color: 0,157,224;
	--at-color: 40,146,140;
	--hn-color: 237,130,0;
	--hs-color: 218,55,38;
	--nr-color: 233,81,130;
	--sw-color: 62,173,52;
}

/*------------------------------------------------------------------------------

	image replacement

------------------------------------------------------------------------------*/

#content > header h1.logo,
#content > header p.logo a {
	display: block;
	overflow: hidden;
	outline: none;
	clear: both;
	text-indent: -9999px;
	white-space: nowrap;
	background-repeat: no-repeat;
	background-size: contain;
}


/*------------------------------------------------------------------------------

	全体

------------------------------------------------------------------------------*/

/*	学科別の色
------------------------------------------------------------------------------*/

/*	 年別	 */

.list h1,
.list main a,
.year h1,
.year main a {
	color: rgba(var(--main-color),1);
}

.list .syllabus,
.year .syllabus {
  background: rgba(var(--main-color),.8);
}

/*	 理学療法学科	 */

.pt h1,
.pt main a {
	color: rgba(var(--pt-color),1);
}

.pt #content h2 {
  background: rgba(var(--pt-color),.2);
}

.pt .syllabus {
  background: rgba(var(--pt-color),.5);
}

/*	 作業療法学科	 */

.ot h1,
.ot main a {
	color: rgba(var(--ot-color),1);
}

.ot #content h2 {
  background: rgba(var(--ot-color),.2);
}

.ot .syllabus {
  background: rgba(var(--ot-color),.5);
}

/*	 言語聴覚学科	 */

.st h1,
.st main a {
	color: rgba(var(--st-color),1);
}

.st #content h2 {
  background: rgba(var(--st-color),.2);
}

.st .syllabus {
  background: rgba(var(--st-color),.5);
}


/*	 義肢装具自立支援学科	 */

.at h1,
.at main a {
	color: rgba(var(--at-color),1);
}

.at #content h2 {
  background: rgba(var(--at-color),.2);
}

.at .syllabus {
  background: rgba(var(--at-color),.5);
}

/*	 健康栄養学科	 */

.hn h1,
.hn main a {
	color: rgba(var(--hn-color),1);
}

.hn #content h2 {
  background: rgba(var(--hn-color),.2);
}

.hn .syllabus {
  background: rgba(var(--hn-color),.5);
}

/*	 健康スポーツ学科	 */

.hs h1,
.hs main a {
	color: rgba(var(--hs-color),1);
}

.hs #content h2 {
  background: rgba(var(--hs-color),.2);
}

.hs .syllabus {
  background: rgba(var(--hs-color),.5);
}

/*	 看護学科	 */

.nr h1,
.nr main a {
	color: rgba(var(--nr-color),1);
}

.nr #content h2 {
  background: rgba(var(--nr-color),.2);
}

.nr .syllabus {
  background: rgba(var(--nr-color),.5);
}

/*	 社会福祉学科	 */

.sw h1,
.sw main a {
	color: rgba(var(--sw-color),1);
}

.sw #content h2 {
  background: rgba(var(--sw-color),.2);
}

.sw .syllabus {
  background: rgba(var(--sw-color),.5);
}

/*	 ファイルがないとき	 */

main a[href*="/.pdf"] {
	color: #999;
}

/*	site_column
------------------------------------------------------------------------------*/

.site_column {
	position: relative;
	margin: 0 auto;
	width: 86%;
	max-width: 1200px;
}


/*	body・textarea・input
------------------------------------------------------------------------------*/
body {
    background-color: #E5E5E5;
	word-break: break-word;	
}

div#content {
	padding: 70px;
	max-width: 1250px;
	margin: auto;
	background-color: #FFF;
	box-sizing: border-box;
}

body,
textarea,
input,
select {
	line-height: 1.8;
	font-family: YuGothic,"游ゴシック","メイリオ",Meiryo,sans-serif,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,verdana,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
	font-size: 16px;
	font-weight: 500;
	color: #333;
  	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
}

textarea,
input,
select {
	-webkit-appearance: none;
}

@media screen and (max-width: 1024px) {

body,
textarea,
input  {
	font-size: 14px;
}

}

@media screen and (max-width: 767px) {

body,
textarea,
input {
	font-size: 3.2vw;
}

}


/*	見出し
------------------------------------------------------------------------------*/

h1,h2,h3,h4,h5,h6 {
	line-height: 1.4;
}

/*	アンカー
------------------------------------------------------------------------------*/

a,
a:hover,
a:visited {
	outline: none;
	color: rgba(var(--main-color),1);
}

a {
	transition: opacity .4s;
}

a:hover {
	text-decoration: none;
	opacity: .4;
	transition: color .4s;
}

main a,
main a:visited {
	text-decoration: underline;
}

@media screen and (max-width: 767px) {

a:hover {
	opacity: 1;
}

a[href^="tel:"] {
	text-decoration: underline;
}

}

@media screen and (min-width: 768px){
	
a[href^="tel:"] {
	pointer-events: none;
	text-decoration: none;
	color: #333;
}

a[href^="tel:"]:hover {
	cursor: default;
	opacity: 1;
}

}


/*	リスト
------------------------------------------------------------------------------*/

main ol,
main ul {
	margin: 1em 0 1em 1.5em;
}

main ul {
	list-style: disc;
}

main ol {
	display: table;
	margin: 0;
	padding: 0;	
}

main ol li {
	list-style-type: decimal;
	margin: 0;
	padding: 0;
	display: table-row;
	counter-increment: table-ol;
}

main ol li:before {
	width: 2em;
	content: counter(table-ol) ".";
	display: table-cell;
	padding-right: 0.4em;
	text-align: right;
	font-weight: bold;
}

main ol li:after {
	content: "";
	display: block;
	margin-bottom: 1em;
}

main ol li:last-of-type:after {
	margin-bottom: 0;
}

main li {
	margin-bottom: .5em;
	line-height: 1.4;
}


/*	テーブル
------------------------------------------------------------------------------*/

table {
	width: 100%;
}

th,
td {
	line-height: 1.6;
}

th {
	font-weight: bold;
}


/*	その他
------------------------------------------------------------------------------*/

em {
	font-style: normal;
}

figcaption {
	margin-top: .5em;
	text-align: center;
	font-size: .875em;
}

img {
	vertical-align: bottom;
}

address {
	font-style: normal;
}


/*	共通設定
------------------------------------------------------------------------------*/

main p,
main dd {
	margin-bottom: .5em;
	text-align: justify;
}

main li:last-child,
main p:last-of-type,
main dd:last-of-type {
	margin-bottom: 0;
}


/*	独自class
------------------------------------------------------------------------------*/

.note {
	margin-left: 0;
}

.note li {
	display: block;
	position: relative;
	padding-left: 1em;
	font-size: .875em;
}

.note li::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}

.l {
	display: block;
}

#noscript {
	padding: 1em;
	line-height: 1;
	text-align: center;
	color: #FFF;
	background-color: #F00;
}

@media screen and (max-width: 767px) {

.l {
	display: inline;
}

}




/*------------------------------------------------------------------------------

	header

------------------------------------------------------------------------------*/

#content > header .logo {
	max-width: 200px;
	aspect-ratio: 4/1;
}

#content > header h1.logo,
#content > header p.logo a {
	background-image: url(../img/logo.svg);
	background-size: cover;
	background-repeat: no-repeat;
	border: 1px solid #CCC;
}

#content > header p.logo a {
	display: block;
	height: 100%;
}


/*------------------------------------------------------------------------------

	menu

------------------------------------------------------------------------------*/

/*	メニュー本体開閉CSS
　　スマホサイズでcloseした時のdisplay:none を、再びPCサイズにした時、
　　非表示になるのを回避
------------------------------------------------------------------------------*/

@media screen and (min-width: 768px) {

#content > header .menu {
	display: block !important;
}

}

@media screen and (max-width: 767px) {

#content > header .menu {
	display: none;
}

}


/*	メニュー本体
------------------------------------------------------------------------------*/

@media screen and (max-width: 767px) {
	
#content > header .menu {
	overflow-y: scroll;
	position: fixed;
	flex-direction: column;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(var(--main-color),.9);
	z-index: 9999;
}
		
}


/*	開閉ボタン
------------------------------------------------------------------------------*/

.menu_button {
	display: none;
}

@media screen and (max-width: 767px) {
	
.menu_button,
.menu_button span {
	display: inline-block;
	transition: transform .4s, display .4s, background .4s, top .4s, bottom .4s, opacity .4s;
	box-sizing: border-box;
}
	
.menu_button {
	position: fixed;
	display: block;
	z-index: 9999;
	right: 3vw;
	top: 3vw;
	width: 12vw;
	height: 12vw;
	background-color: darkolivegreen;
}
	
.menu_button:hover {
	cursor: pointer;
}

.menu_button em {
	position: absolute;
	left: 0;
	top: 1.25vw;
	width: 100%;	
	font-style: normal;
	font-weight: bold;
	font-size: 2vw;	
	color: #FFF;
	text-align: center;
}

.menu_button em::before {
	content: 'MENU';
}

.menu_button span {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 50%;
	height: .6vw;
	background-color: #FFF;
	border-radius: 100em;
}
	
.menu_button.active {
	background-color: rgba(255,255,255,1);
}

.menu_button.active em::before {
	content: 'CLOSE';
	color: rgba(var(--main-color),1);
}

.menu_button.active span {
	height: .6vw;
	background-color: rgba(var(--main-color),1);
}

.menu_button span:nth-of-type(1) { top: 5.5vw;}
.menu_button span:nth-of-type(2) { top: 7vw;}
.menu_button span:nth-of-type(3) {	top: 8.5vw;}

.menu_button.active span:nth-of-type(1) { top: 7vw; transform: translateX(-50%) rotate(-315deg);}
.menu_button.active span:nth-of-type(2) { opacity: 0;}
.menu_button.active span:nth-of-type(3) { top: 7vw; transform: translateX(-50%) rotate(315deg);}

}


/*------------------------------------------------------------------------------

	main

------------------------------------------------------------------------------*/

main #xxxxx {
	
}

/*------------------------------------------------------------------------------

	footer

------------------------------------------------------------------------------*/

#content > #footer {
	border-top: 1px dashed #CCC;	
}

#content > #footer p {
	text-align: center;
}


/*	 page_top
------------------------------------------------------------------------------*/
#page_top {
    position: fixed;
	right: 3vw;
    bottom: 3vw;
	z-index: 1000;
	width: 10vw;
	height: 10vw;	
	max-width: 60px;
	max-height: 60px;
    transition: opacity .6s;
	background-color: #FFF;
	opacity: 0;
}

.moved #page_top {
	opacity: .7;
}

#page_top a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(var(--main-color),1);
	text-decoration: none;
	cursor: default;
}

.moved #page_top a {
	cursor: pointer;
	opacity: 1;
}

#page_top a::after {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%,-50%)  rotate(45deg);
	content: "";
	display: block;
	width: 30%;
	height: 30%;
	border-top: 1px solid #FFF;
	border-left: 1px solid #FFF;
}

.syllabus {
	padding: 1em;
	display: block;
	margin: 0 auto;
	background: #AAA;
	text-align: center;
	max-width: 1250px;
	box-sizing: border-box;
	font-weight: bold;
	color: #FFF;
	font-size: 1.3em;
}

#content section {
	margin-bottom: 2em;
}

#content h1 {
	font-size: 2.25em;
}

.list ul,
.year ul {
	margin: 0;
	padding-left: 1.2em;
}

/*	　一覧ページ
------------------------------------------------------------------------------*/

.list ul {
	margin-bottom: 2em;
}

/*	　年別ページ
------------------------------------------------------------------------------*/


.year #content #header {
	margin-bottom: 1em;
}

.year #content h2 {
	padding: 0;
	margin: 0 0 1em;
	font-size: 1.1em;
}

.year .classification {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

.year .basic,
.year #content section {
	width: 32%;
	margin-right: 2%;
	background-color: rgba(var(--main-color),.1);
	padding: 1.5em 1.2em;
	box-sizing: border-box;
}

.year #content section:last-child {
	margin-right: 0;	
}

@media screen and (max-width: 767px) {
	
.year .classification {
	display: block;
}
.year .basic,
.year #content section {
	width: 100%;
	margin-right: 0;
	margin-bottom: 1em;
}
	
}


/*	　学科個別ページ
------------------------------------------------------------------------------*/

#content h1 span {
	display: block;
	font-size: .7em;
}

.detail #revision {
  padding: 0.5em;
  line-height: 1.3;
  vertical-align: middle;
}

.detail #revision::before {
  content: '●';
  color: #e60012;
  margin-right: 8px;
}

.detail #revision a {
  color: #e60012;
}

.detail #content h2 {
  padding: 0.5em;
  line-height: 1.3;
  vertical-align: middle;
}

.detail #content h2:before {
  content: '●';
  color: white;
  margin-right: 8px;
}

.detail #content header {
	display: flex;
	margin-bottom: 2em;
}

.detail #content header span {
	margin-left: 1em;
}

.detail #content #header {
	display: inline-block;
	max-width: 50%;
	margin-right: 1.5em;
}

#content #header .pankuzu {
	font-size: .8em;
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

#content #header .pankuzu li {
	margin: 0 0 0 1.5em;
}

#content #header .pankuzu li::after {
	position: absolute;
	content: '>';
	margin: 0 .5em;
}

#content #header .pankuzu a,
#content #header .pankuzu span {
	position: relative;
}

#content #header .pankuzu li:first-child {
	margin-left: 0;
}

#content #header .pankuzu li:last-child::after {
	display: none;
}

#content #header p {
	margin: 0;
}

#content #header h1 {
	margin-top: 0;
}

.year #content #header h1,
.detail #content #header h1 {
	margin-bottom: 0;
}

#content .menu,
#content .index_list ul {
	display: flex;
	flex-wrap: wrap;
}

#content .group .menu li {
	margin: 0 2em 1em 0;
	font-size: 1.1em;
	font-weight: bold;
	line-height: 1.4;
}

#content .group li span {
	margin-left: .5em;
	font-size: .8em;
}

#content .index_list {
	position: relative;
	display: flex;
	padding: 1.5em;
	border: 1px dashed #CCC;
	align-items: center;
	max-width: 650px;
}

#content .index_list ul {
	margin-top: 2em;
	margin-bottom: 0;
	padding-left: 1em;
	box-sizing: border-box;
}

#content .index_list ul li {
	position: relative;
	margin-right: 2.5em;
	list-style: none;
}

#content .index_list ul li::before {
	position: absolute;
    top: .25em;
    left: -1.25em;
    content: "";
    border-top: 2px solid #CCC;
    border-right: 2px solid #CCC;
    width: .5em;
    height: .5em;
    transform: rotate(-225deg);
}

#content .index_list .nav {
	padding: .25em 1em;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	background: #555;
	color: #FFF;
}


@media screen and (max-width: 1170px) {
	
.detail #content #header {
    display: block;
    max-width: 100%;
    margin-right: 0;
}
	
.detail #content header {
	display: block;
}
	
#content #header .pankuzu {
	margin-bottom: 1.5em
}
	
#content .index_list {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}
	
}

@media screen and (max-width: 767px) {
div#content {
    padding: 2em;
}

#content #header .pankuzu {
	font-size: 1em;
}
	

	
}
