@charset "utf-8";


/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("/educate/globalstudies/css/slide.css");
@import url("/educate/globalstudies/css/inview.css");
@import url("..//educate/globalstudies/css/slide.css");
@import url("..//educate/globalstudies/css/inview.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--primary-color: #333;		/*テンプレートのメインまたはアクセントカラー*/
	--primary-inverse-color: #fff;	/*上のprimary-colorの対となる色*/
	
	--space-large: 0vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
	--space-small: 1vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
}


/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}

html,body {
	font-size: 12px;	/*基準となるフォントサイズ*/
	height: 100%;
}

	/*画面幅1200px以上の追加指定*/
	@media screen and (min-width:1200px) {

	html, body {
		font-size: 13px;
	}

	}/*追加指定ここまで*/

	/*画面幅1600px以上の追加指定*/
	@media screen and (min-width:1600px) {

	html, body {
		font-size: 1vw;
	}

	}/*追加指定ここまで*/


body {
	margin: 0;padding:0;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: var(--primary-color);		/*文字色。冒頭で指定しているprimary-colorを読み込みます。*/
	line-height: 2;		/*行間*/
}

/*リセット他*/
figure {margin: 0;}
dd {margin: 0;}
nav ul {list-style: none;}
nav,ul,li,ol {margin: 0;padding: 0;}
section li {margin-left: 1rem;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*input*/
input {font-size: 1rem;}

/*section*/
section {
	overflow-x: hidden;
	padding: var(--space-large);	
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	text-decoration: none;	/*下線を消す*/
	opacity: 0.9;			/*色を90%だけ出す*/
}


/*container（サイト全体を囲むボックス）
---------------------------------------------------------------------------*/
#container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	flex-shrink: 0;
	display: flex;					/*flexボックスを使う指定*/
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	justify-content: space-between;
	height: 65px;					/*ヘッダーの高さ*/
}

/*ヘッダー左上の回転する円形のテキストアニメーション（スライドショー右下のスタイルは/educate/globalstudies/css/slide.cssで設定されています）*/
header .animation-text {
	position: absolute;
	width: 10vw;	/*画像の幅*/
	left: -5vw;		/*右からの距離*/
	top: -5vw;		/*上からの距離*/
}

body:not(.home) header {
	margin-bottom: var(--space-large);
}

/*ロゴ画像*/
#logo img {display: block;}
#logo {
	margin: 0;padding: 0;
	width: 18vw;	/*ロゴの幅*/
	position: relative;z-index: 1;
	left: 2vw;	/*左からの配置場所*/
	top: 4vw;		/*上からの配置場所*/
}

#logo_cont{
    margin: 0;padding: 0;
	width: 18vw;	/*ロゴの幅*/
	position: relative;z-index: 1;
	left: 2vw;	/*左からの配置場所*/
	top: 0vw;		/*上からの配置場所*/
}

	/*画面幅500px以下の追加指定*/
	@media screen and (max-width:500px) {
	
	#logo {
		top: 0;			/*上からの配置場所*/
		width: 150px;	/*ロゴの幅*/
	}
	#logo_cont {
		top: 0;			/*上からの配置場所*/
		width: 150px;	/*ロゴの幅*/
	}

	}/*追加設定ここまで*/


/*ヘッダー内メニュー
---------------------------------------------------------------------------*/
/*900px未満では非表示*/
header nav ul {display: none;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
		
	/*メニューブロック全体の設定*/
	header > nav > ul {
		margin-right: 2vw;	/*ハンバーガーアイコンに重ならないように余白*/
		display: flex;		/*横並びにする*/
	}

	/*メニュー１個あたりの設定*/
	header nav li a {
		display: block;text-decoration: none;
		font-size: 0.9rem;		/*文字サイズ90%*/
		padding: 0.5rem 1rem;	/*メニュー内の余白。上下、左右へ。*/
	}
	
	/*ドロップダウンメニュー冒頭の矢印アイコン*/
	header nav i {
		padding-right: 0.5rem;	/*右に空ける余白*/
	}

	}/*追加設定ここまで*/


/*ヘッダー内メニュー、開閉メニュー、共通のドロップダウン設定
---------------------------------------------------------------------------*/
header nav ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
}


/*ヘッダー内メニューのドロップダウン
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
header nav ul ul {
	position: absolute;z-index: 100;
}

/*メニュー１個あたりの設定*/
header nav ul ul a {
	background: rgba(255,255,255,0.8);	/*背景色。255,255,255は白のことで0.8は色が80%出た状態。*/
	padding: 0.3em 1em;				/*上下、左右へのメニュー内の余白*/
	margin-top: 4px;				/*上に空けるスペース。ドロップダウン同士の隙間。*/
	border: 1px solid var(--primary-color);	/*枠線の幅、線種、varは色の指定で冒頭のparimary-colorを読み込みます。*/
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/

/*メニューをデフォルトで非表示*/
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {display: none;}

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {display: none;}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指示*/
	content: "\f078";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	margin-right: 0.5em;	/*アイコンとテキストとの間に空けるスペース*/
}


/*開閉メニュー
---------------------------------------------------------------------------*/
/*animation1のキーフレーム設定*/
@keyframes animation1 {
	0% {right: -100vw;}
	100% {right: 0px;}
}

/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 90px 10vw 50px;		/*ブロック内の余白。上、左右、下への順番。*/
	background: var(--primary-color);	/*背景色*/
	color: var(--primary-inverse-color);					/*文字色*/
	animation: animation1 0.2s both;		/*animation1を実行する。0.2sは0.2秒の事。*/
}

/*子メニューの設定*/
.small-screen #menubar ul ul {
	margin: 2rem;	/*外側に空けるスペース。２文字分。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
	border: 1px solid #fff;	/*枠線の幅、線種、色。*/
	margin: 1rem 0;			/*メニューの外側に空けるスペース。上下、左右への順番。*/
	border-radius: 5px;		/*角を丸くする指定*/
}
.small-screen #menubar a {
	color: inherit;
	padding: 1rem 2rem;	/*メニュー内の余白。上下、左右へ。*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0.3s 0.5s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	top: 0;		/*上からの配置場所*/
	right: calc(var(--space-small) + 5px);		/*右からの配置場所*/
	width: 60px;		/*幅*/
	height: 60px;		/*高さ。基本的にheaderの高さに合わせておけばOKです。*/
	padding: 20px 0;	/*ここの20pxの数字を変更すると2本のバーの上下間のバランス調整ができます*/
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.5s;
	mix-blend-mode: exclusion;
	display: block;
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {
#menubar_hdr {
	display: none;
}

}


/*マウスオン時だけmix-blend-modeを無効に*/
#menubar_hdr.ham {
	mix-blend-mode: normal;
}

/*バーの設定*/
#menubar_hdr div span {
	display: block;
	width: 100%;
	height: 1.5px;			/*線の太さ*/
	background-color: #fff;	/*本来は線の色なのですが、mix-blend-modeを使っているので背後の色に合わせて変動します。変動したくないなら#menubar_hdrのmix-blend-modeの行を削除して下さい。*/
	transition: all 0.5s ease-in-out;
	position: absolute;
}

/*以下変更不要*/
#menubar_hdr div {
	position: relative;width: 100%;height: 100%;
	display: flex;flex-direction: column;justify-content: space-between;
}
#menubar_hdr div span:nth-child(1) {top: 0;}
#menubar_hdr div span:nth-child(2) {bottom: 0;}
#menubar_hdr.ham div span:nth-child(1) {top: 50%;transform: translateY(-50%) rotate(45deg);}
#menubar_hdr.ham div span:nth-child(2) {top: 50%;transform: translateY(-50%) rotate(-45deg);}





/*アイコンの下の余白*/
#btn-special i {padding-bottom: 1rem;}


