﻿/* PC */
@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  /*-------------
base
-------------*/
  body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, p, blockquote, th, td {
    margin: 0;
    padding: 0;
  }
  img {
    border: 0;
    vertical-align: top;
  }
  body {
    background-color: #fff;
  }
  a {
    color: #696969;
    outline: none;
    text-decoration: none;
    font-size: 12px;
  }
  a:hover {
    text-decoration: none;
  }
  ul, ol {
    list-style: none;
  }
  .fLeft {
    float: left;
  }
  .clearfix:after {
    content: "";
    clear: both;
    display: block;
  }
  /*-------------
firefox fade対策
-------------*/
  img {
    box-shadow: #000 0 0 0;
  }
  img, x:-moz-any-link, x:default {
    box-shadow: #000 0 0 0;
  }
  /*-------------
fontstyle
-------------*/
  body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    line-height: 2.2;
    color: #282828;
    letter-spacing: 0;
    font-weight: 500;
    -webkit-text-size-adjust: 100%;
  }
  /*-------------
container
-------------*/
  #container {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  #header {
    width: 100%;
    position: relative;
    z-index: 100;
  }
  #header_inner {
    width: 100%;
    height: 80px;
    background-color: #282828;
    position: fixed;
    z-index: 100;
  }
  h1.toplogo_left.clearfix {
    margin: 0 0 0 2%;
    padding: 18px 0 0 0;
  }
  /*-------------
menu
-------------*/
  #toggle {
    display: none;
  }
  /**
  Hamburger
**/
  .hamburger {
    position: absolute;
    top: 5em;
    right: 3%;
    margin-left: -2em;
    margin-top: -45px;
    width: 2em;
    height: 45px;
    z-index: 200;
  }
  .hamburger div {
    position: relative;
    width: 3em;
    height: 5px;
    border-radius: 0px;
    background-color: #fff;
    margin-top: 8px;
    transition: all 0.3s ease-in-out;
  }
  /**
Nav Styles
**/
  .nav {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(53, 35, 112, 0.9);
    top: -100%;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    transform: scale(0);
    z-index: -1;
  }
  .nav-wrapper {
    position: relative;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
    top: 0;
  }
  nav.menu {
    width: 100%;
    height: 100%;
    margin-top: 8%;
    overflow: hidden;
  }
  nav.menu h3 {
    font-family: "Roboto", sans-serif;
    color: #fff;
    font-size: 30px;
    line-height: 50px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
  }
  nav.menu ul {
    width: 85%;
    max-width: 1010px;
    overflow: hidden;
    padding: 0 0 0 10px;
    margin: 50px auto 0 auto;
  }
  nav.menu ul li {
    float: left;
    -webkit-transform: skewX(165deg);
    -moz-transform: skewX(165deg);
    transform: skewX(165deg);
    border-right: 2px solid #fff;
    margin: 0 0 20px 0;
  }
  nav.menu ul li:nth-child(1), nav.menu ul li:nth-child(6), nav.menu ul li:nth-child(11) {
    border-left: 2px solid #fff;
  }
  nav.menu ul li:nth-child(5), nav.menu ul li:nth-child(10) {
    border-right: none;
  }
  nav.menu ul li a {
    display: block;
    width: 135px;
    color: #fff;
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    letter-spacing: 0;
    transform: skewX(-165deg);
    padding: 15px 25px 12px 40px;
  }
  nav.menu ul li a span {
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
  }
  nav.menu ul li a img {
    display: block;
    width: 20px;
    float: right;
    margin: -44px 0 0 0;
  }
  nav.menu ul li a:hover {
    opacity: 0.7;
  }
  nav.menu p {
    color: #fff;
    font-family: 'Roboto';
    font-size: 45px;
    line-height: 47px;
    font-weight: 500;
    text-align: center;
    margin: 20px 0 0 0;
  }
  nav.menu p img {
    width: 47px;
    margin: 0 8px 0 0;
  }
  a.menu_contact {
    display: block;
    width: 350px;
    margin: 15px auto 0 auto;
  }
  /**
Animations
**/
  #toggle:checked + .hamburger .top-bun {
    transform: rotate(-45deg);
    margin-top: 25px;
  }
  #toggle:checked + .hamburger .bottom-bun {
    opacity: 0;
    transform: rotate(45deg);
  }
  #toggle:checked + .hamburger .meat {
    transform: rotate(45deg);
    margin-top: -7px;
  }
  #toggle:checked + .hamburger + .nav {
    top: 0;
    transform: scale(1);
  }
  /*-------------
topmain
-------------*/
  .topmain {
    width: 100%;
    background-color: #030303;
    padding-top: 80px;
    margin: 0 0;
  }
  .topmain img {
    width: 1200px;
    display: block;
    margin: 0 auto;
  }
  #side {
    position: fixed;
    top: 100px;
    right: 0;
    z-index: 0;
  }
  #side:hover {
    opacity: 0.8;
  }
  /*-------------
main
-------------*/
  #main {
    width: 100%;
    margin: 30px 0 0 0;
    overflow: hidden;
  }
  .topbox1.clearfix {
    width: 1000px;
    margin: 0 auto 20px auto;
  }
  .topbox1.clearfix ul {
    width: 100%;
    overflow: hidden;
    margin: 0 0 0 0;
  }
  .topbox1.clearfix ul li {
    width: 485px;
    float: left;
  }
  .topbox1.clearfix ul li:nth-child(1) {
    margin: 0 30px 0 0;
  }
  .topbox1.clearfix ul li:nth-child(2) {
    margin: 0 0 0 0;
  }
  .topbox1.clearfix ul li:nth-child(3) {
    margin: -235px 30px 0 0;
  }
  .topbox1.clearfix ul li:nth-child(4) {
    margin: -99px 0 0 0;
  }
  .topbox1.clearfix ul li:nth-child(5) {
    margin: 30px 30px 0 0;
  }
  .topbox1.clearfix ul li:nth-child(6) {
    margin: 30px 0 0 0;
  }
  .topbox1.clearfix ul li:nth-child(7) {
    margin: -235px 30px 0 0;
  }
  .topbox1.clearfix ul li:nth-child(8) {
    margin: -99px 0 0 0;
  }
  .topbox2.clearfix {
    width: 100%;
    background-color: #adadad;
    padding: 40px 0 60px 0;
    margin: 40px 0 0 0;
  }
  .topbox2.clearfix ul {
    width: 390px;
    overflow: hidden;
    margin: 0 auto;
  }
  .topbox2.clearfix ul li {
    float: left;
    width: 175px;
    margin: 0 40px 0 0;
  }
  .topbox2.clearfix ul li:nth-child(2n) {
    margin: 0 0 0 0;
  }
  /*-------------
footer
-------------*/
  #footer {
    clear: both;
    width: 100%;
    border-top: solid 1px #dcdcdc;
    padding: 0 0 20px 0;
    margin: 0 auto;
  }
  .ft_top {
    width: 100%;
    margin: 0 0;
    padding: 30px 0 0 0;
  }
  .ft_top img {
    display: block;
    width: 418px;
    margin: 0 auto;
  }
  .ft_middle {
    width: 1000px;
    margin: 0 auto;
    overflow: hidden;
  }
  .ft_middle ul {
    width: 80%;
    overflow: hidden;
    margin: 20px auto 0 auto;
  }
  .ft_middle ul li:nth-child(1) {
    float: left;
    width: 390px;
    font-size: 45px;
    line-height: 47px;
    font-weight: 700;
    letter-spacing: -1px;
    margin: 8px 0 15px 25px;
  }
  .ft_middle ul li:nth-child(1) img {
    display: inline-block;
    width: 47px;
    margin: 0 10px 0 0;
  }
  .ft_middle ul li:nth-child(2) {
    float: left;
    width: 350px;
  }
  .ft_middle ul li:nth-child(n+3) {
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    margin: 0 0 0 0;
    clear: both
  }
}
/* Tablet */
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  * {
    margin: 0;
    padding: 0;
  }
  *::after, * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  /*-------------
base
-------------*/
  body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, p, blockquote, th, td {
    margin: 0;
    padding: 0;
  }
  img {
    border: 0;
    vertical-align: top;
    width: 100%;
  }
  body {
    background-color: #fff;
  }
  a {
    color: #323232;
    outline: none;
    text-decoration: none;
    font-size: 12px;
  }
  a:hover {
    text-decoration: none;
  }
  ul, ol {
    list-style: none;
  }
  .fLeft {
    float: left;
  }
  .clearfix:after {
    content: "";
    clear: both;
    display: block;
  }
  /*-------------
firefox fade対策
-------------*/
  img {
    box-shadow: #000 0 0 0;
  }
  img, x:-moz-any-link, x:default {
    box-shadow: #000 0 0 0;
  }
  /*-------------
fontstyle
-------------*/
  body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    line-height: 2.2;
    color: #282828;
    letter-spacing: 0;
    font-weight: 500;
    -webkit-text-size-adjust: 100%;
  }
  /*-------------
container
-------------*/
  #container {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  #header {
    width: 100%;
    position: relative;
    z-index: 100;
  }
  #header_inner {
    width: 100%;
    height: 50px;
    margin: 0 auto;
    overflow: hidden;
    background-color: #282828;
    position: fixed;
    z-index: 100;
  }
  h1.toplogo_left.clearfix {
    max-width: 200px;
    margin: 0 0 0 2%;
    padding: 5px 0 0 0;
  }
  /*-------------
menu
-------------*/
  #toggle {
    display: none;
  }
  /**
  Hamburger
**/
  .hamburger {
    position: absolute;
    top: 4em;
    right: 6%;
    margin-left: -2em;
    margin-top: -45px;
    width: 2em;
    height: 45px;
    z-index: 5;
  }
  .hamburger div {
    position: relative;
    width: 3em;
    height: 5px;
    border-radius: 0px;
    background-color: #fff;
    margin-top: 8px;
    transition: all 0.3s ease-in-out;
  }
  /**
Nav Styles
**/
  .nav {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(53, 35, 112, 0.9);
    top: -100%;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    transform: scale(0);
    z-index: -1;
  }
  .nav-wrapper {
    position: relative;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
    top: 0;
  }
  nav.menu {
    width: 90%;
    height: auto;
    text-align: left;
    margin: 50px auto 0 auto;
    overflow: hidden;
  }
  nav.menu h3 {
    font-family: "Roboto", sans-serif;
    color: #fff;
    font-size: 30px;
    line-height: 50px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
  }
  nav.menu ul {
    width: 100%;
    overflow: hidden;
    margin: 15px auto 0 auto;
  }
  nav.menu ul li {
    margin: 0 0 20px 0;
  }
  nav.menu ul li a {
    display: block;
    width: 135px;
    color: #fff;
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    letter-spacing: 0;
    margin: 0 auto 20px auto;
  }
  nav.menu ul li a span {
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
  }
  nav.menu ul li a img {
    display: block;
    width: 20px;
    float: right;
    margin: -44px 0 0 0;
  }
  nav.menu p {
    color: #fff;
    font-family: 'Roboto';
    font-size: 30px;
    line-height: 47px;
    font-weight: 500;
    text-align: center;
    margin: 20px 0 0 0;
  }
  nav.menu p img {
    width: 47px;
    margin: 0 8px 0 0;
  }
  a.menu_contact {
    display: block;
    max-width: 350px;
    margin: 15px auto 0 auto;
  }
  /**
Animations
**/
  #toggle:checked + .hamburger .top-bun {
    transform: rotate(-45deg);
    margin-top: 25px;
  }
  #toggle:checked + .hamburger .bottom-bun {
    opacity: 0;
    transform: rotate(45deg);
  }
  #toggle:checked + .hamburger .meat {
    transform: rotate(45deg);
    margin-top: -7px;
  }
  #toggle:checked + .hamburger + .nav {
    top: 0;
    transform: scale(1);
  }
  /*-------------
topmain
-------------*/
  .topmain {
    width: 100%;
    padding-top: 50px;
    margin: 0 auto;
  }
  #side {
    position: fixed;
    top: 60px;
    width: 50px;
    right: 0;
    z-index: 0;
  }
  /*-------------
main
-------------*/
  #main {
    width: 100%;
    margin: 20px auto 0 auto;
    overflow: hidden;
  }
  .topbox1.clearfix {
    width: 100%;
    margin: 0 auto 20px auto;
  }
  .topbox1.clearfix ul {
    width: 100%;
    overflow: hidden;
    margin: 0 0 0 0;
  }
  .topbox1.clearfix ul li {
    max-width: 485px;
    width: 48%;
    float: left;
  }
  .topbox1.clearfix ul li:nth-child(1) {
    margin: 0 10px 0 0;
  }
  .topbox1.clearfix ul li:nth-child(2) {
    margin: 0 0 0 0;
  }
  .topbox1.clearfix ul li:nth-child(3) {
    margin: -24% 10px 0 0;
  }
  .topbox1.clearfix ul li:nth-child(4) {
    margin: -10.5% 0 0 0;
  }
  .topbox1.clearfix ul li:nth-child(5) {
    margin: 10px 10px 0 0;
  }
  .topbox1.clearfix ul li:nth-child(6) {
    margin: 10px 0 0 0;
  }
  .topbox1.clearfix ul li:nth-child(7) {
    margin: -24% 10px 0 0;
  }
  .topbox1.clearfix ul li:nth-child(8) {
    margin: -10.5% 0 0 0;
  }
  .topbox2.clearfix {
    width: 100%;
    background-color: #adadad;
    padding: 30px 0 40px 0;
    margin: 30px 0 0 0;
  }
  .topbox2.clearfix ul {
    max-width: 390px;
    width: 95%;
    overflow: hidden;
    margin: 0 auto;
  }
  .topbox2.clearfix ul li {
    float: left;
    max-width: 175px;
    width: 46%;
    margin: 0 15px 0 0;
  }
  .topbox2.clearfix ul li:nth-child(2n) {
    margin: 0 0 0 0;
  }
  /*-------------
footer
-------------*/
  #footer {
    clear: both;
    width: 100%;
    border-top: solid 1px #dcdcdc;
    padding: 20px 0;
    margin: 0 auto;
  }
  .ft_top {
    width: 100%;
    margin: 0 0;
    padding: 5px 0 0 0;
  }
  .ft_top img {
    display: block;
    max-width: 418px;
    width: 90%;
    margin: 0 auto;
  }
  .ft_middle {
    max-width: 95%;
    margin: 0 auto;
    overflow: hidden;
  }
  .ft_middle ul {
    width: 100%;
    overflow: hidden;
    margin: 20px auto 0 auto;
  }
  .ft_middle ul li:nth-child(1) {
    float: none;
    font-size: 30px;
    line-height: 47px;
    font-weight: 700;
    text-align: center;
    letter-spacing: -1px;
    margin: 0 0 15px 0;
  }
  .ft_middle ul li:nth-child(1) img {
    display: inline-block;
    width: 47px;
    margin: 0 10px 0 0;
  }
  .ft_middle ul li:nth-child(2) {
    float: none;
    max-width: 350px;
    width: 90%;
    margin: 10px auto;
  }
  .ft_middle ul li:nth-child(n+3) {
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    margin: 0 0 0 0;
    clear: both
  }
}
/* SP */
@media screen and (max-width: 480px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  * {
    margin: 0;
    padding: 0;
  }
  *::after, * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  /*-------------
base
-------------*/
  body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, p, blockquote, th, td {
    margin: 0;
    padding: 0;
  }
  img {
    border: 0;
    vertical-align: top;
    width: 100%;
  }
  body {
    background-color: #fff;
  }
  a {
    color: #323232;
    outline: none;
    text-decoration: none;
    font-size: 12px;
  }
  a:hover {
    text-decoration: none;
  }
  ul, ol {
    list-style: none;
  }
  .fLeft {
    float: left;
  }
  .clearfix:after {
    content: "";
    clear: both;
    display: block;
  }
  /*-------------
firefox fade対策
-------------*/
  img {
    box-shadow: #000 0 0 0;
  }
  img, x:-moz-any-link, x:default {
    box-shadow: #000 0 0 0;
  }
  /*-------------
fontstyle
-------------*/
  body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    line-height: 2.2;
    color: #282828;
    letter-spacing: 0;
    font-weight: 500;
    -webkit-text-size-adjust: 100%;
  }
  /*-------------
container
-------------*/
  #container {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  #header {
    width: 100%;
    position: relative;
    z-index: 100;
  }
  #header_inner {
    width: 100%;
    height: 50px;
    margin: 0 auto;
    overflow: hidden;
    background-color: #282828;
    position: fixed;
    z-index: 100;
  }
  h1.toplogo_left.clearfix {
    max-width: 200px;
    margin: 0 0 0 2%;
    padding: 5px 0 0 0;
  }
  /*-------------
menu
-------------*/
  #toggle {
    display: none;
  }
  /**
  Hamburger
**/
  .hamburger {
    position: absolute;
    top: 4em;
    right: 6%;
    margin-left: -2em;
    margin-top: -45px;
    width: 2em;
    height: 45px;
    z-index: 5;
  }
  .hamburger div {
    position: relative;
    width: 3em;
    height: 5px;
    border-radius: 0px;
    background-color: #fff;
    margin-top: 8px;
    transition: all 0.3s ease-in-out;
  }
  /**
Nav Styles
**/
  .nav {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(53, 35, 112, 0.9);
    top: -100%;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    transform: scale(0);
    z-index: -1;
  }
  .nav-wrapper {
    position: relative;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
    top: 0;
  }
  nav.menu {
    width: 90%;
    height: auto;
    text-align: left;
    margin: 50px auto 0 auto;
    overflow: hidden;
  }
  nav.menu h3 {
    font-family: "Roboto", sans-serif;
    color: #fff;
    font-size: 30px;
    line-height: 50px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
  }
  nav.menu ul {
    width: 100%;
    overflow: hidden;
    margin: 15px auto 0 auto;
  }
  nav.menu ul li {
    margin: 0 0 20px 0;
  }
  nav.menu ul li a {
    display: block;
    width: 135px;
    color: #fff;
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    letter-spacing: 0;
    margin: 0 auto 20px auto;
  }
  nav.menu ul li a span {
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
  }
  nav.menu ul li a img {
    display: block;
    width: 20px;
    float: right;
    margin: -44px 0 0 0;
  }
  nav.menu p {
    color: #fff;
    font-family: 'Roboto';
    font-size: 30px;
    line-height: 47px;
    font-weight: 500;
    text-align: center;
    margin: 20px 0 0 0;
  }
  nav.menu p img {
    width: 47px;
    margin: 0 8px 0 0;
  }
  a.menu_contact {
    display: block;
    max-width: 350px;
    margin: 15px auto 0 auto;
  }
  /**
Animations
**/
  #toggle:checked + .hamburger .top-bun {
    transform: rotate(-45deg);
    margin-top: 25px;
  }
  #toggle:checked + .hamburger .bottom-bun {
    opacity: 0;
    transform: rotate(45deg);
  }
  #toggle:checked + .hamburger .meat {
    transform: rotate(45deg);
    margin-top: -7px;
  }
  #toggle:checked + .hamburger + .nav {
    top: 0;
    transform: scale(1);
  }
  /*-------------
topmain
-------------*/
  .topmain {
    width: 100%;
    padding-top: 50px;
    margin: 0 auto;
  }
  #side {
    position: fixed;
    top: 60px;
    width: 50px;
    right: 0;
    z-index: 0;
  }
  /*-------------
main
-------------*/
  #main {
    width: 100%;
    margin: 20px auto 0 auto;
    overflow: hidden;
  }
  .topbox1.clearfix {
    width: 100%;
    margin: 0 auto 20px auto;
  }
  .topbox1.clearfix ul {
    width: 100%;
    overflow: hidden;
    margin: 0 0 0 0;
  }
  .topbox1.clearfix ul li {
    max-width: 485px;
    width: 48%;
    float: left;
  }
  .topbox1.clearfix ul li:nth-child(1) {
    margin: 0 10px 0 0;
  }
  .topbox1.clearfix ul li:nth-child(2) {
    margin: 0 0 0 0;
  }
  .topbox1.clearfix ul li:nth-child(3) {
    margin: -22% 10px 0 0;
  }
  .topbox1.clearfix ul li:nth-child(4) {
    margin: -9% 0 0 0;
  }
  .topbox1.clearfix ul li:nth-child(5) {
    margin: 10px 10px 0 0;
  }
  .topbox1.clearfix ul li:nth-child(6) {
    margin: 10px 0 0 0;
  }
  .topbox1.clearfix ul li:nth-child(7) {
    margin: -22% 10px 0 0;
  }
  .topbox1.clearfix ul li:nth-child(8) {
    margin: -9% 0 0 0;
  }
  .topbox2.clearfix {
    width: 100%;
    background-color: #adadad;
    padding: 30px 0 40px 0;
    margin: 30px 0 0 0;
  }
  .topbox2.clearfix ul {
    max-width: 390px;
    width: 95%;
    overflow: hidden;
    margin: 0 auto;
  }
  .topbox2.clearfix ul li {
    float: left;
    max-width: 175px;
    width: 46%;
    margin: 0 15px 0 0;
  }
  .topbox2.clearfix ul li:nth-child(2n) {
    margin: 0 0 0 0;
  }
  /*-------------
footer
-------------*/
  #footer {
    clear: both;
    width: 100%;
    border-top: solid 1px #dcdcdc;
    padding: 20px 0;
    margin: 0 auto;
  }
  .ft_top {
    width: 100%;
    margin: 0 0;
    padding: 5px 0 0 0;
  }
  .ft_top img {
    display: block;
    max-width: 418px;
    width: 90%;
    margin: 0 auto;
  }
  .ft_middle {
    max-width: 95%;
    margin: 0 auto;
    overflow: hidden;
  }
  .ft_middle ul {
    width: 100%;
    overflow: hidden;
    margin: 20px auto 0 auto;
  }
  .ft_middle ul li:nth-child(1) {
    float: none;
    font-size: 30px;
    line-height: 47px;
    font-weight: 700;
    text-align: center;
    letter-spacing: -1px;
    margin: 0 0 15px 0;
  }
  .ft_middle ul li:nth-child(1) img {
    display: inline-block;
    width: 47px;
    margin: 0 10px 0 0;
  }
  .ft_middle ul li:nth-child(2) {
    float: none;
    max-width: 350px;
    width: 90%;
    margin: 10px auto;
  }
  .ft_middle ul li:nth-child(n+3) {
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    margin: 0 0 0 0;
    clear: both
  }
}