@charset "UTF-8";
@import "fontawesome.min.css?20250822";
@import "brands.min.css?20250822";
@import "solid.min.css?20250822";
/*! normalize.scss v0.1.0 | MIT License | based on git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  box-sizing: border-box;
}
body {
  margin: 0;
  box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
  text-decoration: none;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}
input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
ul,
li {
  list-style-type: none;
  padding-left: 0;
}
body {
  font-family:
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  font-weight: normal;
}
.no-border {
  border: none !important;
}
.btn {
  box-shadow: 0 0.55rem 0.9rem -0.4rem rgba(54, 54, 54, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  transition: transform 0.3s ease;
}
.btn:hover {
  transform: scale(1.03);
}
@keyframes icon-animation {
  from {
    background-position: -22px;
  }
  to {
    background-position: 22px;
  }
}
@keyframes modal-open {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-close {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes modal-inner-open {
  from {
    opacity: 0;
    top: 3rem;
  }
  to {
    opacity: 1;
    top: 2rem;
  }
}
@keyframes modal-inner-close {
  from {
    opacity: 1;
    top: 2rem;
  }
  to {
    opacity: 0;
    top: 3rem;
  }
}
.modal {
  display: none;
}
.modal.is-open {
  display: block;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal__container {
  background-color: #fff;
  padding: 30px;
  max-width: 500px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .modal__container {
    max-height: 90vh;
    max-width: 300px;
  }
}
.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}
.modal__close {
  background: transparent;
  border: 0;
}
.modal__header .modal__close:before {
  content: "\2715";
}
.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}
.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}
.modal__btn:focus,
.modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}
.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}
@keyframes effect-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes effect-fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes opening-header {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes opening-menu {
  0% {
    transform: translateY(150%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes opening-hb-button {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes opening-cover {
  0% {
    mask-size: 0%;
  }
  100% {
    mask-size: 100%;
  }
}
@keyframes opening-cover-sp {
  0% {
    mask-size: 0%;
  }
  100% {
    mask-size: 150%;
  }
}
@keyframes slide-posX {
  0% {
    transform: translateX(-0.5rem);
  }
  100% {
    transform: translateX(0.5rem);
  }
}
.page-title .fixed-title h1 {
  font-size: 1.3125rem;
  font-weight: bold;
  line-height: 1.2;
  font-feature-settings: "palt";
}
.cont-box h2,
article.howto-use h2 {
  font-size: 1.3125rem;
  font-weight: normal;
  line-height: 1.2;
  font-feature-settings: "palt";
}
article.howto-use h3 {
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 1.2;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .only-sp,
  .sp-only {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .onlypc,
  .pc-only {
    display: none;
  }
}
header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  background-color: #FFFFFF;
}
header .header-inner {
  padding: 0 0.9375rem;
  height: 3.625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-inner .logo img {
  height: 1.875rem;
}
header .header-inner .menu-sp {
  height: 3.625rem;
  display: flex;
  align-items: center;
}
header .header-inner .menu-sp ul {
  display: flex;
  justify-content: end;
}
header .header-inner .menu-sp ul li {
  margin-left: 0.9375rem;
  height: 1.5rem;
}
header .header-inner .menu-sp ul li a {
  font-size: 1.375rem;
  color: #000000;
}
header .header-inner .menu-sp ul li a img {
  width: auto;
  height: 100%;
}
header.scroll-fixed {
  position: fixed;
  top: 0;
  left: 0;
  border-bottom: 1px solid #CCCCCC;
}
.header-inner .logo a img {
  height: 1.875rem !important;
  width: auto !important;
}
.page-top-button {
  position: fixed;
  right: 0.75rem;
  bottom: -6.25rem;
  background-color: rgb(2, 14, 26);
  color: #FFFFFF;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 1;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  text-decoration: none;
  transition: bottom 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
}
.page-top-button.visible {
  bottom: 6.25rem;
  opacity: 0.4;
  pointer-events: auto;
}
footer.mg-footer {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  font-size: 0.625rem;
  padding: 1.875rem 0.9375rem 4.375rem;
  background-color: rgb(51, 51, 51);
  color: #999999;
}
footer.mg-footer .footer-navi ul {
  margin: 0 auto 0.9375rem;
}
footer.mg-footer .footer-navi ul li {
  display: inline-block;
  margin: 0 0.3125rem;
  line-height: 1.3;
  font-size: 0.6875rem;
}
footer.mg-footer .footer-navi ul li a {
  color: #FFFFFF;
}
#item-price-list-wrapper {
  margin-block-start: 0.9375rem;
}
#item-price-list-wrapper div.item-price-list-inner {
  margin: 0 -0.9375rem;
}
#item-price-list-wrapper div.item-price-list-inner ul.item-price-list {
  border-bottom: 1px solid #CCCCCC;
  border-radius: 0.25rem;
}
#item-price-list-wrapper div.item-price-list-inner ul.item-price-list li {
  border-top: 1px solid #CCCCCC;
  padding: 0.46875rem 0.9375rem;
  display: flex;
  line-height: 1.3;
  justify-content: space-between;
  flex-wrap: wrap;
}
#item-price-list-wrapper div.item-price-list-inner ul.item-price-list li span.price-shop {
  order: 2;
  max-width: calc(100% - 5.625rem);
}
#item-price-list-wrapper div.item-price-list-inner ul.item-price-list li span.price-date {
  order: 1;
  width: 100%;
  font-size: 0.6875rem;
  color: #999999;
}
#item-price-list-wrapper div.item-price-list-inner ul.item-price-list li span.price-price {
  order: 3;
}
#item-price-list-wrapper div.item-price-list-inner .load-more-wrapper {
  border-top: none;
}
@media screen and (min-width: 768px) {
  #item-price-list-wrapper {
    margin-block-start: 3.75rem;
  }
  #item-price-list-wrapper div.item-price-list-inner {
    margin: 0 0rem;
  }
  #item-price-list-wrapper div.item-price-list-inner ul.item-price-list {
    border: 1px solid #CCCCCC;
    border-top: none;
  }
  #item-price-list-wrapper div.item-price-list-inner ul.item-price-list li span.price-date {
    font-size: 0.8125rem;
  }
}
button.region-toggle {
  position: relative;
}
button.region-toggle:after {
  position: absolute;
  right: 0.625rem;
  top: 0.9375rem;
  font-family: "Font Awesome 6 Free";
  font-display: swap;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
  content: "\f107";
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
  font-size: 1rem;
  transition: transform 0.3s ease;
}
button.region-toggle.active:after {
  transform: rotate(180deg);
}
#item-price-prefs-wrapper .accordion {
  width: 100%;
  border: 1px solid #CCCCCC;
  border-bottom: none;
  border-radius: 0.25rem;
}
#item-price-prefs-wrapper .accordion .region {
  margin: 0;
}
#item-price-prefs-wrapper .accordion .region .region-toggle.active + .region-content {
  display: block;
}
#item-price-prefs-wrapper .accordion .region .region-toggle {
  width: 100%;
  padding: 0.625rem;
  border: none;
  border-bottom: 1px solid #CCCCCC;
  text-align: left;
  cursor: pointer;
  font-weight: bold;
}
#item-price-prefs-wrapper .accordion .region .region-content {
  display: none;
  padding: 0 0.9375rem;
}
#item-price-prefs-wrapper .accordion .region .prefecture h3 {
  padding: 0.9375rem;
  background-color: #CCCCCC;
  margin: 0 -0.9375rem;
  line-height: 1;
}
#item-price-prefs-wrapper .accordion .region .prefecture ul {
  margin: 0 -0.9375rem 0rem;
  border-bottom: 1px solid #CCCCCC;
}
#item-price-prefs-wrapper .accordion .region .prefecture ul li {
  line-height: 1.3;
  border-top: 1px solid #CCCCCC;
  padding: 0.46875rem 0.9375rem;
  display: flex;
  justify-content: space-between;
}
#item-price-prefs-wrapper .accordion .region .prefecture ul li span.price-shop {
  max-width: calc(100% - 5.625rem);
}
.btn-amazon {
  color: #232f3e;
  background:
    linear-gradient(
      to bottom,
      #febd69 0%,
      #feb250 100%);
  background-color: #febd69;
  padding: 0.3125rem 0.625rem;
}
.btn-rakuten {
  color: #fff;
  background-color: #ff008c;
  padding: 0.3125rem 0.625rem;
}
.btn-yahoo {
  color: #fff;
  background-color: #f03;
  padding: 0.3125rem 0.625rem;
}
.list-bottom-wrapper {
  padding: 0.9375rem;
  margin-block-end: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .list-bottom-wrapper.on-ichiran-top {
    margin-top: 30px;
  }
}
.amazon-wrapper,
.list-bottom-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.amazon-wrapper .af-cont,
.list-bottom-wrapper .af-cont {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-block-end: 0.9375rem;
}
.amazon-wrapper .af-cont figure,
.list-bottom-wrapper .af-cont figure {
  width: 5.625rem;
  margin: 0 0.9375rem 0 0;
  padding: 0;
}
.amazon-wrapper .af-cont figure img,
.list-bottom-wrapper .af-cont figure img {
  width: 100%;
  height: auto;
}
.amazon-wrapper .af-cont .amazon-title,
.list-bottom-wrapper .af-cont .amazon-title {
  flex: 1;
  text-align: left;
  font-size: 1rem;
}
.amazon-wrapper .af-cont .amazon-title h3,
.list-bottom-wrapper .af-cont .amazon-title h3 {
  margin-block-start: 0;
  line-height: 1.3;
  margin-block-end: 0.3125rem;
}
.amazon-wrapper .af-cont .amazon-title a,
.list-bottom-wrapper .af-cont .amazon-title a {
  color: #333333;
}
.amazon-wrapper .af-cont .amazon-title p,
.list-bottom-wrapper .af-cont .amazon-title p {
  margin-block: 0;
  font-size: 0.8125rem;
}
.amazon-wrapper .af-cont .amazon-title .amazon-price,
.list-bottom-wrapper .af-cont .amazon-title .amazon-price {
  text-align: left;
  margin-block-end: 0.9375rem;
}
.amazon-wrapper .af-cont .amazon-title .amazon-price p,
.list-bottom-wrapper .af-cont .amazon-title .amazon-price p {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.3;
  color: #333333;
  margin-block: 0;
}
.amazon-wrapper .af-cont .amazon-title .amazon-price span,
.list-bottom-wrapper .af-cont .amazon-title .amazon-price span {
  font-weight: normal;
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .amazon-wrapper .af-cont,
  .list-bottom-wrapper .af-cont {
    margin-block-end: 1.25rem;
  }
  .amazon-wrapper .af-cont figure,
  .list-bottom-wrapper .af-cont figure {
    margin-right: 1.875rem;
    width: 11.25rem;
  }
  .amazon-wrapper .af-cont .amazon-title .amazon-price span,
  .list-bottom-wrapper .af-cont .amazon-title .amazon-price span {
    font-size: 0.8125rem;
  }
}
.amazon-wrapper.no-asin .af-cont,
.list-bottom-wrapper.no-asin .af-cont {
  display: none;
}
.amazon-wrapper.no-asin .af-buttons,
.list-bottom-wrapper.no-asin .af-buttons {
  margin-block-start: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .amazon-wrapper.no-asin .af-buttons,
  .list-bottom-wrapper.no-asin .af-buttons {
    margin-bottom: 0;
  }
}
.amazon-wrapper .af-buttons,
.list-bottom-wrapper .af-buttons {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.625rem;
}
.amazon-wrapper .af-buttons .btn-af,
.list-bottom-wrapper .af-buttons .btn-af {
  font-weight: bold;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.75rem;
}
.amazon-wrapper .af-buttons:last-child,
.list-bottom-wrapper .af-buttons:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .amazon-wrapper .af-buttons,
  .list-bottom-wrapper .af-buttons {
    width: 15.375rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .amazon-wrapper,
  .list-bottom-wrapper {
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .list-page-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .list-page-wrapper .list-page-main {
    width: calc(100% - 24.375rem);
  }
  .list-page-wrapper .list-page-sidebar {
    padding-top: 1.875rem;
    width: 21.25rem;
  }
}
@media screen and (min-width: 768px) {
  .item-page-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .item-page-wrapper .item-page-main {
    width: calc(100% - 24.375rem);
    container-type: inline-size;
    container-name: main-content;
  }
  .item-page-wrapper .item-page-sidebar {
    padding-top: 1.875rem;
    width: 21.25rem;
  }
  .item-page-wrapper .item-page-sidebar .graph-wrap {
    background-color: #F8F8F8;
    padding: 0.9375rem;
  }
}
#poikatsu {
  padding: 0.9375rem;
  background-color: #F8F8F8;
}
#poikatsu h3 {
  margin-block-start: 0;
}
#poikatsu figure {
  margin: 0;
  width: 100%;
}
#poikatsu figure img {
  width: 100%;
}
#poikatsu .buttonList {
  display: flex;
  justify-content: space-around;
}
#poikatsu .buttonList li {
  width: calc((100% - 0.9375rem) / 2);
}
#poikatsu .buttonList li a img {
  width: 100%;
}
.bread {
  overflow-x: auto;
  white-space: nowrap;
  background-color: #F8F8F8;
  padding: 0.625rem 0.9375rem;
}
.bread ul {
  display: inline-block;
  padding: 0;
  margin: 0;
  list-style: none;
}
.bread ul li {
  display: inline-block;
  position: relative;
  padding-right: 0.5rem;
  font-size: 0.75rem;
  line-height: 1;
}
.bread ul li:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-60%);
}
.bread ul li a {
  text-decoration: none;
  padding: 0 0.625rem;
}
.bread ul li:first-child a {
  padding-left: 0;
}
.bread.page-top {
  padding-top: 4.0625rem;
}
.cont-box {
  padding: 0 0.9375rem 0.9375rem;
}
.cont-box h2 {
  background-color: #0054A6;
  color: #FFFFFF;
  padding: 0.625rem 0.9375rem;
  margin: 0 -0.9375rem 0.9375rem;
}
.cont-box h2 span.h2-blue-sub {
  font-size: 0.875rem;
  display: block;
  padding-top: 0.1875rem;
}
.cont-box h2.plane {
  background: transparent;
  color: #333333;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .cont-box h2 {
    color: #000000;
    padding: 0;
    margin: 0 0 1.875rem;
    background: transparent;
  }
}
@media screen and (min-width: 768px) {
  .cont-box {
    padding-left: 0;
    padding-right: 0;
    margin-block: 3.75rem auto;
  }
  .cont-box h2 {
    font-weight: bold;
  }
}
.about-wrap {
  background-color: #F8F8F8;
}
.about-wrap img {
  width: 100%;
  height: auto;
}
.about-wrap div.hide-cont.hidden {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, max-height 0.5s ease;
}
.about-wrap div.hide-cont.visible {
  opacity: 1;
  max-height: 1000px;
}
@media screen and (min-width: 768px) {
  .about-wrap {
    padding: 0;
  }
  .about-wrap h2 {
    margin-left: 0;
    margin-right: 0;
  }
  .about-wrap a {
    max-width: 30rem;
    margin: 0 auto;
  }
  .about-wrap {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
  }
  .about-wrap .about-inner {
    padding: 1.875rem;
    max-width: 55rem;
    margin: 0 auto 3.75rem;
  }
  .about-wrap .btn {
    margin-top: 1.875rem;
  }
}
.cont-item-details table.item-details-table {
  margin-block-end: 0.9375rem;
  width: 100%;
}
.cont-item-details table.item-details-table tr {
  background-color: #FFFFFF;
}
.cont-item-details table.item-details-table tr:nth-child(2n+1) {
  background-color: #F8F8F8;
}
.cont-item-details table.item-details-table th {
  width: 32vw;
  max-width: 11.25rem;
}
.cont-item-details table.item-details-table th,
.cont-item-details table.item-details-table td {
  text-align: left;
  font-size: 0.875rem;
  padding: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .cont-item-details table.item-details-table {
    border-top: 1px dotted #999999;
  }
  .cont-item-details table.item-details-table tr {
    background-color: #F7F7FD;
  }
  .cont-item-details table.item-details-table tr:nth-child(2n+1) {
    background-color: #FFFFFF;
  }
  .cont-item-details table.item-details-table tr {
    border-bottom: 1px dotted #999999;
  }
}
.cont-item-details {
  padding: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .cont-item-details {
    margin-block-start: 0;
    background-color: #F8F8F8;
    border: 1px solid #eee;
    border-radius: 0.625rem;
  }
}
.item-image-wrapper {
  box-sizing: border-box;
}
.item-image-wrapper figure {
  padding: 0;
  margin: 0.9375rem auto;
  width: 11.25rem;
  height: 11.25rem;
  overflow: hidden;
}
.item-image-wrapper figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media screen and (min-width: 768px) {
  .item-image-wrapper figure {
    padding: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .item-image-wrapper {
    box-shadow: 0 0.55rem 0.9rem -0.4rem rgba(54, 54, 54, 0.15);
    box-shadow: none;
    margin-bottom: 1.875rem;
    order: 2;
    border: 1px solid #eee;
    border-radius: 0.625rem 0 0 0.625rem;
    width: 15rem;
    height: 16.875rem;
  }
}
@container main-content (max-width: 680px) {
  .item-image-wrapper {
    width: 100%;
    height: auto;
    margin-bottom: 0;
    order: 1;
    border-radius: 0.625rem;
    border: none;
    box-shadow: none;
  }
}
.tag-wrapper {
  order: 4;
  overflow-x: auto;
  white-space: nowrap;
  padding: 0.625rem 0;
  min-height: 0.9375rem;
  margin-block-end: 0rem;
}
.tag-wrapper ul {
  padding: 0 0 0.9375rem 0.9375rem;
  margin: 0;
  list-style: none;
}
.tag-wrapper ul li {
  margin-right: 0.3125rem;
  display: inline-block;
  position: relative;
  font-size: 0.8125rem;
  line-height: 1;
}
.tag-wrapper ul li a {
  text-decoration: none;
  padding: 0.40625rem 0.8125rem;
  border-radius: 11.25rem;
  color: #333333;
  border: 1px solid #333333;
}
@media screen and (min-width: 768px) {
  .tag-wrapper {
    margin: 0;
    padding: 0.625rem 0 1.25rem;
  }
  .tag-wrapper ul {
    padding: 0 0 1.25rem;
  }
}
.btn-blue {
  color: #FFFFFF;
  background-color: #0054A6;
}
.btn-ghost {
  color: #0054A6;
  border: 1px solid #0054A6;
  border-radius: 300px;
}
.additional-item-data {
  background-color: #F8F8F8;
  border-radius: 0.5rem;
  border: 1px solid #eee;
  padding: 1.25rem;
  margin-block-end: 1.875rem;
}
.additional-item-data .additional-item-data-wrapper {
  padding-top: 1.875rem;
}
.additional-item-data .additional-item-data-wrapper p:first-child {
  padding-top: 0;
  margin-block-start: 0;
}
.additional-item-data .additional-item-data-wrapper .text-data:last-child {
  margin-block-end: 0;
}
.additional-item-data .additional-item-data-wrapper h1,
.additional-item-data .additional-item-data-wrapper h2,
.additional-item-data .additional-item-data-wrapper h3,
.additional-item-data .additional-item-data-wrapper h4,
.additional-item-data .additional-item-data-wrapper h5 h6 {
  font-size: 1rem;
  color: #333333;
  background-color: transparent;
  padding-top: 0;
  margin-block-start: 0;
  font-weight: bold;
}
.additional-item-data .additional-item-data-wrapper p,
.additional-item-data .additional-item-data-wrapper li {
  font-size: 0.875rem;
}
.additional-item-data .additional-item-data-wrapper dl {
  font-size: 0.875rem;
}
.additional-item-data .additional-item-data-wrapper dl dt {
  font-size: 0.9375rem;
  width: 100%;
}
.additional-item-data .additional-item-data-wrapper dl dd {
  margin-left: 0;
  width: 100%;
}
.additional-item-data .additional-item-data-wrapper table {
  margin-block-end: 0.9375rem;
  width: 100%;
}
.additional-item-data .additional-item-data-wrapper table tr {
  background-color: #FFFFFF;
}
.additional-item-data .additional-item-data-wrapper table tr:nth-child(2n+1) {
  background-color: #F8F8F8;
}
.additional-item-data .additional-item-data-wrapper table th {
  width: 32vw;
  max-width: 11.25rem;
}
.additional-item-data .additional-item-data-wrapper table th,
.additional-item-data .additional-item-data-wrapper table td {
  text-align: left;
  font-size: 0.875rem;
  padding: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .additional-item-data .additional-item-data-wrapper table {
    border-top: 1px dotted #999999;
  }
  .additional-item-data .additional-item-data-wrapper table tr {
    background-color: #F7F7FD;
  }
  .additional-item-data .additional-item-data-wrapper table tr:nth-child(2n+1) {
    background-color: #FFFFFF;
  }
  .additional-item-data .additional-item-data-wrapper table tr {
    border-bottom: 1px dotted #999999;
  }
}
.additional-item-data .additional-item-data-wrapper .button-wrapper a i {
  margin-right: 0.625rem;
}
.additional-item-data .additional-item-data-wrapper .button-wrapper a {
  margin-block-end: 0.9375rem;
}
.additional-item-data .additional-item-data-wrapper .go-maker {
  font-size: 0.8125rem;
}
nav.review-select {
  margin: 0 -0.9375rem;
}
nav.review-select ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  width: 100%;
  background-color: #FFFFFF;
}
nav.review-select ul li {
  display: flex;
  width: 33.33333%;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left: 1px solid #FFFFFF;
}
nav.review-select ul li.current {
  background-color: rgba(255, 136, 18, 0.5);
  color: #333333;
}
nav.review-select ul li:first-child {
  border-left: none;
}
nav.review-select ul li a {
  background-color: #F8F8F8;
  color: #999999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  height: 100%;
}
nav.review-select ul li a:hover {
  background-color: rgba(255, 136, 18, 0.5);
  color: #333333;
}
nav.review-select ul li {
  line-height: 1.1875;
  font-weight: bold;
  height: 3.4375rem;
}
@media screen and (min-width: 768px) {
  nav.review-select {
    margin: 0 0rem;
  }
}
nav.list-select {
  margin: 0;
}
nav.list-select ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  width: 100%;
  background-color: #FFFFFF;
}
nav.list-select ul li {
  display: flex;
  width: 33.33333%;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left: 1px solid #FFFFFF;
}
nav.list-select ul li.current {
  background-color: rgba(255, 136, 18, 0.5);
  color: #333333;
}
nav.list-select ul li:first-child {
  border-left: none;
}
nav.list-select ul li a {
  background-color: #F8F8F8;
  color: #999999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  height: 100%;
}
nav.list-select ul li a:hover {
  background-color: rgba(255, 136, 18, 0.5);
  color: #333333;
}
nav.list-select ul li {
  line-height: 1.1875;
  font-weight: bold;
  height: 2.25rem;
}
nav.ranking-select {
  margin: 0 -0.9375rem;
}
nav.ranking-select ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  width: 100%;
  background-color: #FFFFFF;
}
nav.ranking-select ul li {
  display: flex;
  width: 33.33333%;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left: 1px solid #FFFFFF;
}
nav.ranking-select ul li.current {
  background-color: rgba(255, 136, 18, 0.5);
  color: #333333;
}
nav.ranking-select ul li:first-child {
  border-left: none;
}
nav.ranking-select ul li a {
  background-color: #F8F8F8;
  color: #999999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  height: 100%;
}
nav.ranking-select ul li a:hover {
  background-color: rgba(255, 136, 18, 0.5);
  color: #333333;
}
nav.ranking-select ul li {
  background-color: #F8F8F8;
  color: #999999;
  line-height: 1.1875;
  font-weight: bold;
  height: 3.4375rem;
}
nav.ranking-select ul li:hover {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  nav.ranking-select {
    margin: 0;
  }
}
div.sort-wrap-2 {
  position: relative;
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0.9375rem 0 0.9375rem;
  color: #333333;
}
div.sort-wrap-2:after {
  font-size: 1.0625rem;
  position: absolute;
  top: 0;
  right: 0.625rem;
  bottom: 0px;
  z-index: 1;
  display: flex;
  align-items: center;
  pointer-events: none;
  font-family: "Font Awesome 6 Free";
  font-display: swap;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
  content: "\f107";
}
div.sort-wrap-2 select {
  color: #333333;
  box-shadow: 0 0.55rem 0.9rem -0.4rem rgba(54, 54, 54, 0.15);
  cursor: pointer;
  padding: 0.625rem;
  font-size: 13px;
  padding: 0.625rem 1.875rem 0.625rem 0.625rem;
  background-color: #fff;
  border: 0;
  border-radius: 4px;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.sort-wrap {
  overflow: hidden;
  width: 100%;
  margin: 0 auto 0.9375rem;
  text-align: center;
  position: relative;
  border-radius: 2px;
  border: 2px solid #0054A6;
  border-radius: 50px;
  background: #ffffff;
  color: #0054A6;
}
.sort-wrap:before {
  position: absolute;
  top: 0.8em;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #0054A6;
  pointer-events: none;
}
.sort-wrap select {
  width: 100%;
  padding-right: 1rem;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
  padding: 0.5rem 2.375rem 0.5rem 0.5rem;
}
div.for-brand-list-select {
  padding: 0.9375rem;
  display: flex;
  justify-content: space-between;
}
div.for-brand-list-select .sort-wrap {
  width: calc((100% - 2.8125rem) / 2);
}
.simple-itemlist-wrap ul.simple-itemlist {
  margin: 0 -0.9375rem;
}
.simple-itemlist-wrap ul.simple-itemlist li {
  border-bottom: 1px solid #CCCCCC;
}
.simple-itemlist-wrap ul.simple-itemlist li a {
  padding: 0.9375rem;
  display: block;
}
.simple-itemlist-wrap ul.simple-itemlist li a p {
  margin-block: 0;
}
.simple-itemlist-wrap ul.simple-itemlist li a span.rate {
  font-weight: bold;
  line-height: 1;
  color: #FF0000;
  display: inline;
}
.simple-itemlist-wrap ul.simple-itemlist li a span.rate:before {
  content: "\2605";
  margin-right: 0.125rem;
}
.simple-itemlist-wrap ul.simple-itemlist li a span.rate.total {
  display: none;
}
.simple-itemlist-wrap ul.simple-itemlist li a span.rate {
  font-size: 1rem;
  margin-right: 0.3125rem;
}
.simple-itemlist-wrap ul.simple-itemlist li a span.thisInfo {
  font-size: 0.8125rem;
  color: #999999;
  margin-right: 0.1875rem;
}
.simple-itemlist-wrap ul.simple-itemlist li a span.thisInfo:not(.thisCat):after {
  content: "/";
  padding-left: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .simple-itemlist-wrap .sort-wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .simple-itemlist-wrap ul.simple-itemlist {
    margin-left: 0;
    margin-right: 0;
  }
}
.rate-chart-box {
  background-color: #FFFFFF;
  border-radius: 0.25rem;
  margin-bottom: 0.9375rem;
  padding: 0 0 0;
}
.rate-chart-box .wrap-graph {
  display: flex;
}
.rate-chart-box .wrap-graph .graph-title {
  width: 3.125rem;
  color: #333333;
  font-weight: normal;
  position: relative;
  height: 12.5rem;
}
.rate-chart-box .wrap-graph .graph-title div.gt {
  height: 1.25rem;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  line-height: 1;
  width: 100%;
  text-align: right;
  padding-right: 0.9375rem;
  position: absolute;
  justify-content: center;
}
.rate-chart-box .wrap-graph .graph-title .rate-5 {
  top: 1.25rem;
}
.rate-chart-box .wrap-graph .graph-title .rate-4 {
  top: 3.4375rem;
}
.rate-chart-box .wrap-graph .graph-title .rate-3 {
  top: 5.625rem;
}
.rate-chart-box .wrap-graph .graph-title .rate-2 {
  top: 7.8125rem;
}
.rate-chart-box .wrap-graph .graph-title .rate-1 {
  top: 10rem;
}
.rate-chart-box .wrap-graph .graph-number {
  width: 50px;
  font-weight: normal;
  position: relative;
  height: 12.5rem;
}
.rate-chart-box .wrap-graph .graph-number div.nb {
  height: 1.25rem;
  font-size: 0.8125rem;
  display: flex;
  color: #333333;
  align-items: center;
  line-height: 1;
  width: 70%;
  justify-content: flex-end;
  padding-right: 0;
  position: absolute;
}
.rate-chart-box .wrap-graph .graph-number .rate-5 {
  top: 1.25rem;
}
.rate-chart-box .wrap-graph .graph-number .rate-4 {
  top: 3.4375rem;
}
.rate-chart-box .wrap-graph .graph-number .rate-3 {
  top: 5.625rem;
}
.rate-chart-box .wrap-graph .graph-number .rate-2 {
  top: 7.8125rem;
}
.rate-chart-box .wrap-graph .graph-number .rate-1 {
  top: 10rem;
}
.rate-chart-box .wrap-graph .bar-graph-wrap {
  width: calc(100% - 6.25rem);
  position: relative;
  height: 12.5rem;
  overflow: hidden;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .graph {
  height: 1.25rem;
  position: absolute;
  left: 0;
  background-color: #FFFFFF;
  bottom: auto;
  margin: auto;
  border: 1px solid #CCCCCC;
  width: 95%;
  border-radius: 0.25rem;
  overflow: hidden;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .graph div.bou {
  animation: graphAnim 2s forwards;
  background: rgb(255, 136, 18);
  position: absolute;
  top: 0;
  left: 0;
  height: 1.25rem;
  border-radius: 0 4px 4px 0;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .rate-5 {
  top: 1.25rem;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .rate-4 {
  top: 3.4375rem;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .rate-3 {
  top: 5.625rem;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .rate-2 {
  top: 7.8125rem;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .rate-1 {
  top: 10rem;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-0 {
  width: 0%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-1 {
  width: 1%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-2 {
  width: 2%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-3 {
  width: 3%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-4 {
  width: 4%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-5 {
  width: 5%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-6 {
  width: 6%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-7 {
  width: 7%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-8 {
  width: 8%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-9 {
  width: 9%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-10 {
  width: 10%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-11 {
  width: 11%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-12 {
  width: 12%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-13 {
  width: 13%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-14 {
  width: 14%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-15 {
  width: 15%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-16 {
  width: 16%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-17 {
  width: 17%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-18 {
  width: 18%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-19 {
  width: 19%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-20 {
  width: 20%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-21 {
  width: 21%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-22 {
  width: 22%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-23 {
  width: 23%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-24 {
  width: 24%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-25 {
  width: 25%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-26 {
  width: 26%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-27 {
  width: 27%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-28 {
  width: 28%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-29 {
  width: 29%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-30 {
  width: 30%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-31 {
  width: 31%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-32 {
  width: 32%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-33 {
  width: 33%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-34 {
  width: 34%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-35 {
  width: 35%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-36 {
  width: 36%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-37 {
  width: 37%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-38 {
  width: 38%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-39 {
  width: 39%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-40 {
  width: 40%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-41 {
  width: 41%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-42 {
  width: 42%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-43 {
  width: 43%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-44 {
  width: 44%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-45 {
  width: 45%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-46 {
  width: 46%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-47 {
  width: 47%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-48 {
  width: 48%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-49 {
  width: 49%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-50 {
  width: 50%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-51 {
  width: 51%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-52 {
  width: 52%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-53 {
  width: 53%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-54 {
  width: 54%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-55 {
  width: 55%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-56 {
  width: 56%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-57 {
  width: 57%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-58 {
  width: 58%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-59 {
  width: 59%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-60 {
  width: 60%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-61 {
  width: 61%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-62 {
  width: 62%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-63 {
  width: 63%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-64 {
  width: 64%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-65 {
  width: 65%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-66 {
  width: 66%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-67 {
  width: 67%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-68 {
  width: 68%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-69 {
  width: 69%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-70 {
  width: 70%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-71 {
  width: 71%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-72 {
  width: 72%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-73 {
  width: 73%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-74 {
  width: 74%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-75 {
  width: 75%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-76 {
  width: 76%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-77 {
  width: 77%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-78 {
  width: 78%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-79 {
  width: 79%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-80 {
  width: 80%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-81 {
  width: 81%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-82 {
  width: 82%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-83 {
  width: 83%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-84 {
  width: 84%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-85 {
  width: 85%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-86 {
  width: 86%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-87 {
  width: 87%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-88 {
  width: 88%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-89 {
  width: 89%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-90 {
  width: 90%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-91 {
  width: 91%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-92 {
  width: 92%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-93 {
  width: 93%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-94 {
  width: 94%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-95 {
  width: 95%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-96 {
  width: 96%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-97 {
  width: 97%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-98 {
  width: 98%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-99 {
  width: 99%;
}
.rate-chart-box .wrap-graph .bar-graph-wrap .per-100 {
  width: 100%;
}
@keyframes graphAnim {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.af-bnr-box {
  width: 100%;
}
.af-bnr-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9375rem;
}
.accesstrade-wrap {
  display: none !important;
}
.review-wrapper {
  margin: 0.9375rem -0.9375rem;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .review-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}
.review-wrapper-inlist {
  margin: 0 1.25rem 0.9375rem;
  box-shadow: 0 0.55rem 0.9rem -0.4rem rgba(54, 54, 54, 0.15);
  border-radius: 4px;
  border: 1px solid #CCCCCC;
}
.review-wrapper-inlist article.review-body:first-child {
  border-top: none;
}
.review-body.dummy-body-ad {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: block !important;
  opacity: 0.01;
  visibility: visible;
  transition: opacity 0.3s ease;
}
.review-body.dummy-body-ad .ad-inner {
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-body.dummy-body-ad ins.adsbygoogle {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 auto !important;
}
.review-body.dummy-body-ad ins.adsbygoogle iframe {
  display: block !important;
  max-width: 100% !important;
  height: auto !important;
}
.review-body.dummy-body-ad.show {
  background-color: #FFFFFF;
  opacity: 1;
}
.review-body.dummy-body-ad.show .ad-inner {
  padding: 1rem;
  min-height: 7.5rem;
}
.review-body.dummy-body-ad.show ins.adsbygoogle {
  min-height: 5.625rem !important;
}
.review-body {
  display: none;
  position: relative;
}
.review-body.show,
.review-body.show-2 {
  display: block;
}
.review-body {
  border-top: 1px solid #CCCCCC;
}
.review-body .review-data {
  padding: 0.625rem 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-bottom: 1px solid #CCCCCC;
}
.review-body .review-data .data-score {
  display: block;
  width: 8.125rem;
}
.review-body .review-data .data-score span {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  color: #FF0000;
  display: inline;
}
.review-body .review-data .data-score span:before {
  content: "\2605";
  margin-right: 0.125rem;
}
.review-body .review-data .data-score span.total {
  display: none;
}
.review-body .review-data .data-author {
  font-size: 0.6875rem;
  line-height: 1.3;
}
.review-body .review-data .data-author a {
  padding: 0 !important;
  display: inline !important;
}
.review-body .review-cont p {
  margin-block: 0;
}
.review-body .review-cont {
  padding: 0.9375rem;
  line-height: 1.7142857143;
  font-size: 0.875rem;
}
.review-body .report-area {
  position: absolute;
  right: 0.46875rem;
  bottom: 0.46875rem;
}
.review-body .report-area a.report-button {
  position: absolute;
  right: 0.46875rem;
  bottom: 0.46875rem;
  font-size: 0.6875rem;
  padding: 0.1875rem 0.5rem;
  background-color: rgba(0, 0, 0, 0.55);
  color: #FFFFFF;
}
.review-body .report-area a.report-button:before {
  content: "\901a\5831";
  margin-right: 0.25rem;
}
.review-body .report-area a.report-button {
  position: static;
}
.review-body:nth-child(2n) {
  background-color: #F8F8F8;
}
.btn-yakuzaishi {
  color: #000;
  height: 3.5rem;
  background-color: #fecd44;
  border: none;
  border-radius: 190px;
  letter-spacing: 0.05em;
}
.yaku-col-rapper {
  margin-bottom: 30px;
}
.yaku-col-rapper:before {
  content: "\ff3c  \85ac\5264\5e2b\304c\89e3\8aac! \ff0f";
  display: block;
  letter-spacing: 0.05em;
  font-size: 13px;
  font-weight: bold;
  padding-bottom: 5px;
  text-align: center;
}
.yaku-col-rapper a.btn-yakuzaishi {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .yaku-col-rapper {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(-30px);
  }
  .yaku-col-rapper:before {
    font-size: 1rem;
  }
  .yaku-col-rapper a.btn-yakuzaishi {
    font-size: 1.3125rem;
  }
}
@media screen and (min-width: 768px) {
  .yaku-col-rapper.sidebar {
    transform: translateY(0px);
  }
  .yaku-col-rapper.sidebar a.btn-yakuzaishi {
    font-size: 1.125rem;
  }
}
.yaku-col-rapper-item:before {
  content: "";
  display: none;
  letter-spacing: 0.05em;
  font-size: 13px;
  font-weight: bold;
  padding-bottom: 5px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .yaku-col-rapper-item:before {
    font-size: 1rem;
  }
}
.yaku-col-rapper-item.active {
  content: "\ff3c  \85ac\5264\5e2b\304c\89e3\8aac! \ff0f";
  display: block;
}
.btn-load-more {
  background-color: rgb(255, 136, 18);
  color: #FFFFFF;
  border: none;
  border-radius: 800px;
  width: calc(100% - 1.875rem);
  margin: 0 auto 0;
}
.btn-load-more-inlist {
  background-color: #FFFFFF;
  color: #333333;
  border: 1px solid #333333;
  border-radius: 800px;
  width: calc(100% - 1.875rem);
  margin: 0 auto 0.9375rem;
  box-shadow: none;
}
.btn-load-more-inlist:before {
  font-family: "Font Awesome 6 Free";
  font-display: swap;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
  content: "+";
  margin-right: 0.3125rem;
}
.btn-load-more-inlist.expanded:before {
  content: "\f068";
}
.btn-load-more-inlist.btn-go-item {
  justify-content: center;
  margin-block-start: 0.9375rem;
  padding: 0;
}
.btn-load-more-inlist.btn-go-item:before {
  content: "\f105";
}
.load-more-wrapper {
  padding-top: 0.9375rem;
  padding-bottom: 1.875rem;
  border-top: 1px solid #CCCCCC;
}
#to-see-more-review {
  display: none;
}
.item-picture-scroll {
  margin-right: -0.9375rem;
  margin-left: -0.9375rem;
  padding-bottom: 0.9375rem;
  overflow-x: auto;
  white-space: nowrap;
  padding-left: 0.9375rem;
}
.item-picture-scroll .item-pictures-wrap {
  display: inline-block;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}
.item-picture-scroll .item-pictures-wrap li {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.item-picture-scroll .item-pictures-wrap li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.item-picture-scroll .item-pictures-wrap li {
  display: inline-block;
  margin-right: 0.9375rem;
  width: 15rem;
  height: 15rem;
}
.item-picture-scroll .item-pictures-wrap li a.report-button {
  position: absolute;
  right: 0.46875rem;
  bottom: 0.46875rem;
  font-size: 0.6875rem;
  padding: 0.1875rem 0.5rem;
  background-color: rgba(0, 0, 0, 0.55);
  color: #FFFFFF;
}
.item-picture-scroll .item-pictures-wrap li a.report-button:before {
  content: "\901a\5831";
  margin-right: 0.25rem;
}
.item-picture-scroll .item-pictures-wrap li img {
  border-radius: 4px;
}
.retaled-list {
  background-color: #F8F8F8;
  padding: 0.9375rem 0.9375rem 1.875rem;
  margin-bottom: 1.875rem;
}
.retaled-list h3 {
  margin-block: 0 0.9375rem;
}
.retaled-list ul {
  margin-block: 0;
}
.retaled-list ul li {
  display: block;
  border-bottom: 1px solid #CCCCCC;
}
.retaled-list ul li:first-child {
  border-top: 1px solid #CCCCCC;
}
.retaled-list ul li a {
  color: #333333;
  display: flex;
  padding: 0.46875rem 0;
  align-items: center;
  justify-content: space-between;
}
.retaled-list ul li a:after {
  font: var(--fa-font-solid);
  content: "\f105";
}
#list-explain h2 {
  color: #333333;
  background-color: transparent;
  font-weight: bold;
}
#list-explain {
  margin-bottom: 1.875rem;
}
.item-share {
  padding: 0.9375rem;
}
.item-share h3 {
  text-align: center;
}
.item-share .btn-load-more {
  width: 100%;
}
.sns-wrap h3 {
  text-align: center;
}
.sns-wrap ul.sns-list {
  display: flex;
}
.sns-wrap ul.sns-list li {
  flex: 1;
}
.sns-wrap ul.sns-list li a {
  color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sns-wrap ul.sns-list li a i {
  font-size: 1.75rem;
}
.sns-wrap ul.sns-list li a i.fa-x-twitter {
  color: #000000;
}
.sns-wrap ul.sns-list li a i.fa-line {
  color: #00b900;
}
.sns-wrap ul.sns-list li a i.fa-facebook {
  color: #1877f2;
}
.sns-wrap ul.sns-list li a i.fa-instagram {
  background:
    radial-gradient(
      circle at 30% 107%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285aeb 90%);
  display: block;
  background-color: red;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sns-wrap ul.sns-list li a span {
  display: block;
  font-size: 0.75rem;
  padding-top: 0.3125rem;
}
.ad-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-wrapper figure {
  background-color: #ccc;
  width: 18.75rem;
  height: 15.625rem;
}
.ad-wrapper {
  height: 18.75rem;
}
.page-title {
}
.page-title .fixed-title {
  width: 100%;
  position: static;
  background-color: #FFFFFF;
  transition: height 0.3s ease;
}
.page-title .fixed-title h1 {
  position: relative;
  background-color: #FFFFFF;
  margin: 0;
  padding: 0.9375rem;
  transition: font-size 0.1s ease, margin 0.1s ease;
}
.page-title .fixed-title h1 .info-in-title {
  line-height: 1;
  display: block;
  color: #999999;
  font-size: 1rem;
  padding-bottom: 0.25rem;
}
.page-title .fixed-title h1 .suffix-in-title {
  font-size: 1rem;
  display: block;
  padding-top: 0.25rem;
  font-weight: normal;
}
.page-title .fixed-title h1 + p.list-subp {
  line-height: 1;
  display: block;
  color: #999999;
  font-size: 1rem;
  padding: 0 0.9375rem;
  margin-block-start: -0.3125rem;
}
.page-title .fixed-title h1 .item-code {
  position: absolute;
  bottom: 0.9375rem;
  right: 0.9375rem;
  font-size: 0.75rem;
  font-weight: normal;
  color: #999999;
}
.page-title .fixed-title.scroll-fixed {
  background-color: #F8F8F8;
  background-color: transparent;
  box-shadow: 0 0.55rem 0.9rem -0.4rem rgba(54, 54, 54, 0.15);
  z-index: 8;
  position: fixed;
  top: 3.625rem;
  left: 0;
  width: 100%;
}
.page-title .fixed-title.scroll-fixed h1 {
  margin: 0;
  font-size: 0.75rem;
}
.page-title .fixed-title.scroll-fixed h1 .info-in-title {
  font-size: 0.6875rem;
}
.page-title .fixed-title.scroll-fixed h1 .suffix-in-title {
  display: none;
}
.page-title .fixed-title.scroll-fixed p.no-review-message {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-title .fixed-title.scroll-fixed h1 {
    font-size: 1.5rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .page-title .fixed-title.scroll-fixed h1 .suffix-in-title {
    display: inline;
  }
}
.page-title .fixed-title.scroll-fixed .list-subp {
  display: none;
}
.page-title .fixed-title.scroll-fixed .rate-out-title .rate-in-title__wrap,
.page-title .fixed-title.scroll-fixed .rate-in-title .rate-in-title__wrap {
  height: 0;
  padding: 0;
  transition: font-size 0.3s ease, margin 0.3s ease;
}
.page-title .fixed-title.scroll-fixed .rate-out-title .rate-in-title__wrap .rate-in-title__title,
.page-title .fixed-title.scroll-fixed .rate-in-title .rate-in-title__wrap .rate-in-title__title {
  display: none;
}
.page-title .fixed-title.scroll-fixed .rate-out-title .rate-in-title__wrap span,
.page-title .fixed-title.scroll-fixed .rate-in-title .rate-in-title__wrap span {
  display: none;
}
.page-title .fixed-title .rate-out-title {
  display: none !important;
}
.page-title.item-title p.no-review-message {
  display: inline-block;
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .page-title.item-title {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.875rem;
  }
  .page-title.item-title h1 {
    padding-left: 0;
    padding-right: 0;
  }
  .page-title.item-title p.no-review-message {
    padding: 0;
  }
}
@container main-content (max-width: 680px) {
  .page-title.item-title {
    display: block;
  }
}
section#code-about-in-no-review article.aboutCode {
  padding: 0rem;
}
.rate-out-title nav.item-page-scroll,
.rate-in-title nav.item-page-scroll {
  display: none;
}
@media screen and (min-width: 768px) {
  .rate-out-title nav.item-page-scroll ul,
  .rate-in-title nav.item-page-scroll ul {
    margin-block: 0;
    display: flex;
    border-bottom: 1px solid rgb(255, 136, 18);
  }
  .rate-out-title nav.item-page-scroll ul li,
  .rate-in-title nav.item-page-scroll ul li {
    width: 50%;
  }
  .rate-out-title nav.item-page-scroll ul li:last-child,
  .rate-in-title nav.item-page-scroll ul li:last-child {
    border-left: 1px solid rgb(255, 136, 18);
  }
  .rate-out-title nav.item-page-scroll ul li a,
  .rate-in-title nav.item-page-scroll ul li a {
    color: #333333;
    background-color: #FFFFFF;
    display: block;
    font-weight: bold;
    padding: 0.5rem;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .rate-out-title,
  .rate-in-title {
    order: 3;
    width: calc(100% - 15rem);
  }
}
.rate-out-title {
  padding: 0.9375rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}
.rate-out-title .rate-in-title__wrap {
  transition: font-size 0.3s ease, margin 0.3s ease;
  position: relative;
  height: auto;
  width: 50%;
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 0.9375rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.rate-out-title .rate-in-title__wrap .minus-icon {
  position: absolute;
  content: "";
  width: 0.9375rem;
  height: 0.125rem;
  background: #333333;
  right: 0.9375rem;
  top: 50%;
  transform: translateY(-50%);
}
.rate-out-title .rate-in-title__wrap .minus-icon:after {
  content: "\8a73\7d30\3092\898b\308b";
  position: absolute;
  font-size: 0.6875rem;
  right: 1.5625rem;
  width: 6em;
  text-align: right;
  display: block;
  top: -0.4375rem;
}
.rate-out-title .rate-in-title__wrap .minus-icon.active:after {
  content: "\9589\3058\308b";
}
.rate-out-title .rate-in-title__wrap .plus-icon {
  position: absolute;
  content: "";
  width: 0.9375rem;
  height: 0.125rem;
  background: #333333;
  right: 0.9375rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: ease all 0.5s;
}
.rate-out-title .rate-in-title__wrap .plus-icon.active {
  transform: translateY(-50%);
}
.rate-out-title .rate-in-title__wrap .rate-in-title__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  font-weight: bold;
  color: #333333;
  font-size: 1.3125rem;
  position: relative;
}
.rate-out-title .rate-in-title__wrap .rate-in-title__title span.sogo {
  font-size: 0.875rem;
  font-weight: normal;
}
.rate-out-title .rate-in-title__wrap .rate-in-title__title span.sogo-score {
  font-size: 2.375rem;
  color: #333333;
}
.rate-out-title .rate-in-title__wrap .rate-in-title-numbers {
  display: flex;
  box-sizing: border-box;
  align-items: end;
  justify-content: center;
  margin-block: 0.625rem 0;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  width: 100%;
}
.rate-out-title .rate-in-title__wrap .rate-in-title-numbers dt {
  margin: 0;
  font-weight: normal;
  width: 3rem;
  margin-right: 0.75rem;
  text-align: right;
}
.rate-out-title .rate-in-title__wrap .rate-in-title-numbers dd {
  margin: 0;
  width: 50%;
}
.rate-out-title .rate-in-title__wrap .rate-in-title-numbers dd span {
  font-size: 0.8125rem;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .rate-out-title .rate-in-title__wrap {
    width: 45%;
  }
  .rate-out-title .rate-in-title__wrap .rate-in-title__title span.sogo {
    font-size: 1rem;
  }
  .rate-out-title .rate-in-title__wrap .rate-in-title__title span.sogo-score {
    font-size: 2.875rem;
  }
  .rate-out-title .rate-in-title__wrap .rate-in-title-numbers {
    font-size: 0.875rem;
    width: 100%;
  }
  .rate-out-title .rate-in-title__wrap .rate-in-title-numbers dt {
    margin: 0;
    font-weight: normal;
    width: 4rem;
    margin-right: 1rem;
    text-align: right;
  }
  .rate-out-title .rate-in-title__wrap .rate-in-title-numbers dd {
    margin: 0;
    width: 50%;
  }
  .rate-out-title .rate-in-title__wrap .rate-in-title-numbers dd span {
    font-size: 0.875rem;
    font-weight: normal;
  }
}
@media screen and (min-width: 768px) {
  .rate-out-title {
    height: 16.875rem;
    border: 1px solid #eff3f6;
    border-radius: 0 0.5rem 0.5rem 0;
    margin-block-end: 1.875rem;
    padding: 1.25rem;
  }
  .rate-out-title.no-picture {
    width: 100%;
    border-radius: 0.5rem;
  }
  .rate-out-title.no-picture .rate-in-title-numbers {
    width: 50%;
  }
}
@container main-content (max-width: 680px) {
  .rate-out-title {
    width: 100%;
    border-radius: 0.5rem;
  }
}
.rate-out-title {
  background-color: #eff3f6;
}
.rate-out-title .rate-in-title-detail__wrap {
  box-sizing: border-box;
  width: 60%;
  padding-left: 0.9375rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.rate-out-title .rate-in-title-detail__wrap p.in-category-title {
  width: 100%;
  margin: 0;
  text-align: center;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  background-color: #0054A6;
  border-radius: 0.5rem 0.5rem 0 0;
  display: none;
  padding: 10px 0;
}
.rate-out-title .rate-in-title-detail__wrap p.in-category-title span {
  font-size: 0.875rem;
  font-weight: bold;
  margin-right: 2px;
}
.rate-out-title .rate-in-title-detail__wrap p.in-category {
  font-size: 0.75rem;
  margin-block: 0.625rem 0;
}
.rate-out-title .rate-in-title-detail__wrap .rate-in-title-ranking {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  margin-block: 0;
  padding: 0.3125rem 0;
  line-height: 1.2;
  background-color: #fff;
  border-radius: 0.5rem 0.5rem 0 0;
  border: 1px solid #eee;
}
.rate-out-title .rate-in-title-detail__wrap .rate-in-title-ranking dt {
  margin-block: 0.5rem 0;
  width: 100%;
  font-size: 0.75rem;
  text-align: center;
}
.rate-out-title .rate-in-title-detail__wrap .rate-in-title-ranking dd {
  box-sizing: border-box;
  margin: 0;
  text-align: center;
  font-size: 0.875rem;
}
.rate-out-title .rate-in-title-detail__wrap .rate-in-title-ranking dd span {
  font-size: 1.3125rem;
  font-weight: bold;
  margin-right: 0.125rem;
}
.rate-out-title .rate-in-title-detail__wrap .rate-in-title-ranking.last {
  border-top: none;
  border-radius: 0 0 0.5rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .rate-out-title .rate-in-title-detail__wrap .rate-in-title-ranking {
    border-radius: 0;
    border-top: none;
    padding: 0.625rem 0;
  }
  .rate-out-title .rate-in-title-detail__wrap .rate-in-title-ranking.last {
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
  }
}
@container main-content (min-width: 680px) {
  .rate-out-title .rate-in-title-detail__wrap {
    width: 50%;
  }
  .rate-out-title .rate-in-title-detail__wrap p.in-category-title {
    display: block;
    font-size: 1rem;
    margin-bottom: 0;
  }
}
.rate-out-title .rate-in-title-detail__text {
  font-size: 0.875rem;
}
#graph-wrap.no-graph {
  display: none;
}
.graph-wrap div#chart-wrap {
  z-index: 0;
  display: flex;
  flex-wrap: wrap;
}
.graph-wrap div#chart-wrap div.biGuide {
  padding: 0;
}
.graph-wrap div#chart-wrap div.biGuide p.note {
  font-size: 0.75rem;
  margin-top: 0;
  text-align: right;
  margin-bottom: 1.875rem;
}
.graph-wrap div#chart-wrap div.chart-container {
  border: none;
  padding-bottom: 0;
}
.graph-wrap div#chart-wrap div.chart-container.chart1 {
  width: 100%;
  margin: 0;
  height: 25rem;
  margin-bottom: 1.875rem;
}
.graph-wrap div#chart-wrap div.chart-container.chart2 {
  width: 100%;
  margin-bottom: 1.875rem;
}
.graph-wrap div#chart-wrap div.chart-container.chart2-2 {
  display: none;
  width: 100%;
}
.graph-wrap div#chart-wrap div.chart-container.chart3 {
  width: 100%;
}
.gsc-control-cse {
  background-color: transparent !important;
}
#searchBox {
  position: fixed;
  top: 3.75rem;
  left: 0;
  width: 100%;
  background-color: #F8F8F8;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(-100%);
  opacity: 0;
  z-index: 9;
}
#searchBox.onsearch {
  transform: translateY(0);
  opacity: 1;
  box-shadow: 0 0.55rem 0.9rem -0.4rem rgba(54, 54, 54, 0.15);
}
#searchBox div.innerSearch {
  display: flex;
  max-width: 57.25rem;
  margin: auto;
  justify-content: space-around;
}
#searchBox div.innerSearch div.gscont {
  width: calc(100% - 2.5rem);
}
#searchBox div.innerSearch a.closeButton {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-left: -1rem;
}
#searchBox div.innerSearch a.closeButton span {
  display: none;
}
nav.menu-ps {
  display: none;
}
@media screen and (min-width: 768px) {
  nav.menu-ps {
    display: block;
  }
  nav.menu-ps ul {
    display: flex;
    align-items: end;
  }
  nav.menu-ps ul li {
    line-height: 1;
  }
  nav.menu-ps ul li {
    font-size: 0.875rem;
    margin-right: 1.875rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  nav.menu-ps ul li span.md {
    display: none;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  nav.menu-ps ul li span.md {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  nav.menu-ps ul li span.full {
    display: none;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  nav.menu-ps ul li span.full {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  nav.menu-ps ul li a {
    color: #333333;
  }
  nav.menu-ps ul li:last-child {
    margin-right: 0;
  }
}
.itemlist-wrap {
  margin: 0 -0.9375rem;
}
.itemlist-wrap ul {
  margin-block: 0;
}
.itemlist-wrap ul li {
  border-bottom: 1px solid #CCCCCC;
}
.itemlist-wrap ul li:last-child {
  border-bottom: none;
}
.itemlist-wrap ul li a {
  display: flex;
  justify-content: space-between;
  padding: 0.9375rem 1.25rem;
  position: relative;
}
.itemlist-wrap ul li a span.rank {
  font-size: 0.8125rem;
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  left: 0.3125rem;
  top: 0.3125rem;
  z-index: 2;
  background-color: #999999;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 2.5rem;
}
.itemlist-wrap ul li a span.rank span {
  font-size: 0.5625rem;
  margin-left: 0.125rem;
  transform: translateY(0.125rem);
}
.itemlist-wrap ul li a span.rank.rank-1 {
  background-color: #DEC240;
}
.itemlist-wrap ul li a span.rank.rank-2 {
  background-color: #C5C5C6;
}
.itemlist-wrap ul li a span.rank.rank-3 {
  background-color: #CB9B7A;
}
.itemlist-wrap ul li a figure {
  margin: 0;
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.itemlist-wrap ul li a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.itemlist-wrap ul li a figure {
  width: 3.75rem;
  height: 3.75rem;
}
.itemlist-wrap ul li a figure img {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 2px;
}
.itemlist-wrap ul li a .spec {
  width: calc(100% - 4.6875rem);
}
.itemlist-wrap ul li a .spec p {
  font-weight: bold;
  margin-block: 0;
  line-height: 1.3;
}
.itemlist-wrap ul li a .spec p.maker-name,
.itemlist-wrap ul li a .spec p.brand-name {
  font-weight: normal;
  line-height: 1;
  font-size: 0.8125rem;
  color: #999999;
}
.itemlist-wrap ul li a .spec span.rate {
  font-weight: bold;
  line-height: 1;
  color: #FF0000;
  display: inline;
}
.itemlist-wrap ul li a .spec span.rate:before {
  content: "\2605";
  margin-right: 0.125rem;
}
.itemlist-wrap ul li a .spec span.rate.total {
  display: none;
}
.itemlist-wrap ul li a .spec span.rate {
  font-size: 1.3125rem;
}
.itemlist-wrap ul li a .spec span.count-rate {
  font-size: 0.6875rem;
  color: #333333;
}
.itemlist-wrap ul li a .spec span.count-review {
  font-size: 0.8125rem;
  color: #333333;
  padding-left: 1.25rem;
  background-image: url(../img/icon-mnlg.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.itemlist-wrap ul li.nothing {
  padding: 0.9375rem 1.25rem;
}
.itemlist-wrap ul.review-list-hide .review-group {
  display: none;
}
.itemlist-wrap ul.review-list-hide .review-group.show {
  display: block;
}
.itemlist-wrap .ranking-list-block {
  border: 1px solid #CCCCCC;
  margin: 0.9375rem;
  border-radius: 0.25rem;
  box-shadow: 0 0.55rem 0.9rem -0.4rem rgba(54, 54, 54, 0.15);
}
.itemlist-wrap .ranking-list-block h3 {
  border-bottom: 1px solid #CCCCCC;
  padding: 0.9375rem;
  margin-block: 0;
}
.itemlist-wrap .ranking-list-block a {
  display: flex;
  justify-content: space-between;
  padding: 0.9375rem 1.25rem;
  position: relative;
}
.itemlist-wrap .ranking-list-block a span.rank {
  font-size: 0.8125rem;
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  left: 0.3125rem;
  top: 0.3125rem;
  z-index: 2;
  background-color: #999999;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 2.5rem;
}
.itemlist-wrap .ranking-list-block a span.rank span {
  font-size: 0.5625rem;
  margin-left: 0.125rem;
  transform: translateY(0.125rem);
}
.itemlist-wrap .ranking-list-block a span.rank.rank-1 {
  background-color: #DEC240;
}
.itemlist-wrap .ranking-list-block a span.rank.rank-2 {
  background-color: #C5C5C6;
}
.itemlist-wrap .ranking-list-block a span.rank.rank-3 {
  background-color: #CB9B7A;
}
.itemlist-wrap .ranking-list-block a figure {
  margin: 0;
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.itemlist-wrap .ranking-list-block a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.itemlist-wrap .ranking-list-block a figure {
  width: 3.75rem;
  height: 3.75rem;
}
.itemlist-wrap .ranking-list-block a figure img {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 2px;
}
.itemlist-wrap .ranking-list-block a .spec {
  width: calc(100% - 4.6875rem);
}
.itemlist-wrap .ranking-list-block a .spec p {
  font-weight: bold;
  margin-block: 0;
  line-height: 1.3;
}
.itemlist-wrap .ranking-list-block a .spec p.maker-name,
.itemlist-wrap .ranking-list-block a .spec p.brand-name {
  font-weight: normal;
  line-height: 1;
  font-size: 0.8125rem;
  color: #999999;
}
.itemlist-wrap .ranking-list-block a .spec span.rate {
  font-weight: bold;
  line-height: 1;
  color: #FF0000;
  display: inline;
}
.itemlist-wrap .ranking-list-block a .spec span.rate:before {
  content: "\2605";
  margin-right: 0.125rem;
}
.itemlist-wrap .ranking-list-block a .spec span.rate.total {
  display: none;
}
.itemlist-wrap .ranking-list-block a .spec span.rate {
  font-size: 1.3125rem;
}
.itemlist-wrap .ranking-list-block a .spec span.count-rate {
  font-size: 0.6875rem;
  color: #333333;
}
.itemlist-wrap .ranking-list-block a .spec span.count-review {
  font-size: 0.8125rem;
  color: #333333;
  padding-left: 1.25rem;
  background-image: url(../img/icon-mnlg.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.itemlist-wrap p.itemlist-nothing {
  margin: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .itemlist-wrap {
    margin: 0;
    border: 1px solid #CCCCCC;
    box-shadow: 0 0.55rem 0.9rem -0.4rem rgba(54, 54, 54, 0.15);
  }
}
.itemlist-wrap #result-container-favors p.no-result,
.itemlist-wrap #result-container-sales p.no-result {
  margin: 0 0 0.9375rem;
  text-align: center;
}
.itemlist-button-wrap {
  border-radius: 4px;
  padding-top: 0.9375rem;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .itemlist-button-wrap {
    padding-top: 3.75rem;
  }
  .itemlist-button-wrap a {
    max-width: 27.5rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 481px) {
  #footer-fixed {
    display: none;
  }
}
#footer-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgb(255, 136, 18);
  z-index: 10;
}
#footer-fixed ul {
  display: flex;
  padding: 0.625rem 0 0.3125rem;
  margin: 0;
}
#footer-fixed ul li {
  width: 20%;
}
#footer-fixed ul li a {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  color: #FFFFFF;
}
#footer-fixed ul li a i {
  font-size: 1.625rem;
  margin-bottom: 0.3125rem;
}
#footer-fixed ul li a span {
  font-size: 0.6875rem;
}
#footer-fixed ul li#bg {
  display: none;
  position: relative;
}
#footer-fixed ul li#bg div.menu-burger {
  margin-bottom: 0.3125rem;
}
#footer-fixed ul li#bg:before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  height: 1.25rem;
  top: -0.9375rem;
  left: 0;
  pointer-events: none;
  background-image: url(img/curve_black.svg);
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
}
#footer-fixed ul li:last-child {
  border-right: none;
}
#footer-fixed ul li a.wrapper-burger {
  display: flex;
  color: yellow;
  flex-direction: column;
}
#footer-fixed ul li a.wrapper-burger figure figcaption {
  position: absolute;
}
#footer-fixed ul li a.wrapper-burger p {
  margin-bottom: 0;
  padding-top: 0px;
  font-size: 0.6875rem;
  margin-top: 0.3125rem;
}
#footer-fixed ul li {
}
#footer-fixed ul li .menu-burger {
  display: inline-block;
  cursor: pointer;
  position: relative;
  width: 1.875rem;
  height: 1.375rem;
  padding-top: 0.3125rem;
}
#footer-fixed ul li .menu-burger span {
  background: yellow;
  display: block;
  height: 0.125rem;
  width: 100%;
  margin: 0.3125rem auto;
  transition: all 0.3s ease-in-out;
}
#footer-fixed ul li .menu-burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 0.625rem;
  position: absolute;
  background: yellow;
}
#footer-fixed ul li .menu-burger.active span:nth-child(2) {
  opacity: 0;
}
#footer-fixed ul li .menu-burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 0.625rem;
  position: absolute;
  background: yellow;
}
#slideMenu {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  box-shadow: 0 -0.125rem 0.625rem rgba(0, 0, 0, 0.1);
  transition: bottom 0.3s ease-in-out;
  z-index: 9;
  height: calc(100vh - 14.0625rem);
  color: #fff;
}
#slideMenu.show {
  bottom: 3.75rem;
}
#slideMenu .slideMenu-inner {
  height: 100%;
  padding: 0.9375rem 0.9375rem 0;
  flex-direction: column;
  background-color: rgba(255, 136, 18, 0.5);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  #item-list-recently {
    margin-top: 3.75rem;
  }
}
.page-title.list-title {
  position: relative;
}
.page-title.list-title .fixed-title.scroll-fixed {
  background-color: transparent;
  box-shadow: 0 0.55rem 0.9rem -0.4rem rgba(54, 54, 54, 0.15);
}
@media screen and (min-width: 768px) {
  .page-title.list-title {
    margin-block: 1.875rem;
  }
  .page-title.list-title h1 {
    padding-left: 0;
    padding-right: 0;
  }
  .page-title.list-title h1 + p.list-subp {
    padding-left: 0;
    padding-right: 0;
  }
}
.category-drill-icon {
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  right: 0;
  top: 0rem;
}
.category-drill-icon .minus-icon {
  position: absolute;
  content: "";
  width: 0.9375rem;
  height: 0.125rem;
  background: #333333;
  right: 0.9375rem;
  top: 50%;
  transform: translateY(-50%);
}
.category-drill-icon .minus-icon:after {
  position: absolute;
  font-size: 0.6875rem;
  right: 1.5625rem;
  width: 6em;
  text-align: right;
  display: block;
  top: -0.4375rem;
}
.category-drill-icon .plus-icon {
  position: absolute;
  content: "";
  width: 0.9375rem;
  height: 0.125rem;
  background: #333333;
  right: 0.9375rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: ease all 0.5s;
}
.category-drill-icon .plus-icon.active {
  transform: translateY(-50%);
}
.categories-drill-wrap {
  position: relative;
  height: 0;
  overflow: hidden;
}
.categories-drill-wrap.active {
  height: auto;
  overflow: scroll;
  background-color: rgba(0, 0, 0, 0.698);
}
.categories-drill-inner {
  height: calc(100vh - 12.75rem);
  background-color: transparent;
  overflow-y: scroll;
  border-top: 1px solid #CCCCCC;
}
ul.categories-drill {
  box-shadow: 0 0.55rem 0.9rem -0.4rem rgba(54, 54, 54, 0.15);
  margin: 0 auto;
  border-radius: 4px;
}
ul.categories-drill li {
  width: 100%;
  border-bottom: 1px solid #CCCCCC;
  display: flex;
  position: relative;
  flex-wrap: wrap;
  justify-content: space-between;
}
ul.categories-drill li:last-child {
  border-bottom: none;
}
ul.categories-drill li a {
  padding: 0.9375rem;
  display: block;
  color: #333333;
  line-height: 1;
  position: relative;
  pointer-events: none;
  background-color: #FFFFFF;
  transition: all 0.5s;
}
@media screen and (min-width: 769px) {
  ul.categories-drill li a {
    font-size: 18px;
  }
  ul.categories-drill li a:hover {
    transition: all 0.5s;
    background-color: rgba(255, 255, 255, 0.8);
  }
}
ul.categories-drill li a {
  cursor: default;
}
ul.categories-drill li span.go-this-cat {
  width: calc(100% - 3.1875rem);
}
ul.categories-drill li span.go-this-cat a {
  display: block;
}
@media screen and (min-width: 769px) {
  ul.categories-drill li span.go-this-cat {
    width: calc(100% - 5.0625rem);
  }
}
ul.categories-drill li span.go-this-cat.last-cat {
  width: 100%;
}
ul.categories-drill li span.go-below-cat:hover {
  cursor: pointer;
}
ul.categories-drill li span.go-below-cat {
  background-color: #FFFFFF;
}
ul.categories-drill li span.go-below-cat:hover {
  transition: all 0.5s;
  background-color: rgba(255, 255, 255, 0.8);
}
ul.categories-drill li span.go-below-cat {
  border-left: 1px solid #CCCCCC;
  width: 3.125rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0054A6;
}
ul.categories-drill li span.go-below-cat i {
  transition: all 0.5s;
}
ul.categories-drill li span.go-below-cat:before {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
}
@media screen and (min-width: 769px) {
  ul.categories-drill li span.go-below-cat {
    width: 5rem;
    font-size: 1.125rem;
  }
}
ul.categories-drill li span.go-below-cat.open i {
  transform: rotate(135deg);
}
ul.categories-drill li span.go-below-cat.open i {
  transform: rotate(180deg);
}
ul.categories-drill li span.go-below-cat.open {
  transition: all 0.5s;
}
ul.categories-drill.child {
  padding: 0.5rem 0 0px 0.5rem;
  box-shadow: none;
  width: 100%;
  overflow: hidden;
  height: 0;
  transition: height 0.3s;
  padding: 0;
  background-color: #CCCCCC;
  border-radius: 0;
}
ul.categories-drill.child.on {
  display: block !important;
  height: auto;
  transition: height 0.3s;
}
ul.categories-drill.child.on li {
  background-color: rgb(241, 241, 241);
}
ul.categories-drill.child.on li a {
  background-color: transparent;
  cursor: default;
  pointer-events: none;
}
ul.categories-drill.child.on li span.go-below-cat {
  background-color: transparent;
}
ul.categories-drill.child.on li:hover {
  transition: all 0.3s;
  background-color: rgba(241, 241, 241, 0.9);
}
ul.categories-drill.child.on li ul.categories-drill.child.on li {
  background-color: rgb(249, 238, 232);
}
ul.categories-drill.child.on li ul.categories-drill.child.on li a {
  cursor: pointer;
  background-color: transparent;
  text-decoration: underline;
  pointer-events: auto;
}
ul.categories-drill.child.on li ul.categories-drill.child.on li span.go-below-cat {
  background-color: transparent;
}
ul.categories-drill.child.on li ul.categories-drill.child.on li span.go-below-cat:before {
  display: none;
}
ul.categories-drill.child.on li ul.categories-drill.child.on li:hover {
  transition: all 0.3s;
  background-color: rgba(249, 238, 232, 0.9);
}
ul.categories-drill.child.on li ul.categories-drill.child.on ul.categories-drill.child.on li {
  background-color: #FFFFFF;
}
ul.categories-drill.child.on li ul.categories-drill.child.on ul.categories-drill.child.on li:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
ul.categories-drill.child.on li ul.categories-drill.child.on ul.categories-drill.child.on li a {
  cursor: pointer;
  pointer-events: auto;
  background-color: transparent;
  text-decoration: underline;
}
ul.categories-drill.child.on li ul.categories-drill.child.on ul.categories-drill.child.on li span.go-below-cat {
  background-color: transparent;
}
ul.categories-drill.child.on li ul.categories-drill.child.on ul.categories-drill.child.on li span.go-below-cat:before {
  display: none;
}
.list-page-list-wrap {
}
.list-page-list-wrap ul.aiueo {
  background-color: #F8F8F8;
  display: flex;
  flex-wrap: wrap;
  padding: 0.9375rem;
  justify-content: space-between;
  margin-block-end: 0;
}
.list-page-list-wrap ul.aiueo li {
  width: calc((100vw - 2.375rem) / 5);
  margin-bottom: 0.125rem;
  box-shadow: 0 0.55rem 0.9rem -0.4rem rgba(54, 54, 54, 0.15);
}
.list-page-list-wrap ul.aiueo li span {
  display: flex;
  font-size: 4.2666666667vw;
  align-items: center;
  justify-content: center;
  line-height: 1;
  height: calc((100vw - 2.375rem) / 5);
  background-color: #FFFFFF;
  color: #333333;
  border: 1px solid #FFFFFF;
}
.list-page-list-wrap ul.aiueo li span:hover {
  cursor: pointer;
}
.list-page-list-wrap ul.aiueo li.selected span {
  border: 1px solid #000000;
}
@media screen and (min-width: 769px) {
  .list-page-list-wrap ul.aiueo li {
    width: calc((100vw - 3rem) / 10);
  }
  .list-page-list-wrap ul.aiueo li span {
    height: calc((100vw - 3rem) / 10);
    font-size: 2.2222222222vw;
  }
}
@media screen and (min-width: 1200px) {
  .list-page-list-wrap ul.aiueo li {
    width: calc((1200px - 3rem) / 10);
  }
  .list-page-list-wrap ul.aiueo li span {
    height: calc((1200px - 3rem) / 10);
    font-size: 2.2222222222vw;
  }
}
.list-page-list-wrap .aiueo-result .g-title {
  font-weight: bold;
  padding: 0.9375rem 0.9375rem;
  font-size: 1.3125rem;
}
.list-page-list-wrap .aiueo-result .syllabary-section .tab-menu {
  margin: 0;
  border-top: 1px solid #CCCCCC;
  padding: 0rem 0.9375rem 0rem;
  display: flex;
  justify-content: flex-start;
}
.list-page-list-wrap .aiueo-result .syllabary-section .tab-menu li {
  padding: 0.625rem 0;
  font-size: 1.125rem;
  width: 2.8125rem;
  align-content: center;
  color: #999999;
}
.list-page-list-wrap .aiueo-result .syllabary-section .tab-menu li.active {
  color: #000000;
}
.list-page-list-wrap .aiueo-result .syllabary-section .tab-menu li:hover {
  cursor: pointer;
  color: #000000;
}
.list-page-list-wrap .aiueo-result ul.result-list {
  margin-block: 0;
}
.list-page-list-wrap .aiueo-result ul.result-list li {
  display: block;
  border-bottom: 1px solid #CCCCCC;
}
.list-page-list-wrap .aiueo-result ul.result-list li:first-child {
  border-top: 1px solid #CCCCCC;
}
.list-page-list-wrap .aiueo-result ul.result-list li a {
  color: #333333;
  display: flex;
  padding: 0.46875rem 0;
  align-items: center;
  justify-content: space-between;
}
.list-page-list-wrap .aiueo-result ul.result-list li a:after {
  font: var(--fa-font-solid);
  content: "\f105";
}
.list-page-list-wrap .aiueo-result ul.result-list {
  padding: 0.9375rem;
}
.list-page-list-wrap {
}
.list-page-list-wrap .tags-list-wrapper {
  padding: 0.9375rem;
}
.list-page-list-wrap .tags-list-wrapper ul li {
  margin-right: 0.3125rem;
  display: inline-block;
  position: relative;
  font-size: 0.8125rem;
  line-height: 1;
}
.list-page-list-wrap .tags-list-wrapper ul li a {
  text-decoration: none;
  padding: 0.40625rem 0.8125rem;
  border-radius: 11.25rem;
  color: #333333;
  border: 1px solid #333333;
}
.list-page-list-wrap .tags-list-wrapper ul li {
  display: inline-block;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .list-page-list-wrap .tags-list-wrapper {
    padding: 0;
  }
}
.list-page-list-wrap .list-page-list-inner {
  border-top: 1px solid #CCCCCC;
}
div.modal__container {
  position: relative;
  box-sizing: border-box;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  background: #ebb151;
  background: -moz-linear-gradient(left, #eab060 52%, #e9d1b9 100%);
  background: -webkit-linear-gradient(left, #eab060 52%, #e9d1b9 100%);
  background:
    linear-gradient(
      to right,
      #eab060 52%,
      #e9d1b9 100%);
}
div.modal__container .modal__btn {
  position: absolute;
  background-color: #000000;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  flex-direction: column;
  line-height: 1;
  border-radius: 7.5rem;
  right: -1.25rem;
  top: -1.25rem;
  padding: 0;
  align-items: center;
  justify-content: center;
}
div.modal__container .modal__btn i {
  font-size: 1rem;
}
div.modal__container div.modal-go-services {
  background-color: #FFFFFF;
  margin: 0;
}
div.modal__container div.modal-go-services h3.service-title {
  line-height: 1;
  margin: 0;
  padding: 0.9375rem;
}
div.modal__container div.modal-go-services div.serviceWrap {
  padding: 0.9375rem 0.9375rem 0;
  border-top: 1px solid #CCCCCC;
}
div.modal__container div.modal-go-services div.serviceWrap + div.serviceWrap {
  padding-bottom: 0;
}
div.modal__container div.modal-go-services div.serviceWrap a {
  color: #333333;
  display: block;
}
div.modal__container div.modal-go-services div.serviceWrap a:hover dl {
  opacity: 0.9;
}
div.modal__container div.modal-go-services div.serviceWrap a dl {
  margin: 0;
}
div.modal__container div.modal-go-services div.serviceWrap a dl dt.title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.9375rem;
  line-height: 1;
}
div.modal__container div.modal-go-services div.serviceWrap a dl dd {
  margin: 0 -15px 0;
  vertical-align: bottom;
}
div.modal__container div.modal-go-services div.serviceWrap a dl dd img {
  width: 100%;
  vertical-align: bottom;
  margin-bottom: 0;
}
div.modal__container div.modal-go-code {
  border-radius: 4px;
}
div.modal__container {
  border-radius: 4px;
}
div.modal__container ul.buttonList {
  margin: 0 auto;
  padding: 0 0.9375rem 0.9375rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
div.modal__container ul.buttonList li {
  text-align: center;
  width: calc(50% - 0.46875rem);
  box-sizing: border-box;
}
div.modal__container ul.buttonList li a {
  display: block;
}
div.modal__container ul.buttonList li a img {
  width: 100%;
  vertical-align: bottom;
}
div.modal__container div.panelTitle {
  padding: 0.9375rem;
  position: relative;
}
div.modal__container div.panelTitle img.icon {
  position: absolute;
  width: 5.625rem;
  height: 5.625rem;
  right: 1.875rem;
  top: 4.0625rem;
  border-radius: 22.5%;
}
div.modal__container div.panelTitle h3 {
  margin-top: 0;
  margin-bottom: 0;
  color: #FFFFFF;
  font-size: 1.125rem;
  line-height: 1.3;
}
div.modal__container div.panelTitle h3 br.smallPhone {
  display: none;
}
div.modal__container div.panelExp {
  padding: 0.9375rem;
  position: relative;
}
div.modal__container div.panelExp p {
  font-weight: bold;
  color: #FFFFFF;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.3;
}
div.modal__container div.panel img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  div.modal__container div.panelTitle img.icon {
    width: 3.75rem;
    height: 3.75rem;
    right: 0.9375rem;
    top: 2.1875rem;
  }
}
@media screen and (max-width: 420px) {
  div.modal__container div.panel {
    max-height: 16.25rem;
    overflow: hidden;
  }
  div.modal__container div.panelTitle img.icon {
    width: 3.75rem;
    height: 3.75rem;
    right: 0.9375rem;
    top: 4.0625rem;
  }
}
@media screen and (max-width: 375px) {
  div.modal__container div.panelTitle h3 br.smallPhone {
    display: inline;
  }
}
@media screen and (max-width: 320px) {
  div.modal__container div.panelTitle h3 {
    font-size: 1rem;
  }
  div.modal__container div.panelTitle img.icon {
    width: 2.8125rem;
    height: 2.8125rem;
    right: 0.9375rem;
    top: 4.0625rem;
  }
  div.modal__container div.panelExp {
    padding: 0.9375rem;
  }
  div.modal__container div.panelExp p {
    font-size: 0.75rem;
  }
  div.modal__container div.panel {
    max-height: 13.75rem;
    overflow: hidden;
  }
  div.modal__container ul.buttonList li {
    padding: 0.5rem;
  }
}
#modal-scan {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
}
.modal__overlay {
  z-index: 100000;
}
div.modal__container.modal__container--scan {
  background: #0f1115;
  overflow: hidden;
  max-width: 35rem;
  width: calc(100vw - 1.875rem);
  max-height: calc(100vh - 1.875rem);
  color: #FFFFFF;
}
div.modal__container.modal__container--scan .modal__btn {
  right: 0.625rem;
  top: 0.625rem;
}
#modal-scan .scan-dev-badge {
  position: fixed;
  left: 0.625rem;
  top: calc(env(safe-area-inset-top) + 0.625rem);
  z-index: 100010;
  padding: 0.375rem 0.625rem;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  border-radius: 0.375rem;
  pointer-events: none;
}
#modal-scan .scan-confirm {
  position: fixed;
  inset: 0;
  z-index: 100008;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.45);
}
#modal-scan .scan-confirm.is-open {
  display: flex;
}
#modal-scan .scan-confirm__card {
  width: min(100%, 20rem);
  padding: 1.125rem;
  border-radius: 1rem;
  background: rgba(18, 20, 24, 0.92);
  color: #fff;
  box-shadow: 0 0.75rem 2.25rem rgba(0, 0, 0, 0.35);
  text-align: center;
}
#modal-scan .scan-confirm__title {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.8);
}
#modal-scan .scan-confirm__code {
  margin: 0.625rem 0 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
#modal-scan .scan-confirm__name {
  margin: 0 0 0.9375rem;
  font-size: 0.8125rem;
  color: #fff;
  min-height: 1rem;
}
#modal-scan .scan-confirm__actions {
  display: grid;
  gap: 0.625rem;
}
#modal-scan .scan-confirm__btn {
  height: 2.625rem;
  border-radius: 0.625rem;
  border: none;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
}
#modal-scan .scan-confirm__btn--primary {
  background: #ff8a00;
  color: #1b1b1b;
}
#modal-scan .scan-confirm__btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
#modal-scan .modal__overlay {
  justify-content: stretch;
  align-items: stretch;
  padding: 0;
  background: #000;
}
#modal-scan div.modal__container.modal__container--scan {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-width: none;
  max-height: none;
  padding: 0;
  border-radius: 0;
}
#modal-scan div.modal__container.modal__container--scan .modal__btn {
  right: 1rem;
  top: calc(env(safe-area-inset-top) + 1rem);
}
#modal-scan div.modal-scan {
  position: relative;
  width: 100%;
  height: 100%;
}
#modal-scan div.modal-scan .modal-scan__header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  pointer-events: none;
  padding: calc(env(safe-area-inset-top) + 1rem) 1rem 0.75rem;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0));
}
#modal-scan div.modal-scan .modal-scan__preview {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 0;
  aspect-ratio: auto;
}
#modal-scan div.modal-scan .modal-scan__frame {
  left: 15%;
  right: 15%;
  top: 52%;
  bottom: auto;
  height: 10%;
  min-height: 4.25rem;
  max-height: 6.5rem;
  border-color: rgba(255, 255, 255, 0.85);
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.12);
}
#modal-scan div.modal-scan .modal-scan__frame::after {
  content: "";
  position: absolute;
  inset: 16% 6%;
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%20240%2080%27%3E%3Cg%20stroke%3D%27%23fff%27%20stroke-width%3D%276%27%20stroke-linecap%3D%27butt%27%3E%3Cpath%20d%3D%27M20%2010v60M32%2010v60M44%2010v60M54%2010v60M70%2010v60M82%2010v60M92%2010v60M106%2010v60M120%2010v60M132%2010v60M150%2010v60M162%2010v60M174%2010v60M188%2010v60M204%2010v60M216%2010v60%27/%3E%3C/g%3E%3C/svg%3E);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.45;
}
#modal-scan div.modal-scan .modal-scan__status {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: calc(env(safe-area-inset-top) + 4.75rem);
  z-index: 2;
  pointer-events: none;
  margin: 0;
  padding: 0.5rem 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 0.75rem;
}
#modal-scan div.modal-scan .modal-scan__manual {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: calc(env(safe-area-inset-bottom) + 1rem);
  z-index: 2;
  margin: 0;
}
#modal-scan div.modal-scan .modal-scan__manual .modal-scan__note {
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.85);
}
div.modal-scan .modal-scan__header {
  padding: 1rem 1rem 0.625rem;
}
div.modal-scan h3.modal-scan__title {
  margin: 0;
  color: #FFFFFF;
  font-size: 1.125rem;
  line-height: 1.25;
}
div.modal-scan p.modal-scan__sub {
  margin: 0.375rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  line-height: 1.3;
}
div.modal-scan .modal-scan__preview {
  position: relative;
  margin: 0 1rem;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #000;
  aspect-ratio: 4/3;
}
div.modal-scan .modal-scan__feed {
  width: 100%;
  height: 100%;
}
div.modal-scan .modal-scan__feed video,
div.modal-scan .modal-scan__feed canvas {
  width: 100%;
  height: 100%;
  display: block;
}
div.modal-scan .modal-scan__feed video {
  object-fit: cover;
}
div.modal-scan video.modal-scan__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
div.modal-scan .modal-scan__frame {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 18%;
  bottom: 18%;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 0.75rem;
  pointer-events: none;
}
div.modal-scan .modal-scan__status {
  margin: 0.75rem 1rem 0;
  min-height: 1.125rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}
div.modal-scan .modal-scan__status.is-error {
  color: #ffd1d1;
}
div.modal-scan .modal-scan__status.is-ok {
  color: #bff5c1;
}
div.modal-scan .modal-scan__manual {
  margin: 0.75rem 1rem 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
}
div.modal-scan label.modal-scan__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}
div.modal-scan .modal-scan__manualRow {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
div.modal-scan input.modal-scan__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 2.625rem;
  padding: 0 0.75rem;
  border-radius: 0.625rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.25);
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1;
}
div.modal-scan input.modal-scan__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
div.modal-scan button.modal-scan__go {
  flex: 0 0 auto;
  height: 2.625rem;
  padding: 0 0.875rem;
  border-radius: 0.625rem;
  border: none;
  background: #000000;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
}
.home {
  padding-top: 3.625rem;
  padding-bottom: 0rem;
}
.home.toppage {
  background-color: transparent;
  border: none;
}
.home div.mainVisual {
  padding: 0;
  margin: 0 -0.9375rem 0;
  position: relative;
}
.home div.mainVisual div.logo img {
  width: 100%;
  vertical-align: bottom;
}
.home div.mainVisual h1 {
  margin-block: 0;
}
.home div.mainVisual h1 span.topCopy {
  position: absolute;
  width: calc(100% - 1.875rem);
  display: block;
  margin: 1.5625rem 0.9375rem;
  color: white;
  font-size: 0.8125rem;
  text-align: center;
}
.home div.mainVisual.page404 {
  padding: 0.9375rem 0.9375rem 0;
}
.home div.mainVisual.page404 h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.home div.mainVisual.page404 h1 span {
  font-size: 0.75rem;
  display: block;
  padding: 0 0 0.9375rem;
}
.home div.mainVisual.page404 h1 span span.code {
  font-size: 120%;
  display: inline;
}
.home div.mainVisual.page404 p {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .home div.mainVisual {
    aspect-ratio: 1480/653;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0.55rem 0.9rem -0.4rem rgba(54, 54, 54, 0.15);
    border-radius: 4px;
    background-image: url(../img/bg_main.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
  }
  .home div.mainVisual div.logo {
    width: 50%;
  }
  .home div.mainVisual div.logo img {
    width: 100%;
  }
  .home div.mainVisual h1 {
    text-align: center;
  }
  .home div.mainVisual h1 span.topCopy {
    position: static;
    font-size: 1.3125rem;
    margin: 0 0 1.875rem;
    width: 100%;
    display: block;
  }
  .home div.mainVisual h1 span.topCopy br {
    display: none;
  }
}
.home div.howMany {
  max-width: 55rem;
  margin: 0 auto;
}
.home div.howMany div.amount h2 {
  text-align: center;
  color: #333333;
  background: transparent;
  font-weight: bold;
  padding-top: 0.9375rem;
}
.home div.howMany div.amount h2 span {
  font-size: 0.75rem;
  font-weight: normal;
  padding-left: 0.9375rem;
}
.home div.howMany div.amount .amount-block {
  display: flex;
  justify-content: space-between;
}
.home div.howMany div.amount .amount-block dl {
  text-align: center;
  width: 30%;
  margin: 0;
}
.home div.howMany div.amount .amount-block dl dt {
  font-weight: bold;
  margin: 0 auto;
}
.home div.howMany div.amount .amount-block dl dd figure {
  margin: 0.625rem 0;
  text-align: center;
}
.home div.howMany div.amount .amount-block dl dd figure i {
  color: rgb(255, 136, 18);
  font-size: 2.5rem;
}
.home div.howMany div.amount .amount-block dl dd {
  font-size: 0.75rem;
}
.home div.howMany div.amount .amount-block dl dd span {
  font-weight: bold;
  font-size: 1.125rem;
}
.home div.howMany div.amount .amount-block dl dd {
  margin: 0 auto;
}
.home div.howMany p {
  padding: 0.9375rem 0;
}
@media screen and (min-width: 768px) {
  .home div.howMany {
    margin-bottom: 0;
  }
  .home div.howMany div.amount h2 {
    font-size: 2rem;
  }
  .home div.howMany div.amount h2 span {
    font-size: 1.125rem;
  }
  .home div.howMany div.amount .amount-block dl dt {
    font-size: 1.5rem;
  }
  .home div.howMany div.amount .amount-block dl dd figure {
    margin: 1.875rem 0;
  }
  .home div.howMany div.amount .amount-block dl dd figure i {
    font-size: 5rem;
  }
  .home div.howMany div.amount .amount-block dl dd {
    font-size: 1.125rem;
  }
  .home div.howMany div.amount .amount-block dl dd span {
    font-size: 1.5rem;
  }
  .home div.howMany div.amount {
    border-bottom: 0;
    color: #FFFFFF;
    padding: 1.875rem;
    color: #333333;
  }
  .home div.howMany p {
    font-weight: bold;
  }
  .home div.howMany p.amount {
    padding: 0;
    margin-bottom: 0;
  }
  .home div.howMany p {
    border: none;
    color: #FFFFFF;
    margin-bottom: 10px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .home {
    padding-top: 5.5rem;
  }
}
@media screen and (min-width: 768px) {
  main {
    max-width: 1200px;
    margin: 0 auto;
  }
}
article.howto-use h2 {
  background-color: #0054A6;
  color: #FFFFFF;
  padding: 0.625rem 0.9375rem;
  margin: 0 -0.9375rem 0.9375rem;
}
article.read-contents {
  padding: 0.9375rem;
}
article.read-contents .enactment {
  text-align: right;
  margin-top: 3.75rem;
}
article.read-contents img {
  width: 100%;
  height: auto;
}
article.read-contents p {
  font-size: 0.875rem;
}
article.read-contents p + h2 {
  margin-block-start: 1.875rem;
}
@media screen and (min-width: 768px) {
  article.read-contents p + h2 {
    margin-block-start: 3.75rem;
  }
}
article.read-contents p + h3 {
  margin-block-start: 1.875rem;
}
@media screen and (min-width: 768px) {
  article.read-contents p + h3 {
    margin-block-start: 3.75rem;
  }
}
article.read-contents ol.howto-list {
  list-style: none;
  counter-reset: custom-counter;
  padding-left: 0;
}
article.read-contents ol.howto-list li {
  counter-increment: custom-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.625rem;
}
article.read-contents ol.howto-list li:before {
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: blue;
  color: white;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  font-weight: bold;
}
article.read-contents .sanko {
  margin-block: 0.9375rem;
  background-color: #F8F8F8;
  padding: 0.9375rem;
}
article.read-contents .sanko > p {
  margin-top: 0;
}
article.read-contents .sanko p.sanko-title {
  font-weight: bold;
  font-size: 1.3125rem;
}
article.read-contents .sanko div.code-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: space-between;
}
article.read-contents .sanko div.code-icons img {
  width: calc((100% - 2.5rem) / 5);
}
@media screen and (min-width: 768px) {
  article.read-contents section.for-explain {
    border: 1px solid #CCCCCC;
    box-shadow: 0 0.55rem 0.9rem -0.4rem rgba(54, 54, 54, 0.15);
    padding: 1.875rem;
    margin-block-end: 3.75rem;
    border-radius: 4px;
  }
  article.read-contents section.for-explain h2 {
    padding: 0;
    margin: 0 0 1.875rem;
    color: #333333;
    font-weight: bold;
    background-color: transparent;
  }
  article.read-contents section.for-explain {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  article.read-contents section.for-explain div.explain-title {
    width: 100%;
  }
  article.read-contents section.for-explain div.explain-image {
    width: 30%;
  }
  article.read-contents section.for-explain div.explain-list {
    width: 65%;
  }
}
.pagination-wrap {
  margin: 0 -0.9375rem;
}
.pagination-wrap .pagination {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pagination-wrap .pagination div.pages {
  order: 1;
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  box-sizing: border-box;
}
.pagination-wrap .pagination div.pages .pages-inner {
  display: inline-block;
  white-space: nowrap;
  padding: 0.9375rem;
}
.pagination-wrap .pagination div.pages .pages-inner a {
  display: inline-flex;
  height: 0.9375rem;
  width: 0.9375rem;
  align-items: center;
  justify-content: center;
  padding: 0.375rem;
  font-size: 0.6875rem;
  border-radius: 6.25rem;
  margin-right: 0.3125rem;
  border: 1px solid #0054A6;
  background-color: #FFFFFF;
  color: #0054A6;
}
.pagination-wrap .pagination div.pages .pages-inner span.current {
  display: inline-flex;
  height: 0.9375rem;
  width: 0.9375rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #0054A6;
  background-color: #0054A6;
  color: #FFFFFF;
  padding: 0.375rem;
  font-size: 0.6875rem;
  border-radius: 6.25rem;
  margin-right: 0.3125rem;
}
.pagination-wrap .pagination a.prev {
  margin-left: 0.9375rem;
  margin-top: 0.9375rem;
  order: 2;
}
.pagination-wrap .pagination a.next {
  margin-right: 0.9375rem;
  margin-top: 0.9375rem;
  order: 3;
}
.gsc-results-wrapper-visible {
  height: 80vh !important;
}
div#div-gpt-ad-1667812525006-0 {
  position: absolute !important;
  left: 10px !important;
  min-height: 3.125rem;
  bottom: 80px !important;
}
div#div-gpt-ad-1671506135058-0,
div#div-gpt-ad-1669783136215-0 {
  margin-block-end: 1.25rem !important;
}
#modal-report .modal__container,
#modal-report-pic .modal__container {
  background-color: #FFFFFF;
  background: #FFFFFF;
}
#modal-report .modal__container .modal-go-code,
#modal-report-pic .modal__container .modal-go-code {
  padding: 0.9375rem;
}
#modal-report .modal__container .modal-go-code h3,
#modal-report-pic .modal__container .modal-go-code h3 {
  margin-block-end: 0.625rem;
  margin-block-start: 0;
}
#modal-report .modal__container .modal-go-code fieldset,
#modal-report-pic .modal__container .modal-go-code fieldset {
  border: none;
}
#modal-report .modal__container .modal-go-code button,
#modal-report-pic .modal__container .modal-go-code button {
  color: #0054A6;
  border: 1px solid #0054A6;
  border-radius: 300px;
  padding: 0.3125rem 1.25rem;
  width: 100%;
  color: #FFFFFF;
  background-color: #333333;
}
.ykzs {
  background-color: #F8F8F8;
  padding: 0.9375rem;
  border-radius: 8px;
  margin-block-end: 0.9375rem;
}
.ykzs .profile {
  display: flex;
  justify-content: space-between;
}
.ykzs .profile figure {
  position: relative;
  width: 5.625rem;
  margin-block: 0;
  margin-inline: 0;
}
.ykzs .profile figure img {
  border-radius: 700px;
  width: 5.625rem;
  height: 5.625rem;
}
.ykzs .profile figure figcaption {
  position: absolute;
  bottom: 0;
  left: 1.25rem;
  width: 3.125rem;
  border-radius: 4px;
  text-align: center;
  font-size: 11px;
  color: #FFFFFF;
  background-color: #333333;
}
.ykzs .profile dl.summary-text {
  width: calc(100% - 6.5625rem);
  margin-block: 0;
}
.ykzs .profile dl.summary-text dt {
  font-size: 1rem;
  margin-block-end: 0.3125rem;
}
.ykzs .profile dl.summary-text dt span.y {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  display: block;
}
.ykzs .profile dl.summary-text dd {
  margin-inline-start: 0;
  padding: 0;
  font-size: 0.6875rem;
}
.ykzs details.supervisor-details summary {
  width: calc(100% - 12.8125rem);
  border-radius: 8px;
  margin-inline-start: auto;
  margin-inline-end: 0;
  margin-block-end: 0rem;
  position: relative;
  list-style: none;
  text-align: right;
  padding-right: 2.1875rem;
  font-size: 0.8125rem;
  background-color: #0054A6;
  color: #FFFFFF;
}
.ykzs details.supervisor-details summary:hover {
  cursor: pointer;
}
.ykzs details.supervisor-details summary:after {
  font-family: "Font Awesome 6 Free";
  font-display: swap;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
  color: #FFFFFF;
  content: "\f107";
  font-size: 1.3125rem;
  position: absolute;
  right: 0.9375rem;
  font-size: 0.9375rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
}
.ykzs details.supervisor-details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}
.ykzs details.supervisor-details p {
  font-size: 0.8125rem;
  background-color: #FFFFFF;
  padding: 0.5rem;
  border-radius: 4px;
  margin-block-end: 0rem;
}
details.alert-box {
  color: #727272;
}
details.alert-box summary {
  background-color: #f8f8f8;
  box-sizing: border-box;
  font-size: 13px;
  padding: 10px 15px;
  cursor: pointer;
  position: relative;
  list-style: none;
}
details.alert-box summary:after {
  font-family: "Font Awesome 6 Free";
  font-display: swap;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
  content: "\f107";
  font-size: 1.3125rem;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  details.alert-box summary {
    width: 180px;
    margin-left: auto;
    margin-right: 0;
  }
}
details.alert-box[open] summary {
  border-bottom: 1px solid #fff;
}
details.alert-box[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}
details.alert-box div.alert-cont {
  background-color: #f8f8f8;
  padding: 15px 15px;
}
@media screen and (min-width: 768px) {
  details.alert-box div.alert-cont {
    padding: 30px 30px 15px;
  }
}
details.alert-box + nav.review-select {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  details.alert-box + nav.review-select {
    margin-top: 30px;
  }
}
details.alert-box.cat-alert {
  margin-bottom: 30px;
  background-color: #fff;
}
details.alert-box.cat-alert summary {
  background-color: #fff;
  padding: 0;
}
@media screen and (min-width: 768px) {
  details.alert-box.cat-alert summary {
    width: 100%;
  }
}
details.alert-box.cat-alert div.alert-cont {
  padding: 0;
  background-color: #fff;
}
details.alert-box.ranking-alert summary {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  details.alert-box.ranking-alert summary {
    width: 240px;
  }
}
details.alert-box.ranking-alert div.alert-cont {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  details.alert-box.ranking-alert div.alert-cont {
    padding: 0 0 30px;
  }
  details.alert-box.ranking-alert {
    margin-bottom: 15px;
  }
}
.affi-alert-box {
  padding: 15px 0 0;
  color: #727272;
}
.cont-kuchikomi-proof {
  color: #727272;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .cont-kuchikomi-proof {
    font-size: 0.6875rem;
    width: 73%;
    margin-block-end: -2.25rem;
  }
}
.category-alert-cont {
  color: #727272;
}
.alert-cont h3,
.affi-alert-box h3 {
  margin-block-start: 0;
  margin-block-end: 5px;
  font-size: 0.875rem;
}
.alert-cont p,
.affi-alert-box p {
  margin-block-start: 0;
  font-size: 0.6875rem;
}
.alert-cont ul,
.affi-alert-box ul {
  padding-left: 0.0125rem;
}
.alert-cont ul li,
.affi-alert-box ul li {
  margin-left: 1em;
  font-size: 0.8125rem;
  list-style-type: disc;
}
.alert-cont p.alert-note,
.affi-alert-box p.alert-note {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .scroll-fixed details.ranking-alert {
    background-color: #fff;
    margin-bottom: 0;
  }
  .scroll-fixed details.ranking-alert div.alert-cont {
    padding: 0 30px 30px;
  }
}
.star-rating {
  --rating: 0;
  --star-size: 0.8em;
  --star-color: #ff6b35;
  --star-bg: #ddd;
  display: inline-flex;
  position: relative;
  width: calc(var(--star-size) * 5);
  height: var(--star-size);
}
.star-rating::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ddd'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
  background-size: var(--star-size) var(--star-size);
  background-repeat: repeat-x;
}
.star-rating::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(var(--rating) / 5 * 100%);
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff6b35'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
  background-size: var(--star-size) var(--star-size);
  background-repeat: repeat-x;
}
.star-rating.star-rating--sm {
  --star-size: 13px;
}
.star-rating.star-rating--lg {
  --star-size: 18px;
}
.star-rating.star-rating--xl {
  --star-size: 24px;
}
@media screen and (min-width: 768px) {
  .star-rating.star-rating--sm {
    --star-size: 16px;
  }
  .star-rating.star-rating--lg {
    --star-size: 24px;
  }
  .star-rating.star-rating--xl {
    --star-size: 32px;
  }
}
/*# sourceMappingURL=style.css.map */
