@charset "shift_jis";

/* CSS Document */
/*==============================================
スタイルリセット
================================================*/
#aircon *,
#aircon *::before,
#aircon *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body,
#aircon h1,
#aircon h2,
#aircon h3,
#aircon h4,
#aircon h5,
#aircon h6,
#aircon ul,
#aircon ol,
#aircon dl,
#aircon li,
#aircon dt,
#aircon dd,
#aircon p,
#aircon div,
#aircon span,
#aircon img,
#aircon a,
#aircon table,
#aircon tr,
#aircon th,
#aircon td {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

#aircon header,
#aircon footer,
#aircon nav,
#aircon section,
#aircon article,
#aircon main,
#aircon aside,
#aircon figure,
#aircon figcaption {
    display: block;
}

#aircon ol,
#aircon ul,
#aircon li {
    list-style: none;
    list-style-type: none;
}

#aircon img {
    width: 100%;
    height: auto;
    display: block;
}

#aircon a {
    color: inherit;
    text-decoration: none;
    transition: 0.2s;
}

#aircon a:hover {
    opacity: 0.5;
}

#aircon .no,
#aircon .smp_none{
    display: none;
}


/* ここから追加
================================ */
/* ベース */
#aircon {
    width: 100%;
    font-size: 3vw;
    font-family: "Noto Sans JP", "Yu Gothic black", sans-serif, "メイリオ";
    font-weight: 600;
    letter-spacing: 0.1vw;
    line-height: 1.6;
    color: #222222;
    background-color: #fff;
    overflow: hidden;
}


#aircon section{
    position: relative;
    padding: 2.5vw 0 4vw 0;
}

#aircon section.title,
#aircon section.fotter{
    padding: 0 0;
}


#aircon div.inner_content{
    width: 96%;
    margin: auto;
}

/*------------------------------------
見出し・テキスト
-------------------------------------*/

/* 共通 見出し
================================ */
#aircon h1{
    font-size: 5vw;
}

#aircon h2 {
    font-size: 6vw;
    text-align: center;
    font-weight: bold;
    padding: 2vw 0;
    color: #fff;
    background-color: #5b979f;
}

#aircon h2.h_img{/*見出し画像の時*/
    padding:0 0;
}

#aircon h3 {
    font-size: 5vw;
    text-align: center;
    color: #2d2d2d;
    font-weight: bold;
    padding: 3vw 0;
}

#aircon h4{
    font-size: 4vw;
    text-align: center;
    color: #2d2d2d;
    font-weight: bold;
    padding: 3vw 0;
}

#aircon p {
    font-size: 4vw;
    text-align: center;
    color: #2d2d2d;
    padding: 2vw 0;
    font-weight: 500;
}

#aircon p.small {
    font-size: 2.5vw;
    text-align: center;
    color: #2d2d2d;
    padding: 1vw 0;
    font-weight: 600;
}

#aircon p small {
    font-size: 3vw;
    line-height: 3.2vw;
    text-align: center;
    color: #2d2d2d;
    padding: 1vw 0;
    font-weight: 600;
}

/*注意文 赤--------------*/
#aircon dl.attention{
    margin: 2vw auto;
    padding: 3vw 1vw;
    background-color: #f9eee8;
    border-radius: 8px;
}

#aircon dl.attention dt p{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ca4b23;
    border-bottom: 1px solid;
    padding-bottom: 1vw;
    font-weight: bold;
    font-size: 5.5vw;
    margin-bottom: 2vw;
}

#aircon dl.attention dt p::before {
    font-family: 'Material Icons';
    content: "warning_amber";
    font-size: 8vw;
    font-weight: 500;
    margin-right: 0;
}


#aircon dl.attention dd p{
    font-size: 3.5vw;
}

/*箇条書き*/
#aircon dl.attention ul {
    width: 95%;
    margin: 0 auto;
}

#aircon dl.attention ul li {
    display: flex;
    margin-bottom: 3vw;
}

#aircon dl.attention ul li::before {
    content: "●";
}

#aircon dl.attention ul li p{
    padding: 0 0;
    text-align: left;
}

#aircon dl.attention ul li p span{
    display: block;
    width: 100%;
    margin: 2vw auto;
    padding: 1vw 3vw;
    background-color: #edd6bd;
}

