@charset "utf-8";

/*  reset
/* ------------------------------------------------------------------------ */
html {
  overflow-y: scroll;
  height: 100%;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
p,
blockquote {
  margin: 0;
  padding: 0;
}

fieldset {
  display: inline;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

q:before,
q:after {
  content: '';
}

object,
embed {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

img,
abbr,
acronym,
fieldset {
  border: 0;
}

iframe {
  border: 0 !important;
}

li {
  list-style-type: none;
}

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

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*  basic style
/* ------------------------------------------------------------------------ */
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.9;
  text-align: center;
  color: #333333;
  -webkit-text-size-adjust: 100%;
  font-size: 15px;
  min-width: 1160px;
}

div#wrap {
  margin: 0 auto;
  text-align: center;
}

body > #wrap {
  height: auto;
}

@media (max-width:767px) {
  body {
    min-width: 100%;
    font-size: 13px;
  }
}


/* font
--------------------------------------------------------------------------- */
@font-face {
  font-family: 'icon_set_v1';
  src: url('../font/icon_set_v1.eot');
  src: url('../font/icon_set_v1.eot?#iefix') format('embedded-opentype'), url('../font/icon_set_v1.woff') format('woff'), url('../font/icon_set_v1.ttf') format('truetype'), url('../font/icon_set_v1.svg#icon_set_v1') format('svg');
  font-weight: normal;
  font-style: normal;
}


/* Link
--------------------------------------------------------------------------- */
a:link {
  text-decoration: none;
  color: #333333;
}

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

a:hover {
  text-decoration: underline;
  color: #333333;
}

@media (max-width:767px) {
  a:hover {
    text-decoration: none;
  }
}


/* display
--------------------------------------------------------------------------- */
.sp {
  display: none;
}

@media (max-width:767px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}


/* menuBtn
/* ------------------------------------------------------------------------ */
.menuBtn {
  display: none;
}

@media (max-width:767px) {
  .menuBtn {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: block;
  }

  #hamburgerIcon {
    float: left;
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
  }

  #hamburgerIcon span {
    width: 28px;
    height: 1px;
    display: block;
    background: #333;
    position: absolute;
    left: 50%;
    top: 46%;
    margin-left: -13px;
  }

  #hamburgerIcon span {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  #hamburgerIcon .top {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  #hamburgerIcon .bottom {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  .open #hamburgerIcon .middle {
    background: rgba(255, 255, 255, 0);
  }

  .open #hamburgerIcon .top {
    -webkit-transform: rotate(-45deg) translateY(0px);
    -ms-transform: rotate(-45deg) translateY(0px);
    transform: rotate(-45deg) translateY(0px);
  }

  .open #hamburgerIcon .bottom {
    -webkit-transform: rotate(45deg) translateY(0px);
    -ms-transform: rotate(45deg) translateY(0px);
    transform: rotate(45deg) translateY(0px);
  }
}


/* pageMenu
/* ------------------------------------------------------------------------ */
nav#pageMenu {
  margin: 25px 0 0 0;
}

nav#pageMenu ul {
  display: table;
  table-layout: fixed;
  width: 1100px;
  margin: 0 auto;
}

nav#pageMenu ul li {
  font-size: 15px;
  border-right: #cccccc 1px solid;
  display: table-cell;
}

nav#pageMenu ul li.sp {
  display: none;
}

nav#pageMenu ul li:first-child {
  border-left: #cccccc 1px solid;
}

nav#pageMenu ul li a {
  display: block;
  text-align: center;
  width: 100%;
  padding: 2px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (min-width:768px) {
  nav#pageMenu ul li a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

@media (max-width:767px) {
  #pageMenuBlock #layer {
    position: fixed;
    top: 50px;
    z-index: 1;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
  }

  nav#pageMenu {
    position: fixed;
    top: 0;
    right: -80%;
    z-index: 1;
    width: 80%;
    height: 100%;
    background: #fff;
    text-align: left;
    overflow: auto;
    margin: 0;
  }

  nav#pageMenu ul {
    display: block;
    margin-top: 50px;
    width: 100%;
  }

  nav#pageMenu ul li {
    display: block;
    width: 100%;
    font-size: 14px;
    border-right: none;
  }

  nav#pageMenu ul li.sp {
    display: block;
  }

  nav#pageMenu ul li.pc {
    display: none;
  }

  nav#pageMenu ul li a {
    position: relative;
    text-decoration: none;
    border-bottom: 1px solid #cccccc;
    display: block;
    padding: 18px 17px;
    background: none;
    text-align: left;
  }

  nav#pageMenu ul li a:before {
    position: absolute;
    font-family: icon_set_v1 !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\e916';
    font-size: 13px;
    color: #aaa;
    top: 50%;
    right: 10px;
    margin-top: -7px;
  }
}


