@charset "UTF-8";

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

main {
    display: block
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: rgba(0, 0, 0, 0)
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}


/*
Base style
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
input,
button,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-style: normal;
    box-sizing: border-box
}

html,
body {
    min-height: 100vh
}

html {
    font-size: 62.5%;
    overflow-y: scroll
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-feature-settings: "palt";
    -webkit-text-size-adjust: 100%;
    line-height: 1.8;
    letter-spacing: .05em;
    color: #000;
    word-break: break-all;
    background-color: #fff;
    font-size: 2.4rem
}

@media screen and (max-width: 740px) {
    body {
        font-size: 3.2432432432vw
    }
}

h2,
h3,
h4,
h5,
h6 {
    font-weight: 400
}

h1 {
    font-weight: 700;
}

li {
    list-style: none
}

b,
em,
strong {
    font-weight: bold
}

strong {
    color: #ef3870
}

hr {
    border: none
}

a,
button {
    cursor: pointer;
    border: none;
    transition: .3s all ease
}

a {
    color: #5d5d5d;
    text-decoration: none
}

button {
    color: #5d5d5d;
    background: none
}

input,
select,
button,
textarea {
    font-family: "Zen Maru Gothic", sans-serif
}

input,
textarea {
    display: block;
    border: none
}

input::placeholder,
textarea::placeholder {
    color: #a2a2a2
}

select {
    -webkit-appearance: none
}

table {
    width: 100%;
    border: 1px solid #000;
    border-collapse: collapse;
    font-weight: 700;
}

th,
tr,
td {
    border: 1px solid #000;
    padding: 10px;
    text-align: center;
    /* 横方向中央 */
    vertical-align: middle;
    /* 縦方向中央 */
}

th {
    background-color: #EEEEEE;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
    transition: .3s all ease;
    display: block
}

@keyframes animate {
    0% {
        transform: scale(0.92)
    }

    40% {
        transform: scale(0.97)
    }

    60% {
        transform: scale(0.86)
    }

    80% {
        transform: scale(1)
    }

    100% {
        transform: scale(0.92)
    }
}

@keyframes btnAnime {
    0% {
        transform: scaleX(1)
    }

    30% {
        transform: scale3d(1.06, 0.94, 1)
    }

    40% {
        transform: scale3d(0.94, 1.06, 1)
    }

    50% {
        transform: scale3d(1.04, 0.96, 1)
    }

    65% {
        transform: scale3d(0.96, 1.04, 1)
    }

    75% {
        transform: scale3d(1.02, 0.98, 1)
    }

    to {
        transform: scaleX(1)
    }
}


/*
Custom Style
*/
.l-wrapper {
    max-width: 740px;
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -10px 20px rgba(139, 142, 144, .2);
    background: #fff
}

@media screen and (max-width: 740px) {
    .l-wrapper {
        max-width: 100vw;
        box-shadow: 0 -1.3513513514vw 2.7027027027vw rgba(139, 142, 144, .2)
    }
}

.l-header {
    width: 100%;
    height: 101px;
    padding: 10px 20px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    background: #E7E6E6;
}

.siteheader__name {
    font-weight: 700;
    font-size: 40px;
    padding-left: 20px;
}

.siteheader__link a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.siteheader__link a img {
    width: 110px;
    height: auto;
    padding: 5px;
    background-color: #ffffff;
}

@media screen and (max-width: 740px) {
    .l-header {
        height: 13.64864865vw;
        padding: 1.35135135vw 2.7027027vw;
    }

    .siteheader__link a img {
        width: 14.86486486vw;
        padding: 0.67567568vw;
    }

    .siteheader__name {
        font-size: 5.40540541vw;
        padding-left: 2.7027027vw;
    }
}



.m-compareHdr {
    background-color: #000;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 37px;
    line-height: 1.2;
    padding: 20px;
}

.m-compareHdr__sub {
    font-size: 56px;
}

