@charset "UTF-8";
/*
Theme Name: テーマの名前（必須）
Theme URL: テーマのサイトのURI
Description: テーマの説明
Author: 作者の名前
version： 1.0.0
Tags: テーマの特徴を表すタグ（カンマ区切り/オプション）
License: テーマのライセンス
License URI: テーマのライセンスのURI
*/
/* style CSS Document */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	style.scss 
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* tips_setting CSS Document */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	tips.scss 
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.pattern {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: radial-gradient(#111 20%, transparent 31%), radial-gradient(#111 20%, transparent 31%);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
}

/* initial_setting CSS Document */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	サイトの基本設定 
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 560px) {
  .sp_content {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .tb_content {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc_content {
    display: none !important;
  }
}

body {
  font-family: YakuHanJP_Noto, 'Noto Sans JP', sans-serif;
}

html {
  font-size: 62.5%;
  height: 100%;
}

body,
p {
  font-size: 1.5rem;
  line-height: 1.5;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.delay-time02 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

@media screen and (max-width: 559px) {
  .delay-time02 {
    -webkit-animation-delay: 0;
            animation-delay: 0;
  }
}

.delay-time04 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

@media screen and (max-width: 559px) {
  .delay-time04 {
    -webkit-animation-delay: 0;
            animation-delay: 0;
  }
}

.color-white {
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

/* parts_style CSS Document */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	パーツの設定 
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.btn {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 1.5rem 1.8rem;
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  font-weight: 300;
  font-size: 1.6rem;
  font-family: "Oswald", sans-serif;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.btn:after {
  content: "";
  position: absolute;
  display: block;
  -webkit-transition: all .2s;
  transition: all .2s;
  width: 7px;
  height: 18px;
  top: 50%;
  right: 3.5rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: translateY(-50%) rotate(45deg) skewX(-45deg);
          transform: translateY(-50%) rotate(45deg) skewX(-45deg);
}

.btn:hover {
  background-color: #8c8c8c;
}

.btn:hover:after {
  right: 2rem;
  height: 18px;
}

.btn-w {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 1.5rem 1.8rem;
  background: #fff;
  color: #000;
  text-align: center;
  font-size: 1.6rem;
  font-family: "Oswald", sans-serif;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.btn-w:after {
  content: "";
  position: absolute;
  display: block;
  -webkit-transition: all .2s;
  transition: all .2s;
  width: 7px;
  height: 18px;
  top: 50%;
  right: 3.5rem;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  -webkit-transform: translateY(-50%) rotate(45deg) skewX(-45deg);
          transform: translateY(-50%) rotate(45deg) skewX(-45deg);
}

.btn-w:hover {
  background-color: #1a1a1a;
  color: #fff;
}

.btn-w:hover:after {
  right: 2rem;
  height: 18px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.btn-blank {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 1.5rem 1.8rem;
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  font-weight: 300;
  font-size: 1.6rem;
  font-family: "Oswald", sans-serif;
}

.btn-blank-w {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 1.5rem 1.8rem;
  background: #fff;
  color: #000;
  text-align: center;
  font-size: 1.6rem;
  font-family: "Oswald", sans-serif;
}

.ttl__primary {
  padding-bottom: 7rem;
  text-align: center;
}

.ttl__primary p {
  color: #1a1a1a;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1.2rem;
}

@media screen and (max-width: 559px) {
  .ttl__primary p {
    font-size: 1rem;
    letter-spacing: .8rem;
  }
}

@media screen and (max-width: 559px) {
  .ttl__primary {
    padding-bottom: 0;
  }
}

.ttl__primary_heading {
  margin-bottom: 2rem;
  font-size: 5rem;
  font-family: "Oswald", sans-serif;
}

@media screen and (max-width: 559px) {
  .ttl__primary_heading {
    margin-bottom: 0;
    font-size: 3rem;
  }
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  margin: 0 auto;
  padding: 2.6rem 4rem;
  z-index: 100;
  background: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 559px) {
  header {
    padding: 1.2rem 1.8rem;
    background-color: rgba(0, 0, 0, 0);
  }
}

@media screen and (max-width: 559px) {
  #header {
    background: #fff;
  }
}

#header.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

#header.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.header_logo {
  width: 150px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.header_logo:hover {
  opacity: .6;
}

@media screen and (max-width: 559px) {
  .header_logo {
    width: 120px;
  }
}

.g-nav {
  margin-left: auto;
}

.g-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.g-nav li {
  margin-right: 6rem;
  font-size: 1.6rem;
  font-family: 'Oswald', sans-serif;
}

.g-nav li:last-child {
  margin-right: 0;
}

.g-nav a {
  color: #000;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.g-nav a:hover {
  color: #ee87b4;
}

.openbtn {
  position: relative;
  z-index: 9999;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background: #fff;
}

.openbtn span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  position: absolute;
  left: 13px;
  height: 2px;
  background-color: #666;
}

.openbtn span:nth-of-type(1) {
  top: 22px;
  width: 50%;
}

.openbtn span:nth-of-type(2) {
  top: 29px;
  width: 30%;
}

/*activeクラスが付与されると線が回転して×に*/
.openbtn.active span:nth-of-type(1) {
  top: 20px;
  left: 16px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 35%;
}

.openbtn.active span:nth-of-type(2) {
  top: 32px;
  left: 16px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 35%;
}

#g-nav-sp {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: #000;
  /*動き*/
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav-sp.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav-sp.panelactive #g-nav-list-sp {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav-sp ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: 400;
  font-family: "Oswald", sans-serif;
}

/*リストのレイアウト設定*/
#g-nav-sp li {
  list-style: none;
  text-align: center;
}

#g-nav-sp li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 70%;
  min-width: 300px;
  height: 90vh;
  margin: 0 auto;
}

@media screen and (max-width: 559px) {
  .hero__content {
    width: 100%;
    height: 70vh;
    overflow: hidden;
  }
}

@media screen and (max-width: 1024px) {
  .hero__content {
    height: 60vh;
  }
}

.hero_bg1 {
  width: 60%;
  z-index: 1;
}

.hero_bg2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
}

@media screen and (max-width: 559px) {
  .hero_bg2 {
    width: 135vw;
    max-width: 135vh;
  }
}

.contents {
  padding-top: 6rem;
}

.contents p {
  margin-bottom: 3rem;
  font-size: 1.4rem;
}

@media screen and (max-width: 559px) {
  .contents {
    padding-top: 2rem;
  }
}

.contents__box {
  max-width: 1200px;
  min-width: 1000px;
  margin: 0 auto;
  padding: 0 3rem;
}

@media screen and (max-width: 559px) {
  .contents__box {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
}

@media screen and (max-width: 559px) {
  .contents__box h2 {
    margin-bottom: 3rem;
  }
}

.contents-bg {
  background-color: #f4f4f4;
}

@media screen and (max-width: 559px) {
  .contents-bg {
    background-color: #fff;
  }
}

.contents__h2 {
  margin-bottom: 4.7rem;
  font-size: 4.2rem;
  font-family: "Oswald", sans-serif;
}

@media screen and (max-width: 559px) {
  .contents__h2 {
    margin-bottom: 1rem;
    font-size: 2.4rem;
  }
}

.contents__h3 {
  font-size: 2.8rem;
  font-weight: bold;
  margin: 2rem 0 4.7rem 0;
}

@media screen and (max-width: 559px) {
  .contents__h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
}

.campaign-girl {
  margin-bottom: 15rem;
  padding: 0 2rem;
}

@media screen and (max-width: 559px) {
  .campaign-girl {
    margin-bottom: 0;
    padding: 4rem 2rem 7rem 2rem;
  }
}

.campaign-girl__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.campaign-girl__box img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

@media screen and (max-width: 559px) {
  .campaign-girl__box img {
    width: 100%;
    height: 250px;
  }
}

.campaign-girl__box__thumb {
  width: 50%;
  height: 500px;
  padding-right: 3rem;
}

.campaign-girl__box__thumb img {
  -webkit-transition: all .2s;
  transition: all .2s;
}

.campaign-girl__box__thumb img:hover {
  opacity: .8;
}

@media screen and (max-width: 559px) {
  .campaign-girl__box__thumb {
    width: 100%;
    height: auto;
    padding-right: 0;
  }
}

.campaign-girl__box__desc {
  width: 50%;
}

@media screen and (max-width: 559px) {
  .campaign-girl__box__desc {
    width: 100%;
  }
}

.dancers {
  position: relative;
  padding: 10rem 0;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAAXNSR0IArs4c6QAAACRJREFUGFdjZMAE/xnRxP4zMDAwIguCBUCKYIJwAZggigBIEAAATgUFGspAvAAAAABJRU5ErkJggg==) repeat, url(/images/bg_dancers2.jpg) center/cover no-repeat;
}

.dancers p {
  color: #fff;
}

@media screen and (max-width: 559px) {
  .dancers {
    padding: 4rem 2rem 7rem 2rem;
  }
}

.dancers__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.dancers__list_item {
  max-width: 32%;
  margin-right: 1%;
}

@media screen and (max-width: 559px) {
  .dancers__list_item {
    max-width: 100%;
    margin-right: 0;
  }
}

@media screen and (max-width: 559px) {
  .dancers__list_item a,
  .dancers__list_item span {
    margin-bottom: 5rem;
  }
}

.dancers__list_item a img,
.dancers__list_item span img {
  -webkit-transition: all .2s;
  transition: all .2s;
}

.dancers__list_item a img:hover,
.dancers__list_item span img:hover {
  opacity: .5;
}

.influencer {
  padding: 15rem 0;
  background: #fff;
}

@media screen and (max-width: 559px) {
  .influencer {
    padding: 4rem 2rem 7rem 2rem;
  }
}

.influencer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.influencer__list_item {
  width: 49%;
}

@media screen and (max-width: 559px) {
  .influencer__list_item {
    width: 100%;
  }
}

.influencer__list_item a {
  margin-bottom: 5rem;
}

.influencer__list_item a img {
  -webkit-transition: all .2s;
  transition: all .2s;
}

.influencer__list_item a img:hover {
  opacity: .5;
}

.photo-session {
  padding: 15rem 0;
  background: url(/images/bg_camera.jpg) center/cover no-repeat;
}

@media screen and (max-width: 559px) {
  .photo-session {
    padding: 4rem 2rem 7rem 2rem;
  }
}

.photo-session__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.photo-session__box img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  margin-right: 3rem;
}

