@charset "shift_jis";
/*======================

アイリスオーヤマ公式通販サイト アイリスプラザ
au PAYマーケット店
PC用CSS

=======================*/

/* スタイルリセット
================================ */
/* http://meyerweb.com/eric/tools/css/reset/
	v2.0 | 20110126
	License: none (public domain)
*/

#guide-kadenset *,
#guide-kadenset *::before,
#guide-kadenset *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#guide-kadenset header,
#guide-kadenset footer,
#guide-kadenset nav,
#guide-kadenset section,
#guide-kadenset article,
#guide-kadenset main,
#guide-kadenset aside,
#guide-kadenset figure,
#guide-kadenset figcaption {
    display: block;
}

#guide-kadenset ol,
#guide-kadenset ul,
#guide-kadenset li {
    list-style: none;
    list-style-type: none;
}

#guide-kadenset img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

#guide-kadenset a {
    color: inherit;
    text-decoration: none;
    transition: 0.2s;
}

#guide-kadenset a:hover {
    opacity: 0.5;
}

#guide-kadenset .no,
#guide-kadenset .pc_none{
    display: none !important;
}

/* ここから追加
================================ */
/* ベース */
#guide-kadenset {
    width: 900px;
    margin: 0 auto;
    font-size: 22px;
    font-family: "Noto Sans JP","Jost", sans-serif;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: #000;
    background-color: #fff;
}

#guide-kadenset img {
    width: 100%;
}

/* 共通 カラム
================================ */
#guide-kadenset ul[class^="col_"]{
    display: flex;
    flex-wrap: wrap;
    gap: 11px 1%;
}

#guide-kadenset ul.col_1 > li{
    width:100%;
}

#guide-kadenset ul.col_2 > li{
    width: calc(calc(100% - 1%) / 2);
    position: relative;
}

#guide-kadenset ul.col_3 > li{
    width: calc(calc(100% - 2%) / 3);
}

#guide-kadenset ul.col_4 > li{
    width: calc(calc(100% - 3%) / 4);
}

#guide-kadenset ul.col_5 > li{
    width: calc(calc(100% - 4%) / 5);
}

/* タブ
================================ */
#guide-kadenset .tab-wrap >ul {
    display: flex;
    position: -webkit-sticky;
    position:sticky;
    top: 0;
    background: #fff;
    z-index: 99;
}

#guide-kadenset .tab-btn {
    padding: 30px 0;
    text-align: center;
    cursor: pointer;
    border: solid 3px #333;
    background: #eee;
}

#guide-kadenset .tab-btn.show {
    background: #333;
    color: #fff;
}

#guide-kadenset .tab-contents {
    display: none;
}

#guide-kadenset .tab-contents.show {
    display: block;
    padding: 20px 0 0;
}