.header-fixed{
    /* 追従 */
    position: -webkit-sticky;
    position: fixed;
    top: 0;
    
    padding: 10px;
    z-index: 100000;
    background-color: #00AA13;
    box-sizing: border-box;
	margin-top: 60px;
	width: 100%;
}

.header-fixed-in{
    position: relative;
    height: 30px; /* ヘッダーの縦幅を指定 */
}

/* チェックボックスは非表示（ラベルで操作するため） */
#header-hamburger{
    display: none;
}

/* ハンバーガーアイコンの位置を指定（左） */
.header-hamburger-icon{
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
/* ハンバーガーアイコンの三本線をCSSで書く（上下の線） */
.header-hamburger-icon span{
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    border-top: solid 4px #FFF;
    border-bottom: solid 4px #FFF;
    box-sizing: border-box;
    cursor: pointer;
}
/* ハンバーガーアイコンの三本線をCSSで書く（中央の線） */
.header-hamburger-icon span:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 4px;
    top: 4px;
    background-color: #FFF;
}
/* 中央にサイトロゴを表示 */
.header-site-icon{
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}
.header-site-icon img{
    width: auto;
    height: 100%;
}

/* 背景を暗くする（デフォルトは非表示） */
#header-close{
    display: none;
    position: fixed;
    z-index: 150000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
}

/*スライドで表示させるコンテンツ*/
#header-content{
    z-index: 200000;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 60%;
    max-width: 300px;
    box-sizing: border-box;
    padding: 5px;
    transition: .3s;
    background: #FFF;
    /* デフォルト非表示（左側の見えないところに位置させる） */
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

/*チェックが入ったらコンテンツを表示*/
#header-hamburger:checked ~ #header-content{
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

/*チェックが入ったらコンテンツ外を暗くする*/
#header-hamburger:checked ~ #header-close{
    display: block;
    opacity: .7;
}


.pad_01{
	padding: 8px;
	font-size: 18px;
	border-left: 8px solid #0E921D;
	margin: 12px;
	
}

.pad_02{
	padding: 20px;
}

.menu_01{
	text-align: center;
	font-size: 18px;
	background-color: #CAFFC8;
	padding: 8px;
}

.my_mitsumori_btn{
    display: block;
    width: 6%;
    border-radius: 4px;
    font-size: 18px;
    text-align: center;
    position: absolute;
    top: 8px;
    right: 80px;
}
.my_mitsumori_btn_new {
    display: block;
    /* width: 11%; */
    border-radius: 4px;
    font-size: 18px;
    text-align: center;
    /* position: absolute; */
    top: 8px;
    right: 80px;
}
.my_cyanpen_btn{
    display: block;
    width: 16%;
    border-radius: 4px;
    font-size: 18px;
    text-align: center;
    position: absolute;
    top: 8px;
    right: 164px;
	animation: flash 1.3s linear infinite;
}
.my_cyanpen_btn_new {
    /* display: block; */
    /* width: 16%; */
    border-radius: 4px;
    font-size: 18px;
    text-align: center;
    /* position: absolute; */
    top: 8px;
    right: 164px;
    animation: flash 1.3s linear infinite;
}
@keyframes flash {
  20%,100% {
    opacity: 1;
  }

  80% {
    opacity: 0;
  }
}
	
}





