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

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
	border-bottom: 3px solid #021774;
	display: flex;
	justify-content: center;
}
.hd {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 90px;
	width: 960px;
}
.hd_logo {
	width: 240px;
}
.hd_logo img {
	height: auto;
	width: 100%;
}
.hd_text {
	margin-left: 20px;
	width: calc(100% - 440px);
}
.hd_bnr {
	width: 200px;
}
.hd_bnr img {
	height: auto;
	width: 100%;
}
/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg {
	background: url(../images/nav_bg.png) no-repeat;
	display: flex;
	justify-content: center;
}
.nav {
	background: url(../images/nav_hover.png) no-repeat;
	overflow: visible;
	width: 960px;
}
.nav_list {
	display: flex;
	justify-content: space-between;
}
.nav_list img {
	-webkit-transition: All 0.5s ease;
	transition: All 0.5s ease
}
.nav_list img:hover, .nav_list img.current {
	opacity: 0
}
.nav_list > li {
	position: relative;
	z-index: 1000;
}
.nav_list > li > a {
	color: #111;
	display: block;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
	padding: 20px;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}
.nav_list > li > a::before, .nav_list > li > a::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.nav_list > li > a, .nav_list > li > a::before, .nav_list > li > a::after {
	-webkit-transition: all .3s;
	transition: all .3s;
}
.nav_list > li > a:hover, .nav_list > li > a.current {
	color: #fff;
}
.nav_list > li > a::after {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.nav_list > li > a:hover::after, .nav_list > li > a.current::after {
	-webkit-transform: scale(2) rotate(180deg);
	transform: scale(2) rotate(180deg);
	background: #021774;
}
/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
	background: url(../images/con_bg.png) no-repeat;
	display: flex;
	justify-content: center;
}
.con {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 30px;
	padding-bottom: 30px;
	width: 960px;
}
.main {
	order: 1;
	width: 700px;
}
.main_wide {
	width: 100%;
}
.side {
	order: 2;
	width: 230px;
}
.side_head {
	background-color: #EEE;
	color: #111;
	font-size: 1.6em;
	font-weight: bold;
	margin-bottom: 6px;
	padding: 10px;
	text-align: center;
}
.side_nav_list li a {
	background: url(../images/common/icon_arrow_gray.png) no-repeat left center;
	border-bottom: 1px solid #CCC;
	color: #111;
	display: block;
	font-size: 1.4em;
	padding: 12px 10px;
	text-decoration: none;
}
.side_nav_list li a:hover {
	text-decoration: underline;
}
.side_facebook_list li {
	margin-bottom: 5px;
}
.side_facebook_list li a {
	background: url(../images/icon_facebook.png) no-repeat 10px center;
	border: 1px solid #3B579D;
	border-radius: 5px;
	color: #3B579D;
	display: block;
	font-size: 1.4rem;
	font-weight: bold;
	padding: 12px 10px 12px 45px;
	text-decoration: none;
}
.side_facebook_list li a:hover {
	background-color: #DCE2F1;
}
.side_facebook_list a.nocss {
	background: none;
	border: none;
	border-radius: 0;
	color: #3B579D;
	display: block;
	font-size: 1.4rem;
	font-weight: bold;
	padding: 0;
	text-decoration: underline;
}
.side_facebook_list a.nocss:hover {
	opacity: 0.8;
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
	background: #021774;
	display: flex;
	justify-content: center;
}
.ft {
	padding-top: 30px;
	padding-bottom: 30px;
	width: 960px;
}
.ft_nav {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.ft_nav_item {
	/*width: calc( (100% - 60px) / 4 );*/
}
.ft_nav_list li {
	margin-bottom: 5px;
}
.ft_nav_list a {
	color: #FFF;
	font-size: 1.2rem;
	text-decoration: none;
}
.ft_nav_list a:hover {
	text-decoration: underline;
}
.ft_copy {
	color: #FFF;
	font-size: 0.9em;
	text-align: center;
}
div#fixeBox {
	position: fixed;
	bottom: 10px;
	left: calc(50% - 480px);
	width: 960px;
}
img#fixeBox_close {
	position: fixed;
	bottom: 130px;
	left: calc(50% + 480px);
	cursor: pointer;
}
.fixeBox_none {
	display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
	border-radius: 50%;
	background-color: rgba(29, 39, 121, 0.8);;
	bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	right: 10px;
	position: fixed;
	width: 40px;
	z-index: 100;
}
.pt:hover {
	opacity: 0.6;
}
.pt_btn {
	cursor: pointer;
	display: block;
	width: 14px;
	height: 14px;
	margin-top: 5px;
	transform: rotate(45deg);
	position: relative;
}
.pt_btn::before,
.pt_btn::after{
	background-color: #FFF;
	content: "";
	display: block;
	top: 0;
	left: 0;
	position: absolute;
}
.pt_btn::before{
	width: 5px;
	bottom: 0;
}
.pt_btn::after{
	height: 5px;
	right: 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** common
******************************************************************************
----------------------------------------------------------------------------*/

/* bnr */
.bnr_list li {
	margin-bottom: 4px
}
.bnr_list a {
	padding: 16px 16px 16px 42px;
	border: 1px solid #000000;
	border-radius: 3px;
	display: block;
	text-decoration: none;
	background: url(../images/common/icon_elink_black.png) no-repeat 16px center;
	font-size: 1.4em;
	color: #000000
}
.bnr_list a:hover {
	background-color: #000;
	background-image: url(../images/common/icon_elink_white.png);
	color: #FFF;
}
/* news */
.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 {
	background: url(../images/icon-arrow.png) no-repeat 0 5px;
	font-size: 1.2em;
	padding-left: 15px;
	width: 120px;
	vertical-align: top;
}
.news_title {
	font-size: 1.3em;
	vertical-align: top;
}
.news_icon_new {
	display: inline-block;
	color: #C00;
	font-weight: bold;
	margin-left: 0.5em;
}
.btn {
    width: 80%;
    margin: 0 auto;
}
.btn p {
    float: left;
    width: 45%;
    margin-right: 10%;
}
.btn p:last-child {
    margin-right: 0;
}
.btn p a {
    display: block;
    text-align: center;
    line-height: 5;
    border: 2px solid #00abeb;
    color: #00abeb;
    text-decoration: none;
    border-radius: 5px;
}
.btn p a:hover {
    opacity: 0.8;
}
.recruit_btn {
    width: 300px;
    margin: 20px auto;
    border: 2px solid #021774;
    border-radius: 5px;
    box-sizing:border-box;
}
.recruit_btn a {
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 20px 0;
	color: #021774;
	text-align: center;
	text-decoration: none;
	transition: .3s;
}
.recruit_btn a:hover {
	color: #FFF;
}
.recruit_btn a::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';
    background: #021774;
    transform-origin: center center;
    transform: scale(0, 1);
    transition: transform .3s;
}
.recruit_btn a:hover::before {
    transform: scale(1, 1);
}
.catch_con {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}
.catch_con figure {
    width: 50%;
    margin: 0 20px 0 0;
}
.catch_con figure img {
    width: 100%;
}
.catch_text {
    width: 50%;
}
.catch_text p {
	font-size: 14px;
	line-height: 2.3;
}
.catch_text .catch_text_title {
	margin: 0 0 20px;
    font-size: 2.0rem;
    font-weight: bold;
    color: #0d29a6;
	line-height: 1.6;
	text-align: center;
}
.recruit_movie{
	width: 854px;
	margin: 40px auto;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_bnr_wide{
	margin: 30px 0;
}
.index_bnr_wide .index_bnr_wide_item{
	margin-bottom: 20px;
}
.index_bnr_wide .index_bnr_wide_item:nth-last-child(1){
	margin-bottom: 0;
}
#index_bnr_small ul {
	display: flex;
	flex-wrap: wrap;
}
#index_bnr_small li {
    width: calc(100% / 3);
    display: inline-block;
    text-align: center;
    margin-bottom: 10px;
	font-size: 12px;
}
#index_bnr_small li a img {
    width: 300px;
    height: 90px;
}
.index_con {
	padding-bottom: 30px;
	width: 960px;
}
.index_main_head {
	position: relative;
	margin: 2em 0;
	padding: 0.8em 1em;
	color: #021774;
	font-size: 1.6rem;
	border: 3px solid #021774;
}
.index_main_head:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 30px;
	margin-left: -15px;
	border: 15px solid transparent;
	border-top: 15px solid #021774;
}
.index_main_head:after {
	content: "";
	position: absolute;
	bottom: -25px;
	left: 33px;
	margin-left: -17px;
	border: 14px solid transparent;
	border-top: 14px solid #FFF;
	z-index: 1;
}
.index_nav {
	margin-bottom: 30px;
}
.index_nav_list {
	display: flex;
	justify-content: space-between;
}
.index_nav_list img {
	height: auto;
	width: 470px;
}
.index_nav_list p{
	font-size: 20px;
	text-align: center;
	margin-bottom: 10px;
}
.index_news_item {
	display: flex;
	justify-content: space-between;
	font-size: 1.6rem;
	margin-bottom: 20px;
}
.index_news_con {
	order: 2;
	width: 740px;
}
.index_news_con_head {
	border-bottom: 1px solid #021774;
	margin-bottom: 10px;
	padding-bottom: 5px;
}
.index_news_con_head a{
	color: #021774;
	font-size: 1.6rem;
	text-decoration: none;
}
.index_news_thum {
	order: 1;
	width: 200px;
}
.index_news_thum img {
	height: auto;
	width: 100%;
}
.index_news_btn {
	color: #021774;
	display: inline-block;
	font-size: 1.6rem;
	text-decoration: none;
}
.index_news_btn:before {
	content: ">> ";
}
.index_news_btn:hover {
	text-decoration: underline;
}
.index_news_btn_wrap {
	margin-top: 5px;
	text-align: right;
}
.index_news_toarchive {
	margin-top: 20px;
}
.index_news_toarchive_link {
	font-size: 1.6rem;
}
.index_news_toarchive_link:before {
	content: ">> ";
}
.index_slide {
	margin-bottom: 60px;
}
/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.page_eyecatch {
	margin-bottom: 30px;
}
.page_sdesign_mcon h1 {
	color: #021774;
	font-size: 12px;
	text-align: center;
	margin-bottom: 30px;
}
.page_sdesign_mcon h1 .sub_ttl {
	display: block;
	font-size: 36px;
}
.page_sdesign_txt_kakudai {
	color: #021774;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	position: relative;
	margin-bottom: 90px;
}
.page_sdesign_txt_kakudai:before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 30px 0 30px;
	border-color: #021774 transparent transparent transparent;
	position: absolute;
	bottom: -30px;
	left: calc(50% - 30px);
	content: " ";
}
.page_sdesign_glry > div {
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
	opacity: 0.8;
	height: 400px;
	overflow: hidden;
	margin-bottom: 60px;
}
.page_sdesign_glry > div:hover {
	box-shadow: 0 0 5px rgba(0,0,0,0.3);
	opacity: 1;
}