/***右固定：お知らせ***/
.top-news {
    position: fixed;
    right: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: left;
    width: 500px;
    height: 210px;
    color: #111;
    text-decoration: none;
	padding:50px;
	/*background: linear-gradient(#906f53, #6b5038);背景グラデーション*/
	background: linear-gradient(#ec9347, #d36b12);
	opacity: 0.9;
	color: #f6ebd2;	/*文字色*/
	border-radius: 10px 0px 0px 0px;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
    z-index: 10;
}
.top-news span {
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d36b12;
    line-height: 0.8;
    padding: 4px 16px;
    border-radius: 90px;
    margin-bottom: 8px;
	margin-left: 8px;
}

.top-news dd {
	margin: 0em 0em 1em 0em;
}

.hidden {
    animation: fade .2s ease-in-out forwards;
    pointer-events:none;/* お知らせ */
}

@keyframes fade {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.visible {
    animation: fadeOut .2s ease-in-out forwards;
    pointer-events:all;/* お知らせ */
}

@keyframes fadeOut {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}





/*main（メインコンテンツ）
---------------------------------------------------------------------------*/
main {
	flex: 1 0 auto;
	overflow-x: hidden;
	padding: 4vw 0 0;	/*上、左右、下への余白。画面幅100%＝100vwです。*/
}

/*h2見出し（共通）*/
main h2 {
	margin: 0;padding: 0;
	font-size: 2.4rem;		/*文字サイズ。240%。*/
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
	margin-bottom: 2vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
}
main h2.c {
	align-items: center;	/*見出しをセンタリングする場合*/
}

/*h2見出しのサブテキスト（sub-text）*/
main h2 span.sub-text {
	display: inline-block;
	border-top: 1px solid var(--primary-color);	/*上の線の幅、線種、varは色のことで冒頭のprimary-colorを読み込みます。*/
	font-size: 0.9rem;		/*文字サイズ80%*/
	opacity: 0.6;			/*透明度。色が60%出た状態。*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	padding-top: 0rem;		/*上に空ける余白。ラインとの間の余白調整です。お好みで。*/
}
main h2 span.old {
	display: inline-block;
	font-size: 0.9rem;		/*文字サイズ80%*/
	padding-top: 0rem;		/*上に空ける余白。ラインとの間の余白調整です。お好みで。*/
}

/*見出し上のラインを消すスタイル*/
main h2.no-line span.sub-text {
	border: none;
	padding-top: 0;
}


/*h3見出し（共通）*/
main h3 {
	font-weight: 600;
	font-size: 1.4rem;	/*文字サイズ140%*/
}


/*Google Map　レスポンシブにする為のものなので、基本的に編集不要です。
---------------------------------------------------------------------------*/
.iframe-box {
	width: 100%;
	height: 0;
	padding-top: 50%;	/*マップの高さを増やしたい場合は、ここの数値を上げてみて下さい。*/
	position: relative;
	overflow: hidden;
}
.iframe-box iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}


/*フッター設定
---------------------------------------------------------------------------*/
.footer_back{
  background-color: #333;
}
.footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  background-color: #333;
  color: white;
  max-width: 1200px; /* 最大幅を指定 */
  margin: 0 auto; /* 自動で中央揃え */
  font-size: 1rem;
}
.foot_title {
	display: block;
	font-size: 1.5rem;		/*文字サイズ。3倍。*/
	line-height: 0.7;
	font-weight: 700;
}
.foot_h1 {
	display: block;
	font-size: 1.0rem;		/*文字サイズ。3倍。*/
	font-weight: 700;

}

	.foot_h1 a {
	  text-decoration: none;
}
.foot_h1 a:hover {
  text-decoration: underline;
}


.footer-column h3 {
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
	line-height: 1.8;
	margin-left: 1rem;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

/* 追加した1行のスタイル */
.footer-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列表示 */
  gap: 20px;
  padding: 10px 0;
  background-color: #333; /* 背景色 */
  color: white;
  text-align: center;
  max-width: 1150px;
	  margin: 0 auto; /* 自動で中央揃え */
}

/* footer-bottomの左側 */
.footer-bottom-left {
  text-align: left; /* 左揃え */
	padding-left:20px;

}

/* footer-bottomの右側 */
.footer-bottom-right {
  text-align: right; /* 右揃え */
	padding-right:20px;

}

/* レスポンシブデザイン */
@media (max-width: 600px) {
  .footer {
    grid-template-columns: repeat(2, 1fr);
  }
  /* footer-bottomの2列も調整（スマホでも2列表示を維持） */
  .footer-bottom {
    grid-template-columns: 1fr; /* 1列表示に変更 */
    text-align: center;
	gap: 0px;
    padding: 0px 0;
  }

  .footer-bottom-left, .footer-bottom-right {
	 text-align: center;
	 padding-right:0px;
	 padding-left:0px;
  }
}
/*画面幅900px以下の追加指定*/
	@media screen and (max-width:900px) {
	.top-news {display:none
		}
}
/*フッター内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	align-self: center;
	gap: 1rem;	/*アイコン同士のマージン的な要素。１文字分。*/
}
.icons i {
	font-size: 30px;	/*アイコンサイズ*/
}


/*list-c2（お問い合わせ、オンライン相談）
---------------------------------------------------------------------------*/
.list-c2 > a {
    text-decoration: none;
    display: block;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	/*２つのボックスを囲むボックス*/
	.list-c2 {
		display: flex;	/*横並びにする*/
	}

	}/*追加指定ここまで*/


/*ボックス１個あたり*/
.list-c2 .list {
	text-align: center;
	position: relative;
	overflow-y: hidden;
	color: #fff;		/*文字色*/
	text-shadow: 0px 0px 10px rgba(0,0,0,0.6);	/*テキストの影。右へ、下へ、ぼかす量、0,0,0は黒のことで0.6は色が出た状態。*/
	padding: 5rem 2rem;	/*上下、左右へのボックス内の余白*/
	margin: 1rem 0;		/*上下、左右へのマージン*/
}


	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	.list-c2 > * {
		flex: 1;
	}
	.list-c2 .list {
		margin: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.list-c2 > a .list {
		height: 100%;
	}

	}/*追加指定ここまで*/


/*左側ボックスの背景*/
.list-c2 .list.image1 {
	background: url("/educate/globalstudies/images/sample4.jpg") no-repeat center center / cover;
}
/*右側ボックスの背景*/
.list-c2 .list.image2 {
	background: url("/educate/globalstudies/images/sample5.jpg") no-repeat center center / cover;
}

/*h4見出し*/
.list-c2 h4 {
	font-weight: 200;	/*細字にする*/
	line-height: 1.2;	/*行間を狭く*/
}

/*h4見出し内のメインテキスト（main-text）*/
.list-c2 h4 .main-text {
	display: block;
	font-size: 3rem;		/*文字サイズ。3倍。*/
	padding-top: 1.5rem;	/*上に空ける余白*/
	padding-bottom: 3rem;	/*下に空ける余白*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.list-c2 h4 .main-text {
		font-size: 4rem;	/*文字サイズ。4倍。*/
	}

	}/*追加指定ここまで*/


/*h4見出し内のサブテキスト（sub-text）*/
.list-c2 h4 .sub-text {
	position: relative;
	padding: 0 5rem;	/*上下、左右への余白設定ですが、両サイドのラインの配置にも影響します。お好みで。*/
}
/*h4見出し内のサブテキストの左右のライン*/
.sub-text::before {left: 0;}
.sub-text::after {right: 0;}
.list-c2 h4 .sub-text::before,.list-c2 h4 .sub-text::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 2rem;	/*線の長さ*/
	border-top: 1px solid #fff;	/*ラインの幅、線種、色*/
}

/*見出しの下の説明テキスト*/
.list-c2 .list .text {
	position: relative;z-index: 1;
	font-size: 0.85rem;	/*文字サイズ85%*/
}

/*マウスオン用のアニメーション*/
.list-c2 .list::before {
	content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;
	background: rgba(0,0,0,0.6);		/*写真に重ねておく半透明の黒い色。0,0,0は黒のことで0.6は色が60%出た状態。*/
	transition: transform 0.3s 0.1s;	/*アニメーションの速度（0.3秒）と待機時間（0.1秒）。*/
}
.list-c2 .list:hover::before {
	transform: translateY(100%);	/*マウスオンで半透明の黒を枠外へ出す。-100%にすると逆に移動します。*/
}

/*ボックス内のボタン（.btn2）*/
.list-c2 .list .btn2 a {
	background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒のことで0.7は色が70%出た状態。*/
}

/*ボックス内のボタン（.btn3）*/
.list-c2 .list .btn1 a {
	text-shadow: none;	/*テキストの影を消す*/
}


/*お知らせブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
.new {
    display: grid;	/*gridを使う指定*/
    grid-template-columns: auto 1fr;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
	max-width: 700px;	/*最大幅*/
	margin: 0 auto;
}

/*日付、記事（共通）*/
.new dt,.new dd {
	border-bottom: 1px solid rgba(0,0,0,0.1);	/*下線の幅、線種、0,0,0は黒のことで0.1は色が10%出た状態。*/
	padding-top: 0.5rem;				/*上の余白*/
	padding-bottom: 0.5rem;			/*下の余白*/
	padding-right: 1rem;			/*右の余白*/
}

/*日付*/
.new dt {
	padding-right: 4rem;			/*右の余白*/
	padding-left: 1rem;
}
.new span {
    background: #ec9347;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 0.7;
    padding: 4px 16px;
    border-radius: 90px;
    margin-bottom: 0px;
	margin-right: 8px;
}


/*よく頂く質問ブロック
---------------------------------------------------------------------------*/
/*FAQ
---------------------------------------------------------------------------*/
/*質問*/
.openclose1-parts {
	display: flex;
	align-items: flex-start;
	border-radius: 3px;		/*角を少しだけ丸く*/
	margin-bottom: 1rem;	/*下に空けるスペース。質問ブロック同士の余白です。*/
	background: #fff;		/*背景色*/
	color: #555;			/*文字色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 0.5rem 1rem;		/*ブロック内の余白。上下に0.5文字分、左右い1文字分。*/
}

