@charset "UTF-8";
/* Scss Document */
/* メディアクエリ
--------------------------------------*/
/* カラー
--------------------------------------*/
/* フォント
--------------------------------------*/
/* ベンダープレフィックス
--------------------------------------*/
/* 1000px・中央寄せ
--------------------------------------*/
/* 縦横比固定
--------------------------------------*/
/* flexbox
--------------------------------------*/
/* 疑似要素：サイズ可変画像
--------------------------------------*/
/* 自動トリミング画像
--------------------------------------*/
/* リストマーカー
--------------------------------------*/
/* 
li{
    @include listmarker($size: 5px, $color:#dddddd, $top: 10px);
}
*/
/*------------------------------------------------------------
 背景
------------------------------------------------------------*/
/* 白背景
--------------------------------------*/
/* モノグラム：模様白
--------------------------------------*/
/* モノグラム：模様青
--------------------------------------*/
/* ジグザグ：模様白
--------------------------------------*/
/* ジグザグ：模様灰
--------------------------------------*/
/* ジグザグ：模様青
--------------------------------------*/
/* 花：模様白
--------------------------------------*/
/* 花：模様青
--------------------------------------*/
/* 縦書き
--------------------------------------*/
/* おわり←はじめ */
/* はじめ→おわり */
/* 縦書き解除 */
/* Scss Document */
/* =============================
 post.css
================================ */
/* ===================================================================

 投稿タイプ共通

=================================================================== */
/* タグ
----------------------------------------------- */
span.tag {
  display: inline-block;
  margin-right: 1px;
  padding: 2px 8px;
  line-height: 15px;
  font-size: 1.2rem;
  background-color: #293855;
  color: #ffffff;
  text-align: center;
  /* 特定のタグを色分け */ }
  span.tag span.tag-XXX {
    background-color: #80bcba; }

/* 投稿日時
----------------------------------------------- */
.post-list time,
.post time {
  margin-right: 10px;
  color: #999999; }

/* no image
----------------------------------------------- */
figure.noimage {
  background-color: #dddddd;
  background-size: contain; }

/* ===================================================================

 parts：トップページ内ピックアップ

=================================================================== */
.post-list {
  width: calc(100% - 30px);
  margin: 30px auto;
  padding: 0 20px 10px;
  background-color: #FFFFFF; }

.post-list a {
  display: block;
  margin-bottom: 10px; }
  .post-list a:hover {
    background-color: rgba(0, 0, 0, 0.05); }
  .post-list a:nth-last-of-type(1) {
    margin-bottom: 0; }

.post-list article {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  padding: 10px 0;
  position: relative;
  border-bottom: 1px solid #DDDDDD; }

/* アイキャッチ
----------------------------------------------- */
.post-list article figure {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* ===== pc ===== */
  /* ============= */ }
  @media only screen and (min-width: 641px) {
    .post-list article figure {
      width: 60px;
      height: 60px;
      margin-left: 10px; } }

/* 日付・タグ・タイトル
----------------------------------------------- */
.post-list article .postcolumn {
  width: calc(100% - 60px);
  /* ===== pc ===== */
  /* ============= */ }
  @media only screen and (min-width: 641px) {
    .post-list article .postcolumn {
      width: calc(100% - 90px); } }

.post-list h3 {
  margin-top: 5px;
  font-size: 1.3rem;
  line-height: 1.3em;
  color: #777777;
  text-decoration: underline;
  /* ===== pc ===== */
  /* ============= */ }
  @media only screen and (min-width: 641px) {
    .post-list h3 {
      font-size: 1.5rem; } }

/* お知らせ一覧へ
----------------------------------------------- */
.post-list .goarchive {
  padding: 20px;
  text-align: center;
  font-size: 1.3rem; }
  .post-list .goarchive a {
    display: inline-block; }

/* ===================================================================

 アーカイブ・シングルなど

=================================================================== */
/* PC用レイアウト
--------------------------------------*/
/* ===== pc ===== */
@media only screen and (min-width: 641px) {
  .post-inner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto; }

  .post-main {
    width: calc(100% - 240px);
    margin: 0 auto;
    padding: 20px; }

  .post-side {
    width: 230px;
    margin-left: 10px; } }
/* ============= */
/* ===================================================================
 archive
=================================================================== */
.post {
  box-sizing: border-box; }
  .post h2 {
    color: #333333;
    text-align: center;
    border: none;
    background: none;
    box-shadow: none; }

/* リスト
----------------------------------------------- */
.post-archive .post-main a.postlink {
  display: block;
  /* ===== pc ===== */
  /* ============= */ }
  @media only screen and (min-width: 641px) {
    .post-archive .post-main a.postlink:hover {
      background-color: rgba(0, 0, 0, 0.05);
      opacity: 1; } }

.post-archive a.postlink article {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  padding: 20px 10px;
  position: relative;
  border-bottom: 1px solid #DDDDDD; }

/* サムネイル
----------------------------------------------- */
.post-archive a.postlink article figure {
  width: 70px;
  height: 70px;
  margin-right: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* ===== pc ===== */
  /* ============= */ }
  @media only screen and (min-width: 641px) {
    .post-archive a.postlink article figure {
      width: 90px;
      height: 90px; } }

/* 日付・タイトル・本文抜粋
----------------------------------------------- */
.post-archive a.postlink article .postcolumn {
  width: calc(100% - 90px);
  /* ===== pc ===== */
  /* ============= */ }
  @media only screen and (min-width: 641px) {
    .post-archive a.postlink article .postcolumn {
      width: calc(100% - 110px); } }

.post-archive a.postlink article h3 {
  margin: 5px 0;
  font-size: 2.0rem;
  font-weight: 500; }

/* 本文抜粋 */
.post-archive a.postlink p.lead {
  color: #9B9B9B;
  font-size: 1.4rem; }

/* ===================================================================
 single
=================================================================== */
.post-single h2 {
  margin-bottom: 0; }

.post-single header.post-h {
  margin-bottom: 30px;
  padding: 10px 0;
  border-bottom: 1px solid #DDDDDD; }
  .post-single header.post-h h3 {
    margin-top: 10px;
    font-size: 2.2rem;
    line-height: 1.5em; }

/* 本文 */
.post-single article {
  border-bottom: none;
  padding: 10px; }

.post-single .posttext {
  padding-bottom: 30px; }
  .post-single .posttext p {
    margin-bottom: 1em; }
  .post-single .posttext br {
    margin-bottom: 0.5em; }
  .post-single .posttext img {
    display: block;
    max-width: 100%;
    margin: 1em auto; }

/*------------------------------------------------------------
 サムネイル付き 前へ・次へ
------------------------------------------------------------*/
.postnavi {
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 100px; }
  .postnavi .nextprev {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: stretch;
    align-items: stretch;
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD; }

.postnavi .nextprev a {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
  width: 50%;
  position: relative; }
  .postnavi .nextprev a h4 {
    padding: 15px;
    color: #999999;
    position: relative; }
    .postnavi .nextprev a h4:before {
      content: "";
      display: block;
      width: 6px;
      height: 6px;
      border-top: 1px solid #999999;
      border-right: 1px solid #999999;
      position: absolute;
      top: 50%;
      margin-top: -3px; }
  .postnavi .nextprev a.prev h4:before {
    left: 5px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg); }
  .postnavi .nextprev a.next h4:before {
    right: 5px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg); }

/* .postnavi .nextprev a */
.postnavi .nextprev a.prev:after,
.postnavi .nextprev .prev-last {
  content: "";
  width: 1px;
  height: calc(100% - 10px);
  border-right: 1px solid #dddddd;
  position: absolute;
  top: 5px;
  right: 0; }

.postnavi .nextprev a.next {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse; }

/* 最初の記事・最後の記事
----------------------------------------------- */
.postnavi .nextprev .prev-last,
.postnavi .nextprev .next-last {
  display: table;
  width: 50%;
  height: 70px;
  position: relative; }

/* サムネイル
----------------------------------------------- */
.postnavi .nextprev a figure {
  width: 70px;
  height: 70px;
  margin: 5px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: all 0.2s; }
.postnavi .nextprev a:hover figure {
  opacity: 0.8; }

/* 一覧へ戻る
----------------------------------------------- */
.postnavi a.arrow {
  display: block;
  padding: 5px;
  text-align: center;
  font-size: 1.5rem;
  color: #999999;
  border-bottom: 1px solid #DDDDDD; }
  .postnavi a.arrow:before {
    border-width: 1px;
    border-color: #999999;
    left: 50%;
    margin-left: -60px; }

/* ===================================================================

 sidebar

=================================================================== */
.post-side {
  padding: 40px 20px;
  background-color: #F7F7F7;
  box-sizing: border-box;
  /* ===== pc-tab ===== */
  /* ============= */
  /* 項目タイトル */ }
  @media only screen and (min-width: 641px) {
    .post-side {
      padding-top: 0;
      background: none; } }
  .post-side section {
    margin-bottom: 30px;
    background: none; }
    .post-side section:nth-last-of-type(1) {
      margin-bottom: 0; }
  .post-side h3 {
    margin-bottom: 10px;
    padding: 10px 0;
    text-align: center;
    border-top: 2px solid #293855;
    border-bottom: 1px solid #293855; }

/* .post-slide */
/* タームリスト
----------------------------------------------- */
.tarmlist a {
  padding-top: 5px;
  padding-bottom: 5px; }
  .tarmlist a:before {
    border-color: #293855; }
.tarmlist li span {
  margin-left: 10px;
  color: #929292;
  font-size: 1.3rem; }

/* 最近の投稿
----------------------------------------------- */
.post-side .recentarticle h3 {
  margin-bottom: 0; }
.post-side .recentarticle li {
  border-bottom: 1px dotted #DBDBDB;
  /* 投稿日 */
  /* 記事タイトル */ }
  .post-side .recentarticle li a {
    display: block;
    padding: 10px; }
    .post-side .recentarticle li a:hover {
      background-color: rgba(0, 0, 0, 0.05); }
  .post-side .recentarticle li time {
    display: block; }
  .post-side .recentarticle li h4 {
    display: block;
    margin-top: 5px;
    padding: 2px 0;
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    position: relative;
    transition: all 0.2s linear; }

/* .post-side .recentarticle */
/* 年別アーカイブ
----------------------------------------------- */
.post-side .yeararchive {
  /* 矢印 */ }
  .post-side .yeararchive a {
    display: block;
    padding: 4px 0 4px 20px;
    text-decoration: none;
    color: #333333;
    position: relative;
    transition: all .2s linear; }
  .post-side .yeararchive li a {
    position: relative; }
    .post-side .yeararchive li a:before {
      content: "";
      width: 6px;
      height: 6px;
      border-right: 1px solid #293855;
      border-top: 1px solid #293855;
      position: absolute;
      top: 50%;
      left: 0px;
      margin: -4px 0 0 0;
      transition: all 0.2s linear;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg); }
    .post-side .yeararchive li a:hover:before {
      left: 5px; }

/* .post-side .yeararchive */
/*------------------------------------------------------------
 ページャー
------------------------------------------------------------*/
.pager {
  margin: 20px auto;
  padding: 10px;
  font-family: "Montserrat" !important;
  text-align: center;
  text-decoration: none; }
  .pager .page {
    padding: 0; }
  .pager span.current,
  .pager span.extend,
  .pager a,
  .pager a:hover {
    display: inline-block !important;
    margin: 3px 3px 3px 0 !important;
    font-size: 1.4rem; }

.pager .wp-pagenavi {
  float: none !important; }
  .pager .wp-pagenavi a:link {
    border: 1px solid #dddddd !important;
    border-radius: 0 !important; }
  .pager .wp-pagenavi a:hover {
    border: 1px solid #dddddd !important;
    color: #293855 !important;
    background: #dddddd !important; }
  .pager .wp-pagenavi span.current {
    border: 1px solid #293855 !important;
    background: #293855 !important;
    border-radius: 0 !important; }
  .pager .wp-pagenavi span.pages {
    font-style: normal !important;
    border: none !important;
    border-radius: 0 !important; }
  .pager .wp-pagenavi span.extend {
    border: none !important;
    border-radius: 0 !important; }

/* ===================================================================

 きもの相談室

=================================================================== */
.advice {
  background-image: url(../img/bg/flower_b.png);
  background-repeat: repeat;
  background-color: #fdfdfd;
  /* ===== pc ===== */
  /* ============= */
  /* header.posth */ }
  @media only screen and (min-width: 960px) {
    .advice {
      background-attachment: fixed; } }
  .advice header.posth {
    margin-bottom: 70px;
    background-image: url(../img/bg/setsugekka.png);
    background-color: #2c4c7a; }
    .advice header.posth .inner {
      position: relative; }
    .advice header.posth h1, .advice header.posth h1 a {
      color: #ffffff; }
    .advice header.posth h2 {
      color: #ffffff;
      margin: 20px 0; }
    .advice header.posth p {
      color: #ffffff;
      /* ===== sp ===== */
      /* ============= */ }
      @media only screen and (max-width: 640px) {
        .advice header.posth p {
          text-align: left; } }

/* .t_advice */
/*------------------------------------------------------------
 よくあるご質問：archives・single共通
------------------------------------------------------------*/
.advice-arc article,
.advice-sng article.fullfaq {
  text-align: left;
  border: 2px solid #2c4c7a;
  background-color: #ffffff;
  position: relative;
  /* 質問 */
  /* 回答 */ }
  .advice-arc article h3,
  .advice-arc article .text,
  .advice-sng article.fullfaq h3,
  .advice-sng article.fullfaq .text {
    position: relative;
    /* Q&A */ }
    .advice-arc article h3:before,
    .advice-arc article .text:before,
    .advice-sng article.fullfaq h3:before,
    .advice-sng article.fullfaq .text:before {
      font-size: 9.0rem;
      color: rgba(41, 56, 85, 0.1);
      position: absolute;
      left: -20px;
      top: -60px; }
  .advice-arc article h3,
  .advice-sng article.fullfaq h3 {
    min-height: 5.5em;
    font-size: 2.0rem;
    font-weight: normal;
    color: #2c4c7a;
    letter-spacing: 0;
    /* ===== sp-tab ===== */
    /* ============= */ }
    @media screen and (max-width: 900px) {
      .advice-arc article h3,
      .advice-sng article.fullfaq h3 {
        min-height: auto; } }
    .advice-arc article h3:before,
    .advice-sng article.fullfaq h3:before {
      content: "Q"; }
  .advice-arc article .text,
  .advice-sng article.fullfaq .text {
    margin-top: 30px;
    font-size: 1.4rem;
    position: relative; }
    .advice-arc article .text:before,
    .advice-sng article.fullfaq .text:before {
      content: "A"; }

/* .advice article */
/*------------------------------------------------------------
 よくあるご質問：archives
------------------------------------------------------------*/
.advice-arc {
  max-width: 1000px;
  margin: 0 auto;
  margin: 50px auto 40px;
  padding: 0 20px;
  /* ===== sp-tab ===== */
  /* ============= */
  /* article */ }
  @media screen and (max-width: 900px) {
    .advice-arc {
      margin: 30px auto; } }
  .advice-arc article {
    width: calc((100% - 41px) / 3);
    margin: 0 20px 20px 0;
    padding: 30px;
    z-index: 10;
    /* ===== sp-tab ===== */
    /* ============= */ }
    .advice-arc article:nth-of-type(3n) {
      margin-right: 0; }
    @media screen and (max-width: 900px) {
      .advice-arc article {
        width: 100%;
        margin: 0 0 20px 0; } }
    .advice-arc article .btn_b {
      margin: 20px auto 0;
      padding: 5px 40px;
      border-radius: 20px;
      border-color: #2c4c7a;
      background-color: #2c4c7a; }
      .advice-arc article .btn_b:hover {
        color: #2c4c7a;
        background: none; }

/* .advice-arc */
/*------------------------------------------------------------
 よくあるご質問：single
------------------------------------------------------------*/
.advice-sng {
  /* メイン記事
  ----------------------------------------------- */
  /* .fullfaq */
  /* 関連記事3件
  ----------------------------------------------- */
  /* .random */ }
  .advice-sng header.posth .inner:before {
    content: none; }
  .advice-sng article.fullfaq {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 70px;
    padding: 40px;
    border: none;
    /* ===== sp-tab ===== */
    /* ============= */
    /* 質問 */ }
    @media screen and (max-width: 800px) {
      .advice-sng article.fullfaq {
        width: calc(100% - 40px);
        margin: 0 20px 60px 20px; } }
    .advice-sng article.fullfaq h3, .advice-sng article.fullfaq .text {
      min-height: inherit;
      padding-left: 60px;
      /* ===== sp ===== */
      /* ============= */ }
      @media only screen and (max-width: 640px) {
        .advice-sng article.fullfaq h3, .advice-sng article.fullfaq .text {
          padding-left: 0; } }
    .advice-sng article.fullfaq h3 {
      font-size: 2.0rem;
      /* ===== sp ===== */
      /* ============= */ }
      @media only screen and (max-width: 640px) {
        .advice-sng article.fullfaq h3 {
          font-size: 1.8rem; } }
  .advice-sng .random {
    padding: 50px 0;
    background-image: url(../img/bg/monogram_w.png);
    background-repeat: repeat;
    background-color: #2c4c7a;
    /* ===== pc ===== */
    /* ============= */
    /* .advice-arc */ }
    @media only screen and (min-width: 960px) {
      .advice-sng .random {
        background-attachment: fixed; } }
    .advice-sng .random h2 {
      color: #ffffff;
      text-align: center; }
    .advice-sng .random .advice-arc {
      /* article */ }
      .advice-sng .random .advice-arc article {
        border: none; }
        .advice-sng .random .advice-arc article h3 {
          min-height: 5.5em;
          font-size: 2.0rem; }
    .advice-sng .random a.back {
      border-color: #ffffff; }
      .advice-sng .random a.back:hover {
        color: #ffffff; }

/* .advice-single */
/*------------------------------------------------------------
 きもの相談室：ご相談の方法
------------------------------------------------------------*/
.advice-contact {
  padding: 50px 0;
  text-align: center;
  background-image: url(../img/bg/monogram_w.png);
  background-repeat: repeat;
  background-color: #2c4c7a;
  /* ===== pc ===== */
  /* ============= */
  /* ===== sp-tab ===== */
  /* ============= */
  /* 各項目 */ }
  @media only screen and (min-width: 960px) {
    .advice-contact {
      background-attachment: fixed; } }
  @media screen and (max-width: 800px) {
    .advice-contact {
      padding: 20px; } }
  .advice-contact h2 {
    max-width: 1000px;
    margin: 0 auto;
    margin: 0 auto 30px;
    padding: 20px;
    font-family: 'Crimson Text',"游明朝",YuMincho, 'Genmin',"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN", "HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
    color: #ffffff;
    font-size: 3.0rem;
    border-bottom: 1px solid #ffffff; }
  .advice-contact .flex2 {
    max-width: 1000px;
    margin: 0 auto; }
  .advice-contact article {
    padding: 30px;
    color: #ffffff;
    /* ===== sp-tab ===== */
    /* ============= */
    /* アイコン */
    /* フリーダイヤル */
    /* /.advice-tel */ }
    @media screen and (max-width: 800px) {
      .advice-contact article {
        width: 100%;
        max-width: 600px;
        margin: 20px auto;
        padding: 0; } }
    .advice-contact article img.ico {
      width: 80px;
      height: 80px; }
    .advice-contact article h3 {
      font-size: 2.5rem; }
    .advice-contact article p {
      margin: 25px 0 30px;
      text-align: left; }
    .advice-contact article dl.advice-tel {
      margin: 0 30px;
      padding: 20px;
      border-top: 1px solid #ffffff;
      border-bottom: 1px solid #ffffff;
      /* ===== sp-tab ===== */
      /* ============= */
      /* dd */ }
      .advice-contact article dl.advice-tel a {
        color: #ffffff; }
      @media screen and (max-width: 800px) {
        .advice-contact article dl.advice-tel {
          margin: 0; } }
      .advice-contact article dl.advice-tel dd {
        margin-top: 10px;
        /* em */ }
        .advice-contact article dl.advice-tel dd em {
          display: inline-block;
          padding-left: 60px;
          font-size: 3.5rem;
          position: relative; }
          .advice-contact article dl.advice-tel dd em:before {
            content: "";
            display: block;
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center;
            width: 50px;
            height: 30px;
            background-image: url(../img/ico/tel-freedial.png);
            position: absolute;
            top: calc(50% - 15px);
            left: 0; }
          .advice-contact article dl.advice-tel dd em small {
            font-size: 1.1rem;
            position: absolute;
            top: -2px;
            right: 0; }
        .advice-contact article dl.advice-tel dd span {
          display: block;
          font-size: 1.4rem; }
    .advice-contact article a.btn_w {
      font-size: 1.8rem; }

/* .advice-contact */
/*------------------------------------------------------------
 XXX
------------------------------------------------------------*/
/* XXX
----------------------------------------------- */
/* ----- XXX ----- */

/*# sourceMappingURL=post.css.map */
