@charset "utf-8";

/* =Reset default browser CSS.
Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {border: 0;font-family: inherit;font-size: 100%;font-style: inherit;font-weight: inherit;margin: 0;outline: 0;padding: 0;vertical-align: baseline;}
:focus {outline: 0;}

ol, ul {list-style: none;}
table {border-collapse: separate;border-spacing: 0;}
caption, th, td {font-weight: normal;text-align: left;}
blockquote:before, blockquote:after,q:before, q:after {content: "";}
blockquote, q {quotes: "" "";}
a img {border: 0;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
hr{border: 0;height: 1px; color:rgb(225, 217, 218); background-color:rgb(225, 217, 218);}
html
{
	height:100%;
}/*'Kosugi Maru',90%/1.5*/
body
{
font:100%/1  "メイリオ","Lucida Sans Unicode", "Lucida Grande", Arial, "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",sans-serif;
color:#333;
background:url();
-webkit-text-size-adjust: none;
height:100%;
margin:0;
padding:0;
position: relative;line-height: 1.2;

@media screen and (min-width:1025px){
    body{
        font-size:101%;
    }
}
/* リンク設定
------------------------------------------------------------*/
a{
}

a:hover, a:active{
	opacity: 0.5 ;
	filter: alpha(opacity=50) ;	/* Ie用 */
}

a img:hover {
	opacity: 0.5 ;
	filter: alpha(opacity=50) ;	/* Ie用 */
}

a img {
	-webkit-transition: 0.4s ;
	transition: 0.4s ;
}


/**** Clearfix ****/
/*.nav .panel:before,nav .panel:after, nav#mainNav:before,nav#mainNav:after, .newsTitle:before,.newsTitle:after, article:before, article:after{content: ""; display: table;}
*/nav .panel:after,nav#mainNav:after,.newsTitle:after,article:after{clear: both;}
nav .panel,nav#mainNav,.newsTitle,article{zoom: 1;}


*:first-child+html input[type="submit"]{padding:3px;}

/* フォーム
------------------------------------------------------------*/
input
{
	font-family:"メイリオ","Lucida Sans Unicode", "Lucida Grande", Arial, "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",sans-serif;
}

/* テキスト */
input[type="text"], input[type="tel"],input[type="email"] ,textarea{
vertical-align:middle;
line-height:35px;
height:35px;
padding:1px 5px;
border:1px solid #d4d4d7;
border-radius:6px;
-webkit-border-radius:6px;
-moz-border-radius:6px;
font-size:100%;
color:#555;
background:#fcfcfc;
}
	input.contact-text_ss
	{
		width: 20% !important;
	}	
	input.contact-text_s
	{
		width: 50% !important;
	}
	input.contact-text_m
	{
		width: 65% !important
	}
	input.contact-text_l
	{
		width: 90% !important;
	}
	/* regist */
	input.regist-text
	{
		padding:2px 5px;
		line-height:2.5;
		width:90%;
	}
	input.regist-text_middle
	{
		padding:2px 5px;
		line-height:2.5;
		width:45%;
	}
	input.regist-text_short
	{
		padding:2px 5px;
		line-height:2.5;
		width:20%;
	}
	/* start */
	input.start-text
	{
		padding:0 2%;
		line-height:1.6;
		width:94%;
		color:#666;
	}


/* セレクト */	
select{
font-family:"メイリオ","Lucida Sans Unicode", "Lucida Grande", Arial, "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック",sans-serif;
line-height:2.5;
height:2.8em;
padding:2px 3px;
border-radius:6px;
-webkit-border-radius:6px;
-moz-border-radius:6px;
border:1px solid #d4d4d7;
background:#fcfcfc;
}
		/* regist */
		select.regist-select
		{
		}
		
		/* start */
		select.start-select
		{
			color:#666;
			line-height:2.3;
			height:2.3em;
			padding:2px 3px;
		}

/* ラベル */	
label
{
	margin-right:1em;
}


/* ラジオボタン */

		/* regist */	
					input[type="radio"] {
						display: none;
					}
					label.radio-design01 {
						position: relative;
						display: inline-block;
						padding: 3px 3px 3px 20px;
						cursor: pointer;
					}
					label.radio-design01::before,
					label.radio-design01::after {
						position: absolute;
						content: '';
						top: 50%;
						border-radius: 100%;
						-webkit-transition: all .2s;
						transition: all .2s;
					}
					label.radio-design01::before {
						left: 0;
						width: 14px;
						height: 14px;
						margin-top: -8px;
						background: #f3f3f3;
						border: 1px solid #ccc;
					}
					label.radio-design01:hover::before {
						background: #fff;
					}
					label.radio-design01::after {
						opacity: 0;
						left: 4px;
						width: 8px;
						height: 8px;
						margin-top: -4px;
						background: #3498db;
						-webkit-transform: scale(2);
						transform: scale(2);
					}
					input[type="radio"]:checked + label.radio-design01::before {
						background: #fff;
						border: 1px solid #3498db;
					}
					input[type="radio"]:checked + label.radio-design01::after {
						opacity: 1;
						-webkit-transform: scale(1);
						transform: scale(1);
					}
					
/* チェックボックス */
					input[type="checkbox"] {
						display: none;
					}
					label.checkbox-design01 {
						position: relative;
						display: inline-block;
						padding: 3px 3px 3px 22px;
						cursor: pointer;
						-webkit-transition: all .2s;
						transition: all .2s;
					}
					label.checkbox-design01::before,
					label.checkbox-design01::after {
						position: absolute;
						content: '';
						-webkit-transition: all .2s;
						transition: all .2s;
					}
					label.checkbox-design01::before {
						top: 50%;
						left: 0;
						width: 14px;
						height: 14px;
						margin-top: -8px;
						background: #f4f4f4;
						border: 1px solid #ccc;
						border-radius: 3px;
					}
					label.checkbox-design01::after {
						opacity: 0;
						top: 50%;
						left: 3px;
						width: 8px;
						height: 4px;
						margin-top: -4px;
						border-left: 2px solid #3498db;
						border-bottom: 2px solid #3498db;
						-webkit-transform: rotate(-45deg) scale(.5);
						transform: rotate(-45deg) scale(.5);
					}
					label.checkbox-design01:hover::before {
						background: #fff;
					}
					input[type="checkbox"]:checked + label.checkbox-design01::before {
						background: #fff;
						border: 1px solid #3498db;
					}
					input[type="checkbox"]:checked + label.checkbox-design01::after {
						opacity: 1;
						-webkit-transform: rotate(-45deg) scale(1);
						transform: rotate(-45deg) scale(1);
					}
										

/* ボタン */
input[type="submit"],input[type="reset"],input[type="button"]{
padding:0 10px;
background: #bd5612;
border:0;
border-radius:3px;
-webkit-border-radius:3px;
-moz-border-radius:3px;
line-height:3em;
height:3em;
width:200px;
font-size:100%;
color:#fff;
}

input[type="submit"]:hover,input[type="reset"]:hover,input[type="button"]:hover{
cursor:pointer;
background: #bd5612;
}

	input.message-reset
	{
		margin:0.5em auto 0;
		padding:0 0;
		background: #bd5612;
		border:0;
		border-radius:3px;
		-webkit-border-radius:3px;
		-moz-border-radius:3px;
		line-height:2.4em;
		height:2.4em;
		width:120px;
		font-size:0.9em;
		color:#fff;
	}

*:first-child+html input[type="submit"]{padding:3px;}

.vertical_box {
float: left;
}

/* レイアウト
------------------------------------------------------------*/

.clear
{
	clear:both;
}

a
{
	transition: all .3s;
    cursor: pointer;
}
button
{
	transition: all .3s;
	cursor: pointer;
}

/* リンク
------------------------------------------------------------*/
a:link {color:#ED754C; text-decoration:none;} 
a:visited {color:#ED754C;} 
a:hover {color:#ED754C;} 
a:active {color:#ED754C;}

/* タイポグラフィ
*****************************************************/

html>body h2.title span{padding: 7px 10px;} /* IE7, IE8 */


/* コンテンツ
*****************************************************/
/*--------------------●共通---------------------*/
.right
{
	text-align:right;
}
div#WholeWrap
{
	width:100%;
	height:100%;
	background:#fff;
	margin:0;	padding:0;
     height:auto !important; /*IE6対策*/
     height: 100%; /*IE6対策*/
     min-height: 100%;
}
.note{
    line-height: 2em;
    padding: 30px 0
}
/* heder ------------------------------------------*/
header
{
    min-height: 50px;
}
    #header-inner
    {
        margin: 0 auto;
        width: 100%;
        padding: 5px 0 5px;
        position: fixed;
        background-color: rgba(255,255,255,0.97);
        z-index: 999;
        top:0;
        left: 0;
        right: 0;
        box-sizing: border-box;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        box-shadow: 1px 1px 10px rgba(104,97,97,0.82);
    }
        .header-logo 
        {
            height: 40px;
        }
            .header-logo img
            {
                height: 35px;
                width: 175px;
                margin: 3px auto 2px 3%;
            }
@media screen and (min-width:1025px){
    header
    {
        min-height: 62px;
    }
        #header-inner{
            display: flex;
            padding: 0;
            margin: 0;
        }
            .header-logo{
                max-width: 180px;
                margin: 8px auto;
            }
            .header-logo img{
                    height: 37px;
                    width: 185px;
                    margin: 0 0 0 5px;
                max-width: none;
                    }
}
/* navi ------------------------------------------*/
#header-nav {
    background-color: rgba(0,0,0,0.70);
    position: absolute;
    top:50px;
    width: 100%;
    display: none;
}
    #header-nav li{
        padding: 5px 0 5px 10px;
    }
        #header-nav li a{
            display: block;
            width: 90%;
            line-height: 2em;
            color: #fff;
            font-size: 110%;
            font-weight: bold;
            margin: 3px auto;
            border-bottom: 1px solid #fff;
            position: relative;
            padding:5px 0 5px 0.5em;
        }
            #header-nav li a::after{
                content: ">";
                display: inline-block;
                position: absolute;
                right: 0.5em;
                top: 0;
            }
            #header-nav .nav_ruby{
                display: none;
            }
            #header-nav li.active a{
                color: rgb(237, 117, 76);
            }
        .menu-tel{
            max-width: 220px;
            width: 98%;
            margin: 0.5em auto;
            line-height: 1.8em;
            padding: 5px;
            border-radius: 5px;
            text-align: center;
            font-size: 120%;
            font-weight: bold;
            border: #fff solid 2px;
            box-sizing: border-box;
        }
            .menu-tel a{
                color:#fff;
                text-decoration: underline;
                letter-spacing: 2px;
                font-size: 95%;
            }
                .menu-tel p{
                    color:#fff;
                    font-size: 76%;
                    line-height: 1.6em;
                }
