@charset "utf-8";
/* *{
    outline: 1px solid lightgray;
} */
/* 全体共通設定ここから↓ */
body{
    background-color: #ffffff;
    color: #2d2a29;
    font-size: 15px;
    line-height: 1.5;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo",  "MS Pゴシック", "MS PGothic", sans-serif;
}
body #Area{
    width: 90%;
    margin: 0 auto;
}
header{
    text-align: center;
    width: 80vw;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
}
header img{
    width: 70%;
}
header a {
    display: block;
}
#top_nav {
    height: 75px;
}
#top_nav ul {
    height: 100%;
	display: flex;
    justify-content: center;
}
#top_nav ul li {
    background-color: #2e61ad;
    width: 20vw;
    text-align: center;
    margin: 0 10px;
    border-radius: 10px;
}
#top_nav ul li a {
    font-size: 100%;
    display: block;
    padding: 13% 5px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
}
#top_nav ul li:hover{
    background-color: #B7E2DD;
}
#contents{
    width: 90%;
    margin: 50px auto 0 auto;
    line-height: 1.8em;
}
#contents #main h2{
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 2rem;
}
#contents #main h3{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}
#contents #main h4{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}
#contents #main h5{
    font-weight: 700;
    margin: 5px 0;
}

/* 0416追加ボーダー */
/* おすすめポイントのblue */
#contents #main .rankContent .blue {
    border-left: 6px solid #2e61ad;/*左線 太さ・カラー*/
    padding: .5em 1em;/*余白*/
    position: relative;
}

#contents #main .rankContent .blue::before,
#contents #main .rankContent .blue::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
}

#contents #main .rankContent .blue::before {
    top: 0;
    width: 6px;
    height: 100%;
    background: #B7E2DD;/*左線 カラー（薄）*/
}

#contents #main .rankContent .blue::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px; /* 下線の太さ */
    background: #2e61ad;/*下線 カラー*/
}

/* 気になる点のblack */
#contents #main h5{
    border-left: 6px solid #555555;/*左線 太さ・カラー*/
    padding: .5em 1em;/*余白*/
    position: relative;
}

#contents #main h5::before,
#contents #main h5::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
}

#contents #main h5::before {
    top: 0;
    width: 6px;
    height: 100%;
    background: #ccc;/*左線 カラー（薄）*/
}

#contents #main h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px; /* 下線の太さ */
    background: #555555;
}

/* 終了 */



/* おすすめTOP 7 商品共通設定 */
#contents #main .company {
    font-size: 13px;
}
#contents #main .clear {
    font-size: 16px;
    font-weight: normal;
}
#contents #main .rankContainer {
    display: flex;
    flex-direction: column;
    max-width: 100%;
}
#contents #main .rankContainer p img {
    width: 35%;
}
#contents #main .rankContentLeft img {
    width: 80%;
    vertical-align: text-bottom;
}
#contents #main .rankContentLeft>p {
    float: left;
}
#contents #main .rankContent ul {
    list-style: disc;
    list-style-position: inside;
    margin-bottom: 20px;
}
#contents #main .rankContent li {
    margin-bottom: 5px;
}
#contents #main .rankContent li::marker {
    color: #2e61ad;
}
/* おすすめTOP 7商品名別比較表. */
#contents #main .rankTable {
    width: 100%;
    margin-top: 40px;
    height: auto;
}
#contents #main .rankTable tr {
    border-bottom: 1.5px solid #2e61ad;
}
#contents #main .rankTable th {
    width: 40%;
    height: 70px;
    vertical-align: middle;
    padding: 10px;
}
#contents #main .rankTable td {
    width: 60%;
    padding: 10px 20px;
    vertical-align: middle;
}

/* 4/17追加↓*/
#contents #main .rankTable caption {
    font-size: 1.5rem;
    font-weight: 700;
}
#contents #main .rankTable caption i {
    font-size: 1.8rem;
    color: #2e61ad;
}
/* 4/17追加↑*/


/* 先頭に戻る設定 */
#backtop{
    display: flex;
    justify-content: flex-end;
    margin: 20px 0;
}
#backtop p{
    margin: 5px;
}

/* フッター設定 */

footer{
    width: 100%;
}
#footerArea{
    display: flex;
    background-color: #2e61ad;
    justify-content: space-around;
    align-items: center;
}
#footerArea div{
    width: 45%;
}

#footerArea div img{
    width: 50%;
    align-items: center;
}
#footer_nav{
    width:50%;
    padding-bottom: 30px;

}
#footer_nav ul li a {
    display: block;
    margin-top: 10px;
    padding-top: 5px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    width: fit-content;
}
.topball {
    padding: 200px; /* クリック領域を広げる */
    cursor: pointer;
    display: inline-block;
    position: fixed; /* スクロールしても常に表示されるように */
    bottom: 20px;  /* 画面下部に配置 */
    right: 20px;  /* 右端に配置 */
  }

