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

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


/*リンクボタンの80%幅*/
.btn.cocoon-block-button__width-80, .ranking-item-link-buttons a.cocoon-block-button__width-80 {
  width: 80%;
}

.btn-wrap.cocoon-block-button__width-80 a {
  width: 80%;
}


/*フッターのタグクラウド*/
#footer .tagcloud a { 
background: #000;
border: 1px solid #fff;
color: #fff;
transition: .5s;
}

#footer .tagcloud a:hover { 
   background: #fff; /*カーソルを合わせた時の背景色*/
   border: 1px solid #fff; /*カーソルを合わせた時の線色*/
   color: #000; /*カーソルを合わせた時の文字色*/
   transition: 0.5s; /*アニメーションの時間*/
}


/*内部ブログカードのみ、ファビコンとURLを消す*/
.internal-blogcard-footer{
	display: none
}

/*サンプル画像表示用*/
.sample_imgge {
    position: relative;
    margin: 1em auto 3em;
}

/*タブ見出しボックス01*/
.box01 {
    position: relative;
    margin: 2em auto;
    padding: 0.5em 1em;
    border: solid 3px #62c1ce;
	width: 88%;
}
.box01 .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #62c1ce;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.box01 p {
    margin: 0; 
    padding: 0;
}

/*マスキングテープ風ボックス*/
.box2{
	background-color: #F6EEEC;/*ボックス背景色*/
	padding:2.5em 2em 2em;/*ボックス内側余白*/
	position:relative;/*配置(ここを基準に)*/
}
.box2 .box-title {
	background-image: repeating-linear-gradient(-45deg,#F6EEEC 0, #F6EEEC 3px,#fafafa 3px,#fafafa 6px);/*ストライプ*/
	border-left: 2px dotted rgba(0,0,0,.1);/* ギザギザ左*/
	border-right: 2px dotted rgba(0,0,0,.1);/* ギザギザ右*/
	transform: rotate(-2deg);/*テープの傾き*/
	font-size: 1em;/*タイトル文字の大きさ*/
	padding: 10px 20px;/*タイトルの余白*/
	line-height: 1;/*タイトルの行の高さ*/
	position:absolute;/*配置(ここを動かす)*/
	top: -15px; /*上からの距離*/
	left: 20px; /*左からの距離*/
}

/*外枠の途中にタイトル表示ボックス*/
.box3 {
    position: relative;
    margin: 2em auto;
    padding: 0.5em 1em;
    border: solid 3px #885ad3;
    border-radius: 8px;
	width: 88%;
}
.box3 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #885ad3;
    font-weight: bold;
}
.box3 p {
    margin: 0; 
    padding: 0;
}

/*交差線ボックス*/
.box4{
    margin: 0.5em auto 2.5em;
    position: relative;
    padding: 0.5em 1.5em;
    border-top: solid 2px black;
    border-bottom: solid 2px black;
	width: 99%;
}
.box4:before, .box4:after{
    content: '';
    position: absolute;
    top: -10px;
    width: 2px;
    height: -webkit-calc(100% + 20px);
    height: calc(100% + 20px);
    background-color: black;
}
.box4:before {left: 10px;}
.box4:after {right: 10px;}
.box4 p {
    margin: 0; 
    padding: 0;
}

/*シンプルな実線だけのボックス*/
.box5 {
    padding: 0.5em 1em;
    margin: 0.5em auto 2.5em;
    font-weight: bold;
    border: solid 2px #000000;
	width: 88%;
}
.box5 p {
    margin: 0; 
    padding: 0;
}

/*上にだけ細線のボックス*/
.box6{
    padding: 0.5em 1em;
    margin: 0 auto 2.5em;
    color: #5d627b;
    background: white;
    border-top: solid 5px #5d627b;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
	width: 99%;
}
.box6 p {
    margin: 0; 
    padding: 0;
}

/*横にだけ太線のボックス*/
.box7 {
    padding: 0.5em 1em;
    margin: 0 auto 2.5em;
    color: #ff7d6e;
    background: #fff8f5;
    border-left: solid 8px #ff7d6e;
	width: 95%;
}
.box7 p {
    margin: 0; 
    padding: 0;
	font-size: 0.9em;
}