@media screen and (min-width:1025px){
    #header-nav{
        display: flex!important;
        flex-wrap: wrap;
        justify-content: flex-end;
        background-color: rgba(0,0,0,0.00);
        position: relative;
        top:0px;
        width: 100%;
        font-size: 90%;
    }
        #header-nav ul{
            display: flex;
            justify-content: space-between;
            width: 74%;
            margin: 0 auto;
        }
            #header-nav li{
                padding: 9px 3px;
                width: 19%;
            }
                #header-nav li a{
                    color: #283593;
                    text-align: center;
                    padding:0 2px;
                    border-bottom:none;
                    font-weight: bold;
                    line-height: 1.2em;
                letter-spacing: 1;
                }
                    #header-nav li a:hover{
                        color:#ED754C;
                    }
                    #header-nav li a::after{
                        content: none;
                    }
                    #header-nav .nav_ruby{
                        font-size: 80%;
                        color:#CDC7C7;
                        display: block;
                        }
                        #header-nav .nav_ruby::before,#header-nav .nav_ruby::after{
                            content: "-";
                            margin:0 3px;
                        }
        .menu-tel{
            background-color:#6cbdf4;
            margin: 0;
            padding: 3px;
            letter-spacing: normal;
        }
            .menu-tel a{
                text-decoration: none;
            }
}
@media screen and (max-height:414px){
    #header-nav li{
        display: inline-block;
        width: 47%;
    }
}
/* sp navi ------------------------------------------*/
.spmenu_btn{display:block;position:absolute;top:25px;right:15px;width:35px;height:3px;background-color: #353232;-moz-transition:all .3s;-webkit-transition:all .3s;transition:all .3s;border-radius: 1px;}
.spmenu_btn:before{top:-10px}
.spmenu_btn:after,.spmenu_btn:before{content:'';position:absolute;width:35px;height:3px;background:#353232;right:0;-moz-transition:all .3s;-webkit-transition:all .3s;transition:all .3s;border-radius: 1px;}
.spmenu_btn:after{bottom:-10px}
.spmenu_btn.active{background-color: rgba(255,255,255,0.00);}
.spmenu_btn.active:before{-moz-transform:rotate(-135deg);-webkit-transform:rotate(-135deg);transform:rotate(-135deg);top:0;right:0}
.spmenu_btn.active:after{-moz-transform:rotate(135deg);-webkit-transform:rotate(135deg);transform:rotate(135deg);bottom:0;right:0}
@media screen and (min-width:1025px){
    .spmenu_btn{display: none;}
}
/* Index mv ------------------------------------------*/
.mainvisual
{
    background: url(../img/mv_01.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 230px;
}
.mainvisual_Inner{
    position: relative;
    height: 100%;
}
h2.catchcopy{
    position: absolute;
    top: 5%;
    left: 1%;
    text-align: right;
    font-size: 120%;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 10px #000;
    z-index: 1;
}
.mv_text{
    position: absolute;
    color: #fff;
    bottom:1%;
    width: 100%;
    box-sizing: border-box;
    padding: 5px 15px;
    text-shadow: 1px 1px 1px #000,1px 1px 15px #000,-1px -1px 15px #000;
    z-index: 1;
    font-size: 92%;        line-height: 1.4;
}
@media screen and (min-width:1025px){
    .mainvisual{
        height: 500px;
        background-position-y: 65%;
    }
        .mainvisual_Inner{
        }
            h2.catchcopy{
                font-size: 220%;
                top:25%;
                left: 5%
            }
            .mv_text{
                font-size: 130%;
                right: 1%;
                bottom: 5%;
                min-width: 600px;
                width: 45%;
                text-shadow: 1px 1px 15px #000,1px 1px 1px #000;
                text-align: right;
                        line-height: 1.4;
            }
}
/* index page ------------------------------------------*/
.banner-wrap{
    box-sizing: border-box;
    line-height: 0;
    width: 90%;
    margin: 0 auto 2em;
    text-align: center;
}
.banner-wrap img{
    width: 100%;
    max-width: 300px;
}
#top-sct01-inner,#top-sct02-inner
{
    width: 90%;
    margin: 0 auto;
    padding: 30px 0;
}
#top-sct01-inner{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
.top-sct01-box{
    text-align: center;
    margin: 10px auto 30px;
    width: 95%;
    min-width: 250px;
    max-width: 320px;
    box-shadow: 5px 5px 15px #eee;
    box-sizing: border-box;
    padding: 60px 10px;
}
.top-sct01-box a{
    display: block;
}
.top-sct01-h3{
    color: #283593;
    padding:0 0 0.5em;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
}
    .top-sct01-h3 span{
        border-bottom: 1px solid #283593;
    }
.top-sct01-icon{
    font-size: 0;
    line-height: 0;
    min-width:48px;
    max-width:80px;
    width: 50%;
    
}
.top-sct01-box p{
    padding: 5px 0 15px;
}
.top-sct02_h3{
    font-size: 1.8em;
    text-align: center;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 10px 0;
    border-bottom: #283593 solid 1px;
    margin-bottom: 30px;
}
.top-sct02-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px auto;
    position: relative;
}
.top-sct02-box img{
    margin: 10px;
}
.top-sct02-text{
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    padding: 10px 5px;
    max-width: 600px;
    width: 100%;
}
.top-sct02-text p{
    padding: 7px;
    display: block;
    
}
a.btn_01{
    border: 1px solid #283593;
    border-radius: 3px;
    box-sizing: border-box;
    color: #283593;
    display: block;
    text-align: center;
    margin:  15px 0 0 auto;
    padding: 8px 15px;
    min-width: 150px;
}
a.btn_01::after{
    content: ">";
    position: relative;
}
@media screen and (min-width:768px){
    #banner-inner{
        max-width:  1200px;
        justify-content: space-around;
    }
    .banner-wrap{
        margin: 0;
        text-align: center;
        width: 32%;
    }
    .banner-wrap img{
        width: 90%;
        max-width: 320px;
    }
    #top-sct01-inner,#top-sct02-inner {
        padding: 100px 0 50px;
    }
}