@media screen and (max-width: 740px) {
    .m-compareHdr {
        font-size: 5vw;
        padding: 2.7027027vw;
    }

    .m-compareHdr__sub {
        font-size: 7.56756757vw;
    }
}

.m-article {
    padding: 20px;
    line-height: 1.8;
}

.m-article__title {
    position: relative;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.5;
    padding: 10px 5px 10px 40px;
    margin: 30px 0;
}

.m-article__title[data-type="1"] {
    letter-spacing: -0.04em;
}

.m-article__title:before {
    content: "";
    display: block;
    width: 0;
    height: 100%;
    padding-left: 20px;
    background-color: #AFABAB;
    position: absolute;
    top: 0;
    left: 0;
}

.m-article__text {
    font-size: 26px;
}

.font-bold {
    font-weight: 700;
}

@media screen and (max-width: 740px) {
    .m-article {
        padding: 2.702702703vw;
    }

    .m-article__title {
        font-size: 5.135135135vw;
        padding: 1.351351351vw 0.675675676vw 1.351351351vw 5.405405405vw;
        margin: 4.054054054vw 0;
    }

    .m-article__title:before {
        padding-left: 2.702702703vw;
    }

    .m-article__text {
        font-size: 3.513513514vw;
    }
}

.point__item {
    margin: 20px auto;
    width: 700px;
    border: 4px solid #000;
}

.point__title {
    background-color: #E7E6E6;
    padding: 10px 20px;
    display: flex;
}

.point__title h3 {
    font-weight: 700;
    font-size: 33px;
    line-height: normal;
}

.point__txt {
    padding: 10px 20px;
    font-size: 26px;
}

.point__icon {
    background-color: #7F7F7F;
    width: 100px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    line-height: 1.2;
    padding-top: 12px;
    margin-right: 20px;
}

.point__icon__point {
    font-size: 18px;
}

.point__icon__number {
    font-size: 38px;
}

@media screen and (max-width: 740px) {
    .point__item {
        margin: 2.702702703vw auto;
        width: 94.594594595vw;
        border: 0.540540541vw solid #000;
    }

    .point__title {
        padding: 1.351351351vw 2.702702703vw;
    }

    .point__title h3 {
        font-size: 4.459459459vw;
    }

    .point__txt {
        padding: 1.351351351vw 2.702702703vw;
        font-size: 3.513513514vw;
    }

    .point__icon {
        width: 13.513513514vw;
        padding-top: 1.621621622vw;
        margin-right: 2.702702703vw;
    }

    .point__icon__point {
        font-size: 2.432432432vw;
    }

    .point__icon__number {
        font-size: 5.135135135vw;
    }
}


/* 比較表のcss */
.m-compareList {
    padding: 20px 20px 0 20px;
}

.m-compareList th {
    font-size: 18px;
    width: 100px;
    letter-spacing: normal;
}

.ranking__image {
    padding: 10px;
}

.ranking__name {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    line-height: 1.3;
    font-size: 0.93em;
}

.m-compareList .ranking__vgood,
.m-compareList .ranking__good,
.m-compareList .ranking__soso {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 100px auto;
}

.m-compareList .ranking__vgood {
    background-image: url(../../assets/img/icn_vgood.png);
}

.m-compareList .ranking__good {
    background-image: url(../../assets/img/icn_good.png);
}

.m-compareList .ranking__soso {
    background-image: url(../../assets/img/icn_soso.png);
}

.ranking__txt {
    line-height: 1.2;
    letter-spacing: normal;
    text-align: left;
    font-size: 20px;
}

.ranking__txt__main span {
    display: block;
    margin: 0.5em auto;
}

.link__main {
    font-size: 16px;
}

.link__main img {
    display: block;
    margin: 0 auto;
}


.link__sub {
    color: #000;
    text-decoration: underline;
}

.m-compareList__tbl tr th+td {
    border-left: 5px solid #f81c18;
    border-right: 5px solid #f81c18;
}

