@charset "UTF-8";

/*--------------------------default*/
html {
    margin: 0;
    padding: 0;
    font-size: 62.5%;
}

.center {
    text-align: center;
    margin: 0 auto;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.just {
    text-align: justify;
}

/*==============================All*/
body {
    margin: 0;
    padding: 0;
    color: #323333;
    font-family: "Lato", source-han-sans-japanese, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif !important;
    font-size: 1.4rem;
    text-align: left;
    line-height: 2rem;
    -webkit-text-size-adjust: 100%;
    background: -moz-linear-gradient(to top, #ebf7f7 0%, #fff 100%) fixed;
    background: -webkit-linear-gradient(to top, #ebf7f7 0%, #fff 100%) fixed;
    background: linear-gradient(to top, #ebf7f7 0%, #fff 100%) fixed;
}

p {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

a {
    text-decoration: none;
    color: #21629d;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style-type: none;
    padding: 0;
}

dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

dt {
    font-weight: normal;
}

table {
    border-collapse: collapse;
}

figure {
    margin: 0;
    padding: 0;
}

.pc_width-s95 {
    width: 95%;
}

.pc_width-s90 {
    width: 90%;
}

.pc_width-s85 {
    width: 85%;
}

.txt-l105 {
    font-size: 1.05em;
}

.txt-l110 {
    font-size: 1.1em;
}

.txt-l115 {
    font-size: 1.15em;
}

.txt-l120 {
    font-size: 1.2em;
}

.txt-l125 {
    font-size: 1.25em;
}

.txt-l130 {
    font-size: 1.3em;
}

.txt-s095 {
    font-size: 0.95em;
}

.txt-s090 {
    font-size: 0.9em;
}

.txt-s085 {
    font-size: 0.85em;
}

.txt-s080 {
    font-size: 0.8em;
}

.txt-s075 {
    font-size: 0.75em;
}

.txt-s070 {
    font-size: 0.7em;
}

.bold {
    font-weight: bold;
}

/* スペーサー */
.space_05 {
    margin: 0.5em auto;
}

.space_10 {
    margin: 1em auto;
}

.space_15 {
    margin: 1.5em auto;
}

.space_20 {
    margin: 2em auto;
}

.space_25 {
    margin: 2.5em auto;
}

.space_30 {
    margin: 3em auto;
}

.space_40 {
    margin: 4em auto;
}

.space_50 {
    margin: 5em auto;
}

.space_100 {
    margin: 10em auto;
}

.color_red {
    color: #e50012;
}

.color_orange {
    color: #ed7133;
}

.color_pink {
    color: #e85298;
}

.color_green {
    color: #16ae67;
}

.color_lightblue {
    color: #008cd6;
}

.color_blue {
    color: #1D2088;
}

/* 上付き文字 */
sup {
    font-size: 0.6em;
    margin: 0.15em;
    line-height: 0;
}

.inner {
    margin: 0 auto;
    width: 100%;
    max-width: 650px;
    background-color: #fff;
    padding-bottom: 50px;
}

#index .inner {
    padding: 2em 0 0;
    background-color: #fefaf6;
}

#guide .inner,
#terms .inner,
#commercial-transaction .inner {
    padding-bottom: 5px;
}

main {
    display: block;
    text-align: center;
}

/* テキストのシャギーを防ぐ指定 */
.text-adjust {
    transform: rotate(0.05deg);
    -ms-transform: rotate(0.05deg);
    -webkit-transform: rotate(0.05deg);
}

/* TOPに戻るボタン */
#pageTop a {
    display: block;
    width: 40px;
    height: 40px;
    position: fixed;
    right: 40px;
    bottom: 45px;
    opacity: 0.85;
    color: #fff;
    background: #de5363;
    font-size: 32px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
}

#index #pageTop a,
#guide #pageTop a,
#terms #pageTop a,
#commercial-transaction #pageTop a {
    bottom: 25px;
}

/* アンカーポイント */
.anchor_15 {
    display: block;
    padding-top: 15px;
}

.anchor_45 {
    display: block;
    padding-top: 45px;
}

/* scroll_up ｜下から上にふわっと表示 */
.scroll_up {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}

.scroll_up.on {
    transform: translateY(0);
    opacity: 1;
}

.scroll_up2 {
    transition: 0.8s ease-in-out;
    transform: rotate(0.05deg) translateY(30px);
    opacity: 0;
}

.scroll_up2.on {
    transform: rotate(0.05deg) translateY(0);
    opacity: 1;
}

/* 期間限定表示・非表示 */
.timerHidden {
    display: none;
}

.timerVisible {
    display: block;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 520px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }
}