@keyframes reflection {
	0% { transform: scale(0) rotate(45deg); opacity: 0; }
	30% { transform: scale(0) rotate(45deg); opacity: 0.5; }
	31% { transform: scale(4) rotate(45deg); opacity: 1; }
	100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflection {
	0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
	30% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
	31% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
	100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-moz-keyframes reflection {
	0% { -moz-transform: scale(0) rotate(45deg); opacity: 0; }
	30% { -moz-transform: scale(0) rotate(45deg); opacity: 0.5; }
	31% { -moz-transform: scale(4) rotate(45deg); opacity: 1; }
	100% { -moz-transform: scale(50) rotate(45deg); opacity: 0; }
}


/*******************モーダル*****************************************/

.my_modal_btn{
    display: block;
    width: 6%;
    /* padding: 11px; */
    /* border: 1px solid #ccc; */
    border-radius: 4px;
    font-size: 18px;
    text-align: center;
    position: absolute;
    top: 8px;
    right: 26px;
}
.my_modal_btn_new {
    display: block;
    padding: 4px 3px;
    border-radius: 4px;
    font-size: 18px;
    text-align: center;
    top: 8px;
    right: 26px;
}
/* チェックボックスを非表示 */
#my_modal1{
    display: none;
}
/* モーダル */
.my_modal_body1{    
    display: none;
    position: fixed;
    z-index: 100000;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    display: none;
    background-color: #FFF;
    overflow-y: auto;
    /* スマホ用スクロール */
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    /* お好みで */
    width: 90%;
    max-height: 90%;
    max-width: 600px;
}

/* モーダル内ヘッダー */
.my_modal_header{
    padding: 6px;
    background-color: #0065cc;
    color: #FFF;
    font-weight: bold;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
    text-align: center;
	font-size: 16px;
}

.my_modal_header img{
	width:100%;
}


/* クローズアイコン */
.my_modal_close{
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    cursor: pointer;
}
.my_modal_close_icon{
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    cursor: pointer;
}
.my_modal_close_icon span::before,
.my_modal_close_icon span::after{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 84%;
    height: 16%;
    margin: -8% 0 0 -42%;
    background: #FFF;
}
.my_modal_close_icon span::before{
    transform: rotate(-45deg);
}
.my_modal_close_icon span::after{
    transform: rotate(45deg);
}

/* コンテンツ表示 */
.my_modal_content{
    padding: 5px 10px;
}

.my_modal_content li{
    padding: 14px;
    font-size: 16px;
    border-left: 8px solid #038202;
    margin: 10px 0 10px 0;
}




/* 背景を暗くする */
.my_modal_overlay{
    display: none;
    position: fixed;
    z-index: 90000;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    background-color: #000;
    opacity: 0.7;
    cursor: pointer;
}

/* チェック時オーバーレイとコンテンツを表示 */
#my_modal1:checked ~ .my_modal_body1, #my_modal1:checked ~ .my_modal_overlay{
    display: block;
}


/**アコーディオンメニュー**/
.cp_actab {
	position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    color: #333;
    border-bottom: 1px solid #cacaca;
    background: #fff;
}
.cp_actab a {
	color:#333;
}
.cp_actab input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.cp_actab label {
    line-height: 3;
    position: relative;
    display: block;
    padding: 0px 0px 0px 16px;
    cursor: pointer;
    margin: 4px;
    background: #fff;
    border-left: 10px solid #0065cc;
    color: #272727;
    font-size: .9em;
}
.cp_actab .cp_actab-content {
	overflow: hidden;
	max-height: 0;
	-webkit-transition: max-height 0.35s;
	transition: max-height 0.35s;
	color: #333333;
	background: #fff;
}
.cp_actab .cp_actab-content p {
    margin: 0.2em;
    font-size: 14px;
    float: none !important;
    text-align: center;
    position: relative;
    top: -5px;
}
/* :checked */
.cp_actab input:checked ~ .cp_actab-content {
    max-height: 8em;
    width: 32.7%;
    float: left;
    margin: 0.3%;
    background: #f7f7f7;
    text-align: center;
    padding: 1%;
}
.cp_actab img {
    width: 75px !important;
}
.cp_actab p {
    width: auto !important;
}
.picimg{
	width: 20%;
}



/* Icon */
.cp_actab label::after {
	line-height: 3;
    position: absolute;
    top: -18px;
    right: -18px;
    display: block;
    width: 3em;
    height: 3em;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    text-align: center;
    font-size: 25px;
}
.cp_actab input[type=checkbox] + label::after {
	content: '+';
}
.cp_actab input[type=checkbox]:checked + label::after {
	transform: rotate(315deg);
}