.top-info_area{
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 20px 0;
}
    .top-info_area iflame{
        width: 100%;
    }
/* sub mv ------------------------------------------*/
.sub-sct{overflow: hidden;}
.sub_mainvisual
{
    background: url(../img/sub_mv.jpg) no-repeat;
    background-size: cover;
    background-position: bottom;
    width: 100%;
    min-height: 60px;
}
.sub_mainvisual_Inner{
    position: relative;
    height: 100%;
}
h2.page_title{
    text-align: center;
    font-size: 125%;
    color: #fff;
    letter-spacing: 5px;
    font-weight: bold;
    text-shadow: 1px 1px 15px #000;
    margin: 0 auto;
    padding:20px 0;
    width: 80%;
    z-index: 1;
}
h2.page_title span{
    font-size: 60%;
    letter-spacing: 2px;
}
@media screen and (min-width:1025px){
    .sub_mainvisual{
        height: 120px;
    }
        h2.page_title{
            font-size:180%;
            padding-top: 50px;
        }
}
/* pan ------------------------------------------*/
#pan{
    background: #6cbdf4;
    color: #fff;
    font-size: 80%;
}
#pan-inner{
    padding: 5px 10px;
}
#pan a{
    border-bottom: 1px solid;
}
#pan span span{
    font-size: 80%;
}
/* sub page ------------------------------------------*/
.sub-sct-inner{
    width: 90%;
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    max-width: 767px;
}
.sub-sct01-box{
    box-sizing: border-box;
    text-align: left;
    margin: 10px auto;
    min-width: 230px;
    width: 100%;
}
.sub-sct01-h3{
    color: #283593;
    padding:0 0 0;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 130%;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 15px;
}
.sub-sct01-ul{
    padding-bottom: 20px;
}
.sub-sct01-ul li{
    line-height: 1.8em;
    border-bottom: 1px solid rgba(225,217,218,1.00);
    margin: 0 auto;
    width: 95%;
}
.sub-sct01-ul li a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 17px 0 7px 1.6em ;
    line-height: 1.5em;
    box-sizing: border-box;
    position: relative;
}
.sub-sct01-ul li a::before{
    content: "▼";
    color:  rgba(225,217,218,1.00);
    position: absolute;
    left: 2px;
}
@media screen and (min-width:768px){
    .sub-sct-inner{
        max-width: 1000px;
        text-align: left;
        width: 90%;
    }
    .sub-sct01-box{
        width: 49%;
        margin: 15px auto 15px 0;
        max-width: 300px;
    }
    .sub-sct01-ul li{
        margin-bottom: 1.1em;
    }
}
@media screen and (min-width:980px){
    .sub-sct-inner{
        width: 95%;
    }
    .sub-sct01-box{
        width:auto;
        margin: 15px auto 15px 0;
        max-width: 100%;
    }
}
/* sub nav ------------------------------------------*/
.sub-nav-wrapper{
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}
.sub-nav-ul li{
    min-width: 200px;
    padding: 7px 0;
    text-align: left;
    margin: 0 auto;
    position: relative;
    width: 50%;
}
.sub-nav-ul li span{
    font-size: 80%;
    display: none;
}
.sub-nav-ul li a{
    color: rgba(0,0,0,1.00);
}
.sub-nav-ul li a:hover{
    color: rgb(237, 117, 76);
}
.sub-nav-ul li.active a{
    color: rgb(237, 117, 76);
}
@media screen and (min-width:768px){
    .sub-nav-ul{
        display: flex;
        flex-wrap:wrap;
    }
    .sub-nav-ul li{
        margin: 0;
        text-align: center;
        width: auto;
    }
}
/* disposer detail page ------------------------------------------*/
.dd-wrap{
    width: 100%;
}
.dd-sct01-box{
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    margin: 20px auto;
    min-width: 280px;
    max-width: 980px;
    padding: 10px 0;
    width: 95%;
    position: relative;
    z-index: 0;
}
.dd-sct01-box:first-child{
    padding-top: 20px;
}
.dd-sct01-box p{
    box-sizing: border-box;
    line-height: 1.9em;
    letter-spacing: 1px;
    text-align: left;
    text-indent: 1em;
    padding: 5px;
    margin: 0 auto;
    font-size: 115%;
}
.dd-sct01-box img{
    margin: 10px auto;
    max-width: 260px;
    width: 100%;
}
.dd-sct01-box2::after{
  content: '';
  position: absolute;

  top: 0;
  z-index: -1;
  width:100vw;
  height:100%;
  background:rgb(112, 161, 159,0.3);
}
@media screen and (min-width:769px){
    .dd-sct01-box{
        padding: 80px 0;
    }
    .dd-sct01-box p{
        max-width: 480px;
    }
    .dd-sct01-box2{
        flex-direction: row-reverse;
    }
}
/* maker page ------------------------------------------*/
.mkr-wrap{
    max-width: 700px;
    margin: 20px auto;
    width: 100%;
}
.mkr-sct01-box{
    margin: 0 auto;
    width: 95%;
}
.mkr-wrap blockquote{
    overflow-x: scroll;
}
h3.mkr-h3{
    font-size: 1.3em;
    font-weight: bold;
    padding: 20px 0 10px;
    text-align: left;
}
.mkr-sct01-box article{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 30px;
}
.mkr-ul li{
    list-style: disc;
    list-style-position: inside;
    line-height: 1.5em;
    padding: 5px 0;
}
.mkr-ul li h4{
    display: inline-block;
    font-weight: bold;
}
.mkr-ul li p{
    padding: 10px 20px;
}
.mkr-sct01-box figure{
    text-align: center;
}
.mkr-sct01-box figure img{
    max-width: 200px;
    width: 100%;
}
h4.mkr-h4{
    font-size: 110%;
    font-weight: bold;
    padding: 5px 0 10px 15px;
}
dl.mkr-info{
    max-width: 480px;
    padding-left: 20px;
    margin: 10px auto 0;
  text-align: center;
}
.mkr-info dt{
    box-sizing: border-box;
    font-size: 106%;
}
.mkr-info dd{
    box-sizing: border-box;
        border-bottom: 1px solid #F4EBEB;
}
.mkr-sct01-box .figure-wrap figure{
    min-width: 250px;
    width: 49%;
}
.mkr-sct01-box .figure-wrap figure img{
    max-width: 240px;
}
.inquiry-wrap .mkr-sct01-box{
  border-radius: 10px;
  border: 5px solid rgb(40, 53, 147);
  padding:2rem 20px ;
  box-sizing: border-box;
}
.inquiry-wrap h3.mkr-h3{
  padding: 10px 0 10px;
  text-align: center;
  background-color: #CE4603;
  font-size: 1.6rem;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
}
.inquiry-wrap h4.mkr-h4{
  text-align: center;
  padding-left: 0;
  font-weight: 100;
}
.inquiry-wrap dl.mkr-info{
  padding-left: 15px;
}
.inquiry-wrap .mkr-info dd a{
  font-size: 2rem;
}
.inquiry-wrap .mkr-info dt{
  padding-top: 15px
}
.inquiry-wrap .mkr-info dd{
  padding-bottom: 15px
}
@media screen and (min-width:768px){
    dl.mkr-info{
        display: flex;
        flex-wrap: wrap;
        padding: 0;
    }
    .mkr-info dt{
        width: 40%;
        border-bottom: 1px solid #F4EBEB;
      position: relative;
  padding: 15px 0;
    }
    .mkr-info dd{
        width: 59%;
  padding: 15px 0;
    }
    .mkr-info dt:after{
        content: "：";
      position: absolute;
      right: 0px;
    }
    .inquiry-wrap .mkr-info dt:first-child{
      padding-top: 1.7rem;
    }
    .mkr-sct01-box .figure-wrap{
        display: flex;
        justify-content: space-between;
    }
    .mkr-sct01-box .figure-wrap figure{
        min-width: 250px;
        width: 49%;
    }
    .mkr-w50{
        box-sizing: border-box;
        padding: 5px;
        width: 50%;
    }
     .inquiry-wrap .mkr-h4>span{
       padding-left: 1em
      }
}
/* product page ------------------------------------------*/
.pro-flex{
    width: 100%;
    margin-bottom: 20px;
    padding: 10px 5px ;
    box-sizing: border-box;
}
.pro-flex .sp-w100{
    width: 100%;
    margin: 0 auto 1.5em;
    position: relative;
    box-sizing: border-box;
}
.pro-flex .sp-w100 a.p-detail:hover{opacity: 0.5;transition: 1.0s ;cursor:pointer ;}
.pro-flex-h4{
    font-size: 1.2rem;
    padding:55px 0 15px;
    display: flex;
    width:100%;font-weight: bold;
    letter-spacing: 2px;
}
.pro-flex-box h5{
    font-size: 1.2em;
    display: flex;
    width:100%;
    margin-bottom: 10px;
}
.pro-flex-box h5::before{
    content: "";
    background-color: rgb(40, 53, 147);
    margin-right: 0.4em;
    height: 20px;
    width: 10px;
    margin-top: 2px;
    }
