@charset "UTF-8";
body {
	font-size:16px;
	margin: 0;
	padding: 0;
	line-height:2;
	-webkit-text-size-adjust: 100%;
    font-family: "vdl-logona", sans-serif;
font-weight: 400;
font-style: normal;
    color: #1d1d20;
}
a, a:link, a:visited, a:hover, a:active {
	text-decoration: none;
     color: #1d1d20; 
}
h1, h2 {
 	margin: 0;
	padding: 0;
	font-family: "magistral", sans-serif;
font-weight: 400;
font-style: normal;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

.red {
	color: #e60012;
}
.blue {
	color: #0000ff;
}
.bold {
	font-weight: bold;
}
.normal {
	font-weight: normal !important;
}
.bgy {
	background-color: #fff100;
}
.ul {
	text-decoration: underline;
}

.pb0 { padding-bottom: 0 !important;}
.pb10 { padding-bottom: 10px !important;}
.pb20 { padding-bottom: 20px !important;}

.mb0 { margin-bottom: 0 !important;}

/*文字の大きさ*/
.f14 { font-size:14px; }
.f16 { font-size:16px; }
.f18 { font-size:18px; }
.f20 { font-size:20px; }
.f22 { font-size:22px; }
.f24 { font-size:24px; }
.f26 { font-size:26px; }
.f28 { font-size:28px; }
.f30 { font-size:30px; }
.f32 { font-size:32px; }
.f34 { font-size:34px; }
.f36 { font-size:36px; }
.f40 { font-size:40px; }
.f48 { font-size:48px; }

/* 
hamburger(ハンバーガーアイコン)
=================================== */
.hamburger {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 300;
}

.hamburger__line {
  position: absolute;
  width: 30px;
  height: 4px;
  right: 0;
  background-color: #000;
  transition: all 0.5s;
}

.hamburger__line--1 {
  top: 1px;
}

.hamburger__line--2 {
  top: 13px;
}

.hamburger__line--3 {
  top: 25px;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  transform: rotate(-45deg);
  top: 15px;
}

.open .hamburger__line--2 {
  opacity: 0;
}

.open .hamburger__line--3 {
  transform: rotate(45deg);
  top: 15px;
}

/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
  position: fixed;
  right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
  top: 0;
  width: 60%; /* 出てくるスライドメニューの幅 */
  padding: 5%;
  height: 100vh;
  background-color: #fff;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}

.sp-nav li {
    font-size: 118%;
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
}


/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}
/*ここまで*/
.image_fr {
	float: right;
	width: 200px;
}

.wrap {
    /*width: 100%;*/
    max-width: 1000px;
    margin: 0 auto;
	padding: 2% 0;}
h2 {
	font-size: 40px;
    display: inline-block;
  position: relative;
    margin-bottom: 5%;
}
h2:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0px; /*下線の上下位置調整*/
  display: inline-block;
  width: 200px; /*下線の幅*/
  height: 3px; /*下線の太さ*/
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%); /*位置調整*/
  background-color: #00a66d; /*下線の色*/
}
h3 {
    font-size: 24px;
    font-weight: bold;
}
.center {
	text-align: center;
}
.bg_gry {
    background-color: #f2f2f2
}
.txt-wrapper {
    padding-bottom: 4%;
}

/*--------------------------------------
背景用*/


/*--------------------------------------
アニメーション用*/


/*--------------------------------------
ヘッダー用*/
#nav {
  width: 100%;
  box-sizing: border-box;
	position:fixed;
	background-color: rgba(255,255,255,0.50);
    z-index: 2000;
}
#nav .pc ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /*width: 60%;*/
    padding-top: 10px;
}
#nav .pc li {
  list-style: none;
}

#nav .pc li:last-child {
    padding-right: 0;
}
#nav a {
  display: block;
  color: #1d1d20;
    font-size: 16px;
    font-family: "magistral", sans-serif;
font-weight: 400;
font-style: normal;
}
#nav .menu_box {
    width: 100%;
    height: 62px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1% 0;
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
    align-items: center;
}
#nav .logo {
    width: 24%;
}
#nav .menu_box li {
  font-size: 90%;
  padding-right: 3%;
}
#nav .menu_box li:last-child {
    padding-right: 0;
}

