@charset "UTF-8";
.dp-table-01 {
  width: 100%;
  border: 1px solid #d4d4d4;
  margin-bottom: 40px;
}

.dp-table-01 th,
.dp-table-01 td {
  border-bottom: 1px solid #d4d4d4;
  font-size: 14px;
}

.dp-table-01 th,
.dp-table-01 td {
  padding: 15px;
  text-align: left;
  line-height: 1.5;
}

@media only screen and (max-width: 599px) {
  .dp-table-01 th,
.dp-table-01 td {
    padding: 8px;
  }
}
.dp-table-01 th {
  background-color: #e7e7e8;
  white-space: nowrap;
  width: 20%;
  text-align: center;
  font-weight: normal !important;
}

@media only screen and (max-width: 599px) {
  .dp-table-01 th,
.dp-table-01 td {
    padding: 8px;
    font-size: 14px;
  }
}
.dp-table-01 td {
  font-weight: bold;
}

.dp-table-01 .td-1 {
  display: flex;
  align-items: center;
}

.dp-table-01 .td-2 {
  white-space: nowrap;
}

/* CSS Document */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

/*行の高さをフォントサイズと同じにしています*/
body {
  line-height: 1;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/*行頭記号を表示しないようにしています*/
ol, ul, li {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote, q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #FF9;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています

また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
  vertical-align: middle;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  clear: both;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #CCC;
  margin: 1em 0;
}

/*画像の初期位置*/
img {
  vertical-align: bottom;
}

strong {
  font-weight: bold;
}

* {
  box-sizing: border-box;
}
*:after, *:before {
  box-sizing: border-box;
}

.bound {
  -webkit-animation: bound 3s infinite;
          animation: bound 3s infinite;
}

@-webkit-keyframes bound {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-25px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes bound {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-25px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans", Meiryo, sans-serif;
  color: #333;
}

:root {
  --root-font-size: 16;
}

p {
  font-size: calc(16 / var(--root-font-size) * 1rem);
  line-height: 1.8;
  color: #333;
  margin-bottom: 24px !important;
}
img {
  width: 100% !important;
}

figure {
  margin: 0;
  padding: 0;
}

sup {
  font-size: 70%;
  vertical-align: super;
}

.notes {
  width: 100%;
  max-width: 800px;
  margin: 10px auto 0;
  box-sizing: border-box;
}

.notes .list-notes {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: #000000;
}

.price {
  font-weight: bold;
  font-size: 14px;
}

.best {
  color: red;
  font-size: 40px;
}

.best,
.good,
.so,
.bad {
  line-height: 1 !important;
  display: block;
}

.good {
  color: #70c957;
  font-size: 40px;
  margin: auto;
}

.so {
  color: #ffd168;
  font-size: 40px;
  line-height: 1.4;
  margin: auto;
}

.bad {
  color: #6b6b6b;
  font-size: 40px;
  line-height: 1.2;
  margin: auto;
}

.sp-view {
  display: none !important;
}

@media (max-width: 576px) {
  .sp-view {
    display: block !important;
  }
  .pc-view {
    display: none !important;
  }
}
a:hover {
  opacity: 0.7;
}

.bg-blue {
  background-color: #6091d3 !important;
}

.bg-lightblue {
  background-color: #87cefa !important;
}

.bg-lightblue {
  background-color: #87cefa !important;
}

.bg-red {
  background-color: #ee0404 !important;
}

.bg-pink {
  background-color: #fc5f7c !important;
}

.bg-orange {
  background-color: #ffa500 !important;
}

.bg-brightblue {
  background-color: #e5f2ff !important;
}

.bg-green {
  background-color: #4caf50 !important;
}

.bg-yellow {
  background-color: #ffe861 !important;
}

.bg-brightyellow {
  background-color: #fefadd !important;
}

.dp-br {
  display: block;
}

.new-window-img {
  width: 16px !important;
  height: 16px !important;
}

.new-window-img-2 {
  width: 16px !important;
  height: 20px !important;
}

mark {
  background: linear-gradient(transparent 60%, rgba(255, 229, 102, 0.7) 60%);
  font-style: normal;
}

.compare-table {
  box-sizing: border-box;
}
@media (max-width: 576px) {
  .compare-table {
    display: block;
    overflow: scroll;
    width: 100%;
  }
}

.compare-table th {
  padding: 10px !important;
  border-right: 1px dotted #60c162;
}
@media (max-width: 576px) {
  .compare-table th {
    padding: 5px !important;
    min-width: 120px;
  }
}

.compare-table__spth {
  font-size: 0.5rem;
}
@media (max-width: 576px) {
  .compare-table__spth {
    display: block;
    height: 35px;
  }
}

@media (max-width: 576px) {
  .compare-table__spth th {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(100% - 20px);
  }
}

.compare-table td {
  padding: 15px 9px;
  text-align: center;
  font-size: 0.5rem;
  border-right: 1px dotted #60c162;
}
.compare-table td:last-child,
.compare-table th:last-child {
  border-right: none;
}

.compare-table__product {
  width: 20%;
  text-align: center;
}
@media (max-width: 576px) {
  .compare-table__product {
    width: 30%;
  }
}

.compare-table__item {
  text-align: center;
  background-color: #e5f8bc;
  padding: 8px;
  font-weight: bold;
  font-size: 0.625rem;
}

.compare-table__score div {
  font-size: 0.625rem;
  line-height: 32px;
}

.compare-table__score p {
  margin-bottom: 0px !important;
}

.compare-table__text {
  text-align: left !important;
}

.compare-table__text ul {
  padding: 0px 0px 0px 15px;
  margin: 5px 0px;
}

.compare-table__stars {
  color: #fdd835;
  line-height: 2;
  font-size: 1rem;
}
@media (max-width: 576px) {
  .compare-table__stars {
    font-size: 0.75rem;
    line-height: unset;
    margin-bottom: 10px;
  }
}

.compare-table > tbody > tr > td > p > span.best {
  color: #ff92bf;
  font-size: 2.5rem;
}

.compare-table > tbody > tr > td > p > span.good {
  color: #70c957;
  font-size: 2.5rem;
  margin: auto;
}

.compare-table > tbody > tr > td > p > span.so {
  color: #ffd168;
  font-size: 2.5rem;
  line-height: 1.4;
  margin: auto;
}

.compare-table > tbody > tr > td > p > span.bad {
  color: #6b6b6b;
  font-size: 2.5rem;
  line-height: 1.2;
  margin: auto;
}

.compare-table > tbody > tr > td > p > span.price {
  font-size: 0.75rem;
  font-weight: bold;
}

.compare-table__special {
  position: relative;
  display: inline-block;
  padding: 3px 7px;
  border-radius: 5px;
  background-color: #fb3e73;
  text-align: center;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.5;
  color: #ffffff;
  width: auto;
}
.compare-table__special::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  border-style: solid;
  border-width: 13px 8.5px 0 8.5px;
  border-color: #fb3e73 transparent transparent;
  translate: -50% 100%;
}

.dp-compare-table-02-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 30px 0;
  box-sizing: border-box;
}