#footer_nav ul li a:hover{
    text-decoration: underline;
}
footer #copyright{
    text-align: center;
    color: #2d2a29;
    /* padding: 10px; */
}


@import url("https://fonts.googleapis.com/css?family=Lato:400,400i,700");

footer {
  width:100%;
  /* position:fixed; */
  /* bottom:0px */
}
footer div {
  margin: -50px 0px 0px 0px;
  /* padding:0px; */
  color: #fff;
  text-align:center;
}
svg {
  width:100%;
}
.arrow {
  stroke-width: .3px;
  stroke:#fa7299;
}
.topball {
  animation: ball 1.5s ease-in-out;
  animation-iteration-count:infinite;
  animation-direction: alternate;
  animation-delay: 0.3s;
  cursor:pointer;
}

.wave {
  animation: wave 3s linear;
  animation-iteration-count:infinite;
  fill: #2e61ad;
}
.drop {
  fill: transparent;
  animation: drop 5s ease infinite normal;
  stroke: #2e61ad;
  stroke-width:0.5;
  opacity:.6; 
  transform: translateY(80%);
}
.drop1 {
  transform-origin: 20px 3px;
}
.drop2 {
  animation-delay: 3s;
  animation-duration:3s;
  transform-origin: 25px 3px;
}
.drop3 {
  animation-delay: -2s;
  animation-duration:3.4s;
  transform-origin: 16px 3px;
}
.gooeff {
    filter: url(#goo);
}
#wave2 {
  animation-duration:5s;
  animation-direction: reverse;
  opacity: .6
}
#wave3 {
  animation-duration: 7s;
  opacity:.3;
}
@keyframes drop {
  0% {
    transform: translateY(80%); 
    opacity:.6; 
  }
  80% {
    transform: translateY(80%); 
    opacity:.6; 
  }
  90% { 
    transform: translateY(10%) ; 
    opacity:.6; 
  }
  100% { 
    transform: translateY(0%) scale(1.5);  
    stroke-width:0.2;
    opacity:0; 
  }
}
@keyframes wave {
  to {transform: translateX(-100%);}
}
@keyframes ball {
  to {transform: translateY(20%);}
}

/* アイコン */
.good {
    background-image: url(../img/good.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 2em;
}
.average {
    background-image: url(../img/average.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 2em;
}
.bad {
    background-image: url(../img/bad.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 2em;
}
/* 全体共通設定ここまで↑ */

/* トップページここから↓：担当森内 */

    /* スライダー */
    #slider {
        width: 100%;
        max-width: 830px; 
        min-width: 300px;
        height: 150px;
        margin: 50px auto 0 auto;
        overflow: hidden;
    } 
    #slider ul {
        width: 100%;
        height: fit-content;
        margin: 0;
        padding: 0;
        position: relative;
    }
    #slider ul li {
        width: 100%;
    } 
    #slider ul li img {
        width: 100%; 
        height: 100%; 
      }
        /* スライダーここまで */
    
    #top_contents {
        width: 90%;
        margin: 0 auto 200px;
    }
    #top_contents h2 {
        font-weight: bold;
        font-size: 30px;
        margin-bottom: 20px;
    }
    #top_contents h3 {
        font-weight: bold;
        font-size: 20px;
    }
    #top_contents h3 i {
        color: #2e61ad;
        padding-right: 5px;
    }
    #top_contents p {
        line-height: 1.8em;
    }
    .top_text {
        margin-top: 100px;
    }
    
    #top_contents #chart {  /* 診断チャート */
        display: block;
        width: 100%;
        max-width: 500px;
        min-width: 200px;
        height: auto;
        margin: 30px auto 0;
    }
    #chart_answer {
        width: 100%;
        max-width: 500px;
        min-width: 200px;
        display: flex;
        justify-content: space-around;
        align-items: flex-end;
        margin: 0 auto;
    }
    #chart_answer img {
        position:relative;
        top: -3px;
        width: 90%;
        min-width: 100px;
    }
    /* ホバー時に拡大 */
    #chart_answer #chart_s img {
        height: auto;
        transition: transform .6s ease; /* ゆっくり変化させる */
    }
    #chart_answer #chart_s:hover img {
        transform: scale(1.1); /* 拡大 */
    }
    #chart_answer #chart_c img {
        height: auto;
        transition: transform .6s ease; /* ゆっくり変化させる */
    }
    #chart_answer #chart_c:hover img {
        transform: scale(1.1); /* 拡大 */
    }
    #chart_answer #chart_r img {
        height: auto;
        transition: transform .6s ease; /* ゆっくり変化させる */
    }
    #chart_answer #chart_r:hover img {
        transform: scale(1.1); /* 拡大 */
    }
    
    
    #top_contents dl {
        margin: 50px 0;   
    }
    #top_contents dt {
        margin-top: 30px;
        padding-top: 50px;
        border-top: 3px dotted #B7E2DD;
        font-size: 18px;
    }
    #top_contents dd p {
        padding-left: 40px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    #top_contents .detail_button {
        text-align: right;
    }
    #top_contents dd a {
        display: inline;
    }
    #top_contents dd img {
        width: 200px;
        height: auto;
        transition: transform .6s ease; /* ゆっくり変化させる */
    }
    #top_contents dd:hover img {
        transform: scale(1.1); /* 拡大 */
    }

    /* キャニスター山内 */
    #top_adviser {
        padding: 0.5em 1em;
        margin: 2em 0;
        background: white;
        border-top: solid 5px #2e61ad;
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
        padding: 20px ;
        margin: 150px auto 150px;
        font-size: 15px;
    }
    #top_adviser p {
        margin-bottom: 20px;
    }
    #top_adviser #canystaryamauchi {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
    #top_adviser img{
        width: 10vw;
        min-width: 100px;
    }
    
    #top_adviser #yamauchi_name {
        font-size: 18px;
        width: 60%;
        margin-left: 20px;
    }
    #top_adviser #yamauchi_name span{
        border-bottom: #2e61ad 2px solid;
    }

