html {
	/*↓↓↓remで指定しない時は切ること*/
	font-size: 62.5%;
}
body {
	color: #1a1a1a;
	font-size: 1.4rem;
	letter-spacing: 0.05rem;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'Meiryo', 'メイリオ', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	line-height: 1.6;
	width: 100%;

	word-wrap:break-word;

	/*スマホの文字の大きさ一定*/
	-webkit-text-size-adjust: 100%;

	/*fontアンチエイリアス*/
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

/*breakpoint display*/
.pc,
.pc_inline,
.pc_tab,
.pc_tab_inline{
	display: none !important;
}
.tab,
.tab_inline{
	display: none !important;
}
.sp,
.sp_tab{
	display: block!important;
}
.sp_inline,
.sp_tab_inline{
	display: inline-block!important;
}
@media screen and (min-width:768px){
	.sp,
	.sp_inline{
		display: none !important;
	}
	.tab,
	.sp_tab{
		display: block !important;
	}
	.tab_inline,
	.sp_tab_inline{
		display: inline !important;
	}
}
@media screen and (min-width:992px){
	.sp,
	.sp_inline,
	.sp_tab,
	.sp_tab_inline{
		display: none !important;
	}
	.tab{
		display: none !important;
	}
	.tab_inline{
		display: none !important;
	}
	.pc,
	.pc_tab{
		display: block !important;
	}
	.pc_inline,
	.pc_tab_inline{
		display: inline-block !important;
	}
}

/*box-sizing default*/
*{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

*:before,
*:after{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* スマホ時のfocusの青枠削除 */
a,
a:focus,
button,
button:focus{
	outline: none;
	-webkit-tap-highlight-color : rgba(0,0,0,0);
}

/* a アニメーション */
@media screen and (min-device-width:992px){
	a{
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}
	a:hover{

	}
}

/* 選択時のマーカー色　backgroundで設定 */
::selection {
	color: #fff;
	background-color: #8F74A1;
}
::-moz-selection {
	color: #fff;
	background-color: #8F74A1;
}

img{
	max-width: 100%;
}


/*============================================================================

		共通パーツ

============================================================================*/

/*ページ内リンク*/
.page_decoy_wrap{
	margin-top: -55px;
	padding-top: 55px;
}
@media screen and (min-width:992px){
	.page_decoy_wrap{
		margin-top: 0;
		padding-top: 0;
	}
}

#wrap{
	width: 100%;
	overflow: hidden;
	position: relative;
}
@media screen and (min-width:992px){
	#wrap{
		border-top: 5px solid #76558c;
	}
}

/*inner max-widthは適時変更*/
.inner_small,
.inner_medium,
.inner_large{
	width: -webkit-calc(100% - 40px);
	width: calc(100% - 40px);
	margin: 0 auto;
}
.inner_small{
	max-width: 900px;
}
.inner_medium{
	max-width: 1080px;
}
.inner_large{
	max-width: 1180px;
}


/*============================================================================

		header

============================================================================*/

header{
	position: fixed;
	width: 100%;
	height: 55px;
	background-color: #fff;
	top: 0;
	left: 0;
	z-index: 100;
	border-bottom: 1px solid #421e5c;
}
.header_inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 55px;
}
.header_logo{
	width: -webkit-calc(100% - 161px);
	width: calc(100% - 161px);
	padding: 0 10px;
}
.header_logo{
	height: 40px;
}
.header_logo .logo_sp img{
	height: 40px;
}
.header_logo .logo_pc{
	display: none;
}
.header_nav_btn{
	width: 100px;
	height: 55px;
	box-sizing: content-box;
}
.header_nav_btn a{
	display: block;
	border-left: 1px solid #421e5c;
}
.header_nav_btn span{
	display: flex;
	align-content: center;
	height: 54px;
}
.hd_modal .header_nav_btn span{
	height: 55px;
}
.header_sp_btn{
	width: 60px;
	position: relative;
}
.header_sp_btn a{
	display: block;
	position: relative;
	width: 60px;
	height: 55px;
	padding-top: 18px;
	background-color: #421e5c;
	cursor: pointer;
}
.header_sp_btn span{
	display: block;
	width: 30px;
	height: 2px;
	background-color: #fff;
	margin: 0 auto 7px;
}
@media screen and (min-width:992px){
	header{
		height: 120px;
		border-top: 5px solid #76558c;
		border-bottom: 0px solid #421e5c;
		box-shadow: 0 6.3px 10px rgba(0,0,0,0.2);
	}
	header.noshadow{
		box-shadow: 0 0 0 rgba(255,255,255,0.0)!important;
	}
	.units-row header{
		height: auto;
	}
	.header_inner{
		height: 115px;
	}
	.header_logo{
		height: 114px;
		width: 260px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		background-color: #f4eff4;
	}
	.header_logo a{
		display: block;
		width: 200px;
		height: 38px;
	}
	.header_logo .logo_pc{
		display: block;
	}
	.header_logo .logo_pc img{
		width: 200px;
		height: 38px;
	}
	.header_logo .logo_sp{
		display: none;
	}
	.header_sp_btn{
		display: none;
	}
}
@media screen and (min-width:1250px){
	.header_logo{
		width: 320px;
	}
	.header_logo a{
		display: block;
		width: 240px;
		height: 45px;
	}
	.header_logo .logo_pc{
		display: block;
	}
	.header_logo .logo_pc img{
		width: 240px;
		height: 45px;
	}
}