.dp-compare-table-02-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: auto;
}

.dp-compare-table-02 {
  width: 100%;
  border-collapse: collapse;
  box-sizing: border-box;
  line-height: 1.5;
}
.dp-compare-table-02-rank {
  width: 60px;
  margin: auto;
  margin-bottom: 8px;
}
.dp-compare-table-02 .features-text, .dp-compare-table-02 .features-text p {
  text-align: left !important;
  font-size: 12px !important;
}
.dp-compare-table-02 .item-features {
  width: 40%;
}
.dp-compare-table-02 figure picture, .dp-compare-table-02 figure img, .dp-compare-table-02 figure video {
  display: inline-block;
  max-width: 120px;
  width: 100%;
  height: auto !important;
  margin: 0 !important;
}
.dp-compare-table-02 figure figcaption {
  font-size: 12px;
  font-weight: 700;
  padding-top: 5px;
  padding-bottom: 10px;
  color: #1a0dab;
  text-decoration: underline;
}
.dp-compare-table-02 .link-btn {
  max-width: 140px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  background: #e4233a;
  border: 1px solid #e4233a;
  border-radius: 6px;
  box-shadow: 0 5px 0 #7c0100;
  text-align: left;
  position: relative;
  margin: 10px auto 12px;
  padding: 10px 20px 8px 10px;
  display: block;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  overflow: hidden;
}
.dp-compare-table-02 .link-btn::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  position: absolute;
  top: calc(50% - 4px);
  right: 10px;
  transform: rotate(45deg);
}
.dp-compare-table-02 .link-btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  -webkit-animation: shiny-brite 5s ease-in-out infinite;
          animation: shiny-brite 5s ease-in-out infinite;
}
.dp-compare-table-02 a {
  text-decoration: none;
  transition: opacity 0.2s;
}
.dp-compare-table-02 th, .dp-compare-table-02 td {
  background-color: #ffffff;
  border: 1px solid #ccc;
  padding: 7px 5px;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
}
.dp-compare-table-02 thead th, .dp-compare-table-02 thead td {
  background-color: #046aca;
  font-weight: bold;
  color: #ffffff;
  vertical-align: middle;
}
.dp-compare-table-02 tbody .highlight th, .dp-compare-table-02 tbody .highlight td {
  background: #fffbe5;
}

@media (max-width: 576px) {
  .dp-compare-table-02 th:first-child,
.dp-compare-table-02 td:first-child {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    border-left: none;
    border-right: none;
  }
  .dp-ompare-table-02 th:first-child::before,
.dp-compare-table-02 td:first-child::before {
    content: "";
    width: calc(100% - 1px);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
  }
  .dp-compare-table-02 .item-name {
    min-width: 110px;
  }
  .dp-compare-table-02 .item-price {
    min-width: 60px;
  }
  .dp-compare-table-02 .item-quality, .dp-compare-table-02 .item-results, .dp-compare-table-02 .item-pliability {
    min-width: 30px;
  }
  .dp-compare-table-02 .item-features {
    min-width: 200px;
  }
}
.dp-compare-table-03 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px !important;
  box-sizing: border-box;
  table-layout: fixed;
}
@media (max-width: 576px) {
  .dp-compare-table-03 {
    width: 470px;
    display: block;
    padding-top: 0;
  }
}
.dp-compare-table-03-container {
  padding: 20px 5px;
  margin: 20px 0;
}
@media (max-width: 576px) {
  .dp-compare-table-03-container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
}
.dp-compare-table-03-wrap {
  width: 100%;
  margin: 0 auto;
  overflow: auto;
  position: relative;
}
.dp-compare-table-03 .blank {
  background-color: #fefadd !important;
}
.dp-compare-table-03-btn {
  background-color: #fefadd !important;
}
.dp-compare-table-03-btn a span {
  font-weight: bold;
}
.dp-compare-table-03-item th {
  border-radius: 10px 0 0 10px;
}
.dp-compare-table-03 .symbol {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: -1;
  display: inline-block;
  vertical-align: middle;
}
.dp-compare-table-03 .symbol.circle {
  top: calc(50% - 17px);
  width: 34px;
  height: 34px;
}
.dp-compare-table-03 .symbol.circle::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 4px solid #000;
  border-radius: 50%;
  box-sizing: border-box;
}
.dp-compare-table-03 .symbol.circle::before, .dp-compare-table-03 .symbol.circle::after {
  border-color: #ffbec4;
}
.dp-compare-table-03 .symbol.double {
  top: calc(50% - 20px);
  width: 45px;
  height: 45px;
}
.dp-compare-table-03 .symbol.double::after {
  content: "";
  display: inline-block;
  width: 60%;
  height: 60%;
  position: absolute;
  top: 20%;
  left: 20%;
  border: 4px solid #000;
  border-radius: 50%;
  box-sizing: border-box;
}
.dp-compare-table-03 .symbol.double::before, .dp-compare-table-03 .symbol.double::after {
  border-color: #ffbec4;
}
.dp-compare-table-03 .symbol.batten {
  width: 50px; /* 線の長さ */
  top: 50%;
}
.dp-compare-table-03 .symbol.batten::before, .dp-compare-table-03 .symbol.batten::after {
  content: ""; /* 疑似要素に必須 */
  width: 100%; /* 幅いっぱいを指定 */
  height: 4px; /* 適度な太さを指定 */
  display: inline-block; /* 高さを持たせるためにinline-blockを指定 */
  background: #d6d3d3;
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: 0;
}
.dp-compare-table-03 .symbol.batten:before {
  transform: rotate(45deg);
}
.dp-compare-table-03 .symbol.batten::after {
  transform: rotate(-45deg);
}