/* トップページここまで↑：担当森内 */

/* スティック型ここから↓：担当顏 */
/* ステック掃除機の共通設定 */
#contents #main .sp {
    display: block;
}
#contents #main .pcTable_s {
    display: none;
}
.stick_wrap {
    margin: 30px auto;
}
.stick_wrap p {
    text-align: justify;
    margin-bottom: 1.5rem;
}
hr {
    border-top: 4px dotted #fa7299;
}
.photo_s {
    width: fit-content;
    height: 100%;
    text-align: center;
    margin: 20px auto;
}
.photo_s img {
    width: 100%;
}
/* 目次設定 */
/* 目次設定 */
/* 4/18目次装飾変更↓ */
#contents #main .index {
    position: relative;
    padding: 1.5em;
}
#contents #main .index:before,#contents #main .index:after{ 
    content:'';
    width: 30px;
    height: 40px;
    position: absolute;
    display: inline-block;
}
#contents #main .index:before{
    border-left: solid 0.1em #2e61ad;
    border-top: solid 0.1em #2e61ad;
    top:0;
    left: 0;
}
#contents #main .index:after{
    border-right: solid 0.1em #2e61ad;
    border-bottom: solid 0.1em #2e61ad;
    bottom:0;
    right: 0;
}
#contents #main .index ul a {
    display: block;
}
#contents #main .index ul a {
    display: block;
}
#contents #main .index ul {
    list-style-type: disc;
    margin-left: 30px;
}
#contents #main .index li {
    padding: 5px 0;
    color: inherit;
    position: relative;
}
#contents #main .index li:hover {
    color: #2e61ad;
    font-weight: 600;
}
/* 4/18目次装飾変更修了↑ */
#contents #main .index li:after{
    content: '';
    width: 0%;
    height: 2px;
    background-color: #fa7299;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .3s linear;
}
#contents #main .index li:hover::after {
    width:50%;
}
#contents #main .index ol {
    list-style-type: decimal;
    padding-left: 25px;
}
.group2_s .photo_s {
    width: 78%;
}
/* 4/18追加↓ */
/* こんな人におすすめ */
.group3_s .cardcontainer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.group3_s .cardcontainer div {
    flex-basis:calc((100% - 20px) / 2);
    max-width:calc((100% - 20px) / 2);
    margin: 2em 0;
    /* 4/18-1変更↓ */
    height: 32vh;
     /* 4/18-1変更↑ */
    border: 2px solid #2e61ad;
    padding: 5%;
    position: relative;
}
.group3_s .cardcontainer .cardtitle {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 10px;
    line-height: 1;
    font-size: 1.8em;
    background: #ffffff;
    color: #fa7299;
    font-weight: bold;
}
.group3_s .cardcontainer div p {
    margin: 0;
}
.group3_s .cardcontainer div p:first-of-type {
   font-weight: 700;
}
/* 4/18追加修了↑ */
/* ステック掃除機の選び方 */
/* 4/18追加↓ */
.group4_s .card-container {
  margin: 25px auto 0;
  position: relative;
  width: 100%;
}
.group4_s .card {
  background-color: #fff;
  padding: 30px;
  position: relative;
  box-shadow: 0 0 5px rgba(75, 75, 75, .07);
  z-index: 1;
}
.group4_s .card-media {
    max-width: 90%;
}
.group4_s .card-body {
  display: inline-block;
  /* 4/18-1変更↓ */
  width: 100%;
   /* 4/18-1変更↑ */
}
.group4_s .card-number {
    margin-top: 15px;
}
.group4_s .card-circle {
  border: 1px solid #fa7299;
  background-color: #fa7299;
  color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  line-height: 28px;
  height: 30px;
  text-align: center;
  width: 30px;
}
.group4_s .card-description {
  display: inline-block;
  font-weight: 300;
  line-height: 22px;
  margin: 10px 0;
}
.group4_s .card-shadow {
  background-color: #fff;
  box-shadow: 0 2px 25px 2px rgba(0, 0, 0, 1), 0 2px 50px 2px rgba(0, 0, 0, 1), 0 0 100px 3px rgba(0, 0, 0, .25);
  height: 1px;
  margin: -1px auto 0;
  width: 80%;
  z-index: -1;
}
/* 4/18追加修了↑ */
/* 紙パック式とサイクロン式の違う */
#contents #main .vacumm_check div {
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding-left: 29%;
    margin: 10px auto;
}
#contents #main .vacumm_check img {
    width: 70%;
}
#contents #main .vacumm_check table {
	border-collapse:collapse;
    width: 100%;
    font-size: 15px;
}
#contents #main .vacumm_check thead {
    background-color: #B7E2DD;
}
#contents #main .vacumm_check table th,
#contents #main .vacumm_check table td{
    border: 1px solid #333333;
    padding: 10px;
    vertical-align: middle;
    text-align: center;
    line-height: normal;
}
#contents #main .vacumm_check thead th:nth-child(n+2):nth-child(-n+3) {
    width: 38%
}
#contents #main .vacumm_check tbody th {
    width: 20%;
}
#contents #main .vacumm_check tbody td {
    padding-top: 40px;
}
#contents #main .vacumm_check tbody .good,
#contents #main .vacumm_check tbody .average,
#contents #main .vacumm_check tbody .bad{
    background-position: center 10%;
} 

