/* 初期設定 */
* {
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}

body {
  font: 17px/1.5 "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  background-color: #fff;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width:699px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

.marker {
  background: linear-gradient(transparent 60%, #FFFFBB 60%);
}

.marker2 {
  background: linear-gradient(transparent 0%, #FCF16E 0%);
}

mark.mark-yellow {
  background: linear-gradient(to bottom, transparent 0%, transparent 40%, #ffff66 40%, #ffff66 100%);
  height: 80%;
  vertical-align: bottom;
}

mark.mark-pink {
  background: linear-gradient(to bottom, rgba(255, 207, 229, 0) 20%, #ffcfe5 100%);
  color: #454545;
}

mark.mark-blue {
  background: linear-gradient(to bottom, rgba(204, 229, 255, 0) 20%, #CCE5FF 100%);
}


.red {
  color: red;
  font-weight: bold;
}

.orange {
  color: #ff9925;
  font-size: 19px;
}

.gray {
  color: gray;

}

.white {
  color: white;

}

.gray2 {
  color: #424242
}

.tar {
  text-align: right;
}

.fsS {
  font-size: 0.7rem;
  text-align: right;
  margin-top: 6%;
}

.fsN {
  font-size: 1rem;
  text-align: right;
  margin-top: 3%;
  margin-bottom: -2%;
}

.fsM {
  font-size: 0.9rem;
}

.wrapper {
  display: block;
  position: relative;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  padding: 10px 10px 20px 10px;
  background-color: #fff;
  overflow: hidden;
}

.hea {
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
  padding: 10px;
}

.hea img {
  width: 14%;
  margin: 0 auto;
}

video {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: auto;
}

/* 点滅 */
.blinking {
  -webkit-animation: blink 0.5s ease-in-out infinite alternate;
  -moz-animation: blink 0.5s ease-in-out infinite alternate;
  animation: blink 0.5s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media screen and (max-width:699px) {
  .hea img {
    width: 42%;
  }
}

/*footer*/
/*フッター*/
footer {
  margin-right: auto;
  margin-left: auto;
  background-color: #5c5c5c;
  padding: 30px 10px;
  text-align: center;
  margin-top: 5%;
}

@media (max-width:677px) {
  footer {
    padding-bottom: 13%;
    padding: 18px 5px;
    padding-bottom: 11%;
  }
}

footer p {
  font-size: 12px;
}

footer a:visited,
footer a:link {
  color: #ffffff;
  display: block;
}

.fv_wrapper {
  max-width: 720px;
  margin: 0 auto;
  background-color: #fff;
}

.foo {
  margin-right: auto;
  margin-left: auto;
  background-color: #999;
  padding: 30px 10px;
}

.foo a {
  color: #fff;
}

p {
  color: #000;
  margin-top: 20px;
  line-height: 1.7;
  vertical-align: baseline;
  font-size: 15px;
}

a {
  display: block;
  color: #1E73BE;
  text-decoration: none;
}

img {
  width: 100%;
  object-fit: contain;
  display: block;
  vertical-align: bottom;
}

.taC {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.taB {
  display: block;
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  color: #454545;

}

.taR {
  display: block;
  text-align: right;
}

.mt {
  margin-top: 25px;
}

.mb {
  margin-bottom: 6px;
}

.fsL {
  font-size: 20px;
}

.fsLL {
  font-size: 23px;
}

.fsLLL {
  font-size: 27px;
}

.justify {
  text-align: justify;
}

@media (max-width:677px) {
  .justify {
    text-align: justify;
    font-size: 15px;
  }
}

/* パンくずリスト */
.breadcrumb {
  margin: 0;
  padding: 1.1em 1em;
  list-style: none;
  background: #e6f6ff;
  overflow: hidden;
  height: 30px;
}

@media screen and (max-width:699px) {
  .breadcrumb {
    height: 25px;
    padding: 0.7em;
  }
}

.breadcrumb li {
  display: inline;
  /*横に並ぶように*/
  list-style: none;
}

.breadcrumb li:after {
  /* >を表示*/
  font-family: FontAwesome;
  content: '\f101';
  padding: 0 0.2em;
  color: #708794;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color: #1e4255;
  display: inline;
}

.breadcrumb li:first-child a:before {
  /*家アイコンに*/
  font-family: FontAwesome;
  content: '\f015';
  font-weight: normal;
  font-size: 1.1em;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

/* ページタイトル */
.page_ttl {
  margin-top: 10px;
  padding: 10px;
}

@media screen and (max-width:699px) {
  .page_ttl {
    font-size: 20px;
  }
}

/* 睡眠コンサルタント */
.consul {
  padding: 10px;
  border: 1px solid #dadada;
  display: flex;
  align-items: flex-start;
  border-radius: 10px;
}

.consul>img {
  margin: 5px;
  width: 120px;
  border-radius: 80px;
}

.consul_comment {
  width: 80%;
  padding: 10px;
}

@media screen and (max-width:699px) {
  .consul>img {
    width: 70px;
  }
}

.consul_comment>p {
  margin: 0;
}

.consul_comment>p:first-child,
.consul_comment>p:nth-child(2) {
  font-weight: bold;
  font-size: 16px;
}


/* 下層ページ遷移ボタン */
.jamp_ttl {
  font-weight: bold;
  font-size: 19px;
}

.jamp {
  text-decoration: none;
  color: #000;
  background-color: #fff;
  padding: 20px;
  border: 1px solid #dadada;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 5px 5px #f5f5f5;
  position: relative;
}

.jamp:hover {
  opacity: 0.6;
}

.jamp>i {
  position: absolute;
  bottom: 38%;
  right: 20px;
  color: #dadada;
}

/* 目次 */
.mokuji_ttl {
  font-weight: bold;
  font-size: 19px;
}

.mokuji_list {
  padding-left: 10px;
  margin-left: 15px;
}

.mokuji_list li {
  list-style: disc;
}

.mokuji_list a {
  color: #000;
}

.mokuji_list a:hover {
  text-decoration: underline;
}

/* 記事 */
section {
  margin-top: 30px;
}


h1 {
  line-height: 1.4;
  padding: 0px 0;
  text-align: center;
  margin-top: 6%;
}

h2 {
  margin-top: 12%;
  margin-bottom: 5%;
}

/*ビックリマークのアイコンをつけた囲み枠 */
.box82 {
  margin: 1.5em auto;
  padding: 1em 1em 1em;
  background-color: #FFFFBB;
  /* 背景色 */
  border-radius: 1px;
  /*ボックス角の丸み*/
}

.box82 .box-title {
  color: #474747;
  /* タイトル文字色 */
  font-size: 18px;
  font-weight: bold;
}

.box82 .box-title:before {
  font-family: "Font Awesome 5 Free";
  content: "\f06a";
  font-size: 18px;
  margin: 0 3px 0 0;
  font-weight: bold;
}

.box27 {
  position: relative;
  margin: 2.5em 0;
  padding: 0.5em 1em;
  border: solid 3px #39B6F9;
}

.box27 .box-title {
  position: absolute;
  display: inline-block;
  top: -31px;
  left: -3px;
  padding: 3px 9px;
  height: 25px;
  line-height: 25px;
  font-size: 17px;
  background: #39B6F9;
  color: #ffffff;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
}

.box27 p {
  margin: 0;
  padding: 0;
}

.box26 {
  position: relative;
  margin: 2em 0;
  padding: 0.5em 1em;
  border: solid 1px #b3b3b3;
  border-radius: 8px;
}

.box26 .box-title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 19px;
  background: #FFF;
  color: #666666;
  font-weight: 500;
}

.box26 p {
  margin: 0;
  padding: 0;
}

.syoukai {
  margin-top: 10%;
  margin-bottom: 5%;
}

h1 {
  border-bottom: solid 3px #c2f2ff;
  position: relative;
  font-size: 24px;
}

h1:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #61cfee;
  bottom: -3px;
  width: 20%;
}

.erabikata {
  font-weight: bold;
  font-size: 19px;
  margin-top: 40px;
  margin-bottom: 10px;
}

#erabikata div:nth-child(2) .erabikata {
  margin-top: 20px;
}



h3 {
  color: #0073c7;
  position: relative;
  padding: 0.7em 1em;
  font-size: 22px;
  border-top: solid 2px #6cb4e4;
  border-bottom: solid 2px #6cb4e4;
  background: -webkit-repeating-linear-gradient(-45deg, #e0f6ff, #e0f6ff 3px, #d4f2ff 3px, #d4f2ff 7px);
  background: repeating-linear-gradient(-45deg, #e0f6ff, #e0f6ff 3px, #d4f2ff 3px, #d4f2ff 7px);
}
/*
h3:before {
  content: '';
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  background-image: url('../img/no1.png');
  background-size: contain;
  background-repeat: no-repeat;
  left: 0.75em;
  top: 10%;
}

.h3_2:before {
  content: '';
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  background-image: url('../img/no2.png');
  background-size: contain;
  background-repeat: no-repeat;
  left: 0.75em;
  top: 10%;
}

.h3_3:before {
  content: '';
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  background-image: url('../img/no3.png');
  background-size: contain;
  background-repeat: no-repeat;
  left: 0.75em;
  top: 10%;
}

.h3_4:before {
  content: '';
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  background-image: url('../img/no4.png');
  background-size: contain;
  background-repeat: no-repeat;
  left: 0.75em;
  top: 10%;
}


.h3_5:before {
  content: '';
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  background-image: url('../img/no5.png');
  background-size: contain;
  background-repeat: no-repeat;
  left: 0.75em;
  top: 10%;
}


.h3_6:before {
  content: '';
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  background-image: url('../img/no6.png');
  background-size: contain;
  background-repeat: no-repeat;
  left: 0.75em;
  top: 10%;
}
*/

@media screen and (max-width: 700px) {
  h3 {
    color: #0073c7;
    position: relative;
    padding: 0.7em 1em;
    font-size: 17px;
    border-top: solid 2px #6cb4e4;
    border-bottom: solid 2px #6cb4e4;
    background: -webkit-repeating-linear-gradient(-45deg, #e0f6ff, #e0f6ff 3px, #d4f2ff 3px, #d4f2ff 7px);
    background: repeating-linear-gradient(-45deg, #e0f6ff, #e0f6ff 3px, #d4f2ff 3px, #d4f2ff 7px);
  }

  /*h3:before {
    content: '';
    display: block;
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: url('../img/no1.png');
    background-size: contain;
    background-repeat: no-repeat;
    left: 0.75em;
    top: 10%;
  }

  .h3_2:before {
    content: '';
    display: block;
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: url('../img/no2.png');
    background-size: contain;
    background-repeat: no-repeat;
    left: 0.75em;
    top: 10%;
  }

  .h3_3:before {
    content: '';
    display: block;
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: url('../img/no3.png');
    background-size: contain;
    background-repeat: no-repeat;
    left: 0.75em;
    top: 10%;
  }*/
}



h4 {
  position: relative;
  display: inline-block;
  padding: 0.8rem 0rem 0.8rem 2.1rem;
  color: #0073c7;
  /*border-radius: 100vh 0 0 100vh;*/
  background: #ccf4ff;
  width: 95%;
  font-weight: bold;
  font-size: 22px;
  margin-top: 10%;
}

@media screen and (max-width: 700px) {
  h4 {
    font-size: 20px;
    width: 90%;
    margin-top: 15%;
  }
}

h4::before {
  position: absolute;
  top: calc(50% - 7px);
  left: 10px;
  width: 14px;
  height: 14px;
  content: '';
  border-radius: 50%;
  background: #fff;
}

.hensyuubu {
  margin: 20px auto 0;
  padding: 1em 1em 1.5em;
  background-color: #d4eaff;
  border-radius: 10px;
  font-size: 14.5px;
}

.h6_1 {
  position: relative;
  padding: 1.5rem -1rem;
  color: #fff;
  border-radius: 10px;
  text-indent: 1rem;
  margin-top: 3%;
  background: repeating-linear-gradient(-45deg, #268ad3, #268ad3 3px, #0073c7 3px, #0073c7 7px);
  border-bottom: none;
}

.h6_1:after {
  position: absolute;
  bottom: -9px;
  left: 1em;
  width: 0;
  height: 0;
  content: '';
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #0073c7 transparent transparent transparent;
}

h5 {
  font-size: 17px;
  color: #0073c7;
  /*文字色*/
  /*線の種類（点線）2px 線色*/
  border-bottom: dashed 2px #439cdb;
  margin-bottom: 0%;
  margin-top: 10%;
  text-align: left;
  padding-left: 1em;
  text-indent: -1em;
}

h6 {
  padding: 0.5em;
  /*文字周りの余白*/
  color: #252525;
  /*文字色*/
  background: #e4e4e4;
  /*背景色*/
  border-bottom: solid 3px #b4b4b4;
  /*下線*/
  font-size: 17px;
  margin-bottom: 3%;
}


li {
  font-weight: bold;
  text-decoration: underline;
}

ul,
li {
  margin-bottom: 7px;
  list-style: none;
  font-size: 14px;
}

.column_list ul li {
  margin-bottom: 5px;
  list-style: none;
  margin-left: -1.5em;
  padding: 10% 10% 10% 10%;
}

.box-voice {
  flex-direction: column;
}

.ranking01 {
  margin-bottom: 6%;
}

.mattress {
  margin-top: 5%;
}

/* top3 */
.container {
  margin: 16px auto;
  width: 100%;
  display: flex;
}

.container .item {
  margin: 5px;
  padding: 20px 10px;
}

.container .n01 {
  color: #ffffff;
  background-color: #ffa200;
  width: 25%;
  display: block;
  font-weight: 700;
  padding: 2% 0;
  border-radius: 10px;
  box-shadow: 0 5px #d68800;
  text-align: center;
  font-size: 14px;
  position: absolute;
  left: 6.5%;
  margin-top: -23%;
}

.container .n02 {
  color: #ffffff;
  background-color: #ffa200;
  width: 25%;
  display: block;
  font-weight: 700;
  padding: 2% 0;
  border-radius: 10px;
  box-shadow: 0 5px #d68800;
  text-align: center;
  font-size: 14px;
  position: absolute;
  margin-left: 36%;
  margin-top: -23%;
}

.container .n03 {
  color: #ffffff;
  background-color: #ffa200;
  width: 25%;
  display: grid;
  font-weight: 700;
  padding: 2% 0;
  border-radius: 10px;
  box-shadow: 0 5px #d68800;
  text-align: center;
  font-size: 14px;
  position: absolute;
  right: 6.5%;
  margin-top: -23%;
}

.display-inline-block {
  display: inline-block;
  width: 150px;
  padding: 10px 0;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background-color: #000;
}

@media screen and (max-width: 700px) {
  .container .n01 {
    color: #ffffff;
    background-color: #ffa200;
    width: 23%;
    display: block;
    font-weight: 700;
    padding: 2% 0;
    border-radius: 10px;
    box-shadow: 0 5px #d68800;
    text-align: center;
    font-size: 14px;
    position: absolute;
    left: 7.5%;
    margin-top: -23%;
  }

  .container .n02 {
    color: #ffffff;
    background-color: #ffa200;
    width: 23%;
    display: block;
    font-weight: 700;
    padding: 2% 0;
    border-radius: 10px;
    box-shadow: 0 5px #d68800;
    text-align: center;
    font-size: 14px;
    position: absolute;
    margin-left: 36%;
    margin-top: -23%;
  }

  .container .n03 {
    color: #ffffff;
    background-color: #ffa200;
    width: 23%;
    display: grid;
    font-weight: 700;
    padding: 2% 0;
    border-radius: 10px;
    box-shadow: 0 5px #d68800;
    text-align: center;
    font-size: 14px;
    position: absolute;
    right: 7.5%;
    margin-top: -23%;
  }
}

/* コラム */
.all {
  max-width: 750px;
  margin: 0 auto;
}

.inner {
  padding: 0 10px;
}

.main02 {
  margin: 0 auto;
  background-color: #fff;
  padding: 0 0 5%;
}

@media (max-width: 760px) {
  .main02 h2 {
    font-size: 20px;
    line-height: 1.4;
    padding: 0.5rem 1rem;
  }
}

.main02 h2 {
  background: linear-gradient(90deg, #ff8757 0%, #ff8a00 100%);
  padding: 1rem 2rem;
  color: #fff;
  font-weight: bold;
  font-size: 23px;
  line-height: 1.5;
  margin: 0;
}

.writer {
  padding: 10px;
  margin-top: 0%;
  margin-bottom: 20px;
  border: 1px solid #8ab3df80;
  display: flex;
  align-items: flex-start;
  background-color: #ffffff;
  background-image: linear-gradient(90deg, #8ab3df2d 1px, transparent 1px), linear-gradient(#8ab3df2d 1px, transparent 1px);
  background-position: 10px 10px;
  background-size: 21px 21px;
}

.writer img {
  margin: 5px;
  width: 94px;
  border-radius: 80px;
}

.writer_comment {
  width: 80%;
  padding-left: 10px;
}

@media screen and (max-width: 700px) {
  .writer img {
    width: 80px;
  }

  .writer .writer_comment p {
    margin: 8px 0;
  }
}

.taL {
  margin-top: 10px;
  line-height: 1.3;
  padding-left: 1em;
  text-indent: -1em;
}


/* ---------ロゴスライド--------- */
.loopSlide {
  display: flex;
  width: 724px;
  height: 143px;
  overflow: hidden;
  margin-top: -26%;

  img {
    width: auto;
    height: 100%;

    &:first-child {
      animation: slide1 60s -30s linear infinite;
    }

    &:last-child {
      animation: slide2 60s linear infinite;
    }
  }
}

@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes slide2 {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-200%);
  }
}

@media screen and (max-width: 767px) {
  .loopSlide {
    height: 80px;
    width: 100%;
    margin-top: -27%;
  }

  .fsN {
    font-size: 0.7rem;
    text-align: right;
    margin-top: 3%;
    margin-bottom: -5%;
  }
}

/* ---------ロゴスライドここまで--------- */



@media screen and (min-width:640px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width:640px) {
  .sp {
    display: block;
  }
}

.tac {
  text-align: center;
}

.mt {
  margin-top: 30px;
}

.otoku {
  margin-top: 20%;
  margin-bottom: 5%;
}

/*比較表*/
.sticky {
  position: sticky;
  left: 0;
  z-index: 50;
}


.table_inner {
  border: 3px solid #ff932f;
  overflow: hidden;
  overflow-x: scroll;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.rankTable img {
  margin: 0;
}

.rankTable table {
  width: 1638px;
  text-align: center;
  line-height: 1.2;
}

.rankTable table tr {
  border-bottom: 1px dotted #ddd;
}

.rankTable table th {
  vertical-align: middle;
  width: 9.0%;
  font-size: 12px;
  z-index: 88;
  padding: 0;
  background-color: #ffa200;
  color: #fff;
  left: 0;
  border-bottom: 1px dotted #fff;
}

.rankTable table td {
  width: auto;
  border-bottom: 1px dotted #eee;
  border-top: none;
  padding: 0 5px;
  font-size: 12px;
  position: relative;
  vertical-align: middle;
  border-right: 1px dotted #ddd;
  background: none;
}

.rankTable .table_width {
  width: 10%;
}

.rankTable tr:nth-of-type(2) td {
  background-color: #fffbe8;
}

.rankTable .name {
  background-color: #ffe0a7 !important;
  position: sticky;
  font-weight: 700;
}

.rankTable .bgblue {
  background-color: #fffbe8 !important;
}

.rankTable a {
  color: #000;
  text-decoration: none;
}

.rankTable .table_cta {
    background-color: #6a8d68;
    width: 100%;
    display: block;
    font-weight: 700;
    padding: 10% 0;
    border-radius: 10px;
    box-shadow: 0 5px #3a5739;
}

.rankTable .table_cta2 {
    background-color: #40b539;
    box-shadow: 0 5px #1b5d1f;
}

.rankTable .table_cta a {
  color: #FFF;
}

.sogood {
  font-size: 35px;
  color: #ed340c;
}

.good {
  font-size: 34px;
  color: #ffbb00;
  font-weight: normal;
}

.soso {
  font-size: 34px;
  font-weight: bold;
  color: #ffbb00;
}

.hikaku {
  background-color: #000;
}


@media screen and (max-width:768px) {

  /*比較表*/
  .rankTable img {
    margin: 0;
  }

  .rankTable table {
    width: 1638px;
    text-align: center;
    line-height: 1.2;
  }

  .rankTable table tr {
    border-bottom: 1px dotted #ddd;
  }

  .rankTable table th {
    vertical-align: middle;
    width: 9.0%;
    font-size: 13px;
    z-index: 88;
    padding: 0;
    background-color: #ffa200;
    color: #fff;
    left: 0;
    border-bottom: 1px dotted #fff;
  }

  /* 不要？
  .ranktable th.select_01 {
    width: 18px;
    height: auto;
    vertical-align: middle;
    margin-right: 0.4rem;
  }

  .ranktable table th.select_01 img {
    width: 18px;
    height: auto;
    vertical-align: middle;
    margin-right: 0.4rem;
  } */

  .rankTable table td {
    width: auto;
    border-bottom: 1px dotted #eee;
    border-top: none;
    padding: 0 5px;
    font-size: 12px;
    position: relative;
    vertical-align: middle;
    border-right: 1px dotted #ddd;
    background: none;
  }

  .rankTable .table_width {
    width: 8%;
  }

  .rankTable tr:nth-of-type(2) td {
    background-color: #fffbe8;
  }

  .rankTable a {
    color: #000;
    text-decoration: none;
  }

  .rankTable .table_cta {
    background-color: #6a8d68;
    width: 100%;
    display: block;
    font-weight: 700;
    padding: 10% 0;
    border-radius: 10px;
    box-shadow: 0 5px #3a5739;
  }

  .rankTable .table_cta2 {
    background-color: #40b539;
    box-shadow: 0 5px #1b5d1f;
  }

  .rankTable .table_cta a {
    color: #FFF;
  }

  .sogood {
    font-size: 35px;
    color: #ed340c;
  }

  .good {
    font-size: 34px;
    color: #ffbb00;
    font-weight: normal;
  }

  .soso {
    font-size: 34px;
    font-weight: bold;
    color: #ffbb00;
  }
}

.fukidashi-l {
  display: flex;
  align-items: center;
}

.fukidashi-l img {
  max-width: 80px;
}

.fukidashi-r {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.fukidashi-r img {
  max-width: 87px;
}

.balloon1-right_01:before {
  content: "";
  position: absolute;
  top: 20%;
  left: 100%;
  margin-top: -15px;
  border: 10px solid transparent;
  border-left: 14px solid #e0edff;
}

.balloon1-left_01:before {
  content: "";
  position: absolute;
  top: 20%;
  right: 100%;
  margin-top: -15px;
  border: 10px solid transparent;
  border-right: 14px solid #fff;
}

.balloon1-left_01 {
  position: relative;
  display: inline-block;
  margin: 0 0 0 15px;
  padding: 10px 15px;
  min-width: 120px;
  max-width: 100%;
  border-radius: 10px;
  color: #000;
  font-size: 16px;
  background: #ffffff;
  /* box-shadow: 2px 4px 3px rgb(0 0 0 / 11%); */
  width: 80%;
}

.balloon1-left_01 p {
  padding: 0;
}

.balloon1-left_01 {
  position: relative;
  display: inline-block;
  margin: 10px 0 10px 15px;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  font-size: 16px;
  background: #ffffff;
  border-radius: 10px
}

.balloon1-left_01:before {
  content: "";
  position: absolute;
  top: 60%;
  left: -20px;
  margin-top: -15px;
  border: 10px solid transparent;
  border-right: 15px solid #ffffff;
}

.balloon1-left_01 p {
  margin: 0;
  padding: 0;
}

.balloon1-right_01 {
  position: relative;
  display: inline-block;
  margin: 10px 15px 10px 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #000;
  font-size: 16px;
  background: #ffffff;
  border-radius: 10px;
}

.balloon1-right_01:before {
  content: "";
  position: absolute;
  top: 62%;
  right: -23px;
  margin-top: -15px;
  border: 8px solid transparent;
  border-left: 11px solid #ffffff;
}


/*ミニ比較表*/
/* -----------------ミニ比較表 ------------------*/
.rank {
  background: #fff;
  padding: 17px 4% 3%;
  margin: 3% 1% 10%;
  box-shadow: 0 1px 7px rgba(0, 0, 0, .3);
  position: relative;
}

/*table*/
.rank_table table {
  width: 100%;
  text-align: center;
  line-height: 1.2;
}

.rank_table,
td,
th {
  border-collapse: collapse;
}

.rank_table {
  border: 2px solid #a0eaff;
}

.rank_table th {
  width: 60px;
  padding: 9px 5px 9px;
  background-color: #a0eaff;
  color: #303030;
  left: 0;
  border-bottom: 1px dotted #fff;
  font-size: 9px;
}

.rank_table td,
th {
  padding: 3px;
  width: 10px;
  height: 25px;
}

.rank_table td {
  width: auto;
  border-bottom: 1px dotted #ddd;
  border-top: none;
  padding: 9px 10px 9px;
  font-size: 12px;
  position: relative;
  vertical-align: middle;
  border-right: 1px dotted #ddd;
  background: none;
  background-color: #fff;
}

.rank_table tr:last-child td,
.rank_table tr:last-child th {
  border-bottom: none;
}

.rank_table td:last-child {
  border-right: none;
}

.rank_table table th {
  vertical-align: middle;
  width: 20%;
  font-size: 13px;
  z-index: 88;
}

.rank_table tr:last-child td {
  border-bottom: none;
}

@media screen and (max-width:768px) {
  .rank_table th {
    padding: 9px 0px 9px;
  }

  .rank_table td {
    padding: 9px 0px 9px;
  }

  .rank_table_img {
    width: 100%;
    margin: 0 0 10px 0;
  }

  .rank_table td.bg_gray {
    background-color: #d8f7ff;
    width: 30%;
  }
}



/*table*/
.hyouka_table table {
  width: 100%;
  text-align: center;
  line-height: 1.2;
}

.hyouka_table {
  border: 2px solid #5c5c5c;
  margin-top: 5%;
}

.hyouka_table th {
  position: sticky;
  width: 60px;
  padding: 9px 5px 9px;
  background-color: #5c5c5c;
  color: #ffffff;
  left: 0;
  border-bottom: 1px dotted #fff;
  font-size: 9px;
}

.hyouka_table td {
  width: auto;
  border-bottom: 1px dotted #ddd;
  border-top: none;
  padding: 9px 10px 9px;
  font-size: 12px;
  position: relative;
  vertical-align: middle;
  border-right: 1px dotted #ddd;
  background: none;
  background-color: #fff;
}

.hyouka_table tr:last-child td,
.hyouka_table tr:last-child th {
  border-bottom: none;
}

.hyouka_table td:last-child {
  border-right: none;
}

.hyouka_table table th {
  vertical-align: middle;
  width: 50%;
  font-size: 13px;
  z-index: 88;
}

.hyouka_table tr:last-child td {
  border-bottom: none;
}

@media screen and (max-width:768px) {
  .hyouka_table th {
    padding: 9px 0px 9px;
  }

  .hyouka_table td {
    padding: 9px 0px 9px;
  }
}

.rank_table .table_cta {
  background-color: #47aa41;
  width: 100%;
  display: block;
  font-weight: 700;
  padding: 10% 0;
  border-radius: 10px;
  box-shadow: 0 5px #1b5d1f;
}

.rank_table .table_cta2 {
  background-color: #ff4d91;
  box-shadow: 0 5px #c0276e;
}

@keyframes shine {
  20% {
    left: 30%;
  }

  50% {
    left: 120%;
  }

  100% {
    left: 150%;
  }
}

.flex div {
  width: 50%;
}

.flex {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 3% 0 3%;
}

@media screen and (max-width: 767px) {
  .flex {
    flex-direction: column;
    margin-top: -10%;
    margin-bottom: 10%;
  }

  .minitable_wrap table th {
    font-size: 14px;
  }

  .minitable_wrap table th {
    border-right: solid 1px #fff;
    padding: 0.2em 10px 0.2em 1em;
    text-align: center;
    color: #fff;
    font-size: 16px;
  }

  body .flex div {
    width: 100%;
    margin: 10% 0% -9% 0%;
  }
}



.t_btn {
  display: block;
  width: 95%;
  background: #0cc300;
  padding: 7px 5px;
  border-radius: 5px;
  margin-bottom: 10px;
  box-shadow: 0px 7px 0px 0 #087e00;
}

.t_btn02 {
  display: block;
  width: 95%;
  background: #ff6600;
  padding: 7px 5px;
  border-radius: 5px;
  margin-bottom: 10px;
  box-shadow: 0px 7px 0px 0 #a72100;
}

.t_btn02,
.t_btn {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

/* 光るボタン　*/
/*btn*/
.shiny {
  display: block;
  position: relative;
  overflow: hidden;
  transition: 300ms;
}

.shiny::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  transition: 300ms;
  animation: shinyshiny 2.5s ease-in-out infinite;
}

@-webkit-keyframes shinyshiny {
  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;
  }
}

/* 光るボタンここまで*/

.rankTable .table_width {
  width: 16%;
}

.anno {
  font-size: 10px;
  text-align: right;
  color: #747474;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: .8;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  transition: opacity .3s;
  opacity: 0;
  background: rgba(0, 0, 0, .7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

/* -----------------比較表10選ここまで ------------------*/

/* -----------------ポイント ------------------*/
.point-box {
  margin: 20px auto 0;
  padding: 1em 1em 1.5em;
  background-color: #f1f1f1;
  /* 背景色 */
  border-radius: 10px;
  /*ボックス角の丸み*/
  font-size: 14.5px;
}

.point-box2 {
  margin: 20px auto 0;
  padding: 1em 0 1.5em 1em;
  background-color: #fcffe0;
  border-radius: 10px;
  font-size: 14px;
}

.point-box .point-box-title {
  color: #ff9925;
  /* タイトル文字色 */
  font-size: 18px;
  font-weight: bold;
  text-decoration: underline #b9afee 2px;
}

.point-box2 .point-box-title {
  color: #ff9925;
  /* タイトル文字色 */
  font-size: 18px;
  font-weight: bold;
}

.point-box .point-box-title:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a6";
  font-size: 18px;
  margin: 0 3px 0 0;
  font-weight: bold;
  color: #9b8edf;
}

.point-box2 .point-box-title:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a6";
  font-size: 18px;
  margin: 0 3px 0 0;
  font-weight: bold;
  color: #ff9925;
}

.point-box p {
  margin-top: 10px;
  line-height: 1.2;
  padding-left: 1em;
  text-indent: -1em;
}

.point-box2 p {
  margin-top: 10px;
  line-height: 1.2;
  padding-left: 1em;
  text-indent: -1em;
}




/* -----------------review ------------------*/
.review-box {
  margin: 20px auto 0;
  padding: 1em 1em 1.5em;
  background-color: #e8f7ff;
  /* 背景色 */
  border-radius: 10px;
  /*ボックス角の丸み*/
  font-size: 14.5px;
}

.review-box2 {
  margin: 20px auto 0;
  padding: 1em 0 1.5em 1em;
  background-color: #fcffe0;
  /* 背景色 */
  border-radius: 10px;
  /*ボックス角の丸み*/
  font-size: 14px;
}

.review-box .review-box-title {
  color: #0073d1;
  font-size: 18px;
  font-weight: bold;
}

.review-box2 .review-box-title {
  color: #000;
  /* タイトル文字色 */
  font-size: 18px;
  font-weight: bold;
  text-decoration: underline #ffd650 2px;
}

.review-box .review-box-title:before {
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  margin: 0 3px 0 0;
  font-weight: bold;
  color: #0073d1;
}

.review-box2 .review-box-title:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a6";
  font-size: 18px;
  margin: 0 3px 0 0;
  font-weight: bold;
  color: #ff8787;
}

.review-box p {
  margin-top: 10px;
  line-height: 1.3;
  padding-left: 0.5em;
  padding-bottom: 4%;
}

.gray tar fsS {
  font-size: 0.7rem;
  text-align: right;
  margin-top: 4%;
  border-bottom: none;
}


.review-box2 p {
  margin-top: 10px;
  line-height: 1.2;
  padding-left: 1em;
  text-indent: -1em;
}




/* 価格比較表 */
.kakaku_ttl {
  font-weight: bold;
  border-bottom: 1px solid #dadada;
  color: #424242;
}

.kakaku_table table {
  width: 100%;
}

.kakaku_table th,
.kakaku_table td {
  width: 50%;
  text-align: left;
  border-bottom: 1px solid #dadada;
  color: #424242;
}

/* 購入ボタン */
.buyBtn {
  padding: 20px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  background-color: #34A853;
  box-shadow: 0 5px #1f8039;
  margin-top: 20px;
  border-radius: 10px;
}

.buyBtn:hover {
  opacity: 0.6;
}

/* 特徴比較表 */
.feature_table {
  margin-top: 20px;
}

.feature_table table {
  width: 100%;
  border-collapse: collapse;
}

.feature_table th,
.feature_table td {
  width: 50%;
  text-align: left;
  border: 1px solid #dadada;
  padding: 10px;
  font-size: 15px;
}

.feature_table th {
  background-color: #f7f7f7;
}

/* 詳細ページ・公式サイト遷移ボタン */
.btn_box {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}

.shousaiBtn {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 20px;
  border-radius: 10px;
  background-color: #34A853;
  box-shadow: 0 5px #1f8039;
  width: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.koushikiBtn {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 20px;
  border-radius: 10px;
  background-color: #f89a07;
  box-shadow: 0 5px #c47a04;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shousaiBtn:hover,
.koushikiBtn:hover {
  opacity: 0.6;
}

@media screen and (max-width:699px) {

  .shousaiBtn,
  .koushikiBtn {
    height: 50px;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.block_contents {
  margin: 30px 0;
  padding: 0 1em 1.5em;
  border: solid 1px #b3b3b3;
}

.box23 {
  padding-top: 20px;
}


.text-box {
  margin-top: 30px;
  padding: 10;
  border-bottom: none;
}

.table_block {
  margin-top: 20px;
}



.table_block th,
.table_block td {
  width: 50%;
  border: 1px solid #dadada;
  text-align: left;
  padding: 10px;
  font-size: 15px;
}

.table_block th {
  background-color: #f7f7f7;
}

.text-box_02 {
  margin-top: 12px;
  padding: 10;
}

.hoshou_ttl {
  text-align: center;
}

.anshin_hoshou {
  margin-bottom: 20px;
  margin-top: 40px;
}

.table_2 th {
  background-color: #57b4e6;
}

.table_2 .name {
  background-color: #57b4e6;
}

.table_2 .bgblue {
  background-color: #57b4e6;
}

.table2_inner {
  border: 3px solid #57b4e6;
}

.table_2 .yellow {
  color: #ffb20c;
}

/* 商品比較表 */
.shouhin_table {
  margin-top: 20px;
  overflow-x: scroll;
}

.shouhin_table tr>th:first-child,
.shouhin_table tr>td:first-child {
  position: sticky;
  left: 0;
}

.shouhin_table tr>td:first-child {
  border-right: #fff;
}

.shouhin_table>table {
  width: 1700px;
  border-collapse: collapse;
}

.shouhin_table th,
.shouhin_table td {
  font-size: 14px;
  text-align: center;
  padding: 10px;
  border: 2px solid #E6E6E6;
}

.shouhin_table th {
  background-color: #f7f7f7;
}

.shouhin_table td {
  background-color: #fff;
}

.shouhin_table td.highlight {
  background-color: #FFFBE8
}

.sum img {
  width: 70px;
  display: block;
  margin: 0 auto;
}

.star {
  color: #f89a07;
}

.tableBtn {
  background-color: #f89a07;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 5px #c47a04;
}

.buyBtn {
  margin-bottom: 10px;
}