/*
Theme Name: shitami
Theme URL: テーマのサイトのURI
Description: テーマの説明
Author: 作者の名前
Version: テーマのバージョン
Tags: テーマの特徴を表すタグ（カンマ区切り）
License: テーマのライセンス
License URI: テーマのライセンスのURI
*/


.sp__only{
display: block;
}
@media screen and (min-width: 1024px) {
  .sp__only{
    display: none;
  }
}

.site__header{
  background: #fff;
  padding: 15px 0;
  position: fixed;
  bottom: 0;
  transition: .5s;
  width: 100%;
  z-index: 999;
}
.site-header.hide{
  transform: translateY(100%);
}

.gnav__menu{
  display: flex;
  justify-content: space-around;
  list-style: none;
  text-align: center;
}
.gnav__menu__item{
  width: 40%;
  position: relative;
}
.gnav__menu__item:nth-child(2){
  width: 20%;
}

/* パンくず */
.breadcrumb{
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .breadcrumb{
    max-width: 1150px;
  }
}
.breadcrumb ul{
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 10px;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.breadcrumb li{
	display: inline-block;
	position: relative;
	padding-right: calc(16px + 8px);
	margin-right: 8px;
	color: #7986CB;
}
.breadcrumb li::before {
	content: '›';
	width: 1em;
	height: 1em;
	line-height: 1;
	text-align: center;
	font-size: 1em;
	color: inherit;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.breadcrumb li:last-child {
	margin-right: 0;
	padding-right: 0;
	color: #7986CB;
}
.breadcrumb li:last-child::before {
	content: normal;
}
.breadcrumb li a{
}
/* パンくず */


/* シングルページ同じカテゴリの記事 */
.relation__blog{
  margin: 0 auto 5%;
}

.relation__blog--content{
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .relation__blog--content{
    width: 100%;
    max-width: 1200px;
    flex-wrap: initial;
  }
}
/* .relation-blog-content{
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .relation-blog-content{
    width: 100%;
    max-width: 1200px;
    flex-wrap: initial;
  }
} */

.relation__blog--title {
  text-align: center;
  padding: 0 0 10px;
}
@media screen and (min-width: 1024px) {
  .relation__blog--title {
    padding: 0 0 20px;
  }
}


.relation__blog--content--item {
  width: 47%;
  height: auto;
  margin: 0 1.5% 3%;
}
@media screen and (min-width: 1024px) {
  .relation__blog--content--item {
    width: calc(100% / 4 - 20px);
    height: auto;
    margin: 0 10px 30px;
  }
}

.relation__blog--btn {
  display: block;
  position: relative;
  width: 140px;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 7px;
  text-align: center;
  text-decoration: none;
  color: #1B1B1B;
  background: #fff;
  border: 1px solid #1B1B1B;
  margin: auto;
}

.relation__blog--btn:hover {
background: #1B1B1B;
color: #fff;
cursor: pointer;
text-decoration: none;
}
/* シングルページ同じカテゴリの記事 */


.footer{
  background: #000;
  color: #fff;
  text-align: center;
  padding: 5vh 0 10vh;
}
@media screen and (min-width: 1024px) {
  .footer{
    padding: 5vh 0;
  }
}
.footer__nav{

}
.footer__nav--area{
  padding: 0 0 20px 0;
}
.footer__nav--title{

}
.footer__nav--list{
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .footer__nav--list{
    width: 60%;
    margin: 0 auto;
  }
}
.footer__nav--item{
  width: 33%;
}
.footer__nav--item--fix{
  width: 50%;
}
.footer__nav--item a{
color: #fff;
}