/*
Theme Name:xeory_base_child
Template:xeory_base
Version: 0.1.9
*/

@import url("tft-original.css");

/* ----------------------------------------
* all
---------------------------------------- */
body {
    background-color: #fff;
    font-family: YuGothic, '游ゴシック', sans-serif;
	font-size: 18px;
	color: #000;
	line-height: 1.8;
	letter-spacing: 1px;
	text-align: left;
	-webkit-text-size-adjust: 100%;
}
a {
  text-decoration: none;
  color: #c42605;
}
a:hover {
  text-decoration: underline;
}


#red-line {
	position: fixed;
	top: 0;
	left: 0;
	width: 8px;
	min-height: 100%;
	background-color: #c42605;
	z-index: 9999;
}

#header,
#content,
#footer {
    margin-left: 16px;
    margin-right: 16px;
}

/* Main
******************************/
.wrap {
    width: 900px;
}

.main-inner,
.left-content .main-inner {
    margin-right: 190px;
}

@media screen and (max-width: 991px) {
    .wrap {
        width: 100%;
    }
}

.cat-content,
article.post,
article.page,
article.wp101,
article.seo101 {
  margin-bottom: 40px;
  background: #fff;
  border: none;
}

.pageTitle {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 40px;
    letter-spacing: 0.15em;
    line-height: 1.4;
}
.post-content {
  padding: 0 64px;
  overflow: hidden;
}
/* SideBar
******************************/

#side,
.left-content #side {
    width: 150px;
    margin-left: -160px;
}

.side-widget {
    background-color: #efefef;
    margin-bottom: 20px;
    padding: 20px;
}

.side-widget-inner {
    text-align: center;
}
.side-widget-inner ul {
    padding-top: 16px;
}
.side-widget-inner ul li {
    padding: 5px 0;
    border:none;
}
.side-widget-inner a {
    background-image: none;
    padding-left: 0;
}
.side-widget-inner a:hover {
    background-image: none;
    color: #000;
    text-decoration: underline;
}

.widget_search {
    padding: 0;
}

.side-title-inner {
    position: relative;
    padding-bottom: 16px;
}

.side-title-inner:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 1px;
    bottom: 0;
    left: 25%;
    border-bottom: 1px solid #000;
}

@media screen and (max-width: 991px) {
    #side,
    .left-content #side {
        width: 80%;
        margin: 0 auto;
    }
}

/* Archive Title
******************************/
.cat-content {
    border: none;
    text-align: center;
    padding: 0;
}


/* Post List
******************************/
.post-loop-list{
    border-bottom: 1px dotted #bababa;
}
.post-loop-item {
    border-top: 1px dotted #bababa;
}

.post-loop-item a {
    display: block;
    color: #000;
}
.post-loop-item a:hover{
    background-color: #efefef;
    color: #000;
    text-decoration: none;
}
.post-loop-item article {
    border: none;
    margin: 0;
    background-color: transparent;
}

.post-header {
    padding: 20px 0;
}
.post-header p,
.post-header h2 {
    display: inline-block;
    font-size: 16px;
}
.post-header h2 {
    margin: 0;
}

.post-header p.date.updated {
	width: 80px;
	display: inline-block;
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.05em;
	margin-right: 30px;
}
.post-header p.category {
	height: 20px;
	width: 90px;
	display: inline-block;
	color: #fff;
	font-size: 11px;
	font-weight: 500;
	text-align: center;
	line-height: 20px;
	border-radius: 2px;
	background: #c42605;
	padding: 0 6px;
	margin-right: 10px;
}
.post-header .post-title {
    margin-left: 0;
    font-weight: normal;
}


/* Post Single
******************************/
.post-single .post {
    border: none;
    width: 500px;
    margin: 0 auto;
}
.post-single .post-meta {
    border: none;
}
.post-single .post-title {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin: 20px 0 30px 0;
    line-height: 1.5;
}
.post-single .post-meta li {
    padding: 0;
}
.post-single .post-meta li.date {
    line-height: 35px;
}
.post-single .post-meta li.category {
	background: #c42605;
    border-radius: 2px;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 5px;
    margin-right: 10px;
    text-align: center;
}
.post-single .post-content {
    padding: 0;
}
.post-single .post-footer {
    padding-left: 0;
}

