@charset "UTF-8";

/* .m-container
---------------------------------------------------------------------------- */
.m-container {
    margin: 0 auto;
    position: relative;
}

.m-page {
    padding: 160px 0 200px;
}

.m-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 30px;
}


@media screen and (max-width: 767px){

  .m-page {
      padding: 80px 0 160px;
  }


  .m-content {
    padding: 0 20px;
  }

}


/* .m-bg
---------------------------------------------------------------------------- */
.m-bg {
    width: 100%;
    overflow: hidden;
}

@media screen and (max-width: 767px){
    .m-bg {
    }
}


/* タイトル系
---------------------------------------------------------------------------- */
.m-heading {
  text-align: center;
  font-size: 5.2rem;
  color: #B21920;
  margin-bottom: 80px;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 767px){

  .m-heading {
    margin-bottom: 70px;
    font-size: 3.2rem;
  }
}


/* ボタン系
---------------------------------------------------------------------------- */
.m-book {
    max-width: 245px;
    margin: 0 auto;
    border: solid 1px #80070C;
}

.m-book a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #000;
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  min-height: 55px;
  padding: 16px 0;
  transition: .3s;
}


@media screen and (min-width: 768px) {

  .m-book a:hover {
    background: #80070C;
  }

}

/* パーツ系
---------------------------------------------------------------------------- */
.m-lead {
  font-size: 1.5rem;
  line-height: 1.8;
}

.m-lead + .m-lead {
  padding-top: 25px;
}

.m-lead a {
  text-decoration: underline;
  color: #000;
}

.m-lead strong {
  font-weight: bold;
  font-size: 1.8rem;
}


@media screen and (min-width: 768px){

  .m-lead a:hover {
    text-decoration: none;
  }

}

@media screen and (max-width: 767px){

  .m-lead {
    font-size: 1.3rem;
  }

  .m-lead + .m-lead {
    padding-top: 20px;
  }

  .m-lead strong {
    font-size: 1.5rem;
  }
}



/* 投稿
---------------------------------------------------------------------------- */


.m-archive {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px 40px;;
}

.m-post {
  margin-bottom: 40px;
  background: #fff;
}

.m-post a {
  position: relative;
  display: block;
  background: #fff;
  padding: 10px 10px 40px;
  text-decoration: none;
  color: #000;
  line-height: 1.3;
  transition: .3s;
}

.m-post span {
  position: absolute;
  background: #B79B57;
  min-height: 30px;
  padding: 8px 10px;
  line-height: 1;
  color: #fff;
  font-size: 1.4rem;
  z-index: 2;
  left: 0;
  top: 30px;
}

.m-post .thum {
  aspect-ratio: 3 / 2;
  width: 100%;
  object-fit: cover;
  margin-bottom: 20px;
}

.m-post .ttl {
  font-size: 1.6rem;
}

.m-post .lead {
  padding: 15px 0 0;
  font-size: 1.2rem;
  line-height: 1.8;
}

.m-post .list {
  margin-top: 15px;
  font-size: 1.4rem;
}

.m-post .list li + li {
  margin-top: 5px;
}


.m-other {
    padding: 80px 30px 100px;
}

.m-other-content {
    max-width: 940px;
    margin: 0 auto;
}

.m-other-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 40px auto 80px;
}


.m-other-head {
  font-family: "proxima-nova", sans-serif;
  font-weight: bold;
  font-size: 1.6rem;
}

.m-other-post .thumb {
  aspect-ratio: 16 / 10; /* 幅320:高さ200 */
  overflow: hidden;
  position: relative;
}

.m-other-post .thumb a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.m-other-post .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.m-other-post .ttl {
  padding: 10px 0 0;
}

.m-other-post .ttl a {
  text-decoration: none;
  color: #000;
}

.m-back {
    padding: 10px 0;
}

.m-back a {
  display: inline-block;
  text-decoration: none;
  position: relative;
  color: #000;
  font-size: 1.6rem;
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
  padding: 0 0 0 50px;
}

.m-back a::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  left: 0;
  top: -2px;
  background: url("../../images/common/ico_back.svg")no-repeat;
  background-size: 30px;
  background-position: center;
  transition: .3s;
}

@media screen and (min-width: 768px){

  .m-archive {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .m-archive::after{
    content:"";
    display: block;
    max-width: 320px;
    width: 32%;
  }

  .m-post {
    max-width: 320px;
    width: 32%;
  }

  .m-post a:hover {
    opacity: .8;
  }

  .m-other-post {
      max-width: 300px;
      width: 32%;
  }

  .m-other-flex::after{
    content:"";
    display: block;
    max-width: 300px;
    width: 32%;
  }

  .m-other-post:hover img {
    transform: scale(1.1);
  }

  .m-back a:hover::before {
    left: -5px;
    background: url("../../images/common/ico_back_on.svg")no-repeat;
    background-size: 30px;
    background-position: center;
  }

}

@media screen and (max-width: 767px){

  .m-post:last-child {
    margin-bottom: 0;
  }

  .m-other-post {
      width: 48%;
      margin-bottom: 4%;
  }

  .m-other {
    padding: 50px 20px 160px;
  }

  .m-other-flex {
    margin: 30px 0 60px;
  }

  .m-other-head {
    font-size: 1.4rem;
  }

}



/* その他
---------------------------------------------------------------------------- */
/*-- ページナビゲーション --*/
.m-pageNavi {
  font-family: "proxima-nova", sans-serif;
  font-weight: bold;
  font-style: normal;
    clear: both;
    text-align: center;
    position: relative;
    font-size: 1rem;
}
.m-pageNavi a {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  padding: 2px 0;
    margin: 0 2px;
    width: 16px;
    height: 16px;
    color: #000;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
    text-decoration: none;
    font-size: 1rem;
}
.m-pageNavi a:hover {
  opacity: .8;
}
.m-pageNavi .current {
  display: inline-block;
  padding: 1px 0;
  vertical-align: middle;
  margin: 0 2px;
  width: 16px;
  height: 16px;
  color: #fff;
  background-color: #000;
  border-radius: 50%;
  font-size: 1rem;
}
.m-pageNavi .prev,
.m-pageNavi .next {
  width: inherit;
  height: inherit;
  border: none;
  background: inherit;
  font-size: 1.4rem;
}

#activity .m-pageNavi .prev,
#activity .m-pageNavi .next {
  color: #fff;
}

.m-pageNavi .prev {
  padding: 0 0 0 25px;
  margin-right: 30px;
  background: url("../../images/common/ico_pager_prev.svg")no-repeat;
  background-size: 12px;
  background-position: left center;
}

#activity .m-pageNavi .prev {
  background: url("../../images/common/ico_pager_prev_wt.svg")no-repeat;
  background-size: 12px;
  background-position: left center;
}

.m-pageNavi .next {
  padding: 0 25px 0 0;
  margin-left: 30px;
  background: url("../../images/common/ico_pager_next.svg")no-repeat;
  background-size: 12px;
  background-position: right center;
}

#activity .m-pageNavi .next {
  background: url("../../images/common/ico_pager_next_wt.svg")no-repeat;
  background-size: 12px;
  background-position: right center;
}
