@CHARSET "UTF-8";

/* =====================================
	サイト全体
======================================= */
html {
	width: 100%;
	height:auto;
}

body {
    width: 100%;
	height:100%;
	font-family: Helvetica,"Hiragino Kaku Gothic ProN",Meiryo,Verdana,YuGothic,"游ゴシック",sans-serif;
	line-height:1.6em;
	/*user-select:none;
	-webkit-user-select:none;
	-moz-user-select:none;
	-khtml-user-select:none;*/
    color: #292121;
	font-size: 16px;
}

img{
    width: 100%;
    max-width:100%;
    height:auto;
}

/* 明朝フォント */
.minF {
	font-family: "Roboto Slab", Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}



/*
    画面サイズでの表示・非表示
------------------------------------------ */
/* pc*/
@media screen and (min-width: 768px){
    .none-pc{
        display: none!important;
    }
}
/* sp */
@media screen and (max-width: 767px){
    .none-sp{
        display: none!important;
    }
}


/*
	リンク
------------------------------------------ */
a{
    color: #567c9c;
    transition: all ease 200ms;
}
a:hover,
a:active{
    color: #938218;
	text-decoration:none;
}

/* 画像リンク */
a img {
	transition: all ease 200ms;
}
a:hover img,
a:active img {
	opacity:0.85;
	-moz-opacity:0.85;
	filter:alpha(opacity=85);
	-ms-filter: "alpha(opacity=85)";
}



/*
	文字スタイル
------------------------------------------ */
p {
  -webkit-font-feature-settings: 'palt' 1;
  font-feature-settings: 'palt' 1;
}

.color-red{
    color: #921e1e;
    font-weight: bold;
}



/*
topへ
------------------------------------------ */
#go-top{
    display: block;
    padding: 1.6rem 1.2rem .8rem;
    background: rgba(190,171,50,.7);
    border-radius: .75rem;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
}
#go-top::before{
    content: '▲';
    display: block;
    position: absolute;
    width: 100%;
    font-size: .7em;
    top: .5em;
    left: 0;
    text-align: center;
}

#go-top:hover,
#go-top:active{
    opacity:0.85;
    -moz-opacity:0.85;
    filter:alpha(opacity=85);
    -ms-filter: "alpha(opacity=85)";
}


/*
    tab
------------------------------------------ */
.tab-area .tab-btn{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto;
}
.tab-area .tab-btn li{
    box-sizing: border-box;
    font-family: "Roboto Slab", Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-weight: bold;
    text-align:center;
}
.tab-area .tab-content.hide{
    display:none;
}

