@charset "UTF-8";

.icatchWrap.typeA .thumb .img1 {
  background-image: url(../../img/blog/img_blog_pc_01.jpg);
}
@media all and (min-width: 681px) {
  .icatchWrap.typeA {
    height: 357px;
  }
}

/* カテゴリ一覧 */

.categoryList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.categoryListItem a {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.categoryListItem.isCurrent a {
  background-color: #c4c4c4;
  color: #000;
}

/* アーカイブ一覧 */

.subMenuArea {
  margin-top: 30px;
}

.archiveButton {
  cursor: pointer;
  position: relative;
  height: 50px;
}

.archiveList {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0;
  z-index: 50;
  overflow: hidden;
  transition: height 0.3s ease;
  opacity: 0;
  cursor: pointer;
}

.archiveListSelect{
  cursor: pointer;
  font-size:16px;
}

/*
.archiveList.isOpen {
  height: auto;
} */

.archiveList li,
.archiveListItem {
  border-bottom: 1px solid #000;
}

.archiveList li a,
.archiveListItem a,
.archiveList select {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
}

.archiveButton.w_btn01::after {
  transform: rotate(45deg);
  top: -5px;
}

.allButton a {
  height: 50px;
}

/* 投稿一覧 */

.blogListWrap {
  padding: 100px 0;
  background-color: #e8e8e8;
  margin-top: 40px;
}

.blogListItem {
  letter-spacing: 0;
  background-color: #fff;
  color: #000;
  position: relative;
}

.blogListItem .link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
}

.blogListItem .thumbnail {
  position: relative;
}

.blogListItem .thumbnailPhoto {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blogListItem .photo {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.blogListItem .category {
  padding: 5px 30px;
  background-color: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 20;
}

.blogListItem .contents {
  padding: 15px 20px 20px 20px;
}

.blogListItem .title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.666;
  margin-top: 10px;
}

.moreButton {
  margin-top: 80px;
}

.moreButton.type3 {
  margin-top: 60px;
}

.comingSoon{
    text-align: center;
    padding: 120px 0 0 0;
}

@media all and (min-width: 681px) {
  .categoryList {
    margin-top: 30px;
  }
  .categoryListItem {
    border-left: 1px solid #000;
    width: 200px;
    min-height: 28px;
  }
  .categoryListItem:nth-last-child(2) {
    border-right: 1px solid #000;
  }
  .categoryListItem a {
    transition: 0.3s ease;
  }
  .categoryListItem a:hover {
    background-color: #000;
    color: #fff;
  }

  .subMenuArea {
    display: flex;
    justify-content: center;
  }

  .allButton {
    margin-left: 45px;
  }

  .archiveList li a,
  .archiveListItem a {
    transition: 0.3s ease;
  }

  .archiveList li a:hover,
  .archiveListItem a:hover {
    color: #fff;
    background-color: #000;
  }

  .blogList {
    display: flex;
    flex-wrap: wrap;
  }
  .blogListItem .photo {
    transition: 0.3s ease;
  }
  .blogListItem .thumbnailPhoto:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    transition: background 0.3s ease;
    z-index: 15;
  }
  .blogListItem:hover .thumbnailPhoto:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    transition: background 0.3s ease;
  }
  .blogListItem:hover .photo {
    transform: scale(1.1, 1.1);
  }
  .blogListItem:hover .readButton {
    color: #fff;
    background-color: #000;
  }
  .blogListItem:hover .readButton:after {
    border-color: #fff;
  }

  .readButton {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    width: 200px;
    height: 40px;
    position: absolute;
    right: 0;
    bottom: 0;
  }

  /* 投稿一覧ーtypeA */
  .blogList.typeA {
    margin-left: -40px;
  }
  .blogList.typeA .blogListItem {
    /* width: 370px; */
    width: 100%;
    margin-top: 40px;
    margin-left: 40px;
    position: relative;
  }
  .blogList.typeA .blogListItem:first-child
  /* .blogList.typeA .blogListItem:nth-child(2),
  .blogList.typeA .blogListItem:nth-child(3) */ {
    margin-top: 0;
  }
  .blogList.typeA .blogListItem {
    display: flex;
  }
  .blogList.typeA .blogListItem .thumbnail {
    width: 300px;
  }
  .blogList.typeA .blogListItem .category {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    width: 100px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: -50px;
    bottom: 0;
    margin: auto;
  }
  .blogList.typeA .blogListItem .contents {
    padding-top: 50px;
    padding-left: 80px;
    width: 700px;
  }
  /* 投稿一覧ーtypeA　ここまで */

  /* 投稿一覧ーtypeB */
  .tagAreaList.typeB {
    justify-content: flex-start;
  }
  .blogList.typeB {
    margin-left: -40px;
  }
  .blogList.typeB .blogListItem {
    width: 370px;
    margin-top: 40px;
    margin-left: 40px;
  }
  .blogList.typeB .blogListItem:first-child,
  .blogList.typeB .blogListItem:nth-child(2),
  .blogList.typeB .blogListItem:nth-child(3) {
    margin-top: 0;
  }
  .blogList.typeB .blogListItem .thumbnail {
    height: 220px;
  }
  .blogList.typeB .blogListItem .thumbnailPhoto {
    height: 220px;
  }
  .blogList.typeB .blogListItem .category {
    font-size: 12px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: auto;
  }
  .blogList.typeB .blogListItem .contents {
    padding: 15px 60px 25px 60px;
  }
  .blogList.typeB .blogListItem .contents .date {
    font-size: 14px;
    text-align: center;
  }
  .blogList.typeB .blogListItem .title {
    margin-top: 15px;
  }
  .blogList.typeB .blogListItem .readButton {
    width: 50px;
    height: 50px;
  }
  .blogList.typeB .blogListItem .readButton:after {
    top: 0;
    bottom: 0;
    left: 0;
    right: 3px;
    margin: auto;
  }
  .moreButton.type2 .w_btn01 {
    font-size: 15px;
    width: 300px;
    height: 53px;
  }
  /* 投稿一覧ーtypeB　ここまで */
}