/*---------------------------ヘッダー*/

header {
    margin: 0 auto;
}

nav {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    height: 3em;
    background: #46706f;
    color: #fff;
}

/* パンくずリスト　ここから */
.breadcrumb {
    margin: 0.1em;
    padding: 0.8em 1em;
    list-style: none;
    overflow: hidden;
}

.breadcrumb li {
    display: table-cell;
    /*横に並ぶように*/
    list-style: none;
}

.breadcrumb li::after {
    /* >を表示*/
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    content: "\f105";
    padding: 0 0.5em 0 0.3em;
    color: #fff;
}

.breadcrumb li:last-child::after {
    content: "";
}

.breadcrumb li a {
    display: inline;
    text-decoration: none;
    color: #fff;
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

/* パンくずリスト　ここまで */

/*---------------------------フッター（inner内・メイン下TEL）*/

.inner-footer {
    margin: auto;
    background: #444344;
    text-align: center;
    color: #fff;
    font-family: m-plus-rounded-1c, sans-serif;
    font-weight: 500;
}

.inner-footer p {
    transform: rotate(0.05deg);
    -ms-transform: rotate(0.05deg);
    -webkit-transform: rotate(0.05deg);
}

.inner-footer a {
    color: #fff;
}

.inner-footer .inquiry,
.inner-footer .rule {
    padding: 1em 0em;
    line-height: 1em;
}

.inner-footer .inquiry a {
    display:block;
    margin: 0.5em auto 0.25em;
    font-size: 1.5em;
    letter-spacing: 0.01em;
}

.inner-footer .inquiry a::before {
    position:relative;
    content: 'ネットに関するご相談';
    font-size: 0.5em;
    margin-right: 0.5em;
    top:-2px
}

.inner-footer .rule {
    border-top: 2px solid #fefaf6;
    font-size: 0.9em;
}

.rule-list {
    display: flex;
    justify-content:center;
}

.rule-list li {
    padding: 0 0.5em;
}


/*---------------------------フッター（メイン下）*/

/* フッターメニュー */
#footermenu {
    width: 100%;
    height: 2.5em;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9998;
    text-align: center;
    background-color: #46706f;
    box-shadow: 3px 0 3px #aaa;
    opacity: 0.95;
}

#footermenu ol,
ul {
    list-style-type: none;
    width: 100%;
    margin: auto;
    padding: 0;
}

#footermenu ul {
    display: flex;
    max-width: 650px;
}

#footermenu li {
    padding: 0.8rem 0 1rem;
    border-left: 1px solid #ddd;
    text-align: right;
}

#footermenu li:last-child {
    border-right: 1px solid #ddd;
}

/* #footermenu li:hover {
    background: #354f4e;
} */

#footermenu li a {
    /* width: 100%; */
    display: inline-block;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.1rem;
    margin-right: 1rem;
    font-size: 1.4rem;
}

#footermenu li a:hover {
    border-bottom: 2px dotted;
}

/*-----------------------------メイン*/

.button:hover {
    opacity: 0.8;
}

.button:active {
    -webkit-transform: translate(0, 2px);
    -moz-transform: translate(0, 2px);
    transform: translate(0, 2px);
    border-bottom: none;
}

