@charset "shift_jis";
/*======================

アイリスオーヤマ公式通販サイト アイリスプラザ
JAL Mall店
PC用CSS

=======================*/

/* スタイルリセット
================================ */
/* http://meyerweb.com/eric/tools/css/reset/
	v2.0 | 20110126
	License: none (public domain)
*/

#newlife *,
#newlife *::before,
#newlife *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body,
#newlife h1,
#newlife h2,
#newlife h3,
#newlife h4,
#newlife h5,
#newlife h6,
#newlife ul,
#newlife ol,
#newlife dl,
#newlife li,
#newlife dt,
#newlife dd,
#newlife p,
#newlife div,
#newlife span,
#newlife img,
#newlife a,
#newlife table,
#newlife tr,
#newlife th,
#newlife td {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

#newlife header,
#newlife footer,
#newlife nav,
#newlife section,
#newlife article,
#newlife main,
#newlife aside,
#newlife figure,
#newlife figcaption {
    display: block;
}

#newlife ol,
#newlife ul,
#newlife li {
    list-style: none;
    list-style-type: none;
}

#newlife img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

#newlife a {
    color: inherit;
    text-decoration: none;
    transition: 0.2s;
}

#newlife a:hover {
    opacity: 0.5;
}

#newlife .no,
#newlife .pc_none{
    display: none !important;
}

/* ここから追加
================================ */
/* ベース */
#newlife {
    width: 980px;
    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;
}

#newlife .inner_content{
    width: 900px;
    margin: 0 auto;
}

#newlife img {
    width: 100%;
}

#newlife section{
    padding: 30px 0;
}

#newlife section.title,
#newlife section.anchor,
#newlife section.fotter {
    padding: 0 0;
}

#newlife section:nth-last-child(2){
    padding-bottom: 50px;
}

/*価格プロ 税込削除*/
#newlife div.prices span > span > span {
    display: none;
}

/* 共通 見出し
================================ */
#newlife h1 {
    font-size: 0;
}

#newlife h2 {
    position: relative;
    font-size: 40px;
    text-align: center;
    color: #2d2d2d;
    padding:15px 0;
}


/*見出し画像の時*/
#newlife h2.h_img{
    padding:0 0;
    font-size:0;
    width: 100%;
    margin: 0 auto;
}

#newlife h2 small{
    font-size: 28px;
    line-height: 40px;
}

/*見出し画像の時*/
#newlife h2.h_img{
    padding:0 0;
    font-size:0;
    width: 900px;
    margin: 0 auto;
}

#newlife h3 {
    position: relative;
    font-size: 38px;
    text-align: center;
    color: #2d2d2d;
    padding:2% 0;
}

#newlife h3 small{
    font-size: 22px;
    line-height: 40px;
}


#newlife h2 img.zaburo_left,
#newlife h2 img.zaburo_right,
#newlife h3 img.zaburo_left,
#newlife h3 img.zaburo_right{
    position: absolute;
    width: 120px;
    top: 5%;
    border-radius: 100px;
}

#newlife h2 img.zaburo_left,
#newlife h3 img.zaburo_left{
    left: 16%;
}

#newlife h2 img.zaburo_right,
#newlife h3 img.zaburo_right{
    right: 16%;
}

#newlife h2 img.zaburo_left,
#newlife h2 img.zaburo_right,
#newlife h3 img.zaburo_left,
#newlife h3 img.zaburo_right{
    animation-name: decoSwing;
    animation-duration: 2s;
    animation-timing-function: steps(2, end);
    animation-iteration-count: infinite;
}

@keyframes decoSwing{
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(20deg);
    }
}

#newlife h4{
    font-size: 0;
}


#newlife p{
    color: #2d2d2d;
    font-size: 25px;
    text-align: center;
    font-weight: 600;
    padding:2% 0;
}

/* 共通 カラム
================================ */
#newlife ul[class^="col_"]{
    display: flex;
    flex-wrap: wrap;
    gap: 11px 1%;
}

#newlife ul.col_1 > li{
    width:100%;
}

#newlife ul.col_2 > li{
    width: calc(calc(100% - 1%) / 2);
    position: relative;
}

#newlife ul.col_3 > li{
    width: calc(calc(100% - 2%) / 3);
}

#newlife ul.col_4 > li{
    width: calc(calc(100% - 3%) / 4);
}

#newlife ul.col_5 > li{
    width: calc(calc(100% - 4%) / 5);
}

/*section anchor アンカー
================================ */
#newlife .toggle{
    position: fixed;
    z-index: 9999;
    bottom: 130px;
    right: 0;
    width:70px;
    height: 70px;
    background-image: linear-gradient(135deg, rgba(46, 195, 165, 1), rgba(184, 212, 80, 1));
    border-radius: 20px;
    display: block;
    border: solid 5px #fff;
    cursor: pointer;
}

