@charset "UTF-8";
/*!
Theme Name: boardstore
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.1.0
*/


/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;}
ul{list-style:none;}
table{border-collapse:collapse;border-spacing:0;}
caption,th{text-align:left;}
q:before,q:after{content:'';}
object,embed{vertical-align:top;}
legend{display:none;}
h1,h2,h3,h4,h5,h6{font-size:100%;}
img,abbr,acronym,fieldset{border:0;}

body{
	font-size: 16px !important;
	line-height: 2 !important;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight:400 !important;
	overflow-x: hidden;
	color: #000;
	letter-spacing: 0.2px;
}



html {
  scroll-behavior: smooth;
}


a{
	color: #666;
	text-decoration: none;
	transition: 0.7s;
}

a img {
	transition: 0.7s;
}

a:hover img{
	opacity: 0.7;
}


a:active, a:focus,input:active, input:focus{outline:0;}

* {
    box-sizing: border-box !important;
}

h2 {
	font-size: 30px !important;
	font-weight: 600 !important;
}


/* 共通
------------------------------------------------------------*/

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


.mtb10 {margin: 10px 0 !important;}
.mtb20 {margin: 20px 0 !important;}
.mtb30 {margin: 30px 0 !important;}
.mtb50 {margin: 50px 0 !important;}

.mt10 {margin-top: 10px !important;}
.mt20 {margin-top: 20px !important;}
.mt30 {margin-top: 30px !important;}
.mt40 {margin-top: 40px !important;}
.mt50 {margin-top: 50px !important;}
.mt70 {margin-top: 70px !important;}