.infobox-r {
    margin: 1em auto;
    border: double 5px #d5525e;
    padding: 0.5em 1em;
    width: 75%;
    text-align: left;
}

.infobox-b {
    margin: 1em auto;
    border: double 5px #50638e;
    padding: 0.5em 1em;
    width: 75%;
    text-align: left;
}

.infobox-g {
    margin: 1.5em auto 2em;
    background: #6c717b;
    width: 82%;
    text-align: left;
}

div.contents {
    width: 90%;
    margin: 3.5rem auto;
}

div.banner {
    width: 90%;
    max-width: 550px;
    margin: 1.25em auto;
}

div.banner-l {
    width: 100%;
    margin: 1.25em auto;
}

/* メニュー */
.menulist {
    width: 90%;
    margin: 1.5em auto;
}

.menu-Container,
.menu-Container_s,
.menu-Container_ss,
.guide-Container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}

.menu-Container {
    max-width: 600px;
}

/* メニュー Sサイズ */
.menu-Container_s {
    width: 95%;
    max-width: 480px;
}

/* メニュー Sサイズ */
.menu-Container_ss {
    width: 80%;
    max-width: 450px;
}

.menu-Container p,
.menu-Container_s p,
.menu-Container_ss p {
    padding-left: 1em;
    font-size: 11px;
    text-align: left;
    line-height: 1.25em;
}

/* メニュー・ガイド（TOPページ） */
/* メニュー */
#index .menu-Container {
    width: 90%;
    max-width: 620px;
    padding: 1em 0;
}

#index .menu-Container li {
    box-sizing: border-box;
    padding: 0.75rem;
    width: calc(100% / 2);
}

#index .menu-Container li img {
    border: solid 1px #bbb;
    filter: drop-shadow(3px 3px 1px #bbb);
}

/* ガイド */
.guide-Container {
    width: 90%;
    max-width: 450px;
    padding: 2em 0;
}

.guide-Container li {
    box-sizing: border-box;
    padding: 0.5em 0;
    width: calc(100% / 3);
}

.guide-Container li img {
    width: 60%;
    max-width: 85px;
}

.guide-Container li p {
    margin: 0.75em auto;
    color: #333;
    font-family: m-plus-rounded-1c, sans-serif;
    font-weight: 600;
    font-size: 0.85em;
    line-height: 1.25em;
    transform: rotate(0.05deg);
    -ms-transform: rotate(0.05deg);
    -webkit-transform: rotate(0.05deg);
}

/* ボタン */
.button-Container,
.button-Container-l {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 100%;
}

.button-Container {
    max-width: 420px;
}

.button-Container-l {
    max-width: 500px;
}

.column1 li,
.column2 li,
.column3 li,
.column4 li {
    box-sizing: border-box;
    padding: 0.3rem;
}

/* 1列 */
.column1 li {
    width: calc(100%);
}

/* 2列 */
.column2 li {
    width: calc(100% / 2);
}

/* 3列 */
.column3 li {
    width: calc(100% / 3);
}

/* 4列 */
.column4 li {
    width: calc(100% / 4);
}

/* モーダル　ここから */
.modalArea {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modalBg {
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.9);
}

.modalWrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 550px;
    padding: 10px 15px;
    background-color: #fff;
    max-height: 85vh;
    overflow: auto;
}

.modalContents {
    margin: 1.5em auto;
    padding: 0 0.5em;
}

.modalContents h2 {
    text-align: center;
}

.modalContents h3 {
    margin: 1.5em 0.5em 0.25em;
    border-bottom: 2px solid #ccc;
}

.modalContents p {
    margin: 0 1.5em;
}

.closeModal {
    position: absolute;
    top: 0.5rem;
    right: 0.8rem;
    cursor: pointer;
    font-size: 1.8em;
}

.modalimg {
    width: 100%;
    max-width: 1000px;
}