/*PC 検索欄など*/
.pc_contents_head{
	display: none;
}
@media screen and (min-width:992px){
	.sp_search_area{
		display: none;
	}
	.pc_contents_head{
		display: flex;
		align-items: center;
		height: 30px;
		font-size: 1.2rem;
		letter-spacing: 0.05em;
	}
	.people_menu{
		position: relative;
		margin-top: 10px;
		padding-bottom: 10px;
	}
	.people_menu .people_menu_btn{
		cursor: pointer;
		position: relative;
		padding-right: 15px;
		font-weight: bold;
		letter-spacing: 0.15em;
		color: #421e5c;
	}
	.people_menu .people_menu_btn:before{
		display: block;
		content: "";
		position: absolute;
		width: 0;
		height: 0;
		top: 5px;
		right: 0;
		border-top: 6px solid #421e5c;
		border-right: 4px solid transparent;
		border-bottom: 6px solid transparent;
		border-left: 4px solid transparent;
	}
	.people_menu .people_menu_btn:after{
		display: none;
		content: "";
		position: absolute;
		width: 100%;
		height: 1px;
		top: 20px;
		left: 0;
		background-color: #421e5c;
	}
	.people_menu.active .people_menu_btn:after{
		display: block;
	}

	.people_menu ul{
		display: none;
		position: absolute;
		width: 200px;
		top: 32px;
		left: 0;
		z-index: 10;
		overflow: hidden;
		border-radius: 7px;
		box-shadow: 0 6.3px 10px rgba(0,0,0,0.2);
	}
	.people_menu ul a{
		display: block;
		padding: 12px 15px;
		text-decoration: none;
		color: #333;
		font-size: 1.4rem;
		position: relative;
    	background-color: #f4eff4;
		border-bottom: 1px solid #cecece;
	}
	.people_menu ul li:last-child a{
		border-bottom: none;
	}
	.people_menu ul a:hover{
    	background-color: #dcccdc;
	}
	.people_menu ul a:before{
		display: block;
		content: "";
		position: absolute;
		width: 7px;
		height: 7px;
		border-top: 2px solid #76558c;
		border-right: 2px solid #76558c;
		transform: rotate(45deg);
		top: 0;
		bottom: 0;
		right: 15px;
		margin: auto;
	}

	.pc_nav_access ul{
		display: flex;
	}
	.pc_nav_access li{
		margin-left: 20px;
	}
	.pc_nav_access a{
		font-weight: bold;
		text-decoration: none;
		color: #727171;
	}
	.pc_nav_access a:hover{
		color: #6b4589;
	}
	.pc_lang_search{
		flex-wrap: wrap;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.pc_lang_btn{
		margin-left: 20px;
		padding-left: 20px;
		border-left: 1px solid #cecece;
	}
	.pc_lang_btn a{
		text-decoration: none;
		color: #727171;
	}
	.pc_lang_btn a:hover{
		color: #6b4589;
	}
	.pc_search_area{
		padding: 0 0 0 30px;
	}
	.pc_search_area #cse-search-box{
		width: 200px;
		height: 30px;
		border: 1px solid #cecece!important;
		border-radius: 4px;
		box-sizing: border-box;
		position: relative;
	}
	.pc_search_area input[type=text]{
		width: 100%;
		height: 30px;
		padding-left: 30px;
		border: 1px solid transparent!important;
		box-sizing: border-box;
		font-size: 1.3rem;
	}
	.pc_search_area input[type=image]{
		width: 16px;
		height: 16px;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 8px;
		margin: auto;
	}
}
@media screen and (min-width:1250px){
	.pc_contents_head{
		font-size: 1.4rem;
	}
	.people_menu .people_menu_btn:before{
		top: 3px;
		border-top: 8px solid #421e5c;
		border-right: 5px solid transparent;
		border-bottom: 8px solid transparent;
		border-left: 5px solid transparent;
	}
	.pc_search_area #cse-search-box{
		width: 260px;
	}
}


/*spヘッダーモーダル内部*/
.remodal-overlay{
	background-color: #fff;
	opacity: 1;
}
.remodal-wrapper,
.remodal{
	padding: 0 0 0;
}
.hd_modal{
	padding: 0;
	height: 100%;
	max-width: inherit!important;
}
.gl_nav_sp{
	width: 100%;
	overflow: hidden;
	text-align: left;
}
.header_logo_sp_area{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #421e5c;
}
.header_logo_sp_area .header_logo_sp{
	width: -webkit-calc(100% - 165px);
	width: calc(100% - 165px);
	padding: 0 10px;
}
.header_logo_sp_area .header_logo_sp img{
	height: 40px;
}
.header_logo_sp_area #close{
	width: 60px;
	position: relative;
	cursor: pointer;
}
.header_logo_sp_area #close div{
	display: block;
	position: relative;
	width: 60px;
	height: 55px;
	padding-top: 18px;
	background-color: #421e5c;
}
.header_logo_sp_area #close span{
	position: absolute;
	display: block;
	width: 30px;
	height: 2px;
	background-color: #fff;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.header_logo_sp_area #close span:nth-of-type(1){
	transform: rotate(35deg);
}
.header_logo_sp_area #close span:nth-of-type(2){
	transform: rotate(-35deg);
}

.gl_nav_inside,
.gl_nav_undermost{
	display: none;
}
.sp_lang_search{
	padding: 20px 10px 10px;
}
.sp_lang_btn{
	margin-bottom: 10px;
}
.sp_lang_btn a{
	display: block;
	text-align: center;
	text-decoration: none;
	border: 1px solid #cecece;
	border-radius: 4px;
	width: 100px;
	padding: 5px 10px;
	color: #4d4d4d;
}
.sp_search_area #cse-search-box{
	width: 100%;
	height: 50px;
	border: 1px solid #cecece!important;
	border-radius: 4px;
	padding: 5px 10px!important;
	box-sizing: border-box;
	position: relative;
}
.sp_search_area input[type=text]{
	width: 100%;
	height: 40px;
	border: 1px solid transparent!important;
	box-sizing: border-box;
}
.sp_search_area input[type=image]{
	width: 25px;
	height: 25px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto;
}
.gl_nav_sp_outside .drop_sp{
	border-bottom: 1px solid #4d4d4d;
	position: relative;
}
.gl_nav_sp_outside .drop_sp:after{
	display: block;
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	border: 1px solid #421e5c;
	top: 15px;
	right: 20px;
}
.gl_nav_sp_outside .drop_sp > a{
	display: block;
	text-decoration: none;
	padding: 10px 20px;
	position: relative;
	font-weight: bold;
	color: #1a1a1a;
	font-size: 1.6rem;
	-webkit-transition: all 0.1s;
	transition: all 0.1s;
	z-index: 2;
}
.gl_nav_sp_outside .drop_sp > a:before{
	display: block;
	content: "";
	position: absolute;
	width: 7px;
	height: 1px;
	background-color: #421e5c;
	top: 0;
	bottom: 0;
	right: 24px;
	margin: auto;
}
.gl_nav_sp_outside .drop_sp > a:after{
	display: block;
	content: "";
	position: absolute;
	width: 1px;
	height: 7px;
	background-color: #421e5c;
	top: 0;
	bottom: 0;
	right: 27px;
	margin: auto;
	-webkit-transition: all 0.1s;
	transition: all 0.1s;
}
.gl_nav_sp_outside .drop_sp > a.up{
	border-bottom: 1px solid #4d4d4d;
}
.gl_nav_sp_outside .drop_sp > a.up:before{
	display: none;
}
.gl_nav_sp_outside .drop_sp > a.up:after{
	transform: rotate(90deg);
}
.gl_nav_sp_outside .gl_nav_inside{
	padding: 15px 0;
}
.gl_nav_sp_outside .gl_nav_inside > li{
	padding: 0 20px;
}
.gl_nav_sp_outside .gl_nav_inside li > a{
	display: block;
	text-decoration: none;
	padding: 10px 20px 10px 0;
	position: relative;
	color: #1a1a1a;
	font-size: 1.5rem;
	-webkit-transition: all 0.1s;
	transition: all 0.1s;
	border-bottom: 1px dashed #cecece;
}
.gl_nav_sp_outside .gl_nav_inside li.active{
	background: #f4eff4;
}
.gl_nav_sp_outside .gl_nav_inside li.active > a{
	color: #6b4589;
}
.gl_nav_sp_outside .gl_nav_inside li:last-of-type > a{
	border-bottom: 0px solid #666;
}
/* .gl_nav_sp_outside .gl_nav_inside li > a:before{
	display: block;
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	transform: rotate(45deg);
	top: 0;
	bottom: 0;
	right: 7px;
	margin: auto;
} */
.gl_nav_sp_outside .gl_nav_inside li.drop_sp_inner > a:before{
	content: "";
	display: block;
	position: absolute;
	width: 11px;
	height: 1px;
	border-top: 1px solid transparent;
	border-right: 1px solid transparent;
	transform: rotate(0deg);
	background-color: #333;
	top: 0;
	bottom: 0;
	right: 2px;
	margin: auto;
}
.gl_nav_sp_outside .gl_nav_inside li.drop_sp_inner > a:after{
	display: block;
	content: "";
	position: absolute;
	width: 1px;
	height: 11px;
	background-color: #333;
	top: 0;
	bottom: 0;
	right: 7px;
	margin: auto;
	border: 0;
	-webkit-transition: all 0.1s;
	transition: all 0.1s;
}
.gl_nav_sp_outside .gl_nav_inside li.drop_sp_inner > a.up:before{
	display: none;
}
.gl_nav_sp_outside .gl_nav_inside li.drop_sp_inner > a.up:after{
	transform: rotate(90deg);
}
.gl_nav_sp_outside .gl_nav_inside .gl_nav_undermost{
	padding-top: 5px;
	padding-bottom: 5px;
	border-bottom: 1px dashed #cecece;
}
.gl_nav_sp_outside .drop_sp_inner:last-of-type .gl_nav_undermost{
	border-bottom: 0px;
}
.gl_nav_sp_outside .gl_nav_inside .gl_nav_undermost li{
	padding-left: 7px;
	border-bottom: 1px dashed #cecece;
}
.gl_nav_sp_outside  .gl_nav_inside .gl_nav_undermost li:last-of-type{
	border-bottom: 0;
}
.gl_nav_sp_outside .gl_nav_inside .gl_nav_undermost a{
	display: block;
	color: #1a1a1a;
	text-decoration: none;
	padding: 10px 0;
	border-bottom: 0;
	position: relative;
	font-size: 1.4rem;
}
/* .gl_nav_sp_outside .gl_nav_undermost a:after{
	display: inline-block;
	content: "";
	position: relative;
	width: 0;
	height: 0;
	border: 4px solid transparent;
	border-left: 6px solid #421e5c;
	top: -2px;
	margin-left: 10px;
} */
.gl_nav_sp_outside  .gl_nav_inside .gl_nav_undermost li:last-of-type a{
	border-bottom: 0;
}
.gl_nav_sp_outside .gl_nav_inside .gl_nav_undermost .gl_nav_undermost{
	padding: 10px 0;
	border-bottom: 0;
}
.gl_nav_sp_outside .gl_nav_inside .gl_nav_undermost .gl_nav_undermost li{
	border-bottom: 0;
}
.gl_nav_sp_outside .gl_nav_inside .gl_nav_undermost .gl_nav_undermost a{
	padding:  7px 0;
}
.gl_nav_sp_outside .header_btn_wrap{
	padding: 20px;
}
.gl_nav_sp_outside .header_btn{
	display: block;
	text-align: center;
}
.gl_nav_sp_outside .header_btn img{
	max-width: 360px;
	width: 100%;
}

