﻿/* =========================================================
layout
========================================================= */
/* BLOG */
.page-blog .main {
  padding-bottom: 72px;
}

.page-blog .main a {
  text-decoration: none;
  transition: all .5s ease;
}

@media (max-width: 750px) {
  .page-blog .main a {
    transition: none;
  }
  .page-blog .main a:hover {
    opacity: 1;
  }
}

.cont-wrap {
  margin: 66px 0 0;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.left-block {
  width: 720px;
  padding: 0;
}

@media (max-width: 750px) {
  .cont-wrap {
    margin: 54px 0 0;
    display: block;
  }
  .left-block {
    width: 100%;
    padding: 0 55px;
  }
}

.archive-ttl {
  margin: 0 0 17px;
  font-size: 21px;
  font-weight: bold;
}

.box-list {
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.box-item {
  width: 230px;
  margin: 0 15px 30px 0;
}

.box-item:nth-child(3n) {
  margin-right: 0;
}

.box-item .image {
  width: 230px;
  height: 230px;
  overflow: hidden;
  position: relative;
}

.box-item .image-in img {
  width: 230px;
  height: 230px;
}

.box-item .hover {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'SairaSemiCondensed-Regular';
  opacity: 0;
  transition: all .5s ease;
}

.box-item .hover p {
  width: 160px;
  border: 3px solid #fff;
  box-sizing: border-box;
  text-align: center;
  font-size: 20px;
  line-height: 35px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.box-item .image:hover .hover {
  opacity: 1;
}

.box-item .date {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 13px;
}

.box-item .shop {
  margin: 7px 0 0;
  font-size: 13px;
  line-height: 20px;
  transition: all .5s ease;
}

.box-item .shop:hover {
  opacity: .8;
}

.box-item .title {
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  transition: all .5s ease;
}

.box-item .title:hover {
  opacity: .7;
}

@media (max-width: 750px) {
  .archive-ttl {
    font-size: 30px;
  }
  .box-item {
    width: -webkit-calc(50% - 20px);
    width: calc(50% - 20px);
    margin: 0 40px 55px 0;
  }
  .box-item:nth-child(3n) {
    margin-right: 40px;
  }
  .box-item:nth-child(even) {
    margin-right: 0;
  }
  .box-item .image {
    width: 100%;
    height: 100%;
  }
  .box-item .image-in img {
    width: 100%;
    height: 100%;
  }
  .box-item .hover {
    opacity: 0;
    transition: none;
  }
  .box-item .date {
    margin: 17px 0 0;
  }
  .box-item .shop {
    margin: 5px 0 0;
    line-height: 23px;
    transition: none;
  }
  .box-item .shop:hover {
    opacity: 1;
  }
  .box-item .title {
    margin: 5px 0 0;
    font-size: 22px;
    line-height: 28px;
    transition: none;
  }
  .box-item .title:hover {
    opacity: 1;
  }
}

.right-block {
  width: 230px;
}

.page-blog .right-block a:hover {
  opacity: .8;
}

.right-block .shop {
  margin: 47px 0 0;
}

.section-ss-ttl {
  width: 100%;
  padding: 0 0 2px 0;
  border-bottom: 1px solid #000;
  font-family: 'SairaSemiCondensed-Regular';
  font-size: 28px;
  line-height: 28px;
  font-weight: bold;
}

.accordion {
  margin: 20px 0 0;
  border-top: 1px solid #231815;
}

.accordion > * {
  width: 230px;
  box-sizing: border-box;
}

.accordion a {
  width: 100%;
  display: block;
  padding: 0 0 0 10px;
  font-size: 13px;
  line-height: 50px;
  border: 1px solid #231815;
  border-top: none;
  position: relative;
}

.trigger:after {
  content: "";
  width: 13px;
  height: 13px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
  position: absolute;
  top: 17px;
  right: 16px;
}

.trigger.active:after {
  transform: rotate(-135deg);
  top: 23px;
}

.child {
  display: none;
}

.child a {
  border-top: none;
}

@media (max-width: 750px) {
  .right-block {
    width: 100%;
    margin: 110px 0 0;
    padding: 0 50px;
  }
  .right-block .shop {
    margin: 45px 0 0;
  }
  .section-ss-ttl {
    font-size: 42px;
    line-height: 42px;
  }
  .accordion {
    margin: 20px 0 0;
  }
  .accordion > * {
    width: 100%;
  }
  .accordion a {
    padding: 0 0 0 15px;
    font-size: 30px;
    line-height: 70px;
  }
  .trigger:after {
    width: 18px;
    height: 18px;
    border-right: 3px solid #000;
    border-bottom: 3px solid #000;
    position: absolute;
    top: 24px;
    right: 16px;
  }
  .trigger.active:after {
    transform: rotate(-135deg);
    top: 33px;
  }
}

/* BLOG DETAIL */
.page-blog-detail .main {
  padding-bottom: 80px;
}

.page-blog-detail .cont-wrap {
  margin-top: 47px;
}

.page-blog-detail .meta {
  padding: 0;
  position: relative;
}

.page-blog-detail .category.shop {
  display: inline-block;
  padding: 0 10px;
  background: #000;
  text-align: center;
  font-size: 13px;
  line-height: 32px;
  color: #fff;
  font-weight: bold;
}

@media (max-width: 750px) {
  .page-blog-detail .cont-wrap {
    margin-top: 56px;
  }
  .page-blog-detail .right-block {
    margin-top: 93px;
  }
}

.meta-date {
  font-size: 13px;
  line-height: 13px;
  font-weight: bold;
  position: absolute;
  top: 6px;
  right: 0;
}

.article-ttl {
  margin: 27px 0 0;
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
}

.article-in {
  width: 600px;
  margin: 31px 0 0 60px;
}

.article-in > * {
  margin: 20px 0 0;
}

.article-in > *:first-child {
  margin-top: 0;
}

@media (max-width: 750px) {
  .category.shop {
    font-size: 18px;
    line-height: 35px;
  }
  .meta-date {
    font-size: 22px;
    line-height: 22px;
    top: 12px;
  }
  .article-ttl {
    margin-top: 29px;
    font-size: 36px;
    line-height: 44px;
  }
  .article-in {
    width: inherit;
    margin: 25px 0 0 0;
    font-size: 28px;
    line-height: 51px;
  }
  .article-in > * {
    margin: 30px 0 0;
  }
  .article-in .img img {
    width: 100%;
  }
}

.sp-shoplink {
  display: none;
}

.pc-shoplink {
  display: block;
  margin: 0 0 48px;
}

.pc-shoplink a {
  display: block;
  width: 230px;
  margin: 10px 0 0;
  padding: 0 12px;
  background: #000;
  line-height: 50px;
  font-size: 13px;
  color: #fff;
  font-weight: bold;
  position: relative;
  box-sizing: border-box;
}

.pc-shoplink a:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 20px;
  right: 15px;
}

.shoplink-name {
  font-size: 22px;
  line-height: 26px;
  font-weight: bold;
}

.btn {
  height: 32px;
  margin: 175px 0 0;
  position: relative;
}

.btn > * {
  display: block;
  width: 120px;
  padding: 0 10px;
  background: #000;
  font-size: 13px;
  line-height: 32px;
  color: #fff !important;
  font-weight: bold;
  box-sizing: border-box;
}

.btn > *:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  position: absolute;
  top: 9px;
}

.btn-back {
  margin: 0;
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
}

.btn-back:after {
  transform: rotate(-135deg);
  left: 10px;
}

.btn-next {
  text-align: left;
  position: absolute;
  top: 0;
  right: 0;
}

.btn-next:after {
  transform: rotate(45deg);
  right: 10px;
}

@media (max-width: 750px) {
  .pc-shoplink {
    display: none;
  }
  .sp-shoplink {
    display: block;
    margin: 170px 0 0;
  }
  .sp-shoplink a {
    width: 100%;
    margin: 17px 0 0;
    display: block;
    background: #000;
    text-align: center;
    font-size: 32px;
    line-height: 70px;
    font-weight: bold;
    color: #fff;
  }
  .shoplink-name {
    font-size: 36px;
    line-height: 40px;
    text-align: center;
  }
  .btn {
    height: 70px;
    margin-top: 59px;
  }
  .btn > * {
    width: 250px;
    padding: 0 30px;
    font-size: 32px;
    line-height: 70px;
  }
  .btn > *:after {
    width: 28px;
    height: 28px;
    top: 21px;
  }
  .btn .btn-back:after {
    left: 28px;
  }
  .btn .btn-next:after {
    right: 28px;
  }
}

/* BLOG SHOP */
.shopinfo {
  width: 100%;
  margin: 50px 0 0;
  padding: 55px 0 42px;
  position: relative;
  z-index: 1;
}

.shopinfo:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #fff0f0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.shopinfo-in {
  width: 1000px;
}

