@charset "UTF-8";
/* CSS Document */
/* --------------------------------------------------
 :::::: border-box :::::: 
 -------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin:0:
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
* {
	-webkit-appearance: none;
}
/* --------------------------------------------------
 :::::: clearfix :::::: 
 -------------------------------------------------- */
.cf::after {
content: "";
display: table;
clear: both;
}
/* --------------------------------------------------
 :::::: flex :::::: 
 -------------------------------------------------- */
.flex {
  display: -webkit-box; /*Android4.3*/
  display: -moz-box;    /*Firefox21*/
  display: -ms-flexbox; /*IE10*/
  display: -webkit-flex; /*PC-Safari,iOS8.4*/
  display: flex;
  -webkit-box-pack: justify; /*Android4.3*/
  -moz-box-pack: justify;    /*Firefox21*/
  -ms-flex-pack: justify;    /*IE10*/
  -webkit-justify-content: space-between; /*PC-Safari,iOS8.4*/
  justify-content: space-between;
}
/* --------------------------------------------------
 :::::: flex column :::::: 
 -------------------------------------------------- */
.flexcolumn {
  display: -webkit-box; /*Android4.3*/
  display: -moz-box;    /*Firefox21*/
  display: -ms-flexbox; /*IE10*/
  display: -webkit-flex; /*PC-Safari,iOS8.4*/
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -ms-flex-direction: column;
         flex-direction: column;
}
/* --------------------------------------------------
 :::::: flex row-reverse :::::: 
 -------------------------------------------------- */
.flexrow-row {
  display: -webkit-box; /*Android4.3*/
  display: -moz-box;    /*Firefox21*/
  display: -ms-flexbox; /*IE10*/
  display: -webkit-flex; /*PC-Safari,iOS8.4*/
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -ms-flex-direction: row;
         flex-direction: row;
}
/*==========================================================
                        BASE
==========================================================*/
#container-wrapper {
  overflow: hidden;
  min-height: 500px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.container:after {
  content: "";
  display: block;
  clear: both;
}
.container {    zoom:1;}
@media (max-width: 979px) {
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
}
/*==========================================================
                        NORMALIZE
==========================================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: top;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}


.infobox-wrap {
  -webkit-box-pack:end;
  -ms-flex-pack:end;
  justify-content:flex-end;
  flex-direction: row; /* 横向きに配置 */
}

/*========================================================
                     INFO BOX
=========================================================*/

@media (max-width: 767px) {
@font-face {
  font-family: 'FontAwesome';
  src: url('./font/fontawesome-webfont.eot?v=4.0.3');
  src: url('./font/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'),
       url('./font/fontawesome-webfont.woff?v=4.0.3') format('woff'),
       url('./font/fontawesome-webfont.ttf?v=4.0.3') format('truetype'),
       url('./font/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.table-ul {
  background-color: #fff;
  display: table;
  table-layout: fixed;
  text-align: center;
  width: 100%;
}
.table-ul li {
  border-right: 1px solid #eb441a;
  display: table-cell;
  vertical-align: middle;
  height: 40px;
}
.table-ul li:last-child {
  border-right: 0;
}
.table-ul li a {
  display: block;
  font-size: 12px;
  text-decoration: none;
}
.icon-entry:before {
  color: #eb441a;
  content:"\f007";
  font-family: "FontAwesome";
  font-size: 16px;
}
.icon-login:before {
  color: #eb441a;
  content:"\f090";
  font-family: "FontAwesome";
  font-size: 16px;
}
.icon-mypage:before {
  color: #eb441a;
  content:"\f114";
  font-family: "FontAwesome";
  font-size: 16px;
}
.icon-post:before {
  color: #eb441a;
  content:"\f040";
  font-family: "FontAwesome";
   font-size: 16px;
}
}