/*----------------------------------------------------------------------------
******************************************************************************
** houjin
******************************************************************************
----------------------------------------------------------------------------*/
.kojin_index_nav_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.kojin_index_main_head {
	border-top: 3px solid #C00;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.79, #fff), color-stop(0.00, #ffbdbd));
	background: -webkit-linear-gradient(top, #ffbdbd 0%, #fff 79%);
	background: -moz-linear-gradient(top, #ffbdbd 0%, #fff 79%);
	background: -o-linear-gradient(top, #ffbdbd 0%, #fff 79%);
	background: -ms-linear-gradient(top, #ffbdbd 0%, #fff 79%);
	background: linear-gradient(to bottom, #ffbdbd 0%, #fff 79%);
	color: #C00;
	font-size: 1.6rem;
	margin-bottom: 20px;
	padding: 10px 10px 0 10px;
}
.kojin_index_main_head .subttl {
	font-size: 0.8em;
	margin-left: 2rem;
}
.kojin_index_nav_list_col_02 li {
	width: calc( (100% - 20px) / 2);
	margin-bottom: 20px;
}
.kojin_index_nav_list_col_03 li {
	width: calc( (100% - 40px) / 3);
	margin-bottom: 20px;
}
.kojin_index_nav_list_col_04 li {
	width: calc( (100% - 60px) / 4);
}
.kojin_index_nav_item {
	background-color: #C00;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.kojin_index_nav_thum {
	height: auto;
	width: 100%;
}
.kojin_index_nav_link {
	color: #FFF;
	display: block;
	text-decoration: none;
}
.kojin_index_nav_link:hover {
	background-color: rgba(255, 255, 255, 0.2);
}
.kojin_index_nav_title {
	background-color: rgba(0, 0, 0, 0.2);
	display: block;
	font-size: 1.8rem;
	font-weight: bold;
	padding: 5px 10px;
	text-align: center;
}
.kojin_index_nav_text {
	display: block;
	font-size: 0.9rem;
	padding: 5px 10px;
	text-align: center;
}
.kojin_index_news_item {
	border-top: 2px solid #C00;
	margin-bottom: 10px;
}
.kojin_index_news_item a {
	color: #C00;
	display: flex;
	justify-content: space-between;
	text-decoration: none;
	padding: 20px 10px 10px;
}
.kojin_index_news_item a:hover {
	background-color: #FAE2E2;
}
.kojin_index_news_con {
	width: calc(100% - 220px);
}
.kojin_index_news_con_head {
	border-bottom: 1px solid #C00;
	font-size: 1.4rem;
	margin-bottom: 10px;
	padding-bottom: 5px;
}
.kojin_index_news_con_text {
	color: #111;
	font-size: 1.4rem;
}
.kojin_index_news_thum {
	width: 200px;
}
.kojin_index_news_thum img {
	height: auto;
	width: 100%;
}
.kojin_chirashi_head {
	background-color: #021774;
	color: #FFF;
	font-size: 2.6rem;
	margin-bottom: 30px;
	text-align: center;
	width: 45%;
}
.kojin_chirashi_konshu_head {
	border-bottom: 1px solid #021774;
	font-size: 3rem;
	margin-bottom: 10px;
}
.kojin_chirashi_konshu {
	border-bottom: 1px solid #021774;
	padding-bottom: 30px;
	margin: 30px 0 40px;
}
.kojin_chirashi_konshu_text {
	font-size: 1.4rem;
}
.kojin_chirashi_konshu_btn {
	background-color: #021774;
	border-radius: 5px;
	color: #FFF;
	display: block;
	font-weight: bold;
	font-size: 2rem;
	padding: 5px;
	text-align: center;
	text-decoration: none;
}
.kojin_chirashi_konshu_btn:hover {
	opacity: 0.8;
	text-decoration: underline;
}
.kojin_chirashi_kakushu {
	margin-bottom: 40px;
}
.kojin_chirashi_kakushu_item {
	background-color: #FFF;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.kojin_chirashi_kakushu_link {
	color: #111;
	display: block;
	text-decoration: none;
}
.kojin_chirashi_kakushu_link:hover {
	opacity: 0.8;
	text-decoration: underline;
}
.kojin_chirashi_kakushu_title {
	display: block;
	font-size: 1.2rem;
	font-weight: bold;
	padding: 10px;
}
.kojin_chirashi_omachi {
	background-color: #021774;
	border-radius: 5px;
	color: #FFF;
	font-size: 2rem;
	text-align: center;
	padding: 10px;
}
.kojin_chirashi_omachi_btn {
	background-color: #FFF;
	border-radius: 5px;
	color: #021774;
	display: inline-block;
	font-size: 2rem;
	font-weight: bold;
	margin-left: 1em;
	text-align: center;
	padding: 0 1em;
	text-decoration: none;
}
.kojin_chirashi_omachi_btn:hover {
	opacity: 0.8;
}
.kojin_index_servie_list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.kojin_index_servie_list li{
	width: calc(50% - 10px );
	margin-bottom: 20px;
}
.kojin_index_servie_list li img{
	width: 100%;
	height: auto;
}
.kojin_index_sns_list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.kojin_index_sns_list li{
	width: calc(50% - 10px );
	margin-bottom: 20px;
}

/*---------- 190517 テスト用（サークル紹介）として追加 ----------*/
#index_club {
	height: 400px;
}
#index_club iframe {
	height: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** houjin
******************************************************************************
----------------------------------------------------------------------------*/
.houjin_index_bnr_list{
	display: flex;
	flex-wrap: wrap;
}
.houjin_index_bnr_list li{
	width: calc( ( 100% - 30px) / 3);
	margin-bottom: 10px;
	margin-right: 10px;
}
.houjin_index_contact {
	margin-top: 40px;
}
.houjin_index_main_head {
	border-top: 3px solid #021774;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.79, #fff), color-stop(0.00, #CCDAFF));
	background: -webkit-linear-gradient(top, #CCDAFF 0%, #fff 79%);
	background: -moz-linear-gradient(top, #CCDAFF 0%, #fff 79%);
	background: -o-linear-gradient(top, #CCDAFF 0%, #fff 79%);
	background: -ms-linear-gradient(top, #CCDAFF 0%, #fff 79%);
	background: linear-gradient(to bottom, #CCDAFF 0%, #fff 79%);
	color: #021774;
	font-size: 1.6rem;
	margin-bottom: 20px;
	padding: 10px 10px 0 10px;
}
.houjin_index_main_head .subttl {
	font-size: 0.8em;
	margin-left: 2rem;
}
.houjin_index_news_item {
	border-top: 2px solid #021774;
	margin-bottom: 10px;
}
.houjin_index_news_item a {
	color: #021774;
	display: flex;
	justify-content: space-between;
	text-decoration: none;
	padding: 20px 10px 10px;
}
.houjin_index_news_item a:hover {
	background-color: #EAEDFB;
}
.houjin_index_news_con {
	width: calc(100% - 220px);
}
.houjin_index_news_con_head {
	border-bottom: 1px solid #021774;
	font-size: 1.4rem;
	margin-bottom: 10px;
	padding-bottom: 5px;
}
.houjin_index_news_con_text {
	color: #111;
	font-size: 1.4rem;
}
.houjin_index_news_thum {
	width: 200px;
}
.houjin_index_news_thum img {
	height: auto;
	width: 100%;
}
.houjin_index_nav_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.houjin_index_nav_list img {
	height: auto;
	width: 100%;
}
.houjin_index_nav_list_col_03 li {
	width: calc( (100% - 40px) / 3);
	margin-bottom: 20px;
}
/* single */
.shopinfo {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.shopinfo_map {
	margin-bottom: 20px;
	width: 100%;
}
.shopinfo_map iframe {
	height: 400px;
	width: 100%;
}
.shopinfo_table {
	width: 450px;
}
.shopinfo_qr {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	width: 220px;
}
ul.hojin_bnr_foot li{
    width: 49%;
    margin-right: 1%;
    margin-bottom: 2%;
    float:left;
}
.hojin_bnr_foot img{
    width: 100%;
}
/*----------------------------------------------------------------------------
******************************************************************************
** 編集部分
******************************************************************************
----------------------------------------------------------------------------*/

#fixeBox {
	position: fixed;
	bottom: 10px;
	left: calc(50% - 480px);
	width: 960px;
}
#fixeBox_close {
	position: fixed;
	bottom: 100px;
	left: calc(50% + 480px);
	cursor: pointer;
}
.fixeBox_none {
	display: none;
}
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
.flot_left{
	width:50%;
	float:left;
}
.flot_left:nth-child(2){
	margin-right:0;
}

/*-------------------
プログラミング教室
-------------------*/
#p-s-form{
	position: fixed;
    right: 0;
    top: 50%;
    z-index: 10;
	animation:fuwarin 1.5s ease-in-out infinite alternate;
}
@keyframes fuwarin{
	0%{transform:translateY(-10px);}
	100%{transform:translateY(0px);}
}

#p-s-form img{
	width:200px;
}
.p-s-area{
	width:100%;
	display:flex;
	justify-content:center;
}
.p-s-area a{
	display:inline-block;
	background:#021774;
	border:5px solid #021774;
	color:#fff;
	text-decoration:none;
	width:32%;
	text-align:center;
	margin:5px;
	line-height:3;
	font-size:18px;
	transition:all .2s;
}
.p-s-area a:hover{
	background:#fff;
	color:#021774;
	font-weight:bold;
}
.p-s-area a::after{
	content:'';
	background:url(../images/btn-arrow.png) no-repeat;
	width:20px;
	height:5px;
	display:inline-block;
	background-size:12px;
	margin-left:10px;
	filter:saturate(0%) brightness(10);
	border-bottom:1px solid #fff;
	background-position:12px 1px;
	padding-right:2px;
	margin-bottom:4px;
	transition:all .2s;
}
.p-s-area a:hover::after{
	margin-left:20px;
	border-color:#021774;
	background-position: 31px 1px;
	width: 39px;
	filter:saturate(100%);
}

/*-------
コンタクトフォーム

.nittei_1 option:nth-of-type(2),
.nittei_2 option:nth-of-type(2),
.nittei_3 option:nth-of-type(2){
	background:#ccc;
	color:#c00;
}-------*/

/*----------------------------------------------------------------------------
******************************************************************************
** single
******************************************************************************
----------------------------------------------------------------------------*/
.single_relateNews {
	background-color: #EFEFEF;
	padding: 30px;
	margin-top: 50px;
}
.single_relateNews_head {
	position: relative;
	margin: 0 0 2em;
	padding: 0.8em 1em;
	color: #021774;
	font-size: 1.6rem;
	border: 3px solid #021774;
}
.single_relateNews_head:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 30px;
	margin-left: -15px;
	border: 15px solid transparent;
	border-top: 15px solid #021774;
}
.single_relateNews_head:after {
	content: "";
	position: absolute;
	bottom: -25px;
	left: 33px;
	margin-left: -17px;
	border: 14px solid transparent;
	border-top: 14px solid #FFF;
	z-index: 1;
}
.single_relateNews_item {
	display: flex;
	justify-content: space-between;
	font-size: 1.6em;
	margin-bottom: 20px;
}
.single_relateNews_con {
	order: 2;
	width: calc( 100% - 220px);
}
.single_relateNews_con_head {
	border-bottom: 1px solid #021774;
	margin-bottom: 10px;
	padding-bottom: 5px;
}
.single_relateNews_con_head a{
	color: #021774;
	font-size: 1.6rem;
	text-decoration: none;
}
.single_relateNews_thum {
	order: 1;
	width: 200px;
}
.single_relateNews_thum img {
	height: auto;
	width: 100%;
}
.single_relateNews_btn {
	color: #021774;
	display: inline-block;
	font-size: 1.6rem;
	text-decoration: none;
}
.single_relateNews_btn:before {
	content: ">> ";
}
.single_relateNews_btn:hover {
	text-decoration: underline;
}
.single_relateNews_btn_wrap {
	margin-top: 5px;
	text-align: right;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
/* ==== contents === */
.mcon {
	font-size: 1.4rem;/* フォントサイズ */
	line-height: 1.6;/* 行間 */
	word-wrap: break-word;
}
/* a */
.mcon a img:hover {
	opacity: 0.8;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
/* h */
.mcon h1 {
	border-bottom: 1px solid #021774;
	color: #021774;
	font-size: 2rem;
	margin-bottom: 20px;
	padding: 0 10px 5px 15px;
	position: relative;
}
.mcon h1:before {
	background-color: #021774;
	content: "";
	width: 7px;
	top: 5px;
	left: 0;
	bottom: 8px;
	position: absolute;
}
.mcon h2 {
	border-left: 6px solid #021774;
	font-size: 1.8rem;
	margin-bottom: 10px;
	margin-top: 20px;
	padding: 0 0.5em 0 0.5em;
}
.mcon h3 {
	font-size: 1.6rem;
	margin-bottom: 8px;
	margin-top: 16px;
}
.mcon h4 {
	font-size: 1.2em;
	margin-bottom: 5px;
	margin-top: 5px;
}
.mcon h5 {
	margin-bottom: 2px;
	margin-top: 5px;
}
.mcon h6 {
	margin-bottom: 2px;
	margin-top: 5px;
}
/* hr */
.mcon hr {
	border: none;
	border-top: 1px dotted rgba(0, 0, 0, 1);
}
/* iframe */
.mcon iframe {
	max-width: 100%;
}
/* img */
.mcon img {
	max-width: 100%;
	height: auto;
}
/* ol */
.mcon ol {
	margin-top: 1.2em;
	margin-bottom: 0.7em;
}
.mcon ol li {
	margin-left: 1.5em;
	margin-bottom: 0.5rem;
}
/* p */
.mcon p {
	margin-bottom: 1em;
}
/* ul */
.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;
}
/*----------------------------------------------------------------------------
******************************************************************************
** shoplist
******************************************************************************
----------------------------------------------------------------------------*/



#shoplist {
    width: 960px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #fff;
    box-sizing: border-box;
    margin: 3% 0;
    border-radius: 5px;
    margin: 0 auto;
}
#shoplist h2 {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    border-left: none;
}
#shoplist .shoplist_box {
    width: 48%;
	margin: 20px 0;
}
#shoplist .shoplist_box a {
	-webkit-transition: All 0.5s ease;
	transition: All 0.5s ease;
}
#shoplist .shoplist_box a:hover {
	opacity: 0.6;
}
#shoplist .shoplist_box ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
    margin-bottom: 3%;
	list-style-type: none;
}
#shoplist .shoplist_box ul li {
	margin-left: 5px;
    list-style-type: none;
}
#shoplist .shoplist_box ul li:first-child {
	margin-right: auto;
	margin-left: -5px;
}
.top_base p {
    margin-top: 2%;
}
.mia a {
    display: block;
    font-size: 19px;
    text-decoration: none;
    text-align: center;
    margin-bottom: 10px;
}