/* モーダル　ここまで */

/* 動画（YouTube） */
.movie-title {
    width: 90%;
    margin: 2em auto -0.8em;
    border-radius: 5px;
    background: red;
    line-height: 2.25em;
}

.movie-title p {
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 1px;
    margin-right: -1px;
}

.movie {
    width: 85%;
    margin: 2.5rem auto;
    position: relative;
    padding-bottom: 55%;
}

.movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 説明書き */
.description {
    max-width: 80%;
    margin: 1rem auto;
    text-align: justify;
    font-size: 1em;
    color: #e50012;
    font-family: m-plus-rounded-1c, sans-serif;
    font-weight: 500;
    transform: rotate(0.05deg);
    -ms-transform: rotate(0.05deg);
    -webkit-transform: rotate(0.05deg);
}

/* TOPページ（home）に戻る */
.return {
    margin: 2em auto;
}

/* 注釈 */
.annotation {
    width: 85%;
    margin: 1rem auto;
    text-align: justify;
    font-family: "メイリオ", "Meiryo", sans-serif;
    font-size: 1.2rem;
    color: #333;
}

.pagetop-annotation {
    width: 85%;
    margin: 1em auto;
    text-align: justify;
    font-size: 1.4rem;
    line-height: 1.4em;
    font-weight: 500;
}

.pagetop-annotation p {
    margin: 1rem auto;
}

#accessories .pagetop-annotation {
    width: 80%;
    border: solid 2px #323333;
    margin: 2em auto 3em;
    text-align: justify;
    font-size: 1.4rem;
    line-height: 1.4em;
    font-weight: 500;
}

#accessories .pagetop-annotation p {
    margin: 0 auto;
    padding: 0.75em 0.75em;
    font-weight: normal;
}

/* 見出し */
h1 {
    position: relative;
    display: inline-block;
    margin: 1em auto;
    padding: 0.5em 0.08em 0.5em 0.1em;
    font-size: 1.75em;
    font-weight: 600;
    letter-spacing: 0.02em;
}

h2 {
    width: 85%;
    margin: 1em auto 0.25em;
    padding: 0 0 0.3em 0.25em;
    border-bottom: 3px solid #ccc ;
    text-align: left;
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 0.5px;
}

h3 {
    width: 80%;
    margin: 1.5em auto 1.75em;
    padding: 0.5em 0.75em;
    background-color: #f0f0f0;
    text-align: left;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 0.5px;
}

h4 {
    margin: 1em 0.25em;
    line-height: 1.2em;
    font-family: corporate-logo-ver2, sans-serif;
    font-weight: 700;
    font-size: 2em;
}

.lead-text {
    margin: 1em 2em;
    text-align: justify;
    font-family: "メイリオ", "Meiryo", sans-serif;
    font-size: 1.6rem;
    color: #222;
}

#index .lead-text {
    margin: 2em;
}

#index .lead-text p {
    margin: 0.25em auto;
}

#index h2 {
    width: 85%;
    margin: auto;
    padding: 0.5em 1em;
    background: #444344;
    border-bottom:none;
    text-align: center;
    color: #fff;
    font-size: 1.1em;
    font-family: m-plus-rounded-1c, sans-serif;
    font-weight: 500;
}

/* 利用規約・特商法・ご利用ガイド */

.text {
    width: 80%;
    margin: 1em auto 2em;
    text-align: justify;
}

#terms .inner ol,
#commercial-transaction .inner ol {
    margin: 0 0 0 -1em;
    /* サイトに合せて調整 */
    list-style-type: none;
    counter-reset: count 0;
}

#terms .inner ol li,
#commercial-transaction .inner ol li {
    position: relative;
    margin: 0.5em auto;
}

#terms .inner ol>li:before,
#commercial-transaction .inner ol>li:before {
    content: "（" counter(count) "）";
    counter-increment: count 1;
    display: inline-block;
    margin-left: -2.5em;
    text-align: right;
    position: absolute;
    top: 0;
    left: 0;
}