.pro-img-wrap{
    width: 95%;
    margin:  auto;
    position: relative;
}
.pro-img{/*
    border: rgb(225, 217, 218) 1px solid;*/
    width: 100%;
    box-sizing: border-box;/*
    box-shadow: 5px 5px 5px #efefef;*/
}
.pro-img2{
    width: auto;
}
.pro-flex-box{
        padding: 1em 1em 40px;
      background-color: #FAFAFA;
}
.pro-flex-box a.btn_01{
    width: 100%;
}
@media screen and (max-width:375px){
    .pro-img2{
        width:  100%;
    }
}
.sale-img::before{
    content: "SALE";
    color: #fff;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding-left: 18px;
    padding-top: 18px;
    font-size: 2em;
    background-image: linear-gradient(135deg, #F70105 100px, transparent 0);
    position: absolute;
}
.pro-flex .sp-w100 dl{
    width: 98%;
    margin: 0 auto;
    line-height: 2em
}
.pro-title{
    font-size: 130%;
    font-weight: bold;
    padding: 5px 0;
    margin:0 auto 0.5em;
}
.pro-title ul{
    font-size: 85%;
    line-height: 1.6em;
    padding-left: 0.5em;
}
.pro-title li::before{
    content: "― ";
    color: rgb(225, 217, 218);
}
.pro-detail li{
    color: #fff;
    border-radius: 5px;
    padding: 2px 5px ;
    display: inline-block;
    margin: 0.2em auto 1em;
}
.pro-detail p{
    line-height: 1.8em;
    padding: 5px;
}
.pro-detail li.souryo{
    background: #ff0000;
}
.pro-detail li.plan1{
    background: #05B108;
}
.pro-detail li.plan2{
    background:#02BBBD;
}
.pro-detail li.hosyo{
    background:#0717CF;
    font-size: 120%;
    padding: 3px 5px;
}
.pro-detail li.new{
    background:#BB0306;
}
.pro-detail li.apa{
    background: #D06C0A;
    color: #fff;
}
.pro-price{
    text-align: right;
    font-size: 2em;
    font-weight: bold;
    right: 0;
    bottom: 0;
    width: 100%;
    color: #990000;
}
.pro-price span{
    font-size: 65%;
}
@media screen and (min-width:768px){
    .pro-flex{
        display: flex;
        flex-wrap: wrap;
        max-width: 980px;
        justify-content: space-between;
        padding-bottom: 100px;
      margin: 0 auto 20px;
    }
    .pro-flex-box{
        width: 45%;
        position: relative;/*
        padding-bottom: 50px;*/
    }
    .pro-flex .sp-w100{
        width: 50%;
        margin: 30px auto 40px;
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 2em;
    }
    .pro-flex-h4{
        padding-top: 30px;
        }
    .pro-detail p{
        font-size: 90%;
    }
    .pro-price{/*
        right: 2%;
        position: absolute;*/
    }
.pro-flex-box a.btn_01{
    width: 100%;/*
    position: absolute;
    bottom: -50px*/
    }
}
@media screen and (min-width:1020px){
    #productWrap .pro-flex .sp-w100{
        width: 40%;
        margin-bottom: 30px;
    }
}
.pro-detail-table{
    padding-left: 0.5em
}
.pro-detail-table td.pb_10{padding-bottom: 30px}
.pro-detail-table td::before{
    content: "：";padding-right: 0.5em
}
.pro-detail-table td dl{
    display: inline-flex;
    flex-wrap: wrap;
    align-items: flex-end;
    max-width: 400px;
}
.pro-detail-table td dl dt{
    width: 30%;
    border-bottom: dashed 1px #efefef;
    padding-bottom: 0.5em;
    margin-bottom: 0.7em;
}
.pro-detail-table td dl dd{
    width: 70%;
    border-bottom: dashed 1px #efefef;
    padding-bottom: 0.5em;
    margin-bottom: 0.7em;
}
@media screen and (max-width:375px){
    .pro-detail-table td dl{
        display: inline-block;
        vertical-align: top;
    }
    .pro-detail-table td dl dt{
        width: 100%;
        padding-bottom:0;
        margin-bottom: 0;
    border-bottom: none;
    text-align: left;
    }
    .pro-detail-table td dl dd{
        width: 100%;
        text-align: right;
    }
    .pro-detail-table th{
        display: block;
        width: 100%;
    }
    .pro-detail-table td{
        display: block;
        width: 100%;
        text-align: right;
    }
}
/* cost page ------------------------------------------*/
.table-01{
    padding-top: 10px;
    width: 100%;
}
.table-01 thead th,.table-01 thead td{
    font-weight:bold;
    letter-spacing: 2px;
    font-size: 105%;
}
.table-01 tr{
    box-sizing: border-box;
    margin-bottom: 10px;
    padding: 20px 10px 5px;
    border-bottom: 1px solid #EDE6E6;
}
.table-01 tr,.table-01 th,.table-01 td{
    box-sizing: border-box;
    display: block;
    line-height: 1.8em;
    width: 100%;
}
.table-01 td{
    text-align: right;
    padding-top: 10px;
}
@media screen and (min-width:768px){
    .table-01{
        padding-top: 20px;
    }
    .table-01 thead th,.table-01 thead th{
        text-align: center;
    }
    .table-01 tr{
        display: flex;
        text-align: center;
        padding: 0;
        margin-bottom: 0;
    }
    .table-01 th{
        padding: 30px 0 30px 40px;
    }
    .table-01 thead th{
        padding-bottom: 15px;
    }
    .table-01 thead th.price{
        max-width: 180px;
        width: 35%;
        padding-left: 0;
    }
    .table-01 thead th.price p{
        font-size: 80%;
    }
    .table-01 td.price{
        border-left: 1px solid #EDE6E6;
        text-align: center;
        max-width: 180px;
        width: 35%;
        padding: 0;
        position: relative;
    }
    .table-01 td.price p{
        position: absolute;
        top: 50%;
        width: 100%;
        line-height: 0;
    }
}
/* replacement page ------------------------------------------*/
.mkr-sct01-box figure img.prologo{
    height: 55px;
    max-width:none;
    width: auto;
    margin:0 auto 
}
.mkr-sct01-box figure img.disposer{
    max-height: 250px;
    max-width: auto;
    width: auto;
}
@media screen and (min-width:768px){
    .mkr-sct01-box figure img.prologo{
        float: left
    }
}
/* area page ------------------------------------------*/
#area #b,#area #c,#area #d{
    padding-top: 65px;
}
.area-box{
    padding: 0 0 1.5em 5px;
}
.area-box ul li{
    box-sizing:border-box;
    display: inline-block;
    vertical-align: top;
    padding:2px 0 2px 10px;
    letter-spacing: 1px;
}
.area-box ul li dt,.area-box ul li dd{
    display: inline-block;
    padding: 2px 0;
}
.area-box ul li dd::after{
    content: ","
}
.area-box ul li dt::after{
    content: "《";
}
.area-box ul li dd:last-child::after{
    content: " 》";
}
/* info page ------------------------------------------*/
.info-h3{
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    padding: 20px 0 10px;
    color: rgba(79,79,79,1.00);
}
.dl-01-wrap{
    max-width: 900px;
    margin: 0 auto;
}
dl.dl-01{
    line-height: 1.8em;
}
.dl-01 dt{
    box-sizing: border-box;
    font-weight: bold;
    letter-spacing: 2px;
}
.dl-01 dd{
    box-sizing: border-box;
    color: #413D3D;
    font-size: 90%;
    padding: 3px  0 10px 1.2rem;
    border-bottom: dashed 1px #D1CDCD;
    margin-bottom: 15px;
}.dl-01 dd span{
    font-size: 140%;
}
.dl-01 dd.area h3{
    padding-bottom: 2px;
    padding-top: 12px;
}
.dl-01 dd.area h3::before,
.dl-01 dd.area h3::after{
    content: " ● ";
}
.dl-01 dd.area p{
    padding-left: 0.7em;
}
@media screen and (min-width:768px){
    .info-h3{
        padding:40px 0 30px ;
        text-align: center;
    }
    dl.dl-01{
        display: flex;
        flex-wrap: wrap;
        margin: 0 auto;
        width: 100%;
        max-width: 600px;
    }
    .dl-01 dt{
        width: 20%;
        text-align: left;
        border-bottom: dashed 1px #D1CDCD;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .dl-01 dd{
        padding-left: 25px;
        padding-bottom: 20px;
        width: 80%;
        margin-bottom: 20px;
    }
}
/* policy page ------------------------------------------*/
.policy-ol{
    list-style-type: decimal;
    padding: 0 10px;
    line-height: 1.7em;
}
.policy-ol li{
    padding: 10px 0;
}
    .policy-ol li ol{
        list-style-type:lower-roman;
        list-style-position: inside;
        padding: 5px 0;
    }
