@charset "utf-8";
/*----------------------------
このCSSファイルに、スタイル指定を記述する。
----------------------------*/

/* 全体のスタイル調整 */
* {
  box-sizing: border-box; /* border-box */
}

/* bodyの初期スタイル調整 */
body {
  font-size: 15.5px;
  line-height: 1.5;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; /*'Noto Sans JP', 'Open Sans', sans-serif; */
  font-weight: 400;
  color: #333;
  background-color: #fff;
 /* padding-top: 95px;*/
  

}


/* 初期スタイル調整 */
h1,
h2 {
  margin-top: 0;
  margin-bottom: 0.4em; /*タイトルと下線の余白*/
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-align: center;
  font-weight: 500;
}

h3{
  margin-top: 0;
  font-weight: 800;
  margin-bottom: 3px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-align: left;
}

h4{
  font-weight: 600;
  line-height: 1.1;
  margin-top: 10px;
  margin-bottom: 10px;
}


p {
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 0px;
  text-align: justify;
  
}


a {
  color: #666;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #000;
  text-decoration: none;
}

ul {
  margin: 1em 0;
  padding: 0;
  list-style: none;
}

ul li::before {
    content: " ";
}


img {
/*  width: 100%; */
  height: auto;
}

section {
  padding: 10px 40px; /* 40px */ 
}

/* 初期スタイル調整 ここまで */

/* 共通スタイル調整 ここから */

/*h2関連*/
.h2-title {
  position: relative;
  text-transform: uppercase;
  z-index: 100;
}

.h2-title::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: #a5d1ff;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  transform: rotate(45deg);
  z-index: -100;
}

/*テキスト関連*/
.txt-center {
  text-align: center;
}

.txt-lead {
  font-weight: 700;
}

/*ボタン関連*/
.btn {
  display: block;
  padding: 20px 35px;
  border-radius: 8px;
  margin: 0 auto;
  border: none;
}

.btn:hover,
.btn:focus {
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}


/*レイアウト関連*/
/*-------------------------------------------
 ページタイトル 例：FAQやマニュアル、問合せ
-------------------------------------------*/
.inner2 {
  width: 80%;
  background-color: #fff;
  margin: 20px auto 10px auto; 
  padding:  0px; 
  border-bottom: 1px solid #eee; 
}

@media screen and (min-width:768px) {
  .inner {
    max-width: 1200px;
  }
}


.sp-only {
  display: block;
}

.pc-only {
  display: none;
}

@media screen and (min-width:768px) {
  .sp-only {
    display: none;
  }

  .pc-only {
    display: block;
  }
}

/*-------------------------------------------
 ページ余白 例：FAQやマニュアル、問合せ
-------------------------------------------*/
.inner3 {
  width: 70%;
  background-color: #fff;
  margin: 0 auto;
  padding: 10px 0 30px; /*数値を変更 40px 0 60px*/ 
}



/* 共通スタイル調整 ここまで */

/*-------------------------------------------
 ヘッダー：通常
-------------------------------------------*/
.header1 {
	color: #fff;
	text-align: center;
	padding-top: 20px;
	background-color: #333;
}

.header2 {
	text-align: right;
	padding: 10px;
	background-color: #596680;
}


.header {
  position: sticky;
  top: 0px;
  width: 100%; 
  height: 96px;
  padding: 0px;
  background: #EEEEED;/* ヘッダの色 */
  z-index: 200;
}

.header-logo-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;

}

/*ロゴ*/
.logo-area {
  width: 120px;
  margin: 5px 0px 0px 10px;
  text-align: left;
}

@media screen and (min-width:768px) {
  .logo-area {
    width: 120px;
  }
}

/*-------------------------------------------
 ヘッダー：ナビゲーション
-------------------------------------------*/
/*ハンバーガーメニュー*/
.gnav-toggle {
  position: relative;
  margin-top: 10px;
}


/*チェックボックス等は非表示に*/
.gnav-hidden {
  display: none;
}

/*アイコンのスペース*/
#gnav-open {
  display: inline-block;
  width: 30px;
  height: 15px;
  vertical-align: middle;
}

/*ハンバーガーの形をCSSで表現*/
#gnav-open span,
#gnav-open span::before,
#gnav-open span::after {
  content: '';
  position: absolute;
  height: 3px;
  /*線の太さ*/
  width: 25px;
  /*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  cursor: pointer;
}

#gnav-open span::before {
  bottom: -8px;
}

#gnav-open span::after {
  bottom: -16px;
}

/*閉じる用の薄黒箇所*/
#gnav-close {
  display: none;
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

/*チェックがついたら表示させる*/
#gnav-input:checked ~ #gnav-close {
  display: block;
  opacity: 0.5;
}

#gnav-input:checked ~ #gnav-content {
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

/*メニューの中身*/
#gnav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  width: 70%;
  max-width: 150px;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  transition: 0.3s ease-in-out;
  transform: translateX(-105%);
}

.gnav-menu {
  display: flex;
  flex-direction: column;
  align-items: left;
  padding-top: 25px;
  text-transform: uppercase;
}

.gnav-item {
  border-bottom: 2px dotted #eee;
  margin: 5px;
  padding-bottom: 20px;
}

.gnav-item a {
  color: #fff;
  font-size: 10px;
  display: block;
  width: 150px;
  text-align: center;
}

.gnav-item a::first-line {
  font-size: 15px;
  font-weight: bold;
}

