@charset "UTF-8";

/* --------------------------------
 * base
 * -------------------------------- */
html {
    font-size: 62.5%;
}

body {
	width: 100%;
	min-width: 320px;
	max-width: 100%;
	overflow-x: hidden;
	color: #333;
	font-size: 1.2rem;
	font-family: Helvetica,Arial,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro","游ゴシック",YuGothic,"メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
	-webkit-text-size-adjust: 100%;
	line-height: inherit;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}

ul,
ol{
    list-style-type: none;
}

/* --------------------------------
 * parts
 * -------------------------------- */
.clearfix::after,
.clear:after {
    content: '';
    display: block;
    clear: both;
}

.flex{
    display: flex;
    display: -webkit-flex;
}

.hidden {
    display: none;
}



/* --------------------------------
 * header
 * -------------------------------- */
.header{
    width: 100%;
    background: #039be5;
}

/* PCでは非表示 */
.header-top-area{
	display: none;
}

.header-menu{
    width: 85%;
    margin: auto;
}

.header-menu ul{
    width: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: space-around;
    align-items: center;
    padding: 22px 0;
    position: relative;
}

.header-menu ul li{
    width: calc(100%/5);
}

.header-menu ul li a{
    display: block;
    font-size: 15px;
    color: #fff;
    padding: 0 25px;
    font-weight: bold;
    position: relative;
    text-align: center;
    border-right: 1px solid #ccc;
}

.header-menu ul li:nth-child(2) a{
		border-left: 1px solid #ccc;
}

.header-menu ul li a span{
    font-size: 12px;
    display: block;
    padding: 3px 0;
    color: #bcbcbc;
    font-weight: normal;
}

.header-menu ul li.site-head{
		width: 450px;
		min-width: 450px;
		margin-right: auto;
}

.header-menu ul li.site-head a{
    font-size: 30px;
    font-weight: normal;
		text-align: left;
}

.header-menu ul li.site-head img{
		width: 85%;
		max-width: 85%;
		vertical-align: middle;
}

.header-menu ul li:last-child a,
.header-menu ul li.site-head a{
		border-left: none;
    border-right: none;
}

.header-menu ul li a:hover{
    color: #fff;
		opacity: 0.7;
}


.header-menu ul > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
}


/* --------------------------------
 * breadcrumbs
 * -------------------------------- */
.breadcrumbs{
    width: 85%;
    padding: 5px 15px;
    margin:0 auto -20px;
}

.breadcrumbs ol{
    margin: 0;
    padding: 8px 0;
    white-space: nowrap;
}

.breadcrumbs ol li,
.breadcrumbs ol li a{
    font-size: 12px;
    color: #536865;
    display: inline-block;
}

.breadcrumbs ol li a:hover{
    text-decoration: underline;
    opacity: 0.7;
}

.breadcrumbs ol li::before{
    content: "\f105";
    font-family: FontAwesome;
    padding: 0 10px;
}

.breadcrumbs ol li:first-child::before{
		content: "\f015";
		padding: 0 5px 0 0;
}
/* --------------------------------
 * container
 * -------------------------------- */
.container{
    width: 85%;
    margin: 30px auto;
    display: flex;
    display: -webkit-flex;
    justify-content: space-around;
}

/* --------------------------------
 * contents
 * -------------------------------- */
.contents{
    width: 65%;
    padding:15px 10px 50px;
    box-sizing: border-box;
}

.contents p{
    color: #484848;
    font-size: 16px;
		line-height: 1.75;
		letter-spacing: .5px;
    word-break: break-all;
    margin-bottom: 15px;
		padding: 5px 0;
}


.options-area{
    width: 100%;
    padding: 6px 0;
}

.update{
    font-size: 13px;
    color: #999;
    font-weight: bold;
}

.update::before{
    content: "\f017";
    font-family: FontAwesome;
    padding: 0 2px;
}

/* h1~h4 */
h1,
h3,
h4 {
	color: #222;
}


h1{
    font-size: 2.8rem;
    padding: 12px 0;
	  line-height: 1.5;
}

h2,
h3,
h4 {
	margin: 40px 0 20px;
}

h2{
    background: #039be5;
    padding: 15px 10px;
    position: relative;
    font-size: 2.5rem;
    color: #fff;
}

h2::after{
    content: "";
    position: absolute;
    top: 100%;
    left: 10%;
    border: 12px solid transparent;
    border-top: 12px solid #039be5;
}

h3{
    font-size: 2.2rem;
    padding: 10px;
    border-left: 5px solid #039be5;
}

h4{
    font-size: 1.9rem;
    padding: 10px 0;
}

/*------------------------------------------
▼(※追加 /20/5/14)　h4アイコン
------------------------------------------*/

.h4_icon::before{
	content:" \f046";
	font-family: FontAwesome;
	font-size: 180%;
	color:#039be5;
	display: inline-block;
	vertical-align: middle;
}