/* sitemap page ------------------------------------------*/
.sitemap-dl{
    margin: 0.6em auto;
}
.sitemap-dl dt{
    padding-left: 20px;
    color: #283593;
    font-weight: bold;
}
.sitemap-dl dd{
    border-bottom:0;
    width: 100%;
}
.sitemap-dl dd a{
    padding-top: 10px;
}
.sitemap-dl dd a::before{
    content: "";
}
.sitemap-dl dd a span::before{
    content: "└ "
}
@media screen and (min-width:768px){
    .sitemap .sub-sct-inner{
        flex-direction: column;
        display: inline-flex;
        justify-content: space-around;
    }
    .sitemap .sub-sct-inner{
        width: 32.3333%;
    }
    .sitemap .sub-sct01-box{
        margin: 15px auto;
        width: 100%;
    }
}
@media screen and (min-width:1020px){
    .sitemap{
        width: 95%;
        margin: 0 auto;
        max-width: 1200px;
    }
}
/* pagetop ------------------------------------------*/
#pagetop{
    background: #6cbdf4;
    padding: 3px 0;
}
/* footer ------------------------------------------*/
#footer{
    padding-bottom:62px!important;
}
#footerInner{
    font-size: 95%;
    width: 100%;
    background-color: #5e5e5e;
    color: #fff;
}
#footer-logo{
    text-align: center;
    background-color: #fff;
    padding: 15px 0;
}
#footer-logo a{
    text-align: center;
}
#footer-logo img{
    width: 200px;
    margin: 0 auto;
}
#footer-contents{
    border-bottom: 1px solid #E7DBDB;
    width: 90%;
    margin: 0 auto 5px;
    padding: 40px 0 20px;
    max-width: 1200px;
}
.footer-nav1 h3,.footer-nav1 h4,.footer-nav1 li{
    line-height: 2.2em;
}
.footer-nav1 h3{
    color:#E7DBDB;
    font-size: 105%;
}
.footer-nav1 h3 a:link{
    color:#E7DBDB;
}
.footer-nav1 h4{
    color: #a1a1a1;
    font-size: 105%;
    padding: 2px;
}
.footer-nav1 h4 a:link{
    color: #a1a1a1;
}
.footer-nav1 dl{
    padding-bottom: 7px;
}
.footer-nav1 dl ul{
    display: flex;
    flex-wrap: wrap;
}
.footer-nav1 dl ul{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px
}
.footer-nav1 dl ul li{
    padding: 0;
    padding-left: 13px;
    box-sizing: border-box;
}
.footer-nav1 dl ul li a{
    color: #a1a1a1;
}
.footer-nav1 dl ul li a{
    text-decoration: underline;
}
.footer-nav1 dl ul.f-area li{
    display: inline-block;
    padding-left: 0;
}
.footer-nav1 dl ul.f-area li:first-child{
    padding-left: 13px;
}
ul.f-area li::after{
    content: "/";
    padding: 0 0.5em;
}
ul.f-area li:last-child:after{
    content: "";
}
#fb-wrap{
    box-sizing: border-box;
    text-align: center;
    width: 100%;
    margin: 20px auto;
    height: 350px;
    overflow: hidden;display: none;
}
.footer-nav2{
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}
.footer-nav2 ul{
    margin: 0 auto;
}
.footer-nav2 ul li{
    padding: 5px 10px;
}
#copyright{
    bottom: 0;
    text-align: center;
    width: 92%;
    margin: 0 auto;
    max-width: 1200px;
    padding:1em 0 8px;
}
    #pagetopInner{
        text-align: center;
    }
        #pagetopInner a{
            width:100%;
            min-height: 1em;
            color: #fff;
            display: block;
            line-height: 1em;
            padding: 8px 0
        }
            #pagetopInner a:hover{
                color: #ED754C;
            }
            #pagetopInner a:visited,#pagetopInner a:active{
                color: #fff;
            }