@media screen and (max-width: 559px) {
  .photo-session__box img {
    width: 100%;
    height: 250px;
  }
}

.photo-session__box__thumb {
  width: 50%;
  height: 500px;
  padding-right: 3rem;
}

@media screen and (max-width: 559px) {
  .photo-session__box__thumb {
    width: 100%;
    height: auto;
    padding-right: 0;
  }
}

.photo-session__box__desc {
  width: 50%;
}

@media screen and (max-width: 559px) {
  .photo-session__box__desc {
    width: 100%;
  }
}

.contact {
  padding: 15rem 0;
}

@media screen and (max-width: 559px) {
  .contact {
    padding: 7rem 0;
  }
}

.contact__box_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 559px) {
  .contact__box_link {
    display: block;
    margin-top: 5rem;
    text-align: center;
  }
}

.contact__box_link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  width: 300px;
}

@media screen and (max-width: 559px) {
  .contact__box_link a {
    height: 60px;
    margin: 0 auto 4rem auto;
  }
}

.contact__box_link a:first-child {
  margin-right: 3rem;
}

@media screen and (max-width: 559px) {
  .contact__box_link a:first-child {
    margin-right: auto;
  }
}

.btn-mail {
  display: block;
  width: 100%;
  padding: 1.3rem 3rem 1rem 3rem;
  background: #1a1a1a;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.btn-mail::before {
  display: inline-block;
  width: 20px;
  height: 18px;
  margin: -1px 10px 0 0;
  background: url(/images/icon_mail.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
  content: "";
}

.btn-mail:hover {
  background-color: #8c8c8c;
}

@media screen and (max-width: 559px) {
  .btn-mail {
    padding: 1.7rem 3rem 1rem 3rem;
  }
}

.btn-tell {
  display: block;
  width: 100%;
  padding: 1.3rem 3rem 1rem 3rem;
  background: #1a1a1a;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.btn-tell::before {
  display: inline-block;
  width: 12px;
  height: 18px;
  margin: -3px 7px 0 0;
  background: url(/images/icon_tell.svg) no-repeat;
  background-size: contain;
  vertical-align: middle;
  content: "";
}

.btn-tell:hover {
  background-color: #8c8c8c;
}

@media screen and (max-width: 559px) {
  .btn-tell {
    padding: 1.7rem 3rem 1rem 3rem;
  }
}

.footer__box {
  padding: 5rem 0;
  background-color: #f4f4f4;
  text-align: center;
}

.footer__box img {
  max-width: 100px;
  margin: 0 auto 3rem auto;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.footer__box img:hover {
  opacity: .5;
}

.footer__box a {
  color: #1a1a1a;
  text-decoration: underline;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.footer__box a:hover {
  opacity: .5;
}

.copyright {
  padding: 1.5rem;
  background: #1a1a1a;
  text-align: center;
  color: #fff;
  font-weight: 300;
  font-family: "Oswald", sans-serif;
  letter-spacing: .4rem;
}

@media screen and (max-width: 559px) {
  .copyright {
    letter-spacing: .1rem;
  }
}

.news,
.news-list {
  max-width: 750px;
  margin: -4rem auto 8rem auto;
  padding: 0 3rem;
}

@media screen and (max-width: 559px) {
  .news,
  .news-list {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
  }
}

.mt-spacer {
  margin-top: 4rem;
}

@media screen and (max-width: 559px) {
  .mt-spacer {
    margin-top: 6rem;
  }
}

.pt-spacer {
  padding-top: 8rem;
}

@media screen and (max-width: 559px) {
  .pt-spacer {
    margin-top: 6rem;
  }
}

.contents-margin {
  margin-top: 14rem;
}

@media screen and (max-width: 559px) {
  .contents-margin {
    margin-top: 9rem;
  }
}

.card {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2rem 0;
  border-bottom: 1px solid #474747;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.card:hover {
  opacity: .5;
}

.card__link {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.card__inner img {
  max-width: 110px;
  height: 110px;
  margin-right: 2rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.card__meta {
  color: #000000;
}

.card__meta p {
  font-size: 1.6rem;
  line-height: 2.2rem;
}

@media screen and (max-width: 559px) {
  .card__meta p {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}

.card__meta__day {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  line-height: 2.4rem;
}

@media screen and (max-width: 559px) {
  .card__meta__day {
    color: #a7a7a7;
    font-size: 1.2rem;
    line-height: 1.2rem;
  }
}

.card__meta__link {
  position: absolute;
  z-index: 5;
  right: 3.5rem;
  bottom: 2rem;
}

@media screen and (max-width: 559px) {
  .card__meta__link {
    display: none;
  }
}

.card__meta__link::after {
  content: "";
  position: absolute;
  display: block;
  -webkit-transition: all .2s;
  transition: all .2s;
  width: 7px;
  height: 18px;
  top: 50%;
  right: -2.5rem;
  border-top: solid 2px #000000;
  border-right: solid 2px #000000;
  -webkit-transform: translateY(-50%) rotate(45deg) skewX(-45deg);
  transform: translateY(-50%) rotate(45deg) skewX(-45deg);
}

.btn--news {
  display: inline-block;
  position: relative;
  width: 100%;
  margin: 3rem 0;
  padding: 1.5rem 1.8rem;
  background: #d09c44;
  color: #fff;
  text-align: center;
  font-weight: 300;
  font-size: 1.6rem;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.btn--news:after {
  content: "";
  position: absolute;
  display: block;
  -webkit-transition: all .2s;
  transition: all .2s;
  width: 7px;
  height: 18px;
  top: 50%;
  right: 3.5rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: translateY(-50%) rotate(45deg) skewX(-45deg);
          transform: translateY(-50%) rotate(45deg) skewX(-45deg);
}

.btn--news:hover {
  background-color: #684b1a;
  opacity: 1;
}

.btn--news:hover:after {
  right: 2rem;
  height: 18px;
}

.pagination {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 5rem;
}

.pagination a {
  color: #7a7a7a;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.pagination a:hover {
  opacity: .5;
}

.pagination span {
  padding: 0 1em;
}

.pagination .page-numbers {
  padding: 0 1em;
  font-size: 2rem;
}

.page-numbers {
  color: #000000;
}

.pagination .next {
  padding: 0 1em;
}

#breadcrumb {
  margin-bottom: 2rem;
  font-size: 12px;
  color: #a3a3a3;
}

#breadcrumb ol {
  padding: 0;
}

#breadcrumb li {
  display: inline;
}

#breadcrumb li a {
  text-decoration: none;
  color: #a3a3a3;
}

#breadcrumb li a:hover {
  text-decoration: underline;
}

#breadcrumb li:after {
  content: '>';
  padding: 0 0.2em;
  color: #a3a3a3;
}

#breadcrumb li:last-child:after {
  content: '';
}