#home #nav li:first-child a,
#service #nav li:nth-child(2) a,
#company #nav li:nth-child(3) a,
#member #nav li:nth-child(4) a,
#recruit #nav li:nth-child(5) a,
#applicationform #nav li:nth-child(5) a,
#works #nav li:nth-child(6) a,
#contact #nav li:last-child a {
    color: #00a66d;
} 
#nav li a:hover {
    color: #00a66d;
    display: inline-block;
    border-bottom: 2px solid #00a66d;
}
.head_img {
   padding-top: 84px;
}

/*--------------------------------------
メインページ*/
#home header {
	background: url(../images/bg_home_main.jpg) no-repeat center center; /* 画像は適当なものを使ってください */
	background-size: cover;
	height: 100vh;
}
	
#home header .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#home header h1 {
    width: 95%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	}
#home header h1 img{
    width: 50%;
    padding: 0 2%;
	}

/*ヘッダーアニメーション　ここから*/
#home header .animation{
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
}

#home header .keyframe3{
  animation-name: anim_s;
  transform: rotate(10deg);
  animation-duration: 5s;
}

@keyframes anim_s {
  50% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(3deg);
  }
}
/*ヘッダーアニメーション　ここまで*/
/* scroll */
.scroll {
  position: absolute;
  width: 40px;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
}
.scroll a {
  display: block;
  padding-top: 18px;
  color: #000;
  font-size: 12px;
  text-align: center;
  transition: all 0.5s;
}
.scroll a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: border-box;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  transition: all 0.5s;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    -webkit-transform: rotate(-45deg) translate(-3px, 3px);
  }
  40% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    transform: rotate(-45deg) translate(-3px, 3px);
  }
  40% {
    transform: rotate(-45deg) translate(0, 0);
  }
}
.scroll a:hover {
  color: #00561F;
}
.scroll a:hover span {
  border-color: #00561F;
}


#home .about .inner {
    background: url(../images/home/bg_about.png) no-repeat left top;
    background-size: 60% auto;
    text-align: left;
    padding-top: 60px;
}

#home .about .inner .box {
    padding: 3%;
    width: 60%;
    margin-left: auto;
    background-color:  rgba(255,255,255,0.80);
    border: 1px solid #86868b;
}
#home .about .inner .box p {
    padding-bottom: 1em;
}
#home .about .inner .box p:last-child {
    padding-bottom: 0;
}
/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
    margin:0 auto;
}

.slider img {
    width:750px;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}

.slider .slick-slide {
  transform: scale(0.8);/*左右の画像のサイズを80%に*/
  transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center{
  transform: scale(1);/*中央の画像のサイズだけ等倍に*/
  opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
  margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
  margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:20px;/*ドットボタンのサイズ*/
    height:12px;/*ドットボタンのサイズ*/
    display:block;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}
.bottom_line {
    padding: 1%;
    text-align: left;
    border-bottom: 1px solid #86868b;
    
}
.bottom_line:last-child {
    border-bottom: none;
}
#home #menus .block-wrapper {
    display: flex;
	flex-wrap: wrap;
}
#home #menus .block-wrapper a {
     width: calc((100% - 20px) / 2);
    margin-right: 20px;
    margin-bottom: 15px;
}
#home #menus .block {
    width: 100%;
    background-color:  rgba(255,255,255,1.0);
    border: 1px solid #86868b;
    background: url(../images/home/arrow.png) no-repeat 92% 43%;
    background-size: 50px;
    padding: 15px 15px 15px 20%;
    display: flex;
}
#home #menus .block-wrapper a:nth-child(2n) {
    margin-right: 0px;
}

#home #menus .block span {
    vertical-align: middle;
}