.overwhite:hover{
    cursor:pointer;
    filter: alpha(opacity=60);        /* ie lt 8 */
    -ms-filter: "alpha(opacity=60)";  /* ie 8 */
    -moz-opacity:0.6;                 /* FF lt 1.5, Netscape */
    -khtml-opacity: 0.6;              /* Safari 1.x */
    opacity:0.6;
    zoom:1;
}

.center{
	text-align: center;
}


/********商材メニュー************/
nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 113px;
    left: 0;
    background: #fff;
    color: #000;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
}
 
nav.globalMenuSp ul {
    background: #ccc;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
 
nav.globalMenuSp ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px dotted #333;
}
 
/* 最後はラインを描かない */
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
 
nav.globalMenuSp ul li a {
    display: block;
    color: #000;
    padding: 1em 0;
}
 
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateY(0%);
}

.menuSp.active {
    transform: translateY(0%);
}


.navToggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    top: 62px;
    width: 100%;
    height: 51px;
    cursor: pointer;
    z-index: 3;
    background: #80c217;
    text-align: center;
}
 
.navToggle span {
    display: block;
    position: absolute;    /* .navToggleに対して */
    width: 30px;
    border-bottom: solid 3px #eee;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 8px;
}
 
.navToggle span:nth-child(1) {
    top: 14px;
}
 
.navToggle span:nth-child(2) {
    top: 23px;
}
 
.navToggle span:nth-child(3) {
    top: 32px;
}
 
.navToggle span:nth-child(4) {
    border: none;
    color: #eee;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
}

/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 23px;
    left: 8px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 23px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*商材*/
#mobilemenu .item {
  margin: 0;
  padding: .75em 1em;
  color: rgba(0,0,0,.4);
  font-weight: 700;
  border-top: 1px solid rgba(34,36,38,.15);
  -webkit-transition: background .1s ease,color .1s ease;
  transition: background .1s ease,color .1s ease;
  cursor: pointer;
}
#mobilemenu .title, #mobilemenu .item {
  color: #2E2C42;
  font-weight: 700;
  font-size: 14px;
}
#mobilemenu .active.title, #mobilemenu .item:active {
  color: #AD6898;
}
#mobilemenu .icon:not(.dropdown)  {
  margin-left: 2px;
  margin-right: 8px;
}
#mobilemenu .dropdown.icon {
  float: right;
}
#mobilemenu > .content {
  padding: 0px;
}
#mobilemenu > .content > .accordion{
  margin: 0px;
}
#mobilemenu > .content > .accordion > div{
  background: #454359;
  color: #FFFFFF;
  padding-left: 30px;
  border-top: 1px solid #58566e;
  font-weight: 500;
}
#mobilemenu .title .dropdown.icon {
  font-size: 18px;
  margin-top: 0px; 
}
#mobilemenu .title .dropdown.icon::before {
  content: '\f107';
  font-family: Icons;
}
#mobilemenu .active.title .dropdown.icon {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  margin-top: 3px;
}

#mobilemenu > .content > .accordion > .content {
  padding: 0px;
}
#mobilemenu > .content > .accordion > .content > .accordion{
  margin: 0px;
}
#mobilemenu > .content > .accordion > .content > .accordion > .item{
  background: #312F45;
  color: #FFFFFF;
  padding-left: 50px;
  font-weight: 500;
  border-top: 1px solid #45425C;
}

/*********************************/
.overwhite{
    cursor:pointer;
    filter: alpha(opacity=60);        /* ie lt 8 */
    -ms-filter: "alpha(opacity=60)";  /* ie 8 */
    -moz-opacity:0.7;                 /* FF lt 1.5, Netscape */
    -khtml-opacity: 0.7;              /* Safari 1.x */
    /*opacity:0.6;*/
    zoom:1;
        transition: 0.5s;
}