.top-news{
    text-align: center;
    background-color: #283593;
    width: 100%;
    position: fixed;
    bottom: 0;
    height: 62px;
}
.top-news p{
    color: #fff;
    padding: 5px 0;
    font-size: 1.3em;
}
@media screen and (min-width:768px){
    #footer{
        padding-bottom:39px!important;
    }
    #footer-contents{
        display: flex;
        flex-wrap: wrap;
    }
    .footer-nav1{
        display: flex;
        width: 100%;
        max-width: 900px;
		margin: 0 auto 10px;
        justify-content: space-around;
    }
    .footer-nav1 dl{
        width: 30%;
        margin: 0 auto;
        padding:0 2%;
        box-sizing: border-box;
    }
    .footer-nav1 dl ul{
        display: block;
    }
        .footer-nav1 dl ul.f-area li{
        }
        .footer-nav1 dl ul.f-area li:first-child{
        }
        ul.f-area li::after{
            padding: 0;
            content: ""
        }
        #fb-wrap{
            max-width: 350px;
            margin: 0 auto;
            height: 450px;
        }
        .footer-nav2{
            width: 100%;
        }
    .footer-nav2 ul{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        max-width: 500px;
        margin: 0 auto;
    }
    .footer-nav2 ul li{
        padding: 10px;
    }
    .top-news{
        height:39px;
    }
}
@media screen and (min-width:1025px){
}
/* reset------------------------------------------ */
.pc-display
{
	display:none;
}
.tblt-display
{
	display:none;
}
.sp-display
{
	display:inline;
}
.sp-hidden
{
	display:block;
}
.tblt-hidden
{
	display:block;
}
.red{
    color: #FF0004;
}
span.strike{
    position: relative;
    color: #333;
    }
