@charset "UTF-8";


body{
	background:#eee;
	margin: 0px;
	padding:0px;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 16px;
}

a {
	text-decoration: none;
}



.coming{
	width: 1000px;
    text-align: center;	
	margin:50px auto 20px auto;
}

.kouji{
	font-size: 26px;
}

.wrapper{
    width: 80%;
    margin: 0px auto;
}

.header{
    margin: 20px 0 30px 0;
	padding-top: 30px;
    border-top: 4px solid #007ABB;
}

.header-logo{
	margin-top: -20px;
	float: left;
	width: 20%;
	height: auto;
}


.header-navi{
	float: left;
	width: 30%;
	height: auto;
}

.footer{
	
	margin-top: 30px;
	height: 50px;
    text-align: center;	
}


.float-clear {
	clear:both;
	z-index:98;
}

img{
	width: 100%;
	height: auto;
}

.topimage{
	width: 100%;
	height: auto;
}


.contents{
	width: 80%;
	height: auto;
	margin: 30px auto 0px auto;
}


.title--{
    width: 88%;
    height: 50px;
    background-image: url(img/matobadenki-logo2.png);
    background-repeat: no-repeat;
    background-size: 5%;
    padding-left: 12%;
    margin-top: 0px;
    background-position: 0 16px;
	border-bottom: 1px solid #007ABB;
  
}

.title-logo{
	width: 50px;
    height: 60px;
	background-repeat: no-repeat;
	background-size: 40px;
	background-position: 0 6px;
	float:left;
	background-image: url(img/matobadenki-logo2.png);
  
}

.title{
	font-size:12px;
	margin-left:50px;
	line-height: 1.3;
	border-bottom: 1px solid #007ABB;
}

.title-txt{
    color: #007ABB;
    font-size: 30px;
    font-weight: bold;	
	padding-right:30px;
}



dt {
	    float: left ;
	    clear: left ;
	    width: 20% ;
}

dd {
	    float: left ;
	width: 70% ;
}

.aisatu{
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
	margin-bottom: 30px;
}

.daihyou-img{
	float: left ;
	width: 20%;
}

.daihyou-txt{
	float: right ;
	width: 100%;
	margin-bottom: 50px;
}

.servis-txt{
	margin: 20px 0 40px 0;
}

.works{
	min-height: 100vh;
	margin: 20px 0;
}

.top-works{
	margin: 20px 0;
}


.works-tmb , .works-tmb2{
	float: left;
	width: 31%;
	margin: 1% 1% 20px 1%;
	
}

.works-tmb2{
	font-size: 12px;
}



.works-img{
	float: left;
	width: 45%;
	
}

.works-txtarea{
	font-size: 14px;
	float: right;
	width: 50%;
}
.works-title{
	border-bottom: 1px solid #007ABB;
    font-size: 20px;
    font-weight: bold;
	margin-bottom: 20px;
}

.click-txt{
	font-size:12px;
}


/* リセットCSS */

button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  border: 0;
  background: transparent;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

button:hover {
  cursor: pointer;
}

/**************** 以下、ハンバーガーボタンのスタイリング ****************/
.btn {
  /* ボタンの配置位置  */
  position: fixed;
  top: 16px;
  right: 16px;
  /* ボタンの大きさ  */
  width: 58px;
  height: 48px;
  /* バーガーの線をボタン範囲の中心に配置 */
  display: flex;
  justify-content: center;
  align-items: center;
  /* 最前面に */
  z-index: 1000;
}

/***** 真ん中のバーガー線 *****/
.btn-line {
  /* 線の長さと高さ */
  width: 100%;
  height: 4px;
  /* バーガー線の色 */
  background-color: #333;
  /* バーガー線の位置基準として設定 */
  position: relative;
  transition: .2s;
}

/***** 上下のバーガー線 *****/
.btn-line::before,
.btn-line::after {
  content: "";
  /* 基準線と同じ大きさと色 */
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333;
  transition: .2s;
}


