<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

:root {
  --base: #015AFF;
}

.contents {
  margin-top: 0;
  padding: 0;
}
@media screen and (min-width: 641px) {
  main, #sidebar {
    padding: 0 0 100px;
  }
}

.textbox {
  width: 90%;
  margin: auto;
}

.icon-excellent {
  fill: #ED1C24;
}
.icon-good {
  fill: #f1d35b;
}
.icon-average {
  fill: #8d96af;
}
.icon-poor {
  fill: #414a85;
}
.icon-none {
  fill: #bdbdbd;
}
mark, .marker {
  color: inherit;
  font-weight: bold;
  background: linear-gradient(transparent 50%, #ffee00 50%);
}
.marker-pink {
  color: inherit;
  font-weight: bold;
  background: linear-gradient(transparent 50%, #ff9acc 50%);
}
.red {
  color: #f22226 !important;
}
.blue {
  color: #3583cf !important;
}
.gold {
  color: #ceaf79 !important;
}
.pink {
  color: #ee34cd !important;
}
.navy {
  color: #373f70 !important;
}
.green {
  color: #339966 !important;
}
.line {
  color: #07CD07 !important;
}
.bold {
  font-weight: bold !important;
}
.text-l {
  font-size: 150% !important;
}
.text-m {
  font-size: 120% !important;
}
.text-s {
  font-size: 80% !important;
}
.underline {
  text-decoration: underline;
}
.overline {
  text-decoration: overline;
}
.line-through {
  text-decoration: line-through;
}
.aligncenter {
  margin: auto;
  text-align: center;
}
.box, .box_ttl, .box_ttl2, .bubble, .accordion, .tab {
  margin: 0 0 1em 0;
}
.box &gt; *:last-child, .box_ttl &gt; *:last-child, .box_ttl2 &gt; *:last-child {
margin-bottom: 0;
}
.box {
  padding: 1.5em;
  border-radius: 5px;
  background: var(--box-bg, #fff);
  border: 2px solid var(--box-border, #000);
}
.box_ttl-head {
  display: inline-block;
  padding: 1em;
  margin-left: 1rem;
  border-radius: 5px 5px 0 0;
  background: var(--box-border, #000);
  color: #fff;
  line-height: 1;
  font-weight: bold;
}
.box_ttl-body {
  padding: 1em;
  border-radius: 5px;
  background: var(--box-bg, #fff);
  border: 2px solid var(--box-border, #000);
}
.box_ttl2-head {
  padding: 1em;
  border-radius: 5px 5px 0 0;
  background: var(--box-border, #000);
  color: #fff;
  line-height: 1;
  font-weight: bold;
}
.box_ttl2-body {
  padding: 1em;
  border-radius: 0 0 5px 5px;
  background: var(--box-bg, #fff);
  border: 2px solid var(--box-border, #000);
}
.bubble {
  display: flex;
  align-items: flex-start;
  gap: 1em;
}
.bubble_icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f8f8f8;
  border: 2px solid #eee;
  flex-shrink: 0;
  position: sticky;
  top: 5px;
  overflow: hidden;
}
.bubble_icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 750px) {
  .bubble_icon {
      width: calc(100% - 1em - 80px);
  }
}
@media screen and (min-width: 750px) {
  .bubble_icon {
      width: 80px;
      height: 80px;
  }
}
.bubble_body {
  width: calc(100% - 1em - 60px);
  padding: 1.5rem;
  background: #fff;
  border: 2px solid var(--bubble-bg, #000);
  border-radius: 10px;
  position: relative;
}
.bubble_body::before, .bubble_body::after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-width: 8px 10px;
  border-style: solid;
}
.bubble_body::before {
  top: 20px;
  left: -22px;
  border-color: var(--bubble-bg, #000) var(--bubble-bg, #000) transparent transparent;
  z-index: 1;
}
.bubble_body::after {
  top: 22px;
  left: -16px;
  border-color: #fff #fff transparent transparent;
  z-index: 2;
}
.bubble.bubble--right {
  flex-direction: row-reverse;
}
.bubble.bubble--right .bubble_body::before {
  top: 20px;
  right: -22px;
  left: auto;
  border-color: var(--bubble-bg, #000) transparent transparent var(--bubble-bg, #000);
  z-index: 1;
}
.bubble.bubble--right .bubble_body::after {
  top: 22px;
  right: -16px;
  left: auto;
  border-color: #fff transparent transparent #fff;
  z-index: 2;
}
.accordion {
  border: 2px solid var(--ac-bg, #000);
  border-radius: 5px;
}
.accordion_head {
  padding: 1rem 3rem 1rem 1.5rem;
  background: var(--ac-bg, #000);
  color: var(--ac-color, #fff);
  cursor: pointer;
  position: relative;
  font-weight: bold;
}
.accordion_head::before, .accordion_head::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transition: all 0.4s ease;
}
.accordion_head::before {
  width: .3rem;
  height: 2rem;
  background: var(--ac-color, #fff);
  right: 1.85rem;
  margin-top: -1rem;
}
.accordion_head::after {
  width: 2rem;
  height: .3rem;
  background: var(--ac-color, #fff);
  right: 1rem;
  margin-top: -.15rem;
}
.accordion_head.is-open::before {
  transform: rotate(90deg);
}
.accordion_head.is-open::after {
  transform: rotate(90deg);
  opacity: 0;
}
.accordion_body {
  display: none;
  padding: 1.5rem;
}
.tab_nav {
  display: flex;
  gap: .5rem;
  padding: 0;
  margin: 0 0 -2px 0 !important;
  position: relative;
  z-index: 2;
}
.tab_nav li {
  margin-bottom: 0 !important;
  padding: 1rem 2rem;
  border: 2px solid var(--tab-border, #000);
  border-radius: 8px 8px 0 0;
  line-height: 1;
  font-weight: bold;
  background: color-mix(in srgb, var(--tab-border, #000) 20%, transparent);
  cursor: pointer;
}
.tab_nav li.is-active {
  background: #fff;
  border-bottom-color: transparent;
}
.tab_body {
  background: #fff;
  border: 2px solid var(--tab-border, #000);
}
.tab_box {
  display: none;
  padding: 1.5rem;
}
.tab_box.is-active {
  display: block;
}
.flex {
  width: 100%;
  display: flex !important;
  gap: 1em 2%;
  flex-wrap: wrap;
}
.flex &gt; * {
  width: calc((100% - (2% * (var(--flex, 2) - 1))) / var(--flex, 2)) !important;
  box-sizing: border-box;
}
ul, ol {
  padding: 0;
  margin: 0 .5em 1em;
}
ul li, ol li {
  margin-bottom: 1rem;
  list-style-type: none;
  padding-left: 1.5rem;
  position: relative;
}
@media screen and (min-width: 750px) {
  ul li, ol li {
      padding-left: 2rem;
  }
}
ul li:last-of-type, ol li:last-of-type {
  margin-bottom: 0;
}
ul li::before, ul li::after, ol li::before, ol li::after {
  content: '';
  display: block;
  position: absolute;
}
ul:not([class]) li::before {
  width: 6px;
  height: 6px;
  background: var(--disc, #000);
  border-radius: 50%;
  top: .5em;
  left: 3px;
}
@media screen and (min-width: 750px) {
  ul:not([class]) li::before {
      width: 8px;
      height: 8px;
      top: .5em;
  }
}
ul.check li {
  padding-left: 1.2em;
}
ul.check li::before {
  width: .8em;
  height: .8em;
  background: var(--check, #000);
  border-radius: 3px;
  top: 3px;
  left: 0;
}
@media screen and (min-width: 750px) {
  ul.check li::before {
    border-radius: 5px;
    top: 4px;
    left: 0;
  }
}
ul.check li::after {
  width: .2em;
  height: 0.5em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  top: 0.2em;
  left: 0.2em;
}
@media screen and (min-width: 750px) {
  ul.check li::after {
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    top: 0.2em;
    left: 0.25em;
  }
}
ol:not([class]) {
  counter-reset: num;
}
ol:not([class]) li {
  padding-left: 1.2em;
}
ol:not([class]) li::before {
  width: 1.2em;
  height: 1.2em;
  text-align: center;
  content: counter(num);
  counter-increment: num;
  color: #fff;
  background: var(--num, #000);
  border-radius: 50px;
  line-height: 1.2em;
  font-size: 90%;
  top: 4px;
  left: 0;
  position: absolute;
  font-weight: bold;
}
.bound {
  animation: bound 1s infinite linear alternate;
}
.bound2 {
  animation: bound 3s infinite linear alternate;
}
.shiny {
  position: relative;
  overflow: hidden;
}
.shiny::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fbfbfb;
  animation: shiny 2.5s ease-in-out infinite;
  z-index: 2;
}
.btn {
  margin: 15px auto;
  border: 0;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: all .4s ease;
  position: relative;
  text-align: center;
}
.btn_mc {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  padding: .5rem 2rem;
  color: color-mix(in srgb, var(--btn, #FF3F33) 80%, black 20%);
  font-weight: bold;
  font-size: 1.4rem;
  position: relative;
  z-index: 2;
}
.btn_mc::before, .btn_mc::after {
  content: '';
  display: block;
  width: 3px;
  height: 1.2em;
  background: color-mix(in srgb, var(--btn, #FF3F33) 80%, black 20%);
}
.btn_mc::before {
  transform: rotate(-20deg);
}
.btn_mc::after {
  transform: rotate(20deg);
}
@media screen and (min-width: 750px) {
  .btn_mc {
      font-size: 1.8rem;
  }
}
.btn a, .btn button {
  display: block;
  width: 100%;
  border-radius: var(--round, 50px);
  padding: 1.5rem;
  color: #fff;
  font-weight: bold;
  background: var(--btn, #FF3F33);
  border: 1px solid color-mix(in srgb, var(--btn, #FF3F33) 80%, black);
  box-shadow: inset 2px 2px 2px rgba(255, 255, 255, 0.3), inset -2px -2px 2px rgba(0, 0, 0, 0.1);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: all 0.4s ease;
}
.btn a:hover, .btn button:hover {
  opacity: .5;
}
.rate_wrap {
  width: 100%;
  font-weight: bold;
  position: relative;
}
.rate_num {
  display: block;
  text-align: center;
  font-size: 2rem;
}
.rate_score {
  position: relative;
  margin: auto;
  width: 100px;
  height: 20px;
  font-size: 2rem;
  text-align: left;
}
.rate_score::before, .rate_score span {
  position: absolute;
  display: inline-block;
  height: 20px;
  line-height: 20px;
}
.rate_score::before {
  content: '★★★★★';
  color: #c4c4c4;
}
.rate_score span {
  overflow: hidden;
  color: #ffb906;
}
.align-left {
  text-align: left;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}
.scroll-hint-icon {
  z-index: 20;
}
.js-scrollable th, .js-scrollable td {
  white-space: nowrap;
}
.js-scrollable .cellfixed-top {
  position: sticky;
  background: #f1f1f1;
  font-weight: bold;
  z-index: 5;
  top: -1px;
}
.js-scrollable .cellfixed-top::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #eee;
  z-index: 5;
  pointer-events: none;
  top: 0;
}
.js-scrollable .cellfixed-left {
  position: sticky;
  background: #f1f1f1;
  font-weight: bold;
  z-index: 5;
  left: -1px;
}
.js-scrollable .cellfixed-left::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #eee;
  z-index: 5;
  pointer-events: none;
  left: 0;
  top: 0;
}
.sticky {
  position: sticky;
  top: 0;
  left: 0;
  background: none;
  border-left: none;
  border-right: none;
  z-index: 10;
}
.sticky ::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  width: 100%;
  height: 100%;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  background: #feeaff;
  z-index: -1;
}
.slick-arrow {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  overflow: hidden;
  text-indent: 100%;
  background: #0088FF;
  border-radius: 50%;
  z-index: 10;
}
.slick-arrow::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
.slick-arrow.slick-disabled {
  background: #ccc;
}
.slick-prev {
  left: -6px;
}
.slick-prev::after {
  transform: rotate(225deg);
  margin: -6px 0 0 -3px;
}
.slick-next {
  right: -6px;
}
.slick-next::after {
  transform: rotate(45deg);
  margin: -6px 0 0 -8px;
}





.houjin *,
.houjinkouza * {
  box-sizing: border-box;
}
.houjin section,
.houjinkouza section {
  margin: 0;
}
.houjin h2,
.houjinkouza h2 {
  margin: 0;
  padding: 0;
  border: none;
}
.houjin h2::before,
.houjinkouza h2::before {
  display: none;
}

.houjin h2.ttl_h2,
.houjinkouza h2.ttl_h2 {
  margin: 1em auto;
  padding: 1em;
  background: #015aff;
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
}

.eyecatch {
  margin: 0;
  position: relative;
}
.eyecatch img {
  width: 100%;
}
.eyecatch &gt; p {
  margin: 0;
}
.eyecatch_head {
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
}
.eyecatch_ym {
  padding: 10px;
  background: var(--fvbg, #000);
  color: var(--fvcolor, #fff);
  font-size: .8em;
  font-weight: bold;
  border-radius: 5px;
  line-height: 1;
}
.eyecatch_pr {
  padding: 5px;
  border: 1px solid #666;
  color: #666;
  font-size: 14px;
  border-radius: 5px;
  line-height: 1;
}

.worry {
  padding: 30px 15px 0;
  background: #E4E9F3;
}
.worry_head {
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  color: var(--base);
  font-size: 26px;
}
.worry ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.worry li {
  max-width: 80%;
  margin-bottom: 20px;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
  color: #7F7F7F;
}
.worry li:nth-of-type(even) {
  margin-left: auto;
}
.worry_image {
  width: 80%;
  text-align: center;
  margin: auto;
}

.solution {
  padding: 30px 15px;
}
.solution_head {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.solution_head span {
  display: inline-block;
  border-bottom: 4px solid var(--base);
  color: var(--base);
  font-weight: bold;
  position: relative;
  font-size: 26px;
}
.solution_head span::before,
.solution_head span::after {
  content: '';
  display: block;
  position: absolute;
}
.solution_head span::before {
  width: 4px;
  height: 24px;
  background: var(--base);
  transform: rotate(24deg);
  bottom: -24px;
  right: 60px;
}
.solution_head span::after {
  width: 10px;
  height: 28px;
  background: #fff;
  transform: rotate(24deg);
  bottom: -20px;
  right: 62px;
}
.solution_head span strong {
  display: inline-block;
  padding: 5px;
  border-radius: 5px;
  background: #FFFF00;
  line-height: 1;
}
.solution_text {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
}
.solution_text span {
  position: relative;
}
.solution_text span::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50%);
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
}

.compare {
  padding: 30px 8px;
  background: #FFFAE6;
}
.compare h2 {
  margin: 0 auto 30px;
  font-weight: bold;
  font-size: 26px;
  text-align: center;
  color: #FF5800;
}
.compare_wrap {
  display: flex;
  justify-content: center;
  gap: 1%;
  align-items: flex-end;
}
.compare_table {
  width: 32%;
  border: 2px solid #FFC400;
  background: #fff;
  border-radius: 10px;
}
.compare_flag {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 5%;
  font-size: 14px;
  color: #FF5800;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  padding: 10px 10px 0;
}
.compare_flag::before,
.compare_flag::after {
  content: '';
  display: block;
  width: 2px;
  height: 14px;
  background: #FF5800;
}
.compare_flag::before {
  transform: rotate(-30deg);
}
.compare_flag::after {
  transform: rotate(30deg);
}
.compare_thumb {
  padding: 10px;
  aspect-ratio: 2/0.7;
}
.compare_thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.compare_table p:empty {
  display: none;
}
.compare_table dl {
  padding: 10px 5px;
  border-top: 1px solid #FFD2BA;
  text-align: center;
}
.compare_table dt {
  margin-bottom: 5px;
  color: #D3B182;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.1;
}
.compare_table dt span {
  display: block;
  font-size: 80%;
}
.compare_table dd {
  line-height: 1;
}
.compare_table dd svg.icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 5px;
}
.compare_table dd span {
  display: block;
  font-size: 80%;
}
.compare_link {
  padding: 5px;
}
.compare_link a {
  display: block;
  padding: 15px 10px;
  background: #FFC400;
  border-bottom: 3px solid #e0ac00;
  color: #fff;
  font-weight: bold;
  position: relative;
  line-height: 1;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  transition: all .4s ease;
}
.compare_link a:hover {
  opacity: .5;
}
.compare_link a::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -3px;
}
.compare_table:first-of-type {
  border: 2px solid #FF5800;
  background: #fff;
  border-radius: 10px;
}
.compare_table:first-of-type .compare_link a {
  background: #FF5800;
  border-bottom: 3px solid #e04f00;
}

.point {
  padding-top: 30px;
  background: #DAEEED;
  counter-reset: num;
}
.point_detail {
  margin: 30px 15px;
}
.point_detail dt {
  padding: 20px 30px 10px 10px;
  background: var(--base);
  color: #fff;
  position: relative;
  border-radius: 5px;
  font-weight: bold;
  line-height: 1.2;
  transition: all .4s ease;
}
.point_detail dt::before {
  display: block;
  content: counter(num);
  counter-increment: num;
  width: 20px;
  height: 20px;
  border: 2px solid var(--base);
  background: #fff;
  color: var(--base);
  font-weight: bold;
  font-size: 14px;
  border-radius: 50%;
  line-height: 20px;
  text-align: center;
  position: absolute;
  top: -10px;
  left: 0;
  transition: all .4s ease;
}
.point_detail dt::after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  border-width: 6px 5px;
  border-style: solid;
  border-color: #FFFF00 transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -5px;
  transition: all .4s ease;
}
.point_detail dt.open {
  border-radius: 5px 5px 0 0;
}
.point_detail dt.open::after {
  transform: rotate(180deg);
}
.point_detail dd {
  padding: 10px;
  background: #fff;
  border-radius: 0 0 5px 5px;
}
.point_detail dd p {
  margin: 0 0 1em;
}
.point_detail dd p:last-of-type {
  margin: 0;
}

.conclusion {
  display: flex;
  align-items: flex-start;
  gap: 5%;
  background: #B4DFF0;
  padding: 50px 15px 30px;
  position: relative;
}
.conclusion::before {
  display: block;
  content: '';
  width: 0;
  height: 0;
  border-width: 40px 42px;
  border-style: solid;
  border-color: #DAEEED transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%)
}
.conclusion_title {
  width: 100px;
  border: 1px solid var(--base);
  padding: 2px;
}
.conclusion_title span {
  display: block;
  border: 1px solid var(--base);
  background: #fff;
  font-weight: bold;
  font-size: 26px;
  color: var(--base);
  text-align: center;
}
.conclusion_text {
  width: calc(95% - 100px);
  color: var(--base);
  line-height: 1.6;
  font-size: 1.8rem;
  font-weight: bold;
}
.conclusion_text strong {
  background: #FFFF00;
}

.items {
  padding: 0;
  margin: 0;
  counter-reset: rank;
}
.item {
  margin: 0 15px 40px;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0,0,0,.1);
  border-radius: 10px;
}
.item_catch{
  position: relative;
  margin-top: 40px;
  padding-bottom: 10px;
}
.item_catch strong{
  position: absolute;
  top: -20px;
  left: 50%;
  padding: 2px 15px;
  background: #ff5800;
  border-radius: 5px;
  font-size: 0.8em;
  color: #fff;
  white-space: nowrap;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.item_catch strong:after{
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  border: 8px solid transparent;
  border-top: 8px solid #ff5800;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.item_head {
  display: flex;
  align-items: center;
  gap: 5%;
}
.item_rank {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: relative;
}
.item_rank svg.icon {
  width: 50px;
  height: 50px;
  margin: auto;
  fill: #666;
}
.item_rank::after {
  content: counter(rank);
  counter-increment: rank;
  font-weight: bold;
  font-size: 16px;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
}
.item_name {
  font-weight: bold;
  font-size: 20px;
}
.item_main {
  display: flex;
  gap: 2%;
  padding: 5px;
}
.item_thumb {
  width: 45%;
}
.item_spec {
  width: 53%;
}
.item_spec_name {
  font-weight: bold;
  color: var(--base);
  margin-bottom: 10px;
  line-height: 1;
  font-size: 16px;
}
.item_spec ul {
  margin: 0 0 10px;
  padding: 0 0 10px;
  list-style: none;
  border-bottom: 1px solid #F3F3F3;
}
.item_spec li {
  display: flex;
  padding-left: 0;
  margin-bottom: 10px;
  line-height: 1;
}
.item_spec li::before {
  display: none;
}
.item_spec li:last-of-type {
  margin-bottom: 0;
}
.item_spec li strong {
  display: flex;
  align-items: center;
  width: calc(100% - 30px);
  padding: 5px;
  background: var(--base);
  border: 2px solid var(--base);
  color: #fff;
  border-radius: 50px 0 0 50px;
  font-size: 12px;
}
.item_spec li span {
  width: 20%;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  background: #fff;
  border: 2px solid var(--base);
  border-radius: 0 50px 50px 0;
}
.item_spec li svg.icon {
  width: 20px;
  height: 20px;
  margin: auto;
}
.item_spec dl {
  display: flex;
  margin-bottom: 10px;
  border: 1px solid var(--base);
  border-radius: 5px;
  overflow: hidden;
  line-height: 1;
  font-size: 12px;
}
.item_spec dt {
  padding: 5px;
  background: #D2E2FF;
  border-right: 1px solid var(--base);
  color: var(--base);
  font-weight: bold;
  width: 101%;
}
.item_spec dd {
  padding: 5px;
  background: #fff;
  text-align: center;
  color: #FF5800;
  font-weight: bold;
  text-align: center;
  width: 60%;
}
@media screen and (min-width:750px) {
  .item_spec_name {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .item_spec li strong,
  .item_spec dl {
    font-size: 14px;
  }
  .item_spec dt,
  .item_spec dd {
    padding: 10px;
  }
}
.item_detail {
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
  padding: 10px;
  background: #EFF6FF;
}
.item_detail dl {
  width: 32.6666%;
  background: #fff;
}
.item_detail dt {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 3.2em;
  padding: 5px;
  background: #788FB8;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  font-size: 14px;
}
.item_detail dt span {
  display: block;
  font-size: 80%;
}
.item_detail dd {
  background: #fff;
  padding: 5px;
  text-align: center;
}
.item_detail dd svg.icon {
  width: 35px;
  height: 35px;
  margin: 0 auto;
}
.item_detail dd span {
  display: block;
  line-height: 1.2;
}
.item_detail dd ul {
  margin-left: 0;
  text-align: left;
  list-style-type: none;
}
.item_detail dd li {
  padding-left: 15px;
  position: relative;
  font-size: 0.9em;
}
.item_detail dd li span {
  display: inline;
}
.item_detail dd li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--base);
  border-radius: 50%;
  position: absolute;
  top: 0.7em;
  left: 0;
}

.item_detail dl.full {
  width: 100%;
  margin-top: 1%;
}
.item_detail dl.full dt {
  min-height: auto;
}
.item_recommend {
  padding: 10px;
  background: #FFE1CF;
}
.item_recommend_title {
  text-align: center;
}
.item_recommend_title strong {
  display: inline-block;
  background: #FF5800;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border-radius: 5px 5px 0 0;
  line-height: 1;
  padding: 10px;
}
.item_recommend_list {
  padding: 10px;
  background: #fff;
  border: 2px solid #FF5800;
  border-radius: 10px;
  line-height: 1.4;
}
.item_recommend_list ul {
  margin-left: 0;
  list-style-type: none;
}
.item_recommend_list li {
  margin-bottom: 1em;
  padding-left: 15px;
  position: relative;
  font-size: 0.9em;
}
.item_recommend_list li:last-of-type {
  margin-bottom: 0;
}
.item_recommend_list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: #FF5800;
  border-radius: 50%;
  position: absolute;
  top: 0.5em;
  left: 0;
}
.item_campaign {
  padding: 30px 15px;
  border-bottom: 1px solid #eee;
}
.item_campaign_title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5%;
  color: var(--base);
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}
.item_campaign_title::before,
.item_campaign_title::after {
  content: '';
  display: block;
  width: 2px;
  height: 14px;
  background: var(--base);
}
.item_campaign_title::before {
  transform: rotate(-30deg);
}
.item_campaign_title::after {
  transform: rotate(30deg);
}
.item_campaign_body img {
  display: block;
  margin: auto;
}
.item_btn {
  padding: 15px;
}
.item_btn span {
  display: block;
  text-align: center;
  margin-bottom: 5px;
  color: #FF5800;
  font-weight: bold;
  font-size: 16px;
}
.item_btn &gt; br {
  display: none;
}
.item_btn a {
  display: block;
  padding: 10px;
  background: #FF5800;
  box-shadow: 0 3px 0 #D94B00;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  line-height: 1.6;
  transition: all .4s ease;
  position: relative;
}
.item_btn a:hover {
  opacity: .5;
}
.item_btn a::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -5px;
}

.item:nth-of-type(1) .item_rank svg.icon {
  fill: #DECD39;
}
.item:nth-of-type(2) .item_rank svg.icon {
  fill: #B4B3AD;
}
.item:nth-of-type(3) .item_rank svg.icon {
  fill: #D1A15A;
}

.which {
  padding: 15px;
}


.houjin {
  font-size: 3.7vw;
  line-height: 1.4;
}
.houjin p {
  margin-bottom: 1em;
}
.bank {
  margin: 1em .5em;
  padding: 1em;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 5px 10px rgba(0,0,0,.1);
}
.houjin h3 {
  margin: 1em auto;
  font-size: 1.2em;
  background: var(--h3bg, #eef0f3);
}
.bank_name {
  margin-bottom: 1em;
  text-align: center;
}
.bank_name a {
  font-weight: bold;
  text-decoration: underline;
  color: var(--base);
}
.bank_thumb {
  text-align: center;
}
.bank table {
  text-align: center;
}
.houjin table th,
.houjin table td {
  border: 1px solid #A5BFCC;
}
.houjin table th {
  background: #E8F9FF;
  line-height: 1.2;
  font-weight: bold;
  font-size: 80%;
}
@media (min-width: 751px){
  .houjin {
    font-size: 2.8rem;
  }
}</pre></body></html>