/******news*************/
.news_oshirase {
    color: #333;
    background: #ffffff;
    padding: 15px;
    margin: 20px 10px;
    text-align: left;
    border-radius: 10px;
    border: 2px solid #e30000;
}
.news_oshirase p{
    text-align: center;
}
.news_oshirase2{
	color: #333;
    margin: 20px 0px;
	text-align: left;
	border: 2px solid #d30101;
}

.news_midashi{
	font-size:20px;
	text-align: center !important;
	background: #d30101;
	color: #fff;
	padding: 4px;
	font-weight: bold;
}

/*****サイドメニュー***/
.fa-arrow-circle-right::before{
    font-size: 18px;
    position: relative;
    top: 1px;
    color: #0065cc;
}




/*タブレット*/
@media screen and (max-width : 959px){
.my_mitsumori_btn{
    top: 45px;
}

.my_cyanpen_btn{
    top: 40px;
}
.my_modal_btn{
    top: 45px;
}
.my_mitsumori_btn{
    /*margin-right: 4px;*/
}
.header_leftArea {
    width: 35%;
    float: left;
} 
.header_leftArea img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
} 
.header_leftArea li{
    width: 100% !important;
} 
.header_rightArea {
    float: right;
    display: flex;
    overflow: hidden;
    clear: both;
    height: 70px;
    padding: 3px;
    position: absolute;
    top: 32px;
    right: 20px;
}
.header_rightArea li{
    width: 100% !important;
} 
.header_rightArea img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 4px;
} 
    
    
/********総合メニュー*******/  
    
.barger_menu{
    position: relative;
    background: #29abe9;
    cursor: pointer;
    width: 64px;
    height: 64px;
    border-radius: 8px;
}
.barger_menu span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 11px;
    height: 4px;
    border-radius: 5px;
  background: #fff;
    width: 66%;
  } 
    
.barger_menu span:nth-of-type(1) {
  top:13px; 
}

.barger_menu span:nth-of-type(2) {
  top:23px;
}

.barger_menu span:nth-of-type(3) {
  top:33px;
}
    
    
.barger_menu span:nth-of-type(3)::after {
    content: "Menu";
    position: absolute;
    top: 6px;
    left: -2.5px;
    color: #fff;
    font-size: 0.8em;
    text-transform: uppercase;
    font-weight: bold;
    width: 48px;
}
/********見積りボタン*******/
    