.btn-line::before {
  /* 上の線の位置 */
  transform: translateY(-16px);
}


.btn-line::after {
  /* 下の線の位置 */
  transform: translateY(16px);
}

/***** メニューオープン時 *****/
.btn::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% ,-50%);
  display: block;
  content: '';
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /*  丸で囲む線はrgbaで透明に  */
  border: 2px solid rgba(0, 0, 0, 0);
  transition: all .7s;
}

.btn.open::after {
  border: 2px solid #fff;
}

.btn-line.open {
  /* 真ん中の線を透明に */
  background-color: transparent;
}

.btn-line.open::before,
.btn-line.open::after {
  content: "";
  transition: .2s;
}

.btn-line.open::before {
  /* 上の線を傾ける */
	background-color: #fff;/* 線を白く変更 */
  transform: rotate(135deg);
}

.btn-line.open::after {
	background-color: #fff;/* 線を白く変更 */
  /* 上の線を傾ける */
  transform: rotate(-135deg);
}

/* ボタンフォーカス時の装飾 */
.btn:focus .btn-line ,
.btn:focus .btn-line::before ,
.btn:focus .btn-line::after {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, .7);
}

.btn:focus .btn-line.open {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
    
.btn:focus .btn-line.open::before ,
.btn:focus .btn-line.open::after {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, .7);
}

/**************** ここまで、ハンバーガーボタンのスタイリング ****************/

/**************** 以下、メニューのスタイリング ****************/
.menu {
    position: fixed;
    /* メニューの位置マイナス指定で画面外に */
	margin-top:-30px;
    transform : translateX(120%);
    width:85%;
    height: 100vh;
    /* メニューを縦に */
    display: flex;
    flex-direction: column;
    color: #ffffff;
    background-color: rgba(0,122,187,0.80);
    transition: transform .3s;
	z-index:999;
	list-style: none;
}

.menu-list {
    width: 90%;
    height: 50px;
    /* メニューテキスト位置をリスト内中心に */
    text-align: center;
    border-bottom: 1px solid #FFFFFF;
}

.menu-list a{
	text-decoration: none;
	color:#ffffff;
}

.menu-list:hover {
  color: #333;
  background-color: rgba(255, 255, 255, 0.5);
  transition: .3s;
  cursor: pointer;
}

/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
  transform: translateX(30%);
}
.eng{
	font-size:8px;
	margin-top:0px;
}

.navi-logo{
	width: 40%;
	margin: 20px;
}

.contact-area{
	margin-top:30px;
}

.contact-50{
	width: 50%;
	float: left;
}

.contact-50r{
	width: 45%;
	margin-left: 0%;
	float: right;
}

.contact-radioarea{
}

.contact-name{
	width: 100%;
	margin-top: 30px;
}

.contact-input{
	
}

.hissu{
    color: #FF0101;
	font-size:12px;
}


input[type="submit"],
input[type="text"],
select,
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
}

input[type="text"],
textarea {
  background: #f8f8f8;
  display: block;
  font-size: 16px;
  padding: 12px 1%;
  width: 99%;
  transition: 0.8s;
  border-radius: 0;
}



.contact-btn {
	-webkit-appearance: none;
	margin-top: 20px;
  display       : inline-block;
  border-radius : 10px;          /* 角丸       */
  font-size     : 14pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 12px 12px;   /* 余白       */
  background    : #007abb;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  transition    : .3s;         /* なめらか変化 */
  border        : 2px solid #007abb;    /* 枠の指定 */
}
.contact-btn:hover {
  color         : #ffffff;     /* 背景色     */
  background    : #666666;     /* 文字色     */
	border        : 2px solid #666666;    /* 枠の指定 */
}


.contact-btn2 {
	width: 120px;
	margin-top: 20px;
	margin-right: 20px;
  display       : inline-block;
  border-radius : 10px;          /* 角丸       */
  font-size     : 14pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 12px 12px;   /* 余白       */
  background    : #999999;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  transition    : .3s;         /* なめらか変化 */
	text-decoration: none;
}