/* タイトル付き（ラベルボックス） */
.box8 {
    position: relative; /* タイトルの配置調整のために基準を設定 */
    margin: 0 auto 2em; /* 外側の余白（上下と中央配置） */
    border: 2px solid #5d627b; /* ボックスの線 (太さ・種類・色) */
	width: 95%;
}

.box8 .box-title {
    position: absolute; /* タイトルをボックス内で絶対位置指定 */
    top: -0.5em; /* 上方向に少し移動 */
    left: 1em; /* 左端からの距離 */
    background-color: #fff; /* タイトル背景色 */
    color: #5d627b; /* タイトルの文字色 */
    padding: 0 .5em; /* タイトルの内側余白 */
    font-weight: bold; /* タイトルのフォントを太字に */
    line-height: 1; /* タイトルの行の高さ */
    display: inline-block; /* タイトルの幅を内容に合わせる */
    width: auto; /* タイトル幅を内容に応じて可変にする */
    max-width: calc(100% - 2em); /* 左右の余白を考慮して最大幅を調整 */
    white-space: nowrap; /* タイトルを1行に固定 */
    overflow: hidden; /* はみ出した部分を非表示 */
    text-overflow: ellipsis; /* 省略記号（...）を表示 */
}

.box8 .box-content {
    padding: 1em; /* ボックス内コンテンツの余白を設定 */
}

.box8 p {
    margin: 0; /* 段落の余白をなくして統一感を持たせる */
}


/*CSSで実現するアコーディオン・ボックス*/
.accordion-001 {
    width: 80%;
    background-color: #fff;
	border: 2px dotted rgba(0,0,0,.1);
	margin: 0 auto;
}

.accordion-001:not([open]) {
    margin-bottom: 7px;
}

.accordion-001 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0.5em 1em;
    border-radius: 5px;
    background-color: #f3f5f8;
    color: #555;
	font-size: 15px;
    font-weight: 390;
    cursor: pointer;
}

.accordion-001 summary::-webkit-details-marker {
    display: none;
}

.accordion-001 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #555;
    border-right: 3px solid #555;
    content: '';
    transition: transform .3s;
}

.accordion-001[open] summary::after {
    transform: rotate(225deg);
}

.accordion-001 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 0 2em;
    color: #555;
	font-size: 15px;
    transition: transform .5s, opacity .5s;
}

.accordion-001[open] p {
    transform: none;
    opacity: 1;
}

/*ラベリングを工夫したボタン周り*/
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

.btn01,
a.btn01,
button.btn01 {
  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;
}

/*背景*/
.btn-wrap {
  margin: 20px;
  display: flex;
  justify-content: center;
}

a.btn-c {
  font-size: 2rem;

  position: relative;

  padding: 1.5rem 4rem 1.5rem 6rem;

  color: #000;
  border: 2px solid #000;
  border-radius: 100vh;
  background: #fff100;
  -webkit-box-shadow: 0 5px 0 #e6d900;
  box-shadow: 0 5px 0 #e6d900;
}

a.btn-c span {
  font-size: 1.3rem;
  line-height: 1.3;

  position: absolute;
  top: -10px;
  left: -20px;

  width: 64px;
  height: 64px;
  padding-top: 15px;

  -webkit-transition: all 0.3s;

  transition: all 0.3s;

  color: #000;
  border: 2px solid #000;
  border-radius: 50%;
  background: #fff;
}

a.btn-c span em {
  font-style: normal;

  color: #d20010;
}

a.btn-c small {
  font-weight: bold;
}

a.btn-c i {
  margin-right: 1rem;
}

a.btn-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);

  color: #000;
  background: #fff21a;
  -webkit-box-shadow: 0 2px 0 #e6d900;
  box-shadow: 0 2px 0 #e6d900;
}

a.btn-c:hover span {
  -webkit-transform: translate(0, -5px);
  transform: translate(0, -5px);
}