/* --------------------------------
 * menu-area
 * -------------------------------- */
.menu-area{
    width: 30%;
    background: #fff;
    padding: 15px 10px;
}

.menu-item-head{
    font-size: 16px;
    color: #fff;
    padding: 3px;
    font-weight: bold;
    background: #039be5;
    margin-bottom: 4px;
}

.menu-item-head p{
    border: 1px solid #fff;
    padding: 10px;
}

.menu-item-head span{
    font-size: 12px;
    display: inline-block;
    padding: 0 4px;
    font-weight: normal;
    color: #ccc;
}

.menu-area ul{
    margin: 10px 0;
}

.menu-area ul li{
    font-size: 14px;
}

.menu-area ul li a{
    display: block;
    padding: 15px 15px 15px 5px;
    position: relative;
		color: #333;
    border-bottom: 1px solid #ccc;
}

.menu-area ul li:last-child a{
	border-bottom: none;
}

.menu-area ul li a:hover{
    opacity: 0.7;
    transition: all .2s;
}

.menu-area ul li a::after{
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    top: 50%;
    right: 3%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.menu-area ul li.recommend-item a{
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.menu-area ul li.recommend-item a img{
    width: 30%;
    height: 70px;
}

.right-zone{
    padding: 0 6px;
    width: 65%;
}

.date{
    color: #777;
    display: inline-block;
    padding-bottom: 6px;
    font-size: 12px;
}

.date::before{
    content: "\f017";
    font-family: FontAwesome;

}

.right-zone p{
    font-size: 16px;
    color: #536865;
    line-height: 1.2;
}
/* --------------------------------
 * footer
 * -------------------------------- */
footer {
    width: 100%;
		font-weight: bold;
		border-top: 1px solid #039be5;
}

/*first-menu-area*/
.first-menu-area{
		width: 85%;
    display: flex;
    display: -webkit-flex;
    margin: 30px auto;
}

/*footer-double-box*/
.footer-double-box{
    width: 100%;
}

/*footer-inner-box*/
.footer-inner-box{
    display: flex;
    display: -webkit-flex;
    margin-bottom: 15px;
}

.foot-menu-box{
    width: calc((100% - 60px)/4);
    margin: 0 10px;
}

.first-menu-area ul li a{
    display: block;
    padding: 10px 10px 10px 0;
    font-size: 14px;
    color: #333;
    position: relative;
    font-weight: normal;
    border-bottom: 1px solid #ccc;
}

.first-menu-area ul li a::after{
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.heading02{
		color: #039be5;
		margin-bottom: 10px;
    padding: 10px 0;
    font-size: 16px;
		font-weight: bold;
		border-bottom: 2px solid #039be5;
}

.foot-menu-box ul li.recommend-item a{
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.foot-menu-box ul li.recommend-item a:hover p{
    color: #fff;
    transition: all .2s;
}

.foot-menu-box ul li.recommend-item a img{
    width: 30%;
    height: 70px;
}

.foot-menu-box .date{
    color: #fff;
    display: inline-block;
    padding-bottom: 6px;
    font-size: 12px;
}

.foot-menu-box .right-zone p{
    font-size: 16px;
    color: #fff;
}

/*second-menu-area*/
.second-menu-area{
    padding: 20px 0;
    display: flex;
    display: -webkit-flex;
		justify-content: space-evenly;
		align-items: center;
		background: #039be5;
}

.second-menu-area ul{
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
}

.second-menu-area ul li a{
    font-size: 0.9em;
    color: #fff;
    padding: 7px 6px;
}

.first-menu-area ul li a:hover,
.second-menu-area ul li a:hover{
    opacity: 0.7;
    transition: all .2s;
}

.copyright{
    font-size: 0.9em;
    color: #fff;
    padding: 5px;
}
/* --------------------------------
 * backtop,mkzbtn
 * -------------------------------- */
#backtop a,
#mkzbtn a{
    position: fixed;
		right: 20px;
    text-align: center;
    background: rgba(0,0,0,0.45);
    color: #fff;
    width: 50px;
    height: 50px;
    z-index: 2;
}

#backtop a{
		bottom: 0px;
		line-height: 50px;
}

#mkzbtn a{
		bottom: 60px;
		line-height: 1.4;
}

#backtop a::after{
    content: "\f106";
    font-family: FontAwesome;
    font-size: 22px;
    font-weight: bold;
}

#mkzbtn a::before{
		content: "\f03a";
		font-family: FontAwesome;
		font-size: 22px;
		display: block;
}

#backtop a:hover,
#mkzbtn a:hover{
    opacity: 0.7;
    transition: all .2s;
}

.header-menu ul li a{
		padding: 0 13px;
		word-break:break-all;
}

.header-menu ul li.site-head a{
		white-space: nowrap;
		font-size: 26px;
}
.menu{
	display: none;
}