.gl_nav_sp_sub{
	background-color: #F9F7F9;
	padding: 30px 20px 0;
}
.sub_link{
	display: flex;
	flex-wrap: wrap;
	width: -webkit-calc(100% + 20px);
	width: calc(100% + 20px);
	margin: 0 -10px 10px;
}
.sub_link li{
	width: 50%;
	padding: 0 10px 15px;
	display: flex;
	flex-wrap: wrap;
}
.sub_link li a{
	display: block;
	width: 100%;
	color: #421E5C;
	text-decoration: none;
	padding-bottom: 5px;
	border-bottom: 1px solid #421E5C;
	text-align: left;
}
.sub_people{
	display: flex;
	flex-wrap: wrap;
	width: -webkit-calc(100% + 20px);
	width: calc(100% + 20px);
	margin: 0 -10px 0;
	padding-bottom: 15px;
}
.sub_people li{
	width: 33.333%;
	padding: 0 10px 10px;
}
.sub_people li a{
	display: block;
	color: #421E5C;
	text-decoration: none;
	text-align: left;
}
.gl_nav_sp_bnr{
	background-color: #F9F7F9;
	padding: 0 20px 30px;
}

/*pc*/
.gl_nav{
	display: none;
}
@media screen and (min-width:992px){
	.gl_nav{
		display: block;
		width: calc(100% - 200px);
    	height: 115px;
		padding: 15px 0 0 25px;
	}
	.gl_nav_outside{
		display: flex;
		justify-content: space-between;
		width: 100%;
		max-width: 810px;
		margin-top: 16px;
	}
	.mega_menu_item{
	}
	.mega_menu_item > a{
		display: block;
		padding: 5px 0 0;
		height: 60px;
		font-size: 1.35vw;
		font-weight: bold;
		color: #333;
		text-decoration: none;
		position: relative;
	}
	.mega_menu_item > a:before{
		display: none;
		content: "";
		position: absolute;
		width: 100%;
		height: 1px;
		top: 32px;
		left: 0;
		background-color: #421e5c;
	}
	.mega_menu_item.active > a{
		color: #421e5c;
	}
	.mega_menu_item.active > a:before,
	.mega_menu_item > a:hover:before{
		display: block;
	}
	.mega_menu_item .gl_nav_inside_wrap{
		display: none;
		width: 100%;
		overflow: hidden !important;
		padding-top: 0;
		position: absolute;
		top: 115px;
		left: 0;
		z-index: -1;
		background-color: #fff;
		box-shadow: 0 6.3px 10px rgba(0,0,0,0.2);
	}
	.mega_menu_item .gl_nav_inside_wrap:after{
		content: '';
		position: absolute;
		display: block;
		width: 100%;
		height: 100px;
		top: -100px;
		background-color: #fff;
	}
	.mega_menu_item:hover > .gl_nav_inside_wrap,
	.mega_menu_item.active .gl_nav_inside_wrap{
		background-color: #fff;
		z-index: 1;
	}
	.mega_menu_item .gl_nav_inside{
		display: flex;
		justify-content: flex-start;
		align-content: center;
		align-self: stretch;
		flex-wrap: wrap;
		position: relative;
		width: 100%;
		max-width: 2000px;
		min-height: 360px;
		margin: 0 auto;
	}

	.gl_nav_img{
		width: 36%;
		min-height: 360px;
		background-image: url(../img/common/gl_nav_img01.jpg);
		background-position: left top;
		background-size: cover;
		background-repeat: no-repeat;
	}
	.gl_nav_img01{ background-image: url(../img/common/gl_nav_img01.jpg);}
	.gl_nav_img02{ background-image: url(../img/common/gl_nav_img02.jpg);}
	.gl_nav_img03{ background-image: url(../img/common/gl_nav_img03.jpg);}
	.gl_nav_img04{ background-image: url(../img/common/gl_nav_img04.jpg);}
	.gl_nav_img05{ background-image: url(../img/common/gl_nav_img05.jpg);}
	.gl_nav_img06{ background-image: url(../img/common/gl_nav_img06.jpg);}
	.gl_nav_img07{ background-image: url(../img/common/gl_nav_img07.jpg);}

	.gl_nav_list_pc{
		width: 64%;
		display: flex;
		padding: 40px 0 30px 40px;
	}
	.gl_nav_list_pc ul{
		width: 33.33333%;
		padding : 0 10px;
	}
	.gl_nav_inside_inner_title{
		display: block;
		width: 100%;
	}
	.gl_nav_inside_inner_title a{
		display: block;
		padding: 5px 20px;
		color: #333;
		font-weight: bold;
		font-size: 2.0rem;
		text-decoration: none;
	}
	.gl_nav_inside_inner{
		width: 100%;
	}
	.gl_nav_inside .gl_nav_inside_inner li{
		padding: 0;
		border-top: 1px dashed #cecece;
	}
	.gl_nav_inside .gl_nav_inside_inner li:first-child{
		border-top: none;
	}
	.gl_nav_inside .gl_nav_inside_inner a{
		display: block;
		text-decoration: none;
		padding: 12px 20px 12px 5px;
		color: #333;
		position: relative;
		font-size: 1.5rem;
		font-weight: bold;
		line-height: 1.3;
	}
	.gl_nav_inside .gl_nav_inside_inner a:before{
		display: block;
		content: "";
		position: absolute;
		width: 7px;
		height: 7px;
		border-top: 2px solid #76558c;
		border-right: 2px solid #76558c;
		transform: rotate(45deg);
		top: 0;
		bottom: 0;
		right: 12px;
		margin: auto;
	}
	.gl_nav_inside .gl_nav_inside_inner a:hover{
		color: #6b4589;
	}
	.header_nav_btn{
		width: 120px;
		height: auto;
		padding: 0 20px 0 20px;
		box-sizing: border-box;
	}
	.header_nav_btn span{
		display: block;
		height: auto;
	}
	.header_nav_btn img{
		width: 100%;
		height: auto;
	}
	.header_nav_btn a{
		border: none;
		background-image: url(../img/common/header_bnr01_hover.jpg);
		background-repeat: no-repeat;
		background-size: contain;
	}
	.header_nav_btn a:hover img{
		opacity: 0.0;
	}
}
@media screen and (min-width:1025px){
	.gl_nav_list_pc ul{
		width: 33.33333%;
		padding : 0 15px;
	}
	.gl_nav_inside .gl_nav_inside_inner a{
		line-height: 1.5;
		padding: 12px 30px 12px 5px;
	}
	.gl_nav_inside .gl_nav_inside_inner a:before{
		right: 5px;
	}
}
@media screen and (min-width:1250px){
	.gl_nav{
		display: block;
		width: calc(100% - 320px);
    	height: 115px;
		padding: 20px 0 0 35px;
	}
	.mega_menu_item > a{
		padding: 5px 0 0;
		height: 60px;
		font-size: 1.6rem;
		letter-spacing: 0.07em;
	}
	.header_nav_btn{
		width: 170px;
		padding: 0 40px 0 20px;
	}
}