/* 4/17追加ステック掃除機おすすめTOP 7 各商品設定 */
/* 4/18-1マージン変更↓ */
#stick_rank1, #stick_rank2, #stick_rank3, #stick_rank4, #stick_rank5,
#stick_rank6, #stick_rank7 {
    margin-bottom: 60px;
}
/* 4/18-1マージン変更↑ */

/* 外部リンクボタン */
#contents #main .rankContentLeft .link_btn {
    min-width: 65%;
    margin: 5% 0;
    float: right;
}
#contents #main .rankContentLeft .btn {
    display: block;
    text-align: center;
    font-weight: bold;
    transform: translate3d(0px, 0%, 0px);
    transition-delay: 0.6s;
    overflow: hidden;
    position: relative;
    background: #FFFFFF;
    border: 2px solid #2e61ad;
    border-radius: 10px;
    padding: 2% 0;
}
#contents #main .rankContentLeft .btn:before,
#contents #main .rankContentLeft .btn:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transition: all 0.6s ease;
}
#contents #main .rankContentLeft .btn:before {
    background: #2e61ad;
    border-radius: 50% 50% 0 0;
    transform: translateY(100%) scaleY(0.5);
}
#contents #main .rankContentLeft .btn:after {
    background: #FFFFFF;
    border-radius: 0;
    transform: translateY(0) scaleY(1);
}
#contents #main .rankContentLeft .btn div {
    position: relative;
    top: 3px;
    left: 0px;
    width: 100%;
    height: 32px;
    overflow: hidden;
}
#contents #main .rankContentLeft .btn span {
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 1;
    text-align: center;
    transition: transform 0.5s ease;
}
#contents #main .rankContentLeft .btn span:first-child {
    color: #FFFFFF;
    transform: translateY(24px);
}
#contents #main .rankContentLeft .btn span:last-child {
    /* color: #1E0F21; */
    color: #2e61ad;
    transform: translateY(0);
}
#contents #main .rankContentLeft .btn:hover {
    background: #2e61ad;
    transition: background 0.2s linear;
    transition-delay: 0.6s;
    color: #FFFFFF;
}
#contents #main .rankContentLeft .btn:hover:after {
    border-radius: 0 0 50% 50%;
    transform: translateY(-100%) scaleY(0.5);
    transition-delay: 0;
}
#contents #main .rankContentLeft .btn:hover:before {
    border-radius: 0;
    transform: translateY(0) scaleY(1);
    transition-delay: 0;
}
#contents #main .rankContentLeft .btn:hover span:first-child {
    transform: translateY(0);
}
#contents #main .rankContentLeft .btn:hover span:last-child {
    transform: translateY(-32px);
}
/* 全体比較まとめ */
#stick #contents #main .rank-all_s .name {
    font-size: 11px;
}
/* 4/17追加↓ */
#contents #main .rank-all_s caption {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}
#contents #main .rank-all_s caption i {
    font-size: 1.8rem;
    color: #2e61ad;
}
/* 4/17追加↑ */
#contents #main .rank-all_s th, 
#contents #main .rank-all_s td {
    font-size: 14px;
    line-height: normal;
    border: 1px solid #8a8a8a;
    vertical-align: middle;
    text-align: center;
    padding: 5px;
}
/* 4/18-1貼り直し↓ */
#contents #main .rank-all_s img {
    width: 100%;
}
#contents #main .rank-all_s .photo img {
    margin-bottom: 10px;
}
#contents #main .rank-all_s .photo span{
    font-size: 13px;
    font-weight: 700;
    color: #2e61ad;
}
#contents #main .rank-all_s .photo a:hover {
    text-decoration: underline #2e61ad;
}
#contents #main .rank-all_s .number i {
    font-size: 1.2rem;
}
#contents #main .rank-all_s .number {
    width: 10%;
}
#contents #main .rank-all_s .photo {
    width: 35%;
}
#contents #main .rank-all_s thead th {
    background-color: rgb(233, 233, 233);
}
/* 4/18-1貼り直し↑ */
/* 4/17ビデオ追加 */
#contents #main .videoContainer {
    max-width: 1440px;
    margin-top: 30px;
}
#contents #main .videoContainer .video_wrap h3 {
    margin-bottom: 10px;
}
#contents #main .video_wrap>p {
    margin-bottom: 30px;
}
#contents #main .video_wrap>p i {
    font-size: 1.5rem;
    color:#FF0000;
    vertical-align: middle;
    margin-left: 10px;
}
#contents #main .videos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    min-height: 330px;
}
#contents #main .singlevideo {
    padding-bottom: 20px;
    max-width: 100%; 
}
#contents #main .singlevideo iframe {
    max-width: 90%;
    max-height: 230px;
    margin-bottom: 10px;
}
#contents #main .singlevideo .video_name {
    line-height: normal;
    font-weight: 700;
    margin-bottom: 5px;
}
/* 4/17ビデオ追加↑ */
/* スティック型ここまで↑：担当顏 */