/*アイコン*/
.openclose1-parts::before {
	font-family: "Font Awesome 6 Free";
	content: "\f059";	/*アイコン画像の指定*/
	margin-right: 1rem;	/*右側に空けるスペース*/
	flex-shrink: 0;
	color: #ff0000;			/*アイコンの色*/
}

/*回答*/
.openclose1-parts + * {
	padding: 0 1rem 1rem 3rem;	/*ボックス内の余白。上、右、下、左への順番。*/
}





/*list-yoko-scroll（お客様の声）
---------------------------------------------------------------------------*/
.list-yoko-scroll * {margin: 0; padding: 0;}

/*横スクロールブロック全体*/
.list-yoko-scroll {
	display: flex;
	overflow-x: auto;
	scrollbar-width: none;	/* Firefox用 */
	scroll-snap-type: x mandatory; /* スナップスクロールを有効にする */
	margin-right: calc(-1 * var(--space-large));	/*右マージンをなくす為にネガティブマージンで相殺*/
	padding-bottom: 3vw;	/*下に空ける余白*/
}
.list-yoko-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge用 */
}

/*ブロック内の１個あたり*/
.list-yoko-scroll .list {
	width: 60%;		/*ブロック１個の幅。お好みで変更して下さい。*/
	flex-shrink: 0;
	scroll-snap-align: start;
	padding: 1rem;		/*ブロック内の余白。1文字分。*/
	position: relative;
	display: flex;
	flex-direction: column;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	/*ブロック内の１個あたり*/
	.list-yoko-scroll .list {
		width: 28%;		/*ブロック１個の幅。お好みで変更して下さい。*/
		padding: 2rem;		/*ブロック内の余白。２文字分。*/
	}

	}/*追加指定ここまで*/


/*テキストブロックが高さを目一杯とる指定*/
.list-yoko-scroll .list .text {
	flex: 1;
}

/*ブロックのカギカッコ（共通）*/
.list-yoko-scroll .list::before,.list-yoko-scroll .list::after {
	content: "";
	position: absolute;
	width: 30px;	/*カギカッコの幅。お好みで。*/
	height: 10px;	/*カギカッコの高さ。お好みで。*/
	border: 0.5px solid var(--primary-color);	/*線の幅、線種、varは色のことで冒頭のprimary-colorを読み込みます。*/
}

/*左上のカギカッコへの追加指示*/
.list-yoko-scroll .list::before {
	left: 0px;	/*左からの配置場所*/
	top: 0px;	/*上からの配置場所*/
	border-right: none;		/*右の線を消す*/
	border-bottom: none;	/*下の線を消す*/
}

/*右上のカギカッコへの追加指示*/
.list-yoko-scroll .list::after {
	right: 0px;		/*右からの配置場所*/
	bottom: 0px;	/*下からの配置場所*/
	border-top: none;	/*上の線を消す*/
	border-left: none;	/*左の線を消す*/
}

/*faq内のh4見出し（「とても満足です。」のところ）*/
.list-yoko-scroll h4 {
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける*/
}

/*faq内のp段落（「とても満足です。」の下のテキスト）*/
.list-yoko-scroll p {
	font-size: 0.9rem;	/*文字サイズを90%に*/
}

/*お客様の名前*/
.list-yoko-scroll .name {
	text-align: right;	/*右に寄せる*/
}

/*お客様の写真*/
.list-yoko-scroll .name img {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	object-fit: cover;
	object-position: center;
	border-radius: 50%;	/*円形にする。この１行を削除すれば正方形になります。*/
	margin-left: 20px;	/*写真の左に空けるスペース*/
}


/*box1（1つ目のセクションボックス）
---------------------------------------------------------------------------*/
/*ボックス全体*/
.box1 {
	overflow-x: visible;
	position: relative;
	background: #e8eaee;	/*背景色*/
	padding: 8vw;	/*ボックス内の余白。冒頭にあるspace-largeを読み込みます。*/
	margin-top: 10vw;	/*上に空けるスペース。スライドショーとこのボックスの間のスペースです。お好みで。*/
	
}
.box1 a {
	color: inherit;
}

/*ボックス上部の大きな装飾テキスト*/
.box1 .deco-text {
	position: absolute;
	right: 0;
	top: -13.5vw;		/*文字とボックスの配置バランスです。お好みで調整して下さい。*/
	color: #e8eaee;		/*文字色*/
	font-size: 7vw;		/*下の.box1のmargin-topと合わせる*/
	line-height: 1;
}



/*テキストボックス*/
.box1 .text {
	margin-bottom: 8rem;	/*下に5文字分の余白*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.box1 {
		display: flex;	/*横並びにする*/
		gap: 5vw;		/*左右の間のスペース*/
		border-radius: 20vw 0 20vw 0;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
	}
	
	.box1 > * {flex: 1;}




	.box1 .text {
		margin-bottom: 0;	/*下マージンのリセット*/
	}

	}/*追加指定ここまで*/


/*画像を囲むブロック*/
.box1 .image {
	position: relative;
	top: 15vw;	/*画像ブロックに対して上からの配置場所*/
}

/*画像の角を少し丸くする指定*/
.box1 .image img {
	border-radius: 10px;
}

/*画像ブロック内の１枚目の写真への追加指定*/
.box1 .image img:nth-of-type(1) {
	width: 100%;	/*画像の幅*/
}






/*box2（1つ目のセクションボックス）
---------------------------------------------------------------------------*/
/*ボックス全体*/
.box2 {
	overflow-x: visible;
	position: relative;
	background: #e8eaee;	/*背景色*/
	padding: 8vw;	/*ボックス内の余白。冒頭にあるspace-largeを読み込みます。*/
	margin-top: 10vw;	/*上に空けるスペース。スライドショーとこのボックスの間のスペースです。お好みで。*/
	
}
.box2 a {
	color: inherit;
}

/*ボックス上部の大きな装飾テキスト*/
.box2 .deco-text {
	position: absolute;
	right: 0;
	top: -13.5vw;		/*文字とボックスの配置バランスです。お好みで調整して下さい。*/
	color: #e8eaee;		/*文字色*/
	font-size: 7vw;		/*下の.box1のmargin-topと合わせる*/
	line-height: 1;
}



/*テキストボックス*/
.box2 .text {
	margin-bottom: 8rem;	/*下に5文字分の余白*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.box2 {
		display: flex;	/*横並びにする*/
		gap: 5vw;		/*左右の間のスペース*/
		border-radius: 20vw 0 20vw 0;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
		flex-direction: row-reverse;
	}
	
	.box2 > * {flex: 1;}




	.box2 .text {
		margin-bottom: 0;	/*下マージンのリセット*/
	}

	}/*追加指定ここまで*/


/*画像を囲むブロック*/
.box2 .image {
	position: relative;
	top: 15vw;	/*画像ブロックに対して上からの配置場所*/
}

/*画像の角を少し丸くする指定*/
.box2 .image img {
	border-radius: 10px;
}

/*画像ブロック内の１枚目の写真への追加指定*/
.box2 .image img:nth-of-type(1) {
	width: 100%;	/*画像の幅*/
}





.container_syokai {
  display: flex;
  flex-wrap: wrap; /* カラムを折り返す */
  justify-content: space-between; /* 両端に配置 */
  padding: 20px;
}

/* 各ペアのカラムのスタイル */
.container_syokai_item .image {
	border-radius: 10px;
}
.container_syokai_item {
  display: flex;
  width: 100%; /* 幅を48%に設定し、2つのカラムが並ぶようにする */
  margin-bottom: 40px; /* 各ペア間に余白 */
}

.container_syokai_item2 {
  display: flex;
  width: 100%; /* 幅を48%に設定し、2つのカラムが並ぶようにする */
  margin-bottom: 40px; /* 各ペア間に余白 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding:20px 20px 20px 20px;
}

.container_syokai_item3 {
  display: flex;
  margin: 0 auto;
  width: 80%; /* 幅を48%に設定し、2つのカラムが並ぶようにする */
  margin-bottom: 60px; /* 各ペア間に余白 */
  padding:30px 30px 30px 30px;
  align-items: center;
}

  .container_syokai_head_right  {
  width: 50%; 
  }
  .container_syokai_head_left  {
  width: 50%; 
  padding-right :50px;
  }