/* --------------------------------
* レスポンシブ対応用(下記スマホ)
* -------------------------------- */
@media only screen and (max-width:768px){
	/* --------------------------------
	* header
	* -------------------------------- */
	.header{
		padding:5px 0;
	}

	.header-menu{
		display: none;
	}

	/*header-top-area*/
	.header-top-area{
		display: flex;
		display: -webkit-flex;
		align-items: center;
		background: #039be5;
		padding: 0 15px;
	}

	.menubutton{
		display: block;
		width: 40px;
		text-align: center;
		height: 40px;
		line-height: 40px;
	}

	.menubutton::after{
		content: "\f0c9";
		font-family: FontAwesome;
		font-size: 23px;
		color: #fff;
	}

	/*menubutton open*/
	.menubutton.open::after{
		content: "\f00d";
	}

	/*site-head-area*/
	.site-head-area{
		flex: 1;
		margin: 0;
		padding: 0;
		text-align: left;
	}

	.site-head-area a{
		display: inline-block;
		padding: 12px 0;
		color: #fff;
	}
	.site-head-area img{
		width: 75%;
		max-width: 75%;
		vertical-align: middle;
	}
	/*menu*/
	.menu{
		display: none;
	}
	.menu ul li a{
		display: block;
		background: #fff;
		padding:12px 15px;
		color: #333;
		font-size: 16px;
		border-bottom: 1px solid #eee;
		position: relative;
	}
	.menu ul li a::after{
		content: "\f105";
		font-family: FontAwesome;
		position: absolute;
		top: 50%;
		right: 15px;
		transform: translateY(-50%);
	}

	.toggle_wrap:last-of-type {
		border-bottom: 1px solid gray;
	}
	.toggle_switch {
		position: relative;
		font-weight: bold;
	}
	.toggle_switch.open {
		border-bottom: 1px solid #039be5;
	}
	/*
	.toggle_switch:hover {
	background-color: #eee;
}
	*/
	.toggle_switch::after {
		content: "+";
		display: inline-block;
		width: 42px;
		height: 40px;
		line-height: 40px;
		font-size: 20px;
		text-align: center;
		box-sizing: border-box;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0%;
		transition: transform .2s;
		cursor: pointer;
		background: #039be5;
		color: #fff;
	}
	.toggle_switch.open::after {
		/*    transform: rotate(45deg);*/
		/*    top: 0%;*/
		content: "×";
	}
	.toggle_contents {
		display: none;
	}
	.toggle_contents li a{
		font-size: 15px!important;
		padding-left: 25px!important;
	}
	.toggle_contents li > .toggle_contents li a{
		padding-left: 30px!important;
	}

	/* --------------------------------
	* breadcrumbs
	* -------------------------------- */
	.breadcrumbs{
		width: 100%;
		margin: 0;
		padding: 10px;
		overflow-x: auto;
	}

	.breadcrumbs ol{
		margin: 0;
		padding:0;
	}


	/* --------------------------------
	* container
	* -------------------------------- */
	.container,.contents,.menu-area{
		width: 100%;
		max-width: 100%;
	}
	.container{
		flex-flow: row wrap;
		margin: 0 0 10px;
		padding: 10px 15px;
	}

	/*h1~h4*/
	h1{
		font-size: 2.3rem;
		padding: 8px 0 12px;
	}

	h2{
		font-size: 2.1rem;
	}

	h2::after{
		left: 20%;
	}

	h3{
		font-size: 1.8rem;
	}

	h4{
		font-size: 1.5rem;
	}

	/* --------------------------------
	* menu-area
	* -------------------------------- */
	.menu-area{
		margin: 30px 0px;
		padding: 0;
		width: 100%;
		max-width: 100%;
	}

	.menu-item-head{
		font-size: 15px;
		font-weight: bold;
	}

	.menu-item-head p{
		padding: 8px;
	}

	.menu-item-head span{
		position: relative;
	}

	.right-zone p{
		line-height: 1.5;
	}
	/* --------------------------------
	* footer
	* -------------------------------- */

	/*first-menu-area*/
	.first-menu-area{
		display: none;
	}

	/*footer-inner-box*/
	.footer-inner-box{
		padding: 15px 0;
	}

	.heading02{
		font-size: 14px;
	}

	/*second-menu-area*/
	.second-menu-area{
		display: block;
		border-top: none;
	}

	.second-menu-area ul{
		display: none;
		justify-content: center;
		padding: 0 0 15px;
	}

	.copyright{
		font-size: 0.7em;
		text-align: center;
	}
	/* --------------------------------
	* backtop
	* -------------------------------- */
	#backtop a,
	#mkzbtn a{
		right: 0px;
		width: 45px;
		height: 45px;
	}

	#backtop a{
		bottom: 60px;
		line-height: 45px;
	}
	#mkzbtn a{
		bottom: 120px;
		font-size: 11px;
	}
	#backtop a::after{
		font-size: 20px;
	}

}
