﻿/*　■■■■■■■■■■■■■■■■■■■■■■■■■　*/
/*　■■■■■■■■■ 共通CSS  ■■■■■■■■■■■　*/
/*　■■■■■■■■■■■■■■■■■■■■■■■■■　*/

/*　■■■■■■■■■ リセット補足 ■■■■■■■■■　*/
a {
	text-decoration:none;
}
a:link, a:visited {
	color:#000;
}
a:hover {
	color:#F00;
}
figure {
	margin:0;
}
ul {
	list-style: none;
}
.clear {
	clear:both;
}
/*　■■■■■■■■■ 文字色・背景 ■■■■■■■■■　*/
/* カラー */
.black {
	color:#000;
}
.red {
	color:#F00;
}
.white {
	color: #FFF;
}
.blue {
	color: #00F;
}
.navy {
	color:#006;
}
.gray {
	color:#CCC;
}
.green {
	color:#090;
}
.orange {
	color: #F60;
}
.pink {
	color:#F69;
}
.pink_csfet {
	color:#CC3366;
}
/* 背景 */
.back_gray {
	background-color:#CCC;
}
.back_white {
	background-color:#FFF;
}
/*　■■■■■■■■■ フォント ■■■■■■■■■　*/
/* サイズ */
.s400 {
	font-size:400%;
}
.s200 {
	font-size:200%;
}
.s160 {
	font-size:160%;
}
.s140 {
	font-size:140%;
}
.s120 {
	font-size:120%;
}
.s110 {
	font-size:110%;
}
.s90 {
	font-size:90%;
}
.s85 {
	font-size:85%;
}
.s80 {
	font-size:80%;
}
.s70 {
	font-size:70%;
}
.s60 {
	font-size:60%;
}
.s50 {
	font-size:50%;
}
/* フォントの太さ */
.bold {
	font-weight: bold;
}
.normal {
	font-weight:normal;
}
/*書体*/
.italic {
	font-style: italic;
}
/*　■■■■■■■■■ 文字配置 ■■■■■■■■■　*/
/* 行の高さ */
.lh110 {
	line-height:110%;
}
.lh130 {
	line-height:130%;
}
.lh150 {
	line-height:150%;
}
/* 行揃えの位置 */
.tright {
	text-align:right;
}
.tleft {
	text-align:left;
}
.tcenter {
	text-align:center;
}
.fleft {
	float:left;
}
.fright {
	float:right;
}
/* テキストの下線・打ち消し線 */
.under {
	text-decoration: underline;
}
.torikeshi {
	text-decoration:line-through;
}
/* 字下げ */
.sage1 {
	text-indent: 1em;
}
.sage1_5 {
	text-indent: 1.5em;
}
.sage10 {
	margin:0 0 7px 1em;
	text-indent: -1em;
}
.sage13 {
	margin:0 0 7px 1.3em;
	text-indent: -1.3em;
}
/* マージン・パディング */
/* 上 */
.mt5 {
	margin-top:5px;
}
.mt10 {
	margin-top:10px;
}
.mt20 {
	margin-top:20px;
}
.mt30 {
	margin-top:30px;
}
/* 右 */
.mr10 {
	margin-right:10px;
}
.mr20 {
	margin-right:20px;
}
.mr30 {
	margin-right:30px;
}
/* 下 */
.mb5 {
	margin-bottom:5px;
}
.mb10 {
	margin-bottom:10px;
}
.mb15 {
	margin-bottom:15px;
}
.mb20 {
	margin-bottom:20px;
}
.mb30 {
	margin-bottom:30px;
}
.mb40 {
	margin-bottom:40px;
}
/* 左 */
.ml03 {
	margin-left:0.3em;
}
.ml04 {
	margin-left:0.4em;
}
.ml05 {
	margin-left:0.5em;
}
.ml06 {
	margin-left:0.6em;
}
.ml08 {
	margin-left:0.8em;
}
.ml10 {
	margin-left:1em;
}
.ml13 {
	margin-left:1.3em;
}
.ml20 {
	margin-left:2em;
}
.ml30 {
	margin-left:3em;
}
.ml40 {
	margin-left:4em;
}
/*　■■■■■■■■■ テーブル ■■■■■■■■■　*/
table {
	font-size:90%;
}
table.kihon td{
	border:solid #999 1px;
	padding:7px;
}
table.kihon th{
	border:solid #999 1px;
	padding:7px;
}
table.wakunashi tr td{
	border:none;
	padding:7px;
}
/*　■■■■■■■■■ リスト ■■■■■■■■■　*/
/* 算用数字 */
.deci {
	margin:0 0 0 20px;
	list-style-type:decimal;
}
/* 先頭に0をつけた算用数字 */
.deci2 {
	margin:0 0 0 20px;
	list-style-type:decimal-leading-zero;
}
/* 黒四角 */
.square {
	margin:0 0 0 20px;
	list-style-type:square;
}
/* 黒丸 */
.disc {
	margin:0 0 0 20px;
	list-style-type:disc;
}
/* 白丸 */
.circle {
	margin:0 0 0 20px;
	list-style-type:circle;
}
/* 大文字のローマ数字 */
.uproman {
	margin:0 0 0 20px;
	list-style-type:upper-roman;
}
/* 小文字のアルファベット */
.lowlatin {
	margin:0 0 0 20px;
	list-style-type:lower-latin;
}
/* 大文字のアルファベット */
.uplatin {
	margin:0 0 0 20px;
	list-style-type:upper-latin;
}
/* dlを使ったシンプルなリスト その１ */
dl.list01 dt {
	margin:15px 0 5px;
	font-size:105%;
	font-weight:bold;
}
dl.list01 dt span {
	margin:0 0 0 5px;
	font-size:85%;
	font-weight:normal;
}
dl.list01 dd {
	margin:0 0 0 1em;
}
/*　■■■■■■■■■ その他 ■■■■■■■■■　*/
/* 画像の枠線など */
.img_border {
	padding:1px;
	border:solid 1px #666;
	background-color: #FFF;
}
/* ページトップへ */
.page-top {
	position: fixed;
	bottom: 60px;
	right: 40px;
	padding: 18px 0 0 8px;
	width:50px;
	height:40px;
	background: #333333;
	-webkit-border-radius: 30px;
	-moz-border-radius: 20px;
	border-radius: 30px;
	font-size: 12px;
	-ms-filter: "alpha(opacity=80)";
	-moz-opacity: 0.8;
	-khtml-opacity: 0.8;
	text-decoration:none;
}
.page-top:link, .page-top:visited {
	color:#FFFFFF;
}
.page-top:hover {
	background:#999999;
	color:#FF0000;
}
/* 準備中 */
.const {
	margin:200px auto;
	font-size:200%;
	color:#999;
	line-height:240%;
}
.const span {
	margin-left:40px;
	font-size:240%;
}
/*　■■■■■■■■■■■■■■■■■■■■■■■■■　*/
/*　■■■■■■■■■ ページの構造 ■■■■■■■■■　*/
/*　■■■■■■■■■■■■■■■■■■■■■■■■■　*/
/* ------------ ボディ -----------*/
body {
	font-family:"Lucida Grande", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HiraKakuPro-W3", Osaka, sans-serif;
/*	font-family:"メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
	font-size: 90%;
/*	font-size: 88%;*/
	line-height:165%;
	-webkit-print-color-adjust: exact;
/*	background: #FFCCCC;*/
}
/*　■■■■■■■■■ ヘッダ ■■■■■■■■■　*/
header {
	margin: 0 auto 50px;
	width: 1100px;
}
header .title {
	display: flex;
	height: 200px;
	background-image: url("img/orange.jpg");
	border-bottom: solid 1px #999999;
}
header .title > h1 {
	position: relative;
	top: 40px;
	left: 580px;
/*	background: #DEE1AD;*/
}
header .title > h1 img {
	width: 420px;
	height: auto;
	filter: drop-shadow(5px 5px 3px rgba(119, 138, 156, 0.747));
}
/* ------------ ナビと文字サイズの外枠 -----------*/
nav {
	display:-webkit-flex;
	display: flex;
	position: relative;
	top: 0px;
	left: 0px;
/*	background: #F0BABB;*/
}
nav > div {
	width: 20%;
/*	background: #DBE7A6;*/
}
nav > ul {
	display:-webkit-flex;
	display:flex;
	width: 80%;
/*	background: #9CB3E1;*/
}
/* ------------ 日本語・英語切り替え -----------*/
ul.jpen {
	display:-webkit-flex;
	display:flex;
	margin: 10px 0 0;
	width: 100%;
/*	background: #F0BABB;*/
}
ul.jpen img {
	margin-right: 3px;
	width: 15px;
	height: auto;
}
ul.jpen li.en a {
	padding: 0 5px;
	border: solid 1px #666666;
	border-radius: 5px;
	background: linear-gradient(#dddddd, #eeeeee);
}
ul.jpen li.jp a {
	margin-right:5px;
	margin-left:10px;
	padding: 0 5px;
	border: solid 1px #666666;
	border-radius: 5px;
	background: linear-gradient(#dddddd, #eeeeee);
}
ul.jpen li.on a {
	background: #FFFFFF;
}
/* ------------ 文字の大きさ切り替え -----------*/
#font_size {
	display:-webkit-flex;
	display:flex;
	margin: 10px 0 0;
	width: 100%;
/*	background: #B2B4E8;*/
}
#font_size dt {
	margin: 0 0px 0 10px;
	font-size: 80%;
}
#font_size dd a {
	display: block;
	margin: 0 0 0 5px;
	padding: 0px 7px;
	height: 23px;
	font-size: 85%;
	border: solid 1px #666666;
	border-radius: 5px;
	background: linear-gradient(#dddddd, #eeeeee);
}
#font_size dd a.textresizer-active {
	background: #FFFFFF;
}
/*#font_size dd.frst a,
#font_size dd a.textresizer-active {
	background: #FFFFFF;
}
#font_size dd.frst a:not(.textresizer-active) {
	background: #FFFFFF;
}
#font_size dd:not(.frst) a:not(.textresizer-active) {
	background: linear-gradient(#dddddd, #eeeeee);
}
#font_size dd a:not(.textresizer-active) {
	background: linear-gradient(#dddddd, #eeeeee);
}*/
/* ------------ ナビ -----------*/
nav > ul li a {
	display:block;
	margin: 0 3px 0 0;
	padding: 5px 30px;
	font-size:100%;
	font-weight:bold;
	border-right: solid 1px;
	border-bottom: solid 1px;
	border-left: solid 1px;
	border-radius: 0px 0px 5px 5px;
}
nav > ul li a:not(.slct) {
	background: #DDDDDD;
/*	background: #f0f8ff;*/
}
nav > ul li:hover a {
	background: #f0f8ff;
	color: #000000;
}
nav > ul li:hover a.slct {
	pointer-events: none;
	background: #FFFFFF;
}
nav.nv_jp > ul li a {
/*	margin: 0 3px 0 0;
	padding: 5px 10px;
	font-size:85%;*/
}
/* ------------ ホームページ全体のフレーム -----------*/
#sec_all {
	display: flex;
	margin: 0 auto;
	width: 1100px;