.omitsumori_btn {
    position: relative;
    background: #ff76c2;
    cursor: pointer;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background-image: url("../images/dentaku_bg.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.omitsumori_btn span::after {
    content: "お見積り";
    position: absolute;
    top: 41px;
    left: 6.5px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}
    
/********10年保証ボタン*******/ 
.guarantee_btn{
    position: relative;
    cursor: pointer;
    width: 64px;
    height: 64px;
    border-radius: 5px;
    background-image: url("../images/shield.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
    
    
/********キャンペーンボタン*******/ 
.campaign_btn{
    position: relative;
    cursor: pointer;
    width: 84px;
    height: 64px;
    border-radius: 5px;
    background-image: url("../images/sale_bg.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    
    
    
}
/* apad*/
@media only screen and (max-width:820px){
.cp_actab input:checked ~ .cp_actab-content {
    width: 24.4%;
}
}
/* スマートフォン 横(ランドスケープ) */
@media only screen and (max-width:640px){


}
	
@media only screen and (max-width:480px){
/********総合メニュー*******/  
    
.barger_menu{
    position: relative;
    background: #29abe9;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 5px;
}
.barger_menu span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 12px;
    height: 2px;
    border-radius: 5px;
  background: #fff;
    width: 48%;
  } 
    
.barger_menu span:nth-of-type(1) {
  top:13px; 
}

.barger_menu span:nth-of-type(2) {
  top:19px;
}

.barger_menu span:nth-of-type(3) {
  top:25px;
}
    
    
.barger_menu span:nth-of-type(3)::after {
    content: "Menu";
    position: absolute;
    top: 5px;
    left: -8.5px;
    color: #fff;
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: bold;
    width: 40px;
}
/********見積りボタン*******/
    
.omitsumori_btn{
    position: relative;
    background: #ff76c2;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 5px;
    background-image: url("../images/dentaku_bg.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
} 
.omitsumori_btn span::after {
    content: "お見積り";
    position: absolute;
    top: 30px;
    left: 4.5px;
    color: #fff;
    font-size: 0.6rem;
    font-weight: bold;
    text-transform: uppercase;
}
    
/********10年保証ボタン*******/ 
.guarantee_btn{
    position: relative;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 5px;
    background-image: url("../images/shield.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
    
    
/********キャンペーンボタン*******/ 
.campaign_btn{
    position: relative;
    cursor: pointer;
    width: 70px;
    height: 48px;
    border-radius: 5px;
    background-image: url("../images/sale_bg.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    
    
    
}	
.bt_n{
	border-top:none !important;
}

.br_n{
	border-right:none !important;
}
.bl_n{
	border-left:none !important;
}
.bb_n{
	border-bottom:none !important;
}
	
  #mdropmenu{
     width:100%;
     max-width:500px;
     list-style-type: none;
     border-bottom:1px solid #585858;
     border-top:0;
	  background: #112e90;
	  position: fixed;
	  z-index: 1000;
	  top: 62px;
   }
     #mdropmenu a {
     text-decoration: none;
		 color: #fff;
    }
    #mdropmenu i{
     font-size:30px;
		color: #fff;
    }
	
    #mdropmenu b{
     font-size:30px;
		color: #2B2B2B;
    }
    #mdropmenu li{
     border-top:1px solid #aaa;
    }
    #mdropmenu li:nth-child(2){
     border-top:2px solid #aaa;
    }
    #mdropmenu li ul{
     display:none;
     list-style-type: none;
		background: #fff;
    }
    #mdropmenu table{
     width:100%;
     min-height:42px;
     margin:0;
     padding:0;
     border:0;
    }
    .mlist-left{
     width:80%;
     padding:5px 0 5px 15px;
     vertical-align:middle;
        font-size: 14px;
    }
    .mlist-right{
     vertical-align: middle;
     text-align: center;
     padding: 4px 0 2px 10px;
    }
    .mlist-full{
     width: 100%;
     padding: 5px;
     vertical-align: middle;
    }
    .mleft-second , .mright-second{
     background-color: #f1f1f1;
    }
    .mleft-third , .mright-third{
     background-color: #D8D8D8;
    }
    .mleft-second{
     padding-left: 20px;
    }
    .mleft-third{
     padding-left: 20px;
    }
	
.arrow_r {
  position: relative;
  display: block;
  padding-left: 20px;
  color: #333;
  text-decoration: none;
}
.arrow_r span{
    float: right;
    margin-right: 10px;
}
.arrow_r:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
  transform: rotate(45deg);
  color:#3D3D3D;	
}
.arrow_b {
  position: relative;
  padding-left: 35px;
  color: #333;
  text-decoration: none;
}
.arrow_b:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
  transform: rotate(45deg);
  color:#3D3D3D;
	margin-left: 15px;
}

.news_oshirase2{
	border: none;
}
	
.my_mitsumori_btn{
    top: 8px;
}

.my_cyanpen_btn{
    top: 3px;
}
.my_modal_btn{
    top: 8px;
}
/******news*************/
.news_oshirase p{
    text-align: left;
}
/***ライトメニュー**/
.header_rightArea {
    float: right;
    display: flex;
    overflow: hidden;
    clear: none;
    height: 60px;
    padding: 1.7999px;
    position: relative;
    top: 0;
    right: 0;
}
    
    
    
}

	
	/* スマートフォン 縦(ポートレートSE) */
@media only screen and (max-width:375px){
.my_mitsumori_btn {
    right: 75px;
}
.my_cyanpen_btn {
    top: 4px;
    right: 154px;
}
	}
	




