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

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

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

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

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

追加CSS


/*--PARTS-------------*/

.box {
  background-color: rgba(230, 230, 230, 0.5);
  padding: 1em;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1em;
}

table th,
table td {
  padding: 0.25em 0.5em;
  border: 1px #ccc solid;
  background-color: #fff;
  line-height: 1.6;
}

table thead th {
  background-color: #60a868;
  color: #fff;
}

table tbody th,
table tbody tr + td {
  background-color: #eee;
  font-weight: normal;
  padding: 0.5em;
}

table td {
  padding: 0.5em;
}

table .total th,
table .total td {
  border-top: 4px #ccc double;
}

em {
  background: linear-gradient(transparent 50%, #c4fcd0 50%);
}

strong {
  color: #ff8125;
}

a {
  color: #f44336;
  text-decoration: none;
}

/* list */
ul.mark {
    padding: 0.5em 1em 0.5em 1.8em;
    margin: 1em 0;
    border: solid 1px #c4ecff;
}

ul.mark li {
  position: relative;
}

ul.mark li::before {
  content: "";
  display: inline-block;
  margin-right: 0.8em;
  margin-left: -1em;
  width: 0.5em;
  height: 0.5em;
  background-color: #98d1e4;
  border-radius: 100%;
  vertical-align: top;
  margin-top: 0.45em;
}
/*ul.mark strong{
  color: #535353;
}*/

ul.mark-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
}

ul.mark-flex li {
  margin-right: 0.25em;
}



ul.check {
    padding: 2.5em 1em 1em 1.8em;
    margin: 2em 0 1em;
    background-color: #6faec4;
    color: #fff;
    position: relative;
}
ul.check::before{
  content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: 32%;
    background-position: center left 1.2em;
    background-image: url(../img/icon/pen_icon.svg);
    width: 4em;
    height: 2em;
    left: 0em;
    top: 0;
    background-color: #1387a4;
    border-bottom-right-radius: 30em;
}

ul.check li::before{
  content: "";
  display: inline-block;
  margin-right: 0.8em;
  margin-left: -1em;
  width: 0.5em;
  height: 0.5em;
  background-color: #fff;
  border-radius: 100%;
  vertical-align: top;
  margin-top: 0.45em;
}

ul.number {
  position: relative;
    border: solid 1px #c4ecff;
    padding: 0.5em;
    margin: 1em 0;
}

ul.number span {
  position: absolute;
  top: auto;
  left: 0.5em;
  background: #3eb8d0;
  color: #fff;
  width: 1.5em;
  text-align: center;
}

ul.mark li,
ul.number li {
  margin: 0.4em 0;
}
ul.number li{
  margin: 0.5em 0;
  border-bottom: solid 1px #ccc;
  padding-bottom: 0.5em;
  padding-left: 2.5em;
}
ul.mark li a,
ul.number li a{
  color: #2191c7;
    text-decoration: underline;
}
ul.mark.kaime{
  display: flex;
  padding: .5rem 1rem;
  flex-wrap: wrap;
}
ul.mark.kaime li{
  padding-left: 1rem;
  width: calc(100%/2);
  font-size: .9rem;
}

.jump {
  -webkit-animation: 0.8s jump ease-out infinite;
  animation: 0.8s jump ease-out infinite;
}

.svg{
  display: inline-block;
  width: 1em;
  height: 1em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: top;
  margin-right: 0.3em;
}
.svg.beginner{
  background-image: url(../img/icon/beginner_icon.svg);
}
.svg.osusume{
  background-image: url(../img/icon/hart_icon.svg);
}

@-webkit-keyframes jump {
  20% {
    -webkit-transform: translateY(-10px);
  }
}

@keyframes jump {
  20% {
    transform: translateY(-10px);
  }
}

.linkArea {
  margin: 1em 0;
}

