﻿/* =========================================================
layout
========================================================= */
/* NEWS */
.page-blog .main {
  padding-bottom: 72px;
}

.page-blog .main a {
  text-decoration: none;
  transition: all .5s ease;
}

.page-blog .main a:hover {
  opacity: .8;
}

@media (max-width: 750px) {
  .page-blog .main a {
    transition: none;
  }
  .page-blog .main a:hover {
    opacity: 1;
  }
}

.cont-wrap {
  margin: 51px 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;
}

.section-ttl {
  width: 100%;
  padding: 0 0 4px 0;
  border-bottom: 1px solid #000;
  font-family: 'SairaSemiCondensed-Regular';
  font-size: 38px;
  line-height: 38px;
  font-weight: bold;
}

.category-link {
  margin: 24px 0 40px;
}

.category-link-in {
  padding: 0 6px 0 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.category-link-in li {
  font-size: 13px;
  line-height: 13px;
  border-right: 1px solid #000;
}

.category-link-in li:first-child {
  border-left: 1px solid;
}

.category-link-in a {
  display: block;
  padding: 0 19px;
}

@media (max-width: 750px) {
  .cont-wrap {
    margin: 43px 0 0;
    display: block;
  }
  .left-block {
    width: 100%;
    padding: 0 55px;
  }
  .section-ttl {
    font-size: 48px;
    line-height: 48px;
  }
  .category-link {
    margin: 31px 0 45px;
  }
  .category-link-in {
    padding: 0;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .category-link-in li {
    font-size: 22px;
    line-height: 22px;
  }
  .category-link-in a {
    padding: 0 33px;
  }
}

.archive-ttl {
  margin: 0 0 27px;
  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 41px 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 .category {
  display: inline-block;
  margin: 10px 0 0;
  padding: 0 10px;
  font-size: 13px;
  line-height: 22px;
  font-weight: bold;
  color: #fff;
  transition: all .5s ease;
}

.box-item .category.news {
  background: #000;
}

.box-item .category.campaign {
  background: #858585;
}

.box-item .title {
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  transition: all .5s ease;
}

.box-item a:hover {
  text-decoration: none;
}

.box-item a:hover .date, .box-item a:hover .category, .box-item a:hover .title {
  opacity: .7;
}

@media (max-width: 750px) {
  .archive-ttl {
    font-size: 30px;
  }
  .no-news {
    margin-top: 45px;
    font-size: 27px;
  }
  .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 {
    transition: none;
  }
  .box-item .date {
    margin: 17px 0 0;
  }
  .box-item .category {
    display: inline-block;
    margin: 15px 0 0;
    padding: 0 14px;
    font-size: 16px;
    line-height: 25px;
  }
  .box-item .category.news {
    background: #000;
  }
  .box-item .category.campaign {
    background: #858585;
  }
  .box-item .title {
    margin: 11px 0 0;
    font-size: 22px;
    line-height: 28px;
    transition: none;
  }
  .box-item .title:hover {
    opacity: 1;
  }
  .box-item a:hover .date, .box-item a:hover .category, .box-item a:hover .title {
    opacity: 1;
  }
}

.pager {
  margin: 122px 0 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.pager a {
  transition: all .5s ease;
}

.pager a:hover {
  opacity: .8;
}

.pager-list {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.pager-btn a {
  width: 30px;
  height: 30px;
  display: block;
  background: #000;
  position: relative;
}

.pager-btn a:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  top: 9px;
}

.pager-btn.prev {
  margin-right: 20px;
}

.pager-btn.prev a:after {
  transform: rotate(-45deg);
  left: 11px;
}

.pager-btn.next {
  margin-left: 20px;
}

.pager-btn.next a:after {
  transform: rotate(135deg);
  right: 11px;
}

.pager-num {
  position: relative;
  font-size: 13px;
  border-right: 1px solid #000;
}

.pager-num:first-child {
  border-left: 1px solid #000;
}

.pager-num a {
  width: 46px;
  display: block;
  text-align: center;
}

.pager-num .is-current {
  font-weight: bold;
  pointer-events: none;
}

@media (max-width: 750px) {
  .pager {
    margin: 52px 0 0;
  }
  .pager a {
    transition: none;
  }
  .pager a:hover {
    opacity: 1;
  }
  .pager-num {
    border-right: 1px solid #000;
    font-size: 22px;
  }
  .pager-num:first-child {
    border-left: 1px solid #000;
  }
  .pager-num a {
    width: 77px;
  }
  .pager-btn a {
    width: 50px;
    height: 50px;
  }
  .pager-btn a:after {
    width: 20px;
    height: 20px;
    top: 16px;
  }
  .pager-btn.prev {
    margin-right: 35px;
  }
  .pager-btn.prev a:after {
    left: 19px;
  }
  .pager-btn.next {
    margin-left: 35px;
  }
  .pager-btn.next a:after {
    right: 19px;
  }
}

.right-block {
  width: 230px;
  padding: 12px 0 0;
}

.right-block .section:nth-child(2) {
  margin-top: 50px;
}

.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;
  text-decoration: none;
  transition: all .5s ease;
}

.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 .section:nth-child(2) {
    margin-top: 56px;
  }
  .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;
  }
}

/* NEWS DETAIL */
.page-news-detail .main {
  padding-bottom: 80px;
}

.page-news-detail .cont-wrap {
  margin-top: 47px;
}

.page-news-detail .meta {
  margin: 40px 0 0;
  padding: 0;
  position: relative;
}

.page-news-detail .category {
  display: inline-block;
  margin: 0;
  padding: 0 10px;
  font-size: 13px;
  line-height: 22px;
  font-weight: bold;
  color: #fff;
  transition: all .5s ease;
}

.page-news-detail .category.news {
  background: #000;
}

.page-news-detail .category.campaign {
  background: #858585;
}

@media (max-width: 750px) {
  .page-news-detail .cont-wrap {
    margin-top: 43px;
  }
  .page-news-detail .right-block {
    margin-top: 93px;
  }
  .page-news-detail .meta {
    margin-top: 35px;
  }
}

.meta-date {
  font-size: 13px;
  line-height: 13px;
  font-weight: bold;
  position: absolute;
  top: 6px;
  right: 0;
}

.article-ttl {
  margin: 30px 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) {
  .meta .category {
    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 *[style*="font"][style*="10."][style*="pt"],
  .article-in *[style*="font"][style*="11."][style*="pt"],
  .article-in *[style*="font"][style*="12."][style*="pt"],
  .article-in *[style*="font"][style*="13."][style*="pt"],
  .article-in *[style*="font"][style*="14."][style*="pt"],
  .article-in *[style*="font"][style*="15."][style*="pt"] {
      font-size: max(2.3vw , 24px)!important;
  }
  .article-in > * {
    margin: 30px 0 0;
  }
  .article-in .img img {
    width: 100%;
  }
}

.btn {
  height: 32px;
  margin: 175px 0 0;
  position: relative;
}

.btn a {
  text-decoration: none;
  transition: all .5s ease;
}

.btn a:hover {
  opacity: .7;
}

.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) {
  .btn {
    height: 70px;
    margin-top: 59px;
  }
  .btn a:hover {
    opacity: 1;
  }
  .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;
  }
}

