@charset "utf-8";

/*---------------------------------------------
	body
---------------------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

/* 10px */
body {
  width:100%;
  font-size: 1.8rem;
  color: #000;
  line-height: 1.9;
  text-align: left;
  -webkit-text-size-adjust: 100%;
 font-family: "Noto Sans JP","メイリオ";
}

/* 16px */
p {
  font-size: 1.8rem;
  line-height: 1.7 !important;
}

/* 16px */
img {
  width: 100%;
  height: auto;
}

/*---------------------------------------------
 **  フォント
---------------------------------------------*/
.mincho {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}


/*---------------------------------------------
 **  フッターナビ
---------------------------------------------*/
#footer #nav ul {
  display:none;
}

/*------F---------------------------------------
 **  メイン画像
---------------------------------------------*/

/*---------------------------------------------
	Anchor
---------------------------------------------*/
a {
  outline: none;
}

a:link {
  text-decoration: none;
  color: #000;
  text-decoration: underline;
}

a:visited {
  text-decoration: none;
  color: #000;
}

a:hover {
  color: color-mod(#000 shade(50%));
  text-decoration: none;
}

a:active {
  text-decoration: none;
  color: #000;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*---------------------------------------------
	p
---------------------------------------------*/
p {
  margin-bottom: 1em;
}

p + a {
  margin-top: 1em !important;
}

p + div {
  margin-top: 1.5em !important;
}


/*---------------------------------------------
	imgbox
---------------------------------------------*/
.imgbox img{ width: 100% !important; }


/*---------------------------------------------
 ** ON OFF hover
---------------------------------------------*/
.hover {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hover:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}


/*---------------------------------------------
 **  ページトップ
---------------------------------------------*/
#pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

#pageTop a {
  display: block;
  padding: 5px 3px 0px 3px;
  border-radius: 30px;
  background-color: #02529C;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  background: url(../img/common/page_top.png) no-repeat;
  background-size: 100%;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}


/*---------------------------------------------
 ** パンくずリスト
---------------------------------------------*/
nav#breadcrumbs ol {
  padding: 0;
}

nav#breadcrumbs ol li {
  display: inline;
  list-style-type: none;
  font-size: 80%;
}

nav#breadcrumbs ol li:before {
  content: " > ";
}

nav#breadcrumbs ol li:first-child:before {
  content: "";
}

/*---------------------------------------------
 ** アニメーション
---------------------------------------------*/
@keyframes header {
 0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes header {
 0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.subnav li:nth-child(1) {
  -webkit-animation: header 0.7s ease 0.8s;
  -moz-animation: header 0.7s ease 0.8s;
  animation: header 0.7s ease 0.8s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}
.subnav li:nth-child(2) {
  -webkit-animation: header 0.7s ease 1.0s;
  -moz-animation: header 0.7s ease 1.0s;
  animation: header 0.7s ease 1.0s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}
.subnav li:nth-child(3) {
  -webkit-animation: header 0.7s ease 1.2s;
  -moz-animation: header 0.7s ease 1.2s;
  animation: header 0.7s ease 1.2s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}
.subnav li:nth-child(4) {
  -webkit-animation: header 0.7s ease 1.4s;
  -moz-animation: header 0.7s ease 1.4s;
  animation: header 0.7s ease 1.4s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}
.subnav li:nth-child(5) {
  -webkit-animation: header 0.7s ease 1.6s;
  -moz-animation: header 0.7s ease 1.6s;
  animation: header 0.7s ease 1.6s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}
.subnav li:nth-child(6) {
  -webkit-animation: header 0.7s ease 1.8s;
  -moz-animation: header 0.7s ease 1.8s;
  animation: header 0.7s ease 1.8s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}





/*=================================================================================================================================*/
/**  共通部分	*/
/*=================================================================================================================================*/

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*---------------------------------------------
 ** 見出し
---------------------------------------------*/
/*---------------------------------------------
 ** h2
---------------------------------------------*/
h2 {
  font-size: 3.0rem;
  line-height: 1.5;
  margin-bottom: 1.0rem;
}
h2 strong {
  text-shadow:0px 0px 1px #999;
  letter-spacing: 0.02em;
}

/*---------------------------------------------
 ** h3
---------------------------------------------*/
h3 {
  margin-bottom: 1.5rem;
}

h3.index_info{ text-align: center; font-weight: bold; color: #00468C;}

/*---------------------------------------------
 ** コンテンツ全体
---------------------------------------------*/
#content {
  width: 100%;
}

#main {
  width: 100%;
  margin: 0 auto;
  padding: inherit;
}

/*---------------------------------------------
 ** セクション
---------------------------------------------*/
.section_block {
  margin-bottom: 70px;
}

/*---------------------------------------------
 ** ヘッダー記述
---------------------------------------------*/
#header {
  width: 100%;
  height:93px;
  background-color: #fff;
  position: fixed;
  z-index: 99;
  border-bottom:5px solid #000;
}