/*	background: #DD9C9D;*/
}
#sec_l {
	width: 200px;
	min-height: 1000px;
/*	background:#96BCD7;*/
}
#sec_r {
	width: 900px;
/*	background:#C7D783;*/
}
/*　■■■■■■■■■ リンク ■■■■■■■■■　*/
.bnr_main {
	margin: 0px 10px 50px;
}
.bnr_main li {
	position: relative;
	margin: 0 auto 10px;
	width: 180px;
	height: 63px;
/*	background: #EDA6A7;*/
}
.bnr_main li img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: auto;
	border: solid 1px #DDDDDD;
	border-radius: 5px;
	background: #FFFFFF;
}
.bnr_main img:hover {
	opacity: 0.7;
	border: solid 1px #FF0000;
}
.bnr_main li.slct,
.bnr_main li.slct img,
.bnr_main li.slct img:hover {
	opacity: 0.6;
	border: solid 1px #DDDDDD;
	cursor: default;
/*	pointer-events: none;*/
}
#sec_l .copy {
	display:block;
	margin: 0 0 50px 10px;
	width: 90%;
	font-size:100%;
	line-height: 120%;
/*	background: #EFC0C1;*/
}
/*　■■■■■■■■■ コンテンツ ■■■■■■■■■　*/
.open {
}
.pre_open {
	display: none;
}
#sec_con {
	min-height: 500px;
	margin:0 auto;
	padding:0 20px 20px 20px;
	width:90%;
	overflow:hidden;
