@charset "UTF-8";

/*!
Theme Name: Simplicity2 child
Template:   simplicity2
Version:    20161002
*/

/* Simplicity子テーマ用のスタイルを書く */


/*段落幅*/
.entry-content > p {
  margin: 0 0 1.8em;
}

/*行間幅*/
.entry-content p {
    line-height: 1.8;
}

/**
 * ===============================================
 * 特商法ページ
 * ===============================================
 */
/* シェア・フォロー非表示 */
#post-8 #sns-group {
    display: none;
}


/**
 * ===============================================
 * コンバージョンボタン
 * ===============================================
 */
.btn-cv {
  padding: .5em 0;
  overflow: hidden;
  position: relative;
}
.btn-cv a {
  border: solid #fff 3px;
  border-radius: 12px;
  box-shadow: 1px 1px 10px 0 #a1a1a1;
  color: #fff;
  display: block;
  font-size: 1.6em;
  font-weight: bold;
  line-height: 1.3;
  margin: 2em auto;
  padding: 1em 2em .8em;
  position: relative;
  text-align: center;
  text-decoration: none;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  vertical-align: middle;
  width: 59%;
}
.btn-cv.is-fz20 a {
  font-size: 20px;
}
.btn-cv a img {
  vertical-align: middle;
}
.btn-cv a:after {
  content: ' ' !important;
}

/* ボタン内のアイコン */
.btn-cv a:before {
  content: "\f138";
  font-family: "fontawesome";
  font-weight: normal;
  font-size: 1.1em;
  margin-top: -.6em;
  position: absolute;
  right: 15px;
  top: 50%;
}
.btn-cv a:hover {
  box-shadow: 1px 1px 2px 0 #a1a1a1;
  filter: alpha(opacity=70);
  opacity: .7;
}

/* 2つ連続で並べる場合の余白 */
.btn-cv + .btn-cv a {
  margin-top: 0;
}