#newlife .toggle span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 50%;
    width: 50%;
    height: 3px;
    background-color: #fff;
    transform: translate(-50%, -50%);
}

#newlife .toggle span:nth-of-type(1) { top: calc(50% - 10px)}
#newlife .toggle span:nth-of-type(2) { top: calc(50%);}
#newlife .toggle span:nth-of-type(3) { top: calc(50% + 10px);}
#newlife .toggle.active span:nth-of-type(1) {
    top: calc(100%/2);
    transform: translate(-50%,-50%) rotate(-45deg);
}

#newlife .toggle.active span:nth-of-type(2) { opacity: 0; }
#newlife .toggle.active span:nth-of-type(3){
    top: calc(100%/2);
    transform: translate(-50%,-50%) rotate(45deg);;
}

#newlife .side_anchor{
    position: fixed;
    height: 100vh;
    bottom: 0;
    right: -100%;
    width: 22%;
    background-image: linear-gradient(135deg, rgba(46, 195, 165, 1), rgba(184, 212, 80, 1));
    transition: 0.6s;
    z-index: 999;
    padding: 1.2vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

#newlife .side_anchor.panelactive{
    right: 0;
}

#newlife .side_anchor ul{
    width: 95%;
    margin: 0 auto 2% auto;
    background-color: #eff7d5;
    border-radius: 20px;
    padding: 5% 5% 10% 5%;
}

#newlife section.anchor div.side_anchor img{
    padding: 0 15%;
}


#newlife section.anchor div.side_anchor ul li h3{
    position: relative;
    font-size: min(1.5vw, 22px);
    color: #3b1d05;
    padding: 5% 0;
    border-bottom:dashed 1px #b7a89c;
}

#newlife section.anchor div.side_anchor ul li h3::after{
    position: absolute;
    font-family: 'Material Icons';
    content: "chevron_right";
    transform:translate(50%,-50%);
    top:50%;
    right: 10%;
}


/* section tokuten
================================ */
#newlife section.tokuten{
    padding-top: 15px;
}

#newlife section.tokuten div.summary div.summary_btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 75px;
    color: #fff;
    background-color: #000;
    cursor: pointer;
    font-weight: 600;
}

#newlife section.tokuten div.summary dl{
    padding: 2%;
    background-color: #fff;
    border: solid 1px #000;
}

#newlife section.tokuten div.summary dd{
    color: #222;
    margin: 15px 0 5px;
    background: #eee;
    padding: 8px 12px;
    font-weight: 700;
    font-size: large;
}

#newlife section.tokuten div.summary dd:first-child{
    margin: 0 0 5px;
}

#newlife section.tokuten div.summary dt{
    font-weight: 500;
    letter-spacing: inherit;
    line-height: 1.5;
    margin: 0 5px;
    font-size: large;
}
#newlife section.tokuten div.summary dt.list {
    position: relative;
    margin-left: 27px;
}
#newlife section.tokuten div.summary dt.list::before {
    content: "・";
    margin-left: -1.3em;
}

#newlife section.tokuten div.summary a{
    color: #e50012;
    text-decoration: underline;
    display: inline-block;
}

#newlife section.tokuten div.summary div.summary_btn::before{
    position: absolute;
    content: '';
    top: 50%;
    right: 1.5em;
    width: 1em;
    height: .1em;
    background-color: #fff;
    transform: rotate(90deg);
    transition: all .3s ease-in-out;
}

#newlife section.tokuten div.summary div.summary_btn::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 1.5em;
    width: 1em;
    height: .1em;
    background-color: #fff;
    transition: all .3s ease-in-out;
}

/*革命セットとは====================*/
/* 枠色替え */
#newlife section.tokuten div.summary.revo div.summary_btn{
    background-color: #0bc0cb;
    margin: 2% 0 0;
}
#newlife section.tokuten div.summary .text-content.revo{
    padding: 5% 2% 2%;
    background-color: #fff;
    border: solid 5px #0bc0cb;
}

/* タイトルロゴ */
#newlife .summary_btn .img{
    width: 9%;
    margin-right: 1%;
}

/* タイトル */
#newlife  .text-section_title {
    position: relative;
    margin-bottom: 3%;
    text-align: center;
}
#newlife .text-section_title h3{
    z-index: 2;
    display: inline-block;
    background: #FFF;
    padding: 0 5%;
}
#newlife .text-section_title:before,
#newlife .text-section_title:after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 58%;
    display: inline-block;
    width: 50%;
    height: 1px;
    background-color: black;
}
#newlife .text-section_title::before {
    left: 0;
}
#newlife .text-section_title::after {
    right: 0;
}

/* h5 */
#newlife .text-h5 {
    margin-bottom: 1%;
}
#newlife .text-h5::before {
    content: '■';
    font-size: .8em;
    margin-right: 1%;
}