/*注意文 黄色--------------*/
#aircon dl.attention02{
    background-color: #ffffd2;
}

#aircon dl.attention02 dt p::before {
    font-family: 'Material Icons Outlined';
    content: "";
}



/*------------------------------------
共通 カラム
-------------------------------------*/
#aircon ul[class^="col_"]{
    display: flex;
    flex-wrap: wrap;
    gap:2.2vw 1.2vw;
    margin: 2vw auto;
}

#aircon ul.col_1 > li{
    width:100%;
}

#aircon ul.col_2 > li,
#aircon ul.col_4 > li{
    width: calc(calc(100% - 1.3vw) / 2);
    position: relative;
}

#aircon ul.col_3 > li{
    width: calc(calc(100% - 1.3vw * 3) / 3);
    position: relative;
}


#aircon ul.col_5 > li{
    width: calc(calc(100% - calc(1.3vw * 2)) / 3);
}

/*------------------------------------
共通 ボタン
-------------------------------------*/

#aircon a.btn{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: 15vw;
    background-color: #222;
    border-radius: 5px;
    color: #fff;
    margin: 0 auto;
}

#aircon a.btn::after{
    position: absolute;
    font-family: 'Material Icons';
    content: "keyboard_arrow_right";
    transform:translate(50%,-50%);
    font-size: 7vw;
    top:50%;
    right: 11%;
}


/*------------------------------------
index タブ切り替え
-------------------------------------*/
#aircon ul.tab-area{
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

#aircon ul.tab-area li.tab_recycle{
    width: calc(98%/2);
    text-align: center;
    cursor: pointer;
    background-color: #b2b2b2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}


#aircon ul.tab-area li.tab_recycle p{
    width: 100%;
    height: 100%;
    padding: 2vw 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4vw;
    font-weight: normal;
    line-height: 5vw;
    color: #fff;
    font-weight: bold;
}


#aircon ul.tab-area li.tab_recycle h3{
    margin: 0.5em;
}


#aircon ul.tab-area li.tab_recycle.active_recycle:nth-child(1){
    background-color: #4b858d;
}

#aircon  ul.tab-area li.tab_recycle.active_recycle:nth-child(2){
    background-color: #62895a;
}

/*タブ中身*/
#aircon .panel_recycle{
    display: none;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

#aircon .panel_recycle.active_recycle{
    display: block;
}


#aircon .panel_recycle.active_recycle:nth-of-type(1){
    border-top: 5px solid #4b858d;
}

#aircon .panel_recycle.active_recycle:nth-of-type(2){
    border-top: 5px solid #62895a;
}


/*------------------------------------
固定アンカーメニュー
-------------------------------------*/
#aircon div.toggle{
    position: fixed;
    z-index: 9999;
    bottom: calc(53px + 1%);
    right: 2%;
    width: 16vw;
    height: 16vw;
    background-color: #5b979f;
    border-radius: 50%;
    display: block;
    border: solid 0.7vw #fff;
}

#aircon div.toggle span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 50%;
    width: 6.4vw;
    height: 3px;
    background-color: #fff;
    transform: translate(-50%, -50%);
}

#aircon div.toggle span:nth-of-type(1) { top: calc(50% - 10px)}
#aircon div.toggle span:nth-of-type(2) { top: calc(50%);}
#aircon div.toggle span:nth-of-type(3) { top: calc(50% + 10px);}
#aircon div.toggle.active span:nth-of-type(1) {
    top: calc(100%/2);
    transform: translate(-50%,-50%) rotate(-45deg);
}

#aircon div.toggle.active span:nth-of-type(2) { opacity: 0; }
#aircon div.toggle.active span:nth-of-type(3){
    top: calc(100%/2);
    transform: translate(-50%,-50%) rotate(45deg);;
}

#aircon div.side_anchor{
    position: fixed;
    height: 100vh;
    bottom: 0;
    right: -100%;
    width: 100%;
    background-color: #ffffffeb;
    transition: 0.6s;
    z-index: 999;
    padding: 1.2vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

#aircon div.side_anchor.panelactive{/*メニュー*/
    right: 0;
}

#aircon div.side_anchor ul{
    width: 90%;
    margin: 0 auto;
}

#aircon div.side_anchor li a{
    position: relative;
    display: block;
    padding: 5vw 4vw 5vw 0;
    text-align: center;
    color: #5b979f;
    font-size: 4vw;
    border-top: dotted #5b979f 1px;
}


