@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.2
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/***************************************************

ブログパーツ

***************************************************/
/*―――――――――――――――――――――――――――――――――――――――――――――
/* 販売リンク
――――――――――――――――――――――――――――――――――――――――――――――*/
.buy-link {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  margin: 30px 0 30px;
}
.buy-link a {
  display: block;
  min-width: 320px;
  padding: 18px 50px 17px 40px;
  color: #283135;
  font-size: 19px;
  border-radius: 4px;
  background-color: #fff134;
  box-shadow: 0 4px 15px rgba(0,0,0,.1);
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  line-height: 1.6;
  transition: 0.3s;
  position: relative;
}
.buy-link a::before {
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 2px solid #283135;
  border-right: 2px solid #283135;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background: url();
  content: '';
}
.buy-link a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .buy-link a {
    font-size: 16px;
  }
}