/*============================================================================

		footer

============================================================================*/

.page_top{
    position: fixed;
	bottom: 15px;
	right: 15px;
	transition: all 0.3s;
	z-index: 50;
	width: 45px;
	height: 45px;
}
.page_top_inside{
  position: absolute;
	top: -50px;
	right: 0px;
	transition: all 0.3s;
	z-index: 50;
	width: 45px;
	height: 45px;
}
@media screen and (min-width:768px){
	.page_top,
	.page_top_inside{
		width: 70px;
		height: 70px;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
	}
	.page_top_inside{
		top: -170px;
    right: 15px;
	}
	.page_top:hover,
	.page_top_inside:hover{
		transform: translate(0,-5px);
	}
}

.footer_top_area{
	padding: 30px 0;
}
.pc_footer_menu{
	display: none;
}
.round_link li{
	padding: 0 0 10px;
	max-width: 300px;
	margin: 0 auto;
}
.round_link li:last-of-type{
	padding: 0 0 0px;
}
.round_link a{
	display: block;
	position: relative;
	text-decoration: none;
}
@media screen and (min-width:768px){
	.round_link ul{
		display: flex;
		width: -webkit-calc(100% + 20px);
		width: calc(100% + 20px);
		margin: 0 -10px;
	}
	.round_link li{
		padding: 0 10px 0;
		max-width: inherit;
		width: 33.333%;
		margin: 0 0;
	}
	.round_link li:last-of-type{
		padding: 0 10px 0px;
	}
}
@media screen and (min-width:992px){
	.footer_top_area{
		padding: 60px 0;
	}
	.footer_top_wrap{
		display: flex;
		width: -webkit-calc(100% + 60px);
		width: calc(100% + 60px);
		margin: 0 -30px;
	}
	.pc_footer_menu{
		display: block;
		width: -webkit-calc(100% - 290px);
		width: calc(100% - 290px);
		padding: 0 30px;
	}
	.site_round_area{
		width: 290px;
		padding: 0 30px 0 20px;
	}
	.pc_footer_menu .menu_wrap{
		display: flex;
		width: -webkit-calc(100% + 40px);
		width: calc(100% + 40px);
		margin: 0 -20px;
	}
	.pc_footer_menu .menu_wrap > li{
		width: 33.333%;
		padding: 0 20px;
		border-right: 1px solid #76558C;
	}
	.pc_footer_menu .menu_cont > li{
		padding-bottom: 10px;
	}
	.pc_footer_menu .menu_cont a{
		display: block;
		text-decoration: none;
		color: #421e5c;
	}
	.pc_footer_menu .menu_cont a:hover{
		text-decoration: underline;
	}
	.round_link ul{
		display: block;
		width: auto;
		margin: 0 0;
	}
	.round_link li{
		margin: 0 0;
		padding: 0 0 16px;
		width: 240px;
	}
	.round_link li:last-of-type{
		padding: 0 0 0px;
	}
	.round_link a:hover img{
		opacity: 0.8;
	}
}