/* キャニスター型ここから↓：担当山内 */

.eyecatch_c{
    text-align: center;
}
#main .eyecatch_c img{
    width: 100%;
    margin: 10px auto;
}
.leadText_c{
    width: 100%;
    margin: 10px auto;
    line-height: 2em;
}

#canystar_caption{
    width: 90%;
    margin: 10px auto;
}
#canystar h3 {
    margin: 10% 0 5%;
}
#canystar .index.stick_wrap h3 {
    margin: 0;
}
.c_imge{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 80px;
}
.c_imge img{
    width: 90%;
}
#melitto{
    font-size: 15px;
    margin-bottom: 20px;
    width: 90%;
    margin: 0 auto 50px;
}
#melitto thead{
    background-color: #B7E2DD;
}

#melitto tr th {
    border: 1px solid #333333;
    width: 50%;
    text-align: center;
    margin-left: 10px;
}
#melitto tbody tr {
    height: 130px;
}

/* 4/17変えた */
#melitto tr td{
    border: 1px solid #333333;
    font-size: 14px;
    text-align:left;
}
#melitto tr td span{
    font-weight: bold;
}
#melitto td .good,#melitto td .bad{
    padding-left: 30px;
}
/* 終了 */

#coodless_c{
    width: 90%;
    margin: 0 auto;
}
#coodless_c img{
    max-width: 80%;
    display: block;
    margin: 0 auto;
}
#mukifumuki{
    width: 90%;
    margin: 100px auto;
}

#mukifumuki p {
    margin-bottom: 30px;
}
#hikaku_c {
    margin-bottom: 100px;
}
#hikaku_c p {
    margin-top: 30px;
}
#ranktitle_c{
    width: 90%;
    margin: 0 auto;
}
/* ranking */
#rank h3{
    font-size: 20px;
}
#rank h3:hover{
    text-decoration: underline;
}
#rank h4{
    font-size: 18px;
    margin: 15px 0;
    border-bottom: 1px dotted #2e61ad;
}
#ranking1_c,#ranking2_c,#ranking3_c,#ranking4_c,#ranking5_c,#ranking6_c,#ranking7_c{
    width: 90%;
    margin: 100px auto;
}
#canystar #contents #main .pcTable_c {
    font-size: 1.5rem;
    font-weight: 700;
}
#canystar #contents #main .pcTable_c i {
    font-size: 1.8rem;
    color: #2e61ad;
    margin-top: 5%;
}
#contents #main .rankTable {
    margin-top: 0;
    font-size: 13px;
}
#canystar  #contents #main .rankTable th {
    height: auto;
    width: 55%;
    padding-right: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 1.5em;
}
#canystar  #contents #main .rankTable td {
    padding-right: 0;
    padding-left: 5px;
}
.amazon_c{
    width: 90%;
    text-align: right;
}
.amazon_c img{
    width: 30%;
    margin-bottom: 30px;
}
.star_c img{
    width: 30%;
}
.rankdetail_c{
    margin-top: 50px;
}

.rankdetail_c img{
    width: 100%;
    margin-bottom: 100px;
}
/* ------------------. */
#matome_c{
    width: 90%;
    margin: 0 auto;
    margin-bottom: 100px;
}