.m-compareList__tbl tr:first-child th+td {
    border-top: 5px solid #f81c18;
}

.m-compareList__tbl tr:last-child th+td {
    border-bottom: 5px solid #f81c18;
}

.m-compareList__caption {
    padding: 0 20px 20px 20px;
    text-align: right;
    font-size: 20px;
}

@media screen and (max-width: 740px) {
    .m-compareList {
        padding: 2.702702703vw 2.702702703vw 0 2.702702703vw;
    }

    .m-compareList th {
        font-size: 2.432432432vw;
        width: 13.513513514vw;
    }

    .ranking__image {
        padding: 1.351351351vw;
    }

    .ranking__name {
        height: 10.810810811vw;
    }

    .m-compareList .ranking__vgood,
    .m-compareList .ranking__good,
    .m-compareList .ranking__soso {
        background-size: 13.513513514vw auto;
    }

    .ranking__txt {
        font-size: 2.702702703vw;
    }

    .link__main {
        font-size: 2.162162162vw;
    }

    .m-compareList__tbl tr th+td {
        border-left: 0.675675676vw solid #f81c18;
        border-right: 0.675675676vw solid #f81c18;
    }

    .m-compareList__tbl tr:first-child th+td {
        border-top: 0.675675676vw solid #f81c18;
    }

    .m-compareList__tbl tr:last-child th+td {
        border-bottom: 0.675675676vw solid #f81c18;
    }

    .m-compareList__caption {
        padding: 0 2.702702703vw 2.702702703vw 2.702702703vw;
        font-size: 2.702702703vw;
    }
}

/* 比較表のcss↑↑↑ */

/* ランキング1位のcss */
.ranking-card__header,
.ranking-card__highlight {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    padding: 20px;
}

.ranking-card__header {
    color: #fff;
}


.ranking-card__info {
    margin-left: 10px;
    line-height: 1.5;
}

.ranking-card__title {
    font-size: 50px;
    font-weight: 700;
}

.ranking-card__description {
    font-size: 20px;
}

.ranking-card__body {
    padding: 20px;
}

.ranking-card__highlight-main,
.ranking-card__highlight-tag {
    font-size: 40px;
    font-weight: 700;
    margin: 0 auto;
}

.ranking-card__highlight-main {
    color: #fff;
}

.ranking-card__highlight-tag {
    color: #000;
    background-color: #AFABAB;
    border-radius: 10px;
    padding: 0 20px;
}

.ranking-card__image img {
    padding-top: 20px;
    width: 700px;
}

.ranking-card__icon img {
    width: 150px;
    height: auto;
    max-width: none;
}

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

    .ranking-card__header,
    .ranking-card__highlight {
        padding: 2.702702703vw;
    }

    .ranking-card__info {
        margin-left: 1.351351351vw;
    }

    .ranking-card__title {
        font-size: 6.756756757vw;
    }

    .ranking-card__description {
        font-size: 2.702702703vw;
    }

    .ranking-card__body {
        padding: 2.702702703vw;
    }

    .ranking-card__highlight-main,
    .ranking-card__highlight-tag {
        font-size: 5.405405405vw;
    }

    .ranking-card__highlight-tag {
        border-radius: 1.351351351vw;
        padding: 0 2.702702703vw;
    }

    .ranking-card__image img {
        padding-top: 2.702702703vw;
        width: 94.594594595vw;
    }

    .ranking-card__icon img {
        width: 20.27027027vw;
    }
}

/* ランキング1位のcss ↑*/

/* おすすめポイントcss */
.m-recommend__point-main,
.m-recommend__point-sub .highlight,
.m-recommend_description-sub .highlight {
    background-color: #d1cece;
}

.m-recommend__point-sub p,
.m-recommend_description-main,
.m-recommend_description-sub span,
.m-recommend__point-main h3 {
    font-weight: 700;
    text-align: center;
}

.m-recommend__point-main h3 {
    font-size: 40px;
    padding: 10px;
}