#home #menus .block .icon {
    display:table-cell;
  vertical-align:middle;
    width: 52px;
}
#home #menus .block .txt {
    padding-top: 2px;
    padding-left: 10px;
    width: 140px;
    text-align: center;
    line-height: 1.3;
    font-size: 20px;
}
#home #menus .block .txt span {
    font-size: 12px;
}
/*--------------------------------------
サービスページ（SERVICE）*/
#service  #contents .block-wrapper {
    display: flex;
	flex-wrap: wrap;
}
#service  #contents .block {
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
    margin-bottom: 20px;
    background-color:  rgba(255,255,255,1.0);
    border: 1px solid #86868b;
    padding: 20px;
}
#service  #contents .block:nth-child(3n) {
    margin-right: 0px;
}
#service  #contents .block .images {
    width: 30%;
    margin: 20px auto;
}
#service  #contents .block .txt {
    text-align: left;
}
#service #products .inner {
    background: url(../images/service/bg_products.png) no-repeat top right;
    background-size: 58%;
    padding-top: 7%;
}
#service #products  .block-wrapper {
    display: flex;
	flex-wrap: wrap;
    width: 60%;
}
#service #products .block {
    width: 100%;
    margin-bottom: 15px;
    background-color:  rgba(255,255,255,0.80)!important;
    border: 1px solid #86868b;
    padding: 15px 15px 15px 15%;
    background: url(../images/home/arrow.png) no-repeat 92% 43%;
    background-size: 50px;
}
#service #products .block .txt {
    font-size: 24px;
    line-height: 1.1;
    text-align: left;
}
/*--------------------------------------
スタッフ紹介ページ（MEMBER）*/
#member #staff .box {
    width: 100%;
    background-color:  rgba(255,255,255,1.0);
    border: 1px solid #86868b;
    margin-bottom: 30px;
}
#member #staff .staff_01 {
    padding: 4% 4% 4% 27%; 
    background: url(../images/member/staff_01.png) no-repeat;
    background-position: 6% 100px;
    background-size: 20%;
}
#member #staff .staff_02 {
    padding: 4% 27% 4% 4%;
    background: url(../images/member/staff_02.png) no-repeat;
    background-position: 94% 100px;
    background-size: 20%;
}
#member #staff .staff_03 {
    padding: 4% 4% 4% 27%; 
    background: url(../images/member/staff_04.png) no-repeat;
    background-position: 6% 100px;
    background-size: 20%;
}
#member #staff h4 {
    font-size: 20px;
    font-weight: bold;
    border-bottom: 3px solid #86868b;
    margin-bottom: 3%;
}
#member #staff .box p {
    padding-bottom: 1em;
    text-align: left;
}
#member #staff .box p:last-child {
    padding-bottom: 0;
}

#member #staff .box .soft_box {
    border: 1px solid #86868b;
    display: flex;
	flex-wrap: wrap;
    justify-content: center;
    width: 80%;
    padding: 2%;
    margin: 20px auto 0;
    
}

#member #staff .box .soft_box img {
    width: 46px;
    margin-right: 12px;
}
#member #staff .box .soft_box img:last-child {
    margin-right: 0;
}

/*--------------------------------------
会社案内ページ（COMPANY）*/
#company #profile dl {
    display: flex;
    text-align: left;
}
#company #profile dt {
    flex-shrink: 0;
    width: 300px;
    margin: 0 10px 0 0;
    padding: 20px 10px 20px;
    font-weight: bold;
    border-top: 1px solid #00a66d;
}
#company #profile dd {
    width: 100%;
    padding: 20px 10px 20px;
    border-top: 1px solid #86868b;
}
#company #profile dd .history01 {
    display: inline-block;
    width: 4.2em;
    text-align: right;
}
#company #profile dd .history02 {
    display: inline-block;
    width: 2.8em;
    text-align: right;
    margin-right: 1em;

}
#company #greetings .inner {
    background: url(../images/company/tanaka_photo01.png) no-repeat left top;
    background-size: 50% auto;
    text-align: left;
    padding-top: 60px;
}
#company #greetings .inner .box {
    padding: 20px;
    width: 70%;
    margin-left: auto;
    background-color:  rgba(255,255,255,0.80);
    border: 1px solid #86868b;
}
#company #greetings .inner .box p {
    padding-bottom: 1em;
}
#company #greetings .inner .box p:last-child {
    padding-bottom: 0;
}
#company #greetings .inner .box .sig {
    text-align: right;
}

#company #greetings .inner .box .sig img {
    width: 110px;
    margin: 0 20px;
    vertical-align: text-bottom;
}
/*--------------------------------------
採用情報ページ（RECRUIT）*/
#recruit #requirements .inner {
    background: url(../images/recruit/bg_requirements.png) no-repeat;
    background-size: contain;
    background-position: bottom left;
    padding-bottom: 10%;
    margin-bottom: 5%;
}

