/******************************************************************************
******************************************************************************
**
** style.cssにおいて
** -- styleではコンテンツ（データ入れ）で使用する基本タグのCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- homeではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
**        指定単位は[ px ][ rem ][ em ]を使用。
**        例 16px = 1.6rem
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
body {
	background-color: #FBD2C1;
}
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
	line-height: 1.6;
	word-wrap: break-word
}
.mcon a img:hover {
	opacity: 0.8;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease
}
.mcon h1 {
	background: url(../images/icon_reinbow.png) no-repeat left center;
	border-bottom: 1px solid #DDD;
	font-size: 19px;
	padding: 5px 0 5px 26px;
	margin-bottom: 20px;
}
.mcon h2 {
	padding: 8px 16px;
	margin: 20px 0px 15px;
	font-size: 16px;
	color: #FFF;
	background-color: #F9B395;
	border-radius: 6px;
}
.mcon h3 {
	font-size: 16px;
	margin-bottom: 10px;
	margin-top: 16px;
	padding-left: 3px;
	padding-bottom: 3px;
	border-bottom: 2px solid #F9B395;
	position: relative;
}
.mcon h3:before {
	border-bottom: 2px solid rgba(255, 255, 255, 0.4);
	content: "";
	bottom: -2px;
	left: 0;
	position: absolute;
	width: 30%;
}
.mcon h4 {
	font-size: 1.1em;
	margin-bottom: 5px;
	margin-top: 5px;
}
.mcon h5, .mcon h6 {
	font-size: 1em;
	margin-bottom: 2px;
	margin-top: 5px;
}
.mcon hr {
	border: none;
	border-top: 1px dotted #000
}
.mcon iframe {
	max-width: 100%
}
.mcon img {
	max-width: 100%;
	height: auto
}
.mcon ol {
	margin-top: 1.2em;
	margin-bottom: 0.7em
}
.mcon ol li {
	margin-left: 1.5em;
	margin-bottom: 0.5rem
}
.mcon p {
	margin-bottom: 1em
}
.mcon ul {
	margin-top: 1.2em;
	margin-bottom: 0.7em
}
.mcon ul li {
	list-style-type: disc;
	margin-left: 1.5em;
	margin-bottom: 0.5rem
}
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
	background: #F9E9DB;
	border-bottom: 10px solid #F7DFD0;
	width: 100%;
	min-width: 960px
}
.hd {
	height: 170px;
	width: 1180px;
	margin: 0 auto;
	padding: 20px 0 0;
	position: relative;
}
.hd_logo {
	width: 695px;
	height: 70px;
}
.hd_logo a {
	background: url(../images/en/logo.png) no-repeat top left;
	background-size: contain;
	display: block;
	width: 100%;
	height: 100%;
	padding-top: 100%;
	overflow: hidden;
}
.hd_comp{
	position: absolute;
	bottom: 10px;
	right: 0;
}
.hd_comp img{
	width: 460px;
	height: auto;
}
.hd_lang {
	position: absolute;
	right: 0;
	top: 1rem;
}
.hd_lang_list{
	display: flex;
}
.hd_lang_list li:first-child{
	position: relative;
}
.hd_lang_list li:first-child::after{
	border-right: 1px solid #261200;
	content: "";
	position: absolute;
	top: 0.2rem;
	right: -1px;
	bottom: 0.2rem;
}	
.hd_lang_list a{
	color: #261200;
	display: inline-block;
	padding: 0.1rem 0.5rem 0;
	text-decoration: none;
}
.hd_lang_list a:hover{
	text-decoration: underline;
}
/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
	position: absolute;
	left: 0;
	bottom: 16px;
}
.nav_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}
.nav_list img {
	-webkit-transition: All 0.5s ease;
	transition: All 0.5s ease;
	opacity: 0.8;
}
.nav_list img:hover, .nav_list a.current img {
	opacity: 1
}
.nav_list>li {
	margin-right: 5px;
}
.nav_list>li>a {
	display: block;
	text-align: center
}
.nav_list>li:hover {
	display: block;
	-webkit-animation: nav_active 1s ease 0s 1 alternate;
	animation: nav_active 1s ease 0s 1 alternate
}
/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
	background: url(../images/con_bg.png) repeat;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	min-width: 960px
}
.con {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 30px;
	padding-bottom: 30px;
	width: 960px;
	position: relative;
}
.order_1 {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1
}
.order_2 {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2
}
.order_3 {
	-webkit-box-ordinal-group: 4;
	-ms-flex-order: 3;
	order: 3
}
.main {
	background-color: #FFF;
	padding: 20px;
	width: 680px
}
.main_wide{
	background-color: #FFF;
	width:100%; 
	padding:20px;
}
.side {
	width: 250px
}
.side h2 {
	border: 1px solid #F9B395;
	border-radius: 5px;
	color: #F9B395;
	font-size: 1.1em;
	font-weight: bold;
	margin-bottom: 6px;
	padding: 8px;
	text-align: center
}
.side_nav_list li {
	margin-bottom: 5px;
}
.side_nav_list li a {
	background: url(../images/icon_arrow.png) no-repeat 10px center #FFF;
	border: 2px solid #FFF;
	border-radius: 5px;
	color: #261200;
	display: block;
	padding: 10px 16px 10px 26px;
	text-decoration: none
}
.side_nav_list li a:hover, .side_nav_list li a.current {
	border: 2px solid #F9B395;
	background-color: rgba(255, 255, 255, 0.8);
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	min-width: 960px
}
.ft {
	padding-top: 30px;
	padding-bottom: 30px;
	width: 960px;
	text-align: center;
	font-size: 10px;
}
/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pagetop {
	border-radius: 50%;
	background-color: #FFF;
	bottom: 30px;
	height: 70px;
	right: 30px;
	position: fixed;
	width: 70px;
	z-index: 100
}
.pagetop_btn {
	background-color: rgba(250,180,150, 0.8);
	border-radius: 50%;
	color: #FFF;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 9px;
	height: 100%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	text-decoration: none;
	text-align: center;
	width: 100%
}
.pagetop_btn:hover {
	background-color: rgba(250,180,150, 1)
}
/*----------------------------------------------------------------------------
******************************************************************************
** common
******************************************************************************
----------------------------------------------------------------------------*/
.bnr_list li {
	margin-bottom: 10px;
}
.news_table {
	width: 100%
}
.news_table tr {
	border-bottom: 1px dotted #999;
	display: block;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-bottom: 10px
}
.news_date {
	width: 90px;
	vertical-align: top;
	font-size: 10px;
	font-weight: bold;
	text-align: right;
}
.news_held_date {
	border: 1px solid #66340D;
	border-radius: 5px;
	color: #66340D;
	display: inline-block;
	text-align: center;
	margin-right: 10px;
	width: 120px;
}
.news_title {
	width: 100%;
	vertical-align: top
}
.news_icon_new {
	display: inline-block;
	color: #C00;
	font-weight: bold;
	margin-left: 0.5em
}
.news_icon_new:before {
	content: "NEW"
}
/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_bnr{
	width: 100%;
	margin-top: 30px;
}
.bnr_list_02{
	display: flex;
	flex-wrap: wrap;
}
.bnr_list_02 li{
	margin: 0 20px 20px 0;
}
.bnr_list_02 img{
	height: 60px;
	width: auto;
}
.index_greet h2 {
	margin-top: 0px
}
.index_news h2 {
	background: url(../images/icon_reinbow.png) no-repeat left center;
	font-size: 16px;
	padding-left: 26px;
	margin-bottom: 10px;
	position: relative;
}
.index_news h2 .archive_link{
	color: #111;
	font-size: 1rem;
	position: absolute;
	right: 0;
	top: 0.5rem;
	text-decoration: none;
}
.index_news h2 .archive_link:hover{
	text-decoration: underline
}
.index_news_scroll {
	max-height: 300px;
	overflow: auto
}
.index_slide_bg {
	background: url(../images/index_slide_bg_bg.png) no-repeat center;
	background-size: cover;
	background-color: #FDE8DF;
	border-bottom: 1px solid #F7DFD0;
	position: relative;
	z-index: 0;
}
.index_slide {
	width: 1040px;
	margin: 0 auto;
	padding: 10px 0;
}
.index_slide img {}
.index_nav {
	width: 960px;
	position: relative;
}
.index_nav_list {
	display: flex;
	justify-content: space-between;
	position: relative;
}
.index_nav_list li {
	position: relative;
}
.index_nav_list li:nth-child(1) {
	top: -10px;
}
.index_nav_list li:nth-child(2) {
	top: -15px;
}
.index_nav_list li:nth-child(3) {
	top: 0;
}
.index_nav_list li:nth-child(4) {
	top: -10px;
}
.index_main_modelcase{
	text-align: center;
	margin: 2rem 0;
	width: 100%;
}
.index_main_modelcase a:hover{ opacity: 0.8; }
/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.modelcase_list{
	display: flex;
	flex-wrap: wrap;
	
}
.modelcase_list > *{
	margin: 0 20px 20px 0;
	
}
.modelcase_list > *:nth-child(3n){
	margin: 0 0 20px 0;
	
}
.modelcase_list a:hover{
	opacity: 0.8;
}
.modelcase_mcon_iframe iframe{
	width: 100%;
	height: 360px;
}
.mcon .modelcase-qa_mcon_ttl{
	color: #111;
	font-size: 1.4rem;
	padding: 3px 0 0 36px;
	background: url("https://womenres.hiroshima-u.ac.jp/wp/wp-content/uploads/2020/03/icon_question_red01.png") no-repeat left center;
}
.modelcase_main_post {
    margin: 1rem 0 0;
    text-align: right;
    font-size: 0.9rem;
}
/*----------------------------------------------------------------------------
******************************************************************************
** utility.sc.css 上書き
******************************************************************************
----------------------------------------------------------------------------*/
.tbl_bdr th {
	background-color: #F2E7DF!important;
}