/* スマホ（画面幅600px以下）の場合、縦並びに変更 */
@media screen and (max-width: 600px) {
  .container_syokai_head_right {
  width: 100%;
	}

  .container_syokai_head_left  {
  width: 50%; 
  padding-right :50px;
  }
  .container_syokai_item3 {
  display: flex;
  margin: 0 auto;
  width: 100%; /* 幅を48%に設定し、2つのカラムが並ぶようにする */
  margin-bottom: 60px; /* 各ペア間に余白 */
  align-items: center;
}
}
/* スマホ（画面幅600px以下）の場合、縦並びに変更 */
@media screen and (max-width: 600px) {
  .container_syokai_head_left {
  width: 100%;
	}
}
/* スマホ（画面幅600px以下）の場合、縦並びに変更 */
@media screen and (max-width: 600px) {
  .container_syokai_item2 {
    flex-direction: column-reverse; /* 左右のカラムを入れ替え */
    width: 100%; /* 幅を100%に設定 */
  }

  .container_syokai_left2 {
    padding-right: 0; /* 左右の余白を無くす */
    padding-bottom: 5px; /* 下に余白を追加 */
  }

  .container_syokai_right2 {
    padding-left: 0; /* 左カラムの余白を無くす */
  }
}


/* 左カラムのスタイル */
.container_syokai_left {
  flex: 1; /* 左カラムの幅を指定 */
  padding-right: 60px; /* 右カラムとの間隔 */
  margin-bottom:40px;
}

.container_syokai_left .image {
  width: 100%; /* 画像がカラムの幅に合わせて拡大 */
  height: auto; /* アスペクト比を維持 */
	
}

/* 右カラムのスタイル */
.container_syokai_right {
  flex: 1; /* 右カラムの幅を指定 */
	  margin-bottom:20px;
}

/* スマホ（画面幅768px以下）の場合、縦並びに変更 */
@media screen and (max-width: 600px) {
  .container_syokai_item {
    flex-direction: column-reverse; /* 左右のカラムを入れ替え */
    width: 100%; /* 幅を100%に設定 */
  }

  .container_syokai_left {
    padding-right: 0; /* 左右の余白を無くす */
    padding-bottom: 5px; /* 下に余白を追加 */
  }

  .container_syokai_right {
    padding-left: 0; /* 左カラムの余白を無くす */
  }
}





.box_syokai {
	overflow-x: visible;
	position: relative;
	background: #e8eaee;	/*背景色*/
	padding: 8vw;	/*ボックス内の余白。冒頭にあるspace-largeを読み込みます。*/

	
}
.box_syokai a {
	color: inherit;
}

/*ボックス上部の大きな装飾テキスト*/
.box_syokai .deco-text {
	position: absolute;
	right: 0;
	top: -13.5vw;		/*文字とボックスの配置バランスです。お好みで調整して下さい。*/
	color: #e8eaee;		/*文字色*/
	font-size: 7vw;		/*下の.box1のmargin-topと合わせる*/
	line-height: 1;
}



/*テキストボックス*/
.box_syokai .text {
}
	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.box_syokai {
		display: flex;	/*横並びにする*/
		gap: 5vw;		/*左右の間のスペース*/
		border-radius: 20vw 0 20vw 0;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
		flex-direction: row-reverse;
	}
	
	.box_syokai > * {flex: 1;}




	.box_syokai .text {
		margin-bottom: 0;	/*下マージンのリセット*/
	}

	}/*追加指定ここまで*/







/*list1（企業理念コーナー）
---------------------------------------------------------------------------*/
/*冒頭の大きなロゴの飾り*/
.logo-kazari {
	background: url("/educate/globalstudies/images/logo_kazari.svg") no-repeat left top / 70%;	/*ロゴ画像の読み込み。左上に配置し、幅は70%。*/
}

/*１枚目の写真*/
.list1.image1 {
	background: url("/educate/globalstudies/images/1.jpg") no-repeat center center / cover;
}

/*２枚目の写真*/
.list1.image2 {
	background: url("/educate/globalstudies/images/2.jpg") no-repeat center center / cover;
}

/*３枚目の写真*/
.list1.image3 {
	background: url("/educate/globalstudies/images/3.jpg") no-repeat center center / cover;
}

/*４枚目の写真*/
.list1.image4 {
	background: url("/educate/globalstudies/images/4.jpg") no-repeat center center / cover;
}

/*ボックス１個あたり*/
.list1 {
	padding: var(--space-large);	/*ボックス内の余白。冒頭のspace-largeを読み込みます。*/
	position: relative;
	overflow-x: hidden;
	margin-bottom: 1vw;	/*下に空けるスペース。ボックス同士の隙間です。*/
}

/*マウスオン用のアニメーション*/
.list1::before {
	content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;
	background: rgba(0,0,0,0.6);		/*写真に重ねておく半透明の黒い色。0,0,0は黒のことで0.6は色が60%出た状態。*/
	transition: transform 0.5s 0.1s;	/*アニメーションの速度（0.5秒）と待機時間（0.1秒）。*/
}
.list1:hover::before {
	transform: translateX(100%);	/*マウスオンで半透明の黒を枠外へ出す。-100%にすると逆に移動します。*/
}

/*テキストブロック*/
.list1 .text {
	position: relative;z-index: 1;
	width: 80%;		/*幅*/
	height: 100%;
	color: #fff;	/*文字色*/
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);	/*テキストの影。右へ、下へ、ぼかし幅、0,0,0は黒のことで0.3は色が30%出た状態。*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	/*テキストブロック*/
	.list1 .text {
		width: 40%;		/*幅*/
	}

	}/*追加指定ここまで*/


/*テキストの配置場所を入れ替えたい場合のスタイル。*/
.list1 .text.reverse {
	margin-left: auto;
}

/*list1内のh3見出し*/
.list1 h3 {
	margin: 0;padding: 0;
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
	position: relative;
	font-size: 2rem;		/*文字サイズを200%*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	line-height: 1.2;		/*行間を狭くする*/
}

/*list1内のh3見出し内の１文字目の大きな文字*/
.list1 h3 .large {
	font-size: 7rem;	/*文字サイズを7倍*/
}

/*見出しの右上にある英語の小さな文字*/
.list1 h3 span:not(.large) {
	font-size: 1rem;	/*文字サイズを標準に戻す*/
	opacity: 0.5;		/*透明度50%*/
	position: absolute;
	right: 0px;	/*右からの配置場所*/
	top: 0px;	/*上からの配置場所*/
}


/*list-grid1（３カラムボックス）
---------------------------------------------------------------------------*/
.list-grid1 .list * {margin: 0;padding: 0;}

/*ボックス１個あたり*/
.list-grid1 .list {
    display: grid;
	margin-bottom: 2rem;	/*ボックスの下に空けるスペース*/
}

/*ボックス内のp要素*/
.list-grid1 .list p {
	font-size: 0.75rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を狭くする*/
}

/* スマホ（画面幅600px以下）の場合 */
@media screen and (max-width: 600px) {
/*ボックス内のp要素*/
.list-grid1 .list p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を狭くする*/
}	
}

/*ボックス１個あたり*/
.list-grid1 .list {
	padding: 1rem;			/*ボックス内の余白。１文字分。*/
	background: #fff;		/*背景色*/
	color: #111;			/*文字色*/
    grid-template-rows: auto 1fr auto;	/*１つ目（この場合はfigure要素のサイズ）と「詳しくみる」ボタンの高さは自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*ボックス内のfigure画像*/
.list-grid1 .list figure {
	margin: -1rem;			/*画像を枠いっぱいに表示させる為に上の「.list-grid1 .list」のpadding分をネガティブマーインで指定*/
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
}

	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	/*listブロック全体を囲むブロック*/
	.list-grid1 {
		display: grid;
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1vw;	/*ブロックの間に空けるマージン的な指定*/
	}

	/*ボックス１個あたり*/
	.list-grid1 .list {
		margin-bottom: 0;	/*下に空けるスペースをなくす*/
	}

	}/*追加指定ここまで*/

/*list-grid_professors（３カラムボックス）
---------------------------------------------------------------------------*/
.list-grid_professors .list * {margin: 0;padding: 0;}

/*ボックス１個あたり*/
.list-grid_professors .list {
    display: grid;
	margin-bottom: 2rem;	/*ボックスの下に空けるスペース*/
}

/*ボックス内のp要素*/
.list-grid_professors .list p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を狭くする*/
}

/*ボックス１個あたり*/
.list-grid_professors .list {
	padding: 1rem;			/*ボックス内の余白。１文字分。*/
	background: #fff;		/*背景色*/
	color: #111;			/*文字色*/
    grid-template-rows: auto 1fr auto;	/*１つ目（この場合はfigure要素のサイズ）と「詳しくみる」ボタンの高さは自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*ボックス内のfigure画像*/
.list-grid_professors .list figure {
	margin: -1rem;			/*画像を枠いっぱいに表示させる為に上の「.list-grid1 .list」のpadding分をネガティブマーインで指定*/
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
}

	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	/*listブロック全体を囲むブロック*/
	.list-grid_professors {
		display: grid;
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 3vw;	/*ブロックの間に空けるマージン的な指定*/
	}

	/*ボックス１個あたり*/
	.list-grid_professors .list {
		margin-bottom: 0;	/*下に空けるスペースをなくす*/
	}

	}/*追加指定ここまで*/