/*ふわふわ上下に動くボタン*/
.btn1_box{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 80px 0;
}

.btn1{
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 70px;
  letter-spacing: 3px;
  width: 200px;
  height: 70px;
  background: #f58300;
  margin: auto;
  cursor: pointer;
  border-radius: 39px;
}

.btn1 a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.btn1 a:hover {
  color: #888;
  background: #f5ea83;
  text-decoration: none;
  border-radius: 39px;
}

/*アニメーション｜ふわふわ*/
.animation1{
  animation: fuwafuwa 2s linear infinite;
  scale: 1;
}

@keyframes fuwafuwa{
 0%{transform:translateY(0)}
 50%{transform:translateY(-10px)}
 100%{transform:translateY(0)}
}

/*ぶるぶる左右に動くボタン*/
.btn2_box{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 80px 0;
}

.btn2{
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 70px;
  letter-spacing: 3px;
  width: 200px;
  height: 70px;
  background: #f58300;
  margin: auto;
  cursor: pointer;
  border-radius: 8px;
}

.btn2 a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.btn2 a:hover {
  color: #888;
  background: #f5ea83;
  text-decoration: none;
  border-radius: 8px;
}

/*アニメーション｜ぶるぶる*/
.animation2{
  animation: buruburu 1s linear infinite;
  scale: 1;
}

@keyframes buruburu{
 0%{transform:translateX(0)}
 7%{transform:translateX(-10px)}
 14%{transform:translateX(10px)}
 20%{transform:translateX(-10px)}
 32%{transform:translateX(10px)}
 40%{transform:translateX(0px)}
}

/*どくんどくん動くボタン*/
.btn3_box{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 80px 0;
}

.btn3{
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 70px;
  letter-spacing: 3px;
  width: 200px;
  height: 70px;
  background: #f58300;
  margin: auto;
  cursor: pointer;
  border-radius: 100px;
}

.btn3 a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.btn3 a:hover {
  color: #888;
  background: #f5ea83;
  text-decoration: none;
  border-radius: 15px;
}

/*アニメーション｜どくんどくん*/
.animation3{
  animation: dokundokun 1300ms ease infinite;
}

@keyframes dokundokun {
  0%  { transform: scale(1); }
  15% { transform: scale(1.2); }
  30% { transform: scale(1); }
  45% { transform: scale(1.2); }
  70% { transform: scale(1); }
}

/*ゆらゆら揺れるボタン*/
.btn4_box{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 80px 0;
}

.btn4{
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 70px;
  letter-spacing: 3px;
  width: 200px;
  height: 70px;
  background: #f58300;
  margin: auto;
  cursor: pointer;
  border-radius: 100px;
}

.btn4 a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.btn4 a:hover {
  color: #888;
  background: #f5ea83;
  text-decoration: none;
  border-radius: 15px;
}

/*アニメーション｜ゆらゆら*/
.animation4{
  animation: yurayura 2s linear infinite;
  scale: 1;
}

@keyframes yurayura{
	0%  {transform:rotate(0deg);}
	25% {transform:rotate(-2deg);}
	50% {transform:rotate(0deg);}
	75% {transform:rotate(2deg);}
	100% {transform:rotate(0deg);}
}

/*ガタガタ動くボタン*/
.btn5_box{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 80px 0;
}

.btn5{
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 70px;
  letter-spacing: 3px;
  width: 200px;
  height: 70px;
  background: #f58300;
  margin: auto;
  cursor: pointer;
  border-radius: 35% 15%;
}

.btn5 a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.btn5 a:hover {
  color: #888;
  background: #f5ea83;
  text-decoration: none;
  border-radius: 35% 15%;
}

/*アニメーション｜ガタガタ*/
.animation5{
  animation: gatagata .1s infinite;
  scale: 1;
}

@keyframes gatagata{
 0%{transform:translateY(0)}
 25%{transform:translate(0px, 2px) rotateZ(1deg)}
 50%{transform:translate(0px, 2px) rotateZ(0deg)}
 75%{transform:translate(2px, 2px) rotateZ(-1deg)}
 100%{transform:translate(0px, 0px) rotateZ(0deg)}
}