.footer_interval{
	height: 200px;
	background-image: url(../img/common/bg_footer.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
}
@media screen and (min-width:992px){
	.footer_interval{
		height: 370px;
	}
}

.footer_bottom{
	padding: 30px 0;
	background-color: #76558c;
	color: #fff;
	position: relative;
}
.footer_bottom .inner_medium{
	position: relative;
}
.adress_title{
	margin-bottom: 15px;
}
.adress_title img{
	width: auto;
	height: 30px;
}
.adress_wrap dl{
	padding-bottom: 15px;
	line-height: 2;
	font-size: 1.3rem;
}
.adress_wrap dt{
	font-weight: bold;
}
.adress_wrap .tel_link a{
	color: #fff;
}
.footer_bnr li{
	padding-bottom: 10px;
}
.footer_logo{
	text-align: center;
	padding-top: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.uc_logo{
	width: 140px;
	padding: 0 10px;
}
.juaa_logo{
	width: 80px;
	padding: 0 10px;
}
.footer_logo .logo_svg{
	width: 120px;
}
@media screen and (min-width:768px){
	.footer_bnr{
		display: flex;
		flex-wrap: wrap;
		width: -webkit-calc(100% + 10px);
		width: calc(100% + 10px);
		margin: 0 -5px;
	}
	.footer_bnr li{
		width: 50%;
		padding: 0 5px 10px;
	}
}
@media screen and (min-width:992px){
	.footer_bottom{
		padding: 60px 0;
	}
	.footer_info_wrap{
		display: flex;
		width: -webkit-calc(100% + 50px);
		width: calc(100% + 50px);
		margin: 0 -25px;
	}
	.adress_wrap{
		width: 34%;
		padding: 0 25px 0 50px;
		order: 2;
	}
	.banner_wrap{
		width: 34%;
		padding: 0 25px;
		order: 3;
	}
	.footer_logo{
		width: 32%;
		padding: 0 25px;
		order: 1;
		border-right: 1px solid #fff;
		text-align: left;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.adress_wrap dl{
		padding-bottom: 20px;
	}
	.footer_bnr{
		display: block;
		width: 100%;
		margin: 0 0;
	}
	.footer_bnr li{
		width: 100%;
		padding: 0 0 10px;
	}
	.adress_wrap .footer_bnr li img{
		max-width: 275px;
		width: 100%;
	}
	.banner_wrap .footer_bnr li img{
		max-width: 320px;
		width: 100%;
	}
	.uc_logo{
		width: 180px;
		padding: 0 10px;
	}
	.juaa_logo{
		width: 100px;
		padding: 0 10px;
	}
	.footer_logo span{
		display: block;
		width: 100%;
	}
	.footer_logo .logo_svg{
		width: 160px;
	}
}
@media screen and (min-width:1024px){
	.footer_info_wrap{
		width: -webkit-calc(100% + 80px);
		width: calc(100% + 80px);
		margin: 0 -40px;
	}
	.adress_wrap{
		padding: 0 20px 0 40px;
	}
	.banner_wrap{
		padding: 0 40px 0 20px;
	}
	.footer_logo{
		padding: 0 20px 0 40px
	}
	.footer_bnr a{
		display: inline-block;
		background-color: #fff;
	}
	.footer_bnr img{
		transition: all 0.3s;
	}
	.footer_bnr a:hover img{
		opacity: 0.8;
	}
}

.copy{
	text-align: center;
	font-size: 1.2rem;
	width: 100%;
	padding: 15px;
}

/*============================================================================

		main_contents

============================================================================*/

.main_contents{
	padding: 55px 0 0 0;
}
@media screen and (min-width:992px){
	.main_contents{
		padding: 105px 0 0 0;
	}
}
.colm_child{
	padding: 0 0 20px;
}
@media screen and (min-width:992px){
	.basic_2colm,
	.basic_3colm{
		display: flex;
		flex-wrap: wrap;
		width: -webkit-calc(100% + 40px);
		width: calc(100% + 40px);
		margin: 0 -20px -40px;
	}
	.colm_child{
		padding: 0 20px 40px;
	}
	.basic_2colm .colm_child{
		width: 50%;
	}
	.basic_3colm .colm_child{
		width: 33.333%;
	}
}


/*============================================================================

		top

============================================================================*/

/*スライダー*/
.main_visual{
	padding: 0 0 0px;
	background-image: url(../img/top/slider_bg.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.main_visual .inner_large{
	width: 100%;
	margin: 0 0;
}
.top_slider .pc_slide{
	display: none;
}
.top_slider img{
	max-width: 200%;
	width: 100%;
}
.slick-arrow{
	width: 0;
	height: 0;
	border: 25px solid transparent;
	z-index: 10;
	transform: translate(0, 40%);
}
.slick-arrow.slick-prev{
	border-right: 25px solid #76558c;
	left: -17px;
}
.slick-arrow.slick-next{
	border-left: 25px solid #76558c;
	right: -17px;
}
.slick-arrow.slick-prev:before,
.slick-arrow.slick-next:before{
	content: "";
	width: 8px;
	height: 8px;
	opacity:1;
	position: absolute;
	transform: rotate(45deg);
	top: 0;
	bottom: 0;
	margin: auto;
}
.slick-arrow.slick-prev:before{
	border-bottom: 1px solid #fff;
	border-left: 1px solid #fff;
	left: 13px;
}
.slick-arrow.slick-next:before{
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	right: 13px;
}
.slick-dotted.slick-slider{
	margin-bottom: 0px;
	padding-bottom: 40px;
}
.slick-dots{
	bottom: 14px;
}
.slick-dots li{
	width: 12px;
	height: 12px;
	margin: 0 7px;
}
.slick-dots li button{
	width: 12px;
	height: 12px;
	padding: 0;
}
.slick-dots li button:before{
	content: "";
	width: 12px;
	height: 12px;
	border-radius: 12px;
	border: 1px solid #76558c;
	opacity: 1;
		background-color: #fff;
}
.slick-dots li.slick-active button:before,
.slick-dots li button:hover:before{
	opacity: 1;
	background-color: #76558c;
}
@media screen and (min-width:992px){
	.main_visual{
		padding: 50px 0 50px;
		margin: 0 0;
	}
	.main_visual .inner_large{
		max-width: 1180px;
		width: -webkit-calc(100% - 130px);
		width: calc(100% - 130px);
		margin: 0 auto;
	}
	.top_slider{
		position: relative;
		background-color: #fff;
		box-shadow: 1px 3px 27px 3px rgba(37,18,53,0.3);
	}
	.top_slider .sp_slide{
		display: none;
	}
	.top_slider .pc_slide{
		display: block;
	}
	.slick-arrow{
		border: 32px solid transparent;
	}
	.slick-arrow.slick-prev{
		border-right: 32px solid #76558c;
		transform: translate(0, -50%);
		left: -87px;
	}
	.slick-arrow.slick-next{
		border-left: 32px solid #76558c;
		transform: translate(0, -50%);
		right: -87px;
	}
	.slick-arrow.slick-prev:before,
	.slick-arrow.slick-next:before{
		width: 10px;
		height: 10px;
	}
	.slick-arrow.slick-prev:before{
		border-bottom: 2px solid #fff;
		border-left: 2px solid #fff;
		left: 16px;
	}
	.slick-arrow.slick-next:before{
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		right: 16px;
	}
	.slick-dotted.slick-slider{
		margin-bottom: 0px;
		padding-bottom: 0;
	}
	.slick-dots{
		bottom: -30px;
		padding: 0 8px 0 0;
	}
}
@media screen and (min-width:1024px){
	.slick-arrow{
		transition: all 0.3s;
	}
	.slick-arrow.slick-prev:hover{
		transform: translate(-5px, -50%);
	}
	.slick-arrow.slick-next:hover{
		transform: translate(5px, -50%);
	}
}

/*学部・学科について*/
.top_course_area{
	padding: 30px 0 50px;
}
.course_btn_sp{
	padding: 0 20px 30px;
}
.course_btn_sp ul{
	display: flex;
	flex-wrap: wrap;
	width: -webkit-calc(100% + 20px);
	width: calc(100% + 20px);
	margin: 0 -10px;
}
.course_btn_sp li{
	width: 50%;
	padding: 0 10px;
	display: flex;
	flex-wrap: wrap;
}
.course_btn_sp li a{
	display: block;
	width: 100%;
	background-color: #fff;
	color: #421e5c;
	border: 2px solid #421e5c;
	border-radius: 5px;
	padding: 15px 10px;
	text-decoration: none;
	font-weight: bold;
	position: relative;
}
.course_btn_sp li a:before{
	display: block;
	content: "";
	position: absolute;
	height: 9px;
	width: 2px;
	background-color: #421e5c;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto;
}
.course_btn_sp li a:after{
	display: block;
	content: "";
	position: absolute;
	height: 8px;
	width: 8px;
	border: 2px solid transparent;
	border-bottom: 2px solid #421e5c;
	border-right: 2px solid #421e5c;
	transform: rotate(45deg);
	top: 4px;
	bottom: 0;
	right: 12px;
	margin: auto;
}
.top_course_title{
	text-align: center;
	max-width: 1080px;
	width: -webkit-calc(100% - 30px);
	width: calc(100% - 30px);
	margin: 0 auto 20px;
}
.top_course_title.human{
	margin: 30px auto 20px;
}
.top_course_title img{
	height: 55px;
}
.top_course_bnr{
	display: block;
	position: relative;
	border-bottom: 3px solid;
	overflow: hidden;
}
.top_course_bnr.literature{
	border-bottom-color: #20a7C6;
}
.top_course_bnr.humanlife{
	border-bottom-color: #e59429;
}
.top_course_bnr a.bnr{
	display: block;
}
.top_course_img{
	position: relative;
}
.top_course_img span{
	display: block;
}
.top_course_img img{
	max-width: 200%;
	width: 100%;
}
.top_course_name{
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
}
.top_course_name img{
	width: 100%;
}
/**/
.top_course_bnr.child{
	display: flex;
	flex-wrap: wrap;
}
.top_course_bnr.child a.bnr_half{
	width: 50%;
	display: block;
	position: relative;
	overflow: hidden;
}
.top_course_bnr.child .top_course_img{
	position: relative;
}
.top_course_bnr.child .top_course_img span{
	display: block;
}
.top_course_bnr.child .top_course_img img{
	max-width: 200%;
	width: 100%;
}
.top_course_bnr.child .top_course_name{
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
}
.top_course_bnr.child .top_course_name img{
	width: 100%;
}
/**/
.course_news{
	display: block;
	position: relative;
	z-index: 10;
	text-decoration: none;
	background-color: #fff;
	width: 100%;
}
.course_news dl{
	display: flex;
}
.course_news dt{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-weight: bold;
	font-family: Arial;
	color: #fff;
	width: 100px;
	padding: 10px;
	text-align: center;
}
.course_news dt span{
	display: block;
	width: 100%;
}
.literature .course_news dt{
	background-color: #20a7C6;
}
.humanlife .course_news dt{
	background-color: #e59429;
}
.course_news dd{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	color: #333;
	width: calc(100% - 100px);
	padding: 11px 10px 10px;
}
.course_news dd span{
	display: block;
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.course_news:hover dd{
	text-decoration: underline;
}
@media all and (-ms-high-contrast:none){
  *::-ms-backdrop, .top_course_name img {
		vertical-align: text-top;
	}
}
@media screen and (min-width:768px){
	.top_course_area{
		padding: 60px 0 80px;
	}
	.course_btn_sp{
		display: none;
	}
	.top_course_wrap ul{
		display: flex;
		flex-wrap: wrap;
	}
	.top_course_bnr{
		width: 33.333%;
	}
}
@media screen and (min-width:992px){
	.top_course_title.human{
		margin: 50px auto 20px;
	}
	.top_course_title a:hover{
		opacity: 0.8;
	}
	.top_course_title img{
		height: 70px;
	}
	.top_course_bnr{
		width: 33.333%;
	}
	.top_course_bnr.literature:nth-of-type(1) .top_course_name,
	.top_course_bnr.literature:nth-of-type(2) .top_course_name{
		border-right: 1px solid #fff;
	}
	.top_course_bnr.humanlife:nth-of-type(1) .top_course_name,
	.top_course_bnr.humanlife:nth-of-type(2) .top_course_name{
		border-right: 1px solid #fff;
	}
	.top_course_img img{
		transition: all 0.3s;
		transform: scale(1.01,1.01);
	}
	.top_course_bnr a:hover .top_course_img img{
		transform: scale(1.1,1.1);
	}
}

.top_course_other{
	padding-bottom: 40px;
}
.course_other_cont dt{
	width: 130px;
	padding: 0 0 10px;
}
.course_other_cont dd{
}
.other_detil_list li{
	padding-bottom: 20px;
}
.other_detil_list a{
	display: block;
	position: relative;
	text-decoration: none;
	padding: 10px 40px 10px 10px;
	background-color: #f4eff4;
	color: #421e5c;
	border-bottom: 2px solid #895f97;
	font-size: 1.5rem;
}
.other_detil_list a:before{
	display: block;
	position: absolute;
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid #895f97;
	border-right: 2px solid #895f97;
	top: 0;
	bottom: 0;
	right: 25px;
	margin: auto;
	transform: rotate(45deg);
}
.course_aceprogram{
	background-color: #f4eff4;
	padding: 20px 15px;
	margin-top: 15px;
}
.course_aceprogram_cont dt{
	margin-bottom: 10px;
}
.course_aceprogram_cont dt img.sp_img{
	max-width: 300px;
	width: 100%;
	margin-bottom: 10px;
}
.course_aceprogram_cont dt img.pc_img{
	display: none;
}
.course_aceprogram_cont dt p{
	color: #421e5c;
	letter-spacing: 0.07em;
}
.aceprogram_detil_list a{
	display: block;
	position: relative;
	text-decoration: none;
	padding: 10px 40px 10px 10px;
	background-color: #fff;
	color: #421e5c;
	border-bottom: 2px solid #895f97;
	font-size: 1.5rem;
}
.aceprogram_detil_list a:before{
	display: block;
	position: absolute;
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid #895f97;
	border-right: 2px solid #895f97;
	top: 0;
	bottom: 0;
	right: 25px;
	margin: auto;
	transform: rotate(45deg);
}
@media screen and (min-width:768px){
	.top_course_other{
		padding-bottom: 80px;
	}
	.course_other{
		display: flex;
		flex-wrap: wrap;
		width: -webkit-calc(100% + 40px);
		width: calc(100% + 40px);
		margin: 0 -20px;
	}
	.course_other > li{
		width: 50%;
		padding: 0 20px;
	}
	.course_other_cont{
		display: flex;
		flex-wrap: wrap;
		width: -webkit-calc(100% + 20px);
		width: calc(100% + 20px);
		margin: 0 -10px;
	}
	.course_other_cont dt{
		width: 180px;
		padding: 0 10px;
	}
	.course_other_cont dt a:hover{
		opacity: 0.8;
	}
	.course_other_cont dd{
		width: -webkit-calc(100% - 180px);
		width: calc(100% - 180px);
		padding: 0 10px;
	}
	.other_detil_list li{
		padding-bottom: 25px;
	}
	.other_detil_list a{
		padding: 12px 40px 12px 10px;
	}
	.other_detil_list a:hover{
		background-color: #895f97;
		color: #fff;
	}
	.other_detil_list a:hover:before{
		border-color: #fff;
	}
	.course_aceprogram{
		padding: 40px 35px;
		margin-top: 30px;
	}
	.course_aceprogram_cont{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.course_aceprogram_cont dt{
		margin-bottom: 0px;
		width: calc(100% - 235px);
		padding-right: 50px;
	}
	.course_aceprogram_cont dt img.sp_img{
		display: none;
	}
	.course_aceprogram_cont dt img.pc_img{
		display: inline-block;
		max-width: 620px;
		width: 100%;
		margin-bottom: 15px;
	}
	.course_aceprogram_cont dd{
		width: 235px;
	}
	.aceprogram_detil_list a:hover{
		background-color: #895f97;
		color: #fff;
	}
	.aceprogram_detil_list a:hover:before{
		border-color: #fff;
	}
}

/*お知らせ*/
.top_information{
	background-color: #f4eff4;
	padding: 30px 0 10px;
}
.info_area_title{
	margin-bottom: 15px;
}
.info_area_title img{
	width: 90%;
	max-width: 420px;
}
.info_area_title.pickup img{
	width: 80%;
	max-width: 375px;
}
.info_bnr_area{
	padding-bottom: 30px;
}
.slider_info .slick-arrow.slick-next,
.slider_info .slick-arrow.slick-prev{
	top: 45%;
}
.slider_info .slick-arrow.slick-next{
	border: 0px solid transparent;
	border-left: 0px solid transparent;
	width: 20px;
	height: 20px;
	background-color: #421e5c;
	right: -20px;
}
.slider_info .slick-arrow.slick-prev{
	border: 0px solid transparent;
	border-left: 0px solid transparent;
	width: 20px;
	height: 20px;
	background-color: #421e5c;
	left: -20px;
}
.slider_info .slick-arrow.slick-next:before{
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-right: 4px solid transparent;
	border-left: 4px solid #fff;
	transform: rotate(0deg);
	width: 0;
	height: 0;
	right: 4px;
	z-index: 15;
}
.slider_info .slick-arrow.slick-prev:before{
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-right: 4px solid #fff;
	border-left: 4px solid transparent;
	transform: rotate(0deg);
	width: 0;
	height: 0;
	left: 4px;
	z-index: 15;
}
.info_bnr{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	background-color: #fff;
	color: #333;
	text-decoration: none;
}
.info_bnr_area .colm_child{
	display: none;
}
.info_bnr_area .colm_child:first-of-type{
	display: block;
}
.info_bnr_img{
	width: 100%;
	position: relative;
	overflow: hidden;
	padding-top: 60%;
}
.info_bnr_img span{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	text-align: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-image: url(../img/common/no_image.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.info_bnr_img img{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 150%;
	max-height: 150%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.info_bnr_img:before{
	content: "";
	display: block;
	position: relative;
}
.info_bnr .info_bnr_text{
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
	align-items: flex-start;
	width: 100%;
	padding: 15px;
}
.info_bnr .info_bnr_text .info_title,
.info_bnr .info_bnr_text .day{
	display: block;
	width: 100%;
}
.info_bnr .info_bnr_text .info_title{
	margin-bottom: 5px;
	overflow: hidden;
	height: 45px;
}
.info_bnr .info_bnr_text .day{
	color: #000;
	font-family: Arial;
	font-weight: bold;
}
@media screen and (min-width:768px){
	.info_bnr_area{
		position: relative;
	}
	.info_bnr_area .slick-track{
		padding: 0 0 10px;
	}
	.info_area_title{
		margin-bottom: 20px;
	}
	.info_bnr_area:before,
	.info_bnr_area:after{
		position: absolute;
		display: block;
		content: "";
		background-color: #f4eff4;
		width: 20px;
		height: 100%;
		top: 0;
		z-index: 9;
	}
	.info_bnr_area:before{
		left: -20px;
	}
	.info_bnr_area:after{
		right: -20px;
	}
	.slider_info .slick-arrow.slick-next,
	.slider_info .slick-arrow.slick-prev{
		top: 50%;
	}
	.slider_info .slick-arrow.slick-next{
		right: 0;
	}
	.slider_info .slick-arrow.slick-prev{
		left: 0;
	}
	.slider_info{
		width: -webkit-calc(100% + 40px);
		width: calc(100% + 40px);
		margin: 0 -20px;
	}
	.slider_info_child{
		padding: 0 20px;
	}
	.top_information{
		padding: 60px 0 80px;
	}
	.info_bnr_area .colm_child,
	.info_bnr_area .colm_child:first-of-type{
		display: flex;
		flex-wrap: wrap;
	}
	.info_bnr:hover{
		transform: translate(0,-3px);
		box-shadow: 0px 6px 20px -3px rgba(37,18,53,0.3);
	}
}
@media screen and (min-width:1130px){
	.slider_info .slick-arrow.slick-next{
		width: 25px;
		height: 25px;
		right: -25px;
	}
	.slider_info .slick-arrow.slick-prev{
		width: 25px;
		height: 25px;
		left: -25px;
	}
	.slider_info .slick-arrow.slick-next:before{
		border-top: 5px solid transparent;
		border-bottom: 5px solid transparent;
		border-right: 5px solid transparent;
		border-left: 5px solid #fff;
		right: 5px;
	}
	.slider_info .slick-arrow.slick-prev:before{
		border-top: 5px solid transparent;
		border-bottom: 5px solid transparent;
		border-right: 5px solid #fff;
		border-left: 5px solid transparent;
		left: 5px;
	}
}

.info_text_dl{
	padding: 15px;
	background-color: #fff;
}
.info_text_title{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid #421e5c;
	color: #421e5c;
	font-weight: bold;
	padding-bottom: 5px;
	margin-bottom: 5px;
}
.category_name{
	display: block;
	font-size: 1.6rem;
}
.info_text_dl .sp{
	margin-top: 10px;
	text-align: right;
}
.info_archive_link{
	display: inline-block;
	text-decoration: none;
	font-weight: bold;
	padding-right: 10px;
	position: relative;
	color: #421e5c;
}
.info_archive_link:before{
	display: block;
	content: "";
	position: absolute;
	width: 5px;
	height: 5px;
	border-top: 1px solid #421e5c;
	border-right: 1px solid #421e5c;
	transform: rotate(45deg);
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}
.info_text_cont{
	border-bottom: 1px solid #808080;
}
.info_text_cont a{
	display: block;
	color: #333;
	text-decoration: none;
	padding: 10px 0;
}
.info_text_cont a .day{
	color: #000;
	font-family: Arial;
	font-weight: bold;
}
@media screen and (min-width:992px){
	.info_text_area{
		background-color: #fff;
		padding: 30px;
	}
	.info_text_dl{
		padding: 0;
		margin-bottom: 0;
	}
	.category_name{
		font-size: 1.8rem;
	}
	.info_archive_link{
		font-size: 1.2rem;
	}
	.info_text_cont a{
		padding: 13px 0;
	}
	.info_archive_link:hover,
	.info_text_cont a:hover .info_title{
		color: #76558c;
		text-decoration: underline;
	}
}

/*小バナー*/
.inner_smallbnr{
	max-width: 1000px;
	width: -webkit-calc(100% - 40px);
	width: calc(100% - 40px);
	margin: 0 auto;
}
.top_slider_smallbnr{
	padding: 30px 0 50px;
	background-image: url(../img/common/bg_stripe.png);
	background-size: auto;
	background-repeat: repeat;
	background-position: left top;
}
.top_slider_smallbnr .slick-arrow{
	transform: translate(0, -30%);
}
.top_slider_smallbnr .slick-arrow.slick-next{
	border: 0px solid transparent;
	border-left: 0px solid transparent;
	width: 20px;
	height: 20px;
	background-color: #421e5c;
	right: -20px;
}
.top_slider_smallbnr .slick-arrow.slick-prev{
	border: 0px solid transparent;
	border-left: 0px solid transparent;
	width: 20px;
	height: 20px;
	background-color: #421e5c;
	left: -20px;
}
.top_slider_smallbnr .slick-arrow.slick-next:before{
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-right: 4px solid transparent;
	border-left: 4px solid #fff;
	transform: rotate(0deg);
	width: 0;
	height: 0;
	right: 4px;
	z-index: 15;
}
.top_slider_smallbnr .slick-arrow.slick-prev:before{
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-right: 4px solid #fff;
	border-left: 4px solid transparent;
	transform: rotate(0deg);
	width: 0;
	height: 0;
	left: 4px;
	z-index: 15;
}
.top_slider_smallbnr .slick-dotted.slick-slider{
	margin-bottom: 0;
	padding-bottom: 0;
}
.top_slider_smallbnr .slick-dots{
	bottom: -30px;
}
@media screen and (min-width:768px){
	.top_slider_smallbnr{
		padding: 60px 0 70px;
	}
	.slider_smallbnr_wrap{
		position: relative;
	}
	.top_slider_smallbnr .slick-arrow.slick-next{
		right: -15px;
	}
	.top_slider_smallbnr .slick-arrow.slick-prev{
		left: -15px;
	}
	.slider_smallbnr_wrap{
		width: -webkit-calc(100% + 10px);
		width: calc(100% + 10px);
		margin: 0 -5px;
	}
	.slider_smallbnr_wrap li{
		padding: 0 5px;
	}
	.top_slider_smallbnr .slick-dots{
		bottom: -35px;
	}
	.top_slider_smallbnr .slick-slide a{
		display: block;
		background-color: #fff;
	}
	.top_slider_smallbnr .slick-slide img{
		transition: all 0.3s;
	}
	.top_slider_smallbnr .slick-slide a:hover img{
		opacity: 0.8;
	}
}
@media screen and (min-width:1024px){
	.top_slider_smallbnr .slick-arrow.slick-prev:hover{
		transform: translate(-5px, -30%);
	}
	.top_slider_smallbnr .slick-arrow.slick-next:hover{
		transform: translate(5px, -30%);
	}
}
@media screen and (min-width:1060px){
	.top_slider_smallbnr .slick-arrow.slick-next{
		width: 25px;
		height: 25px;
		right: -35px;
	}
	.top_slider_smallbnr .slick-arrow.slick-prev{
		width: 25px;
		height: 25px;
		left: -35px;
	}
	.top_slider_smallbnr .slick-arrow.slick-next:before{
		border-top: 5px solid transparent;
		border-bottom: 5px solid transparent;
		border-right: 5px solid transparent;
		border-left: 5px solid #fff;
		right: 5px;
	}
	.top_slider_smallbnr .slick-arrow.slick-prev:before{
		border-top: 5px solid transparent;
		border-bottom: 5px solid transparent;
		border-right: 5px solid #fff;
		border-left: 5px solid transparent;
		left: 5px;
	}
}

/* 重要なお知らせ */
.important_news_area{
	margin-top: 30px;
}
.important_news_title{
	padding: 9px 15px;
	background: #d83d5b;
	font-size: 0;
	text-align: center;
	-webkit-border-radius: 10px 10px 0 0;
	border-radius: 10px 10px 0 0;
}
.important_news_title img{
	height: 35px;
}
.important_news_list{
	padding: 5px 20px;
	border: 2px solid #db4d62;
	background: #fff;
	-webkit-border-radius: 0 0 10px 10px;
	border-radius: 0 0 10px 10px;
}
.important_news_list li{
	border-bottom: 1px solid #b9b9b9;
}
.important_news_list li:last-child{
	border-bottom: 0;
}
.important_news_list li a{
	display: block;
	position: relative;
	padding: 10px 0;
	padding-right: 15px;
	font-size: 1.5rem;
	font-weight: bold;
	color: #db4d62;
	text-decoration: none;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.important_news_list li a:after{
	  display: block;
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #db4d62;
    border-right: 2px solid #db4d62;
    top: 50%;
		margin-top: -4px;
    right: 5px;
    transform: rotate(45deg);
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
}
@media screen and (min-width:768px){
	.important_news_area{
		margin-top: 65px;
	}
	.important_news_area .inner_medium{
		display: flex;
		width: 100%;
	}
	.important_news_title{
		display: flex;
		align-items: center;
		justify-content: center;
		width: 280px;
		padding: 20px;
		flex-shrink: 0;
		-webkit-border-radius: 10px 0 0 10px;
		border-radius: 10px 0 0 10px;
	}
	.important_news_title img{
		height: 45px;
	}
	.important_news_list{
		display: flex;
		align-items: center;
		width: 100%;
		padding: 0 15px;
		border-left: 0;
		-webkit-border-radius: 0 10px 10px 0;
		border-radius: 0 10px 10px 0;
	}
	.important_news_list ul{
		width: 100%;
	}
	.important_news_list li{
		padding: 10px 0;
	}
	.important_news_list li a{
		font-size: 1.8rem;
		width: 100%;
		padding: 10px;
	}
	.important_news_list li a:after{
		right: 10px;
	}
	.important_news_list li a:hover{
		background-color: #ffedf0;
	}
	.important_news_list li a:hover:after{
		right: 5px;
	}
}

/* 重要なお知らせ下バナー */
.important_bnr_area{
	margin-top: 30px;
	padding-bottom: 20px;
}
.important_bnr_list li{
	text-align: center;
}
.important_bnr_list li:last-child{
	margin-top: 15px;
}
@media screen and (min-width:768px){
	.important_bnr_area{
		margin-top: 65px;
		padding-bottom: 50px;
	}
	.important_bnr_list{
		display: flex;
		width: calc(100% + 40px);
		margin: 0 -20px;
	}
	.important_bnr_list li{
		width: 50%;
		padding: 0 20px;
	}
	.important_bnr_list li:last-child{
		margin-top: 0;
	}
	.important_bnr_list a img{
		transition: opacity 0.3s ease;
	}
	.important_bnr_list a:hover img{
		opacity:0.6;
	}
}

/*============================================================================

		プリント設定

============================================================================*/
@media print {
	body{
	    width: 1200px;
	    transform: scale(0.8);
	    -moz-transform: scale(0.8);
	    -webkit-transform: scale(0.8);
	    transform-origin: 0 0;
	}
}