@media screen and (max-width: 991px) {
    .post-single .post {
        width: 100%;
        margin: 0 auto;
    }
    .wrap {
        margin-left: 0;
        margin-right: 0;
    }
}


/* Footer
******************************/
.footer-copy a{
	text-decoration: none;
	color: #000;
}

.footer-03 {
    border-top: 1px #efefef solid;
}
.footer-03 a {
    display: inline-block;
    margin-right: 20px;
}

.footer-02 .footer-copy {
    text-align: center;
    font-size: 12px;
    padding: 20px 0;
}



/*----------------------------------------
Grid Systems
----------------------------------------*/

.Grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}
.Grid-cell {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.Grid--flexCells > .Grid-cell {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.Grid--top {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.Grid--bottom {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.Grid--center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.Grid--justifyCenter {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.Grid-cell--top {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
}
.Grid-cell--bottom {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
}
.Grid-cell--center {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}
.Grid-cell--autoSize {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
}
.Grid--fit > .Grid-cell {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.Grid--full > .Grid-cell {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}
.Grid--1of2 > .Grid-cell {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}
.Grid--1of3 > .Grid-cell {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.3333%;
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
}
.Grid--1of4 > .Grid-cell {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
}
@media (min-width:384px) {
    .small-Grid--fit > .Grid-cell {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    .small-Grid--full > .Grid-cell {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
    .small-Grid--1of2 > .Grid-cell {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
    .small-Grid--1of3 > .Grid-cell {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.3333%;
        -ms-flex: 0 0 33.3333%;
        flex: 0 0 33.3333%;
    }
    .small-Grid--1of4 > .Grid-cell {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    }
}
@media (min-width:576px) {
    .med-Grid--fit > .Grid-cell {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    .med-Grid--full > .Grid-cell {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
    .med-Grid--1of2 > .Grid-cell {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
    .med-Grid--1of3 > .Grid-cell {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.3333%;
        -ms-flex: 0 0 33.3333%;
        flex: 0 0 33.3333%;
    }
    .med-Grid--1of4 > .Grid-cell {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    }
}
@media (min-width:768px) {
    .large-Grid--fit > .Grid-cell {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    .large-Grid--full > .Grid-cell {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
    .large-Grid--1of2 > .Grid-cell {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
    .large-Grid--1of3 > .Grid-cell {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.3333%;
        -ms-flex: 0 0 33.3333%;
        flex: 0 0 33.3333%;
    }
    .large-Grid--1of4 > .Grid-cell {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    }
}
.Grid--gutters {
    margin: -1em 0 0 -1em;
}
.Grid--gutters > .Grid-cell {
    padding: 1em 0 0 1em;
}
.Grid--guttersLg {
    margin: -1.5em 0 1.5em -1.5em;
}
.Grid--guttersLg > .Grid-cell {
    padding: 1.5em 0 0 1.5em;
}
.Grid--guttersXl {
    margin: -2em 0 2em -2em;
}
.Grid--guttersXl > .Grid-cell {
    padding: 2em 0 0 2em;
}
@media (min-width:384px) {
    .small-Grid--gutters {
        margin: -1em 0 1em -1em;
    }
    .small-Grid--gutters > .Grid-cell {
        padding: 1em 0 0 1em;
    }
    .small-Grid--guttersLg {
        margin: -1.5em 0 1.5em -1.5em;
    }
    .small-Grid--guttersLg > .Grid-cell {
        padding: 1.5em 0 0 1.5em;
    }
    .small-Grid--guttersXl {
        margin: -2em 0 2em -2em;
    }
    .small-Grid--guttersXl > .Grid-cell {
        padding: 2em 0 0 2em;
    }
}
@media (min-width:576px) {
    .med-Grid--gutters {
        margin: -1em 0 1em -1em;
    }
    .med-Grid--gutters > .Grid-cell {
        padding: 1em 0 0 1em;
    }
    .med-Grid--guttersLg {
        margin: -1.5em 0 1.5em -1.5em;
    }
    .med-Grid--guttersLg > .Grid-cell {
        padding: 1.5em 0 0 1.5em;
    }
    .med-Grid--guttersXl {
        margin: -2em 0 2em -2em;
    }
    .med-Grid--guttersXl > .Grid-cell {
        padding: 2em 0 0 2em;
    }
}
@media (min-width:768px) {
    .large-Grid--gutters {
        margin: -1em 0 1em -1em;
    }
    .large-Grid--gutters > .Grid-cell {
        padding: 1em 0 0 1em;
    }
    .large-Grid--guttersLg {
        margin: -1.5em 0 1.5em -1.5em;
    }
    .large-Grid--guttersLg > .Grid-cell {
        padding: 1.5em 0 0 1.5em;
    }
    .large-Grid--guttersXl {
        margin: -2em 0 2em -2em;
    }
    .large-Grid--guttersXl > .Grid-cell {
        padding: 2em 0 0 2em;
    }
}
.u-full {
    width: 100%!important;
}
.u-1of2,
.u-full {
    -webkit-box-flex: 0!important;
    -webkit-flex: none!important;
    -ms-flex: none!important;
    flex: none!important;
}
.u-1of2 {
    width: 50%!important;
}
.u-1of3 {
    width: 33.3333%!important;
}
.u-1of3,
.u-2of3 {
    -webkit-box-flex: 0!important;
    -webkit-flex: none!important;
    -ms-flex: none!important;
    flex: none!important;
}
.u-2of3 {
    width: 66.6667%!important;
}
.u-1of4 {
    width: 25%!important;
}
.u-1of4,
.u-3of4 {
    -webkit-box-flex: 0!important;
    -webkit-flex: none!important;
    -ms-flex: none!important;
    flex: none!important;
}
.u-3of4 {
    width: 75%!important;
}
@media (min-width:384px) {
    .u-small-full {
        width: 100%!important;
    }
    .u-small-1of2,
    .u-small-full {
        -webkit-box-flex: 0!important;
        -webkit-flex: none!important;
        -ms-flex: none!important;
        flex: none!important;
    }
    .u-small-1of2 {
        width: 50%!important;
    }
    .u-small-1of3 {
        width: 33.3333%!important;
    }
    .u-small-1of3,
    .u-small-2of3 {
        -webkit-box-flex: 0!important;
        -webkit-flex: none!important;
        -ms-flex: none!important;
        flex: none!important;
    }
    .u-small-2of3 {
        width: 66.6667%!important;
    }
    .u-small-1of4 {
        width: 25%!important;
    }
    .u-small-1of4,
    .u-small-3of4 {
        -webkit-box-flex: 0!important;
        -webkit-flex: none!important;
        -ms-flex: none!important;
        flex: none!important;
    }
    .u-small-3of4 {
        width: 75%!important;
    }
}
@media (min-width:576px) {
    .u-med-full {
        width: 100%!important;
    }
    .u-med-1of2,
    .u-med-full {
        -webkit-box-flex: 0!important;
        -webkit-flex: none!important;
        -ms-flex: none!important;
        flex: none!important;
    }
    .u-med-1of2 {
        width: 50%!important;
    }
    .u-med-1of3 {
        width: 33.3333%!important;
    }
    .u-med-1of3,
    .u-med-2of3 {
        -webkit-box-flex: 0!important;
        -webkit-flex: none!important;
        -ms-flex: none!important;
        flex: none!important;
    }
    .u-med-2of3 {
        width: 66.6667%!important;
    }
    .u-med-1of4 {
        width: 25%!important;
    }
    .u-med-1of4,
    .u-med-3of4 {
        -webkit-box-flex: 0!important;
        -webkit-flex: none!important;
        -ms-flex: none!important;
        flex: none!important;
    }
    .u-med-3of4 {
        width: 75%!important;
    }
}
@media (min-width:768px) {
    .u-large-full {
        width: 100%!important;
    }
    .u-large-1of2,
    .u-large-full {
        -webkit-box-flex: 0!important;
        -webkit-flex: none!important;
        -ms-flex: none!important;
        flex: none!important;
    }
    .u-large-1of2 {
        width: 50%!important;
    }
    .u-large-1of3 {
        width: 33.3333%!important;
    }
    .u-large-1of3,
    .u-large-2of3 {
        -webkit-box-flex: 0!important;
        -webkit-flex: none!important;
        -ms-flex: none!important;
        flex: none!important;
    }
    .u-large-2of3 {
        width: 66.6667%!important;
    }
    .u-large-1of4 {
        width: 25%!important;
    }
    .u-large-1of4,
    .u-large-3of4 {
        -webkit-box-flex: 0!important;
        -webkit-flex: none!important;
        -ms-flex: none!important;
        flex: none!important;
    }
    .u-large-3of4 {
        width: 75%!important;
    }
}