/*キラーンと光るボタン*/
.btn6_box{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 80px 0;
}

.btn6{
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 70px;
  letter-spacing: 3px;
  width: 200px;
  height: 70px;
  background: #f58300;
  margin: auto;
  cursor: pointer;
  border-radius: 50% 20% / 10% 40%;
  overflow: hidden;
  position: relative;
}

.btn6:before{
  position: absolute;
  content: '';
  display: inline-block;
  top: 70px;
  left: 0;
  width: 600px;
  height: 100%;
  background-color: #fff; 
}

.btn6 a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.btn6 a:hover {
  color: #888;
  background: #f5ea83;
  text-decoration: none;
  border-radius: 50% 20% / 10% 40%;
}

/*アニメーション｜キラーン*/
.animation6:before{
  animation: kiran 3s ease-in-out infinite;
}

@-webkit-keyframes kiran {
 0%{transform:scale(0) rotate(45deg); opacity: 0; }
 80%{transform:scale(0) rotate(45deg); opacity: 0.5; }
 81%{transform:scale(2) rotate(45deg); opacity: 1; }
 100%{transform:scale(25) rotate(45deg); opacity: 0; }
}

/*ぴかぴか光るボタン*/
.btn7_box{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 80px 0;
}

.btn7{
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 70px;
  letter-spacing: 3px;
  width: 200px;
  height: 70px;
  background: #f58300;
  margin: auto;
  cursor: pointer;
  border-radius: 15px;
}

.btn7 a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.btn7 a:hover {
  color: #888;
  background: #f5ea83;
  text-decoration: none;
  border-radius: 15px;
}

/*アニメーション｜ぴかぴか*/
.animation7{
  animation: pikapika 3s linear infinite;
  scale: 1;
}

@keyframes pikapika {
  0% {
    background: #f58300;
  }
  10% {
    background: #fff;
  }
  20% {
    background: #f58300;
  }
  30% {
    background: #fff;
  }
  40% {
    background: #f58300;
  }
  50% {
    background: #fff;
  }
  60% {
    background: #f58300;
  }
  70% {
    background: #fff;
  }
  80% {
    background: #f58300;
  }
}

/*うよーんと光るボタン*/
.btn8_box{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 80px 0;
}

.btn8{
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 70px;
  letter-spacing: 3px;
  width: 200px;
  height: 70px;
  background: #f58300;
  margin: auto;
  cursor: pointer;
  border-radius: 100px;
  position: relative;
}

.btn8:before,.btn8:after{
    position: absolute;
    content:'';
    width: 100%;
    height: 100%;
    border: inherit;
    top: 0;
    left: 0;
    z-index: -10;
    background: #faaf69;
    border-radius: inherit;
    animation: uyon 2s linear infinite;
}

.btn8:after {
    animation: uyon 2s linear infinite 1s;
}

.btn8 a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.btn8 a:hover {
  color: #888;
  background: #f5ea83;
  text-decoration: none;
  border-radius: 100px;
}

/*アニメーション｜うよーん*/
.animation8{
  animation: 0.2s ease-in-out;
}

@keyframes uyon{
  0% {
    opacity: 1;
    transform: scaleY(1) scaleX(1);
  }
  20% {
    opacity: 0.8;
  }
  70% {
    opacity: 0.2;
    transform: scaleY(1.6) scaleX(1.2);
  }
  80% {
    opacity: 0;
    transform: scaleY(1.6) scaleX(1.2);
  }
  90% {
    opacity: 0;
    transform: scaleY(1) scaleX(1);
  }
}

/*びよんびよんと伸びるボタン*/
.btn9_box{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 80px 0;
}

.btn9{
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 70px;
  letter-spacing: 3px;
  width: 200px;
  height: 70px;
  background: #f58300;
  margin: auto;
  cursor: pointer;
  border-radius: 15px;
}

.btn9 a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.btn9 a:hover {
  color: #888;
  background: #f5ea83;
  text-decoration: none;
  border-radius: 15px;
}