.contact-btn2:hover {
  color         : #ffffff;     /* 背景色     */
  background    : #666666;     /* 文字色     */
	text-decoration: none;
}

.contact-btn3 {
	width: 120px;
	margin-top: 20px;
  display       : inline-block;
  border-radius : 10px;          /* 角丸       */
  font-size     : 14pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 12px 12px;   /* 余白       */
  background    : #007abb;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  transition    : .3s;         /* なめらか変化 */
  border        : 2px solid #007abb;    /* 枠の指定 */
}
.contact-btn3:hover {
  color         : #ffffff;     /* 背景色     */
  background    : #666666;     /* 文字色     */
}

.more_btn{
    text-decoration: none;
	width: 50%;
    color: #FFF;
    transition: .4s;
    text-align: center;
	text-decoration: none;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-right: 2em;
    padding-left: 2em;
    margin: 40px auto;
    background-color: #666666;
    font-weight: bold;
}
.more_btn a{
	text-decoration: none;
}

.more_btn:hover {
	color: #FFF !important;
	background-color: #000;
}


/* 768px以上はハンバーガーボタン非表示、ヘッダー固定 */
@media screen and (min-width: 768px) {
  .btn {
    display: none;
  }
	.navi-logo{
	display: none;
}


  .menu {
    float: right;
    position: relative;
    transform : translateX(0);
    width: 70%;
    height: 50px;
    /* メニューを横に */
    display: flex;
    flex-direction: row;
    background-color: rgba(255,255,255,0.0);
	  color:#000000;
  }
	
	
	
	.menu-list {
    width: 100%;
    height: 50px;
    /* メニューテキスト位置をリスト内中心に */
    text-align: center;
    border-bottom: 0px solid #000000;
}
	
	.menu-list a{
	text-decoration: none;
	color:#000000;
}

.menu-list:hover {
    color: #007ABB;
    background-color: rgba(255,255,255,0.0);
    transition: .3s;
    cursor: pointer;
    border-bottom: 2px solid #007ABB;
}
	
	.eng{
	font-size:8px;
	margin-top:0px;
}
	
	
}

.pc{
	display: block;
}

.sp{
	display: none;
}

/**************** ここまで、メニューのスタイリング ****************/

/**************** スマホ用 ****************/
@media only screen and (max-width: 768px) {
	
	.wrapper{
    width: 100%;
    margin: 0px auto;
}
	
	.header{
    margin: 0 0 30px 0;
	padding-top: 30px;
    border-top:none;
}

.header-logo{
	margin-left:5%;
	margin-top:-10px;
	float: left;
	width: 60%;
	height: auto;
	
	
}
	
	.title-logo{
	width: 30px;
    height: 40px;
	background-repeat: no-repeat;
	background-size: 30px;
	background-position: 0 6px;
	float:left;
	background-image: url(img/matobadenki-logo2.png);
  
}
	

.title{
	font-size:12px;
	margin-left:40px;
	line-height: 1.3;
	border-bottom: 1px solid #007ABB;
}

.title-txt{
    color: #007ABB;
    font-size: 20px;
    font-weight: bold;	
	padding-right:10px;
}
	
	dt {
    float: left;
    clear: left;
    width: 100%;
    font-weight: bold;		
}

dd {
    float: left;
    width: 100%;
	margin:0 0 20px 0;
    border-bottom: 1px solid #999999;
}
	
	.daihyou-img{
	float: left ;
	width: 50%;
	margin:0 25%;
}

.daihyou-txt{
	float: right ;
	width: 100%;
	margin-bottom: 50px;
}
	
	.works-img{
	width: 100%;
	
}

.works-txtarea{
	width: 100%;
}
	.works-tmb2{
	float: left;
	width: 48%;
	margin: 1% 1% 20px 1%;
	
}
	
	.tell a{
    text-decoration: underline;
    color: #008DDC;
	}
	
	.pc{
	display: none;
}

.sp{
	display: block;
}
	
}