/* hedaer
/* ------------------------------------------------------------------------ */
header {
  width: 1100px;
  margin: 0 auto;
}

header #telSp {
  display: none;
}

header #topDescription {
  font-weight: normal;
  font-size: 13px;
  margin: 8px 0 6px 0;
  text-align: left;
}

header #headerInner {
  display: flex;
  justify-content: space-between;
}

header #headerInner #headerL #siteLogo {
  text-align: left;
}

header #headerInner #headerR {
  display: flex;
  align-items: flex-end;
}

header #headerInner #headerR .infoBox {
  margin: 0 30px 0 0;
  max-width: 400px;
}

header #headerInner #headerR .infoBox .address {
  margin: 0 30px 0 0;
  font-size: 14px;
  text-align: left;
  line-height: 1.4;
}

header #headerInner #headerR .infoBox .tel {
  font-size: 34px;
  position: relative;
  margin: 5px 0 0 30px;
  line-height: 1;
  text-align: left;
}

header #headerInner #headerR .infoBox .tel:before {
  position: absolute;
  font-family: icon_set_v1 !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e8f5';
  font-size: 30px;
  top: 50%;
  left: 0;
  margin: -13px 0 0 -30px;
}

header #headerInner #headerR .infoBox .btn {
  margin: 5px 0 0 0;
}

header #headerInner #headerR .infoBox .btn a {
  border: #cccccc 1px solid;
  background: #eeeeee;
  font-size: 12px;
  position: relative;
  padding: 4px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
}

header #headerInner #headerR .infoBox .btn a:before {
  position: absolute;
  font-family: icon_set_v1 !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e916';
  font-size: 11px;
  color: #aaa;
  top: 50%;
  right: 10px;
  margin-top: -5px;
}

header #headerInner #headerR .infoBox .btn a:hover {
  text-decoration: none;
}

header #headerInner #headerR #inquiryBtn a {
  font-size: 13px;
  background: #666666;
  display: block;
  position: relative;
  color: #fff;
  padding: 26px 30px 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

header #headerInner #headerR #inquiryBtn a:after {
  position: absolute;
  font-family: icon_set_v1 !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e8f4';
  font-size: 18px;
  top: 10px;
  left: 50%;
  margin: 0 0 0 -5px
}

header #headerInner #headerR #inquiryBtn a:hover {
  text-decoration: none;
}

@media (min-width:768px) {
  header #headerInner #headerR .infoBox .btn a:hover {
    opacity: 0.7;
  }

  header #headerInner #headerR #inquiryBtn a:hover {
    opacity: 0.7;
  }
}

@media (max-width:767px) {
  header {
    margin: 0 auto;
    z-index: 9999;
    position: fixed;
    background: #fff;
    width: 100%;
    height: 50px;
    border-bottom: #ccc 1px solid;
  }

  header #headerInner {
    display: block;
  }

  header #telSp {
    display: block;
    font-family: icon_set_v1 !important;
    position: fixed;
    top: 5px;
    left: 15px;
    font-size: 28px;
    line-height: 1.6;
  }

  header #telSp a:hover {
    text-decoration: none;
  }

  header #topDescription {
    display: none;
  }

  header #headerInner #headerL {
    margin: 0;
  }

  header #headerInner #headerL #siteLogo {
    margin: 7px auto 0;
    text-align: center;
    height: 35px;
  }

  header #headerInner #headerL #siteLogo img.sp {
    height: 100%;
    display: inline;
  }

  header #headerInner #headerR {
    display: none;
  }
}


/* mainBlock
/* ------------------------------------------------------------------------ */
#mainBlock {
  margin: 12px 0 0 0;
}

@media (max-width:767px) {
  #mainBlock {
    margin: 0;
    padding: 50px 0 0 0;
  }
}


/* --- pageTitle --- */
.pageTitle {
  background: #f4f4f4;
  padding: 60px 0;
}

.pageTitle h1 {
  font-size: 36px;
  max-width: 1100px;
  text-align: center;
  margin: 0 auto;
  line-height: 1.4;
}