/*アニメーション｜びよんびよん*/
.animation9{
  animation: yurayura 3s linear infinite;
  scale: 1;
}

@keyframes yurayura{
	20% {transform: skew(-20deg)}
	70% {transform: skew(20deg)}
}

/*くるくると回るボタン*/
.btn10_box{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 80px 0;
}

.btn10{
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 70px;
  letter-spacing: 3px;
  width: 200px;
  height: 70px;
  background: #f58300;
  margin: auto;
  cursor: pointer;
  border-radius: 10px 100px / 120px;
}

.btn10 a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.btn10 a:hover {
  color: #888;
  background: #f5ea83;
  text-decoration: none;
  border-radius: 10px 100px / 120px;
}

/*アニメーション｜くるくる*/
.animation10{
  animation: kurukuru 3s infinite;
  scale: 1;
}

@keyframes kurukuru{
  35%{ transform: rotateX(360deg); }
  100%{ transform: rotatex(360deg);}
}

/*モワモワと光るボタン*/
.btn11_box{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 80px 0;
}

.btn11{
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  width: 200px;
  height: 78px;
  line-height: 78px;
  letter-spacing: 3px;
  border-radius: 100px;
  text-decoration: none;
  background-color: #f58300;
  text-align: center;
  transition: .2s;
  margin: auto;
  cursor: pointer;
}

.btn11::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 78px;
  border-radius: 39px;
  z-index: -1;
  background: inherit;
}

.btn11 a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.btn11 a:hover {
  color: #888;
  background: #f5ea83;
  text-decoration: none;
  border-radius: 39px;
}

/*アニメーション｜モワモワ*/
.animation11{
  position: relative;
  -webkit-animation: glow-reverse 2s ease-in-out infinite alternate;
          animation: glow-reverse 2s ease-in-out infinite alternate;
}

.animation11::before{
  -webkit-box-shadow: 0 0 1.3em #53088c, 0 0 0.5em rgba(255, 255, 255, 0.5) inset;
        box-shadow: 0 0 1.3em #53088c, 0 0 0.5em rgba(255, 255, 255, 0.5) inset;
  -webkit-animation: glow 2s ease-in-out infinite alternate;
        animation: glow 2s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  0% {opacity: 0; }
  50% {opacity: 1; }
  100% {opacity: 0; }
}
@keyframes glow {
  0% {opacity: 0; }
  50% {opacity: 1; }
  100% {opacity: 0; }
}
@-webkit-keyframes glow-reverse {
  0% {opacity: 1; }
  50% {opacity: 0.8; }
  100% {opacity: 1; }
}
@keyframes glow-reverse {
  0% {opacity: 1; }
  50% {opacity: 0.8; }
  100% {opacity: 1; }
}