.header_wrapper {width:100%; position: relative;}

/* ヘッダー */
.header_inner {
  width:1200px;
  height:100px;
  margin:0 auto;
  position:relative;
}

.tel_box{
  width:35%;
  position:absolute;
  top:0;
  right:-100px;
}
.tel_box div{
  position:relative;
  background:url(../img/main_img/tel_bg.png) no-repeat bottom left ;
}

.tel_box p{
  font-size:4.0rem;
  text-align:center;
  color:#fff;
  z-index:2;
  line-height: 1.4;
  letter-spacing:-1px;
  padding:30px 30px 20px 50px;
}

.tel_box p a{ color: #fff; text-decoration: none; font-weight: bold;}
.tel_box p span{
  font-size:1.6rem;
  display:block;
  letter-spacing:0px;
}

.tel_box p span strong{ border: 1px solid #fff; padding: 0.2em; background: #fff; color: #ff0000;}

/* ロゴ */
h1{
  font-size:2.0rem;
  font-weight:bold;
  position:absolute;
  top:20px;
  text-indent:-999px;
}

/*---------------------------------------------
 **  ナビゲーション
---------------------------------------------*/



/* メインイメージ */




/*---------------------------------------------
 ** トップ コンテンツ
---------------------------------------------*/
#sec00{
  padding-top:98px;
}

#sec01{
  margin:5% auto;
}

#main_img{
  position: relative;
  overflow: hidden;
  max-height: 540px;
}
.catch{
  max-width:715px;
  display: block;
  padding:8% 0 13% 2%;
  position: absolute;
  z-index: 2;
}
.slider {
  display: none;
}
.slider.slick-initialized {
  display: block;
}

#main_img::before{
  content:url(../img/main_img/main_img03.png);
  width:505px;
  height:198px;
  display: block;
  position:absolute;
  bottom: -15%;
  left:-9%;
  z-index: 1;
}
#main_img::after{
  content:url(../img/main_img/main_img04.png);
  width:505px;
  height:198px;
  display: block;
  position:absolute;
  bottom:-15%;
  right:-9%;
}
.sec_in{
  max-width:1200px;
  margin:0 auto;
}
#sec00 h2, #sec01 h2, #sec04 h2, #sec05 h2,#sec06 h2,#sec07 h2{
  color:#D80000;
  font-size:4.0rem;
  font-weight:bold;
  text-align:center;
}

#sec06 h2.index_info{ color: #000 !important;}

#main_img_inn{
  width: 100%;
  padding-top: 10px;
  background: #2980B9;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #FFFFFF, #6DD5FA, #2980B9);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #FFFFFF, #6DD5FA, #2980B9); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}
#main_img_inn h2{
 text-align: center;
 color: #fff;
 letter-spacing: 0.1em;
 padding: 20px 0 30px 0;
}

.subnav{
  width:95%;
  position:relative;
  padding-top: 7%;
}

.subnav ul{
  display: flex;
  position:absolute;
  margin:0 auto;
  left:0;
  right:0;
  bottom:-90px;
  z-index: 2;
}
.subnav ul li{
  width:180px;
  background-color:#D90000;
  border-radius: 10px;
  display: block;
  text-align: center;
  margin:0 6px;
  font-size:2.6rem;
  font-weight:bold;
  color:#fff;
  position:relative;
  letter-spacing:1.5px;
  z-index: 0;
  padding-top:120px;
  padding-bottom:30px;
}
.subnav ul li:nth-child(1)::before{ background:url(../img/common/menu_icon01.png) no-repeat top center;}
.subnav ul li:nth-child(2)::before{ background:url(../img/common/menu_icon02.png) no-repeat top center;}
.subnav ul li:nth-child(3)::before{ background:url(../img/common/menu_icon03.png) no-repeat top center;}
.subnav ul li:nth-child(4)::before{ background:url(../img/common/menu_icon04.png) no-repeat top center;}
.subnav ul li:nth-child(5)::before{ background:url(../img/common/menu_icon05.png) no-repeat top center;}
.subnav ul li:nth-child(6)::before{ background:url(../img/common/menu_icon06.png) no-repeat top center;}