#table_c{
    margin-top: 100px;
    width: 100%;
}
#table_c img{
    max-width: 100%;
}
#table_c td,#table_c th {
    font-size: 14px;
    line-height: normal;
    border: 1px solid #8a8a8a;
    vertical-align: middle;
    text-align: center;
    padding: 5px;
}
#table_c td img {
    width: 100%;
}
#table_c span {
    font-size: 13px;
    font-weight: 700;
    color: #2e61ad;
    width: 30%;
}
#table_c span a:hover {
    text-decoration: underline #2e61ad;
}
#table_c .number {
    width: 10%;
}

/* 4/17追加 */
#table_c .number i {
    font-size: 1.8rem;
}
#table_c .photo {
    width: 30%;
}
#table_c .rate {
    width: 20%;
}
/* 終了 */

#table_c thead th {
    background-color: rgb(233, 233, 233);
}


/* キャニスター型ここまで↑：担当山内 */

/* ロボット掃除機ここから↓：担当棚橋 */

#robot h3{
    margin: 10% 0 5%;
}

#robo_r p{
    padding: 3% 0;
}

.main_r{
    text-align: center;
}

.start_r{
    width: 90%;
    margin: 0 auto;
}

#main .main_r img{
    width: 90%;
}

#robot #main h2{
    font-size: 30px;
    margin: 5% 0;
}

/* 目次 */
#robot .index.stick_wrap h3{
    margin: 0;
}

#robot .index.stick_wrap p{
    margin: 20px 0 5px;
}


/* ロボット掃除機とは？ */
#robo_r{
    width: 90%;
    margin: 0 auto;
}

#merit_r{
    width: 90%;
    margin: 0 auto;
}

#kinds_r{
    width: 90%;
    margin: 0 auto;
}

/* 4/18video追加 */
.video_r{
    width: 90%;
    margin:0 auto;
}

.video_r .youtube_r {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 のアスペクト比 */
    height: 0;
    overflow: hidden;
    margin: 50px auto 100px;
    width: 100%;
}

.video_r .youtube_r iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;

}

.video_r .videocoment_r{
    margin-top: 50px;
    font-size: 18px;
    font-weight: bold;
}

.video_r i {
    font-size: 1.5rem;
    color:#FF0000;
    vertical-align: middle;
    margin-left: 10px;
}


/* テーブルの作成*/
.table_robo1{
    table-layout:fixed;
    width: 100%;
    border-collapse: collapse;
}

.table_robo1 thead th, .table_robo1 tbody td,.table_robo2 thead th, .table_robo2 tbody td {
	border: 1px solid #333333;
    vertical-align: middle;
    padding: 10px;
}

.table_robo1 td .good,.table_robo1 td .bad{
    padding-left: 40px;
}

.table_robo1 thead,.table_robo2 thead{
    background-color: #B7E2DD;
}


/* 表の追加終了！！！ */

.table_comment{
    margin: 10% 0;
}

#roborank h3{
    font-size: 20px;
}

#robot h4{
    font-size: 18px;
    margin: 100px 0;
    border-bottom: 1px dotted #2e61ad;
}

/*トップ1～7の画像サイズ0416変更 */
#robot #main .rank_img{
    width: 70%;
}
/* 0416変更終了 */

/* 04/18追加 */
#robot #contents #main .pcTable_c {
    font-size: 1.5rem;
    font-weight: 700;
}
#robot #contents #main .pcTable_c i {
    font-size: 1.8rem;
    color: #2e61ad;
    margin-top: 5%;
    padding-right: 10px;
}
#robot #contents #main .rankTable {
    margin-top: 0;
}

#robot .rankContainer .rankContentLeft p img{
    padding-left: 10px;
}


/* 04/18追加終了 */

/* ランキング終わりのコメント */

#main .last_r{
    margin: 5% 0 5% 0;
}

/* 5/1追加 */
#ranktotal_r i {
    font-size: 1.8rem;
    color: #2e61ad;
}
/* 追加終了 */



/* 番外編 */

#sidestory_r{
    width: 100%;
    margin: 10% auto;
}

/* 外枠の水色 */
#sidestory_r{
    position: relative;
    box-shadow: 0px 0px 0px 3px #B7E2DD;
    border: dashed 2px #B7E2DD;
    padding: 0.2em 0.5em;
    color: #454545;
}
#sidestory_r:after{
    position: absolute;
    content: '';
    right: -7px;
    top: -7px;
    border-width: 0 15px 15px 0;
    border-style: solid;
    border-color: #2e61ad #fff #2e61ad;
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
}
#sidestory_r p {
    padding: 0 10%;
    margin-top: 50px;
}

/* 外枠終了 */

#sidestory_r h3{
    padding: 30px 20px;
    width: 90%;
    margin: 10% auto;
}

#sidestory_r .siderank_r span{
    font-size: 15px;
}


/* 番外編の内枠 */