/*背景のボーダーが動くボタン*/
.btn12_box{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn12{
  width: 200px;
  height: 78px;
  line-height: 78px;
  font-size: 24px;
  font-weight: bold;
  border-radius: 39px;
  text-decoration: none;
  color: #222831;
  background-color: #fe447c;
  text-align: center;
  background: linear-gradient(45deg,#f3ab58 25%, #f58300 25%,#f58300 50%, #f3ab58 50%,#f3ab58 75%, #f58300 75%,#f58300);
  background-size: 40px 40px;
}

.btn12 a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.btn12 a:hover {
  color: #888;
  background: #f5ea83;
  text-decoration: none;
  border-radius: 39px;
}

/*アニメーション｜背景のボーダーが動く*/
.animation12{
  animation: anime_btn_animation_1 .8s infinite linear;
}

@keyframes anime_btn_animation_1 {
  0% { background-position-y: 0;}
  100% { background-position-y: -40px;}
}

/*周りの点線が動くボタン*/
.btn13_box{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn13{
  width: 200px;
  height: 78px;
  line-height: 78px;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #222831;
  text-align: center;
  background-image: repeating-linear-gradient(0deg, #fe447c, #fe447c 10px, transparent 10px, transparent 20px, #fe447c 20px), 
  repeating-linear-gradient(90deg, #fe447c, #fe447c 10px, transparent 10px, transparent 20px, #fe447c 20px), 
  repeating-linear-gradient(180deg, #fe447c, #fe447c 10px, transparent 10px, transparent 20px, #fe447c 20px), 
  repeating-linear-gradient(270deg, #fe447c, #fe447c 10px, transparent 10px, transparent 20px, #fe447c 20px);
  background-size: 3px calc(100% + 20px), calc(100% + 20px) 3px, 3px calc(100% + 20px) , calc(100% + 20px) 3px;
  background-position: 0 0, 0 0, 100% 0, 0 100%;
  background-repeat: no-repeat;
}

/*アニメーション｜周りの点線が動く*/
.animation13{
  animation: borderAnimation 0.6s infinite linear;
}

@keyframes borderAnimation {
from { background-position: 0 0, -20px 0, 100% -20px, 0 100%; }
to { background-position: 0 -20px, 0 0, 100% 0, -20px 100%; }
}

/*ピカピカと点滅するボタン*/
.btn14_box{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 80px 0;
}

.btn14{
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 70px;
  letter-spacing: 3px;
  width: 200px;
  height: 70px;
  background: #000;
  margin: auto;
  cursor: pointer;
  border-radius: 100px;
}

/*アニメーション｜ピカピカ*/
.animation14{
  animation: pikapika 2s linear infinite;
}

@keyframes flash{
  0%,100%{ opacity: 1; }
  50%{ opacity: 0; }
}

/*くるくると回るボタン*/
.btn358_box{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 55px 0;
}

.btn358{
  color: #fff;
  font-size: 19px;
  font-weight: bold;
  text-align: center;
  line-height: 55px;
  letter-spacing: 3px;
  width: 80%;
  height: 55px;
  background: #44ad69;
  margin: auto;
  cursor: pointer;
  border-radius: 8px;
}

.btn358 a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.btn358 a:hover {
  color: #fff;
  background: #358ade;
  text-decoration: none;
  border-radius: 8px;
}

/*アニメーション｜くるくる*/
.animation358{
  animation: kurukuru 3s infinite;
  scale: 1;
}

@keyframes kurukuru{
  35%{ transform: rotateX(360deg); }
  100%{ transform: rotatex(360deg);}
}



/*クーポン券ボタン１*/
@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";
@import "https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap";

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

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 50%;
}

/* 背景*/
.btn20_wrap{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  margin: 55px 0;
}

.btn20_box {
  margin-bottom: 20px;
  padding: 30px;
  text-align: center;
  background: #fff;
}

.btn20,
a.btn20,
button.btn20 {
  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;
}

a.btn-coupon {
  font-size: 1.8rem;
  line-height: 1.2;

  padding: 2rem 3rem;

  color: #fff;
  border-radius: 0;
  background: #fa4141;
}

a.btn-coupon i {
  font-size: 1.6rem;

  position: absolute;

  width: 1rem;

  -webkit-transition: all 1s;

  transition: all 1s;
  text-align: right;

  color: #fa4141;
  background: #fff;
}

a.btn-coupon i.fa-position-top {
  top: -1em;
  left: 1rem;
}

a.btn-coupon i.fa-position-bottom {
  right: 1rem;
  bottom: -1em;
  left: auto;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

a.btn-coupon span {
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
  font-style: italic;
}

a.btn-coupon:before {
  position: absolute;
  top: -9px;
  left: -9px;
  width: calc(100% + 18px);
  height: calc(100% + 18px);
  content: "";
  border: 2px dashed #fa4141;
}

a.btn-coupon:hover {
  color: #fff;
  background: #ff8080;
}

a.btn-coupon:hover i {
  width: 90%;
}

/************************************
** 属性テンプレ｜DUGA版α用
************************************/

/*CSSで実現するアコーディオン・ボックス*/
.accordion-duga01 {
    width: 88%;
    background-color: #fff;
	border: 2px dotted rgba(0,0,0,.1);
	margin: 0 auto;
}

.accordion-duga01:not([open]) {
    margin-bottom: 7px;
}

.accordion-duga01 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0.5em 1em;
    border-radius: 5px;
    background-color: #f3f5f8;
    color: #555;
	font-size: 15px;
    font-weight: 390;
    cursor: pointer;
}

.accordion-duga01 summary::-webkit-details-marker {
    display: none;
}

.accordion-duga01 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #555;
    border-right: 3px solid #555;
    content: '';
    transition: transform .3s;
}

.accordion-duga01[open] summary::after {
    transform: rotate(225deg);
}

.accordion-duga01 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 0 2em;
    color: #555;
	font-size: 14px;
    transition: transform .5s, opacity .5s;
}

.accordion-duga01[open] p {
    transform: none;
    opacity: 1;
}

/*作品データテーブル*/
.flexible_table{
  position: relative;
  width: 100%;
  margin: 0 auto;
}

#flextable_td_title{
  width: 25%;
  text-align:center;
  color:#333333;
  background-color:#f3f5f8;
}

#flextable_td_detail{
  width: 75%;
  color:#333333;
  background-color:#ffffff;
}

/*ふわふわ上下に動くボタン*/
.btn1-duga01_box{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 39px auto 0;
}

.btn1-duga01{
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 55px;
  letter-spacing: 1px;
  width: 69%;
  height: 55px;
  background: #f58300;
  margin: auto;
  cursor: pointer;
  border-radius: 8px;
}

.btn1-duga01 a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.btn1-duga01 a:hover {
  color: #fff;
  background: #f5d803;
  text-decoration: none;
  border-radius: 8px;
}

/*アニメーション｜ふわふわ*/
.animation1{
  animation: fuwafuwa 2s linear infinite;
  scale: 1;
}

@keyframes fuwafuwa{
 0%{transform:translateY(0)}
 50%{transform:translateY(-10px)}
 100%{transform:translateY(0)}
}

/*キラーンと光るボタン*/
.btn6-duga01_box{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 25px auto;
}

.btn6-duga01{
  color: #000;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 55px;
  letter-spacing: 0.5px;
  width: 88%;
  height: 55px;
  background: #fca358;
  margin: auto;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.btn6-duga01:before{
  position: absolute;
  content: '';
  display: inline-block;
  background: linear-gradient(to right,rgba(255,255,255,0), rgba(255,255,255,0.9));
  width: 50px;	/* 横幅 */
  height: 50px;	/* 縦幅 */
  top: -60px;	/* ボタン左上を基準に上へ60pxの位置 */
  left: -60px;	/* ボタン左上を基準に左へ60pxの位置 */
  /* アニメーションの動作指定 */
  animation-name:shine-run;	/* アニメーション名の指定 */
  animation-delay:0s;		/* アニメーションの開始時間指定 */
  animation-duration: 3s;	/* アニメーション動作時間の指定 */
  animation-timing-function: ease-in;	/* アニメーションの動き指定（徐々に早く）*/
animation-iteration-count: infinite;	/* アニメーションの無限繰り返しの指定 */
}

.btn6-duga01 a {
  display: block;
  color: #000;
  text-decoration: none;
}

.btn6-duga01 a:hover {
  color: #000;
  background: #f5ea83;
  text-decoration: none;
  border-radius: 8px;
}

/*アニメーション｜キラーン*/
@keyframes shine-run {
  0% {
  transform: scale(0) rotate(50deg);  /* アニメ開始時は大きさ0、50度の傾き */
  opacity: 0;  /* アニメ開始時は全透過 */
}
  40% {
  transform: scale(1) rotate(50deg);  /* 40%まで進む間に大きさを等倍に。傾きは50度のまま*/
  opacity: 1;  /* 透過しない（しっかり表示される）ように1を設定 */
}
  100% {
  transform: scale(250) rotate(50deg);  /* 最後は元の大きさの250倍になるようにする。傾きは50度のまま*/
  opacity: 0;  /* 全透過になるようにして、徐々に消えるような変化を付ける */
}
}


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

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

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