.shopinfo-name {
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
}

.shopinfo-wrap {
  margin: 17px 0 0;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.shopinfo-left img {
  width: 240px;
  height: 190px;
}

.shopinfo-center {
  width: 380px;
}

.shopinfo-center tr:not(:last-child) {
  border-bottom: 1px solid #000;
}

.shopinfo-center th {
  padding: 15px;
  text-align: left;
  font-weight: normal;
  font-weight: bold;
  vertical-align: middle;
  border-right: 1px solid #000;
}

.shopinfo-center td {
  padding: 15px;
}

.shopinfo-center .btn-map {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.googlemap {
  width: 275px;
  height: 205px;
  border: 15px solid #fff;
  box-sizing: border-box;
}

.googlemap #map {
  width: 100%;
  height: 100%;
}

.btn-map {
  display: block;
  width: 265px;
  margin: 10px auto 0;
  padding: 0 10px;
  background: #000;
  line-height: 32px;
  font-size: 13px;
  font-weight: bold;
  color: #fff !important;
  box-sizing: border-box;
  position: relative;
}

.btn-map:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 9px;
  right: 10px;
  transform: rotate(45deg);
}

@media (max-width: 750px) {
  .shopinfo {
    width: 100%;
    background: #fff0f0;
    margin: 37px 0 0;
    padding: 44px 55px 58px;
    position: relative;
    z-index: 1;
  }
  .shopinfo:before {
    content: none;
  }
  .shopinfo-in {
    width: 100%;
  }
  .shopinfo-name {
    font-size: 32px;
    line-height: 45px;
  }
  .shopinfo-wrap {
    margin: 42px 0 0;
    display: block;
  }
  .shopinfo-left img {
    width: 100%;
    height: 100%;
  }
  .shopinfo-center {
    width: 100%;
    margin: 43px 0 0;
    font-size: 26px;
    line-height: 39px;
  }
  .shopinfo-center tr {
    min-height: 115px;
  }
  .shopinfo-center tr:not(:last-child) {
    border-bottom: 1px solid #000;
  }
  .shopinfo-center th {
    width: 173px;
    box-sizing: border-box;
    text-align: center;
  }
  .shopinfo-center td {
    padding: 30px 40px;
    box-sizing: border-box;
  }
  .shopinfo-center .btn-map {
    display: block;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
    background: #fff;
  }
  .btn-map {
    display: block;
    width: 380px;
    margin: 15px auto 0;
    padding: 0 12px;
    line-height: 52px;
    font-size: 26px;
    box-sizing: border-box;
    position: relative;
  }
  .btn-map:after {
    content: "";
    width: 18px;
    height: 18px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    top: 17px;
    right: 19px;
  }
  .shopinfo-right {
    display: none;
  }
}