/*縦書き用の設定
---------------------------------------------------------------------------*/
/*ボックス全体*/
.title-bg {
	display: flex;				/*flexボックスを使う指定*/
	justify-content: center;	/*並びかたの種類の指定*/
}

/*ボックス内のh2*/
.title-bg h2 {
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*縦並びにする指定*/
	align-items: center;	/*垂直揃えの指定。天地中央に配置されるように。*/
	padding-bottom: 3vw;
}

/*縦書きにする指定*/
.title-bg h2 .tate {
	writing-mode: vertical-rl;
	text-orientation: upright;
	font-size: 2rem;
}

/*横書きで使う際の指定。※縦書きを横書きにする為の指定ではないのでご注意下さい。*/
.title-bg h2 .yoko {
	font-size: 0.9rem;	/*文字サイズ90%*/
	margin-bottom: 3vw;	/*下に空けるスペース*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	opacity: 0.5;	/*透明度50%*/
}


/*ボタン
---------------------------------------------------------------------------*/
/*btn1、btn2共通*/
.btn1 a, .btn2 a {
	display: block;text-decoration: none;
	padding: 0.8rem 2rem;	/*上下、左右へのボタン内の余白*/
	margin-top: 2rem;		/*ボタンの上に2文字分のスペースを空ける*/
	text-align: center;		/*テキストをセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
	box-shadow: 0px 10px 30px rgba(0,0,0,0.1);	/*ボタンの影。右へ、下へ、ぼかし幅、0,0,0は黒のことで0.1は色が10%出た状態*/
	background-color: #fff;	
}
/*マウスオン時（btn1、btn2共通）*/
.btn1 a:hover, .btn2 a:hover {
	letter-spacing: 0.2rem;	/*文字間隔を少し広げる*/
	box-shadow: none;		/*ボタンの影を消す*/
}

/*btn1への追加設定*/
.btn1 a {
	color: var(--primary-color);	/*文字色。冒頭のprimary-colorを読み込みます。*/
	background: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}