/* ピンクボタン */
.btn-cv.is-orange a {
  background: #FFB74D;
  background: -webkit-linear-gradient(#FFB74D, #FFB74D);
  background: linear-gradient(#FFB74D, #FFB74D);
  text-shadow: 0 0 10px rgba(255,255,255,.8), 1px 1px 1px rgba(0,0,0,1);
}

/* 緑ボタン */
.btn-cv a {
  background: #00a23f;
  background: -webkit-linear-gradient(#00a23f, #39900a);
  background: linear-gradient(#00a23f, #39900a);
  text-shadow: 0 0 10px rgba(255,255,255,.8), 1px 1px 1px rgba(0,0,0,1);
}

/* 赤ボタン */
.btn-cv.is-red a {
  background: #fb4e3e;
  background: -webkit-linear-gradient(#00a23f, #39900a);
  background: linear-gradient(#fb4e3e, #d64b26);
}

/* 青ボタン */
.btn-cv.is-blue a {
  background: #09c;
  background: -webkit-linear-gradient(#09c, #069);
  background: linear-gradient(#09c, #069);
}

/* 黒ボタン */
.btn-cv.is-black a {
  background: #666;
  background: -webkit-linear-gradient(#8a8a8a, #666);
  background: linear-gradient(#8a8a8a, #666);
}

/* ボタンの光沢 */
.is-reflection a {
  overflow: hidden;
}
.is-reflection a:after {
  -moz-animation: is-reflection 4s ease-in-out infinite;
  -moz-transform: rotate(45deg);
  -ms-animation: is-reflection 4s ease-in-out infinite;
  -ms-transform: rotate(45deg);
  -o-animation: is-reflection 4s ease-in-out infinite;
  -o-transform: rotate(45deg);
  -webkit-animation: is-reflection 4s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  animation: is-reflection 4s ease-in-out infinite;
  background-color: #fff;
  content: " ";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: -180px;
  transform: rotate(45deg);
  width: 30px;
}
/* アニメーションを遅延させる */
.is-reflection + .is-reflection a:after {
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}
@keyframes is-reflection {
  0% { -webkit-transform: scale(0) rotate(45deg); transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes is-reflection {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

/* CVボタン矢印揺れ */
.is-trembling a:before {
  -webkit-animation-name:is-trembling;
  -webkit-animation-duration:.8s;
  -webkit-animation-iteration-count:infinite;
  -webkit-animation-timing-function:ease;
  -moz-animation-name:is-trembling;
  -moz-animation-duration:1s;
  -moz-animation-iteration-count:infinite;
  -moz-animation-timing-function:ease;
}
@-webkit-keyframes is-trembling {
  0% {-webkit-transform:translate(-3px, 0);}
  100% {-webkit-transform:translate(0, 0);}
}

/* ボタンをバウンドさせる */
.is-bounce {
  animation: bounce 4s infinite;
  -moz-animation: bounce 4s infinite;
  -webkit-animation: bounce 4s infinite;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
@-webkit-keyframes bounce {
  0%, 4%, 10%, 18%, 100% {-webkit-transform: translateY(0);}
  5% {-webkit-transform: translateY(-6px);}
  12% {-webkit-transform: translateY(-4px);}
}
@keyframes bounce {
  20%, 24%, 30%, 34%, 100% {-webkit-transform: translateY(0);transform: translateY(0);}
  25% {-webkit-transform: translateY(-6px);transform: translateY(-6px);}
  32% {-webkit-transform: translateY(-4px);transform: translateY(-4px);}
}
/* アニメーションを遅延させる */
.is-bounce + .is-bounce {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

/* ぷるるるるん！ */
.is-purun {
  -webkit-animation: is-purun 5s infinite;
  -moz-animation: is-purun 5s infinite;
  animation: is-purun 5s infinite;
}
@-webkit-keyframes is-purun {
   0% { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
   4% { -webkit-transform: scale(0.9, 0.9) translate(0%, 3%); }
   8% { -webkit-transform: scale(1.1, 0.8) translate(0%, 7%); }
  12% { -webkit-transform: scale(0.9, 0.9) translate(0%, -7%); }
  18% { -webkit-transform: scale(1.1, 0.9) translate(0%, 3%); }
  25% { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
}
@keyframes is-purun {
   0% { transform: scale(1.0, 1.0) translate(0%, 0%); }
   4% { transform: scale(0.9, 0.9) translate(0%, 3%); }
   8% { transform: scale(1.1, 0.8) translate(0%, 7%); }
  12% { transform: scale(0.9, 0.9) translate(0%, -7%); }
  18% { transform: scale(1.1, 0.9) translate(0%, 3%); }
  25% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}
/* アニメーションを遅延させる */
.is-purun + .is-purun {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}


/**
 * ===============================================
 * MediaQuery : スマホ対応
 * ===============================================
 */
@media only screen and (max-width: 767px) {
  /* コンバージョンボタン */
  .btn-cv a {
    font-size: 1.3em;
    margin: 0 auto 1em;
    width: 70%;
  }
}



/**
 * ===============================================
 * マーカー
 * ===============================================
 */
/* 明るい黄色マーカー */
.marker1 {
 background: linear-gradient(transparent 0%, #FFFF00 0%);
font-weight: bold; 
}

/*黄アンダー(明)*/
.yellow-under {background:rgba(0, 0, 0, 0)
	linear-gradient(transparent 60%, #FFFF00 0%)
	repeat scroll 0 0;}
	
/*緑アンダー(暗)*/
.green-under {background:rgba(0, 0, 0, 0)
	linear-gradient(transparent 60%, #D2FFD2 0%)
	repeat scroll 0 0;}

/* 紫っぽいマーカー */
.marker2 {
 background: linear-gradient(transparent 0%, #FF99CC 0%);
font-weight: bold; 
}

/* オレンジっぽい黄色マーカー */
.marker3 {
 background: linear-gradient(transparent 0%, #FFF000 0%);
font-weight: bold; 
}

.marker4 {
 background: linear-gradient(transparent 0%, #FFF1B7 0%);
 font-weight: bold;
}

/*(暗)黄のマーカ*/
.yellow_line {background:rgba(0, 0, 0, 0)
   linear-gradient(transparent 40%, #FFFEBB 0%)
    repeat scroll 0 0;}

/*(暗)緑のマーカ*/
.green_line{background:rgba(0, 0, 0, 0)
   linear-gradient(transparent 40%, #D2FFD2 0%)
    repeat scroll 0 0;}
	
/*(暗)青のマーカ*/
.blue_line{background:rgba(0, 0, 0, 0)
   linear-gradient(transparent 40%, #CCE5FF 0%)
    repeat scroll 0 0;}
	
/*(暗)赤のマーカ*/
.red_line{background:rgba(0, 0, 0, 0)
   linear-gradient(transparent 40%, #FFC6C6 0%)
    repeat scroll 0 0;}



/**
 * ===============================================
 * 見出し
 * ===============================================
 */
.midashi1 {
  font-size:23px;
  position: relative;
  padding: 1.0em;
  margin-bottom: 1.5em;
  background: #F99292;
  color: white;
}

.midashi1::before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 20px rgb(149, 158, 155);
}



/**
 * ===============================================
 * ボックス
 * ===============================================
 */




/**
 * ===============================================
 * .postid-10
 * ===============================================
 */
/* 口コミ画像、左上にコメント */
.postid-10 .example {
  position: relative;
  }

.postid-10 .example p {
  position: absolute;
  top: 0;/*画像の左上に配置*/
  left: 0;
  margin: 0; /*余計な隙間を除く*/
  color: white;/*文字を白に*/
  background: #FFBC60;/*背景色*/
  font-size: 15px;
  line-height: 1;/*行高は1に*/
  padding: 5px 10px;/*文字周りの余白*/
  }

.postid-10 .example img {
  width: 100%;
  }
  
/* ピンクリボン */
.postid-10 .ribbon3 {
  display: inline-block;
  position: relative;
  height: 60px;
  line-height: 60px;
  text-align: center;
  padding: 7px 0;
  font-size: 18px;
  background: #FFBC60;
  color: #FFF;
  box-sizing: border-box;
}

.postid-10 .ribbon3 h3 {
  color: #FFF;
  margin: 0;
  padding: 0 30px;
  border-top: dashed 2px rgba(255, 255, 255, 0.5);
  border-bottom: dashed 2px rgba(255, 255, 255, 0.5);
  line-height: 42px;
}

.postid-10 .ribbon3:before, .postid-10 .ribbon3:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

.postid-10 .ribbon3:before {
  /*左の山形*/
  top: 0;
  left: 0;
  border-width: 30px 0px 30px 15px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}

.postid-10 .ribbon3:after {
  /*右の山形*/
  top: 0;
  right: 0;
  border-width: 30px 15px 30px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}

.postid-10 .parent {
  text-align: center;
}

@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

.postid-10 .btn,
.postid-10 a.btn,
.postid-10 button.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;
}

.postid-10 .btn-wrap {
  margin: 30px 0 0;
}

.postid-10 a.btn-c {
  font-size: 1.4rem;
  position: relative;
  padding: 0.25rem 2rem 1.5rem 3.5rem;
  color: #fff;
  background: #F87CCA;
  -webkit-box-shadow: 0 5px 0 #f724a9;
  box-shadow: 0 5px 0 #f724a9;
}

.postid-10 a.btn-c span {
  font-size: 0.9rem;
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 200px;
  padding: 0.2rem 0;
  color: #F87CCA;
  border: 2px solid #F87CCA;
  border-radius: 0.5rem;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

.postid-10 a.btn-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);

  color: #fff;
  background: #F87CCA;
  -webkit-box-shadow: 0 2px 0 #f724a9;
  box-shadow: 0 2px 0 #f724a9;
}

.postid-10 a.btn-c:hover:before {
  left: 2rem;
}

/* コメント欄以外の項目非表示 */
.postid-10 div#h-top,
.postid-10 div#breadcrumb,
.postid-10 p.post-meta,
.postid-10 p.sns-share-msg,
.postid-10 ul.snsb.clearfix.snsbs,
.postid-10 ul.snsb.clearfix,
.postid-10 div.menu,
.postid-10 p.sns-follow-msg,
.postid-10 ul.snsp,
.postid-10 aside#related-entries,
.postid-10 div#footer.main-footer,
.postid-10 p.footer-post-meta,
.postid-10 div.comment-meta.commentmetadata,
.postid-10 div.navigation {
display: none;
}





/*--------------------
	.postid-38
--------------------*/
@media only screen and (max-width: 767px) {
.postid-38 .to1 {
	margin: -45px -10px 40px;
}

.postid-38 .to2 {
	margin: 0 -10px 40px;
}
}

.postid-38 .t3 {
  position: relative;
  padding: 0.25em 1em;
  border-top: solid 2px #f074b5;
  border-bottom: solid 2px #f074b5;
  font-size: 16pt;
  line-height: 1.5;
  font-weight: bold;
  color: #333333;
  margin-bottom: 20px;
}
.postid-38 .t3:before,
.postid-38 .t3:after {
  content: '';
  position: absolute;
  top: -7px;
  width: 2px;
  height: -webkit-calc(100% + 14px);
  height: calc(100% + 14px);
  background-color: #f074b5;
}
.postid-38 .t3:before {
  left: 7px;
}
.postid-38 .t3:after {
  right: 7px;
}

.postid-38 .bo22 {
    padding: 0.5em 0.5em;
    margin: 2em 0;
    color: #333;/*文字色*/
    background: #FFF;
    border: solid 3px #fad372;/*線*/
    border-radius: 10px;/*角の丸み*/
}
.postid-38 .bo22 p {
    margin: 0; 
    padding: 0;
}

.postid-38 .bo22 img {
    margin: 5px 20px 5px 5px; 
}

.postid-38 .t4 {
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #333;/*文字色*/
  font-size: 14pt;
  font-weight: bold;
  background: transparent;/*背景透明に*/
  border-left: solid 5px #f074b5;/*左線*/
  margin-bottom: 20px;
}

.postid-38 .sapo {
  text-align: center;
  margin-top: 40px;
}

.postid-38 .sapo img {
  width: 30%;
  border: solid 3px #f074b5;
  border-radius: 50%;
  padding: 0;
}


ul.u1, ol.u1 {
  background: #fffcf4;
  border-radius :8px;/*角の丸み*/
  box-shadow :0px 0px 5px silver;/*5px=影の広がり具合*/
  padding: 0.5em 0.5em 0.5em 2em;
  margin-bottom: 30px;
}
ul.u1 li.l1, ol.u1 li.l1 {
  color: #333333;
  font-weight: bold;
  line-height: 1.5;
  padding: 0.5em 0;
}



h2.m1 {
  position: relative;
  color: white;
  background: #FF914D;
  line-height: 1.4;
  padding: 0.5em 0.5em 0.5em 1.8em;
  border: none;
  margin-bottom: 20px;
}

h2.m1:before {
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
  font-weight: 900;
  position: absolute;
  left : 0.5em; /*左端からのアイコンまでの距離*/
}


h3.m3 {
  position: relative;
  color: #FF914D;
  font-size: 20px;
  padding: 10px 0;
  text-align: center;
  margin: 2.5em 0;
  border-bottom: none;
}
h3.m3:before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  width: 180px;
  height: 108px;
  border-radius: 50%;
  border: 5px solid #ffd4ba;
  border-left-color: transparent;
  border-right-color: transparent;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}


h3.m4 {
  color: #FF914D;
  position: relative;
  display: block;
  margin: 35px auto 40px;
  text-align: center;
  border-bottom: none;
}
h3.m4:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #FF914D;
  border-radius: 2px;
}



.bg_pattern {
  margin: -38px -16px 30px;
  padding: 10px 16px 10px;
  background-color: #ffe9a7;
  z-index: -1;
}
.Lines_v4 {
  background-size: 40px 40px;
  background-image:  repeating-linear-gradient(to right, #FFE69C, #FFE69C 2px, #FFF6DC 2px, #FFF6DC);
}



/*--------------------
	.postid-231
--------------------*/
@media only screen and (max-width: 767px) {
    .postid-231 .to1 {
        margin: -45px -10px 40px;
    }

    .postid-231 .to2 {
        margin: 0 -10px 40px;
    }
}

.postid-231 .t3 {
    position: relative;
    padding: 0.25em 1em;
    border-top: solid 2px #77cdc9;
    border-bottom: solid 2px #77cdc9;
    font-size: 16pt;
    line-height: 1.5;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
}

.postid-231 .t3:before,
.postid-231 .t3:after {
    content: '';
    position: absolute;
    top: -7px;
    width: 2px;
    height: -webkit-calc(100% + 14px);
    height: calc(100% + 14px);
    background-color: #77cdc9;
}

.postid-231 .t3:before {
    left: 7px;
}

.postid-231 .t3:after {
    right: 7px;
}

.postid-231 .bo22 {
    padding: 0.5em 0.5em;
    margin: 2em 0;
    color: #333;
    /*文字色*/
    background: #FFF;
    border: solid 3px #77cdc9;
    /*線*/
    border-radius: 10px;
    /*角の丸み*/
}

.postid-231 .bo22 p {
    margin: 0;
    padding: 0;
}

.postid-231 .bo22 img {
    margin: 5px 20px 5px 5px;
}

.postid-231 .t4 {
    padding: 0.25em 0.5em;
    /*上下 左右の余白*/
    color: #333;
    /*文字色*/
    font-size: 14pt;
    font-weight: bold;
    background: transparent;
    /*背景透明に*/
    border-left: solid 5px #77cdc9;
    /*左線*/
    margin-bottom: 20px;
}

.postid-231 .sapo {
    text-align: center;
    margin-top: 40px;
}

.postid-231 .sapo img {
    width: 30%;
    border: solid 3px #77cdc9;
    border-radius: 50%;
    padding: 0;
}