
body {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    background-color: #f2f2f2;
    max-width: 1024px;
    margin: 0px auto;
    padding: 0px;
}

header {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    position: fixed;
    z-index: 90;
    max-width: 1024px;
}

header p{
    color: white;
    text-align: left;
    font-size: 1.2em;
    margin: 0px;
    padding: 0px 0px;
}

.ad-sidebar {
    display:block; 
    //width: 728px; 
    //height: 90px; 
}

.product_title {
    //width:70%;
}

@media only screen and  (max-width: 440px) {
    .product_title {
        width:70%;
    }
}
.favorite-button {
    //width: 50px;
    //height: 50px;
    padding: 10px 15px;
    background-color: #fff;
    //background-color: #f0f0f0;
    border: solid;
    border-radius: 10px;
    border-color: #FF82B2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 24px;
    //color: #ccc;
    color: #FF82B2;
    transition: color 0.3s ease, transform 0.2s ease;
    text-align: center;
    text-align-last: center;
    /*padding: 5px 7px;
    background-color: #f0f0f0;
    border: solid;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    color: #ccc;
    transition: color 0.3s ease, transform 0.2s ease;
    text-align: center;
    text-align-last: center;*/
}
.favo_text{
    font-size: 16px;
}

@media only screen and  (max-width: 440px) {
    .favorite-button {
        //padding: 3px 5px;
        //font-size: 10px;
    }

    .favo_text{
        font-size: 12px;
    }

}

.favorite-button.favorited {
    //color: #FFD700; /* ゴールド */
    //color:darkorange;
    //color: #FF82B2; /* ピンク */
    color: white;
    background-color: #FF82B2;
    //background-color: #FFD700;
    transform: scale(1.05);
}

.size-large{
    width: 100%;
    height: initial;
}


.search_container{
    position: relative;
    border: 1px solid #999;
    padding: 3px 10px;
    border-radius: 20px;
    height: 1.8em;
    width: 200px;
    overflow: hidden;
    background-color: white;
    margin-right: 10px;
}

.search_container input[type="text"]{
    border: none;
    background: unset;
    color: black;
}

.search_container input[type="text"]:focus {
    outline: 0;
}

.search_container input[type="submit"]{
    cursor: pointer;
    font-family: FontAwesome;
    border: none;
    background: #3879D9;
    color: #fff;
    position: absolute;
    width: 3.5em;
    height: 3.2em;
    right:0px;
    top: -3px;
    outline : none;
}

.search_container input[type="submit"]:hover {
    background: #4479D9;
}

.header_wrapper_top {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    margin: 0px 0px;
    background-color: darkslategray;
}

.header_wrapper_top .logo_section {
    height: 50px;
    width: 85px;
    border-radius: 0px 40px 40px 0px;
    background-color: darkorange;
    
}

.header_wrapper_top .logo_section img {
    position: relative;
    left: 6px;
    width: 50px;
    height: 50px;
}

.normal_ul {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0px 0px;
    margin: 0px 0px;
    background-color: white;
    list-style-type: none;
}
.normal_li {
    display: inline-block;  /* ★1:横並びに配置する */
   list-style-type: none;  /* ★2:リストの先頭記号を消す */
   position: relative; 
}
.normal_ul a {
    text-decoration: none;
    color: darkorange;
    font-weight: bold;
    text-shadow: 1px 1px 4px lightgray;
    display: block;  
}

.normal_ul a:hover {
    color: orange;
}

/* ===== Dropdown (op-) ===== */
.op-dropdown { 
    position: relative; 

    text-decoration: none;
    color: darkorange;
    font-weight: bold;
    text-shadow: 1px 1px 4px lightgray;
    display: block;
}

.op-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem .9rem;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.op-dropdown__toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  border-radius: .4rem;
}

.op-dropdown__chevron { transition: transform .18s ease; }

.op-dropdown__menu {
  position: absolute;
  top: calc(100% + .4rem);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: .6rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  padding: .4rem;
  margin: 0;
  list-style: none;
  z-index: 200; /* ヘッダー(z-index:90)内でも前面に */
  flex-direction: column;
  height: initial;
  text-align: center;
}

.op-dropdown__menu[hidden] { display: none !important; }

.op-dropdown__link {
  display: block;
  padding: .6rem .8rem;
  border-radius: .45rem;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}

.op-dropdown__link:hover,
.op-dropdown__link:focus-visible {
  background: rgba(0,0,0,.06);
  outline: none;
}

/* 開状態の矢印回転（aria-expandedに同期） */
.op-dropdown[aria-open="true"] .op-dropdown__chevron { transform: rotate(180deg); }

.top_menu{
    position: relative;
    width: 100%;
    //margin: 10px 0px;
    padding-top: 100px;
}

.top_menu img{
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    filter: saturate(80%);
    filter:contrast(70%);
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.hero_caption{
    position: absolute;
    top: 3%;
    left: 3%;
}

.hero_caption h1{
    color: white;
    font-size: 2.5em;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
    text-shadow: 1px 1px 4px black;
}

.hero_caption p{
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
    text-shadow: 1px 1px 4px black;
}

.usage_search{
    list-style: none;  
    justify-content: center;
    position: absolute;
    top: 65%; 
    width: 100%;
}

.usage_search_area{
    width:500px;
    margin: auto;
}

.usage_search_title{
    background-color: darkorange;
    height: 50px;
    width:75%;
    color: white;
    text-align: center;
    border-radius: 5px 5px 0px 0px;
    
}

.usage_search_title h2{
    margin: auto;
    color: white;
    line-height: 50px;
    font-size: 1.6em;
    text-shadow: 1px 1px 2px darkslategray;
}

.usage_select_area{
    background-color: #f2f2f2;
    height: 75px;
    width:100%;
    color: white;
    margin: auto;
    display: flex; 
    justify-content: space-around; 
    border-radius: 0px 5px 5px 5px;
}

.usage_select{

    margin: auto;
    width: 300px;
    height: 60px;
    font-size: 1.2em;
}

.usage_search_button{
    text-align: center;
    margin: auto;

}
    
.usage_search_button .search{
    padding: 5px 45px;
    border-radius: 30px;
    border-width: 4px;
    border-color: gray;
    background-color: darkorange;
    color: white;
    font-size:1.6rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    text-shadow: 1px 1px 2px darkslategray;
}

.usage_search_button .search:hover{
    background-color: orange;
}

.content_wrapper{
    display: flex;
    flex-direction: row;
    width: 100%;
}

.content_wrapper .side_menu_wrapper{
    display: flex;
    flex-direction: column;
    width: 23%;
}

.content_wrapper .side_menu_wrapper h2{
    font-size: 1.0em;
    font-weight: bold;
    margin-left: 10px;
    margin-top: 30px;
    margin-bottom: 12px;
}

.content_wrapper .side_menu_wrapper h2::before{
    content: '>';
    color: darkorange;
    margin-right: 4px;
  }

.side_menu_wrapper .side_menu{
    display: flex;
    flex-direction: column;
    width: 90%;
    background-color: white;
    border-radius: 10px;
    margin: 10px auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.side_menu_wrapper .side_menu h3{
    font-size: 1.2em;
    font-weight: bold;
    margin: 0px;
    margin-top: 10px;
    margin-left: 10px;
}

.side_menu_wrapper .side_menu hr{
    width: 90%;
    margin: 0px auto;
    margin-top: 10px;
}

.side_menu_wrapper .side_menu ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
    margin-left: 5px;
}

.side_menu_wrapper .side_menu ul li{
    margin: 0px;
    padding: 0px;
}

.side_menu_wrapper .side_menu ul li a{
    text-decoration: none;
    font-size: 0.9em;
    font-weight: bold;
    margin: 0px;
    padding: 5px;
    display: block;
}

.side_menu_wrapper .side_menu ul li a:hover{
    background-color: #f2f2f2;
}

.side_menu_wrapper .side_menu .more_button{
    background-color: #f2f2f2;
    color: blue;
    font-size: 0.9em;
    width: 90%;
    margin: 5px auto;
    display: block;
    text-align: center;
    border-radius: 10px;
    border-width: 0px;
}

.side_menu_wrapper .side_menu .more_button:hover{
    background-color: #e6e6e6;
}

.content_wrapper .main_content_wrapper{
    display: flex;
    flex-direction: column;
    width: 77%;
    margin: 0px 10px;
}

.content_wrapper .main_content h1{
    color: black;
    font-size: 1.6em;
}

.content_wrapper .main_content h2{
    color: black;
    font-size: 1.3em;
}

.content_wrapper .main_content h2::before{
  content: '●';
  color: darkorange;
  margin-right: 8px;
}

.content_wrapper .main_content_wrapper .main_content{
    width: 98%;
    margin: 0px auto;
}

.content_wrapper .main_content_wrapper .side_scroll{
    display: flex;
    flex-direction: row;
    width: 100%;
    //height: 300px;
    margin: 5px auto;
    margin-bottom: 50px;
    background-color: white;
    overflow-x: scroll;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.content_wrapper .main_content_wrapper .side_scroll a{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height:95%;
    margin: 5px;
    background-color: white;
    text-decoration: none;
}

.content_wrapper .main_content_wrapper .side_scroll a:hover{
    filter: saturate(80%);
    filter:contrast(70%);
}



.content_wrapper .main_content_wrapper .side_scroll .side_scroll_item{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height:95%;
    margin: 5px;
    background-color: white;
    
}

.content_wrapper .main_content_wrapper .side_scroll .side_scroll_item .ranking_count{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: dodgerblue;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
}

.content_wrapper .main_content_wrapper .side_scroll .side_scroll_item img{
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 10px 30px;
}

.content_wrapper .main_content_wrapper .side_scroll .side_scroll_item .discription{
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
}

.content_wrapper .main_content_wrapper .side_scroll .side_scroll_item .discription p{
    margin: 0px;
    padding: 5px;
    font-size: 1.0em;
    width: 200px; /* 要素の横幅を指定 */
    white-space: nowrap; /* 横幅のMAXに達しても改行しない */
    overflow: hidden; /* ハミ出した部分を隠す */
    text-overflow: ellipsis; /* 「…」と省略 */
    -webkit-text-overflow: ellipsis; /* Safari */
    -o-text-overflow: ellipsis; /* Opera */
}

.content_wrapper .main_content_wrapper .side_scroll .side_scroll_item .discription .rakuten{
    margin: 0px;
    padding: 5px;
    font-size: 1.0em;
    width: 200px; /* 要素の横幅を指定 */
    white-space: nowrap; /* 横幅のMAXに達しても改行しない */
    overflow: hidden; /* ハミ出した部分を隠す */
    text-overflow: ellipsis; /* 「…」と省略 */
    -webkit-text-overflow: ellipsis; /* Safari */
    -o-text-overflow: ellipsis; /* Opera */
    white-space: initial;
    height: 9em;
    line-height: 1.8;
}

.content_wrapper .main_content_wrapper .side_scroll .side_scroll_item .more_button{
    padding: 5px 20px;
    margin: 16px auto;
    border-radius: 30px;
    border-width: 4px;
    border-color: gray;
    background-color: darkorange;
    color: white;
    font-size: 1.0rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    text-shadow: 1px 1px 2px darkslategray;
}

.content_wrapper .main_content_wrapper .side_scroll .side_scroll_item .rakuten_more_button{
    padding: 5px 20px;
    margin: 16px auto;
    border-radius: 30px;
    border-width: 4px;
    border-color: gray;
    background-color: #ef5d8e;
    color: white;
    font-size: 1.0rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    text-shadow: 1px 1px 2px darkslategray;
}

.content_wrapper .main_content_wrapper .search_condition{
    width: 100%;
}

.content_wrapper .main_content_wrapper .search_condition .search_condition_input{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 10px auto;
}

.content_wrapper .main_content_wrapper .search_condition .search_condition_input .input_01{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 100%;
}

.content_wrapper .main_content_wrapper .search_condition .search_condition_input .input_01 .pulldown_wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: calc(50% - 20px);
}

.content_wrapper .main_content_wrapper .search_condition .search_condition_input .input_01 .pulldown_wrapper .pulldown_title{
    width: 50%;
    text-align: center;
    font-size: 1.2em;
    margin: 15px auto;
}

.content_wrapper .main_content_wrapper .search_condition .search_condition_input .input_01 .pulldown_wrapper select{
    width: 35%;
    border-radius: 30px;
    height: 35px;
    text-align: center;
    margin: auto;
}

.content_wrapper .main_content_wrapper .search_condition .search_condition_input .input_01 .pulldown_wrapper .pulldown_note{
    width: 15%;
    padding-left: 5px;
    margin: auto;
}

.content_wrapper .main_content_wrapper .search_condition .search_condition_input .input_02{
    width: 100%;
}

.flex_wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 100%;
}

