@charset "utf-8";
/*------------------------------------------
  modBtn / ボタン
------------------------------------------*/

/*
<div class="modBtn 色"><a href=""><span>●●</span></a></div>
*/

.modBtn {
    width: 90%;
    max-width: 300px;
    height: 60px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    margin: 0 auto;
}
.modBtn a {
    height: 100%;
    display: block;
    position: relative;
}
.modBtn a:after {
    content: "";
    display: block;
    width: 31px;
    height: 5px;
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.modBtn a span {
    display: block;
    top: 48%;
    -webkit-transform: translateY(-52%);
    -ms-transform: translateY(-52%);
    transform: translateY(-52%);
    position: relative;
}
/* color */

.modBtnGray a {
    color: #b4b4b4;
    border: 2px solid #b4b4b4;
}
.modBtnGray a:after {
    background-image: url(../img/ico/ico_btn_gray.png);
}
.modBtnGray02 a {
    color: #4c4b4c;
    border: 2px solid #4c4b4c;
}
.modBtnGray02 a:after {
    background-image: url(../img/ico/ico_btn_gray02.png);
}
.modBtnGold a {
    color: #d5b45c;
    border: 2px solid #d5b45c;
}
.modBtnGold a:after {
    background-image: url(../img/ico/ico_btn_gold.png);
}
.modBtnBlack a {
    color: #333;
    border: 2px solid #333;
}
.modBtnBlack a:after {
    background-image: url(../img/ico/ico_btn_black.png);
}

@media screen and (min-width: 768px) {
/*
		hover
	---------------------------*/
	
.modBtn a:after {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.modBtn a:hover {
    color: #fff;
    opacity: 1;
}
.modBtn a:hover:after {
    background-image: url(../img/ico/ico_btn_white.png);
}
.modBtn a:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 1px;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.modBtn a:hover:before {
    width: 100%;
}
/* color */
	
.modBtnGray a:hover:before {
    background-color: #b4b4b4;
}
.modBtnGray02 a:hover:before {
    background-color: #4c4b4c;
}
.modBtnGold a:hover:before {
    background-color: #d5b45c;
}
.modBtnBlack a:hover:before {
    background-color: #333;
}
}

@media screen and (max-width: 767px) {
.modBtn {
    font-size: 14px;
    
}
.modBtn.modBtnBlack{top: 100px}
}
/*------------------------------------------
  modTit01 / 下線+ルビ+アニメーション付きタイトル
------------------------------------------*/

/*
<h2 class="modTit01">
	<span class="sub01 wow slideInLeft" data-wow-duration="1s">●●</span>
	<span class="sub02 wow fadeInDown" data-wow-delay="1s">●●</span>
</h2>
*/

.modTit01 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
}
.modTit01 span {
    display: block;
    padding-left: 40px;
}
.modTit01 .sub01 {
    margin-bottom: 5px;
    border-bottom: 1px solid #000;
    background: url(../img/ico/ico_line01.png) no-repeat left center;
    background-size: 22px;
}
.modTit01 .sub02 {
    font-size: .7em;
}

@media screen and (max-width: 767px) {
.modTit01 {
    font-size: 18px;
    margin-bottom: 20px;
}
.modTit01 span {
    padding-left: 20px;
}
.modTit01 .sub01 {
    background-size: 11px;
}
}
/*------------------------------------------
  modTxt01 / 下線*アニメーション付きテキスト
------------------------------------------*/

.modTxt01 {
    display: table;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 4px;
    padding: 0 5px;
    margin: 0 auto 15px;
    position: relative;
}
.modTxt01.mt1Line:before {
    content: "";
    bottom: 0;
    height: 5px;
    width: 100%;
    display: block;
    left: 0;
    right: 0;
    margin: auto;
    background: #d5b45c;
    position: absolute;
    -webkit-animation-name: mt1Line;
    animation-name: mt1Line;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
 @-webkit-keyframes mt1Line {
 0% {
width: 0
}
 100% {
width: 100%
}
}
 @keyframes mt1Line {
 0% {
width: 0
}
 100% {
width: 100%
}
}

@media screen and (max-width: 767px) {
.modTxt01 {
    font-size: 16px;
    letter-spacing: 2px;
}
.modTxt01.mt1Line:before {
    height: 3px;
}
}

@media screen and (min-width: 768px) {
.pcnone{
 display: none;
}
.spnone{
    display: block;
}
}
@media screen and (max-width: 767px) {
.pcnone{
 display: block;
}
.spnone{
    display: none;
}
}
/*------------------------------------------
  modTxt02 / センタリング　大きめ見出し
------------------------------------------*/

.modTxt02 {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 2px;
}

@media screen and (max-width: 767px) {
.modTxt02 {
    font-size: 16px;
}
}
/*------------------------------------------
  投稿用
------------------------------------------*/

.postGenre a, .postShop a {
    display: block;
    padding: 5px 0;
    border-radius: 30px;
}
/*
	投稿ジャンル
---------------------------*/

.postGenre {
    width: 150px;
    color: #fff;
    font-size: 13px;
    text-align: center;
    border-radius: 30px;
}
.postGenre a {
    background: #4c4b4c;
}
/*
	ショップ名
---------------------------*/

.postShop {
    width: 110px;
    color: #fff;
    font-size: 13px;
    text-align: center;
    border-radius: 30px;
}
.postShop.purple a {
    background: #a0b4e6;
}
.postShop.gold a {
    background: #d5b45c;
}
.postShop.green a {
    background: #51a199;
}
.postShop.all a {
    background: #B4B3B4;
}
/*
	日付
---------------------------*/

.postDate {
    display: table;
    color: #b4b4b4;
    font-size: 11px;
}
/*
	アーカイブリスト用
---------------------------*/

.postList {
    border-bottom: 1px solid #f1f1ef;
    overflow: hidden;
}
.postList:first-of-type {
    border-top: 1px solid #f1f1ef;
}
.postList .postShop, .postList .postDate {
    float: left;
}

@media screen and (min-width: 768px) {
.postList {
    padding: 25px 8px;
}
.postList .postShop {
    float: left;
    width: 11%;
    min-width: 100px;
}
.postList .postDate {
    float: left;
    width: 12%;
    margin-top: 7px;
    text-align: center;
}
.postList .postListTit {
    float: left;
    width: 60%;
    margin-top: 3px;
}
}

@media screen and (max-width: 767px) {
.postGenre,  .postShop {
    width: 110px;
    font-size: 12px;
    padding: 2px;
}
/*
		アーカイブリスト用
	---------------------------*/
	
.postList {
    padding: 15px 0;
}
.postList .postShop {
    margin-bottom: 10px;
}
.postList .postDate {
    float: right;
    width: auto !important;
    text-align: right;
    margin: 5px auto 10px 0;
}
.postList .postListTit {
    width: auto !important;
    clear: both !important;
    margin: 0 10px 15px;
}
}
/*------------------------------------------
  アコーディオンボタン　｜ → ─
------------------------------------------*/

.btnOpenLine {
    cursor: pointer;
    height: 30px;
    margin-bottom: 10px;
    position: relative;
}
.btnOpenLine span {
    width: 6px;
    height: 100%;
    background: #d5b45c;
    border-radius: 10px;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.btnOpenLine.up span {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}