/*btn2への追加設定*/
.btn2 a {
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*list1内のbtn2の設定。マウスオン時にボタンの背景色を追加。*/
.list1:hover .btn2 a {
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒のことで0.8は色が80%出た状態。*/
}

/*btn3*/
.btn3 {
	text-align: right;	/*テキストを右寄せ*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
}
.btn3 a {
	display: inline-block;text-decoration: none;
	color: inherit;
	position: relative;
	padding-right: 5rem;	/*矢印のアイコンと重ならないように余白をとる*/
}

/*btn3の矢印のアイコン設定*/
.btn3 a::after {
	content: "";
	background: url("/educate/globalstudies/images/arrow1.svg") no-repeat right center / 100px;	/*アイコン画像の指定。画像の右側を読み込みます。最後の100pxの数字は、widthの２倍で指定すればOK。*/
	display: block;
	position: absolute;
	right: 0px;
	bottom: -1rem;		/*下からの配置場所*/
	width: 50px;		/*アイコンの幅。ここを変更する場合は、上と下にあるbackgroundの100pxの数値も調整します。*/
	height: 50px;		/*アイコンの高さ*/
	border-radius: 50%;	/*円形にする指定。この１行を削除すれば正方形になります。*/
	text-align: center;
	transition: 0.3s;		/*hover時に切り替えをなめらかにする*/
	border: 1px solid var(--primary-color);	/*枠線の幅、線種、色*/
}

/*btn3の矢印のマウスオン時*/
.btn3 a:hover::after {
	background-color: var(--primary-color);	/*背景色を冒頭のprimary-colorにする*/
	background-position: left center;		/*矢印画像の入れ替え。画像の左側を読み込みます。*/
}

/*背景色が暗い所で使う場合*/
.btn3.white {
	color: #fff;	/*文字色*/
}
.btn3.white a::after {
	background: url("/educate/globalstudies/images/arrow1_white.svg") no-repeat right center / 100px;	/*アイコン画像の指定。画像の右側を読み込みます。最後の100pxの数字は、widthの２倍で指定すればOK。*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
.btn3.white a:hover::after {
	background-color: #fff;				/*背景色を白に*/
	background-position: left center;	/*矢印画像の入れ替え。画像の左側を読み込みます。*/
}

.btBanner{background:#fff;	
	display: flex;
    justify-content: center;
	margin-left: 40px;
	margin-right: 40px;
	margin-top: 10px;
	margin-bottom: 10px;
    padding-left:20px;
    padding-right:20px;
    padding-top:30px;
    padding-bottom:30px;
    align-items: center;}



/*サムネイルスライドショー
---------------------------------------------------------------------------*/
/*スライドショー全体を囲むブロック*/
.slide-thumbnail1-parts {
	overflow-x: hidden;
	margin-bottom: 2rem;
}

/*画像たちを囲むブロック*/
.slide-thumbnail1-parts .img-parts {
	display: flex;
	overflow: hidden;
}

/*画像*/
.slide-thumbnail1-parts .img-parts img {
	padding: 0 1vw;	/*上下の余白はなし、左右への余白は画面の1%*/
}

/*右から左へ、左から右へ、のアニメーション*/
.slide-thumbnail1-parts .rtl-parts, .slide-thumbnail1-parts .ltr-parts {
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.slide-thumbnail1-parts .rtl-parts {animation-name: slide-rtl-parts;}
.slide-thumbnail1-parts .ltr-parts {animation-name: slide-ltr-parts;}

@keyframes slide-rtl-parts {
0% {transform: translateX(0);}
100% {transform: translateX(-50%);}
}

@keyframes slide-ltr-parts {
0% {transform: translateX(-50%);}
100% {transform: translateX(0);}
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 0.5rem 1rem;	/*ボックス内の余白*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;				/*幅*/
	margin-bottom: 5rem;		/*テーブルの下に空けるスペース。5文字分。*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 0px solid var(--primary-color);	/*テーブルの下線。幅、線種、色*/
	background:#FFF;		/*背景色*/
	color:#000;	/*文字色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td > span {
	padding: 2rem;		/*ボックス内の余白*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
	font-size: 0.8rem;
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 80%;			/*幅*/

		background:#909090;	/*背景色*/
	color:#fff;	/*文字色*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {


	}/*追加指定ここまで*/




		


/*調整用スタイル
---------------------------------------------------------------------------*/
/*並べ替え*/
.order1 {
	order: 1;	/*orderは数字の小さな順番に並びます。デフォルトは0なので、それより後ろに表示させたいブロックに使います。（※flex内で使用）*/
}

.padding0 {
	padding: 0 !important;
}
.padding-bottom0 {
	padding-bottom: 0 !important;
}
.padding-lr0 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}
/*左右の余白*/
.space-small {
	padding-left: var(--space-small);
	padding-right: var(--space-small);
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.look {line-height: 1.5 !important; display: inline-block;padding: 5px 10px;background: rgba(0,0,0,0.1);border: 1px solid rgba(0,0,0,0.3);border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
.bg1 {color:#000;}.bg1 a {color: inherit;}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}

	}/*追加指定ここまで*/





/*---------------------------------------------------------------------------*/
/*追加コンテンツ*/
/*---------------------------------------------------------------------------*/
@media screen and (max-width:600px) {
    .display_pc {
        display: none;
    }
	    .display_sp {
        display: block;
    }
}
@media screen and (min-width:600px) {
	    .display_pc {
        display: block;
    }
    .display_sp {
        display: none;
    }
}

/*コンテンツ内容
---------------------------------------------------------------------------*/
.cont_box1 {
	overflow-x: visible;
	position: relative;
	background: #e8eaee;	/*背景色*/
	padding: 8vw;	/*ボックス内の余白。冒頭にあるspace-largeを読み込みます。*/
	margin-top: 2vw;	/*上に空けるスペース。スライドショーとこのボックスの間のスペースです。お好みで。*/
	margin-bottom: 3rem;
}
.cont_box1 a {
	color: inherit;
}


/*テキストボックス*/
.cont_box1 .text {
	margin-bottom: 0rem;	/*下に5文字分の余白*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.cont_box1 {
		display: flex;	/*横並びにする*/
		gap: 4vw;		/*左右の間のスペース*/
		border-radius: 20vw 0 20vw 0;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
	    margin-bottom: 5rem;
	}
	
	.cont_box1 > * {flex: 1;}

	/*ボックスの左上イラスト（1つ目）*/
	.cont_box1 .illust1 {
		rignt: auto;
		left: 3vw;		/*左からの配置場所*/
		top: -4vw;		/*上からの配置場所。マイナスがついているので本来の向きとは逆に移動します。*/
		width: 8vw;		/*イラストの幅。*/
	}

	/*ボックスの左上イラスト（2つ目）*/
	.cont_box1 .illust2 {
		rignt: auto;
		left: 14vw;		/*左からの配置場所*/
		top: -8vw;		/*上からの配置場所。マイナスがついているので本来の向きとは逆に移動します。*/
		width: 5vw;		/*イラストの幅。*/
	}

	/*テキストボックスの上の小さなイラスト*/
	.cont_box1 h2 img {
		width: 5vw;	/*幅*/
	}

	.cont_box1 .text {
		margin-bottom: 0;	/*下マージンのリセット*/
	}

	}/*追加指定ここまで*/


/*画像を囲むブロック*/
.cont_box1 .image {
	position: relative;
	top: 0vw;	/*画像ブロックに対して上からの配置場所*/
}

/*画像の角を少し丸くする指定*/
.cont_box1 .image img {
	border-radius: 10px;
}

/*画像ブロック内の１枚目の写真への追加指定*/
.cont_box1 .image img:nth-of-type(1) {
	width: 100%;	/*画像の幅*/
}

/*画像ブロック内の２枚目の写真への追加指定*/
.cont_box1 .image img:nth-of-type(2) {
	width: 40%;	/*画像の幅*/

}
.cont_box1 .image img:nth-of-type(2) {
	position: absolute;
	right: 0;	/*画像ブロックに対して右側からの配置場所*/
	top: 0vw;	/*画像ブロックに対して上からの配置場所*/
}


/*コンテンツタイトル*/
.h_title {
	color:#000000;
	font-weight:700;
	margin: 10px;padding: 0;
	font-size: 1.7rem;		/*文字サイズ。240%。*/
	margin-bottom: 3vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	align-items: center;
}


/*h2見出しのサブテキスト（sub-text）*/
.h_title_sub {
	color:#5D5D5D;
	display: inline-block;
	border-top: 1px solid var(--primary-color);	/*上の線の幅、線種、varは色のことで冒頭のprimary-colorを読み込みます。*/
	font-size: 0.9rem;		/*文字サイズ80%*/
	opacity: 0.6;			/*透明度。色が60%出た状態。*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	padding-top: 0rem;		/*上に空ける余白。ラインとの間の余白調整です。お好みで。*/
}

.cont_box2 {
	overflow-x: visible;
	position: relative;
	background: #e8eaee;	/*背景色*/
	padding: 8vw;	/*ボックス内の余白。冒頭にあるspace-largeを読み込みます。*/
	margin-top: 3vw;	/*上に空けるスペース。スライドショーとこのボックスの間のスペースです。お好みで。*/
	margin-bottom: 3rem;	
}
.cont_box2 a {
	color: inherit;
}


/*テキストボックス*/
.cont_box2 .text {
	margin-bottom: 0rem;	/*下に5文字分の余白*/
	
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.cont_box2 {
		display: flex;	/*横並びにする*/
		gap: 4vw;		/*左右の間のスペース*/
		border-radius: 20vw 0 20vw 0;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
	    margin-bottom: 0rem;
	}
	
	.cont_box2 > * {flex-wrap: wrap;}


	.cont_box2 .text {
		margin-bottom: 0;	/*下マージンのリセット*/
	}

	}/*追加指定ここまで*/


/*画像を囲むブロック*/
.cont_box2 .image {
	position: relative;
	top: 15vw;	/*画像ブロックに対して上からの配置場所*/
}

/*画像の角を少し丸くする指定*/
.cont_box2 .image img {
	border-radius: 10px;
}

/*画像ブロック内の１枚目の写真への追加指定*/
.cont_box2 .image img:nth-of-type(1) {
	width: 100%;	/*画像の幅*/
}

/*画像ブロック内の２枚目の写真への追加指定*/
.cont_box2 .image img:nth-of-type(2) {
	width: 40%;	/*画像の幅*/

}
.cont_box1 .image img:nth-of-type(2) {
	position: absolute;
	right: 0;	/*画像ブロックに対して右側からの配置場所*/
	top: 0vw;	/*画像ブロックに対して上からの配置場所*/
}



/*解説タイトル１*/
.cont_title1 {
	color:#0093FF;
	font-weight:700;
	margin: 0;padding: 0;
	font-size: 1.4rem;		/*文字サイズ。240%。*/
	margin-bottom: 0vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	align-items: left;
}
.cont_title_blue {
	color:#0093FF;
	font-weight:700;
	margin: 0;padding: 0;
	font-size: 1.4rem;		/*文字サイズ。240%。*/
	margin-bottom: 0vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	align-items: center;
}


.q_a1 {
	color:#0093FF;
	font-weight:700;
	font-size: 1rem;		/*文字サイズ。240%。*/
	padding-left: 3rem;
}
.q_a1 span {
	color:#000000;
	font-weight:500;
	margin: 0;padding: 0;
	font-size: 1rem;		/*文字サイズ。240%。*/
	padding-left: 1rem;
}
.q_a2 {
	color:#0093FF;
	font-weight:700;
	font-size: 1rem;		/*文字サイズ。240%。*/
	padding-left: 3rem;
}
.q_a2 span {
	color:#000000;
	font-weight:300;
	margin: 0;padding: 0;
	font-size: 1rem;		/*文字サイズ。240%。*/
	padding-left: 1rem;
}

.fas_header_h1{
	position: relative;
	line-height: 1.4;
	font-size: 1.2em;
	font-weight: bold;
	padding: 0 0 0 calc(1em + 5px);	
	color: #0093FF;
}
.fas_header_h1:before{
	position: absolute;
	left: 0;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Free"; 
	font-weight: 900;
	content: '\f138';
}
.fas_header_h1 ul{
  padding-left: 1em;
  text-indent: -1em;
}
.fas_bt{
	position: relative;
	padding-left: 1em;
	line-height: 1.4;
	font-size: 1em;
	font-weight: bold;
	padding: 0 0 0 calc(1em + 5px);	
	color: #636363;
}
.fas_bt:before{
	position: absolute;
	left: 0;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Free"; 
	font-weight: 900;
	content: '\f0ac';
}

.fas_header_h2{
	position: relative;
	line-height: 1.0;
	font-size: 1.4em;
	font-weight: bold;
	padding: 0 0 0 calc(1em + 5px);	
	color: #0093FF;
	margin-bottom: 0;
}
.fas_header_h2:before{
	position: absolute;
	left: 0;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Free"; 
	font-weight: 900;
	content: '\f138';
}
.fas_header_h2{
	position: relative;
	line-height: 1.0;
	font-size: 1.2em;
	font-weight: bold;
	padding: 0 0 0 calc(1em + 5px);	
	color: #0093FF;
}
.fas_header_h2:before{
	position: absolute;
	left: 0;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Free"; 
	font-weight: 900;
	content: '\f138';
}
.fas_header_h2 ul{
  padding-left: 1em;
  text-indent: -1em;
}

/*解説タイトル２*/
.cont_title2 {
	color:#000000;
	font-weight:400;
	margin: 0;padding: 0;
	font-size: 1.3rem;		/*文字サイズ。240%。*/
	margin-bottom: 0vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	align-items: left;
}

.h_title {
	color:#000000;
	font-weight:400;
	margin: 0;padding: 0;
	font-size: 2rem;		/*文字サイズ。240%。*/
	margin-bottom: 0vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	align-items: center;
}
.cont_title {
	color:#0093FF;
	font-weight:700;
	margin: 0;padding: 0;
	font-size: 1.7rem;		/*文字サイズ。240%。*/
	margin-bottom: 0vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	align-items: left;
}

.b_title {
	color:#0093FF;
	font-weight:400;
	margin: 0;padding: 0;
	font-size: 2rem;		/*文字サイズ。240%。*/
	margin-bottom: 0vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	align-items: center;
}
.tt_title {
	color:#0093FF;
	font-weight:400;
	margin: 0;padding: 0;
	font-size: 2rem;		/*文字サイズ。240%。*/
	margin-bottom: 0vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	align-items: center;
}

/*画面幅600px以上の追加指定*/
    @media screen and (min-width:600px) {

/*コンテンツタイトル*/
.h_title {
	color:#000000;
	font-weight:400;
	margin: 0;padding: 0;
	font-size: 2.4rem;		/*文字サイズ。240%。*/
	margin-bottom: 0vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	align-items: center;
}

/*見出し*/
.h_title_sub {
	color:#5D5D5D;
	display: inline-block;
	border-top: 1px solid var(--primary-color);	/*上の線の幅、線種、varは色のことで冒頭のprimary-colorを読み込みます。*/
	font-size: 0.8rem;		/*文字サイズ80%*/
	opacity: 0.6;			/*透明度。色が60%出た状態。*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	padding-top: 0rem;		/*上に空ける余白。ラインとの間の余白調整です。お好みで。*/
}
/*解説タイトル*/
.cont_title {
	color:#0093FF;
	font-weight:700;
	margin: 0;padding: 0;
	font-size: 2rem;		/*文字サイズ。240%。*/
	margin-bottom: 0vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	align-items: left;
}
.b_title {
	color:#0093FF;
	font-weight:400;
	margin: 0;padding: 0;
	font-size: 2.4rem;		/*文字サイズ。240%。*/
	margin-bottom: 0vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	align-items: center;
}
.tt_title {
	color:#0093FF;
	font-weight:400;
	margin: 0;padding: 0;
	font-size: 2.4rem;		/*文字サイズ。240%。*/
	margin-bottom: 0vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	align-items: center;
	text-align: left;
}
}




.ta1.plan, .ta1.plan td, .ta1.plan th {
	text-align: center;
	border: 2px solid var(--base-inverse-color);	/*テーブルの枠線の幅、線種、varは色のことで冒頭のbase-inverse-colorを読み込みます*/
	padding: 0.5rem;
}

	/*画面幅801px以上の追加指定*/
	@media screen and (min-width:801px) {

	.ta1.plan, .ta1.plan td, .ta1.plan th {
		font-size: 1.2rem;
		padding: 2rem 1rem;
	}

	}/*追加指定ここまで*/


/*一番左側の縦列の幅*/
.ta1.plan th:first-child,
.ta1.plan td:first-child {
    width: 12rem;	/*目安としては約12文字分。*/
}



/*テーブル（table1）
---------------------------------------------------------------------------*/
.table1.-fixed {
    table-layout: fixed;
}

.text-center {
    text-align: center !important;
}

.align-middle {
    vertical-align: middle !important;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.table1 {
    display: table;
    border-collapse: separate;
    box-sizing: border-box;
    text-indent: initial;
    unicode-bidi: isolate;
    border-spacing: 0px;
    border-color:000;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #333;
}

.table1 thead {
    display: table-header-group;
    vertical-align: middle;
    unicode-bidi: isolate;
    border-color: #AAAAAA;
    background: #999999;
    color: #FFF;
}

.table1 td {
    border-color: #AAAAAA;
    background: #FFF;
    color: #000;
    border: 1px solid #EEE;
    padding: 1rem;
    width: 60%;
}

/* 画面幅600px以下の追加指定 */
@media screen and (max-width: 600px) {
    .table1 {
        display: block;
        width: 100%;
        table-layout: auto;

		margin-left: 1.5rem;
    }

    .table1 td {
        display: block;
        padding: 0.8rem;
        border: none;
        border-bottom: 1px solid #EEE;
        width: 100%;
		
    }

    .table1 td[data-label]:before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        margin-bottom: 0.5rem;
        background-color: #CCC; /* 背景色を設定 */
        padding: 0.5rem;
        border-radius: 4px; /* 少し丸みをつける */
        color: #333; /* 文字色を調整 */
    }

    .table1 .label {
        font-weight: bold;
        width: 30%;
    }

    .table1 .value {
        width: 70%;
    }

    .small {
        font-size: 0.8em;
        color: #777;
    }

    .table1 thead {
        display: none; /* ヘッダーは不要 */
    }

    .table1 tr {
        display: block;
        margin-bottom: 1rem;
    }

    .table1 td {
        border: 1px solid #ddd;
        padding: 10px;
        vertical-align: top;
    }
}


/* ２カラムコンテナのスタイル */
.container_2column {
    display: flex;
    justify-content: space-between; /* カラムを左右に配置 */
    padding-bottom: 20px;
	padding-top: 20px;
}

/* 左カラムのスタイル */
.left-column, .right-column {
    display: flex;
    align-items: flex-start; /* コンテンツを上揃え */
    justify-content: space-between; /* コンテンツと画像の間にスペースを作成 */
    width: 48%; /* 各カラムの幅 */
	background: #FFF;
	padding: 20px;
}

/* ３カラムコンテナのスタイル */
.container_3column {
    display: flex;
    justify-content: space-between; /* カラムを横に並べる */
    padding: 20px;
}

/* 各カラムのスタイル */
.column {
    display: flex;
    flex-direction: column; /* コンテンツと画像を縦に並べる */
    align-items: flex-start; /* 左揃え */
    justify-content: flex-start; /* 上揃え */
    width: 32%; /* 各カラムの幅（3つのカラムで並べるため、幅は約32%） */
    background: #FFF;
    padding: 20px;
}

/* 画像のスタイル */
.column-image {
    width: 100%;
    height: auto;
}

/* スマホなどの画面が小さい場合に縦表示に変更 */
@media (max-width: 768px) {
    .container_3column {
        flex-direction: column; /* 縦並びにする */
        align-items: center; /* 中央揃え */
    }
    .column {
        width: 100%; /* 各カラムの幅を100%に */
        margin-bottom: 20px; /* 各カラムの間にスペースを追加 */
    }
}


/* １カラムのスタイル */
.column_1 {
	padding: 20px;
    display: flex;
    align-items: flex-start; /* コンテンツを上揃え */
    justify-content: space-between; /* コンテンツと画像の間にスペースを作成 */
    width: 100%; /* 各カラムの幅 */
	background: #FFF;
}

/* 画像のスタイル */
.column2-image {
    width: 150px; /* 画像の幅 */
    height: auto; /* 高さは自動調整 */
    margin-left: 20px; /* 画像とテキストの間にスペース */
}
.column1-image {
    width: 420px; /* 画像の幅 */
    height: auto; /* 高さは自動調整 */
    margin-left: 20px; /* 画像とテキストの間にスペース */
}

/* カラム内のテキストコンテンツ */
.content {
    flex: 1; /* テキストが残りのスペースを占める */
		text-align:justify;
}

/* レスポンシブ対応（600px以下の場合） */
@media (max-width: 600px) {
    .container_2column {
        flex-direction: column; /* 縦並びに変更 */
        gap: 10px; /* カラム間のスペースを狭める */
    }

    .left-column, .right-column,.column_1 {
        width: 100%; /* 各カラムの幅を100%に */
        flex-direction: column; /* 画像とテキストを縦並びに */
        align-items: flex-start; /* 左揃え */
    }

    .column-image2 {
        margin-left: 0; /* 画像とテキストの間のスペースをなくす */
        margin-top: 10px; /* 画像とテキストの間に少しスペースを追加 */
        width: 100px; /* 画像の幅を小さく */
    }
	.column-image1 {
        margin-left: 0; /* 画像とテキストの間のスペースをなくす */
        margin-top: 10px; /* 画像とテキストの間に少しスペースを追加 */
        width: 100px; /* 画像の幅を小さく */
    }
}






/* コンテナの設定 */
.container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.container_professors {
  display: block;
  padding: 20px;
  max-width: 70%;
  margin: 0 auto;
}
/* レスポンシブ対応（600px以下の場合） */
@media (max-width: 600px) {
	.container_professors {
	  max-width: 90%;
}
}

/* 左側のカラム（本文） */
.main-content {
  width: 70%;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-content h1 {
  font-size: 2em;
  margin-bottom: 20px;
}

/* 右側のカラム（カテゴリーとタイトル） */
.sidebar {
  width: 28%;
  background-color: #e8eaee;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* サイドバー内のリスト */
.sidebar ul {
  list-style-type: none;
}

.sidebar ul li {
  margin-bottom: 12px; /* ボタンを少し広めに */
}

/* リンクをボタン */
.sidebar ul li a {
  display: block; /* インラインブロックからブロックレベルに変更 */
  padding: 12px 30px; /* 幅広く */
  background-color: #e8eaee; 
  color: #000;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  width: 100%; /* 幅を親要素いっぱいに広げる */
  border: 1px solid white; /* 白いボーダーを追加 */
}
.sidebar ul li p {
  display: block; /* インラインブロックからブロックレベルに変更 */
  padding: 10px; /* 幅広く */
  background-color: #424242; 
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  width: 100%; /* 幅を親要素いっぱいに広げる */

}
.sidebar ul li .active {
  background-color: #fff; 
}

/* ホバー時の効果 */
.sidebar ul li a:hover {
  background-color: #FFF; /* ホバー時の色 */
  transform: translateX(-3px); /* 少し上に動かす */
}

/* アクティブリンクの色変更 */
.sidebar ul li a:active {
  background-color: #e6e6fa; /* クリック時の色 */
  transform: translateX(0); /* クリック時に戻す */
}

.main-content span {
    background: #ec9347;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 0.7;
    padding: 4px 16px;
    border-radius: 90px;
    margin-bottom: 0px;
	margin-right: 8px;
}
/* スマホ向けのレスポンシブ設定 */
@media (max-width: 768px) {
  .container {
    flex-direction: column; /* カラムを縦に並べる */
    padding: 10px; /* スマホのためにパディングを少し小さく */
  }

  .main-content {
    width: 100%; /* メインコンテンツを幅いっぱいに広げる */
    margin-bottom: 20px; /* メインコンテンツとサイドバーの間に隙間を追加 */
  }
  .main-content h1 {
  font-size: 2em;
  margin-bottom: 20px;
}

  .sidebar {
    width: 100%; /* サイドバーを幅いっぱいに広げる */
    margin-top: 20px; /* メインコンテンツとサイドバーの間に隙間を追加 */
    border-left: none; /* 左のボーダーを削除 */
    border-top: 2px solid #ddd; /* 上にボーダーを追加 */
  }

  /* サイドバー内のリンクボタン */
  .sidebar ul li a {
    padding: 12px 15px; /* スマホ用にボタンのパディングを調整 */
  }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-left: 20px;
  margin-bottom: 10px;
}

.breadcrumb li:not(:last-of-type)::after {
  content: "?";
  margin: 0 .6em; /* 記号の左右の余白 */
  color: #777; /* 記号の色 */
}

.btn_department span {
    font-size: 1.2rem;
    font-weight: bold;
    color: #009edb;
}

.btn_department a {
    display: block;
    text-decoration: none;
    padding: 0.8rem 2rem; /* 上下、左右へのボタン内の余白 */
    margin-top: 2rem; /* ボタンの上に2文字分のスペースを空ける */
    text-align: center; /* テキストをセンタリング */

	    box-shadow: none; /* ボタンの影を消す */
    background-color: #D6D6D6;
}

/* マウスオン時 */
.btn_department a:hover {
    letter-spacing: 0.1rem; /* 文字間隔を少し広げる */
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1); /* ボタンの影 */
}

/* 通常のボタン背景 */
.btn_department a {
    background: #E7E7E7;
}

.department_waku {
    max-width: 900px; /* 最大幅を指定 */
    margin: 0 auto; /* 自動で中央揃え */
    display: flex; /* フレックスボックスにする */
    flex-wrap: wrap; /* 要素を折り返し可能にする */
    justify-content: space-between; /* ボタン同士の間隔を空ける */
}


/* 各ボタンが1列になるように */
.btn_department {
    min-width: 48%; /* 2列になるようにボタンの幅を指定 */
    margin-top: 0; /* 最初のボタンの上マージンをリセット */
	margin-bottom: 0;
}


.column_faculties1 {
    display: flex;
    margin: 0 auto;
    justify-content: space-between; /* コンテンツと画像の間にスペースを作成 */
    width: 100%; /* 各カラムの幅 */
	text-align: center;	
}
.column_title {
	color:#000000;
	font-weight:500;
	margin: 0 auto;
	font-size: 2rem;		/*文字サイズ。240%。*/
	margin-bottom: 2vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	align-items: center;
}
.column_title_voice {
	color:#000000;
	font-weight:500;
	margin: 0 auto;
	font-size: 2rem;		/*文字サイズ。240%。*/
	margin-bottom: 2vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	align-items: center;
}


.faculties_color01 {
	color: #fff;
    padding: 16px;
    -ms-flex: 1;
    flex: 1;
    margin: 0 0px;
	margin-bottom: 10px;
    text-align: center;
    font-size: 1.3rem;
    border-radius:10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	background-image: linear-gradient(90deg, rgba(65, 164, 253, 1), rgba(14, 244, 255, 1));
	width: 100%;
	line-height: 1.5;
}
.faculties_color02 {
	color: #fff;
    padding: 16px;
    -ms-flex: 1;
    flex: 1;
    margin: 0 0px;
	margin-bottom: 10px;
    text-align: center;
    font-size: 1.3rem;
    border-radius:10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	background-image: linear-gradient(90deg, rgba(247, 93, 139, 1), rgba(254, 220, 64, 1));
	width: 100%;
	line-height: 1.5;
}
.faculties_color03 {
	color: #fff;
    padding: 16px;
    -ms-flex: 1;
    flex: 1;
    margin: 0 0px;
	margin-bottom: 10px;
    text-align: center;
    font-size: 1.3rem;
    border-radius:10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	background-image: linear-gradient(90deg, rgba(103, 126, 250, 1), rgba(142, 84, 219, 1));
	width: 100%;
	line-height: 1.5;
}

.faculties_color04 {
	color: #fff;
    padding: 16px;
    -ms-flex: 1;
    flex: 1;
    margin: 0 0px;
	margin-bottom: 10px;
    text-align: center;
    font-size: 1.3rem;
    border-radius:10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	background-image: linear-gradient(90deg, rgba(30, 126, 90, 1), rgba(50, 84, 80, 1));
	width: 100%;
	line-height: 1.5;
}

/*ボックス横並び２個
------------------------------------*/

.col_faculties{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background-color: #FFF;
}
.col_faculties p{
	    font-size: 1.1rem;
    margin: 0 24px;
	text-indent: -1em;
    padding-left: 1em;
}
.col_faculties > div{
	width: 100%;
	padding: 50px;
}
@media screen and (max-width: 600px) {
	.col_faculties > div{
		width: 100%;
	}
}

.col_faculties_np{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.col_faculties_np > div{
	width: 50%;
	padding: 0 10px;
}

.column_title_voice {
	color:#000000;
	font-weight:500;
	margin: 0 auto;
	font-size: 1.5rem;		/*文字サイズ。240%。*/
	margin-bottom: 2vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	align-items: center;
}
@media screen and (max-width: 600px) {
	.col_faculties > div{
		width: 100%;
	}
	.faculties_color01,.faculties_color02,.faculties_color03,.faculties_color04{
		    margin: 0 0px;
			margin-bottom: 10px;
	}
}

.youtube_wrap{
    padding-top: 56.25%;
    width: 80%;
    position: relative;
	margin: 0 auto; /* 自動で中央揃え */
}
 
.youtube_wrap iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 30px;
    left: 0px;
}


.news-img-flex{
	display: flex;
	justify-content: space-between;
}

.news-img-flex img{
	width: 49%;
}


/*留学
------------------------------------*/
.sb_title {
	color:#0093FF;
	font-weight:700;
	margin: 0;padding: 0;
	font-size: 1.7rem;		/*文字サイズ。240%。*/
	margin-bottom: 0vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	align-items: left;
}

.cont_title_catch {
	color:#0093FF;
	font-weight:700;
	margin: 0;padding: 0;
	font-size: 1.4rem;		/*文字サイズ。240%。*/
	align-items: center;
}

.cont_title_catch p {
	color:#000;
	margin: 0;padding: 0;
	font-size: 0.8rem;		/*文字サイズ。80%。*/
	margin-bottom: 0vw;		/*下にスペースを空ける*/
	align-items: center;
}

.interview_name {
	color:#000;
	margin: 0;padding: 0;
	font-size: 0.8rem;		/*文字サイズ。90%。*/
	margin-bottom: 0vw;		/*下にスペースを空ける*/
	align-items: center;
	padding-top: 10pt;
}

#interview_text {
  width: 100%;
  padding-right: 20px;
  flex: 1;
  text-align: justify;
}

.sb_note {
	color:#000;
	margin: 0;padding: 0;
	font-size: 0.8rem;		/*文字サイズ。80%。*/
	margin-bottom: 0vw;		/*下にスペースを空ける*/
}

@media (max-width: 600px) {
	
.sb_title {
	color:#0093FF;
	font-weight:700;
	margin: 0;padding: 0;
	font-size: 1.6rem;		/*文字サイズ。240%。*/
	margin-bottom: 0vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	align-items: left;
}
.interview_name {
	color:#000;
	margin: 0;padding: 0;
	font-size: 0.75rem;		/*文字サイズ。75%。*/
	margin-bottom: 0vw;		/*下にスペースを空ける*/
	align-items: center;
	padding-top: 10pt;
}
#interview_photo {
  width: 100%; /*幅指定*/
}
.cont_title2 {
	color:#000000;
	font-weight:400;
	margin: 0;padding: 0;
	font-size: 1.2rem;		/*文字サイズ。240%。*/
	margin-bottom: 0vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	align-items: left;
}
#interview_text {
  width: 100%;
  padding-right: 0px;
  flex: 1;
  text-align: justify;
}

}

/*フォントサイズ
------------------------------------*/
.f80 {
	font-size: 80% !important;
}
.f110 {
	font-size: 110%;
}
.f120 {
	font-size: 120%;
}

/*ボックスの位置
------------------------------------*/
.ma-center {
	margin-left: auto;
	margin-right: auto;
}

/*学科?専攻ページのスライド位置調整
------------------------------------*/
.dummy-area {
	width: 100%;
	padding-top: 50px;
	margin-top: -50px;
	font-size: 1px;
	color: #e8eaee;
}

/*教員紹介写真
------------------------------------*/
.professor_photo {
  width: 300px; /*幅指定*/
  	margin-left: auto;
}

@media screen and (max-width: 1000px) {
.professor_photo {
  width: 50%; /*幅指定*/
	margin-left: auto;
}
}

@media screen and (max-width: 600px) {
.professor_photo {
  width: 100%; /*幅指定*/
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 5vw;
}
}