.flex_wrapper .pulldown_wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: calc(50% - 20px);
}

.flex_wrapper .pulldown_wrapper .pulldown_title{
    width: 50%;
    text-align: center;
    font-size: 1.2em;
    margin: 15px auto;
}

.flex_wrapper .pulldown_wrapper select{
    width: 35%;
    border-radius: 30px;
    height: 35px;
    text-align: center;
    margin: auto;
}

.flex_wrapper .pulldown_wrapper .pulldown_note{
    width: 15%;
    padding-left: 5px;
    margin: auto;
}

.detail_wrapper{
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.details_2nd{
    margin-left: 10px;
}

.details_3rd{
    margin-left: 10px;
}

.price_evidence{
    margin-right: 10px;
    text-align: end;
    font-size: 0.7em;
}

summary {
    position: relative;
    display: block; 
    padding: 10px 10px 10px 30px; 
    cursor: pointer; 
    font-weight: bold;
    transition: 0.2s;
    font-size: 1.0rem;
}

summary:hover {
    background-color: lightsalmon;
}
summary::-webkit-details-marker {
    display: none;
}

summary:before,
summary:after {
    content: "";
    margin: auto 0 auto 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}
summary:before {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background-color: darkorange;
}
summary:after {
    left: 6px;
    width: 5px;
    height: 5px;
    border: 4px solid transparent;
    border-left: 5px solid #fff;
    box-sizing: border-box;
    transition: .1s;
}

details[open] summary {
    width: 100%;
}
details[open] summary:after {
    transform: rotate(90deg);
    left: 4px;
    top: 5px;
}

details[open] .details-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

.content_wrapper .main_content_wrapper .search_condition .search_condition_input .input_03{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 100%;
    margin: 10px auto;
}

.content_wrapper .main_content_wrapper .search_condition .search_condition_input .input_03 .reset_button{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: calc(30% - 20px);
    padding: 5px 30px;
    border-radius: 30px;
    border-width: 4px;
    border-color: gray;
    background-color: gray;
    color: black;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    text-shadow: 1px 1px 2px darkslategray;
}

.content_wrapper .main_content_wrapper .search_condition .search_condition_input .input_03 .reset_button:hover{
    background-color: lightgray;
}

.content_wrapper .main_content_wrapper .search_condition .search_condition_input .input_03 .search_button{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: calc(30% - 20px);
    padding: 5px 30px;
    border-radius: 30px;
    border-width: 4px;
    border-color: gray;
    background-color: darkorange;
    color: white;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    text-shadow: 1px 1px 2px darkslategray;
}

.content_wrapper .main_content_wrapper .search_condition .search_condition_input .input_03 .search_button:hover{
    background-color: orange;
}

.content_wrapper .main_content_wrapper .result_wrapper{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 15px auto;
    margin-bottom: 50px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.content_wrapper .main_content_wrapper .result_wrapper .result_sort{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: 100%;
    height: 75px;
    background-color: #f2f2f2;
}

.content_wrapper .main_content_wrapper .result_wrapper .result_sort .sort_item{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 17%;
    height: 50px;
    text-align: center;
    margin: auto 10px;
}

.content_wrapper .main_content_wrapper .result_wrapper .result_sort .sort_item .sort_title{
    font-size: 0.8em;
    margin: 0px;
    width: 100%;
    margin: auto;
}

.content_wrapper .main_content_wrapper .result_wrapper .result_sort .sort_item .sort_button{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 75%;
    font-size: 0.8em;
    margin: auto;
}

.content_wrapper .main_content_wrapper .result_wrapper .result_sort .sort_item .sort_button .sort_button_divider{
    background:#000000;
    width:1px;
    height:100%;
}

.content_wrapper .main_content_wrapper .result_wrapper .result_sort .sort_item .sort_button a{
    padding: 0px 5px;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 95%;
    background-color: white;
    margin: 0px auto;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info h4{
    font-size: 1.0em;
    font-weight: bold;
    margin: 0px;
    margin-top: 10px;
    margin-left: 15px;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info h3{
    font-size: 1.2em;
    font-weight: bold;
    margin: 0px;
    margin-bottom: 10px;
    margin-left: 15px;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info .product_spec_wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    margin: 0px auto;
    margin-top: 10px;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info .product_spec_wrapper .product_image{
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info .product_spec_wrapper .product_image img{
    width: 100%;
    height: 200px;
    object-fit: scale-down;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info .product_spec_wrapper .product_spec_item{
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin: 0px auto;
    padding-left: 30px;
    text-align: center;
    font-weight: bold;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info .product_spec_wrapper .product_spec_item p{
    margin:0px;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info .product_spec_wrapper .product_spec_spec{
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin: 0px auto;
    text-align: left;
    font-weight: bold;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info .product_spec_wrapper .product_spec_spec p{
    margin:0px;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper{
    display: flex;
    flex-direction: row;
    justify-content: end;
    width: 100%;
    margin: 20px auto;
}
.content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .show_detail{
    padding: 5px 30px;
    border-radius: 30px;
    border-width: 4px;
    border-color: gray;
    background-color: gray;
    color: white;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    text-shadow: 1px 1px 2px darkslategray;
    margin: auto;
    text-decoration: none;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .rakuten_cta{
    padding: 5px 30px;
    border-radius: 30px;
    border-width: 4px;
    border-color: gray;
    background-color: #ef5d8e;
    color: white;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    text-shadow: 1px 1px 2px darkslategray;
    margin: auto;
    text-decoration: none;
    width:30%;
    text-align: center;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .amazon_cta{
    padding: 5px 30px;
    border-radius: 30px;
    border-width: 4px;
    border-color: gray;
    background-color: #ff9900;
    color: white;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    text-shadow: 1px 1px 2px darkslategray;
    margin: auto;
    text-decoration: none;
    width:30%;
    text-align: center;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .official_cta{
    padding: 5px 30px;
    border-radius: 30px;
    border-width: 4px;
    border-color: gray;
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: white;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    text-shadow: 1px 1px 2px darkslategray;
    margin: auto;
    text-decoration: none;
    width: 40%;
    text-align: center;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .mercari_cta{
    padding: 5px 30px;
    border-radius: 30px;
    border-width: 4px;
    border-color: gray;
    background-color: #ff0211;
    color: white;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    text-shadow: 1px 1px 2px darkslategray;
    margin: auto;
    text-decoration: none;
    width:30%;
    text-align: center;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .yahoo_cta{
    padding: 5px 30px;
    border-radius: 30px;
    border-width: 4px;
    border-color: gray;
    background-color: #73c1f3;
    color: white;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    text-shadow: 1px 1px 2px darkslategray;
    margin: auto;
    text-decoration: none;
    width:30%;
    text-align: center;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .rakuten_cta_2{
    padding: 5px 30px;
    border-radius: 5px;
    border: 3px solid #ef5d8e;
    background-color: white;
    color:#ef5d8e;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    //box-shadow: 0 0 10px rgba(0,0,0,0.7);
    //text-shadow: 1px 1px 2px darkslategray;
    margin:auto;
    //text-decoration: none;
    width: 30%;
    text-align: center;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .rakuten_cta_2:hover{
    background-color: #ef5d8e;
    color: white;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .amazon_cta_2{
    padding: 5px 30px;
    border-radius: 5px;
    border: 3px solid #ff9900;
    background-color: white;
    color: #ff9900;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    //box-shadow: 0 0 10px rgba(0,0,0,0.7);
    //text-shadow: 1px 1px 2px darkslategray;
    margin:auto;
    //text-decoration: none;
    width: 30%;
    text-align: center;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .amazon_cta_2:hover{
    background-color: #ff9900;
    color: white;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .official_cta_2{
    padding: 5px 30px;
    border-radius: 5px;
    border-width: 4px;
    border-color: gray;
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: white;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    text-shadow: 1px 1px 2px darkslategray;
    margin: auto;
    text-decoration: none;
    width: 40%;
    text-align: center;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .official_cta_2:hover{
    background: linear-gradient(45deg, #DAAF08 0%, #B67B03 45%, #FEE9A0 70%, #B67B03 85%, #DAAF08 90% 100%);
    color: white;
}


.content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .mercari_cta_2{
    padding: 5px 30px;
    border-radius: 5px;
    border: 3px solid #ff0211;
    color: #ff0211;
    background-color: white;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    //box-shadow: 0 0 10px rgba(0,0,0,0.7);
    //text-shadow: 1px 1px 2px darkslategray;
    margin:auto;
    //text-decoration: none;
    width: 30%;
    text-align: center;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .mercari_cta_2:hover{
    background-color: #ff0211;
    color: white;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .yahoo_cta_2{
    padding: 5px 30px;
    border-radius: 5px;
    border: 3px solid #73c1f3;
    background-color: white;
    color: #73c1f3;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    //box-shadow: 0 0 10px rgba(0,0,0,0.7);
    //text-shadow: 1px 1px 2px darkslategray;
    margin:auto;
    //text-decoration: none;
    width: 30%;
    text-align: center;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .yahoo_cta_2:hover{
    background-color: #73c1f3;
    color: white;
}

.content_wrapper .main_content_wrapper .result_wrapper .product_info hr{
    width: 95%;
    margin: 0px auto;
}

.sale_cta_wrapper{
    display: flex;
    flex-direction: row;
    justify-content: end;
    width: 100%;
    margin: 20px auto;
}

.sale_rakuten_cta_2{
    padding: 5px 30px;
    border-radius: 5px;
    border: 3px solid #ef5d8e;
    background-color: white;
    color:#ef5d8e;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    //box-shadow: 0 0 10px rgba(0,0,0,0.7);
    //text-shadow: 1px 1px 2px darkslategray;
    margin:auto;
    //text-decoration: none;
    width: 70%;
    text-align: center;
}

.sale_rakuten_cta_2:hover{
    background-color: #ef5d8e;
    color: white;
}

.sale_amazon_cta_2{
    padding: 5px 30px;
    border-radius: 5px;
    border: 3px solid #ff9900;
    background-color: white;
    color: #ff9900;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    //box-shadow: 0 0 10px rgba(0,0,0,0.7);
    //text-shadow: 1px 1px 2px darkslategray;
    margin:auto;
    //text-decoration: none;
    width: 70%;
    text-align: center;
}

.sale_amazon_cta_2:hover{
    background-color: #ff9900;
    color: white;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 15px auto;
    margin-bottom: 50px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 95%;
    background-color: white;
    margin: 0px auto;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info h4{
    font-size: 1.0em;
    font-weight: bold;
    margin: 0px;
    margin-top: 10px;
    margin-left: 15px;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info h3{
    font-size: 1.2em;
    font-weight: bold;
    margin: 0px;
    margin-bottom: 10px;
    margin-left: 15px;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .product_spec_wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    margin: 0px auto;
    margin-top: 10px;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .product_spec_wrapper .product_image{
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .product_spec_wrapper .product_image img{
    width: 100%;
    object-fit: scale-down;
    height: 200px;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .product_spec_wrapper .product_spec_item{
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin: 0px auto;
    padding-left: 30px;
    text-align: center;
    font-weight: bold;

}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .product_spec_wrapper .product_spec_item p{
    margin: 0px;;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .product_spec_wrapper .product_spec_spec{
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin: 0px auto;
    text-align: left;
    font-weight: bold;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .product_spec_wrapper .product_spec_spec p{
    margin: 0px;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    margin: 10px auto;
}
.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .show_detail{
    padding: 5px 30px;
    border-radius: 30px;
    border-width: 4px;
    border-color: gray;
    background-color: gray;
    color: white;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    text-shadow: 1px 1px 2px darkslategray;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .rakuten_cta{
    padding: 5px 30px;
    border-radius: 30px;
    border-width: 4px;
    border-color: gray;
    background-color: #ef5d8e;
    color: white;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    text-shadow: 1px 1px 2px darkslategray;
    margin:auto;
    text-decoration: none;
    width: 30%;
    text-align: center;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .amazon_cta{
    padding: 5px 30px;
    border-radius: 30px;
    border-width: 4px;
    border-color: gray;
    background-color: #ff9900;
    color: white;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    text-shadow: 1px 1px 2px darkslategray;
    margin:auto;
    text-decoration: none;
    width: 30%;
    text-align: center;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .official_cta{
    padding: 5px 30px;
    border-radius: 30px;
    border-width: 4px;
    border-color: gray;
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: white;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    text-shadow: 1px 1px 2px darkslategray;
    margin: auto;
    text-decoration: none;
    width: 40%;
    text-align: center;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .mercari_cta{
    padding: 5px 30px;
    border-radius: 30px;
    border-width: 4px;
    border-color: gray;
    background-color: #ff0211;
    color: white;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    text-shadow: 1px 1px 2px darkslategray;
    margin:auto;
    text-decoration: none;
    width: 30%;
    text-align: center;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .yahoo_cta{
    padding: 5px 30px;
    border-radius: 30px;
    border-width: 4px;
    border-color: gray;
    background-color: #73c1f3;
    color: white;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    text-shadow: 1px 1px 2px darkslategray;
    margin:auto;
    text-decoration: none;
    width: 30%;
    text-align: center;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .rakuten_cta_2{
    padding: 5px 30px;
    border-radius: 5px;
    border: 3px solid #ef5d8e;
    background-color: white;
    color:#ef5d8e;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    //box-shadow: 0 0 10px rgba(0,0,0,0.7);
    //text-shadow: 1px 1px 2px darkslategray;
    margin:auto;
    //text-decoration: none;
    width: 30%;
    text-align: center;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .rakuten_cta_2:hover{
    background-color: #ef5d8e;
    color: white;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .amazon_cta_2{
    padding: 5px 30px;
    border-radius: 5px;
    border: 3px solid #ff9900;
    background-color: white;
    color: #ff9900;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    //box-shadow: 0 0 10px rgba(0,0,0,0.7);
    //text-shadow: 1px 1px 2px darkslategray;
    margin:auto;
    //text-decoration: none;
    width: 30%;
    text-align: center;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .amazon_cta_2:hover{
    background-color: #ff9900;
    color: white;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .official_cta_2{
    padding: 5px 30px;
    border-radius: 5px;
    border-width: 4px;
    border-color: gray;
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: white;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    text-shadow: 1px 1px 2px darkslategray;
    margin: auto;
    text-decoration: none;
    width: 40%;
    text-align: center;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .official_cta_2:hover{
    background: linear-gradient(45deg, #DAAF08 0%, #B67B03 45%, #FEE9A0 70%, #B67B03 85%, #DAAF08 90% 100%);
    color: white;
}


.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .mercari_cta_2{
    padding: 5px 30px;
    border-radius: 5px;
    border: 3px solid #ff0211;
    color: #ff0211;
    background-color: white;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    //box-shadow: 0 0 10px rgba(0,0,0,0.7);
    //text-shadow: 1px 1px 2px darkslategray;
    margin:auto;
    //text-decoration: none;
    width: 30%;
    text-align: center;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .mercari_cta_2:hover{
    background-color: #ff0211;
    color: white;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .yahoo_cta_2{
    padding: 5px 30px;
    border-radius: 5px;
    border: 3px solid #73c1f3;
    background-color: white;
    color: #73c1f3;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    //box-shadow: 0 0 10px rgba(0,0,0,0.7);
    //text-shadow: 1px 1px 2px darkslategray;
    margin:auto;
    //text-decoration: none;
    width: 30%;
    text-align: center;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .yahoo_cta_2:hover{
    background-color: #73c1f3;
    color: white;
}

.bottom-cta{
    width: 100%;
}

.bottom-cta .cta_wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    height: 75px;
    max-width: 1024px;
    background-color: rgba(47, 79, 79, 0.8);
    border-radius: 10px 10px 0px 0px;
}

.bottom-cta .cta_wrapper .rakuten_cta{
    padding: 5px 30px;
    border-radius: 30px;
    border-width: 4px;
    border-color: gray;
    background-color: #ef5d8e;
    color: white;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    text-shadow: 1px 1px 2px darkslategray;
    margin:auto;
    text-decoration: none;
}

.bottom-cta .cta_wrapper .amazon_cta{
    padding: 5px 30px;
    border-radius: 30px;
    border-width: 4px;
    border-color: gray;
    background-color: #ff9900;
    color: white;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    text-shadow: 1px 1px 2px darkslategray;
    margin:auto;
    text-decoration: none;
}

.bottom-cta .cta_wrapper .official_cta{
    padding: 5px 30px;
    border-radius: 30px;
    border-width: 4px;
    border-color: gray;
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: white;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    text-shadow: 1px 1px 2px darkslategray;
    margin: auto;
    text-decoration: none;
}

.bottom-cta .cta_wrapper .mercari_cta{
    padding: 5px 30px;
    border-radius: 30px;
    border-width: 4px;
    border-color: gray;
    background-color: #ff0211;
    color: white;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    text-shadow: 1px 1px 2px darkslategray;
    margin:auto;
    text-decoration: none;
}

.bottom-cta .cta_wrapper .yahoo_cta{
    padding: 5px 30px;
    border-radius: 30px;
    border-width: 4px;
    border-color: gray;
    background-color: #73c1f3;
    color: white;
    font-size:1.1rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    text-shadow: 1px 1px 2px darkslategray;
    margin:auto;
    text-decoration: none;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info hr{
    width: 95%;
    margin: 0px auto;
}

.content_wrapper .main_content_wrapper .main_content .article_wrapper .article_header{
    display: flex;
    flex-direction: column;
    width: 95%;
    margin: 0px auto;
}
.content_wrapper .main_content_wrapper .main_content .article_wrapper .article_body{
    display: flex;
    flex-direction: column;
    width: 95%;
    margin: 0px auto;
}

.table-of-contents {
    border: 2px solid darkorange;
    border-radius: 2px;
    //margin: 1em ;
    //padding: 1.5em;
    padding: 30px;
    //margin-top: 100px;
    //font-size: 1.6em;
    position: relative;
    line-height: 2;
}
.table-of-contents:before {
    background-color: #fff;
    color: darkorange;
    //font-size: 1.6em;
    content: "\f03a  目次";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    left: 1em;
    //padding: 0 0.5em;
    position: absolute;
    top: -1em;
}

.spec_ul {
    margin-top: 10px;
    margin-bottom: 10px;
    //font-size: 1.6rem;
    font-weight: normal;
}

.spec_li {
    //font-size: 1.6rem;
    font-weight: bold;
}

.product_spec_table{
    width: 100%;
    margin: auto;
    margin-top: 3%;
    margin-bottom: 6%;
}

.product_spec_table table{
    width: 100%;
    border-collapse: collapse;
}

.product_spec_table table tr th{
    //font-size: 1.4rem;
}

.product_spec_table table tr .th_color{
    background-color: darkorange;
    color: white;
    width: 25%;
}

.product_spec_table table tr .th_color_white{
    background-color: white;
    width: 25%;
}

.list_ul {
    border: solid 2px #ffb03f;
    padding: 0 0.5em;
    position: relative;
    //font-size: 1.6rem;
  }

  .list_li {
    line-height: 1.5;
    padding: 0.5em 0 0.5em 1.4em;
    border-bottom: dashed 1px silver;
    list-style-type: none!important;
  }

  .list_li:before {
    font-family: FontAwesome;
    content: "\f138";/*アイコン種類*/
    position: absolute;
    left : 0.5em; /*左端からのアイコンまで*/
    color: #ffb03f; /*アイコン色*/
  }

  .list_li:last-of-type {
    border-bottom: none;
  }

  .memo{
    width: 90%;
    //font-size: 1.4rem;
    background-color: aliceblue;
    margin: auto;
    padding: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .str_20{
    //font-size: 2rem;
    font-weight: bold;
  }

  .marker-under {
    background: linear-gradient(transparent 60%, #ff9 60%);
  }
  
  .marker-under-red {
    background: linear-gradient(transparent 60%, #ffd0d1 60%);
  }
  
  .marker-under-blue {
    background: linear-gradient(transparent 60%, #a8dafb 60%);
  }

  .product_suggestion_table{
    width: 95%;
    margin: auto;
    -webkit-appearance: none;
    -moz-appearance:none;
    overflow-x: scroll;
}

.product_suggestion_table table{
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.product_suggestion_table table tr th{
    //font-size: 1.4rem;
    width: 100px;
    max-width: 150px;
    z-index: 1;
}

.product_suggestion_table table tr th a{
    text-decoration: none;
}

.product_suggestion_table table tr .th_img{
    pointer-events: none;
}

.product_suggestion_table table tr th img{
    width:auto;
    height:auto;
    max-width:90%;
    max-height:200px;
    vertical-align: middle;
}


.product_suggestion_table table tr .th_color{
    position: sticky;
    left: 0;
    background-color: darkorange;
    color: white;
    width: 100px;
    max-width: 100px;
}

.product_suggestion_table table tr .th_color_white{
    position: sticky;
    left: 0;
    background-color: white;
    width: 100px;
    max-width: 100px;
}


.suggestion_button{
    background-color: darkorange;
    height: 50px;
    width: 90%;
    //margin: 10%;
    margin: 10% auto;
    line-height:50px;
}

.suggestion_button a{
    width: 100%;
    height: 100%;
    color: white;
}

#myCanvas {
    width: 100%;
    height: 300px;
    //display: block;
    background-color:#00000000;
 }

 .ranking_ul {
    //border: solid 2px #ffb03f;
    padding: 0 0.5em;
    position: relative;
    //font-size: 1.4rem;
  }

  .ranking_li {
    line-height: 1.5;
    padding: 0.5em 0 0.5em 1.4em;
    //border-bottom: dashed 1px silver;
    list-style-type: none!important;
  }

  .ranking_li:before {
    font-family: FontAwesome;
    content: "\f138";/*アイコン種類*/
    position: absolute;
    left : 0.5em; /*左端からのアイコンまで*/
    color: #ffb03f; /*アイコン色*/
  }

  .ranking_li:last-of-type {
    border-bottom: none;
  }
/*
  h1 {
    position: relative;
    padding: 0.5em;
    background: #a6d3c8;
    color: white;
    margin-bottom: 30px;
  }
  
  h1::before {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    border: none;
    border-bottom: solid 15px transparent;
    border-right: solid 20px rgb(149, 158, 155);
  }
*/

.main_content_wrapper h1 {
    padding: 0.5em;/*文字周りの余白*/
    color: #494949;/*文字色*/
    background: white;/*背景色*/
    border-left: solid 5px darkorange;/*左線（実線 太さ 色）*/
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
  }


  .paging_wrapper{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    //margin: 20px auto;
    margin: auto;
  }

  .paging_wrapper_links{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 60%;
    //margin: 20px auto;
    margin: auto;
  }

  .paging_wrapper_links a{
    //align-content: space-evenly;
    //display: block;
    display: flex;
    align-items: center; 
    justify-content: flex-end;
  }

  .paging_wrapper_links p{
    //display: inline;
    color: darkorange;
    font-weight: bold;
  }

  .paging_wrapper_buttons{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 40%;
    //margin: 20px auto;
    margin: auto;
  }

  .paging_wrapper_buttons a{
    text-decoration: none;
    border-radius: 5px;
    border-color: #999;
    border-style: solid;
    border-width: 2px;
    padding: 2px 10px;
    color: #999;
    font-weight: bold;
  }

  .paging_wrapper_buttons a:hover{
    background-color: #999;
    color: white;
  }

  .paging_wrapper_buttons a[disabled]{
    pointer-events: none;
    opacity: 0.5;
  }








footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: darkslategray;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.footer_wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer_wrapper .footer_logo {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
    margin-top: 15px;
}

.footer_wrapper .footer_logo .site_name {
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    margin: 0px;
}
.footer_wrapper .footer_logo .site_caption {
    color: white;
    font-size: 0.8em;
    font-weight: bold;
    margin: 0px;
}

.footer_wrapper .footer_menu {
    width: 100%;
    margin-top: 30px;
}

.footer_wrapper .footer_menu ul{
    display: flex;
    justify-content: space-around;
    padding: 0px;
    align-items: center;
    list-style: none;
}

.footer_wrapper .footer_menu ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 0.8em;
}

.footer_wrapper .footer_menu ul li a:hover {
    color: orange;
}

.sidebarIconToggle {
    display: none;
}

.openSidebarMenu{
    display: none;
}

#sidebarMenu {
    display: none;
}

/*-------modal menu-------*/

.open-modal {
    position: absolute; /* ボタンをページ上に絶対位置で配置 */
    top: 50%; /* ボタンを縦方向に中央に配置 */
    left: 50%; /* ボタンを横方向に中央に配置 */
    width: 250px; /* ボタンの幅 */
    height: 60px; /* ボタンの高さ */
    font-size: 18px; /* ボタン内のテキストのフォントサイズ */
    font-weight: bold; /* テキストのフォントを太字に設定 */
    color: #fff; /* ボタンのテキストカラーを白に設定 */
    background: #000; /* ボタンの背景色を黒に設定 */
    border: #000; /* ボタンの境界線を黒に設定 */
    border-radius: 14px; /* ボタンの角を丸くするための半径 */
    cursor: pointer; /* カーソルがホバーした時にポインタが表示されるように設定 */
    transform: translate(-50%, -50%); /* 中央に位置するための補正 */
}
    
/* モーダルウィンドウの基本スタイル */
.modal {
    display: none; /* デフォルトでは非表示に設定 */
    position: fixed; /* モーダルがページ全体に固定されるように設定 */
    top: 0; /* ページの最上部からスタート */
    left: 0; /* ページの最左端からスタート */
    width: 100%; /* モーダルが画面全体の幅を占める */
    height: 100%; /* モーダルが画面全体の高さを占める */
    background-color: rgba(0, 0, 0, 0.4); /* 背景を半透明の黒に設定（モーダルの背後が見えるように） */
    z-index: 110;
}

.modal-content {
    position: fixed; /* モーダル内容が画面上に固定されるように設定 */
    top: 50%; /* 縦方向の中央に配置 */
    left: 50%; /* 横方向の中央に配置 */
    transform: translate(-50%, -50%); /* 完全に中央に配置するための補正 */
    padding: 20px; /* モーダル内の余白を設定 */
    width: 75%; /* モーダルの幅 */
    height: 85%; /* モーダルの高さ */
    background-color: #fefefe; /* モーダルの背景色を白に設定 */
    border: 1px solid #888; /* 境界線の色を薄いグレーに設定 */
    border-radius: 10px; /* モーダルの角を丸くするための半径 */
    overflow-y: scroll;
    z-index: 111;
}

/* モーダルを閉じるボタン（×）のスタイル */
#closeModal {
    //position: absolute; /* モーダル内で絶対位置に配置 */
    display: flex; /* ボタン内のテキストが中央に配置されるようにフレックスボックスを使用 */
    align-items: center; /* ボタン内のテキストを縦方向に中央揃え */
    justify-content: center; /* ボタン内のテキストを横方向に中央揃え */
    //top: -30%; /* モーダル内容の上部から離れた位置に配置 */
    //right: -10%; /* モーダル内容の右端から離れた位置に配置 */
    font-size: 28px; /* 閉じるボタンのフォントサイズ */
    font-weight: bold; /* 閉じるボタンのフォントを太字に設定 */
    cursor: pointer; /* ホバー時にポインタが表示されるように設定 */
    color: #FFF; /* 閉じるボタンのテキストカラーを白に設定 */
    width: 40px; /* ボタンの幅 */
    height: 40px; /* ボタンの高さ */
    background-color: #333; /* ボタンの背景色をダークグレーに設定 */
    border: #333; /* ボタンの境界線を背景と同じ色に設定 */
    border-radius: 50%; /* ボタンを丸くするための半径 */
}

/*for photo gallary*/
.hscroll{
    //width:70%;
    width: 100%;
    //border:1px solid #333;
    margin: 0 auto;
}
.hscroll-photo-sp{
    color:#fff;
    width:100%;
    //height:60%;
    height:700px;
    //background:#000;
    text-align:center;
    //border:1px solid #333;
}
.hscroll-photo{
    height:90%;
    margin: 2% auto 0;
    width: 90%;
    object-fit: contain;
}

.hscroll-sp{
    position:relative;
    width:100%;
    height:120px;
    overflow:hidden;
    //border:1px solid #333;
}
.hscroll-pl{
    position:absolute;
    height:120px;
    min-width:2000px;
    //background:#000;
}
.hscroll-a{
    display:block;
    float:left;
    border:1px solid #999;
    margin:10px 5px;float: left
}
.hscroll-a img{
    height:100px;
}

.spacer_50{
    margin-top: 50px;
    margin-bottom: 50px;
}

.spacer_25{
    margin-top: 25px;
    margin-bottom: 25px;
}

.spacer_for_header{
    padding-top: 100px;
}

.img_wrapper{
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}

.img_wrapper p{
    text-align: center;
    font-size: 0.8rem;
    color: darkgray;
}

.img{
    width: 100%;
    //height: 500px;
    text-align: center;
    //line-height: 500px;
}   

.img a img{
    //width:auto;
    width: 90%;
    //height:500px;
    //max-width:90%;
    //max-height:500px;
    vertical-align: middle;
    object-fit: scale-down;
} 

.img_wrapper_2{
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}

.img_2_no_text{
    display: flex;
    //flex-direction: column;
    width: 100%;
}

.img_wrapper_2 p{
    text-align: center;
    font-size: 1.4rem;
    color: darkgray;
}

.img_2{
    width: 50%;
    height: 500px;
    text-align: center;
    line-height: 500px;
}   

.img_2 a img{
    width:auto;
    height:400px;
    //max-width:90%;
    //max-height:500px;
    vertical-align: middle;
}

.breadcrumb {
    margin: 30px;
    padding: 0;
    list-style: none;
}

.breadcrumb li {
    display: inline-block;/*横に並ぶように*/
    list-style: none;
    font-weight: bold;/*太字*/
    border-left: initial;
}

.breadcrumb li + li{
    border-left: initial;
}

.breadcrumb li:after {
    /* ▶を表示*/
    font-family: FontAwesome;
    content: '\f0da';
    padding: 0 0.3em;
    color: #72a1f7;
    }

.breadcrumb li:last-child:after {
    content: '';
    border-left: initial;
}

.breadcrumb li a {
    display: inline-block;
    padding: 0.2em 0.8em;
    border-radius: 15px;
    text-decoration: none;
    color: #72a1f7;
    background: #c6e2ff;
    font-size: 0.9em;
}

.breadcrumb li a:hover {
    background: #c9dbfb;
}

.devider_black{
    width: 100%;
    height: 50px;
    background-color: black;
    margin: 30px 0px;
}

.devider_black p{
    text-align: center;
    font-size: 18px;
    color: white;
    line-height: 18px;
    font-size: bold;
    //line-height: 50px;
    //background-color: black;
}

.ranking_info{
    display: flex;
    flex-direction: row;
    width: 95%;
    margin: 0px auto;
  }

.raidar_chart{
    //display: flex;
    //flex-direction: column;
    width: 50%;
    margin: 0px auto;
    height: 300px;
  }

  .ranking_table{
    width: 50%;
    margin: auto;
    //-webkit-appearance: none;
    //-moz-appearance:none;
    //overflow-x: scroll;
}

.rate {
    position: relative;
    display: inline-block;
    width: 50%;
    height: 20px;/*サイズ変える時の変数*/
    font-size: 20px;/*サイズ変える時の変数*/
  }

  .rate::before, .rate::after {
    position: absolute;
    display: inline-block;
    height: 20px;/*サイズ変える時の変数*/
    content: '★★★★★';
    line-height: 20px;/*サイズ変える時の変数*/
  }

  .rate::before {
    color: #c4c4c4;
  }

  .rate::after {
    overflow: hidden;
    width: calc(var(--score) * 20px);/*サイズ変える時の変数(pxのところ)*/
    color: #ffb906;
  }
  
  .rate-wrap {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    border: 1.5px solid #e8d8b0;
    margin: 20px auto 0;
    font-weight: bold;
  }

  .rate-wrap p {
    width:40%;
    margin: 0px;
  }

  .overall_score{
    width: 80%;
    margin: 20px auto;
  }

  .rate-overall {
    position: relative;
    display: inline-block;
    width: 50%;
    height: 40px;/*サイズ変える時の変数*/
    font-size: 40px;/*サイズ変える時の変数*/
  }

  .rate-overall::before, .rate-overall::after {
    position: absolute;
    display: inline-block;
    height: 40px;/*サイズ変える時の変数*/
    content: '★★★★★';
    line-height: 40px;/*サイズ変える時の変数*/
  }

  .rate-overall::before {
    color: #c4c4c4;
  }

  .rate-overall::after {
    overflow: hidden;
    width: calc(var(--score) * 40px);/*サイズ変える時の変数(pxのところ)*/
    color: #ffb906;
  }
  
  .rate-wrap-overall {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    //border: 1.5px solid #e8d8b0;
    margin: 20px auto 0;
    font-weight: bold;
  }

  .rate-wrap-overall p {
    width:40%;
    margin: 0px;
    font-size: 40px;
  }

  .num-overall{
    font-size: 40px;
    font-weight: bold;
  }


  .comment{
    width: 95%;
    margin: 10px auto;
    display: flex;
    flex-direction: column;
  }

  .comment_title{
    width: 100%;
    margin: 15px auto;
    font-size: 20px;
  }

  .comment_text{
    width: 100%;
    margin: 15px auto;
    font-size: 16px;
  }

  .comment_image{
    width: 100%;
    margin: 15px auto;
  }

  .comment_image img{
    width: 100%;
    height: auto;
  }

  .comment_confirmation{
    width: 90%;
    margin: 15px auto;
  }

  .modal_title{
  }

  .post_content{

  }

  textarea{
    width: 100%;
    height: 100px;
  }


/*-------------スマホ用デザイン-------------*/

@media only screen and  (max-width: 440px) {

    .ad-sidebar {
        display: none;
    }

    body {
        font-family: "Noto Sans JP", sans-serif;
        font-style: normal;
        background-color: #f2f2f2;
        max-width: 440px;
        margin: 0px auto;
        padding: 0px;
    }
    
    header {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100px;
        box-shadow: 0 0 10px rgba(0,0,0,0.7);
        position: fixed;
        z-index: 90;
        max-width: 1024px;
    }
    
    header p{
        color: white;
        text-align: left;
        font-size: 1.2em;
        margin: 0px;
        padding: 0px 0px;
        display: none;
    }
    
    .search_container{
        position: relative;
        border: 1px solid #999;
        padding: 3px 10px;
        border-radius: 20px;
        height: 1.8em;
        width:175px;
        overflow: hidden;
        background-color: white;
        margin-right: 10px;
    }
    
    .search_container input[type="text"]{
        border: none;
        background: unset;
        color: black;
    }
    
    .search_container input[type="text"]:focus {
        outline: 0;
    }
    
    .search_container input[type="submit"]{
        cursor: pointer;
        font-family: FontAwesome;
        border: none;
        background: #3879D9;
        color: #fff;
        position: absolute;
        width: 3.5em;
        height: 3.2em;
        right:0px;
        top: -3px;
        outline : none;
    }
    
    .search_container input[type="submit"]:hover {
        background: #4479D9;
    }
    
    .header_wrapper_top {
        width: 100%;
        height: 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 0px;
        margin: 0px 0px;
        background-color: darkslategray;
    }
    
    .header_wrapper_top .logo_section {
        height: 50px;
        width: 70px;
        border-radius: 0px 40px 40px 0px;
        background-color: darkorange;
        
    }
    
    .header_wrapper_top .logo_section img {
        position: relative;
        left: 6px;
        width: 50px;
        height: 50px;
    }
    
    .normal_ul {
        width: 100%;
        height: 50px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 0px 0px;
        margin: 0px 0px;
        background-color: white;
        list-style-type: none;
    }
    .normal_ul a {
        text-decoration: none;
        color: darkorange;
        font-weight: bold;
        text-shadow: 1px 1px 4px lightgray;
        font-size: 0.8em;
    }
    
    .normal_ul a:hover {
        color: orange;
    }

    .op-dropdown__toggle { font-size: 0.8em; }
    
    .top_menu{
        position: relative;
        width: 100%;
        margin-top: 0px;
        margin-bottom: 10px;
        padding-top: 100px;
    }
    
    .top_menu img{
        width: 100%;
        max-height: 500px;
        object-fit: cover;
        filter: saturate(80%);
        filter:contrast(70%);
        box-shadow: 0 0 10px rgba(0,0,0,0.7);
    }
    
    .hero_caption{
        position: absolute;
        top: 3%;
        left: 3%;
        padding-top: 100px;
    }
    
    .hero_caption h1{
        color: white;
        font-size: 1.5em;
        font-weight: bold;
        margin: 0px;
        padding: 0px;
        text-shadow: 1px 1px 4px black;
    }
    
    .hero_caption p{
        color: white;
        font-size: 1.0em;
        font-weight: bold;
        margin: 0px;
        padding: 0px;
        text-shadow: 1px 1px 4px black;
    }
    
    .usage_search{
        list-style: none;  
        justify-content: center;
        position: absolute;
        top: 45%; 
        width: 100%;
        padding-top: 100px;
    }
    
    .usage_search_area{
        width:300px;
        margin: auto;
    }
    
    .usage_search_title{
        background-color: darkorange;
        height: 40px;
        width:75%;
        color: white;
        text-align: center;
        border-radius: 5px 5px 0px 0px;
        
    }
    
    .usage_search_title h2{
        margin: auto;
        color: white;
        line-height: 40px;
        font-size: 1.0em;
        text-shadow: 1px 1px 2px darkslategray;
    }
    
    .usage_select_area{
        background-color: #f2f2f2;
        height: 40px;
        width:100%;
        color: white;
        margin: auto;
        display: flex; 
        justify-content: space-around; 
        border-radius: 0px 5px 5px 5px;
    }
    
    .usage_select{
    
        margin: auto;
        width: 150px;
        height: 30px;
        font-size: 0.8em;
    }
    
    .usage_search_button{
        text-align: center;
        margin: auto;
    
    }
        
    .usage_search_button .search{
        padding: 5px 25px;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background-color: darkorange;
        color: white;
        font-size:1rem;
        font-weight: bold;
        outline: none;
        line-height: 20px;
        height: 35px;
        box-shadow: 0 0 10px rgba(0,0,0,0.7);
        text-shadow: 1px 1px 2px darkslategray;
    }
    
    .usage_search_button .search:hover{
        background-color: orange;
    }
    
    .content_wrapper{
        display: flex;
        flex-direction: row;
        width: 100%;
    }
    
    .content_wrapper .side_menu_wrapper{
        display: flex;
        flex-direction: column;
        width: 23%;
        display: none;
    }
    
    .content_wrapper .side_menu_wrapper h2{
        font-size: 1.0em;
        font-weight: bold;
        margin-left: 10px;
        margin-top: 30px;
        margin-bottom: 12px;
    }
    
    .content_wrapper .side_menu_wrapper h2::before{
        content: '>';
        color: darkorange;
        margin-right: 4px;
      }
    
    .side_menu_wrapper .side_menu{
        display: flex;
        flex-direction: column;
        width: 90%;
        background-color: white;
        border-radius: 10px;
        margin: 10px auto;
        box-shadow: 0 0 10px rgba(0,0,0,0.5);
    }
    
    .side_menu_wrapper .side_menu h3{
        font-size: 1.2em;
        font-weight: bold;
        margin: 0px;
        margin-top: 10px;
        margin-left: 10px;
    }
    
    .side_menu_wrapper .side_menu hr{
        width: 90%;
        margin: 0px auto;
        margin-top: 10px;
    }
    
    .side_menu_wrapper .side_menu ul{
        list-style: none;
        margin: 0px;
        padding: 0px;
        margin-left: 5px;
    }
    
    .side_menu_wrapper .side_menu ul li{
        margin: 0px;
        padding: 0px;
    }
    
    .side_menu_wrapper .side_menu ul li a{
        text-decoration: none;
        font-size: 0.9em;
        font-weight: bold;
        margin: 0px;
        padding: 5px;
        display: block;
    }
    
    .side_menu_wrapper .side_menu ul li a:hover{
        background-color: #f2f2f2;
    }
    
    .side_menu_wrapper .side_menu .more_button{
        background-color: #f2f2f2;
        color: blue;
        font-size: 0.9em;
        width: 90%;
        margin: 5px auto;
        display: block;
        text-align: center;
        border-radius: 10px;
        border-width: 0px;
    }
    
    .side_menu_wrapper .side_menu .more_button:hover{
        background-color: #e6e6e6;
    }
    
    .content_wrapper .main_content_wrapper{
        display: flex;
        flex-direction: column;
        //width: 95%;
        width: 100%;
        margin: 0px 0px;
    }
    
    .content_wrapper .main_content h1{
        color: black;
        font-size: 1.2em;
    }
    
    .content_wrapper .main_content h2{
        color: black;
        font-size: 1.0em;
    }
    
    .content_wrapper .main_content h2::before{
      content: '●';
      color: darkorange;
      margin-right: 8px;
    }
    
    .content_wrapper .main_content_wrapper .main_content{
        //width: 98%;
        width: 100%;
        margin: 0px auto;
    }
    
    .content_wrapper .main_content_wrapper .side_scroll{
        display: flex;
        flex-direction: row;
        width: 100%;
        //height: 250px;
        margin: 5px auto;
        margin-bottom: 50px;
        background-color: white;
        overflow-x: scroll;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0,0,0,0.5);
    }
    
    .content_wrapper .main_content_wrapper .side_scroll a{
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        height:95%;
        margin: 5px;
        background-color: white;
        text-decoration: none;
        width: 150px;
    }
    
    .content_wrapper .main_content_wrapper .side_scroll a:hover{
        filter: saturate(80%);
        filter:contrast(70%);
    }
    
    
    
    .content_wrapper .main_content_wrapper .side_scroll .side_scroll_item{
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        height:95%;
        margin: 5px;
        background-color: white;
        
    }
    
    .content_wrapper .main_content_wrapper .side_scroll .side_scroll_item img{
        width: 75px;
        margin: 10px 30px;
        height: 100px;
        width: 100px;
    }
    
    .content_wrapper .main_content_wrapper .side_scroll .side_scroll_item .discription{
        display: flex;
        flex-direction: column;
        margin: 0px;
        padding: 0px;
    }
    
    .content_wrapper .main_content_wrapper .side_scroll .side_scroll_item .discription p{
        margin: 0px;
        padding: 5px;
        font-size: 0.8em;
        width: 200px; /* 要素の横幅を指定 */
        white-space: nowrap; /* 横幅のMAXに達しても改行しない */
        overflow: hidden; /* ハミ出した部分を隠す */
        text-overflow: ellipsis; /* 「…」と省略 */
        -webkit-text-overflow: ellipsis; /* Safari */
        -o-text-overflow: ellipsis; /* Opera */
    }

    .content_wrapper .main_content_wrapper .side_scroll .side_scroll_item .discription .rakuten{
        margin: 0px;
        padding: 5px;
        font-size: 0.8em;
        width: 200px; /* 要素の横幅を指定 */
        white-space: nowrap; /* 横幅のMAXに達しても改行しない */
        overflow: hidden; /* ハミ出した部分を隠す */
        text-overflow: ellipsis; /* 「…」と省略 */
        -webkit-text-overflow: ellipsis; /* Safari */
        -o-text-overflow: ellipsis; /* Opera */
        white-space: initial;
        height: 9em;
        line-height: 1.8;
    }

    .content_wrapper .main_content_wrapper .side_scroll .side_scroll_item .more_button{
        padding: 5px 20px;
        margin: 16px auto;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background-color: darkorange;
        color: white;
        font-size: 1.0rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        text-shadow: 1px 1px 2px darkslategray;
    }

    .content_wrapper .main_content_wrapper .side_scroll .side_scroll_item .rakuten_more_button{
        padding: 5px 20px;
        margin: 16px auto;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background-color: #ef5d8e;
        color: white;
        font-size: 1.0rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        text-shadow: 1px 1px 2px darkslategray;
    }
    
    .content_wrapper .main_content_wrapper .search_condition{
        width: 100%;
    }
    
    .content_wrapper .main_content_wrapper .search_condition .search_condition_input{
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 10px auto;
    }
    
    .content_wrapper .main_content_wrapper .search_condition .search_condition_input .input_01{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .content_wrapper .main_content_wrapper .search_condition .search_condition_input .input_01 .pulldown_wrapper{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        width: 90%;
    }
    
    .content_wrapper .main_content_wrapper .search_condition .search_condition_input .input_01 .pulldown_wrapper .pulldown_title{
        width: 50%;
        text-align: center;
        font-size: 0.8em;
        margin: 7px auto;
    }
    
    .content_wrapper .main_content_wrapper .search_condition .search_condition_input .input_01 .pulldown_wrapper select{
        width: 35%;
        border-radius: 30px;
        height: 25px;
        text-align: center;
        margin: auto;
    }
    
    .content_wrapper .main_content_wrapper .search_condition .search_condition_input .input_01 .pulldown_wrapper .pulldown_note{
        width: 15%;
        padding-left: 5px;
        margin: auto;
        font-size: 0.6em;
    }
    
    .content_wrapper .main_content_wrapper .search_condition .search_condition_input .input_02{
        width: 100%;
    }
    
    .flex_wrapper{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .flex_wrapper .pulldown_wrapper{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        width: calc(50% - 20px);
    }
    
    .flex_wrapper .pulldown_wrapper .pulldown_title{
        width: 50%;
        text-align: center;
        font-size: 1.2em;
        margin: 15px auto;
    }
    
    .flex_wrapper .pulldown_wrapper select{
        width: 35%;
        border-radius: 30px;
        height: 35px;
        text-align: center;
        margin: auto;
    }
    
    .flex_wrapper .pulldown_wrapper .pulldown_note{
        width: 15%;
        padding-left: 5px;
        margin: auto;
    }
    
    .detail_wrapper{
        margin-left: 10px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .details_2nd{
        margin-left: 10px;
    }
    
    .details_3rd{
        margin-left: 10px;
    }
    
    summary {
        position: relative;
        display: block; 
        padding: 10px 10px 10px 30px; 
        cursor: pointer; 
        font-weight: bold;
        transition: 0.2s;
        font-size: 1.0rem;
    }
    
    summary:hover {
        background-color: lightsalmon;
    }
    summary::-webkit-details-marker {
        display: none;
    }
    
    summary:before,
    summary:after {
        content: "";
        margin: auto 0 auto 10px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
    }
    summary:before {
        width: 16px;
        height: 16px;
        border-radius: 4px;
        background-color: darkorange;
    }
    summary:after {
        left: 6px;
        width: 5px;
        height: 5px;
        border: 4px solid transparent;
        border-left: 5px solid #fff;
        box-sizing: border-box;
        transition: .1s;
    }
    
    details[open] summary {
        width: 100%;
    }
    details[open] summary:after {
        transform: rotate(90deg);
        left: 4px;
        top: 5px;
    }
    
    details[open] .details-content {
        animation: fadeIn 0.5s ease;
    }
    
    @keyframes fadeIn {
        0% {
            opacity: 0;
            transform: translateY(-10px);
        }
        100% {
            opacity: 1;
            transform: none;
        }
    }
    
    .content_wrapper .main_content_wrapper .search_condition .search_condition_input .input_03{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
        width: 100%;
        margin: 10px auto;
    }
    
    .content_wrapper .main_content_wrapper .search_condition .search_condition_input .input_03 .reset_button{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        width: calc(50% - 20px);
        padding: 5px 3px;
        border-radius: 30px;
        border-width: 3px;
        border-color: gray;
        background-color: gray;
        color: black;
        font-size: 0.7rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        text-shadow: 1px 1px 2px darkslategray;
    }
    
    .content_wrapper .main_content_wrapper .search_condition .search_condition_input .input_03 .reset_button:hover{
        background-color: lightgray;
    }
    
    .content_wrapper .main_content_wrapper .search_condition .search_condition_input .input_03 .search_button{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        width: calc(50% - 20px);
        padding: 5px 0px;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background-color: darkorange;
        color: white;
        font-size: 1.1rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        text-shadow: 1px 1px 2px darkslategray;
    }
    
    .content_wrapper .main_content_wrapper .search_condition .search_condition_input .input_03 .search_button:hover{
        background-color: orange;
    }
    
    .content_wrapper .main_content_wrapper .result_wrapper{
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 15px auto;
        margin-bottom: 50px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0,0,0,0.5);
    }
    
    .content_wrapper .main_content_wrapper .result_wrapper .result_sort{
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        width: 100%;
        height: 75px;
        background-color: #f2f2f2;
    }
    
    .content_wrapper .main_content_wrapper .result_wrapper .result_sort .sort_item{
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        width: 17%;
        height: 50px;
        text-align: center;
        margin: auto 10px;
    }
    
    .content_wrapper .main_content_wrapper .result_wrapper .result_sort .sort_item .sort_title{
        font-size: 0.8em;
        margin: 0px;
        width: 100%;
        margin: auto;
    }
    
    .content_wrapper .main_content_wrapper .result_wrapper .result_sort .sort_item .sort_button{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        width: 75%;
        font-size: 0.8em;
        margin: auto;
    }
    
    .content_wrapper .main_content_wrapper .result_wrapper .result_sort .sort_item .sort_button .sort_button_divider{
        background:#000000;
        width:1px;
        height:100%;
    }
    
    .content_wrapper .main_content_wrapper .result_wrapper .result_sort .sort_item .sort_button a{
        padding: 0px 5px;
    }
    
    .content_wrapper .main_content_wrapper .result_wrapper .product_info{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-evenly;
        width: 95%;
        background-color: white;
        margin: 0px auto;
    }
    
    .content_wrapper .main_content_wrapper .result_wrapper .product_info h4{
        font-size: 1.0em;
        font-weight: bold;
        margin: 0px;
        margin-top: 10px;
        margin-left: 15px;
    }
    
    .content_wrapper .main_content_wrapper .result_wrapper .product_info h3{
        font-size: 1.2em;
        font-weight: bold;
        margin: 0px;
        margin-bottom: 10px;
        margin-left: 15px;
    }
    
    .content_wrapper .main_content_wrapper .result_wrapper .product_info .product_spec_wrapper{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        width: 100%;
        margin: 0px auto;
        margin-top: 10px;;
    }
    
    .content_wrapper .main_content_wrapper .result_wrapper .product_info .product_spec_wrapper .product_image{
        width: 35%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .content_wrapper .main_content_wrapper .result_wrapper .product_info .product_spec_wrapper .product_image img{
        width: 100%;
        height: 100px;
    }
    
    .content_wrapper .main_content_wrapper .result_wrapper .product_info .product_spec_wrapper .product_spec_item{
        width: 30%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        margin: 0px auto;
        padding-left: 0px;
        text-align: center;
        font-weight: bold;
    }

    .content_wrapper .main_content_wrapper .result_wrapper .product_info .product_spec_wrapper .product_spec_item p{
        margin-top: 0px;
        margin-bottom: 0px;
    }
    
    .content_wrapper .main_content_wrapper .result_wrapper .product_info .product_spec_wrapper .product_spec_spec{
        width: 35%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        margin: 0px auto;
        text-align: center;
        font-weight: bold;
    }

    .content_wrapper .main_content_wrapper .result_wrapper .product_info .product_spec_wrapper .product_spec_spec p{
        margin-top: 0px;
        margin-bottom: 0px;
    }
    
    .content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper{
        display: flex;
        flex-direction: row;
        justify-content: end;
        flex-wrap: wrap;
        width: 100%;
        margin: 10px auto;
    }
    .content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .show_detail{
        padding: 5px 5px;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background-color: gray;
        color: white;
        font-size: 0.7rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        text-shadow: 1px 1px 2px darkslategray;
        width: 40%;
        text-align: center;
        text-decoration: none;
        margin: auto;
    }
    
    .content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .rakuten_cta{
        padding: 5px 5px;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background-color: #ef5d8e;
        color: white;
        font-size: 0.7rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        text-shadow: 1px 1px 2px darkslategray;
        width: 40%;
        text-align: center;
        text-decoration: none;
        margin: auto;
    }
    
    .content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .amazon_cta{
        padding: 5px 5px;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background-color: #ff9900;
        color: white;
        font-size: 0.7rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        text-shadow: 1px 1px 2px darkslategray;
        width: 40%;
        text-align: center;
        text-decoration: none;
        margin: auto;
    }

    .content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .official_cta{
        padding: 5px 5px;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
        color: white;
        font-size: 0.7rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        text-shadow: 1px 1px 2px darkslategray;
        //width: 30%;
        width: 50%;
        text-align: center;
        text-decoration: none;
        margin: auto;
    }

    .content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .mercari_cta{
        padding: 5px 5px;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background-color: #ff0211;
        color: white;
        font-size: 0.7rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        text-shadow: 1px 1px 2px darkslategray;
        width: 40%;
        text-align: center;
        text-decoration: none;
        margin: auto;
    }

    .content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .yahoo_cta{
        padding: 5px 5px;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background-color: #73c1f3;
        color: white;
        font-size: 0.7rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        text-shadow: 1px 1px 2px darkslategray;
        width: 40%;
        text-align: center;
        text-decoration: none;
        margin: auto;
    }

    .content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .rakuten_cta_2{
        padding: 5px 5px;
        border-radius: 5px;
        border: 2px solid #ef5d8e;
        background-color: white;
        color: #ef5d8e;
        font-size: 0.9rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        //box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        //text-shadow: 1px 1px 2px darkslategray;
        width: 40%;
        text-align: center;
        //text-decoration: none;
    }
    
    .content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .amazon_cta_2{
        padding: 5px 5px;
        border-radius: 5px;
        border: 2px solid #ff9900;
        background-color: white;
        color: #ff9900;
        font-size: 0.9rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        //box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        //text-shadow: 1px 1px 2px darkslategray;
        width: 40%;
        text-align: center;
        //text-decoration: none;
    }
    
    .content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .official_cta_2{
        padding: 5px 5px;
        border-radius: 5px;
        border-width: 4px;
        border-color: gray;
        background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
        color: white;
        font-size: 0.9rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        text-shadow: 1px 1px 2px darkslategray;
        //width: 30%;
        width: 90%;
        text-align: center;
        text-decoration: none;
        margin: auto;
    }

    .content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .mercari_cta_2{
        padding: 5px 5px;
        border-radius: 5px;
        border: 2px solid #ff0211;
        background-color: white;
        color: #ff0211;
        font-size: 0.9rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        //box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        //text-shadow: 1px 1px 2px darkslategray;
        width: 40%;
        text-align: center;
        //text-decoration: none;
    }

    .content_wrapper .main_content_wrapper .result_wrapper .product_info .cta_wrapper .yahoo_cta_2{
        padding: 5px 5px;
        border-radius: 5px;
        border: 2px solid #73c1f3;
        background-color: white;
        color: #73c1f3;
        font-size: 0.9rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        //box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        //text-shadow: 1px 1px 2px darkslategray;
        width: 40%;
        text-align: center;
        //text-decoration: none;
    }

    .sale_cta_wrapper{
        display: flex;
        flex-direction: row;
        justify-content: end;
        flex-wrap: wrap;
        width: 100%;
        margin: 10px auto;
    }

    .sale_rakuten_cta_2{
        padding: 5px 5px;
        border-radius: 5px;
        border: 2px solid #ef5d8e;
        background-color: white;
        color: #ef5d8e;
        font-size: 0.8rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        //box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        //text-shadow: 1px 1px 2px darkslategray;
        width: 90%;
        text-align: center;
        //text-decoration: none;
    }
    
    .sale_amazon_cta_2{
        padding: 5px 5px;
        border-radius: 5px;
        border: 2px solid #ff9900;
        background-color: white;
        color: #ff9900;
        font-size: 0.8rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        //box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        //text-shadow: 1px 1px 2px darkslategray;
        width: 90%;
        text-align: center;
    }
       

    .bottom-cta{
        width: 100%;
    }
    
    .bottom-cta .cta_wrapper{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        width: 100%;
        height: 75px;
        max-width: 1024px;
        background-color: rgba(47, 79, 79, 0.8);
        border-radius: 10px 10px 0px 0px;
    }
    
    .bottom-cta .cta_wrapper .rakuten_cta{
        padding: 5px 5px;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background-color: #ef5d8e;
        color: white;
        font-size:0.7rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0,0,0,0.7);
        text-shadow: 1px 1px 2px darkslategray;
        width: 30%;
        text-align: center;
        margin:auto;
        text-decoration: none;
    }
    
    .bottom-cta .cta_wrapper .amazon_cta{
        padding: 5px 5px;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background-color: #ff9900;
        color: white;
        font-size:0.7rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0,0,0,0.7);
        text-shadow: 1px 1px 2px darkslategray;
        width: 30%;
        text-align: center;
        margin:auto;
        text-decoration: none;
    }
    
    .bottom-cta .cta_wrapper .official_cta{
        padding: 5px 5px;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
        color: white;
        font-size:0.7rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0,0,0,0.7);
        text-shadow: 1px 1px 2px darkslategray;
        width: 30%;
        text-align: center;
        margin: auto;
        text-decoration: none;
    }

    .bottom-cta .cta_wrapper .mercari_cta{
        padding: 5px 5px;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background-color: #ff0211;
        color: white;
        font-size:0.7rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0,0,0,0.7);
        text-shadow: 1px 1px 2px darkslategray;
        width: 30%;
        text-align: center;
        margin:auto;
        text-decoration: none;
    }

    .bottom-cta .cta_wrapper .yahoo_cta{
        padding: 5px 5px;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background-color: #73c1f3;
        color: white;
        font-size:0.7rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0,0,0,0.7);
        text-shadow: 1px 1px 2px darkslategray;
        width: 30%;
        text-align: center;
        margin:auto;
        text-decoration: none;
    }
    
    .content_wrapper .main_content_wrapper .result_wrapper .product_info hr{
        width: 95%;
        margin: 0px auto;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper{
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 15px auto;
        margin-bottom: 50px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0,0,0,0.5);
    }

    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-evenly;
        width: 95%;
        background-color: white;
        margin: 0px auto;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info h4{
        font-size: 1.0em;
        font-weight: bold;
        margin: 0px;
        margin-top: 10px;
        margin-left: 15px;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info h3{
        font-size: 1.2em;
        font-weight: bold;
        margin: 0px;
        margin-bottom: 10px;
        margin-left: 15px;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .product_spec_wrapper{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        width: 100%;
        margin: 0px auto;
        margin-top: 10px;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .product_spec_wrapper .product_image{
        width: 35%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .product_spec_wrapper .product_image img{
        width: 100%;
        height: 100px;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .product_spec_wrapper .product_spec_item{
        width: 30%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        margin: 0px auto;
        padding-left: 0px;
        text-align: center;
        font-weight: bold;
    }

    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .product_spec_wrapper .product_spec_item p{
        margin-top: 0px;
        margin-bottom: 0px;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .product_spec_wrapper .product_spec_spec{
        width: 35%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        margin: 0px auto;
        text-align: center;
        font-weight: bold;
    }

    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .product_spec_wrapper .product_spec_spec p{
        margin-top: 0px;
        margin-bottom: 0px;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
        width: 100%;
        margin: 10px auto;
    }
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .show_detail{
        padding: 5px 5px;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background-color: gray;
        color: white;
        font-size: 0.7rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        text-shadow: 1px 1px 2px darkslategray;
        width: 30%;
        text-align: center;
        text-decoration: none;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .rakuten_cta{
        padding: 5px 5px;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background-color: #ef5d8e;
        color: white;
        font-size: 0.7rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        text-shadow: 1px 1px 2px darkslategray;
        width: 40%;
        text-align: center;
        text-decoration: none;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .amazon_cta{
        padding: 5px 5px;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background-color: #ff9900;
        color: white;
        font-size: 0.7rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        text-shadow: 1px 1px 2px darkslategray;
        width: 40%;
        text-align: center;
        text-decoration: none;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .official_cta{
        padding: 5px 5px;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
        color: white;
        font-size: 0.7rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        text-shadow: 1px 1px 2px darkslategray;
        //width: 30%;
        width: 50%;
        text-align: center;
        text-decoration: none;
        margin: auto;
    }

    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .mercari_cta{
        padding: 5px 5px;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background-color: #ff0211;
        color: white;
        font-size: 0.7rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        text-shadow: 1px 1px 2px darkslategray;
        width: 40%;
        text-align: center;
        text-decoration: none;
    }

    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .yahoo_cta{
        padding: 5px 5px;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background-color: #73c1f3;
        color: white;
        font-size: 0.7rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        text-shadow: 1px 1px 2px darkslategray;
        width: 40%;
        text-align: center;
        text-decoration: none;
    }

    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .rakuten_cta_2{
        padding: 5px 5px;
        border-radius: 5px;
        border: 2px solid #ef5d8e;
        background-color: white;
        color: #ef5d8e;
        font-size: 0.9rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        //box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        //text-shadow: 1px 1px 2px darkslategray;
        width: 40%;
        text-align: center;
        //text-decoration: none;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .amazon_cta_2{
        padding: 5px 5px;
        border-radius: 5px;
        border: 2px solid #ff9900;
        background-color: white;
        color: #ff9900;
        font-size: 0.9rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        //box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        //text-shadow: 1px 1px 2px darkslategray;
        width: 40%;
        text-align: center;
        //text-decoration: none;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .official_cta_2{
        padding: 5px 5px;
        border-radius: 5px;
        border-width: 4px;
        border-color: gray;
        background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
        color: white;
        font-size: 0.9rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        text-shadow: 1px 1px 2px darkslategray;
        //width: 30%;
        width: 90%;
        text-align: center;
        text-decoration: none;
        margin: auto;
    }

    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .mercari_cta_2{
        padding: 5px 5px;
        border-radius: 5px;
        border: 2px solid #ff0211;
        background-color: white;
        color: #ff0211;
        font-size: 0.9rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        //box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        //text-shadow: 1px 1px 2px darkslategray;
        width: 40%;
        text-align: center;
        //text-decoration: none;
    }

    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .yahoo_cta_2{
        padding: 5px 5px;
        border-radius: 5px;
        border: 2px solid #73c1f3;
        background-color: white;
        color: #73c1f3;
        font-size: 0.9rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        //box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
        //text-shadow: 1px 1px 2px darkslategray;
        width: 40%;
        text-align: center;
        //text-decoration: none;
    }

    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info hr{
        width: 95%;
        margin: 0px auto;
    }
    
    /*.content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-evenly;
        width: 95%;
        background-color: white;
        margin: 0px auto;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info h4{
        font-size: 1.0em;
        font-weight: bold;
        margin: 0px;
        margin-top: 10px;
        margin-left: 15px;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info h3{
        font-size: 1.2em;
        font-weight: bold;
        margin: 0px;
        margin-bottom: 10px;
        margin-left: 15px;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .product_spec_wrapper{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        width: 100%;
        margin: 0px auto;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .product_spec_wrapper .product_image{
        width: 45%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .product_spec_wrapper .product_image img{
        width: 90%;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .product_spec_wrapper .product_spec_item{
        width: 20%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        margin: 0px auto;
        padding-left: 30px;
        text-align: center;
        font-weight: bold;
    
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .product_spec_wrapper .product_spec_spec{
        width: 20%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        margin: 0px auto;
        text-align: left;
        font-weight: bold;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        width: 100%;
        margin: 20px auto;
    }
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .show_detail{
        padding: 5px 30px;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background-color: gray;
        color: white;
        font-size:1.1rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0,0,0,0.7);
        text-shadow: 1px 1px 2px darkslategray;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .rakuten_cta{
        padding: 5px 30px;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background-color: #ef5d8e;
        color: white;
        font-size:1.1rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0,0,0,0.7);
        text-shadow: 1px 1px 2px darkslategray;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info .cta_wrapper .amazon_cta{
        padding: 5px 30px;
        border-radius: 30px;
        border-width: 4px;
        border-color: gray;
        background-color: #ff9900;
        color: white;
        font-size:1.1rem;
        font-weight: bold;
        outline: none;
        line-height: 40px;
        box-shadow: 0 0 10px rgba(0,0,0,0.7);
        text-shadow: 1px 1px 2px darkslategray;
    }
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .product_info hr{
        width: 95%;
        margin: 0px auto;
    }*/
    
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .article_header{
        display: flex;
        flex-direction: column;
        width: 95%;
        margin: 0px auto;
    }
    .content_wrapper .main_content_wrapper .main_content .article_wrapper .article_body{
        display: flex;
        flex-direction: column;
        width: 95%;
        margin: 0px auto;
    }
    
    .table-of-contents {
        border: 2px solid darkorange;
        border-radius: 2px;
        //margin: 1em ;
        //padding: 1.5em;
        padding: 30px;
        //margin-top: 100px;
        //font-size: 1.6em;
        position: relative;
        line-height: 2;
    }
    .table-of-contents:before {
        background-color: #fff;
        color: darkorange;
        //font-size: 1.6em;
        content: "\f03a  目次";
        font-family: "Font Awesome 5 Free";
        font-weight: bold;
        left: 1em;
        //padding: 0 0.5em;
        position: absolute;
        top: -1em;
    }
    
    .spec_ul {
        margin-top: 10px;
        margin-bottom: 10px;
        //font-size: 1.6rem;
        font-weight: normal;
    }
    
    .spec_li {
        //font-size: 1.6rem;
        font-weight: bold;
    }
    
    .product_spec_table{
        width: 100%;
        margin: auto;
        margin-top: 3%;
        margin-bottom: 6%;
    }
    
    .product_spec_table table{
        width: 100%;
        border-collapse: collapse;
    }
    
    .product_spec_table table tr th{
        //font-size: 1.4rem;
    }
    
    .product_spec_table table tr .th_color{
        background-color: darkorange;
        color: white;
        width: 25%;
    }
    
    .product_spec_table table tr .th_color_white{
        background-color: white;
        width: 25%;
    }
    
    .list_ul {
        border: solid 2px #ffb03f;
        padding: 0 0.5em;
        position: relative;
        //font-size: 1.6rem;
      }
    
      .list_li {
        line-height: 1.5;
        padding: 0.5em 0 0.5em 1.4em;
        border-bottom: dashed 1px silver;
        list-style-type: none!important;
      }
    
      .list_li:before {
        font-family: FontAwesome;
        content: "\f138";/*アイコン種類*/
        position: absolute;
        left : 0.5em; /*左端からのアイコンまで*/
        color: #ffb03f; /*アイコン色*/
      }
    
      .list_li:last-of-type {
        border-bottom: none;
      }
    
      .memo{
        width: 90%;
        //font-size: 1.4rem;
        background-color: aliceblue;
        margin: auto;
        padding: 20px;
        margin-top: 50px;
        margin-bottom: 50px;
      }
    
      .str_20{
        //font-size: 2rem;
        font-weight: bold;
      }
    
      .marker-under {
        background: linear-gradient(transparent 60%, #ff9 60%);
      }
      
      .marker-under-red {
        background: linear-gradient(transparent 60%, #ffd0d1 60%);
      }
      
      .marker-under-blue {
        background: linear-gradient(transparent 60%, #a8dafb 60%);
      }
    
      .product_suggestion_table{
        width: 95%;
        margin: auto;
        -webkit-appearance: none;
        -moz-appearance:none;
        overflow-x: scroll;
    }
    
    .product_suggestion_table table{
        width: 100%;
        table-layout: fixed;
        border-collapse: collapse;
    }
    
    .product_suggestion_table table tr th{
        //font-size: 1.4rem;
        width: 100px;
        max-width: 150px;
    }
    
    .product_suggestion_table table tr th a{
        text-decoration: none;
    }
    
    .product_suggestion_table table tr .th_img{
        pointer-events: none;
    }
    
    .product_suggestion_table table tr th img{
        width:auto;
        height:auto;
        max-width:90%;
        max-height:200px;
        vertical-align: middle;
    }
    
    
    .product_suggestion_table table tr .th_color{
        position: sticky;
        left: 0;
        background-color: darkorange;
        color: white;
        width: 100px;
        max-width: 100px;
    }
    
    .product_suggestion_table table tr .th_color_white{
        position: sticky;
        left: 0;
        background-color: white;
        width: 100px;
        max-width: 100px;
    }
    
    
    .suggestion_button{
        background-color: darkorange;
        height: 50px;
        width: 90%;
        //margin: 10%;
        margin: 10% auto;
        line-height:50px;
    }
    
    .suggestion_button a{
        width: 100%;
        height: 100%;
        color: white;
    }
    
    #myCanvas {
        width: 100%;
        height: 300px;
        //display: block;
        background-color:#00000000;
     }
    
     .ranking_ul {
        //border: solid 2px #ffb03f;
        padding: 0 0.5em;
        position: relative;
        //font-size: 1.4rem;
      }
    
      .ranking_li {
        line-height: 1.5;
        padding: 0.5em 0 0.5em 1.4em;
        //border-bottom: dashed 1px silver;
        list-style-type: none!important;
      }
    
      .ranking_li:before {
        font-family: FontAwesome;
        content: "\f138";/*アイコン種類*/
        position: absolute;
        left : 0.5em; /*左端からのアイコンまで*/
        color: #ffb03f; /*アイコン色*/
      }
    
      .ranking_li:last-of-type {
        border-bottom: none;
      }
    /*
      h1 {
        position: relative;
        padding: 0.5em;
        background: #a6d3c8;
        color: white;
        margin-bottom: 30px;
      }
      
      h1::before {
        position: absolute;
        content: '';
        top: 100%;
        left: 0;
        border: none;
        border-bottom: solid 15px transparent;
        border-right: solid 20px rgb(149, 158, 155);
      }
    */
    
    .main_content_wrapper h1 {
        padding: 0.5em;/*文字周りの余白*/
        color: #494949;/*文字色*/
        background: white;/*背景色*/
        border-left: solid 5px darkorange;/*左線（実線 太さ 色）*/
        box-shadow: 0 0 10px rgba(0,0,0,0.7);
      }

      .ranking_info{
        display: flex;
        flex-direction: column;
      }

    .raidar_chart{
        width: 90%;
    }

    .ranking_table{
        width: 90%;
    }

    .overall_score{
        width: 80%;
        margin: 20px auto;
      }

      .rate-wrap p {
        font-size: 14px;
      }
    
      .num{
        font-size: 14px;
      }
    
      .rate-overall {
        position: relative;
        display: inline-block;
        width: 50%;
        height: 20px;/*サイズ変える時の変数*/
        font-size: 20px;/*サイズ変える時の変数*/
      }
    
      .rate-overall::before, .rate-overall::after {
        position: absolute;
        display: inline-block;
        height: 20px;/*サイズ変える時の変数*/
        content: '★★★★★';
        line-height: 20px;/*サイズ変える時の変数*/
      }
    
      .rate-overall::before {
        color: #c4c4c4;
      }
    
      .rate-overall::after {
        overflow: hidden;
        width: calc(var(--score) * 20px);/*サイズ変える時の変数(pxのところ)*/
        color: #ffb906;
      }
      
      .rate-wrap-overall {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        padding: 5px;
        //border: 1.5px solid #e8d8b0;
        margin: 20px auto 0;
        font-weight: bold;
      }
    
      .rate-wrap-overall p {
        width:40%;
        margin: 0px;
        font-size: 22px;
      }
    
      .num-overall{
        font-size: 22px;
        font-weight: bold;
      }

    
    
    
    
    
    
    
    
    
    
    footer {
        display: flex;
        flex-direction: column;
        width: 100%;
        background-color: darkslategray;
        box-shadow: 0 0 10px rgba(0,0,0,0.7);
    }
    
    .footer_wrapper{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .footer_wrapper .footer_logo {
        display: flex;
        flex-direction: column;
        margin-left: 15px;
        margin-top: 15px;
    }
    
    .footer_wrapper .footer_logo .site_name {
        color: white;
        font-size: 1.0em;
        font-weight: bold;
        margin: 0px;
    }
    .footer_wrapper .footer_logo .site_caption {
        color: white;
        font-size: 0.6em;
        font-weight: bold;
        margin: 0px;
    }
    
    .footer_wrapper .footer_menu {
        width: 100%;
        margin-top: 30px;
    }
    
    .footer_wrapper .footer_menu ul{
        display: flex;
        justify-content: space-around;
        padding: 0px;
        align-items: center;
        list-style: none;
    }
    
    .footer_wrapper .footer_menu ul li a {
        text-decoration: none;
        color: white;
        font-weight: bold;
        font-size: 0.6em;
    }
    
    .footer_wrapper .footer_menu ul li a:hover {
        color: orange;
    }

    /*.openSidebarMenu{
        display: block;
    }

    #sidebarMenu {
        display: block;
        height: 100%;
        position: fixed;
        left: 0;
        width: 250px;
        margin-top: 60px;
        transform: translateX(-250px);
        transition: transform 250ms ease-in-out;
        background: linear-gradient(180deg, #FC466B 0%, #3F5EFB 100%);
        z-index: 100;
    }
    .sidebarMenuInner{
        margin:0;
        padding:0;
        border-top: 1px solid rgba(255, 255, 255, 0.10);
    }
    .sidebarMenuInner li{
        list-style: none;
        color: #fff;
        text-transform: uppercase;
        font-weight: bold;
        padding: 20px;
        cursor: pointer;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }
    .sidebarMenuInner li span{
        display: block;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.50);
    }
    .sidebarMenuInner li a{
        color: #fff;
        text-transform: uppercase;
        font-weight: bold;
        cursor: pointer;
        text-decoration: none;
    }
    input[type="checkbox"]:checked ~ #sidebarMenu {
        transform: translateX(0);
    }
    
    input[type=checkbox] {
        transition: all 0.3s;
        box-sizing: border-box;
        display: none;
    }
    .sidebarIconToggle {
        transition: all 0.3s;
        box-sizing: border-box;
        cursor: pointer;
        //position: fixed;
        z-index: 99;
        height: 100%;
        width: 100%;
        //top: 120px;
        //left: 15px;
        //right: 15px;
        height: 22px;
        width: 22px;
        //padding: 15px;
        margin: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .spinner {
        transition: all 0.3s;
        box-sizing: border-box;
        position: absolute;
        height: 3px;
        width: 100%;
        background-color: #fff;
    }
    .horizontal {
        transition: all 0.3s;
        box-sizing: border-box;
        position: relative;
        float: left;
        margin-top: 3px;
    }
    .diagonal.part-1 {
        position: relative;
        transition: all 0.3s;
        box-sizing: border-box;
        float: left;
    }
    .diagonal.part-2 {
        transition: all 0.3s;
        box-sizing: border-box;
        position: relative;
        float: left;
        margin-top: 3px;
    }
    input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
        transition: all 0.3s;
        box-sizing: border-box;
        opacity: 0;
    }
    input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
        transition: all 0.3s;
        box-sizing: border-box;
        transform: rotate(135deg);
        margin-top: 8px;
    }
    input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
        transition: all 0.3s;
        box-sizing: border-box;
        transform: rotate(-135deg);
        margin-top: -9px;
    }*/

    /*-------hanberger menu-------*/
    .sidebarIconToggle {
        transition: all 0.3s;
        box-sizing: border-box;
        cursor: pointer;
        //position: fixed;
        z-index: 99;
        height: 100%;
        width: 100%;
        //top: 120px;
        //left: 15px;
        //right: 15px;
        height: 22px;
        width: 22px;
        //padding: 15px;
        margin: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .spinner {
        transition: all 0.3s;
        box-sizing: border-box;
        position: absolute;
        height: 3px;
        width: 100%;
        background-color: #fff;
    }
    .horizontal {
        transition: all 0.3s;
        box-sizing: border-box;
        position: relative;
        float: left;
        margin-top: 3px;
    }
    .diagonal.part-1 {
        position: relative;
        transition: all 0.3s;
        box-sizing: border-box;
        float: left;
    }
    .diagonal.part-2 {
        transition: all 0.3s;
        box-sizing: border-box;
        position: relative;
        float: left;
        margin-top: 3px;
    }

    .hscroll-photo-sp{
        height:350px;

    }

    .img_wrapper{
        width: 100%;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    
    .img_wrapper p{
        text-align: center;
        font-size: 0.6rem;
        color: darkgray;
    }
    
    .img{
        width: 100%;
        //height: 500px;
        text-align: center;
        //line-height: 500px;
    }   
    
    .img a img{
        width:90%;
        //height:500px;
        max-width:90%;
        max-height:500px;
        vertical-align: middle;
        object-fit: scale-down;
    } 

    .img_wrapper_2{
        width: 100%;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    
    .img_2_no_text{
        display: flex;
        //flex-direction: column;
        width: 100%;
    }
    
    .img_wrapper_2 p{
        text-align: center;
        font-size: 1rem;
        color: darkgray;
    }
    
    .img_2{
        width: 50%;
        //height: 500px;
        text-align: center;
        //line-height: 500px;
    }   
    
    .img_2 a img{
        width:auto;
        //height:400px;
        max-width:90%;
        max-height:500px;
        vertical-align: middle;
    }

    .breadcrumb {
        margin: 30px;
        padding: 0;
        list-style: none;
    }

    .breadcrumb li {
        display: inline-block;/*横に並ぶように*/
        list-style: none;
        font-weight: bold;/*太字*/
        border-left: initial;
    }

    .breadcrumb li + li{
        border-left: initial;
    }

    .breadcrumb li:after {
        /* ▶を表示*/
        font-family: FontAwesome;
        content: '\f0da';
        padding: 0 0.3em;
        color: #72a1f7;
        }

    .breadcrumb li:last-child:after {
        content: '';
        border-left: initial;
    }

    .breadcrumb li a {
        display: inline-block;
        padding: 0.2em 0.8em;
        border-radius: 15px;
        text-decoration: none;
        color: #72a1f7;
        background: #c6e2ff;
        font-size: 0.9em;
    }

    .breadcrumb li a:hover {
        background: #c9dbfb;
    }

}

.compare_item_wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    margin: 0px auto;
    margin-top: 10px;
}

.compare_item{
    width: 30%;

}

.compare_product_image{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.compare_product_image img{
    width: 100%;
    object-fit: scale-down;
    height: 200px;
}

@media only screen and  (max-width: 440px) {
    .compare_product_image{
        width: 100%;
    }

    .compare_product_image img{
        height: 100px;
    }
}

.compare_cta_wrapper{
    display: flex;
    flex-direction: row;
    justify-content: end;
    flex-wrap: wrap;
    width: 100%;
    margin: 10px auto;
}

.compare_official_cta_2{
    padding: 5px 5px;
    border-radius: 5px;
    border-width: 4px;
    border-color: gray;
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    text-shadow: 1px 1px 2px darkslategray;
    width: 90%;
    text-align: center;
    text-decoration: none;
    margin: auto;
}

.compare_official_cta_2:hover{
    background: linear-gradient(45deg, #FEE9A0 0%, #DAAF08 15%, #B67B03 30%, #DAAF08 55%, #FEE9A0 70%, #DAAF08 85%, #B67B03 100%);
}

.compare_rakuten_cta_2{
    padding: 5px 5px;
    border-radius: 5px;
    border: 2px solid #ef5d8e;
    background-color: white;
    color: #ef5d8e;
    font-size: 0.9rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    width: 40%;
    text-align: center;
    margin: auto;
}

.compare_rakuten_cta_2:hover{
    background-color: #ef5d8e;
    color: white;
}

.compare_amazon_cta_2{
    padding: 5px 5px;
    border-radius: 5px;
    border: 2px solid #ff9900;
    background-color: white;
    color: #ff9900;
    font-size: 0.9rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    width: 40%;
    text-align: center;
    margin: auto;
}

.compare_amazon_cta_2:hover{
    background-color: #ff9900;
    color: white;
}

.compare_yahoo_cta_2{
    padding: 5px 5px;
    border-radius: 5px;
    border: 2px solid #73c1f3;
    background-color: white;
    color: #73c1f3;
    font-size: 0.9rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    width: 40%;
    text-align: center;
    margin: auto;
}

.compare_yahoo_cta_2:hover{
    background-color: #73c1f3;
    color: white;
}

.compare_mercari_cta_2{
    padding: 5px 5px;
    border-radius: 5px;
    border: 2px solid #ff0211;
    background-color: white;
    color: #ff0211;
    font-size: 0.9rem;
    font-weight: bold;
    outline: none;
    line-height: 40px;
    width: 40%;
    text-align: center;
    margin: auto;
}

.compare_mercari_cta_2:hover{
    background-color: #ff0211;
    color: white;
}

/*---compare tab design css-----*/
.tab-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
    margin: 10px;
}

.tab-2 > label {
    flex: 1 1;
    order: -1;
    opacity: .5;
    min-width: 70px;
    padding: .6em 1em;
    border-radius: 5px 5px 0 0;
    background-color: darkorange;
    color: #fff;
    font-size: .9em;
    text-align: center;
    cursor: pointer;
}

.tab-2 > label:hover {
    opacity: .8;
}

.tab-2 input {
    display: none;
}

.tab-2 > div {
    display: none;
    width: 100%;
    padding: 1.5em 1em;
    background-color: #fff;
}

.tab-2 label:has(:checked) {
    opacity: 1;
}

.tab-2 label:has(:checked) + div {
    display: block;
}
/*------------------------------*/