@media (max-width:767px) {
  .pageTitle {
    padding: 40px 0;
  }

  .pageTitle h1 {
    font-size: 24px;
    max-width: 90%;
  }
}


/* --- pankuzu --- */
#breadcrumb {
  max-width: 1100px;
  margin: 14px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

#breadcrumb div {
  position: relative;
  margin: 5px 22px 0 0;
  font-size: 13px;
  text-align: left;
  line-height: 1;
}

#breadcrumb div span {
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  border-bottom: 1px solid transparent;
}

#breadcrumb div a span:hover {
  border-bottom: 1px solid #333;
}

#breadcrumb div:after {
  font-family: icon_set_v1 !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e916';
  position: absolute;
  right: -15px;
  font-size: 10px;
  top: 50%;
  margin-top: -0.65em;
}

#breadcrumb div:last-child {
  margin-right: 0;
}

#breadcrumb div:last-child:after {
  content: none;
}

@media (max-width:767px) {
  #breadcrumb {
    width: 90%;
    margin: 8px auto 0;
  }

  #breadcrumb div {
    font-size: 13px;
  }
}


/* contentsBlock
/* ------------------------------------------------------------------------ */
/* --- contentsBlock --- */
#contentsBlock {
  margin: 40px 0 0 0;
}

@media (max-width:767px) {
  #contentsBlock {
    margin: 20px 0 0 0;
  }
}


/* --- contentsBlock2 --- */
#contentsBlock2 {
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  width: 1100px;
}

#contentsBlock2 #sideBox {
  width: 250px;
}

#contentsBlock2 #contentsBox {
  width: 810px;
}

@media (max-width:767px) {
  #contentsBlock2 {
    margin: 20px auto 0;
    width: 90%;
    display: block;
  }

  #contentsBlock2 #sideBox {
    width: 100%;
    margin: 40px 0 0 0;
  }

  #contentsBlock2 #contentsBox {
    width: 100%;
  }
}


/* --- readTxtBlock --- */
.readTxtBlock {
  max-width: 1100px;
  margin: 0 auto 60px;
}

.readTxtBlock .txt {
  text-align: left;
}

@media (max-width:767px) {
  .readTxtBlock {
    max-width: 90%;
    margin: 0 auto 40px;
  }
}


/* --- block --- */
#contentsBlock .block {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width:767px) {
  #contentsBlock .block {
    max-width: 90%;
  }
}


/* --- h01 --- */
.h01 {
  font-size: 38px;
}

@media (max-width:767px) {
  .h01 {
    font-size: 26px;
    line-height: 1.6;
  }
}


/* --- h02 --- */
.h02 {
  font-size: 22px;
  text-align: left;
  margin-bottom: 15px;
  line-height: 1.7;
}

@media (max-width:767px) {
  .h02 {
    font-size: 17px;
    margin-bottom: 10px;

  }
}


/* --- h03 --- */
.h03 {
  font-size: 25px;
  text-align: left;
  border-bottom: #cccccc 3px solid;
  margin: 0 0 35px 0;
  padding: 0 0 2px 0;
}

@media (max-width:767px) {
  .h03 {
    font-size: 20px;
    border-bottom: #cccccc 2px solid;
    margin: 0 0 25px 0;
  }
}


/* --- h04 --- */
.h04 {
  font-size: 18px;
  text-align: left;
  padding: 10px 20px;
  background: #eeeeee;
  margin: 0 0 30px 0;
}

@media (max-width:767px) {
  .h04 {
    font-size: 16px;
    padding: 8px 20px;
    margin: 0 0 20px 0;
  }
}


/* --- btn01 --- */
.btn01 {
  margin: 24px auto 0;
}

.btn01 a {
  border: #cccccc 1px solid;
  background: #eeeeee;
  font-size: 14px;
  position: relative;
  padding: 13px 30px 13px 25px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  min-width: 200px;
  text-align: center;
}

.btn01 a:after {
  position: absolute;
  font-family: icon_set_v1 !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e916';
  font-size: 11px;
  top: 50%;
  right: 10px;
  margin-top: -5px;
}

.btn01 a:hover {
  text-decoration: none;
}

@media (min-width:768px) {
  .btn01 a:hover {
    opacity: 0.7;
  }
}

@media (max-width:767px) {
  .btn01 {
    text-align: center;
  }
}


/* --- btn02 --- */
.btn02 {
  margin: 24px auto 0;
}