@media all and (max-width: 680px) {
  .icatchWrap .thumb .img1{
    background-image: none !important;
  }
  .spCategoryTitle {
    /* margin-top: 70px; */
  }
  .archiveButton,
  .categoryArea {
    margin-left: 15px;
    margin-right: 15px;
  }
  .spCategoryTitle,
  .archiveButton {
    font-size: 15px;
    font-weight: 500;
    width: auto;
    height: 40px;
    display: block;
    text-align: center;
    padding: 8px 0;
    height: auto;
  }
  .categoryList {
    border-top: 0;
    border-bottom: 0;
    justify-content: flex-start;
  }
  .categoryListItem {
    width: 50%;
    height: 40px;
  }
  .categoryListItem {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  .categoryListItem:nth-child(2n) {
    border-left: 0;
  }
  .categoryListItem a {
    font-size: 14px;
    letter-spacing: 0;
  }
  .subMenuArea {
    margin-top: 10px;
  }
  .archiveButton {
    border: 0;
  }
  .blogList {
    margin-left: 20px;
    margin-right: 20px;
  }
  .blogListWrap {
    padding-top: 30px;
    padding-bottom: 50px;
    margin-top: 15px;
  }
  .blogListItem .category {
    padding: 0 5px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 30px;
  }
  .blogListItem .contents {
    padding: 15px 10px;
  }
  .blogListItem .address {
    font-size: 16px;
  }
  .blogListItem .title {
    font-size: 15px;
    line-height: 1.733;
  }
  .moreButton {
    margin-top: 40px;
  }

  .blogList .blogListItem {
    display: flex;
    margin-top: 30px;
  }
  .blogList .blogListItem:first-child {
    margin-top: 0;
  }
  .blogList .blogListItem .thumbnail {
    width: 50%;
    height: 126px;
  }
  .blogList .blogListItem .contents {
    width: 50%;
  }
  .blogList .blogListItem .thumbnailPhoto {
    height: 98px;
    margin-top: 29px;
  }
  .blogList .blogListItem .readButton {
    font-size: 12px;
    font-weight: 500;
    width: 100%;
    height: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    text-align: center;
    padding: 4px 0;
    height: auto;
  }
  .blogList .blogListItem .contents {
    padding: 5px 10px 40px 10px;
    position: relative;
  }
  .blogList .blogListItem .date {
    font-size: 14px;
    line-height: 1;
  }
  .blogList .blogListItem .title {
    font-size: 14px;
    line-height: 1.571;
    margin-top: 5px;
  }

  /* 投稿一覧ーtypeA */
  /* .blogList.typeA .blogListItem {
    display: flex;
    margin-top: 30px;
  }
  .blogList.typeA .blogListItem:first-child {
    margin-top: 0;
  }
  .blogList.typeA .blogListItem .thumbnail {
    width: 50%;
    height: 126px;
  }
  .blogList.typeA .blogListItem .contents {
    width: 50%;
  }
  .blogList.typeA .blogListItem .thumbnailPhoto {
    height: 97px;
    margin-top: 29px;
  }
  .blogList.typeA .blogListItem .readButton {
    font-size: 12px;
    font-weight: 500;
    width: 100%;
    height: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .blogList.typeA .blogListItem .contents {
    padding: 5px 10px 40px 10px;
    position: relative;
  }
  .blogList.typeA .blogListItem .date {
    font-size: 14px;
    line-height: 1;
  }
  .blogList.typeA .blogListItem .title {
    font-size: 14px;
    line-height: 1.571;
    margin-top: 5px;
  } */
  /* /投稿一覧ーtypeA　ここまで */
  /* 投稿一覧ーtypeB */
  /* .blogList.typeB {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .blogList.typeB .blogListItem {
    width: 48%;
    margin-top: 20px;
    margin-left: 3.5%;
  }
  .blogList.typeB .blogListItem:first-child,
  .blogList.typeB .blogListItem:nth-child(2) {
    margin-top: 0;
  }
  .blogList.typeB .blogListItem:first-child,
  .blogList.typeB .blogListItem:nth-child(2n + 1) {
    margin-left: 0;
  }
  .blogList.typeB .blogListItem .readButton {
    padding: 0;
    width: 26px;
    height: 26px;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .blogList.typeB .blogListItem .thumbnail {
  }
  .blogList.typeB .blogListItem .category {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .blogList.typeB .blogListItem .thumbnailPhoto {
    height: 63px;
  }
  .blogList.typeB .blogListItem .contents {
    padding: 10px;
  }
  .blogList.typeB .blogListItem .date {
    font-size: 14px;
    line-height: 1;
  }
  .blogList.typeB .blogListItem .title {
    font-size: 14px;
    line-height: 1.571;
    letter-spacing: 0;
    margin-top: 5px;
  } */
  /* /投稿一覧ーtypeB　ここまで */
  .comingSoon{
    padding:40px 0 0 0;
  }
}

@media all and (max-width: 370px) {
}

/* 詳細ページ（AとB共通のデザイン）
***************************************************************/

.postSingle {
  padding-bottom: 100px;
}

.postHeader .date {
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  position: relative;
}

.postTitle {
  color: #000;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.84;
  margin-top: 5px;
}

.postHeader .date:before {
  content: "";
  background-color: #000;
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.postEditor {
  padding-bottom: 40px;
  border-bottom: 1px solid #000;
}

.singlePager {
  margin-top: 20px;
}

.singlePager:after {
  content: "";
  display: table;
  clear: both;
}

.singlePager .prev {
  float: left;
}

.singlePager .prev a {
  line-height: 1;
  padding-left: 30px;
  position: relative;
}

.singlePager .prev a:before,
.singlePager .next a:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  position: absolute;
  top: 1px;
  bottom: 0;
  margin: auto;
}

.singlePager .prev a:before {
  left: 0;
  transform: rotate(-135deg);
}
.singlePager .next a:before {
  right: 0;
  transform: rotate(45deg);
}

.singlePager .next {
  float: right;
}

.singlePager .next a {
  line-height: 1;
  padding-right: 30px;
  position: relative;
}

.sidebarTitle {
  background-color: #c4c4c4;
  color: #000;
  font-size: 16px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media all and (min-width: 681px) {
  a.sidebarTitle {
    transition: 0.3s ease;
  }
  a.sidebarTitle:hover {
    background-color: #000;
    color: #fff;
  }
  .postWrapper {
    display: flex;
    justify-content: space-between;
  }
  .singleArchiveList {
    display: block !important;
  }
  .sidebarContents {
    margin-top: 30px;
  }
  .sidebarContents:first-child {
    margin-top: 0;
  }
  .postContents {
    width: 650px;
  }
  .postSidebar {
    width: 250px;
  }
  .sidebarList {
    margin-top: 20px;
  }

  .singleArchiveList li,
  .sidebarListItem {
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
  }

  .singleArchiveList li:first-child,
  .sidebarListItem:first-child {
    margin-top: 0;
  }

  .singleArchiveList li a,
  .sidebarListItem a {
    padding-left: 15px;
    position: relative;
    transition: 0.3s;
  }

  .singleArchiveList li a:before,
  .sidebarListItem a:before {
    content: "";
    background-image: url(../../img/common/ico_arrow02.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 5px;
    height: 15px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    transition: 0.3s ease;
  }
  .singleArchiveList li a:hover,
  .sidebarListItem a:hover {
    color: #000;
  }

  .singleArchiveList li a:hover:before,
  .sidebarListItem a:hover:before {
    left: 3px;
  }
  .singlePager .prev a:before,
  .singlePager .next a:before {
    transition: 0.3s ease;
  }
  .singlePager .prev a:hover:before {
    left: -3px;
  }
  .singlePager .next a:hover:before {
    right: -3px;
  }
}

@media all and (max-width: 680px) {
  .postSingle {
    padding-bottom: 50px;
  }
  .postWrapper {
    margin-left: 15px;
    margin-right: 15px;
  }
  .postHeader .date {
    font-size: 16px;
  }
  .postTitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 2;
  }
  .singlePager {
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
  }
  .singlePager .prev a {
    padding-left: 15px;
  }
  .singlePager .next a {
    padding-right: 15px;
  }
  .postSidebar {
    margin-top: 30px;
  }
  .sidebarContents {
    margin-top: 10px;
  }
  .sidebarContents:first-child {
    margin-top: 0;
  }
  .sidebarTitle {
    font-size: 15px;
    font-weight: 500;
    display: block;
    text-align: center;
    padding: 8px 0;
    height: auto;
  }

  .singleCategoryList {
    border-top: 0;
    border-bottom: 0;
    display: flex;
    flex-wrap: wrap;
  }

  .singleCategoryList .sidebarListItem {
    border-left: 1px solid #c4c4c4;
    border-right: 1px solid #c4c4c4;
    border-bottom: 1px solid #c4c4c4;
    width: 50%;
    height: 40px;
  }

  .singleCategoryList .sidebarListItem:nth-child(2n) {
    border-left: 0;
  }

  .singleCategoryList .sidebarListItem a {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .singleCategoryList .sidebarListItem.isCurrent a {
    background-color: #c4c4c4;
    color: #000;
  }
  .singleArchiveButton {
    position: relative;
  }
  .singleArchiveButton:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
    margin: auto;
    width: 12px;
    height: 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transition: border 0.3s ease;
  }
  .singleArchiveButton.isOpen:after {
    transform: rotate(-135deg);
    top: 6px;
  }
  .singleArchiveList {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
  }
  .singleArchiveList.isOpen {
    height: auto;
  }
  .singleArchiveList li,
  .singleArchiveList .sidebarListItem {
    border-left: 1px solid #c4c4c4;
    border-right: 1px solid #c4c4c4;
    border-bottom: 1px solid #c4c4c4;
  }
  .singleArchiveList li a,
  .singleArchiveList .sidebarListItem a {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    position: relative;
  }
}

@media all and (max-width: 370px) {
}