/*	background: #E7E4BD;*/
}
#sec_con h2 {
	margin: 0px 0 30px;
	font-size: 150%;
}
#sec_con h2:not(:first-child) {
	margin: 50px 0 30px;
	font-size: 150%;
}
#sec_con h3 {
	margin: 40px 0 5px;
	padding-bottom: 5px;
	border-bottom: solid 1px #999999;
	font-size: 115%;
}
#sec_con h4 {
	margin: 0px 0 0px;
	font-size: 105%;
}
#sec_con h4:not(:first-child) {
	margin: 30px 0 0px;
	font-size: 105%;
}
#sec_con .honbun {
	margin: 0 0 0px;
	font-size: 115%;
	line-height: 170%;
	font-family: a-otf-ryumin-pr6n, serif;
	font-style: normal;
	font-weight: 500;
}
/*■Top*/
#sec_con .bunkatsu {
	display: flex;
}
#sec_con .bunkatsu_img img {
	margin: 10px 0 0 10px;
	width: 300px;
	height: auto;
}
/*共通*/
.btn_kau a {
	display: block;
	margin: 10px;
	padding: 5px;
	width: 200px;
	text-align: center;
	font-size: 120%;
	font-weight: bold;
	letter-spacing: 1em;
	border: solid 1px #DDDDDD;
	border-radius: 5px;
	background: #FF6633;
	color: #FFFFFF;
}
.btn_kau a:hover {
	opacity: 0.7;
}
.btn_kau_en a {
	display: block;
	margin: 10px;
	padding: 5px;
	width: 200px;
	text-align: center;
	font-size: 120%;
	font-weight: bold;
	border: solid 1px #DDDDDD;
	border-radius: 5px;
	background: #FF6633;
	color: #FFFFFF;
}
.btn_kau_en a:hover {
	opacity: 0.7;
}
ul.ronbun {
	margin: 0 0 0 20px;
	list-style-type: disc;
}
ul.ronbun li {
	margin: 0 0 20px 0;
}
.img_300 {
	display: flex;
}
.img_300 img {
	margin: 20px 0 0;
	width: 300px;
	height: auto;
/*	border: solid 1px #999999;*/
}
.border img {
	border: solid 1px #999999;
}
.img_450 img {
	margin: 20px 0 0;
	width: 450px;
	height: auto;
/*	border: solid 1px #999999;*/
}
.img_500 img {
	margin: 20px 0 0;
	width: 500px;
	height: auto;
/*	border: solid 1px #999999;*/
}
img.icn_glass {
	margin: 0 0 0 10px;
	width: 40px;
	height: auto;
}
.hover a:hover {
	opacity: 0.7;
}
/*トランス文化家族看護学*/
.img_tcn_scholar img {
	margin: 20px 0 0;
	width: 95%;
	height: auto;
}
/*家族ケアリング*/
.img_fc2m {
	margin: 0;
	float: right;
}
.img_fc2m img {
	width: 300px;
	height: auto;
}
.img_leininger img {
	margin: 20px 0 0;
	width: 95%;
	height: auto;
}
/*こども看護学*/
.img_kodomo img {
	margin: 20px 0 0;
	width: 95%;
	height: auto;
}
/*　■■■■■■■■■ 拓説和尚のサイバー寺“法橋寺” ■■■■■■■■■　*/
#toi {
	margin:20px 0 0;
	width:100%;
    text-align: center;