.dp-compare-table-03 th,
.dp-compare-table-03 td {
  position: relative;
  z-index: 1;
  padding: 6px;
  height: 60px;
  line-height: 1.2;
  vertical-align: middle;
  text-align: center;
}

.dp-compare-table-03 th {
  background-color: #ee0404 !important;
  font-size: 1.125rem;
  font-weight: bold;
  color: #ffffff;
  width: 17%;
}
@media (max-width: 576px) {
  .dp-compare-table-03 th {
    font-size: 1rem;
    width: 10%;
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 200; /* 必要に応じて調整 */
    width: 50px;
  }
}

.dp-compare-table-03 td {
  background-color: #ffffff;
  font-size: 1.125rem;
  font-weight: bold;
  color: #333;
}
@media (max-width: 576px) {
  .dp-compare-table-03 td {
    width: 105px;
    font-size: 1rem;
  }
}

.dp-compare-table-03 a {
  text-decoration: none !important;
}

.dp-compare-table-03 figure {
  margin: 0 auto;
  text-align: center;
}

.dp-compare-table-03 figure figcaption {
  margin-top: 6px;
  font-weight: normal;
  font-size: 0.75rem;
}
@media (max-width: 576px) {
  .dp-compare-table-03 figure figcaption {
    font-size: 0.6875rem;
  }
}

.dp-compare-table-03 img {
  display: inline-block !important;
  max-width: 100%;
  margin: 0 !important;
  vertical-align: bottom;
}

.dp-compare-table-04 {
  width: 100%;
  border-collapse: separate;
  box-sizing: border-box;
  table-layout: fixed;
  border-left: 1px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
}
@media (max-width: 576px) {
  .dp-compare-table-04 {
    width: 576px;
    display: block;
    padding-top: 0;
  }
}
.dp-compare-table-04 a {
  display: block;
  text-decoration: none !important;
}
.dp-compare-table-04-container {
  box-sizing: border-box;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .dp-compare-table-04-container {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
    box-sizing: border-box;
  }
}
.dp-compare-table-04-wrap {
  width: 100%;
  margin: 0 auto;
  overflow: auto;
  position: relative;
}
.dp-compare-table-04-btn a span {
  font-weight: bold;
}
.dp-compare-table-04 .symbol {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: -1;
  display: inline-block;
  vertical-align: middle;
}
.dp-compare-table-04 .symbol.circle {
  top: calc(50% - 17px);
  width: 34px;
  height: 34px;
}
.dp-compare-table-04 .symbol.circle::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 4px solid #000;
  border-radius: 50%;
  box-sizing: border-box;
}
.dp-compare-table-04 .symbol.circle::before, .dp-compare-table-04 .symbol.circle::after {
  border-color: #ffbec4;
}
.dp-compare-table-04 .symbol.double {
  top: calc(50% - 20px);
  width: 45px;
  height: 45px;
}
.dp-compare-table-04 .symbol.double::after {
  content: "";
  display: inline-block;
  width: 60%;
  height: 60%;
  position: absolute;
  top: 20%;
  left: 20%;
  border: 4px solid #000;
  border-radius: 50%;
  box-sizing: border-box;
}
.dp-compare-table-04 .symbol.double::before, .dp-compare-table-04 .symbol.double::after {
  border-color: #ffbec4;
}
.dp-compare-table-04 .symbol.batten {
  width: 50px; /* 線の長さ */
  top: 50%;
}
.dp-compare-table-04 .symbol.batten::before, .dp-compare-table-04 .symbol.batten::after {
  content: ""; /* 疑似要素に必須 */
  width: 100%; /* 幅いっぱいを指定 */
  height: 4px; /* 適度な太さを指定 */
  display: inline-block; /* 高さを持たせるためにinline-blockを指定 */
  background: #d6d3d3;
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: 0;
}
.dp-compare-table-04 .symbol.batten:before {
  transform: rotate(45deg);
}
.dp-compare-table-04 .symbol.batten::after {
  transform: rotate(-45deg);
}
.dp-compare-table-04-crown {
  width: 60% !important;
  margin-bottom: 10px;
}
.dp-compare-table-04-product td {
  vertical-align: top !important;
}
.dp-compare-table-04 .indent {
  text-indent: -0.75rem;
  padding-left: 0.75rem;
}
.dp-compare-table-04 .dp-btn-small {
  background-color: #fc9259 !important;
}
.dp-compare-table-04 tr:nth-child(odd) td, .dp-compare-table-04 tr:nth-child(odd) th {
  background: #fff;
}
.dp-compare-table-04 th, .dp-compare-table-04 td {
  position: relative;
  z-index: 1;
  padding: 6px;
  line-height: 1.5;
  vertical-align: middle;
  text-align: center;
}
.dp-compare-table-04 th {
  font-size: 0.8125rem;
  font-weight: bold;
  width: 69px;
  z-index: 200;
  background-color: #f6f6f6;
  border-bottom: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
}
@media (max-width: 576px) {
  .dp-compare-table-04 th {
    font-size: 0.8125rem;
    width: 100px;
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 200; /* 必要に応じて調整 */
    width: 50px;
  }
}
.dp-compare-table-04 td {
  background-color: #ffffff;
  font-size: 0.6875rem;
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  background-color: #f6f6f6;
}
.dp-compare-table-04 td p {
  font-size: 0.6875rem;
  margin-bottom: 0 !important;
}
.dp-compare-table-04 td ul li {
  font-size: 0.6875rem;
  text-align: left;
}
.dp-compare-table-04 td .tax {
  font-size: 0.625rem;
}
.dp-compare-table-04 td .price {
  font-size: 1.25rem;
}
@media (max-width: 576px) {
  .dp-compare-table-04 td {
    width: 105px;
    font-size: 0.6875rem;
  }
}
.dp-compare-table-04 figure {
  margin: 0 auto;
  text-align: center;
}
.dp-compare-table-04 figure figcaption {
  margin-top: 6px;
  font-weight: normal;
  font-size: 0.75rem;
}
@media (max-width: 576px) {
  .dp-compare-table-04 figure figcaption {
    font-size: 0.6875rem;
  }
}
.dp-compare-table-04-flag {
  width: 70%;
  height: auto;
  margin: auto;
  margin-bottom: 5px;
}