#terms .inner ul li,
#commercial-transaction .inner ul li {
    list-style-type: disc;
    margin: 0.15em 0 0.15em 1.25em;
}

#guide .ttl-icon {
    width: 85px ;
    padding-top: 1em;
}

#guide .text ul li {
    position: relative;
    margin: 0.75em 0;
    padding: 0 0.25em 0 1.15em;
}

#guide .text ul li::before {
    position: absolute;
    content: '◆';
    left: 0;
}

#guide .text ul li p {
    margin: 0.25em auto;
}

#guide h3 {
    width: 82.5%;
    margin: 1.5em auto 0.5em;
    padding: 0;
    background-color: #fff;

}


/* リンクボタン */
.link_button {
    margin: 1.75em auto 2em;
}

.external-link_button {
    margin: 3em auto 2em;
}

.link_button a,
.external-link_button a {
    position: relative;
    display: flex;
    margin: 0.75em auto 1em;
    width: 85%;
    max-width: 300px;
    justify-content: center;
    align-items: center;
    padding: 0.5em 0;
    color: #00243f;
    transition: 0.2s ease-in-out;
    font-size: 1.15em;
    font-family: m-plus-rounded-1c, sans-serif;
    font-weight: 500;
    box-shadow: 4px 4px 0 #00243f;
    border-radius: 9999px;
    border: 2px solid #00243f;
}

.link_button a {
    background: #f3eee3;
}

.external-link_button a {
    background: #88d1d1;
}

.link_button a::after,
.external-link_button a::after {
    position: absolute;
    top: 50%;
    right: 15px;
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    font-size: 1.2em;
    transform: translateY(-50%);
}

.link_button a::after {
    content: "\f061";
}

.external-link_button a::after {
    content: "\f08e";
    font-size: 1em;
}

.link_button a:hover,
.external-link_button a:hover {
    background-color: #c6e7e0;
}

.link_button a:active,
.external-link_button a:active {
    -webkit-transform: translate(0, 2px);
    -moz-transform: translate(0, 2px);
    transform: translate(0, 2px);
    box-shadow: 0 0 0;
}

.link_button span,
.external-link_button span {
    display: inline-block;
    margin-left: -1em;
    color: #00243f;
    transform: rotate(0.05deg);
    -ms-transform: rotate(0.05deg);
    -webkit-transform: rotate(0.05deg);
}

/* TOPページ */
#index .mv img {
    max-width: 550px;
}

#index .mv p {
    width: 85%;
    max-width: 460px;
    margin: -0.5em auto 2em;
    text-align: justify;
    font-weight: bold;
}

/* 交換部品・別売品ページ */

.accessories_product-lineup .category {
    width: 85%;
    margin: 0 auto 1.5em;
    border-bottom: 3px solid #444344;
}

.accessories_product-lineup .category p {
    text-align: justify;
    font-size: 1.6em;
    letter-spacing: 0.5px;
    padding: 0 0 0.25em 0.25em;
    font-family: m-plus-rounded-1c, sans-serif;
    font-weight: 500;
    transform: rotate(0.05deg);
    -ms-transform: rotate(0.05deg);
    -webkit-transform: rotate(0.05deg);
}

.accessories_product-lineup ul {
    width: 80%;
    margin: 0 auto;
}

.accessories_product-lineup li {
    margin: 1em auto;
    text-align: justify;
    font-size: 1.2em;
}

/* 商品ページ */

h1.productpage-title {
    margin: 0 auto;
    width: 95%;
}