.mb10 {margin-bottom: 10px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb70 {margin-bottom: 50px !important;}
.mb100 {margin-bottom: 100px !important;}

.ptb70 {padding: 70px 0 !important;}

.pb30 {padding-bottom: 30px !important;}
.pb50 {padding-bottom: 50px !important;}

.pt20 {padding-top: 20px !important;}
.pt30 {padding-top: 30px !important;}
.pt70 {padding-top: 70px !important;}
.pt120 {padding-top: 120px !important;}

.spcr20 {height: 20px !important;}
.spcr30 {height: 30px !important;}
.spcr50 {height: 50px !important;}
.spcr70 {height: 70px !important;}
.spcr100 {height: 100px !important;}


.bg-lg-0 {background: #F1F1F1;}
.bg-lg {background: #F1F1F1;padding: 50px 0;}
.bg-lg-t {background: #F1F1F1;padding-top: 50px;}
.bg-lg-b {background: #F1F1F1;padding-bottom: 50px;}

.f12 {
	font-size: 12px;line-height: 1.6 !important;margin-bottom: 10px;
}
.f14 {
	font-size: 14px;line-height: 2 !important;
}
.f18 {font-size: 18px;font-weight: 500;display: inline-block; margin-right: 10px;}
@media screen and (max-width:800px) {
	.f18 {font-size: 16px;font-weight: 500;display: inline-block; margin-right: 10px;}
}

.center {
	text-align: center;
	margin: 0 auto;
}

.red {
	color: red;
}

.sp-br{
    display: none;
}

.pc-br{
    display: block;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
    .sp-br{
        display: block;
    }
	.pc-br{
        display: none;
    }
}


.img-s {
	width: 70%;
	max-width: 500px;
	margin: 0 auto;
}

.center-all {
	display: inline-block;
}

/* header
------------------------------------------------------------*/

.header{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
	background: #fff;
	z-index: 100;
	display: flex;
    justify-content: center;
    align-items: center;
}
.header_inner {
  position: relative;
}
.logo{
  position: absolute;
	width: 250px;  
}
.title{
  font-size: 2rem;
  font-weight: 600;
}

.main{  
  margin-top: 60px;
}

.sns {
	font-size: 18px;
}
.sns-a {
		padding: 0 5px;
	}

@media only screen and (max-width: 1000px) {
	
	.header{
  height: 60px;
		justify-content:flex-start;
    align-items:flex-start;
}
	.header_inner {
  position: relative;
      top: 20px;
    left: 30px;
}
	
	.logo {
		width: 150px;
	}
	
  .nav {
    position: fixed;
    right: -370px; /* 右から出てくる */
    top: 0;
    width: 350px; /* スマホに収まるサイズ */
    height: 100vh;
    padding-top: 60px;
    background-color: #fff;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    position: absolute;
    right: 15px;
    top: 7px;
    width: 40px; /* クリックしやすい幅 */
    height: 40px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav_item {
    text-align: center;
    padding: 0 25px;
  }
  .nav_item a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
	  font-weight: 500;
  }
  .nav_item a:hover {
    background-color: #eee;
  }
	
	.sns-a {
		display: inline-block !important;
    text-decoration: none;
	  font-weight: 500;
		padding: 10px 5px !important;
	}
	
  .hamburger_border {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #333;
    transition: all .6s;
  }
  .hamburger_border_top {
    top: 12px;
  }
  .hamburger_border_center {
    top: 22px;
  }
  .hamburger_border_bottom {
    top: 32px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
}/* sp */

@media only screen and (min-width: 1000px) {
  .header_inner{
    width: 100%;
    padding: 10px 30px;
    position: relative;
  }
  .logo{
	  
  }
  .nav_list{
    text-align: right;
	  font-size: 14px;
  }
  .nav_list li{
    display: inline-block;
    text-align: right;
    padding-left: 20px;
  }
  .nav_list li a{
    font-weight: 600;
	  transition: 0.2s;
  }
	.nav_list li a:hover{
	color: #999;
  }
	
}/* pc */


.menu-c {
	color: #fff !important;
	width: 100% !important;
	display: inline;
	background: orange !important;
	border: 0;
	box-sizing: border-box;
	padding: 10px 20px;
}

.menu-c:hover {
	background: #999 !important;
 }

@media only screen and (max-width: 880px) {
	.menu-c {
	border-radius:0;
		margin-top: 10px;
	}
}


/* 
------------------------------------------------------------*/

.top-img {
	width: 100%;
	margin-top: 100px;
}


.slider_box{
  width: 100%;
	position: relative;
    overflow: hidden;
	margin-top: 100px;
}


.slider_box img{
  width: 100%;
  object-fit: cover;
}


.bx-wrapper{
  border:none!important;
  box-shadow: none!important;
	margin-bottom: 30px!important;
}

.bx-viewport .slider li{
  display: block!important;
}



@media screen and (max-width:768px) {
	.top-img {
	margin-top: 60px;
}
}
	



/*PCで無効*/
.pc_show{
    display: block;
}
.sp_show{
    display: none;
}

/*スマートフォンで有効*/
@media screen and (max-width:768px) {
    .pc_show{
        display: none;
    }
	.sp_show{
        display: block;
    }
}







.full {
  position: relative;
  width: 100%;
	min-height: 400px;
    top: 90px;
  background: url("images/top.png")
    center / cover;
	margin-bottom: 100px;
}

@media only screen and (max-width: 1180px) {
.full {
    top: 60px;
}
}


.lead-wrap {
	width: 80%;
	max-width: 500px;
	text-align: center;
    position: absolute;
    display: inline-block;
	background: rgba(255,255,255,.7);
    padding: 30px 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.lead {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.7;
}

@media(max-width: 700px){
	.lead {
	font-size: 20px;
	font-weight: 500;
	color: #000;
}
}

.wrap {
	width: 100%;
}




.one-bn {
	max-width: 900px;
	width: 80%;
	margin: 0 auto 70px;
}


.text {
	margin: 20px auto;
	text-align: left;
}

.content {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto 50px;
	text-align: center;
}

.content h2 {
	font-size: 30px !important;
	margin-bottom: 50px;
	font-weight: 700;
}


.content2 {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto 50px;
	text-align: center;
}

.att {
	font-size: 12px;
	margin: 10px;
}


	


/* 3カラム */


.f-box3 {
  display: flex;
	justify-content:flex-start;
	flex-wrap:wrap;
	margin-top: 30px;
}
	
.fb3 {
	width: calc((100% / 3) - (40px * 2 / 3));
	font-size: 16px;
	text-align: left;
	margin-bottom: 40px;
	margin-right:40px;
	position: relative;
}



.fb3:nth-of-type(3n) {
margin-right: 0;/*右端に来る箱だけ右側の余白を消す*/
}

.fb3 img {
}



.image-trim {
  position: relative;
  overflow: hidden;
  padding-top: 70%; /* 比率 */
}
.image-trim img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
	height: 100%;
  object-fit: cover;
}

.image-trim-s {
  position: relative;
  overflow: hidden;
  padding-top: 100%; /* 比率 */
}
.image-trim-s img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
	height: 100%;
  object-fit: cover;
}

.text-all {
	font-size: 14px;
	padding: 10px 0;
}


@media(max-width: 800px){
  .f-box3 {
   flex-direction: column;
	  width: 100%;
	  margin: 0 auto;
  }
	.fb3 {
	width: 100%;
		font-size: 14px;
}

}








/* 商品紹介 */

.i-title{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 30px;
	text-align: left;
	font-size: 20px;
	font-weight: 600;
}

.s-tit {
	font-size: 14px;
	margin: 5px 0;
}



a.btn_g {
	display: flex;
    align-items: center;
    text-align: center;
    text-decoration: none;
    width: 260px;
    padding: 5px 5px 5px 20px;
    font-weight: bold;
    background: #009488;
    color: #fff;
    position: relative;
    transition: 0.5s;
	font-size: 14px;
	letter-spacing: 1px;
	border-radius: 3px;
}
a.btn_g::before {
	content: '';
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	margin-right: 20px;
}
a.btn_g:hover {
	background: #02af9e;
	color: #fff;
}


a.btn_b {
	display: flex;
    align-items: center;
    text-align: center;
    text-decoration: none;
    width: 260px;
    padding: 5px 5px 5px 20px;
    font-weight: bold;
    background: #86bdd1;
    color: #fff;
    position: relative;
    transition: 0.5s;
	font-size: 14px;
	letter-spacing: 1px;
	border-radius: 3px;
}
a.btn_b::before {
	content: '';
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	margin-right: 20px;
}
a.btn_b:hover {
	background: #9ad8e8;
	color: #fff;
}


a.btn_all {
	display: flex;
    align-items: center;
    text-align: center;
    text-decoration: none;
    width: 170px;
    padding: 5px 5px 5px 20px;
    font-weight: bold;
    background: #86bdd1;
    color: #fff;
    position: relative;
    transition: 0.5s;
	font-size: 14px;
	letter-spacing: 1px;
	border-radius: 3px;
}
a.btn_all::before {
	content: '';
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	margin-right: 20px;
}
a.btn_all:hover {
	background: #9ad8e8;
	color: #fff;
}








.f-box2{
  display: flex;
  justify-content: space-between;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 70px;
	flex-wrap :wrap;
	text-align: left;
}

.fb2{
   width: calc((100% / 2) - 20px);
	position: relative;
}


.img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}





@media(max-width: 800px){

	.f-box2{
  flex-direction: column;
		margin: 0 auto;
}

.fb2{
  width: 100%;
	margin-bottom: 30px;
}
}






/* 商品一覧
------------------------------------------------------------*/

.i-tit {
	font-size: 18px;
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 30px;
}


.wk-b {
	background: #000;
	color: #fff;
	padding: 2px 6px;
	margin-right: 5px;
	font-size: 10px;
	font-weight: 600;
	border-radius: 3px;
}

.ml-10 {
	margin-left: 10px;
}



.c-tbox {
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto 50px;
	justify-content: space-between;
	text-align: left;
}

.c-t1 {
    flex: 1;
	text-align: left;
  }
.c-t2 {
    width: 400px;
	padding-left: 70px;
	font-size: 14px;
	padding-top: 30px;
  }


@media(max-width: 800px){

	.c-tbox {
	flex-direction: column;
		margin: 0 auto;
}
.c-t1 {
    width: 100%;
  }
.c-t2 {
    width: 100%;
	margin: 0 auto 30px;
	padding-top: 20px;
	padding-left:0;
  }
}






.c-mds {
	display: inline-block;
	border-bottom: solid 3px #000;
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 50px;
	padding-top: 20px;
}

@media(max-width: 700px){
	.c-mds {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 50px;
		line-height: 1.6;
}
}




.c-faq {
	
}

.qa-004 dt{
    display: flex;
    align-items: center;
    position: relative;
    margin: 0;
    padding: 2em 2em 1em 5.5em;
    color: #333333;
	background: #fff;
	text-align: left;
}

.qa-004 dd {
    display: flex;
	flex-wrap: wrap;
    align-items: center;
    position: relative;
    margin: 0;
    padding: 1em 2em 2em 5.5em;
    color: #333333;
	background: #fff;
	text-align: left;
}

.qa-004 img {
    max-width: 400px;
	padding: 10px 0;
}

.spacer {
  width: 100%;
}

.qa-004 dt {
    font-weight: 600;
}

.qa-004 dd + dt {
    margin-top: 1em;
}

.qa-004 dt::before,
.qa-004 dd::before {
    display: inline-block;
    position: absolute;
    width: 40px;
    height: 40px;
    left: 30px;
    border-radius: 50%;
    color: #fff;
    font-weight: 600;
    font-size: 1.1em;
    line-height: 40px;
    text-align: center;
}

.qa-004 dt::before {
    background-color: #64B5F7;
    content: 'Q';
}

.qa-004 dd::before {
    background-color: orange;
    content: 'A';
}








/* お問い合わせ
------------------------------------------------------------*/


.sw-form {
	padding: 0;
	margin: 0 auto;
	text-align: left;
}


.sw-q {
	margin-bottom: 20px;
    font-size: 14px;
	    display: flex;
    justify-content: space-between;
}

.sw-1 {
	width: 200px;
    padding-top: 15px;
	font-weight: 600;
}

.sw-2{
	flex: 1;
}

.pt15 {
	padding-top: 15px;
}

@media screen and (max-width: 768px) {
	.sw-form{
	width: 100%;
}
	.sw-q {
	flex-direction: column;
}

.sw-1 {
	width: 100%;
}
.sw-2{
	width: 100%;
}
}

.fm-red {
	color: red;
	font-weight: 500;
}

input, textarea {
  width: 100%;
  max-width: 100%;
  margin: 0.5rem 0;
  padding: 0.7rem 1rem;
	    border: none;
    background: #FFF;
  color: #3C3C3C;
	font-size: 14px !important;
	display: inline-block;
}




/* 送信ボタン */
input.sub-btn {
	width: 300px;
	padding: 10px 0;
	background: #86BDD1;
	color: #FFF;
	border: none;
	margin: 0 auto !important;
    display: block;
    font-weight: 600;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
	cursor:pointer;
	border-radius: 3px;
}

input.sub-btn::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}


/* 送信ボタンホバー */
input.sub-btn:hover{
	background: #ccc;

}





@media(max-width: 600px){
input[type="submit"],
input[type="button"],
input[type="reset"] {
  -webkit-appearance: none;
}
}


.sub-btn input {
	width: 300px;
	padding: 10px 0;
	background:#222850;
	color: #FFF;
	border: none;
	margin: 0 auto !important;
    display: block;
	border-radius: 30px;
    font-weight: 600;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
	cursor:pointer;
}

/* 送信ボタンホバー */
.sub-btn input:hover{
	background: #ccc;
}




input::placeholder, textarea::placeholder {
  color: #7a7a7a;
	font-weight:400!important;
}
input.error, textarea.error {
  background:#FD2629;
  color: #fff;
}
input.error::placeholder, textarea.error::placeholder {
  color: black;
}

textarea {
  height: 10rem;
}

input[type=radio] {
	display: inline;
	width: 20px;
}


.wpcf7-list-item {
	margin: 0 0 0 0 !important;
}
.wpcf7-list-item-label {

}

input[type=checkbox] {
	display: inline;
	width: inherit;
	margin-right: 10px;
}

input[type=select] {
	display: inline;
}




select{
  position: relative;
	font-size: 14px;
  margin: 0.5rem 0;
  padding: 0.7rem 1rem;
	border: none;
    background: #FFF;
  width: 100%;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;

}

.select-wrap {
    position: relative;
}

.select-wrap:after {
  content: "";
    position: absolute;
    right: 15px;
    top: 25px;
    width: 10px;
    height: 10px;
    border-top: 2px solid;
    border-left: 2px solid;
    transform: translateY(-50%) rotate(
-135deg
);
  font-size: 20px;
  pointer-events: none;
}







@media screen and (max-width: 768px) {
	input, textarea {
		width: 100%;
  margin: 0.5rem 0;
  padding: 0.7rem 1rem;
  color: #3C3C3C;
	font-size: 14px !important;
	display: inline-block;
}
}
	

.wpcf7 form.sent .wpcf7-response-output, 
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output, 
.wpcf7 form.sent .wpcf7-response-output {
    border: 0 !important;
    padding: 20px !important;
    background: #f2be41 !important;
    margin: 0 0.5em 1em !important;
}




.wpcf7-date {
	width: 200px;
}

.wpcf7-time {
	width: 80px;
}




.f12 {
	font-size: 12px;
	line-height: 1.6 !important;
	margin-bottom: 10px;
}

.f14 {
	font-size: 14px;
	line-height: 1.6 !important;
	font-weight: normal;
}

.bg-checkbox {
    margin-bottom: 1rem;
}

.bg-checkbox input[type=checkbox] {
    position: relative;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background-color: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    vertical-align: middle;
    transition: .3s;
	padding: 4px 12px;
	border: none;
    background: #FFF;
}



.bg-checkbox input[type=checkbox]:checked {
}

.bg-checkbox input[type=checkbox]:checked::before {
    position: absolute;
    top: 7px;
    left: 7px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    content: '\f00c';
}




/* お知らせ
------------------------------------------------------------*/

.news-wrap {
	width: 100%;
	background:#fff;
	padding: 40px 50px 100px;
	margin-bottom: 20px;
	text-align: left;
}

.news-wrap h3 {
	font-size: 20px;
	margin-bottom: 20px;
}

.news-time{
  margin: 10px 0 0;
  width: 100%;
	font-size: 14px;
	font-weight: 500;
	position: relative;
}

.news-category{
  margin: 0;
  min-width: 120px;
  padding: 0 20px 0 0;
}
.news-category span{
  background: #000;
  color: #FFF;
  text-align: center;
  display: inline-block;
  padding: 5px 20px;
  font-size: 12px;
  line-height: 1;
	border-radius: 3px;
}
.news-title{
  margin: 10px 0 0;
  width: 100%;
	font-size: 18px;
	font-weight: 500;
	position: relative;
}

.time-wrap {
	margin: 10px 0 30px;
	font-size: 12px;
}



/* ページネーション */

.right {
	text-align: right !important;
}

.n-p {
	width: 100%;
	margin: 40px auto 20px auto;
	text-align: center;
	font-size: 14px;
}

.n-p a:hover {
	opacity: 0.7;
}


.page-numbers {
  margin: 10px 5px;
	line-height: 2;
  padding: 0;
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
}

.current {
	background:#ccc;
	color: #fff;
}



.page-numbers:hover {
	background: #ccc;
	color: #fff !important;
	opacity: 1 !important;
	text-decoration: none;
}

@media (max-width: 900px) {

.news-wrap {
	padding: 40px 0 100px;

}
}




/* フッター
------------------------------------------------------------*/


#footer{
	font-size: 12px;
	width: 100%;
	background: #009488;
	color: #fff;
	padding-top: 50px;
	padding-bottom: 30px;
}


.ft-f-box2{
  display: flex;
  justify-content: space-between;
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
	flex-wrap :wrap;
}

.ft-fb2-l{
  width: 200px;
}


.ft-fb2-c{
  width: 300px;
}

.ft-fb2-c p{
  font-size: 16px;
	padding-top: 5px;
}


.ft-fb2-c a{
  color: #fff;
}

.ft-fb2-c a:hover{
  opacity: .7;
}

.ft-fb2-r{
	flex: 1;
	display: flex;
	justify-content:flex-end;
	position: relative;
}



.ft-logo {
	width: 200px;
	margin-bottom:10px;
}


.cont-item {
	text-align: left;
	max-width: 200px;
	margin-right: 20px;
}

.cont-item ul {

}
 
.cont-item li a {
  padding: 5px 10px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    text-decoration: none;
	font-size: 12px;
	color: #fff;
}

.cont-item li a:hover {
	opacity: 0.7;

}

 
.copy-wrap {
	max-width: 1200px;
	width: 90%;
	margin: 20px auto;
	position: relative;
}


.copy {
	text-align:left;
	letter-spacing: 1px;
	position:relative;
	right: 0;
	color: #fff;
}



@media (max-width: 900px) {
.ft-f-box2{
  flex-direction: column;
	 width: 100%;
	padding: 0 30px;
}

.ft-fb2-l,.ft-fb2-c,.ft-fb2-r{
  width: 100%;
		margin:0 0 20px 0;
}
.cont-item {
	margin: 0 auto 10px;
	width: 50%;
	max-width: inherit;
}
.cont-item ul {
  flex-direction: column;
	 width: 100%;
	margin-bottom: 20px;
	}
	
.cont-item li a {
  padding: 5px 0;
}	
.copy-wrap {
	width: 100%;
	margin: 20px auto 30px;
	position: relative;
}
	
.copy {
	text-align: left;
	letter-spacing: 1px;
	position:relative;
    bottom: 0;
	right: 0;
}
}

.child_1{
  order: 1;
}
.child_2{
  order: 2;
}

.child_3{
  order: 3;
}


@media (max-width: 700px) {
.child_1{
  order: 2;
}
.child_2{
  order: 3;
}
.child_3{
  order: 1;
}
}