#aircon div.side_anchor li a::after{
    position: absolute;
    font-family: 'Material Icons';
    font-size: 6vw;
    font-weight: 600;
    content: "expand_more";
    bottom: 50%;
    right: 0;
    transform: translateY(50%);
}



#aircon div.side_anchor ul.top li a{
    padding: 5vw 0 5vw 0;
}


#aircon div.side_anchor ul.top li a::after{
    content: "";
}



/*------------------------------------
アコーディオン
-------------------------------------*/
/*通常アコーディオン*/
#aircon div.accordion_menu > dl > dt{    
    position: relative;
    cursor: pointer;
    border: 1px solid #c0c0c0;
    padding: 2vw 4vw;
    font-size: 4vw;
    color: #383838;
    text-align: left;
    margin: 2vw auto 0 auto;
}

#aircon div.accordion_menu  > dl > dt::before{
    position: absolute;
    content: "";
    display: block;
    width: 14px;
    height: 2px;
    background-color: #383838;
    right: 5vw;
    top: 50%;
    transform: translate(0, -50%);
}

#aircon div.accordion_menu > dl > dt::after{
    position: absolute;
    content: "";
    display: block;
    width: 14px;
    height: 2px;
    background-color: #383838;
    right: 5vw;
    top: 50%;
    transform: translate(0, -50%) rotate(90deg);
}

#aircon div.accordion_menu > dl > dt.active::after{
    display: none;
}

#aircon div.accordion_menu > dl > dd{    
    display: none;
    margin-bottom: 5vw;
}

/*動画用アコーディオン*/
#aircon section.movie div.accordion_menu{    
    background-color: #f9eee8;
    padding: 0 2vw 2vw 2vw;
    border:solid #606060 0.7vw ;
    border-radius: 2vw;
}

#aircon section.movie div.accordion_menu h4{    
    color: #383838;
    background-color: #dbdbdb;
    margin: 4vw auto 0 auto;
}
#aircon section.movie div.accordion_menu dl dt{    
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9eee8;
    border: 0 solid #c0c0c0;
    padding: 2vw 4vw;
    font-size: 4vw;
    color: #383838;
    text-align: left;
    margin: 2vw auto 0 auto;
}

#aircon section.movie div.accordion_menu dl dt div{    
    margin-right: 2vw;
    width: 12vw;
}

#aircon section.movie div.accordion_menu ul.col_1{
    margin: 0 auto 1vw auto;
}

#aircon section.movie div.accordion_menu ul.col_2 li{
    width:100%;
}


#aircon section.movie .youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

#aircon section.movie .youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/*------------------------------------
アンカーメニュー
-------------------------------------*/
#aircon ul.anchor_menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 5vw auto;
}

#aircon ul.anchor_menu li{
    width: calc(98%/3);
}

#aircon ul.anchor_menu li a{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 18vw;
    padding-bottom: 2vw;
    color: #5b979f;
    font-weight: bold;
    border: solid #5b979f 0.7vw;
    font-size: 3vw;
    line-height: 3.7vw;
    text-align: center;
}

#aircon ul.anchor_menu li a::after{
    position: absolute;
    font-family: 'Material Icons';
    font-size: 6vw;
    font-weight: 600;
    content: "expand_more";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}


/*------------------------------------
section contents03
-------------------------------------*/
/*カレンダー-----------------*/
#aircon dl.calendar{
    margin: 2vw auto;
    padding: 4vw 2vw;
}

#aircon dl.calendar dt p{
    font-size: 3.7vw;
}

/*ステップ-----------------*/
#aircon dl.step{
    margin-bottom: 4vw;
    padding: 2vw;
    border: solid 0.7vw #606060;
}

#aircon dl.step dt p.step_number{
    color: #5b979f;
    font-weight: bold;
    font-size: 4vw;
    padding: 0 0;
}

#aircon dl.step dt p.step_number span{
    font-size: 6vw;
    margin-left: 1vw;
}

#aircon dl dt p.step_title{
    padding: 1vw 0;
    background-color: #5b979f;
    color: #fff;
    font-size: 4vw;
}

#aircon dl dd p{
    font-size: 3.2vw;
}