.btn02 a {
  background: #666666;
  font-size: 14px;
  position: relative;
  padding: 14px 30px 14px 25px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  min-width: 200px;
  text-align: center;
  color: #fff;
}

.btn02 a:after {
  position: absolute;
  font-family: icon_set_v1 !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e916';
  font-size: 11px;
  top: 50%;
  right: 10px;
  margin-top: -5px;
}

.btn02 a:hover {
  text-decoration: none;
}

@media (min-width:768px) {
  .btn02 a:hover {
    opacity: 0.7;
  }
}

@media (max-width:767px) {
  .btn02 {
    text-align: center;
  }
}


/* --- table01 --- */
.table01 {
  width: 100%;
}

.table01 tr th {
  border: #ccc 1px solid;
  font-weight: bold;
  background: #eeeeee;
  width: 200px;
  text-align: left;
  padding: 18px 20px;
  vertical-align: middle;
}

.table01 tr td {
  border: #ccc 1px solid;
  text-align: left;
  padding: 18px 20px;
}

.table01 tr td a {
  text-decoration: underline;
}

@media (min-width:768px) {
  .table01 tr td a:hover {
    text-decoration: none;
  }
}

@media (max-width:767px) {
  .table01 {
    width: 100%;
  }

  .table01 tr th {
    width: 100%;
    display: block;
    padding: 10px 20px;
    border-top: none;
  }

  .table01 tr:first-child th {
    border: #ccc 1px solid;
  }

  .table01 tr td {
    width: 100%;
    display: block;
    padding: 10px 20px;
    border-top: none;
  }
}


/* --- table02 --- */
.table02 {
  width: 100%;
}

.table02 tr th {
  border: #ccc 1px solid;
  font-weight: normal;
  background: #eeeeee;
  width: 200px;
  text-align: center;
  padding: 18px 20px;
}

.table02 thead tr th,
.table02 tr th.mi {
  background: #666666;
  color: #fff;
  border: #858585 1px solid;
}

.table02 tr td {
  border: #ccc 1px solid;
  text-align: center;
  padding: 18px 20px;
}

.table02 tr td a {
  text-decoration: underline;
}

@media (min-width:768px) {
  .table02 tr td a:hover {
    text-decoration: none;
  }
}

@media (max-width:767px) {
  .table02 tr th {
    padding: 10px 20px;
  }

  .table02 tr td {
    padding: 10px 20px;
  }
}


/* --- ulList01 --- */
.ulList01 li {
  list-style: disc;
  margin: 0 0 0 15px;
}


/*  sideTitle
/* ------------------------------------------------------------------------ */
.sideTitle {
  font-size: 18px;
  background: #eaeaea;
  text-align: left;
  font-weight: bold;
  padding: 8px 18px;
}

@media (max-width:767px) {
  .sideTitle {
    font-size: 15px;
    padding: 6px 15px;
  }
}


/*  side01
/* ------------------------------------------------------------------------ */
.side01 {
  margin: 40px 0 0 0;
}

.side01:first-child {
  margin-top: 0;
}

.side01 ul li {
  text-align: left;
  border-bottom: #ccc 1px solid;
  line-height: 1.6;
}

.side01 ul li a,
.side01 ul li span {
  position: relative;
  padding: 17px 15px 17px 30px;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.side01 ul li a:hover {
  text-decoration: none;
}

.side01 ul li span {
  background: #f7f7f7;
}

.side01 ul li a:before,
.side01 ul li span:before {
  position: absolute;
  font-family: icon_set_v1 !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e916';
  font-size: 11px;
  top: 50%;
  left: 15px;
  margin-top: -5px;
}

@media (min-width:768px) {
  .side01 ul li a:hover {
    opacity: 0.7;
  }
}

@media (max-width:767px) {

  .side01 ul li a,
  .side01 ul li span {
    padding: 12px 12px 12px 30px;
  }
}


/* footer
/* ------------------------------------------------------------------------ */
footer {
  margin: 120px 0 0 0;
}

#top footer {
  margin: 70px 0 0 0;
}

#pageTop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: none;
}

#pageTop a {
  color: #fff;
  background: #666666;
  display: block;
  font-family: icon_set_v1 !important;
  font-size: 22px;
  width: 60px;
  height: 60px;
  padding: 10px 0 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

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

@media (min-width:768px) {
  #pageTop a:hover {
    opacity: 0.7;
  }
}