.box-010 {
    position: relative;
    width: 60%;
}

.box-010 span{
    position: absolute;
    top: -15px;
    transform: translateX(-.3em) rotate(-5deg);
    padding: .5em 2em;
    border-right: 2px dotted rgb(0 0 0 / 10%);
    border-left: 2px dotted rgb(0 0 0 / 10%);
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    background-color: rgb(255 255 255 / 40%);
    font-weight: 600;
    margin-left: 10px;
}

/* チリトリーの画像 */
#sidestory_r .sidestory_rogo img{
    width: 7%;
    margin: 0 10px;
}

#sidestory_r .nintendo_img{
    margin: 5% 0 10%;
    text-align: center;
}

#sidestory_r .nintendo_img img{
    width: 50%;
}

#sidestory_r .nintendo_coment{
    margin-bottom: 15%;
}

/* ロボット掃除機ここまで：担当棚橋 */

/* スライダー用メディアクエリ調整：↓担当森内 */
@media screen and (min-width:400px){
#slider {
    height: 200px;
}
}
@media screen and (min-width:500px){
#slider {
    height: 230px;
}
}
@media screen and (min-width:600px){
#slider {
    height: 260px;
}
}
@media screen and (min-width:640px){
#slider {
    height: 300px;
}
}
/* スライダー用メディアクエリ調整：↑担当森内 */


/* PC用メディアクエリ */
@media screen and (min-width:800px){
    /* 全体共通設定ここから↓ */
   body {
    font-size: 17px;
   }
   body #Area {
    width: 80%;
   }
   #contents #main h2 {
    font-size: 30px;
    line-height: 1.5em;
   }
   #contents #main h3 {
    font-size: 25px;
    line-height: 1.5em;
   }
   header, nav, #contents {
    width: 85%;
    margin: 20px auto;
   }
   header img {
    width: 40%;
   }
   #top_nav {
    width: 100%;
    display: block;
    height: 63px;
    background-color: #ffffff;
   }
   #top_nav ul {
    max-width: 880px;
    height: 100%;
    display: flex;
    justify-content: inherit;
    margin: 0 auto;
   }
   #top_nav ul li a {
    font-size: 100%;
    display: block;
    height: 100%;
    padding: 10% 0;
    line-height: normal;
   }
   /* PC SP切り替え */
.pc {
    display: block;
}
.sp {
    display: none;
}
   /* おすすめTOP 7 商品共通設定 */
   #contents #main .rankContainer {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    min-height: 460px;
    }
    #contents #main .rankContainer p img {
        min-width: 50%;
        height: auto;
    }
    #contents #main .rankContentLeft {
        flex-basis: 45%;
    }
    #contents #main .rankContentLeft>img {
        width: 100%;
        height: auto;
    }
    #contents #main .rankContent {
        flex-basis: 50%;
        margin-left: 2rem;
    }
    #contents #main .rankContent ul li {
        font-size: 15px;
        margin-bottom: 5px;
    }
    /* 商品TOP7別比較表 */
    #contents #main .rankTable {
        display: flex;
        font-size: 14px;
        line-height: 1.2rem;
    }
    #contents #main .rankTable .tbody_left {
        flex-basis: 100%;
        align-items: center;
    }
    #contents #main .rankTable .tbody td {
        width: 40%;
    }
    #contents #main .rankTable .tbody_right {
        flex-basis: 100%;
        align-items: center;
    }
    #contents #main .rankTable .tbody_right td {
        width: 40%;
    }
    /* フッター設定 */
    #footerArea div img {
        width: 70%;
    }
    #footer_nav{
        padding-bottom: 0;
    }

    #footer_nav ul li a {
        text-align: center;
        width: 80%;
    }
    footer div {
        margin: -110px 0px 0px 0px;
        color: #fff;
        text-align:center;
      }



    /* 全体共通設定ここまで↑ */
    /* トップページここから↓：担当：森内 */
        
    #top_adviser #yamauchi_name span{
        padding-right: 30%;
    }
    #top_adviser #canystaryamauchi {
        align-items: center;
    }
     /* トップページここまで↑：担当：森内 */

    /* スティック掃除機ここから↓：担当：顏 */
    /* 4/18追加↓ */
    #stick section {
        width: 90%;
    }
    #stick #contents #main .index {
        width: 90%;
    }
    /* 4/18追加修了↑ */

    #contents #main .sp {
        display: none;
    }
    #contents #main .pcTable_s {
        display: block;
    }
    .stick_wrap .photo_s {
        text-align: center;
    }
    .stick_group1 {
        width: 100vw;
        height: 100vw;
    }
    .stick_group1 .photo_s img,
    .hepa_s .photo_s img {
        width: 100%;
    }
    .group2_s .photo_s {
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    }
    /* 4/18追加↓ */
    .group3_s .cardcontainer {
        flex-wrap: nowrap;
    }
    .group3_s .cardcontainer div {
        flex-basis:calc((100% - 20px) / 3);
        max-width:calc((100% -20px) / 3);
        /* 4/18-1変更↓ */
        height: 45vh;
         /* 4/18-1変更↑ */
    }
    .group3_s .cardcontainer div .cardtitle {
        font-size: 2em;
        top: -19px;
    }
    .group4_s .card_wrap {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .group4_s .card-container {
        flex-basis: 50%;
        max-width: 650px;
        margin: 25px 0 0;
    }
    .group4_s .card {
        display: flex;
        width: 100%;
        min-height: 277px;
        align-items: center;
    }
    .group4_s .card-media {
        width: 90%;
        height: 150px;
        object-fit: cover;

    }
    .group4_s .card-body {
        margin-left: 10px;
        font-size: 14px;
        width: 310px;
    }
    .group4_s .card-number {
        margin-top: 10px;
    }
    .group4_s .card-description {
    display: inline-block;
    font-weight: 300;
    line-height: 22px;
    margin: 10px 0;
    }
    .group4_s .card-shadow {
    background-color: #fff;
    box-shadow: 0 2px 25px 2px rgba(0, 0, 0, 1), 0 2px 50px 2px rgba(0, 0, 0, 1), 0 0 100px 3px rgba(0, 0, 0, .25);
    height: 1px;
    margin: -1px auto 0;
    width: 80%;
    z-index: -1;
    }
    /* 4/18追加修了↑ */
    /* TOP7商品詳細情報 */
    /* 4/18-1マージン追加↓ */
    #stick_rank1, #stick_rank2, #stick_rank3, #stick_rank4, #stick_rank5, #stick_rank6, #stick_rank7 {
        margin-bottom: 100px;
    }