.dp-compare-table-05-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 30px 0;
  box-sizing: border-box;
}

.dp-compare-table-05-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: auto;
}

.dp-compare-table-05 {
  width: 100%;
  border-collapse: collapse;
  box-sizing: border-box;
  line-height: 1.5;
}
.dp-compare-table-05-rank {
  width: 60px;
  margin: auto;
  margin-bottom: 8px;
}
.dp-compare-table-05 .features-text,
.dp-compare-table-05 .features-text p {
  text-align: left !important;
  font-size: 12px !important;
}
.dp-compare-table-05 .item-features {
  width: 40%;
}
.dp-compare-table-05 figure {
  margin-bottom: 0px;
}
.dp-compare-table-05 figure picture, .dp-compare-table-05 figure img, .dp-compare-table-05 figure video {
  display: inline-block;
  max-width: 120px;
  width: 100%;
  height: auto !important;
  margin: 0 !important;
}
.dp-compare-table-05 figure figcaption {
  font-size: 12px;
  font-weight: 400;
  color: #1a0dab;
  text-decoration: underline;
}
.dp-compare-table-05 .link-btn {
  max-width: 140px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  background: #f97b8e;
  border: 1px solid #f97b8e;
  border-radius: 6px;
  box-shadow: 0 5px 0 #f74a64;
  text-align: center;
  position: relative;
  margin: 10px auto 12px;
  padding: 10px 5px 8px 5px;
  display: block;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  overflow: hidden;
}
.dp-compare-table-05 a {
  text-decoration: none;
  transition: opacity 0.2s;
}
.dp-compare-table-05 th, .dp-compare-table-05 td {
  background-color: #ffffff;
  border: 1px solid #ccc;
  padding: 7px 5px;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
}
.dp-compare-table-05 thead th, .dp-compare-table-05 thead td {
  background-color: #eb5f64;
  font-weight: bold;
  color: #ffffff;
  vertical-align: middle;
}
.dp-compare-table-05 tbody .highlight th, .dp-compare-table-05 tbody .highlight td {
  background: #fffbe5;
}
.dp-compare-table-05 .item-name {
  width: 155px;
}
.dp-compare-table-05 .item-score {
  width: 80px;
}
.dp-compare-table-05 .item-description {
  min-width: auto;
}
.dp-compare-table-05 .td-description, .dp-compare-table-05 .td-description p {
  text-align: left;
  font-weight: 700;
  font-size: 12px !important;
  color: black;
  line-height: 1.5;
  margin-bottom: 0px !important;
}
.dp-compare-table-05 .item-link {
  width: 100px;
}
.dp-compare-table-05 .compare-table__stars {
  color: #F3AC4D;
  line-height: 1;
  font-size: 1rem;
  letter-spacing: -0.1em;
}

@media (max-width: 576px) {
  .dp-compare-table-05 th:first-child,
.dp-compare-table-05 td:first-child {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
  }
  .dp-compare-table-05 .compare-table__itemname-link {
    font-size: 10px;
  }
  .dp-compare-table-05 .item-name {
    width: 90px;
  }
  .dp-compare-table-05 .item-score {
    width: 50px;
  }
  .dp-compare-table-05 .item-description {
    width: 200px;
  }
  .dp-compare-table-05 .item-link {
    width: 65px;
  }
  .dp-compare-table-05 .compare-table__stars {
    color: #F3AC4D;
    line-height: 1;
    font-size: 0.5rem;
    letter-spacing: -0.1em;
  }
  .dp-compare-table-05 .link-btn {
    font-size: 0.7rem;
    margin: 10px auto 12px;
    display: block;
    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box;
    overflow: hidden;
  }
}
.supervision-box {
  background-color: #f9f9f9;
  border: 3px solid #ddd;
  padding: 10px;
  margin: 20px 0;
  border-radius: 5px;
}

.supervision-box p {
  font-weight: bold;
  margin: 5px 0px 10px 0px;
}

.supervision-box .supervision-content {
  display: flex;
  align-items: flex-start;
}

.supervision-box .supervision-image {
  margin-right: 15px;
}

.supervision-box .supervision-image img {
  border-radius: 50%;
  border: 1px solid #ccc;
  width: 100px !important;
  height: 100px !important;
  max-width: 100px;
  max-height: 100px;
  -o-object-fit: cover;
  object-fit: cover;
}

.supervision-box .supervision-details {
  font-size: 0.9em;
  line-height: 1.5;
}