#recruit #requirements .box {
    width: 65%;
    margin-left: auto;
    background-color:  rgba(255,255,255,0.80);
    border: 1px solid #86868b;
    padding: 5%;
    text-align: left;
}
#recruit #requirements .box dt {
    font-weight: bold;
    font-size: 20px;
    border-bottom:  1px solid #86868b;
}
#recruit #requirements .box dd {
    margin-bottom: 1.5em;
}
#recruit #requirements .box dd:last-child {
    margin-bottom: 0;
}
#recruit #requirements .button {
    background-color: #1d1d20;
    width: 60%;
    padding: 10px;
    margin: auto
}
#recruit #requirements .button p {
    color: #fff;
}
#recruit #message p {
    padding-bottom: 1em;
    text-align: left;
}
#recruit #message p:last-child {
    padding-bottom: 0;
}
#recruit #principles p {
    text-align: left;
    font-weight: bold;
}
#recruit #principles .inner {
    background: url(../images/recruit/bg_principles.png) no-repeat;
    background-size: 23% auto;
    background-position: bottom right;
}
#recruit #principles .inner ul {
    width: 75%;
    margin-right: auto;
    padding-top: 2%;
}
#recruit #principles .inner li {
    display: block;
    text-align: left;
    background-color:  rgba(255,255,255,0.80);
    border: 1px solid #86868b;
    padding: 1.5% 5%;
    margin-bottom: 1.5%;
}

/*--------------------------------------
制作実績（WORKS）*/
#works  #actualresults .block-wrapper {
    display: flex;
	flex-wrap: wrap;
}
#works  #actualresults .block {
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
    margin-bottom: 20px;
    text-align: left;
    background-color:  rgba(255,255,255,1.0);
    border: 1px solid #86868b;
    padding: 20px;
}
#works  #actualresults .block:nth-child(2n) {
    margin-right: 0px;
}
#works  #actualresults .block img {
    width: 70%;
    filter: drop-shadow(3px 3px 4px rgba(0,0,0,0.3));
}
#works  #actualresults .block .detail {
    text-align: center;
    background-color:  rgba(255,255,255,0.9);
    border: 1px solid #86868b;
    position: relative;
    z-index: 20;
    margin-top: -20px;
    margin-left: 30%;
    padding: 10px;
}
/*--------------------------------------
お問い合わせページ*/
#contact .scroll-box,#applicationform .scroll-box {
overflow-y: scroll;
    height: 10em;
    padding: 15px;
    margin-bottom: 30px;
    border: solid 1px #ddd;
    font-size: 12px;
    max-width: 1000px
}
#contact table,#applicationform table {
    width: 100%;
    vertical-align: top;
}
#contact table tr,#applicationform table tr {
    margin: 2% auto;
}
#contact table th,#applicationform table th {
    width: 25%;
    vertical-align: top;
    padding-top: 15px;
    text-align: left;
}
#contact table td,#applicationform table td {
    width: 60%;
}
#contact table .ptb20,#applicationform table .ptb20 {
    padding: 15px 0;
}
#contact .formbox01,#contact .formbox02,
#applicationform .formbox01,#applicationform .formbox02,#applicationform .formbox03 {
    padding: 20px;
    font-size: 16px;
    margin-bottom: 3%;
    background: #f2f2f2;
    border:  solid 1px #ddd;
}
#contact .formbox01,#applicationform .formbox01 {
    width: calc(100% - 40px);
}
#contact .formbox02,#applicationform .formbox02 {
    width: calc(100% - 40px);
    height: 100px;
}
#applicationform .formbox03 {
    width: 200px;
    margin-right: 20px;
}


#contact .formred,#applicationform .formred {
    color: #ff0000;
}
#contact .last,#applicationform .last {
    padding-bottom: 5%;
}
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}
#contact .btn-submit,#applicationform .btn-submit {
    text-align: center;
    width: 60%;
    margin: auto;
}
#contact .submit,#applicationform .submit {
    background-color: #1d1d20;
    width: 100%;
    padding: 10px;
    margin: auto;
    font-size: 16px;
    color: #fff;
    border: none;
    font-family: "vdl-logona", sans-serif;
font-weight: 400;
font-style: normal;
    
}
.wpcf7-not-valid-tip {
    color: #ff0000!important;
    padding-bottom: 10px;
    margin-top: -20px;
    display: none;
}
.hide_error_message .wpcf7-not-valid-tip {
	display: none;
}