.productpage-title img {
    filter: drop-shadow(2px 2px 3px #c6c3c1);
}

.product-lineup {
    margin: 3em auto;
}

/* 商品メニューリスト */
.product-list {
    position: relative;
    width: 92.5%;
    margin: 1em auto;
    padding: 0;
}

.product-list img {
    width: 100%;
    filter: drop-shadow(2px 2px 3px #c6c3c1);
}

.product-list a {
    position: absolute;
    width: 40%;
    bottom: 8%;
    right: 8%;
    padding: 0.45em 0em;
    border-radius: 25px;
    color: white;
    background-color: #00A3DF;
    box-shadow: 3px 3px 0 #0056A8;
    font-size: 0.95em;
}

.product-list a:active {
    box-shadow: none;
    transition: all 0.3s ease;
}

.product-img {
    width: 100%;
    max-width: 580px;
    margin: auto;
}

.product-spec {
    width: 85%;
    margin: 1em auto;
}

.product-spec p {
    margin: 1em auto 0;
    text-align: justify;
}

.product-function {
    width: 100%;
    margin: auto;
}

.product-function img {
    width: 100%;
    max-width: 580px;
    margin: 1em auto;
}

.function-title {
    margin: 1.25em auto 0.25em;
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.function-subtitle {
    width: 5em;
    margin: 0.75em 0 0.15em;
    padding: 0.3em 0.5em 0.3em 0.55em;
    text-align: center;
    font-size: 1.1em;
    letter-spacing: 0.05em;
    background-color: #1D2088;
    color: #fff;
}

.function-text {
    margin: 0 auto;
    font-size: 1em;
}

.requires {
    width: 85%;
    margin: 2em auto;
}

.requires p {
    margin: 1em auto;
    text-align: justify;
    font-size: 0.85em;
    line-height: 1.5em;
}

.heads-up {
    width: 95%;
    margin: 1em auto;
    text-align: justify;
}

#ricecooker .heads-up {
    width: 90%;
}

#accessories .heads-up {
    margin-top: 0;
    max-width: 560px;
    line-height: 1.25em;
}

.heads-up-title {
    margin: 1em auto 0.25em;
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.heads-up-lead {
    margin: 0.5em auto ;
    padding: 0.5em 0.75em;
    background-color: #f0f0f0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.heads-up-text {
    margin: auto;
    padding: 0.25em 0.5em;
    font-size: 0.9em;
}

.heads-up img {
    margin: 0 auto;
}

.heads-up-link {
    width: 90%;
    margin: 1em auto;
    text-align: justify;
}

.heads-up-link a {
    display: block;
    border-bottom: 1px solid;
    margin: 0.5em auto;
}

/* 申し込みボタン */
.apply {
    margin: 2em auto;
    font-size: 1.2em;
}

.apply a {
    background-color: #e50012;
    color: #fff;
    padding: 0.75em 2.95em 0.75em 3em;
    letter-spacing: 0.05em;
}

.apply-btn a {
    display: block;
    margin: 1em auto;
    padding: 0;
    letter-spacing: 0;
}

.apply-btn a img {
    width: 82%;
    max-width: 400px;
    filter: drop-shadow(2px 2px 1px #ccc);
}


/*==============================スマホ*/

@media screen and (max-width: 520px) {

    /* TOPに戻るボタン */
    #pageTop a {
        right: 15px;
    }

    /* 説明書き */
    /* .description {
    } */

    /* 注釈 */
    .annotation {
        line-height: 1.5em;
        font-size: 1.1rem;
    }

    .pagetop-annotation {
        font-size: 1.2rem;
        line-height: 1.4em;
    }

    /* CPバナー大 */
    div.banner-l {
        width: 90%;
        margin: 1.25em auto;
    }

    /* PCのみ画像サイズS（SPは100％） */
    .pc_width-s95,
    .pc_width-s90,
    .pc_width-s85 {
        width: 100%;
    }

    #index .menu-Container li {
        width: 100%;
        margin: auto;
        padding: 0.5em;
    }

    .rule-list li {
        padding: 0 0.25em;
    }

    .product-spec,
    .product-function {
        font-size: 0.9em;
    }

}