/*    background: #DB9FA0;*/
}
#toi h3 {
    margin: 30px 0 10px;
    font-size: 120%;
}
#toi dl {
	margin: 0 0 20px 100px;
	width: 70%;
}
#toi dl dt {
	float: left;
	font-weight: bold;
}
#toi dl dd {
	margin: 0 0 20px 14em;
}
#toi .ssl_badge {
	float: right;
}
#toi .ssl_badge img {
	width: 150px;
	height: auto;
}
/*　■■■■■■■■■ 共生 ■■■■■■■■■　*/
.noto_pdf {
	margin: 10px 0 10px 5px;
	font-size: 90%;
}
.noto_pdf a {
	text-decoration: underline;
}
.noto {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.noto figure img:nth-of-type(1) {
	width: 300px;
	height: auto;
}
.noto figure img:nth-of-type(2) {
	margin-right: 50px;
}
/*　■■■■■■■■■ 連絡先 ■■■■■■■■■　*/
.renraku img {
	margin: 20px 0 0;
	width: 90%;
	height: auto;
	text-align: center;
}
/*　■■■■■■■■■ フッタ ■■■■■■■■■　*/
footer {
	margin: 50px 0 0;
}
footer .ftr_line {
	width: 100%;
	height: 30px;
    background: linear-gradient(0deg, rgb(255, 255, 255), rgb(240, 240, 240));
	border-top: solid 1px #DDDDDD;
}
footer .ftr {
	clear: both;
	margin:20px auto 10px;
	width: 700px;
	height:auto;
}
footer .copy {
	display:block;
	font-size:100%;
	line-height: 120%;
}
footer .rireki {
}
footer .cc_png {
	float: right;
}
footer .cc_png img {
	width: 100px;
	height: auto;
}
/*　■■■■■■■■■ 中医看護学 ■■■■■■■■■　*/
.lst_links {
	margin: 10px 0 0 20px;
	list-style: disc;
	font-size: 115%;
	font-family: a-otf-ryumin-pr6n, serif;
}
.lst_links li {
	margin-bottom: 7px;
}
.lst_links a {
	text-decoration: underline;
}
.scanme img {
	margin: 20px 0 0;
	width: 300px;
	height: auto;
}