.news-item {
  border-bottom: 1px solid #000;
}

.news-item a {
  display: flex;
  padding: 25px 0;
  transition: all .5s ease;
}

.news-item a:hover .category, .news-item a:hover .title {
  opacity: .7;
  text-decoration: none !important;
}

.news-item .image {
  width: 80px;
  height: 80px;
  position: relative;
}

.news-item .image:hover .hover {
  opacity: 1;
}

.news-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;
}

.news-item .hover p {
  width: 70px;
  border: 1px solid #fff;
  box-sizing: border-box;
  text-align: center;
  font-size: 11px;
  line-height: 20px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.news-item .detail {
  width: 150px;
  padding: 0 0 0 13px;
  box-sizing: border-box;
}

.news-item .date {
  display: none;
}

.news-item .title {
  margin: 5px 0 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
}

@media (max-width: 750px) {
  .right-block .section:nth-child(2) {
    margin-top: 56px;
  }
  .news-list {
    margin: 20px 0 0;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .news-item {
    width: -webkit-calc(50% - 20px);
    width: calc(50% - 20px);
    margin: 0 40px 55px 0;
    border: none;
  }
  .news-item:nth-child(even) {
    margin-right: 0;
  }
  .news-item a {
    display: block;
    padding: 0;
    transition: none;
  }
  .news-item a .category, .news-item a .title {
    opacity: .7;
    text-decoration: none !important;
  }
  .news-item .image {
    width: 100%;
    height: auto;
  }
  .news-item .image img {
    width: 100%;
  }
  .news-item .image:hover .hover {
    opacity: 1;
  }
  .news-item .hover {
    opacity: 1;
    transition: none;
  }
  .news-item .hover p {
    width: 160px;
    border: 2px solid #fff;
    font-size: 20px;
    line-height: 35px;
  }
  .news-item .detail {
    width: 100%;
    padding: 0;
  }
  .news-item .date {
    display: block;
    margin: 9px 0 18px;
    font-size: 16px;
    line-height: 16px;
  }
  .news-item .category {
    padding: 0 15px;
    font-size: 16px;
    line-height: 24px;
  }
  .news-item .title {
    margin: 10px 0 0;
    font-size: 22px;
    line-height: 28px;
  }
}