.linkArea a {
  text-decoration: none;
  font-weight: bold;
  color: #ff9a00;
  display: flex;
  align-items: center;
}

.linkArea a::before {
  content: "";
  background: var(--whiteArrow);
  background-size: 70% 70%;
  background-color: #ff9a00;
  border-radius: 50%;
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
  transform: rotate(90deg);
  margin-right: 0.2em;
}

.linkArea-check {
  border: 2px #f44336 solid;
  padding: 1em 0.5em 0.5em;
  position: relative;
  display: flex;
  justify-content: center;
}

.linkArea-check::before {
  content: "CHECK!!";
  position: absolute;
  top: -1em;
  line-height: 1;
  padding: 0.5em 1em;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f44336;
  color: #fff;
  font-size: 80%;
  font-weight: bold;
  border-radius: 2em;
}

.linkArea-check a {
  position: relative;
  color: #f44336;
  padding-left: 1.5em;
  display: block;
}

.linkArea-check a::before {
  position: absolute;
  left: 0;
  top: auto;
}

.scroll {
  overflow-x: scroll;
  margin-bottom: 2em;
}

.scroll::before {
  content: "▼ スクロールしてご覧ください。▼";
  display: block;
  text-align: center;
  margin-bottom: 0.5em;
}

.scroll table {
  table-layout: auto;
  width: 700px;
  font-size: 90%;
}

.more {
  text-align: right;
  margin: 0;
}

.more span {
  display: inline-block;
  font-size: 80%;
  background-color: #999;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 2em;
}

.h_img{
  max-width: 600px;
  height: auto;
  margin: 1em auto 2.5em;
  position: relative;

}
.h_img img{
  border: solid 1px #ebebeb;
}
.h_img figcaption{
  position: absolute;
  bottom: 0.2em;
  left: 0;
  background: #333;
  padding: 0.5em 1em;
  color: #fff;
}

.reverse{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}

.bannerArea {
	max-width:500px;
	margin: 1em auto;
}

.bannerArea a {
	display: block;
}

.bannerArea a img {
}

/*--記事ページパーツ------------------------------------------*/
.document h1,
.h1 {
  font-size: 1.4em;
  font-weight: bold;
  padding: 0 0.7em;
  line-height: 1.2;
  margin-top: 0.7em;
  margin-bottom: 0.5em;
}

.document h2,
.h2 {
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
  padding: 0.5em 1em;
  background: linear-gradient(
    135deg,
    #eee 16%,
    #3f4f5c 16%,
    #6e7a85 32%,
    #ff293a 32%,
    #ff7883 48%,
    #006cb7 48%,
    #419ddc 64%,
    #ffbc00 64%,
    #ffdd44 80%,
    #09874f 80%,
    #0bdd81 96%,
    #00ff8f
  );

  text-shadow: 0 0 1px rgba(0, 0, 0, 0.8), 0 -1px 1px rgba(0, 0, 0, 0.8),
    0 1px 1px rgba(0, 0, 0, 0.8), -1px 0px 1px rgba(0, 0, 0, 0.8),
    1px 0px 1px rgba(0, 0, 0, 0.8), -1px -1px 1px rgba(0, 0, 0, 0.8),
    -1px 1px 1px rgba(0, 0, 0, 0.8), 1px -1px 1px rgba(0, 0, 0, 0.8),
    1px 1px 1px rgba(0, 0, 0, 0.8);
}

.document h3,
.h3 {
  margin: 2em 0 1em
}

.document h3 span,
.h3 span {
  font-size: 1.25em;
    font-weight: 900;
    display: inline;
    line-height: 1.2;
    padding: 0.2em 0;
    color: #286ea1;
    border-bottom: solid 0.1em #69a3b4;
    width: 100%;
    display: block;
}

.document h4 {
    font-weight: bold;
    margin-bottom: 0.5em;
    border-left: 3px #558cbd solid;
    background: #eeefff;
    padding: 0.5em;
}