.subnav ul li::before{
  content:'';
  display: block;
  width:56px;
  height:79px;
  z-index: 1;
  margin:0 auto;
  position:absolute;
  top:30px;
  left:0;
  right:0;
}
.subnav ul li::after{
  content:'';
  width:1px;
  height:60px;
  border-top: 20px solid #D90000;
  border-right: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid transparent;
  position:absolute;
  margin:0 auto;
  display: block;
  bottom:-90px;
  right:0;
  left:0;
}

.t_box{
  width:80%;
  margin:0 auto;
}
#sec00 .t_box{
  padding-top:13%;
}

.area{
  max-width:1200px;
  border:4px solid #D80000;
  position: relative;
  margin:5% auto;
}
.area::after{
  content:'';
  width:247px;
  height:389px;
  display: block;
  position: absolute;
  bottom:-50px;
  right:10px;
  background:url(../img/common/woman.png) no-repeat;
}

.area h3{
  font-size:2.4rem;
  font-weight: bold;
  padding:1% 3%;
  border-bottom:1px solid #D80000;
  color:#D80000;
}
.area h3 span{
  font-size:1.4rem;
  display: inline-block;
  color:#000;
}
.area_data{
  width:75%;
  display: flex;
  margin-left:2%;
}
.area_data div{
  width:33%;
  margin-right:2%;
  margin-bottom:2%;
  display:flex;
}
.area_data div:last-child{
  margin-right:0;
}

.area_data p{
  width:10%;
  height:auto;
  min-height: 160px;
  padding:0 5% 0% 6%;
  line-height: 0.5;
  font-weight: bold;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode:vertical-rl;
  color:#fff;
  text-align:center;
  font-size:2.0rem;
  margin-right:2%;
  background: #D80000;
}
.area_data ul{
  width:74%;
  line-height: 1.6;
  background-color: #fff;
  padding-left:7%;
}
.area_data li{
  display: inline-block;
  margin-right:2%;
  font-size:1.4rem;
}
.area_data li::before{
  content:'■';
  color:#D80000;
}



.point_box{
  width: 100%;
  margin:2% auto;
}

.point_data:nth-child(1){background: url(../img/common/point01.jpg) no-repeat; background-size:contain;}
.point_data:nth-child(2){background: url(../img/common/point02.jpg) no-repeat; background-size:contain;}
.point_data:nth-child(3){background: url(../img/common/point03.jpg) no-repeat; background-size:contain;}
.point_data:nth-child(4){background: url(../img/common/point04.jpg) no-repeat; background-size:contain;}
.point_data:nth-child(5){background: url(../img/common/point05.jpg) no-repeat; background-size:contain;}

.point_data{
  width:48%;
  margin:0 auto 5%;
  float:left;
  position:relative;
  padding-top: 17%;
  background-size:contain;
}
.point_data:nth-child(2n-1){
  margin-right:4%;
  margin-top:-10%;
}

.point_data:nth-child(2){
  margin-top:8%;
}
.point_data:nth-child(1){
  margin-top:0;
}
@-webkit-keyframes fuwafuwa {
	0% {-webkit-transform:translate(0, 0);}
	50% {-webkit-transform:translate(0, -10px);}
	100% {-webkit-transform:translate(0, 0);}
}
@-moz-keyframes fuwafuwa {
	0% {-moz-transform:translate(0, 0);}
	50% {-moz-transform:translate(0, -10px);}
	100% {-moz-transform:translate(0, 0);}
}
.fuwafuwa {
  width:12%;
  font-size:3.0rem;
  color:#fff;
  font-weight: bold;
  float:left;
  background:url(../img/common/point_bg.png) no-repeat left 15px top 0;
  padding: 5% 0 3% 5%;
	-webkit-animation-name:fuwafuwa; /* fuwafuwaっていうアニメーションをしてね！ */
	-webkit-animation-duration:1.5s;
	-webkit-animation-iteration-count:infinite;
	/*-webkit-animation-direction:alternate;*/
	-webkit-animation-timing-function:ease;

	-moz-animation-name:fuwafuwa;
	-moz-animation-duration:1.5s;
	-moz-animation-iteration-count:infinite;
	/*-moz-animation-direction:alternate;*/
	-moz-animation-timing-function:ease;
}
.point_data h3{
  width:80%;
  margin:0 auto;
  float:left;
  color:#D80000;
  font-weight:bold;
  font-size:2.4rem;
  line-height:1.6;
  position:relative;
}
.point_data h3 span{
  display     : inline-block;
  font-weight : bold;
  color       : #D80000;
  text-shadow:  2px  2px 10px #fff ,
  -2px  2px 10px #fff ,
  2px -2px 10px #fff ,
  -2px -2px 10px #fff;
}