.m-recommend__point-sub p,
.m-recommend_description-main {
    font-size: 32px;
    padding: 10px;
}

.m-recommend__point-sub p {
    letter-spacing: normal;
}

.m-recommend__point-sub {
    padding: 10px;
    border: 1px solid #d1cece;
}

.m-recommend__point-sub .highlight,
.m-recommend_description-sub .highlight {
    padding: 8px;
}

@media screen and (max-width: 740px) {
    .m-recommend__point-main h3 {
        font-size: 5.405405405vw;
        padding: 1.351351351vw;
    }

    .m-recommend__point-sub p,
    .m-recommend_description-main {
        font-size: 4.324324324vw;
        padding: 1.351351351vw;
    }

    .m-recommend__point-sub {
        padding: 1.351351351vw;
        border: 0.135135135vw solid #d1cece;
    }

    .m-recommend__point-sub .highlight,
    .m-recommend_description-sub .highlight {
        padding: 1.081081081vw;
    }
}

/* おすすめポイントcss ↑↑↑*/
/* 口コミ紹介 */
.product__voice h3 {
    text-align: center;
    margin: 0 auto;
    font-size: 1.8em;
    color: #000;
    font-weight: bold;
    padding: 20px 0;
}

.product__voice h3 span {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.product__voice h3 span:before,
.product__voice h3 span:after {
    content: "";
    display: block;
    height: 3px;
    width: 220px;
    background: #A0A0A0;
    margin-bottom: -4px;
}

.product__voiceitem {
    background: #E7E6E6;
    box-sizing: border-box;
    border-radius: 2em;
    display: block;
    padding: 30px 20px;
    margin: 20px auto;
    overflow: hidden;
}

.product__voiceitem h4 {
    margin: 0 auto;
    position: relative;
    padding: 20px 0 20px 150px;
    line-height: 1.5em;
    font-size: 1.4em;
    letter-spacing: normal;
    font-weight: bold;
    box-sizing: border-box;
    min-height: 6em;
    border-bottom: 1px solid #ADADAD;
    margin-bottom: .5em;
}

.product__voiceicon {
    display: block;
    position: absolute;
    top: 40px;
    left: 0;
    width: 130px;
}

.product__voicename {
    display: block;
    box-sizing: border-box;
    margin-right: 0;
    margin-left: auto;
    font-size: 0.82em;
    font-weight: 400;
    text-align: right;
}

.product__voiceitem p {
    line-height: 1.5em;
    font-weight: 500;
    margin: 0 auto;
    text-align: justify;
}

@media screen and (max-width: 740px) {
    .product__voice h3 {
        padding: 2.702702703vw 0;
    }

    .product__voice h3 span:before,
    .product__voice h3 span:after {
        height: 0.405405405vw;
        width: 29.72972973vw;
        margin-bottom: -0.540540541vw;
    }

    .product__voiceitem {
        padding: 4.054054054vw 2.702702703vw;
        margin: 2.702702703vw auto;
    }

    .product__voiceitem h4 {
        padding: 2.702702703vw 0 2.702702703vw 20.27027027vw;
        border-bottom: 0.135135135vw solid #ADADAD;
    }

    .product__voiceicon {
        top: 5.405405405vw;
        width: 17.567567568vw;
    }
}

/* 口コミ紹介↑↑↑ */

/* 2位いか */
.ranking-card__header[data-type="2"] {
    background-color: #D1CECE;
    color: #000;
    justify-content: left;
}

.ranking-card__header[data-type="2"] .ranking-card__icon {
    padding-right: 20px;
}

.ranking-card__body[data-type="2"] .product__voiceicon {
    top: 0;
}

.ranking-card__body[data-type="2"] .product__voiceitem h4 {
    min-height: auto;
}

.ranking-card__body[data-type="2"] .m-recommend__point-main h3 {
    font-size: 1.6em;
}

@media screen and (max-width: 740px) {
    .ranking-card__header[data-type="2"] .ranking-card__icon {
        padding-right: 2.702702703vw;
    }
}


/* フッター色々 */
/* 共通ボックス系 */
.columnlink,
.columnlink .columnlink__item {
    box-sizing: border-box;
    background: #E7E6E6;
}

/* columnlink 全体 */
.columnlink {
    padding: 20px;
    font-weight: bold;
}

/* タイトル */
.columnlink .columnlink__title {
    text-align: center;
    margin: 0 auto;
    line-height: normal;
    font-size: 40px;
}

.columnlink .columnlink__title .main-title {
    font-size: 50px;
}

/* 各アイテム */
.columnlink .columnlink__item {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin: 20px auto;
    padding: 1em;
    font-size: 34px;
    color: #000;
    border-bottom: 1px solid #000;
    letter-spacing: normal;
    line-height: normal;
    text-decoration: underline;
    text-underline-offset: .3em;
    transition: all .5s ease;
}

/* アイテム内の画像 */
.columnlink__image {
    width: 150px;
    height: auto;
    flex-shrink: 0;
    margin-right: 40px;
}

.columnlink .columnlink__item:hover {
    color: #4b61bf;
}

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

    /* columnlink 全体 */
    .columnlink {
        padding: 2.702702703vw;
    }

    /* タイトル */
    .columnlink .columnlink__title {
        font-size: 5.405405405vw;
    }

    .columnlink .columnlink__title .main-title {
        font-size: 6.756756757vw;
    }

    /* 各アイテム */
    .columnlink .columnlink__item {
        margin: 2.702702703vw auto;
        font-size: 4.594594595vw;
        border-bottom: 0.135135135vw solid #000;
    }

    /* アイテム内の画像 */
    .columnlink__image {
        width: 20.27027027vw;
    }
}