span.strike::before{
    content: "";
    display:  inline-block;
    border-bottom: 3px solid rgba(255,0,0,0.50);
    width: 110%;
    position: absolute;
    left: -5%;
    top:30%;
}
span.strike::after{
    content: "";
    display:  inline-block;
    border-bottom: 3px solid rgba(255,0,0,0.50);
    width: 110%;
    position: absolute;
    left: -5%;
    bottom:30%;
}
.strong{
    font-weight: bold;
    font-size: 120%;
}
.small{
    font-size: 80%;
}
.mt_0{
    margin-top: 0;
}
.ml_0{
    margin-left: 0;
}
.mb_0{
    margin-bottom: 0;
}
.mr_0{
    margin-right: 0;
}
.pt_0{
    padding-top: 0;
}
.pl_0{
    padding-left: 0;
}
.pb_0{
    padding-bottom: 0;
}
.pr_0{
    padding-right: 0;
}
.ta-l{
    text-align: left;
}
.ta-c{
    text-align: center;
}
.ta-r{
    text-align: right;
}
.vt_t{
    vertical-align: top;
}
.fw_n{
    font-weight: normal;
}
.pt_10{padding-top: 10px}
.pt_20{padding-top: 20px}
.pt_30{padding-top: 30px}
.pt_40{padding-top: 40px}
.pt_50{padding-top: 50px}
.pt_60{padding-top: 60px}
.pt_70{padding-top: 70px}
.pt_80{padding-top: 80px}
.pt_90{padding-top: 90px}
.pt_100{padding-top: 100px}
.pb_10{padding-bottom: 10px}
.pb_20{padding-bottom: 20px}
.pb_30{padding-bottom: 30px}
.pb_40{padding-bottom: 40px}
.pb_50{padding-bottom: 50px}
.pb_60{padding-bottom: 60px}
.pb_70{padding-bottom: 70px}
.pb_80{padding-bottom: 80px}
.pb_90{padding-bottom: 90px}
.pb_100{padding-bottom: 100px}
@media screen and (min-width:768px){
    .pc-display{
        display: inline;
    }
    .sp-display{
        display:none;
    }
    .pcib{
        display: inline-block;
    }
    .fs_ms_1p{font-size: 100%;}
    .fs_ms_11p{font-size: 110%;}
    .fs_ms_12p{font-size: 120%;}
    .fs_ms_13p{font-size: 130%;}
    .fs_ms_14p{font-size: 140%;}
    .fs_ms_15p{font-size: 150%;}
    .fs_ms_16p{font-size: 160%;}
    .fs_ms_17p{font-size: 170%;}
    .fs_ms_18p{font-size: 180%;}
    .fs_ms_19p{font-size: 190%;}
}
#gyoumu{
    padding-top:60px;
}
@media screen and (min-width:1025px){
.col_ls_12{width: 100%;}
.col_ls_11{width: 91%;}
.col_ls_10{width: 83%;}
.col_ls_9{width: 75%;}
.col_ls_8{width: 66%;}
.col_ls_7{width: 58%;}
.col_ls_6{width: 49%;}
.col_ls_5{width: 41%;}
.col_ls_4{width: 33%;}
.col_ls_3{width: 24%;}
.col_ls_2{width: 16%;}
.col_ls_1{width: 8%;}
}
@media screen and (min-width:768px){
.col_ms_12{width: 100%;}
.col_ms_11{width: 91%;}
.col_ms_10{width: 83%;}
.col_ms_9{width: 75%;}
.col_ms_8{width: 66%;}
.col_ms_7{width: 58%;}
.col_ms_6{width: 49%;}
.col_ms_5{width: 41%;}
.col_ms_4{width: 33%;}
.col_ms_3{width: 24%;}
.col_ms_2{width: 16%;}
.col_ms_1{width: 8%;}
}
@media screen and (max-width:375px){
    .sp-w100{
        width: 100%;
    }
}