@media (max-width:767px) {
  footer {
    margin: 50px 0 0 0;
  }

  #top footer {
    margin: 30px 0 0 0;
  }

  #pageTop {
    position: static;
    bottom: 0;
    right: 0;
    display: block !important;
    opacity: 1 !important;
  }

  #pageTop a {
    font-size: 16px;
    width: 100%;
    height: auto;
    padding: 3px 0 3px 0;
  }
}


/* --- bottomInquiryBlock --- */
footer #bottomInquiryBlock {
  background: #e7e7e7;
  padding: 30px 0;
}

footer #bottomInquiryBlock .inner {
  width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer #bottomInquiryBlock .inner .title {
  font-size: 22px;
  margin: 0 40px 0 0;
}

footer #bottomInquiryBlock .inner .tel {
  font-size: 46px;
  position: relative;
  line-height: 1.4;
  margin: 0 40px 0 30px;
  display: inline-block;
}

footer #bottomInquiryBlock .inner .tel:before {
  position: absolute;
  font-family: icon_set_v1 !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e8f5';
  font-size: 34px;
  top: 50%;
  left: 0;
  margin: -13px 0 0 -35px;
}

footer #bottomInquiryBlock .inner .btn {
  background: #fff;
}

footer #bottomInquiryBlock .inner .btn a {
  font-size: 18px;
  background: #666666;
  display: block;
  position: relative;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 18px 40px 18px 55px;
}

footer #bottomInquiryBlock .inner .btn a:before {
  position: absolute;
  font-family: icon_set_v1 !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e8f4';
  font-size: 18px;
  top: 50%;
  left: 20px;
  margin: -10px 0 0 0;
}

footer #bottomInquiryBlock .inner .btn a:hover {
  text-decoration: none;
}

@media (min-width:768px) {
  footer #bottomInquiryBlock .inner .btn a:hover {
    opacity: 0.7;
  }
}

@media (max-width:767px) {
  footer #bottomInquiryBlock {
    padding: 25px 0;
  }

  footer #bottomInquiryBlock .inner {
    width: 100%;
    display: block;
  }

  footer #bottomInquiryBlock .inner .title {
    font-size: 16px;
    margin: 0;
  }

  footer #bottomInquiryBlock .inner .tel {
    font-size: 30px;
    position: relative;
    line-height: 1.4;
    margin: 0 0 0 13px;
  }

  footer #bottomInquiryBlock .inner .tel:before {
    font-size: 25px;
    top: 50%;
    left: 0;
    margin: -11px 0 0 -25px;
  }

  footer #bottomInquiryBlock .inner .btn {
    width: 90%;
    margin: 5px auto 0;
  }

  footer #bottomInquiryBlock .inner .btn a {
    font-size: 15px;
    padding: 15px 0;
  }
}


/* --- footerBlock --- */
footer #footerBlock {
  background: #f4f4f4;
  padding: 20px 0 20px;
}

footer #footerBlock #footerLink {
  width: 1100px;
  margin: 0 auto;
}

footer #footerBlock #footerLink ul {
  display: flex;
  flex-wrap: wrap;
}

footer #footerBlock #footerLink ul li {
  margin: 10px 30px 0 0;
}

footer #footerBlock #footerLink ul li a {
  font-size: 13px;
  position: relative;
  padding: 0 0 0 10px;
}

footer #footerBlock #footerLink ul li a:before {
  position: absolute;
  font-family: icon_set_v1 !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e916';
  font-size: 11px;
  top: 50%;
  left: 0;
  margin-top: -5px;
}

footer #footerBlock #copy {
  font-size: 12px;
  margin: 45px 0 0 0;
}

footer #footerBlock #footerSiteLink {
  font-size: 12px;
  margin: 15px 0 0 0;
}

footer #footerBlock #footerSiteLink a {
  color: #999999;
}

@media (max-width:767px) {
  footer #footerBlock {
    background: #f4f4f4;
    padding: 12px 0;
  }

  footer #footerBlock #footerLink {
    display: none;
  }

  footer #footerBlock #copy {
    font-size: 12px;
    margin: 0;
  }

  footer #footerBlock #footerSiteLink {
    display: none;
  }
}




/* ============================================================
Customize
============================================================ */
/* ------------------------------------
Footer
------------------------------------ */
/* 768＜ --------------------------- */
@media print,
screen and (min-width: 768px) {

  footer #footerBlock #copy {
    margin-top: 10px;
    }

} /* end 768＜ */
