@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.3
*/

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

.button-block .btn {
	color: #ffffff;
}

/* 楽天カード */
.btn p {
	margin-bottom: 0.5rem;
	color: #d32c2d;
}

.btn,
a.btn,
button.btn {
/* 	text-align: center; */
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.entry-btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.entry-btn {
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0);
  display: inline-block;
  padding: 0.5rem;

  border-radius: 100vh;
  background: #f2f5f6;
  background: -webkit-linear-gradient(
    to top,
    #f2f5f6 0%,
    #e3eaed 37%,
    #96a1a5 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#f2f5f6),
    color-stop(37%, #e3eaed),
    to(#96a1a5)
  );
  background: -webkit-linear-gradient(
    top,
    #f2f5f6 0%,
    #e3eaed 37%,
    #96a1a5 100%
  );
  background: linear-gradient(to bottom, #f2f5f6 0%, #e3eaed 37%, #96a1a5 100%);

  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f5f6', endColorstr='#96a1a5', GradientType=0);
}

a.btn-radius-gradient {
  border-radius: 100vh;
  border-style: none;
  background: #e3eaed;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#e3eaed),
    to(#f2f5f6)
  );
  background: -webkit-linear-gradient(top, #e3eaed 0%, #f2f5f6 100%);
  background: linear-gradient(to bottom, #e3eaed 0%, #f2f5f6 100%);

  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e3eaed', endColorstr='#f2f5f6', GradientType=0);
}

a.btn-radius-gradient:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
/* /楽天カード */

/* 楽天プレミアムカード */
  .premium p {
    text-align:center;
    line-height:0.95em;
    font-weight:bold;
    color: transparent;
    background: linear-gradient(0deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%); 
  -webkit-background-clip: text;
}

.premium a {
	color: #f5f5f5;
}

.premium a.btn-radius-gradient {
    background: #223670;
	background: linear-gradient(to bottom, #223670 0%, #223670 100%);
}

.premium {
/* 	background: #223670; */
  background: -webkit-linear-gradient(
    to top,
    #223670 0%,
    #223670 37%,
    #223670 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#223670),
    color-stop(37%, #223670),
    to(#223670)
  );
  background: -webkit-linear-gradient(
    top,
    #223670 0%,
    #223670 37%,
    #223670 100%
  );
	background: linear-gradient(to bottom, #344d99 0%, #223670 37%, #132045 100%);
}
/* /楽天プレミアムカード */

/* H1 */

   .article h1 {
  position: relative;
  line-height: 1.4;
  padding:0.25em 1em;
  font-size: 2em;
  text-align: center;
  margin: 0.5em;
}

 .article h1:before, h1:after { 
  content:'';
  width: 20px;
  height: 30px;
  position: absolute;
  display: inline-block;
}

 .article h1:before {
  border-left: solid 3px #282828;
  border-top: solid 3px #282828;
  top:0;
  left: 0;
}

 .article h1:after {
  border-right: solid 3px #282828;
  border-bottom: solid 3px #282828;
  bottom:0;
  right: 0;
}

/* H2 */

 .article h2 {
  color: #505050;/*文字色*/
  padding: 0.7em;
  line-height: 1.3;/*行高*/
  background: #282828;/*背景色*/
  vertical-align: middle;  color: #ffffff;
}
.article h2:before {
  content: '●';
  margin-right: 8px;
}

/* H3 */

 .article h3 {
      border: none;
  position: relative;
  padding-left: 40px;
  margin-left: 2%;
}

 .article h3:before {
  position: absolute;
  content: '';
  bottom: -3px;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 15px transparent;
  border-bottom: solid 15px #282828;
}
 .article h3:after {
  position: absolute;
  content: '';
  bottom: -3px;
  left: 10px;
  width: 97.5%;
  border-bottom: solid 3px #282828;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