@media screen and (min-width:768px) {
  .gnav-menu {
    flex-direction: row;
    padding-top: 15px;
    margin: 0;
  }

  .gnav-item {
    border-bottom: none;
    margin: 0;
    padding-bottom: 0;
  }

  .gnav-item a {
    color: #333;
    width: 120px;
  }

  .gnav-item a:hover {
    color: #85a7cc;
  }


}

/*-------------------------------------------
 index.html トップの枠
-------------------------------------------*/
.service-area {
  padding:40px 70px 10px;
  background-color: #f4f4ff; /*全体背景 #f4f4ff*/
}

.service-content {
  display: flex;
  flex-wrap: wrap;
}

.service-item {
  flex: 70%; /*スマホ表示で枠の表示を縦に1つずつ*/
  text-align: center;
  padding: 20px 5px 20px;
  margin: 5px;
  border: 3px solid #527acc;
  border-radius: 10px;
}

.service-item img {
  width: 120px;
  margin: 0 auto;
}

@media screen and (min-width:768px) {
  .service-content {
    flex-wrap: nowrap;
    max-width: 1200px; /*1200px*/
    margin: 0 auto;
  }

  .service-item {
    flex: 1;
  }

}

/*-------------------------------------------
 NEWS ページトップのお知らせ
-------------------------------------------*/
a {
    text-decoration: none;
    color: #337ab7;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
	margin-bottom: 10px;
}

ul li::before {
    content: " ";
}


.news {
  padding: 30px 0 80px;   
  background: #f4f4ff; /*全体背景 #f4f4ff*/
}


.inner {
  width: 80%;
  background-color: #fff;
  margin: 0 auto;
  padding: 10px 0 30px; /*数値を変更 40px 0 60px*/ 
}


.sub_ttl {
  font-size: 30px;
  text-align: center;
  margin-bottom: 10px;
}

/* ここからがニュース記事のCSS */

.news_list {
  margin: 0 5%;
}

.news_list_item {
  padding: 25px 0;
  border-bottom: 1px solid #E6E6E6;
}

.news_list_item:first-child {
  border-top: 1px solid #E6E6E6;
}
.news_list_item a {
 position: relative;
 display: flex;
 padding-right: 30px;
}

.news_list_date {
  font-size: 15px;
  display: flex;
  margin-right: 15px;
  align-items: center;
}

.news_item {
  background: #F6C6A2;
  border-radius: 14px;
  width: 6em;
  /* 親要素の文字サイズを基準 */
  text-align: center;
  margin-left: 20px;
}

.arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background: #707070;
  transform: rotate(45deg);
  position: absolute;
  right: 0px;
  bottom: 2px;
}


@media screen and (max-width: 1024px) {
    .news_list_item a {
        display: block;
    }
}

@media screen and (max-width: 769px) {
    .news_list_item a  {
        font-size: 14px;
    }


}
@media screen and (max-width: 480px) {
    .arrow {
        display: none;
    }
    .news_list_item a {
        padding-right: 0;
    }
}

/*-------------------------------------------
 ページトップ
-------------------------------------------*/
.pagetop {
  text-align: right;
  padding: 5px;

  background-color: #f0f0f0;
}


/*-------------------------------------------
 フッター
-------------------------------------------*/
.foot-area {
  color: #fff;
  text-align: center;
  padding-top: 25px;
  background-color: #596680;
}

.foot-area_copy {
  color: #ccc;
  font-size: 12px;
  display: inline-block;
  width: 100%;
  padding: 10px;
  background-color: #333;
}

/*-------------------------------------------
 動画：注意文を以下に記載。動画：本文は別途video.cssにて記載。
-------------------------------------------*/
	/*ベース*/
	section.typeA{
		display: flex;
		flex-wrap: wrap;
	}
	section.typeA::after {
		content: '';
		width: 100%;
		height: 3px;
		order: -1;
		display: block;
		background: rgba(0,137,167,0.7);
	}
	section.typeA .tabLabel {	/* タブ */
		margin-right: 3px;
		padding: 3px 12px;
		flex: 1;
		order: -1;
		border-radius: 3px 3px 0 0;
		color: #444;
		background: rgba(0,137,167,0.3);
		transition: .5s ;
		cursor: pointer;
	}
	section.typeA .tabLabel:nth-last-of-type(1){ margin-right: 0; }
	section.typeA input {		/* ラジオボタン非表示 */
		display: none;
	}
	section.typeA .content {	/* 本文 */
		width: 100%;
		height: 0;
		overflow: hidden;
		opacity: 0;
	}
	/*アクティブ設定*/
	section.typeA input:checked + .tabLabel {
		color: #fff;
		background: rgba(0,137,167,.7);
	}
	section.typeA input:checked + .tabLabel + .content {
		padding: 15px;
		height: auto;
		overflow: auto;
		box-shadow: 0 0 5px rgba(0,0,0,0.8);
		transition: .5s opacity;
		opacity: 1;
	}


/*-------------------------------------------
 ボタン 教員・学生・共通・English follows Japanese
-------------------------------------------*/
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}

.btn .label {
  position: relative;
  top: -1px;
}

/*教員*/
.label-primary {
  background-color: #337ab7;
}
/*English follows Japanese*/
.label-eng {
  background-color: #9370db;
}
/*共通*/
.label-com {
  background-color: #a52a2a ;
}
/*学生*/
.label-success {
  background-color: #5cb85c;
}


/*-------------------------------------------
 ヘッダー余白分
-------------------------------------------*/
/*
.up-area {
  background-color: #f4f4ff;
  padding: 60px; /* 40px *//* NEWSが下なら55px */
 /*
}
*/

/*-------------------------------------------
 
-------------------------------------------*/
/*-------------------------------------------
 
-------------------------------------------*/