/* 条件内容 */
#newlife .text__section_box {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 3%;
    justify-content: center;
    box-sizing: border-box;
    background: linear-gradient(135deg, #f0f8d4 10%, #c9eef0 90%);
    padding: 2%;
}
#newlife .text__section_box .img {
    position: relative;
    width: 42%;
}
#newlife .text__section_box .sword-icon {
    width: 8%;
}
#newlife .text__section_box .img.icon {
    width: 35%;
    border: 2px solid #1b5ce0;
    box-sizing: border-box;
    border-radius: 5px;
    background-color: #FFF;
}

#newlife span.marker {
    background: linear-gradient(transparent 60%, #fbab3b99 40%);
    font-weight: bold;
    line-height: 1;
}

#newlife .text-section p{
    text-align: left;
    color: #000;
    padding: 3% 0;
    font-weight: 500;
    line-height: normal;
    letter-spacing: inherit;
    font-size: 19px;
}

/* section item_list
================================ */
#newlife section.item ul.item_list{
    position: relative;
    margin-bottom: 5%;
}

#newlife section.item ul.item_list li dl{
    padding: 2%;
}

#newlife section.item ul.item_list li dl dt{
    display: flex;
    align-items: center;
    height: 40px;
}

#newlife section.item ul.item_list li dl dt h4{
    font-size: 22px;
    margin-right: 2px;
}

#newlife section.item ul.item_list li dl dt span {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 100vw;
    margin-right: 2px;
    border:solid 1px #000;
}

/*1カラム====================*/
#newlife section.item ul.col_1.item_list li a{
    display: flex;
    align-items: center;
}

#newlife section.item ul.col_1.item_list li a > img,
#newlife section.item ul.col_1.item_list li a dl{
    width: 50%;
}

#newlife section.item ul.col_1.item_list li a dd.set_list{
    display: flex;
    flex-wrap: wrap;
    gap:2px;
}

#newlife section.item ul.col_1.item_list li a dd.set_list span{
    background-color: #303030;
    color: #fff;
    font-size: 15px;
    padding: 2px 4px;
}

/*革命セット×アイコン====================*/
#newlife section.item ul.item_list div.sword-icon{
    position: absolute;
    z-index: 1;
    transform: translate(-50%,50%);
    top: 20%;
    left: 50%;
    font-size: 60px;
}


/*価格====================*/
#newlife section.item ul.item_list li dl dd.price_block{
    display: flex;
    align-items: end;
    margin-bottom:3%;
    margin-top: auto;
}

#newlife section.item ul.item_list li dl  dd.price_block .prdisp-taxin{
    color: #eb0012;
    font-weight: bold;
}

#newlife section.item ul.item_list li dl dd.price_block .prdisp-taxin span.value{
    font-size: 40px;
}

#newlife section.item ul.item_list li dl dd.price_block .prdisp-taxin span{
    font-size: 25px;
    display: flex;
    align-items: flex-end;
}

/*価格横 新生活・革命アイコン====================*/
#newlife section.item ul.item_list li dl dd.price_block div.icon{
    display: flex;
}

#newlife section.item ul.item_list li dl dd.price_block div.icon img{
    margin-left: 3%;
    width: 65px;
    border-radius: 3px;
}

/*商品はこちら====================*/
#newlife section.item ul.item_list li dl dd.btn{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #000;
    color: #fff;
    height: 45px;
    border-radius: 100px;
    padding-bottom: 4px;
    margin-top: 10px;
}

#newlife section.item ul.item_list li dl dd.btn::after{
    position: absolute;
    font-family: 'Material Icons';
    content: "chevron_right";
    transform:translate(50%,-50%);
    top:50%;
    right: 10%;
    font-size: 40px;
}

/*カテゴリボタン*/
#newlife section.item ul.cate_btn{
    margin: 2% auto;
}

#newlife section.item ul.cate_btn li a h4{
    font-size: 22px;
}

#newlife section.item ul.cate_btn li a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    background: #fff;
    border: solid 5px #000;
    border-radius: 50px;
    text-align: center;
    font-size: 19px;
    color: #000;
    font-weight: 700;
    transition: 0.2s;
}

#newlife section.item ul.cate_btn li a::after{
    position: absolute;
    font-family: 'Material Icons';
    content: "play_circle_filled";
    transform:translate(50%,-50%);
    top:50%;
    right: 30px;
    font-size: 40px;
}

#newlife section.item ul.cate_btn li a.other_btn:hover{
    opacity: 1;
    background-color: #e23a00;
    color: #ffffff;
}

/* section cate
================================ */
#newlife section.cate_list ul{
    gap: 20px 1%;
}

#newlife section.cate_list h4{
    font-size: 15px;
    text-align: center;
    color: #fff;
    font-weight: 600;
}