#aircon ul.koji_type li{
    margin-bottom: 2vw;
}

#aircon ul.koji_type li h4 {
    padding: 0;
    color: #fff;
}

#aircon ul.koji_type li.koji_no {
    padding: 2vw;
    background-color: #88acb4;
}

#aircon ul.koji_type li.koji_yes {
    padding: 2vw;
    background-color: #c64919;
}



/*------------------------------------
モーダルウィンドウ
-------------------------------------*/
/**モーダルウィンドウ内容**/
#aircon div.js-modal-open{
    padding: 1vw;
    border: 0.7vw solid #d3d3d3;
    margin: 1vw auto 4vw;
    width: 90%;
    background-color: #fff;
}

/* モーダル全体(背景＋本体) */
#aircon .modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 100%;
    z-index: 100;
}
/* モーダル背景 */
#aircon .modal-bg{
    position: relative;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    z-index: 101;
}

/* モーダル本体 */
#aircon .modal-content {
    position: absolute;
    padding: 4vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: scroll;
    width: 80%;
    background: white;
    z-index: 102;
    height: 62vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow-y: scroll;
}

#aircon .js-modal-close.close_btn{
    position: absolute;
    top: 15dvh;
    right: 10vw;
    color: #fff;
    z-index: 102;
    font-size: 4vw;
}



/*------------------------------------
リサイクル回収
-------------------------------------*/
#aircon .recycle_box {
    width: 96%;
    padding: 2vw 2vw 3vw;
    border: 1px solid #424242;
    margin: 3vw auto 0 auto;
}

#aircon .txt_recycle{
    font-size: 3.5vw;
    color: #383838;
    margin: 2vw auto -2vw;
}
#aircon .txt_recycle span{
    display: inline-block;
    background-color: #219500;
    color: #fff;
    font-size: 3.7vw;
    padding: 0 1vw;
    margin-right: 1vw;
}

#aircon .recycle_btn{
    display: inline-block;
    margin-top: 10px;
}
#aircon .recycle_btn a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    background-color: #c64919;
    border: 1px solid #c64919;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 1vw 6vw;
    transition: 1.0s;
}
#aircon .recycle_btn a::after,
#aircon .recycle_btn a::before{
    position: absolute;
    font-family: 'Material Icons';
    content: 'play_arrow';
    color: #fff;
    font-size: 4vw;
    bottom: 4vw;
}
#aircon .recycle_btn a::after{
    right: 7.5vw;
}
#aircon .recycle_btn a::before{
    right: 10vw;
}
#aircon .recycle_btn a:active{
    background-color: #fff;
}
#aircon .recycle_btn a p,
#aircon .recycle_btn a div{
    color: #fff;
}
#aircon .recycle_btn a:active p,
#aircon .recycle_btn a:active div,
#aircon .recycle_btn a:active::after,
#aircon .recycle_btn a:active::before{
    color: #c64919;
}
#aircon .recycle_btn a > div:nth-child(1){
    margin-right: 3vw;
}
#aircon .recycle_btn a > div:nth-child(1) p{
    font-size: 3vw;
}
#aircon .recycle_btn a > div:nth-child(2){
    font-size: 3.5vw;
    position: relative;
}

#aircon .recycle_box{
    box-sizing: border-box;
    padding: 2vw 2vw 3vw;
    border: 1px solid #424242;
    margin-top: 3vw;
}
#aircon #syosai_box h2{
    background-color: #6f9b66;
    color: #fff;
    padding: 1vw 0;
    font-size: 4.5vw;
}

#aircon #syosai_box ul{
    text-align: left;
    color: #383838;
    margin: 1vw auto 0;
}
#aircon #syosai_box ul > li:nth-child(n+2){
    margin-top: 2vw;
}
#aircon #syosai_box .mida{
    display: flex;
}    
#aircon #syosai_box .mida,
#aircon #syosai_box .mida p,
#aircon #syosai_box .mida p span:nth-of-type(n+2){
    font-size: 3.5vw;   
    font-weight: bold;
}
#aircon #syosai_box .mida > span{
    font-size: 3.5vw;
    margin-right: 1vw;
    /* display: inline-block; */
    font-weight: bold;
}
#aircon #syosai_box .mida p span{
    color: #c64919;
    font-size: 3.5vw;
}
#aircon #syosai_box .mida p span.num{
    font-size: 5vw;
    margin: 0 0 0 1vw;
}
#aircon #syosai_box p.otodoke_txt{
    background-color: #fbffc2;
    box-sizing: border-box;
    padding: 2vw;
    border-radius: 10px;
    color: #c64c1b;
    display: flex;
    font-size: 3.5vw;
    margin-top: 2vw;
}
#aircon #syosai_box p.otodoke_txt::before{
    content: "※";
    margin-right: 3px;
}