.point_data p{
  width:95%;
  margin:0 auto;
  clear:both;
}
/*
.point_data:nth-child(1) h3::before{ content:'1';}
.point_data:nth-child(2) h3::before{ content:'2';}
.point_data:nth-child(3) h3::before{ content:'3';}
.point_data:nth-child(4) h3::before{ content:'4';}
.point_data:nth-child(5) h3::before{ content:'5';}


.point_data h3::before{
  font-size:3.0rem;
  position:absolute;
  color:#fff;
  text-shadow: none;
  top:30px;
  left:13px;
}
*/


.p_phone{
  width:48%;
  border-top:4px double #D80000;
  border-bottom:4px double #D80000;
  display: flex;
  padding:2% 0;
  margin:15% auto 0;
}
#sec01 .p_phone{
  float:left;
}
.phone_no{
  width:55%;
  text-align: center;
}
.phone_no p{
  font-size:4.0rem;
  color:#D80000;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom:0;
  letter-spacing:-2px;
}
.phone_no p span{
  font-size:1.4rem;
  color:#000;
  font-weight: normal;
  display: block
}
.mail_btn{
  display:block;
  color:#fff;
  margin:0 auto;
}
.mail_btn a{
  width:170px;
  height:60px;
  display: block;
  background:url(../img/common/mail_logo.png) no-repeat left 20px top 25px #D80000;
  padding:15px 0 0 46px;
  color:#fff;
  text-decoration: none;
  font-size:2.2rem;
}


#sec_mov{
  margin: 15px auto 50px auto;
}

.movie{
  display: block;
  position: relative;
  text-align: center;
  margin:20px auto;
}

.youtube iframe{
width: 100%;
}
.youtube_btn{
  color:#fff;
}

.youtube_btn a{
  display: block;
  box-sizing: border-box;
  width:15em;
  color:#fff;
  text-decoration: none;
  font-size:2.2rem;
  background: #D80000;
  text-align: center;
  padding: 10px;
  margin: 15px auto;
}

#sec05{ margin-top: 50px;}

#sec01 .mail_btn a{
  padding:15px 0 0 65px;
}

#sec02{
  width:100%;
  margin-top: 50px;
}

#sec02 .work_img{background: url(../img/common/paint_bg.jpg) no-repeat top center;}
#sec03 .work_img{background: url(../img/common/water_bg.jpg) no-repeat top center;}

.work_img{
  width: 100%;
  background-size: contain;
  position:relative;
  z-index: 0;
  padding-top: 19%;
}

.work_img::before{
  content:'';
  width:705px;
  height:200px;
  display: block;
  position:absolute;
  top: 50%;
  left: 3%;
  z-index: 1;
  background:url(../img/common/photo_bg.png) no-repeat;
}
#sec02 .work_img::before{transform:rotateY(180deg);}

#sec02 .work_img h2{background: url(../img/common/paint.png) no-repeat left top;}
#sec03 .work_img h2{background: url(../img/common/water.png) no-repeat left top;}

.work_img h2{
  max-width: 1050px;
  margin:0 auto;
  padding:3% 2% 5% 10%;
  padding-left:145px;
  font-size:4.0rem;
  font-weight: bold;
  display:block;
  z-index: 3;
  position:absolute;
  top: 69%;
  left:0;
  right:0;
  line-height:1.0;
}
#sec02 .work_img h2 span{color:#D80000;}
#sec03 .work_img h2 span{color:#00468C;}

.work_img h2 span{
  font-size:1.4rem;
}

#sec02 .sec_in, #sec03 .sec_in{
  padding-top:8%;
  z-index: 3;
}
#sec02 p.read, #sec03 p.read{
  padding-left:145px;
}
.work_block{
  width:90%;
  display: flex;
  flex-wrap:wrap;
  margin-left:145px;
}
.work_box{
  width:32%;
  margin:0 1% 0 0;
  position:relative;
}


.case_block{
  width:90%;
  display: flex;
  flex-wrap:wrap;
  margin: 20px auto 0 auto;
}
.case_box{
  width:24%;
  margin:0 1% 2% 0;
  position:relative;
}

.case_box .imgbox img{
  width:50% !important;
  height: 200px;
  object-fit: cover;
}

.info_block{
  width:90%;
  display: flex;
  flex-wrap:wrap;
  margin: 20px auto 0 auto;
}

.info_block ul{ width: 100%;}