/* 追記 */
#topics-wrap{
    padding: 40px 0;
    background-color: rgb(112, 161, 159,0.1);
}
#banner-inner{
    width:  95%;
    margin: 0 auto;
    padding: 80px 0 40px;
    display: flex;
    flex-wrap: wrap;
}
#top-topics{
    max-width: 600px;
    width: 90%;
    margin: 0 auto;
    padding: 15px 0;
    line-height: 2;
    }
#top-topics h3{
font-size: 130%;
font-weight: bold;
margin-bottom: 18px;
    text-align: center;
}
#top-topics p{
    padding-left: 1.5em;
}
#top-topics p.day{
    text-align: left;
padding-left: 10px;
}
span.topics-b{
    font-size: 105%;
    font-weight: bold;
}
#top-topics hr{
    background-color: #8f5e60;
    margin: 1em 0;
}
#secondary{
    display: block;
}
.top_ll{
    text-align: center;
    padding: 10px;
    margin-bottom: 40px;
    border: red 2px solid;
    background: skyblue;
    box-sizing: border-box;
    width:100%;
    text-shadow: 0px 0px 4px #fff;
    }
    .top_ll h3{border-bottom: 2px solid red;}
.top_ll span{padding: 0px;}
.mv_text{
background-color: rgb(0,0,0,0.2);
text-align: left;width: auto;
}
@media screen and (max-width:768px){
    .mv_text{
    width:100%;
    }
}
@media screen and (max-width:375px){
    .pro-detail-table,.pro-detail-table tbody,.pro-detail-table tr,.pro-detail-table th,.pro-detail-table td{
    width:100%;
    display: block;
    }
    .pro-detail-table td.pb_10{
        text-align: right;
        padding-bottom: 5px;
        margin-bottom: 1em;
        border-bottom: 1px dashed #eee;
    }
    .pro-detail-table td::before{
        display: none;
    }
}
.top-category-title{
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 5%;
    color: rgb(40, 53, 147);
    width: 100%;
}
.top-category-title::before{
    content: "- ";
}
.top-category-title::after{
    content: " -";
}
.side-fix{
    position: fixed;
    right: 0;
    bottom: 100px;/*
    writing-mode: vertical-lr;*/
    background: #ED754C;
    opacity: .8;
    border-radius: 50%;
    font-size: 0.9rem;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 1px;
        line-height: 1.3;
}

.side-fix a{
    color: #fff;
}

/*アコーディオン*/
.toggle {
	display: none;
}
.Label {		/*タイトル*/
	padding: 1em;
	display: block;
	color: #fff;
	background:#019ac6;
  margin:1em auto auto;
  text-align: center;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
  background: #fff;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}
#top-faq iframe{
  width: 100%;
  min-height: 1195px;
}
#company #sub-sct01{
    background-color: #f6f6f6;
}