.post-content {
  width: 750px;
  margin: 8rem auto 0 auto;
  padding: 2rem;
}

@media screen and (max-width: 559px) {
  .post-content {
    width: 100%;
    margin-top: 4rem;
  }
}

.post-content__category {
  margin-bottom: 3rem;
  padding: .5rem 1rem;
  background: #000;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
}

.post-content__category a {
  color: #fff;
}

.post-content__day {
  display: block;
  margin: 2rem 0;
  color: #959595;
  font-size: 1.5rem;
  text-align: right;
}

.post-content__thumbnail img {
  margin: 0 auto;
}

.post-content__h1 {
  margin: 30px 0 -8px 0;
  color: #222222;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
}

@media screen and (max-width: 559px) {
  .post-content__h1 {
    margin: 30px 0 15px 0;
    font-size: 24px;
    line-height: 36px;
  }
}

.post-content h2 {
  margin: 54px 0 -18px 0;
  color: #222222;
  font-weight: 700;
  font-size: 26px;
  line-height: 36px;
  border-bottom: 5px solid #222222;
  padding-bottom: 1rem;
}

@media screen and (max-width: 559px) {
  .post-content h2 {
    margin: 45px 0 -15px 0;
    font-size: 20px;
    line-height: 30px;
  }
}

.post-content h3 {
  margin: 54px 0 -18px 0;
  color: #222222;
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
}

@media screen and (max-width: 559px) {
  .post-content h3 {
    margin: 45px 0 -15px 0;
    font-size: 20px;
    line-height: 30px;
  }
}

.post-content p {
  margin: 36px 0;
  color: #222222;
  font-size: 18px;
  line-height: 36px;
}

@media screen and (max-width: 559px) {
  .post-content p {
    margin: 30px 0;
    font-size: 16px;
    line-height: 30px;
  }
}
/*# sourceMappingURL=style.css.map */