@media (max-width: 576px) {
  .supervision-box p {
    font-weight: bold;
    margin: 10px 0px !important;
  }
  .supervision-box .supervision-content {
    display: block;
    align-items: unset;
  }
  .supervision-box .supervision-image {
    width: 100%;
    margin: 10px 0px;
  }
  .supervision-box .supervision-image img {
    border-radius: 50%;
    border: 1px solid #ccc;
    width: 100px !important;
    height: 100px !important;
    margin: 0px auto;
    display: block;
  }
  .supervision-box .supervision-details {
    width: 100%;
    font-size: 0.9em;
    line-height: 1.5;
  }
}
.dp-box {
  margin-bottom: 20px;
}
.dp-box-inner {
  padding: 15px 20px;
}
@media (max-width: 576px) {
  .dp-box-inner {
    padding: 15px 10px;
  }
}
.dp-box-square {
  margin: 2em 0;
  background: #FFF;
  border: solid 4px #6091d3;
  padding: 0;
  position: relative;
}
@media (max-width: 576px) {
  .dp-box-square {
    margin: 1em 0;
    position: relative;
  }
}
.dp-box-square-title {
  padding: 10px;
  display: inline-block;
  background: #ffa500;
  padding: 5px;
  text-align: center;
  color: #FFF;
  font-weight: bold;
  font-size: 1.375rem;
  line-height: 1.5;
}
@media (max-width: 576px) {
  .dp-box-square-title {
    font-size: 1.125rem;
  }
}
.dp-box-square-title-2 {
  padding: 5px 15px;
  position: absolute;
  display: inline-block;
  background: #ffa500;
  text-align: center;
  color: #FFF;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.5;
  top: -34px;
  left: -4px;
  height: 30px;
  line-height: 25px;
  border-radius: 10px 10px 0 0;
}
@media (max-width: 576px) {
  .dp-box-square-title-2 {
    font-size: 1.125rem;
  }
}
.dp-box-round {
  margin: 2em 0;
  background: #FFF;
  border-radius: 10px;
  border: solid 4px #ffa500;
}
.dp-box-round-title {
  background: #ffa500;
  padding: 7px;
  text-align: center;
  color: #FFF;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (max-width: 576px) {
  .dp-box-round-title {
    padding: 5px;
  }
}
.dp-box-round-title.blue {
  background: #6091d3;
}
.dp-box-round-title.red {
  background: #ee0404;
}
.dp-box-round-title p {
  color: #FFF;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-top: 5px;
}
@media (max-width: 576px) {
  .dp-box-round-title p {
    font-size: 1.125rem;
  }
}
.dp-box-round-title-02 {
  background-color: #ffa500;
  color: #fff;
  border-radius: 100vh;
  padding: 10px 1.5em;
  margin: -22px 0 0 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  width: 70%;
}
.dp-box-round-title-02::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border: 15px solid transparent;
  width: 0;
  height: 0;
  border-top-color: #ffa500;
}
.dp-box-note {
  margin: 20px auto;
  padding: 20px;
  position: relative;
}
.dp-box-note p.check-list-01 ul li {
  background-image: linear-gradient(90deg, rgba(237, 119, 128, 0) 0%, rgba(237, 119, 128, 0) 50%, #fff 0%, #fff 100%), linear-gradient(180deg, rgba(237, 119, 128, 0) 0%, rgba(237, 119, 128, 0) 95%, #4c9ac0 100%);
  background-size: 8px 100%, 100% 2.5em;
  line-height: 2.5;
  margin: 0;
}
.dp-box-grid {
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  background-image: linear-gradient(#e1eef5 1px, transparent 1px), linear-gradient(to right, #e1eef5 1px, #fff 1px);
  background-size: 20px 20px;
}
.dp-box-stitch {
  margin: 20px 10px 40px 10px;
  padding: 20px;
  background: #c7e4f4;
  box-shadow: 0 0 0 10px #c7e4f4;
  border: 2px dashed #fff;
}
@media (max-width: 576px) {
  .dp-box-stitch {
    padding: 15px;
  }
}
.dp-box-stitch.orange {
  background: #fedf93;
  box-shadow: 0 0 0 10px #fedf93;
}
.dp-box-square.blue, .dp-box-round.blue, .dp-box-note.blue {
  border: solid 4px #6091d3;
}
.dp-box-square.lightblue, .dp-box-round.lightblue, .dp-box-note.lightblue {
  border: solid 4px #87cefa;
}
.dp-box-square.red, .dp-box-round.red, .dp-box-note.red {
  border: solid 4px #ee0404;
}
.dp-box-square.green, .dp-box-round.green, .dp-box-note.green {
  border: solid 4px #4caf50;
}
.dp-box-square.orange, .dp-box-round.orange, .dp-box-note.orange {
  border: solid 4px #ffa500;
}
.dp-box-point-img img {
  width: 113px !important;
  height: auto;
  margin-top: -5%;
}
@media (max-width: 576px) {
  .dp-box-point-img img {
    width: 90px;
    margin-top: -5%;
  }
}
.dp-box-round-point {
  background-color: #eff8f9;
  margin-top: 50px;
  border-radius: 10px;
}
.dp-box-round-point-title span {
  font-weight: bold;
  padding-bottom: 7px;
  display: block;
}

.dp-box-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dp-box-flex .dp-box-illust {
  width: 75px;
  margin-left: 10px;
}
@media (max-width: 576px) {
  .dp-box-flex .dp-box-illust {
    width: 50px;
  }
}
.dp-box-flex-02 {
  display: flex;
}

.rank-1::before {
  content: "";
  display: inline-block;
  background-image: url("../images/rank-1.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 56px;
  height: 37px;
  margin-right: 5px;
}

.rank-2::before {
  content: "";
  display: inline-block;
  background-image: url("../images/rank-2.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 56px;
  height: 37px;
  margin-right: 5px;
}

.rank-3::before {
  content: "";
  display: inline-block;
  background-image: url("../images/rank-3.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 56px;
  height: 37px;
  margin-right: 5px;
}

.rank-4::before {
  content: "";
  display: inline-block;
  background-image: url("../images/rank-4.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 56px;
  height: 37px;
  margin-right: 5px;
}

.rank-5::before {
  content: "";
  display: inline-block;
  background-image: url("../images/rank-5.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 56px;
  height: 37px;
  margin-right: 5px;
}

.rank-6::before {
  content: "";
  display: inline-block;
  background-image: url("../images/rank-6.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 56px;
  height: 37px;
  margin-right: 5px;
}

.rank-7::before {
  content: "";
  display: inline-block;
  background-image: url("../images/rank-7.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 56px;
  height: 37px;
  margin-right: 5px;
}

.rank-8::before {
  content: "";
  display: inline-block;
  background-image: url("../images/rank-8.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 56px;
  height: 37px;
  margin-right: 5px;
}

.rank-9::before {
  content: "";
  display: inline-block;
  background-image: url("../images/rank-9.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 56px;
  height: 37px;
  margin-right: 5px;
}

.rank-10::before {
  content: "";
  display: inline-block;
  background-image: url("../images/rank-10.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 56px;
  height: 37px;
  margin-right: 5px;
}

.dp-ranking-title {
  margin-bottom: 20px;
}
.dp-ranking-product-title {
  background-color: #6091d3;
  border-radius: 10px;
  padding: 10px 15px 8px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  min-height: 55px;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media (max-width: 576px) {
  .dp-ranking-product-title {
    font-size: 1.125rem;
    padding: 10px;
  }
}
.dp-ranking-product-title span {
  flex: 1;
  font-weight: bold;
}
.dp-ranking-product-title.rank-1::before {
  content: "";
  display: inline-block;
  background-image: url("../images/rank-1.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 56px;
  height: 37px;
  margin-right: 5px;
}
.dp-ranking-product-title.rank-2::before {
  content: "";
  display: inline-block;
  background-image: url("../images/rank-2.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 56px;
  height: 37px;
  margin-right: 5px;
}
.dp-ranking-product-title.rank-3::before {
  content: "";
  display: inline-block;
  background-image: url("../images/rank-3.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 56px;
  height: 37px;
  margin-right: 5px;
}
.dp-ranking-product-title.rank-4::before {
  content: "";
  display: inline-block;
  background-image: url("../images/rank-4.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 56px;
  height: 37px;
  margin-right: 5px;
}
.dp-ranking-product-title.rank-5::before {
  content: "";
  display: inline-block;
  background-image: url("../images/rank-5.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 56px;
  height: 37px;
  margin-right: 5px;
}
.dp-ranking-product-title.rank-6::before {
  content: "";
  display: inline-block;
  background-image: url("../images/rank-6.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 56px;
  height: 37px;
  margin-right: 5px;
}
.dp-ranking-product-title.rank-7::before {
  content: "";
  display: inline-block;
  background-image: url("../images/rank-7.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 56px;
  height: 37px;
  margin-right: 5px;
}
.dp-ranking-product-title.rank-8::before {
  content: "";
  display: inline-block;
  background-image: url("../images/rank-8.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 56px;
  height: 37px;
  margin-right: 5px;
}
.dp-ranking-product-title.rank-9::before {
  content: "";
  display: inline-block;
  background-image: url("../images/rank-9.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 56px;
  height: 37px;
  margin-right: 5px;
}
.dp-ranking-product-title.rank-10::before {
  content: "";
  display: inline-block;
  background-image: url("../images/rank-10.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 56px;
  height: 37px;
  margin-right: 5px;
}

.product-body {
  margin-bottom: 50px;
}

.product-image {
  margin-bottom: 10px;
}

.product-name {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0.5em 0em;
}

.product-points {
  display: flex;
  margin-bottom: 10px;
  font-size: 1.1em;
  line-height: 0;
  padding: 10px 0px;
}
.product-points-title {
  font-weight: bold;
}
.product-points-score {
  font-weight: bold;
  font-size: 1.5rem;
  color: #ee0404;
}

.stars {
  display: inline-block;
  font-size: 1.15em;
  letter-spacing: -0.25em;
  padding-right: 10px;
}

.star {
  font-size: 1.5em;
  color: #ccc;
}

.star.filled {
  color: #fdd835; /* 黄色 */
}

.star.half {
  color: #fdd835; /* 黄色 */
  position: relative;
}

.star.half::after {
  content: "★";
  color: #fdd835; /* 黄色 */
  position: absolute;
  left: 0;
  width: 50%;
  overflow: hidden;
}

.dp-ranking-02-title {
  display: flex;
  align-items: center;
}
.dp-ranking-02-title-item {
  background-color: #ffe861 !important;
  color: #333;
  margin: 0 0 0 8px;
  padding: 7px;
  border-radius: 12px;
  height: 100%;
  box-sizing: border-box;
  margin-left: auto;
  line-height: 1.3;
  text-align: left;
  font-size: 1rem;
  font-weight: bold;
}
.dp-ranking-02-title-item span {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ee0404 !important;
}
.dp-ranking-02-head {
  display: flex;
}
@media (max-width: 576px) {
  .dp-ranking-02-head {
    display: block;
  }
}
.dp-ranking-02-head-thum {
  margin-right: 20px;
  width: 230px;
}
@media (max-width: 576px) {
  .dp-ranking-02-head-thum {
    margin: 0 0 20px 0;
    width: 100%;
  }
}
.dp-ranking-02-head-summary {
  flex: 1;
}
.dp-ranking-02-head-summary .dp-btn-small {
  margin-bottom: 20px;
  padding: 14px 15px;
  border-radius: 15px;
  font-size: 1rem;
}
@media (max-width: 576px) {
  .dp-ranking-02-head-summary .dp-btn-small {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
  }
}
.dp-ranking-02-head-summary .dp-br {
  font-weight: bold;
}
@media (max-width: 576px) {
  .dp-ranking-02-head-summary .dp-br {
    display: inline !important;
  }
}

/*その他と主な共通部分は省略*/
/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

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

/**
<a href="" class="custom-btn btn--orange-square">PUSH !<br>ボタン</a>
<a href="" class="custom-btn btn--orange-circul">PUSH !<br>ボタン</a>
*/
.btn--orange-square,
a.btn--orange-square {
  color: #fff;
  background-color: #eb6100;
}

.btn--orange-square:hover,
a.btn--orange-square:hover {
  color: #fff;
  background: #f56500;
}

.btn--orange-circul,
a.btn--orange-circul {
  color: #fff;
  background-color: #eb6100;
}

.btn--orange-circul:hover,
a.btn--orange-circul:hover {
  color: #fff;
  background: #f56500;
}

a.btn--orange-circul {
  border-radius: 100vh;
}

.dp-btn-main {
  display: block;
  background-color: #fc5f7c;
  color: #fff;
  font-weight: 700;
  border-radius: 15px;
  line-height: normal;
  text-decoration: none !important;
  margin: 40px auto !important;
  height: 90px;
  font-size: 0.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
@media (max-width: 576px) {
  .dp-btn-main {
    margin: 30px auto !important;
    height: 70px;
  }
}
.dp-btn-main span {
  font-size: 1.5rem;
  font-weight: bold;
}
@media (max-width: 576px) {
  .dp-btn-main span {
    font-size: 1.125rem;
  }
}
.dp-btn-main.arrow-01 span:after {
  position: absolute;
  content: "\f144";
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  font-size: 1.8rem;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.dp-btn-ranking {
  background-color: #fc5f7c;
  color: #fff !important;
  font-weight: 700;
  border-radius: 15px;
  line-height: normal;
  text-decoration: none !important;
  margin: 40px auto !important;
  height: 90px;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.dp-btn-ranking a {
  text-decoration: none !important;
  display: block;
  margin: 0 15px;
}
.dp-btn-ranking span {
  font-size: 1.5rem;
  font-weight: bold;
}
.dp-btn-ranking span:after {
  position: absolute;
  content: "\f144";
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  font-size: 1.8rem;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.dp-btn-ranking span:before {
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  background-image: url(../images/crown-01.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  margin-left: -48px;
  transform: translateY(-50%);
}

@media (max-width: 576px) {
  .dp-btn-ranking {
    background-color: "lib.$color-pink";
    color: #fff !important;
    font-weight: 700;
    border-radius: 15px;
    line-height: normal;
    text-decoration: none !important;
    margin: 30px auto 30px auto !important;
    min-height: 75px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  }
  .dp-btn-ranking span {
    font-weight: bold;
    font-size: 20px;
  }
  .dp-btn-ranking span :after {
    position: absolute;
    content: "\f144";
    font-family: "Font Awesome 5 Free";
    font-size: 20px;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
  }
  .dp-btn-ranking span:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../images/crown-01.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    margin-left: -33px;
    transform: translateY(-50%);
  }
}
.dp-btn-small {
  background-color: #fc5f7c;
  color: #fff !important;
  font-weight: 700;
  border-radius: 5px;
  line-height: normal;
  text-decoration: none !important;
  font-size: 0.75rem;
  padding: 5px 10px;
  width: 100%;
  text-align: center;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  width: 100%;
  display: block;
  position: relative;
  margin-bottom: 5px;
}

.dp-btn-arrow-right::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}

a.btn-label {
  margin-top: 18px;
  margin-bottom: 15px !important;
  padding: 18px 10px !important;
}
@media (max-width: 576px) {
  a.btn-label {
    margin-top: 40px;
  }
}

a.btn-label span {
  font-size: 0.9375rem;
  position: absolute;
  top: -1.6rem;
  left: calc(50% - 120px);
  display: block;
  width: 240px;
  padding: 0.2rem 0;
  border: 2px solid #ee0404;
  border-radius: 100vh;
  background: #fff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  color: #ee0404;
  font-weight: bold;
}

a.btn-label span:before,
a.btn-label span:after {
  position: absolute;
  left: calc(50% - 10px);
  content: "";
}

a.btn-label span:before {
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #d44114 transparent transparent transparent;
}

a.btn-label span:after {
  bottom: -7px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

a.btn-label :hover {
  transform: translate(0, 3px);
  color: #fff;
  background: #eb5b30;
  box-shadow: 0 2px 0 #d44114;
}

.dp-toc-01 {
  margin-bottom: 30px;
  border: 2px solid #6091d3;
  border-radius: 3px;
}
.dp-toc-01 div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 10px 0;
  background-color: #6091d3;
  color: #fff;
  font-weight: 600;
  font-size: 1.125rem;
}
.dp-toc-01 div::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 4H21V6H8V4ZM3 3.5H6V6.5H3V3.5ZM3 10.5H6V13.5H3V10.5ZM3 17.5H6V20.5H3V17.5ZM8 11H21V13H8V11ZM8 18H21V20H8V18Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
  content: "";
}
.dp-toc-01 ol {
  list-style-type: decimal;
  margin: 0;
  counter-reset: list-counter;
  overflow: visible;
}
@media (max-width: 576px) {
  .dp-toc-01 ol {
    list-style-type: none !important;
  }
}
.dp-toc-01 > ol {
  padding: 1em 1em 1em 3em;
}
@media (max-width: 576px) {
  .dp-toc-01 > ol {
    padding: 1em 1em 1em 2em;
    list-style-type: none !important; /* 親リストの元の番号を消す */
  }
}
@media (max-width: 576px) {
  .dp-toc-01 > ol li {
    content: counter(list-counter) ". "; /* 親リストのリストアイテムにだけ番号を表示 */
    font-weight: bold;
    margin-right: 5px;
  }
}
.dp-toc-01 ol ol {
  margin-top: 5px;
  padding-left: 1.5em;
  list-style-type: decimal !important; /* ネストされたリストは通常のまま */
}
@media (max-width: 576px) {
  .dp-toc-01 ol ol {
    list-style-type: decimal !important; /* ネストリストは元の番号を維持 */
  }
}
.dp-toc-01 li {
  padding: 5px 0;
  font-weight: 600;
  list-style: decimal;
  display: list-item !important;
  counter-increment: list-counter;
}
@media (max-width: 576px) {
  .dp-toc-01 li li::before {
    content: counter(list-counter) ". "; /* スマホで番号を補完 */
    font-weight: bold;
    margin-right: 5px;
    content: "";
  }
}
.dp-toc-01 ol ol li {
  font-weight: 500;
  font-size: 1rem;
}
.dp-toc-01 a {
  color: #333;
  text-decoration: none;
  line-height: 1.5;
}

.dp-toc-02 {
  margin-bottom: 30px;
  background-color: #f7f7f7;
  border: 1px solid #e0e0e0;
  padding: 1em 1em 1em 2em;
}
@media (max-width: 576px) {
  .dp-toc-02 {
    padding: 1em 0.1em 0.5em 0.1em;
  }
}
.dp-toc-02 div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  font-weight: 600;
  font-size: 1.125rem;
}
.dp-toc-02 div::before {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 4H21V6H8V4ZM3 3.5H6V6.5H3V3.5ZM3 10.5H6V13.5H3V10.5ZM3 17.5H6V20.5H3V17.5ZM8 11H21V13H8V11ZM8 18H21V20H8V18Z' fill='%23333'%3E%3C/path%3E%3C/svg%3E");
  content: "";
}
.dp-toc-02 ol {
  list-style-type: decimal;
  margin: 0;
  counter-reset: list-counter;
  overflow: visible;
}
@media (max-width: 576px) {
  .dp-toc-02 ol {
    list-style-type: none !important;
  }
}
.dp-toc-02 > ol {
  padding: 1em 1em 1em 3em;
}
@media (max-width: 576px) {
  .dp-toc-02 > ol {
    padding: 1em 1em 1em 2em;
    list-style-type: none !important; /* 親リストの元の番号を消す */
  }
}
@media (max-width: 576px) {
  .dp-toc-02 > ol li {
    content: counter(list-counter) ". "; /* 親リストのリストアイテムにだけ番号を表示 */
    font-weight: bold;
    margin-right: 5px;
  }
}
.dp-toc-02 ol ol {
  margin-top: 5px;
  padding-left: 1.5em;
  list-style-type: decimal !important; /* ネストされたリストは通常のまま */
}
@media (max-width: 576px) {
  .dp-toc-02 ol ol {
    list-style-type: decimal !important; /* ネストリストは元の番号を維持 */
  }
}
.dp-toc-02 li {
  padding: 5px 0;
  font-weight: 600;
  list-style: decimal;
  display: list-item !important;
  counter-increment: list-counter;
}
@media (max-width: 576px) {
  .dp-toc-02 li li::before {
    content: counter(list-counter) ". "; /* スマホで番号を補完 */
    font-weight: bold;
    margin-right: 5px;
    content: "";
  }
}
.dp-toc-02 ol ol li {
  font-weight: 500;
  font-size: 1rem;
}
.dp-toc-02 a {
  color: #333;
  text-decoration: none;
  line-height: 1.5;
}

.dp-balloon-01 {
  width: 100%;
  margin: 2em 0;
  overflow: hidden;
}

.dp-balloon-01 .faceicon {
  float: left;
  margin-right: -90px;
  width: 80px;
}

.dp-balloon-01 .faceicon img {
  width: 100%;
  height: auto;
}

.dp-balloon-01 .chatting {
  width: 100%;
}

.says {
  display: inline-block;
  position: relative;
  margin: 5px 0 0 105px;
  padding: 17px 13px;
  border-radius: 12px;
  background: #fff8c7;
}

.says:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px;
  left: -24px;
  border: 12px solid transparent;
  border-right: 12px solid #fff8c7;
}

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

.check-list-01 {
  list-style: none;
}
.check-list-01 li {
  position: relative;
  margin-bottom: 10px;
}
.check-list-01 li div {
  margin-left: 25px;
  margin-bottom: 15px !important;
  font-weight: bold;
  line-height: 1.8;
}
.check-list-01 li::before {
  content: "";
  display: block;
  position: absolute;
  width: 1rem;
  height: 0.5rem;
  border-left: 2px solid red;
  border-bottom: 2px solid red;
  top: 0.5rem;
  transform: rotate(-45deg);
}

.dp-title-01 {
  padding: 0;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
@media (max-width: 576px) {
  .dp-title-01 {
    font-size: 1.25rem;
  }
}

.dp-title-02 {
  padding: 0.8em 0.5em;
  color: #6091d3;
  background: #f4f4f4;
  border-left: solid 5px #6091d3;
  border-bottom: solid 3px #d7d7d7;
  font-size: 20px !important;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.5;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.dp-title-03 {
  padding: 0.4em 0.5em;
  color: #fff;
  background: #6091d3;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.dp-title-04 {
  color: #6091d3; /*文字色*/
  /*線の種類（点線）2px 線色*/
  border-bottom: dashed 2px #6091d3;
  font-size: 1.25rem;
  font-weight: bold;
  padding-bottom: 8px;
  margin-bottom: 15px;
  line-height: 1.5;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.dp-title-05 {
  color: #6091d3; /*文字色*/
  background-image: url(../images/line-01.png);
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 0px 20px 15px;
  font-size: 1.25rem;
  font-weight: bold;
  padding-bottom: 8px;
  line-height: 1.5;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
@media (max-width: 576px) {
  .dp-title-05 {
    padding: 0px 10px 15px;
    padding-bottom: 5px;
  }
}

.dp-table-01 {
  width: 100%;
  border: 1px solid #d4d4d4;
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .dp-table-01 {
    margin-bottom: 20px;
  }
}

.dp-table-01 th,
.dp-table-01 td {
  border-bottom: 1px solid #d4d4d4;
  font-size: 14px;
}
.dp-table-01 th p,
.dp-table-01 td p {
  margin-bottom: 0 !important;
}

.dp-table-01 th,
.dp-table-01 td {
  padding: 15px;
  text-align: left;
  line-height: 1.5;
}

@media only screen and (max-width: 599px) {
  .dp-table-01 th,
.dp-table-01 td {
    padding: 8px;
  }
}
.dp-table-01 th {
  background-color: #e7e7e8;
  white-space: nowrap;
  width: 20%;
  text-align: center;
  font-weight: normal !important;
}

@media only screen and (max-width: 599px) {
  .dp-table-01 th,
.dp-table-01 td {
    padding: 8px;
    font-size: 14px;
  }
}
.dp-table-01 td {
  font-weight: bold;
}

.dp-table-01 .td-1 {
  display: flex;
  align-items: center;
}

.dp-table-01 .td-2 {
  white-space: nowrap;
}

.dp-table-02 {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 10px;
}
.dp-table-02 td, .dp-table-02 th {
  border: 1px solid #ee0404 !important;
  border-collapse: collapse;
  padding: 15px 10px;
  text-align: center;
  vertical-align: middle;
}
.dp-table-02 th {
  background: #ee0404 !important;
  font-weight: bold;
  padding: 8px;
  color: #fff;
  border: 1px solid #f79d9d !important;
  font-size: 1rem;
  line-height: 1.3;
}
.dp-table-02 th span {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: bold;
}
@media (max-width: 576px) {
  .dp-table-02 th span {
    display: block;
  }
}
.dp-table-02 td {
  line-height: 1.5;
}

.dp-note li {
  text-indent: -1.2rem;
  padding-left: 1.2rem;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 5px;
}

.dp-tag-01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.dp-tag-01 li {
  background-color: #6091d3;
  font-size: 0.8125rem;
  margin-bottom: 8px;
  padding: 8px;
  border-radius: 50px;
  width: 49%;
  white-space: nowrap;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 576px) {
  .dp-tag-01 li {
    font-size: 0.75rem;
    padding: 10px 8px;
  }
}
.dp-tag-01-long {
  width: auto !important;
}
@media (max-width: 576px) {
  .dp-tag-01-long {
    width: 49% !important;
  }
}