#aircon #syosai_box .annotation{
    box-sizing: border-box;
    padding: 5px 10px;
}
#aircon #syosai_box .annotation p{
    display: flex;
    font-size: 3.5vw;
}
#aircon #syosai_box .annotation p::before,
#aircon #syosai_box .preparation p:nth-child(3)::before{
    content: "※";
    margin-right: 1vw;
}
#aircon #syosai_box .annotation p:nth-child(1),
#aircon #syosai_box .preparation p:nth-child(3){
    color: #c64919;
}
#aircon #syosai_box .annotation p:nth-child(2){
    margin-top: 1vw;
}

#aircon #syosai_box .preparation{
    box-sizing: border-box;
    padding: 2vw;
    text-align: center;
    background-color: #fdffe9;
    border-radius: 8px;
    margin-top: 2vw;
}
#aircon #syosai_box .preparation p:nth-child(1){
    font-size: 3.5vw;
    color: #c64919;
    border-bottom: 1px solid;
    margin-bottom: 1vw;
    /* font-weight: bold; */
}
#aircon #syosai_box .preparation p:nth-child(2){
    font-size: 3.5vw;
}
#aircon #syosai_box .preparation p:nth-child(3){
    font-size: 3.5vw;
}

/*必ずご確認ください*/
#aircon #kakunin_box h2{
    background-color: #aaaaaa;
    color: #fff;
    padding: 1vw 0;
    font-size: 4.5vw;
    font-weight: normal;
    margin-bottom: 1vw;
}
#aircon #kakunin_box .kakunin_list{
    text-align: left;
    color: #383838;
}
#aircon #kakunin_box .kakunin_list > li{
    margin-top: 5px;
}
#aircon #kakunin_box .kakunin_list > li > p{
    display: flex;
    font-size: 3.5vw;
    text-align: left;
    padding: 0 0;
}

#aircon #kakunin_box .kakunin_list > li > p::before{
    content: "・";
}
#aircon #kakunin_box .kakunin_list .dot_box{
    box-sizing: border-box;
    padding: 2vw;
    border: 1px dashed #a3a3a3;
    border-radius: 8px;
    margin: 2vw auto 4vw;
}
#aircon #kakunin_box .kakunin_list .dot_box p{
    text-align: center;
    font-size: 3.5vw;
    border-bottom: 1px solid;
    padding-bottom: 1vw;
}
#aircon #kakunin_box .kakunin_list .dot_box li{
    display: flex;
    margin: 1vw 0;
    font-size: 3.3vw;
}
#aircon #kakunin_box .kakunin_list .dot_box li:nth-child(3){
    margin-bottom: 0;
}
#aircon #kakunin_box .kakunin_list .dot_box li::before{
    content: "・";
    margin-right: 0.5vw;
}

#aircon #kakunin_box .txt_list{
    box-sizing: border-box;
    padding: 2vw;
    background-color: #f9eee8;
    border-radius: 8px;
    margin: 2vw 0 0;
}
#aircon #kakunin_box .txt_list .mida{
    color: #d38f5e;
    border-bottom: 1px solid;
    font-weight: normal;
    font-size: 4vw;
    margin-bottom: 1vw;
    padding-bottom: 1vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
#aircon #kakunin_box .txt_list li{
    display: flex;
    margin-bottom: 2vw;
    color: #383838;
    font-size: 3.5vw;
    text-align: left;
}
#aircon #kakunin_box .txt_list li::before{
    content: "・";
}


/*-----------------------------------------------*/
/*フッター*/
/*-----------------------------------------------*/
footer {
    font-size: 4vw;
    padding: 0;
    width: 100%;
    margin: 3vw 0;
    text-align: center;
    color: #000;
}

footer a {
    color: #000;
    display: inline-block;
    text-decoration: none;
}

footer a:hover {
    opacity: 0.8;
}