/* 4/18-1マージン追加↑ */ 
        #contents #main .pcTable_s {
            font-size: 14px;
            margin-top: 30px;
            width: 100%;
        }
        #contents #main .pcTable_s tbody tr {
            border-bottom: 1px solid #2e61ad;
        }
        #contents #main .pcTable_s th {
            padding: 10px;
            width: 25%;
            vertical-align: middle;
        }
        #contents #main .pcTable_s td {
            width: 30%;
            padding: 20px;
            vertical-align: middle;
        }

        /* 4/17追加↓ */
        #stick #contents #main .pcTable_s caption {
            font-size: 1.5rem;
            font-weight: 700;
        }
        #stick #contents #main .pcTable_s caption i {
            font-size: 1.8rem;
            color: #2e61ad;
        }
        /* 4/17追加終了 */

        /* 外部リンクボタン */
        #contents #main .rankContentLeft .link_btn {
            width: 180px;
            margin: 5% 0;
            float: right;
        }
        #contents #main .rankContentLeft .btn {
            font-size: 14px;
            padding: 0;
        }
        #contents #main .rankContentLeft>p {
            float: left;
        }
        /* 全体比較表 */
        /* 4/18-1貼り直し↓ */
        #contents #main .rank-all_s .number {
            max-width: 20%;
        }
        #contents #main .rank-all_s .number i {
            font-size: 1.8rem;
        }
        #contents #main .rank-all_s .photo {
            max-width: 20%;
        }
        /* 4/18貼り直し↑ */
         /* 4/17ビデオ追加 ↓*/
         #contents #main .video_wrap>p {
            margin-bottom: 15px;
        }
        #contents #main .videos {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        #contents #main .singlevideo {
            min-width: 50%;
        }
        #contents #main .singlevideo iframe {
            width: 100%;
        }
        #contents #main .singlevideo p {
            font-size: 14px;
        }
         /* 4/17ビデオ追加 ↑*/
    /* スティック掃除機ここまで↑：担当：顏 */

    #slider {
        height: 355px;
    } 
    /* PC：キャニスター掃除機ここから↓：担当：山内 */
    #table_c .photo {
        width: 23%;
    }
    #coodless_c img{
        max-width: 40%;
    }
    #melitto thead .good,#melitto thead .bad{
        background-position: 10% bottom;
    }
    #melitto tr td{
        padding: 0 30px;
        vertical-align: middle;
    }
    #canystar  #contents #main .rankTable th {
        height: 70px;
        width: 40%;
    }
    /* PC：キャニスター掃除機ここまで↑：担当：山内 */
    
    /* PC：ロボット掃除機ここから↓：担当：棚橋 */

    /* 0416トップ1～7の掃除機サイズ変更 */
    #robot #main .rank_img{
    width: 100%;
    }
    /* 0416変更終了 */

    .rankContentLeft p{
        font-size: 15px;
    }

    #sidestory_r .siderank_r{
        padding: 30px 20px;
        width: 80%;
        margin: 10% auto;
    }

    #sidestory_r .siderank_r span{
        font-size: 18px;
    }
    /* PC：ロボット掃除機ここまで↑：担当：棚橋 */
}