/*--------------------------------------------*/
.sitefooter__link {
    margin: 1em auto;
    text-align: center;
}

.sitefooter__link a {
    text-decoration: underline;
    text-underline-offset: .3em;
    color: #000;
}

#copy {
    text-align: center;
    background: #585858;
    color: #fff;
    font-size: 0.76em;
    padding: 0.5em 0;
    margin: 0 auto;
    box-sizing: border-box;
}

/* コラムよう */
.column-content {
    padding: 20px;
}

.column-content h1 {
    font-size: 40px;
}

.column-img {
    padding: 20px 0;
}

.column-box {
    border: 4px solid #767071;
    padding: 20px 10px;
    margin: 20px 0;
}

.column-box__hdr {
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    padding: 10px;
    margin-bottom: 10px;
}

.column-box__hdr[data-type="1"] {
    margin-top: 20px;
}

.m-article__text[data-type="1"] {
    margin: 20px auto;
}

.columnlink__item[data-type="1"] {
    margin: 0;
    border-bottom: none;
}

@media screen and (max-width: 740px) {
    .column-content {
        padding: 2.702702703vw;
    }

    .column-content h1 {
        font-size: 5.405405405vw;
    }

    .column-img {
        padding: 2.702702703vw 0;
    }

    .column-box {
        border: 0.540540541vw solid #767071;
        padding: 2.702702703vw 10px;
        margin: 2.702702703vw 0;
    }

    .column-box__hdr {
        font-size: 5.135135135vw;
        padding: 1.351351351vw;
        margin-bottom: 1.351351351vw;
    }

    .column-box__hdr[data-type="1"] {
        margin-top: 2.702702703vw;
    }

    .m-article__text[data-type="1"] {
        margin: 2.702702703vw auto;
    }
}

/* コラム用↑↑↑ */



/* 検索ボックス */
.searchbox {
    box-sizing: border-box;
    background-color: #595959;
    padding: 0 .42em .42em;
    font-weight: 700;
}

.searchbox__title {
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.4em;
    box-sizing: border-box;
    padding: .5em;
}