/*--------------------------------------
フッター用*/
footer {
	text-align: center;
	font-size: 14px;
	padding:15px 0;
	line-height: 1.5;
	background-color: #f2f2f2;
}
footer .logo {
    width: 50%;
    max-width: 300px;
    margin: auto;
}

/*----------------------------------------
メニュー配置

#menu {
	position: fixed;
	width: 170px;
	bottom:55px;
	right: 1%;
	z-index: 2000;
}
#menu img:hover {
	opacity: 0.7;
}
#menu img {
	max-width: 100%;
	height: auto;
}
#menu .sub_btn {
	padding: 0;
	background-color: transparent;
	border:none;
	margin-bottom: 0;
}

@media screen and (min-width:1240px) {
	#menu {
		position: fixed;
		width: 170px;
		bottom: 55px;
		left: 50%;
		z-index: 2000;
		margin-left: 460px;
	}
}
-------------------------------------------*/

/*--------------------------------------
レスポンシブ*/

@media screen and (min-width: 660px){
	.sp{display:none;}
	br.br {display: none;}
}

@media print, screen and (max-width: 750px) {
    nav .pc ul {
        flex-wrap: wrap;
    }
}
    
    
@media print, screen and (max-width: 660px) {
	body {
		font-size: 90%;
		line-height: 1.4
            ;
    }
	.pc {
		display: none;
	}
	/*br {
    	content: "";
	}
	br:after {
    	margin-right: -.333em;
    	content:"";
	}
	br.br {
		display: block;
	}*/
	#menu2{
		width: 100%;
		position: fixed;
		bottom: 0;
		left: 0;
	}
	#menu2 img {
		width: 100%;
	}
    h2 {
        font-size: 32px;
        margin-bottom: 10%;
    }
    
    section {
        padding: 8% 2%;
    }
     section.topics {
        padding: 8% 0%!important;
    }
    #nav .logo {
        width: 50%;
    }
    #nav a {
        font-size: 20px;
    }
    #nav .menu_box li {
        padding-top: 10px;
    }
    /*トップページ*/
    #home header h1 img {
        width: 100%;
        padding: 8%;}
    #home .about .inner {
        background-size: 90% auto;
        padding-top: 40%;
    }
    #home .about .inner .box {
        width: 90%;
        margin-left: auto;}
    .slider img {
        width: 94vw;
    }
    #home #menus .block-wrapper a {
        width: 100%;
        margin-right: 0;
    }
    
    #home #menus .block {
            padding: 15px 15px 15px 20%;
    }
    #home #menus .block br {
        display: block;
    }
     /*サービスページ*/
    #service #contents .block {
        width: 100%;
        margin-right: 0;
    }
    #service #products .inner {
        background-size: 80%;
        padding-top: 20%;
    }
    #service #products .block-wrapper {
        width: 100%;
    }
    #service #products .block {
        padding: 15px 15px 15px 4%;
    }
    
     /*企業案内*/
    #company #profile dl {
        flex-flow: column;
    }
    #company #profile dt {
        width: 100%;
        padding: 10px;
    }
    #company #profile dd {
        border-top: none;
        padding: 10px;
    }
    #company #greetings .inner {
        background-size: 80% auto;
        padding-top: 35%;
    }
    #company #greetings .inner .box {
        width: 90%; 
    }
    
    #member #staff .staff_01,
    #member #staff .staff_02,
    #member #staff .staff_03 {
        padding: 4%;
        background-position: 50% 100px;
        background-size: 70%;
    }
    #member #staff h4 {
        margin-bottom: 93%;
    }
    #recruit #requirements .inner {
        padding-bottom: 60%;
        margin-bottom: 10%;
    }
    #recruit #requirements .box {
        width: 90%;
        background-color: rgba(255,255,255,0.90);
    }
    #recruit #principles .inner ul {
        width: 80%;
    }
    #works #actualresults .block {
        width: 100%; 
        margin-right: 0;}
    #contact table tr {
    margin-bottom: 0px;
        display: flex;
        flex-flow: column;
    }
    #contact table th {
        width: 100%;
    }
    #contact table td {
        width: 90%;
    }
    #contact table .ptb20 {
        padding: 0;
    }
    #contact .formbox01,#contact .formbox02 {
        width: 100%;
        padding: 15px;
    }
	footer br {
		display: block;
	}
	footer br:after {
		margin-right: 0em;
		content:"";
		display: block;
	}
	
}