.info_block ul li{
  border: 1px solid #eee;
  box-shadow: 0 0 4px gray;
  border-radius: 5px;
  padding: 8px 25px;
  margin-bottom:10px;
  background-color: #fff;
}

.info_block ul li span{ font-size: 90%; color: #D80000; display: inline-block; padding-right: 15px; font-weight: bold; }

.work_box:nth-child(3n){
  margin:0 0 2% 0;
}

.case_box:nth-child(4n){
  margin:0 0 2% 0;
}

#sec02 .work_box h3{background:url(../img/common/work_bg01.png) no-repeat right bottom;}
#sec03 .work_box h3{background:url(../img/common/work_bg02.png) no-repeat right bottom;}

.work_box h3{
  width:65%;
  z-index: 2;
  font-size:2.0rem;
  color:#fff;
  font-weight: bold;
  position: absolute;
  top:0;
  left:0;
  padding-right:20px;
  text-align: center;
}
#sec02 .work_box h3 span{background: #D80000;}
#sec03 .work_box h3 span{background: #00468C;}


.case_box h3{
font-size: 120%;
margin: 15px 0 15px 0 !important;
font-weight: bold;
color: #D80000;
text-align: center;
}
.case_box p{
 margin: 0;
 padding: 0;
 font-size: 85%;
 text-align: center;
 color: #666;
}

.work_box h3 span{
  display: block;
  padding:3% 5% 3% 5%;
  text-align: center;
}
.work_box img{
  width:80%;
  max-width:265px;
  height:auto;
  box-shadow: 10px 10px #eee;
  position:absolute;
  top:6%;
  left:8%;
  z-index: 0;
}
.work_box p{
  width:84%;
  padding-top: 95%;
}
.price_box{
  margin-left:145px;
  margin-bottom:5%;
}

.c_name{
  width:80%;
  background:url(../img/common/company_bg.png) no-repeat top center;
  margin:8% auto 0;
}
.c_name p{
  font-size: 4.0rem;
  font-weight: bold;
  text-align: center;
  padding:19% 0 11%;
  line-height: 1.6;
  margin-bottom:0;
}
.c_name p span{
  font-size: 2.4rem;
  letter-spacing: 0.8rem;
  display: block;
}

.c_info{
  width:80%;
  margin:0 auto 3%;
}
.c_info table{
  width:100%;
  border: 1px solid #ccc;
}
.c_info tr{
  border-bottom: 1px solid #ccc;
}
.c_info th{
  width:30%;
  font-weight:bold;
  padding: 20px 15px 15px 15px;
  background-color:#D80000;
  text-align: center;
  color:#fff;
}
.c_info td{
  padding: 20px 15px 15px 20px;
  margin-left: 30%;
}
.c_info2{
  text-align: center;
}
.c_info2 p.add{
  font-size:3.0rem;
  font-weight: bold;
  margin:2% auto 5%;
}

#sec_map iframe{
  width:100%;
  height:450px;
  margin:0 auto 5%;
}


/*---------------------------------------------
 ** フッター コンテンツ
---------------------------------------------*/
#footer .contact{
  max-width:1148px;
  margin:5% auto 3%;
}
#footer .contact{
  display: block;
}
#footer .contact_sp{
  display: none;
}

#footer .contact img{
  width:100%;
}




#sec06{
  background: #F4F6F9;
  padding: 25px 0;
}

/**  indexTODAY件数	*/
.today_block{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  margin: 20px auto;
  align-items: center;
}

.today_block_inner{
  box-shadow: 0 0 4px grey;
  background: #fff;
  margin-right: 1%;
  margin-bottom: 1%;
 }

 .today_block_inner{
   display: flex;
   flex-wrap: wrap;
 }

 .today_block_inner div{ width: 100%;}

 .today_block_inner .today_eyecatch img{
   width: 100%;
   max-width: 100%;
   height: 100%;
   display: inline;
 }

 .today_block_inner .today_text{ padding-bottom: 20px;}

 .today_block_inner p{
  padding: 5px 20px 0 20px;
  font-size: 14px !important;
  font-weight: bold;
  margin: unset;
}

.today_block_inner p span{
  font-size: 10px !important;
  margin: unset;
}

.today_text p span{ float: right !important; clear: both;}

h3.today_block_ttle{
  background: #D90000;
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 20px;
}

/* コピーライト */
#copyright {
  font-size: 0.8em;
  width: 100%;
  text-align: center;
  letter-spacing: 3px;
  padding: 15px 0 18px;
}



/*---------------------------------------------
 **  youtube
---------------------------------------------*/