.searchbox__box {
    background: #fff;
    box-sizing: border-box;
    padding: 0.84em;
    width: 100%;
}

.searchbox__item {
    display: block;
    box-sizing: border-box;
    padding: 0.5em 0;
    font-size: 1.2em;
}

.searchbox__item+.searchbox__item {
    border-top: 1px solid #B2AEAE;
}

.searchbox__item--2col {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.searchbox__item--2col label {
    width: 40em;
    text-align: left;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding-left: 1.5em;
}

.searchbox__item select {
    display: block;
    width: calc(100% - 5em);
    padding: .5em;
    box-sizing: border-box;
    border: 1px solid #B2AEAE;
    font-size: 1em;
    text-align: center;
    appearance: auto;
    border-radius: 0.5em;
}

.searchbox__subtitle {
    text-align: center;
    font-weight: bold;
    font-size: 1.3em;
    color: #000000;
}

.searchbox__item--other label {
    display: inline-block;
    font-size: 1.1em;
    box-sizing: border-box;
    padding: .5em 1em .5em 1.5em;
    position: relative;
}

.searchbox__item--other label input {
    display: none;
}

.searchbox__item--other label input+span:before {
    content: "";
    display: block;
    width: 1.2em;
    height: 1.2em;
    position: absolute;
    top: calc(50% - 0.5em);
    left: 0;
    border-radius: 4px;
    border: 1px solid #B2AEAE;
    z-index: 1;
}

.searchbox__item--other label input:checked+span:after {
    content: "";
    display: block;
    background: url(../../assets/img/icn_check.png) no-repeat 50% 50%;
    background-size: 80% auto;
    width: 1.2em;
    height: 1.2em;
    position: absolute;
    top: calc(50% - 0.5em);
    left: 0;
    z-index: 3;
}

/* 検索ボックス↑↑↑ */
/* 検索結果 */
.search-results__header {
    margin: 0.84em 0.42em;
    position: relative;
}

.search-results__header:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #000000;
    clip-path: polygon(100% 0, 100% calc(100% - 2.5em), 50% 100%, 0 calc(100% - 2.5em), 0 0);
}

.search-results__header-text {
    position: relative;
    z-index: 3;
    text-align: center;
    font-weight: bold;
    font-size: 1.55em;
    line-height: 1.25em;
    box-sizing: border-box;
    padding: calc(30 / 670 * 100%) calc(30 / 670 * 100%) calc(80 / 670 * 100%);
    color: #fff;
}

.search-results .ranking-card__header[data-type="2"] {
    justify-content: center;
}

.search-results__conditions {
    margin: 0.84em 0.42em 0;
    border: 2px solid #D0CECE;
    font-weight: 700;
    text-align: center;
}

.search-results__conditions-title {
    background-color: #D0CECE;
    font-size: 1.55em;
}

.search-results__conditions-text {
    font-size: 1.2em;
}

.search-results__count {
    margin: 0.84em 0.42em;
    font-weight: 700;
    text-align: center;
    font-size: 1.55em;
    color: #ffffff;
    background-color: #595959;
}

.search-results__notes {
    font-size: 0.8em;
    text-align: right;
    margin: 0 0.42em 0.84em;
}

.search-results__sugupay,
.search-results__taisyokuado,
.search-results__taisyokucon,
.search-results-intro {
    display: none;
}

/* 検索結果↑↑↑ */

/* 固定フッター */
.m-sticky {
    position: fixed;
    bottom: 0;
    z-index: 10;
    overflow: hidden;
    background: rgba(230, 230, 230, 1);
}

.m-sticky__inner {
    padding: 10px 20px;
}

#sitefooter {
    margin-bottom: 203px;
}

@media screen and (max-width: 740px) {
    .m-sticky__inner {
        padding: 1.351351351vw 2.702702703vw;
    }

    #sitefooter {
        margin-bottom: 27.432432432vw;
    }

}

/* 固定フッター↑↑↑ */