@charset "UTF-8";
/* ======================================================================
 top
====================================================================== */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

/* ======================================================================
 common
====================================================================== */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
  width: 100%;
  color: #000;
}

.sm {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .sm {
    display: block !important;
  }
  .md {
    display: none !important;
  }
}

.wrap {
  overflow: hidden;
}

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

img {
  vertical-align: bottom;
}

ul {
  list-style: none;
}

.inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 0;
}

@media screen and (max-width: 1100px) {
  .inner {
    margin: 0 calc(100px / 2);
    width: calc(100% - 100px);
  }
}

@media screen and (max-width: 768px) {
  .inner {
    width: 92%;
    margin: 0 auto;
    padding: 32px 0;
  }
}

.sec_ttl {
  text-align: center;
  color: #FFF;
}

.sec_ttl .en {
  font-weight: bold;
  font-size: 36px;
  letter-spacing: .05em;
  display: block;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .sec_ttl .en {
    font-size: 27px;
    margin-bottom: 10px;
  }
}

.sec_ttl .jp {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: .1em;
  display: block;
}

@media screen and (max-width: 768px) {
  .sec_ttl .jp {
    font-size: 10px;
  }
}

.breadcrumb {
  color: #0079ac;
  font-size: 12px;
  margin-top: 14px;
  overflow-x: auto;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    font-size: 11px;
    margin-top: 10px;
  }
}

.breadcrumb .container.narrow {
  max-width: 1000px;
  padding: 0;
}

@media screen and (max-width: 1024px) {
  .breadcrumb .container.narrow {
    padding: 0 50px;
  }
}

@media screen and (max-width: 768px) {
  .breadcrumb .container.narrow {
    padding: 0;
  }
}

.breadcrumb .home::before {
  content: "\f015";
  font-family: "FontAwesome", sans-serif;
  font-weight: 900;
  margin-right: 5px;
}

.breadcrumb a {
  color: #0079ac;
}

.pagination {
  text-align: center;
  padding-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  .pagination {
    padding-bottom: 75px;
  }
}

.pagination .prev_btn {
  cursor: pointer;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #0079ac;
  border-left: 1px solid #0079ac;
  background: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: relative;
  top: 0;
  right: 28px;
}

.pagination .next_btn {
  cursor: pointer;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #0079ac;
  border-right: 1px solid #0079ac;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
  top: 0;
  left: 28px;
}

.pagination .page-numbers {
  font-size: 16px;
  color: #0079ac;
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #0079ac;
  margin: 0 2px;
}

.pagination .page-numbers.current {
  color: #FFF;
  background: #0079ac;
}

.pagination .page-numbers.prev, .pagination .page-numbers.next, .pagination .page-numbers.dots {
  border: none;
  margin: 0 -2px;
}

.pagination .page_nums .num {
  cursor: pointer;
  font-size: 16px;
  color: #0079ac;
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #0079ac;
}

.pagination .page_nums .num.active {
  color: #FFF;
  background: #0079ac;
}

/* ======================================================================
 header
====================================================================== */
header {
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

header .inner {
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
}

@media screen and (max-width: 768px) {
  header .inner {
    height: 45px;
    margin: 0;
    position: relative;
  }
}

@media screen and (max-width: 768px) {
  header .inner .header_logo {
    width: 100px;
    margin-left: 4%;
  }
}

@media screen and (max-width: 768px) {
  header .inner .header_logo > img {
    width: 100px;
  }
}

header .inner .menu {
  height: 100%;
}

@media screen and (max-width: 768px) {
  header .inner .menu {
    display: none;
    position: absolute;
    top: 45px;
    left: 0;
    width: 100vw;
    height: auto;
    background-color: rgba(255, 255, 255, 0.85);
  }
}

header .inner .menu .item_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

@media screen and (max-width: 768px) {
  header .inner .menu .item_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

header .inner .menu .item_list > li {
  height: 100%;
}

header .inner .menu .item_list > li > a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 35px;
  -webkit-transition: all .3s;
  transition: all .3s;
  height: 100%;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  header .inner .menu .item_list > li > a {
    padding: 20px 0;
  }
}

header .inner .menu .item_list > li > a .en {
  margin-bottom: 4px;
  font-family: lato, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  color: #000;
  letter-spacing: .05em;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 768px) {
  header .inner .menu .item_list > li > a .en {
    color: #0079ac;
  }
}

header .inner .menu .item_list > li > a .jp {
  font-weight: bold;
  font-size: 11px;
  color: #000;
  letter-spacing: .1em;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 768px) {
  header .inner .menu .item_list > li > a .jp {
    color: #0079ac;
  }
}

header .inner .menu .item_list > li > a:hover {
  background: #0079ac;
}

header .inner .menu .item_list > li > a:hover .en {
  color: #FFF;
}

header .inner .menu .item_list > li > a:hover .jp {
  color: #FFF;
}

header .inner .menu .item_list > li:last-child > a {
  margin-right: -35px;
}

@media screen and (max-width: 768px) {
  header .inner .menu .item_list > li:last-child > a {
    margin-right: 0;
  }
}

header .inner .menu_ham {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 45px;
  cursor: pointer;
  background-color: #FFF;
}

@media screen and (max-width: 768px) {
  header .inner .menu_ham {
    display: block;
  }
}

header .inner .menu_ham .ham_line {
  position: absolute;
  left: 25%;
  width: 50%;
  height: 2px;
  background-color: #0079ac;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

header .inner .menu_ham .ham_line1 {
  top: 20%;
}

header .inner .menu_ham .ham_line1.active {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 38%;
}

header .inner .menu_ham .ham_line2 {
  top: 38%;
}

header .inner .menu_ham .ham_line2.active {
  width: 0;
}

header .inner .menu_ham .ham_line3 {
  top: 56%;
}

header .inner .menu_ham .ham_line3.active {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 38%;
}

header .inner .menu_ham .txt {
  font-size: 10px;
  color: #0079ac;
  position: absolute;
  top: 66%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* ======================================================================
 footer
====================================================================== */
footer .inner {
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}

@media screen and (max-width: 768px) {
  footer .inner {
    height: 39px;
  }
}

footer .inner .copy {
  font-family: lato, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: .05em;
}

@media screen and (max-width: 768px) {
  footer .inner .copy {
    font-size: 10px;
  }
}

/* ======================================================================
 main
====================================================================== */
main {
  padding-top: 80px;
}

@media screen and (max-width: 768px) {
  main {
    padding-top: 45px;
  }
}

@-webkit-keyframes left_scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-157.5px * 3));
            transform: translateX(calc(-157.5px * 3));
  }
}

@keyframes left_scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-157.5px * 3));
            transform: translateX(calc(-157.5px * 3));
  }
}

/* ----------------------------------------------------------------------
 kv
---------------------------------------------------------------------- */
#kv .inner {
  max-width: none;
  position: relative;
  padding: 0;
}

@media screen and (max-width: 1100px) {
  #kv .inner {
    margin: 0;
    width: 100%;
  }
}

#kv .inner .kv_img {
  width: 100%;
}

#kv .inner .kv_img > img {
  width: 100%;
}

#kv .inner .kv_contents {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-shadow: 1px 0 5px rgba(0, 0, 0, 0.25), 0 1px 5px rgba(0, 0, 0, 0.25), -1px 0 5px rgba(0, 0, 0, 0.25), 0 -1px 5px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 768px) {
  #kv .inner .kv_contents {
    text-shadow: 1px 0 5px rgba(0, 0, 0, 0.15), 0 1px 5px rgba(0, 0, 0, 0.15), -1px 0 5px rgba(0, 0, 0, 0.15), 0 -1px 5px rgba(0, 0, 0, 0.15);width:100%;
  }
}

#kv .inner .kv_contents .kv_ttl {
  font-family: lato, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 60px;
  letter-spacing: .1em;
  color: #FFF;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #kv .inner .kv_contents .kv_ttl {
    font-size: 36px;
    margin-bottom: 25px;
  }
}

#kv .inner .kv_contents .kv_detail {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: .1em;
  color: #FFF;
  text-align: center;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  #kv .inner .kv_contents .kv_detail {
    font-size: 11px;
  }
}

/* ----------------------------------------------------------------------
 sec01
---------------------------------------------------------------------- */
#sec01 {
  background: #0079ac;
}

#sec01 .inner {
  padding-bottom: 190px;
  max-width: 1300px;
}

@media screen and (max-width: 768px) {
  #sec01 .inner {
    padding-bottom: 100px;
    margin: 0 auto;
    width: 92%;
  }
}

#sec01 .inner .sec_ttl {
  margin-bottom: 44px;
}

@media screen and (max-width: 768px) {
  #sec01 .inner .sec_ttl {
    margin-bottom: 25px;
  }
}

#sec01 .inner .topic_table {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #sec01 .inner .topic_table {
    margin: 0;
  }
}

#sec01 .inner .topic_table tbody tr td.date {
  font-family: lato, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .05em;
  color: #FFF;
  padding-right: 10px;
}

@media screen and (max-width: 768px) {
  #sec01 .inner .topic_table tbody tr td.date {
    font-size: 10px;
    display: inline-block;
    padding-right: 6px;
  }
}

@media screen and (max-width: 768px) {
  #sec01 .inner .topic_table tbody tr td.cat {
    display: inline-block;
  }
}

#sec01 .inner .topic_table tbody tr td.cat > span {
  font-weight: bold;
  font-size: 12px;
  letter-spacing: .05em;
  color: #0079ac;
  background-color: #ffcc00;
  padding: 5px 11px 6px 11px;
}

@media screen and (max-width: 768px) {
  #sec01 .inner .topic_table tbody tr td.cat > span {
    font-size: 10px;
    padding: 3px 6px 4.5px 6.5px;
    -webkit-transform: scale(0.9, 0.9);
            transform: scale(0.9, 0.9);
    display: inline-block;
  }
}

#sec01 .inner .topic_table tbody tr td.detail {
  font-weight: normal;
  font-size: 14px;
  letter-spacing: .05em;
  color: #FFF;
  padding: 10px 0 10px 9px;
}

@media screen and (max-width: 768px) {
  #sec01 .inner .topic_table tbody tr td.detail {
    font-size: 10px;
    display: block;
    padding: 3px 0;
    line-height: 1.3;
  }
}

#sec01 .inner .topic_table tbody tr td.detail > a {
  color: #FFF;
  text-decoration: none;
}

#sec01 .inner .topic_table tbody tr td.detail > a:hover {
  opacity: .7;
}

.item_list.item_list04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
}

@media screen and (max-width: 1080px) {
  .item_list.item_list04 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .item_list.item_list04 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 25px;
  }
}

.item_list.item_list04 .item {
  background: #FFF;
  border: 1px solid #f5f8f9;
  padding: 21px;
  width: calc((99.9% / 3) - (60px / 3));
  margin-right: 30px;
  margin-bottom: 40px;
  text-decoration: none;
}

.item_list.item_list04 .item:nth-of-type(3n) {
  margin-right: 0;
}

@media screen and (max-width: 1024px) {
  .item_list.item_list04 .item {
    width: calc(49.9% - 15px);
  }
  .item_list.item_list04 .item:nth-of-type(4n) {
    margin-right: 30px;
  }
  .item_list.item_list04 .item:nth-of-type(even) {
    margin-right: 0;
  }
  .item_list.item_list04 .item:nth-of-type(-n+2) {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .item_list.item_list04 .item {
    width: 100%;
    margin-bottom: 15px;
    margin-right: 0;
    padding: 15px;
  }
}

.item_list.item_list04 .item .item_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.item_list.item_list04 .item .item_top .category {
  font-family: lato, sans-serif;
  font-style: normal;
  display: inline-block;
  font-size: 11px;
  letter-spacing: .1em;
  padding: 7px 7px 4px 9px;
  background: #0079ac;
  color: #FFF;
}

@media screen and (max-width: 768px) {
  .item_list.item_list04 .item .item_top .category {
    padding: 6px 7px 4px 9px;
  }
}

.item_list.item_list04 .item .item_top .date {
  font-family: lato, sans-serif;
  font-style: normal;
  color: #0079ac;
}

@media screen and (max-width: 768px) {
  .item_list.item_list04 .item .item_top .date {
    font-size: 15px;
  }
}

.item_list.item_list04 .item .item_ttl {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: .1em;
  line-height: 1.7;
  color: #0079ac;
  display: block;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .item_list.item_list04 .item .item_ttl {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 6.5px;
  }
}

.item_list.item_list04 .item .item_ttl .jp {
  line-height: 1.5;
}

.item_list.item_list04 .item .img {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 768px) {
  .item_list.item_list04 .item .img {
    margin-bottom: 10px;
  }
}

.item_list.item_list04 .item .img::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.4s 0s ease;
  transition: all 0.4s 0s ease;
  z-index: 10;
}

.item_list.item_list04 .item .img .hover_txt {
  opacity: 0;
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  padding-top: 48px;
  text-align: center;
  margin-top: -35px;
  margin-left: -35px;
  font-size: 12px;
  font-size: .75rem;
  -webkit-transform: translate(0, 30px) scale(1.1);
          transform: translate(0, 30px) scale(1.1);
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  z-index: 11;
}

.item_list.item_list04 .item .img .hover_txt::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  display: block;
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  display: block;
  background: url(../img/common/arrow_index_column.png) no-repeat center center;
  border-radius: 50%;
  -webkit-transition: all 0.4s 0s ease;
  transition: all 0.4s 0s ease;
  z-index: 12;
}

.item_list.item_list04 .item .img > img {
  -webkit-transition: all 0.4s 0s ease;
  transition: all 0.4s 0s ease;
  width: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.item_list.item_list04 .item .detail {
  font-weight: normal;
  font-size: 14px;
  letter-spacing: .1em;
  line-height: 1.7;
  color: #000;
}

@media screen and (max-width: 768px) {
  .item_list.item_list04 .item .detail {
    font-size: 12px;
    line-height: 1.8;
  }
}

.item_list.item_list04 .item:hover {
  opacity: 1;
}

.item_list.item_list04 .item:hover .img::before {
  opacity: 1;
}

.item_list.item_list04 .item:hover .img .hover_txt {
  opacity: 1;
  -webkit-transform: translate(0, 15px) scale(1.1);
          transform: translate(0, 15px) scale(1.1);
}

.item_list.item_list04 .item:hover .img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .item_list.item_list04 .item:hover .img img {
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
  }
}

.archive_btn {
  margin: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .archive_btn {
    margin: 0;
  }
}

.archive_btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  height: 65px;
  width: 250px;
  background-color: #0079ac;
  color: #FFF;
  border: 2px solid #FFF;
}

@media screen and (max-width: 768px) {
  .archive_btn a {
    font-size: 14px;
    height: 50px;
    width: 100%;
  }
}

.archive_btn a:hover {
  background-color: #FFF;
  color: #0079ac;
}

/* ----------------------------------------------------------------------
 sec02
---------------------------------------------------------------------- */
#sec02 .inner {
  position: relative;
  top: -100px;
  z-index: 100;
  background-color: #FFF;
  height: calc(100% + 200px);
}

@media screen and (max-width: 768px) {
  #sec02 .inner {
    top: -50px;
  }
}

#sec02 .inner .sec_ttl {
  color: #0079ac;
  margin-bottom: 48px;
}

#sec02 .inner .works_list {
  width: 650px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  #sec02 .inner .works_list {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
}

#sec02 .inner .works_list .work {
  width: calc((99.9% / 2) - (150px / 2));
}

@media screen and (max-width: 768px) {
  #sec02 .inner .works_list .work {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 4%;
  }
}

#sec02 .inner .works_list .work:nth-child(even) {
  margin-left: 150px;
}

@media screen and (max-width: 768px) {
  #sec02 .inner .works_list .work:nth-child(even) {
    margin-left: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  #sec02 .inner .works_list .work:nth-child(even) .img_box {
    margin-right: 0;
    margin-left: 5%;
  }
}

#sec02 .inner .works_list .work:nth-child(-n + 2) {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #sec02 .inner .works_list .work:nth-child(-n + 2) {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  #sec02 .inner .works_list .work + .work {
    margin-top: 10%;
  }
}

#sec02 .inner .works_list .work .img_box {
  background-color: #4ca9b3;
  border-radius: 250px;
  width: 100%;
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  #sec02 .inner .works_list .work .img_box {
    width: 33.33vw;
    height: 33.33vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 5%;
  }
}

#sec02 .inner .works_list .work .img_box .img {
  width: 121px;
}

@media screen and (max-width: 768px) {
  #sec02 .inner .works_list .work .img_box .img {
    width: 48%;
  }
}

#sec02 .inner .works_list .work .img_box .img > img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  #sec02 .inner .works_list .work .txt_box {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 46.26vw;
  }
}

#sec02 .inner .works_list .work .txt_box .work_ttl {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: .1em;
  color: #0079ac;
  line-height: 1.3;
  margin-top: 26px;
  margin-bottom: 26px;
}

@media screen and (max-width: 768px) {
  #sec02 .inner .works_list .work .txt_box .work_ttl {
    font-size: 15px;
    text-align: left;
    margin-top: 0;
    margin-bottom: 10px;
  }
}

#sec02 .inner .works_list .work .txt_box .work_ttl.type01 {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #sec02 .inner .works_list .work .txt_box .work_ttl.type01 {
    margin-top: 0;
    margin-bottom: 10px;
  }
}

#sec02 .inner .works_list .work .txt_box .work_ttl.type02 {
  margin-top: 38px;
  margin-bottom: 34px;
}

@media screen and (max-width: 768px) {
  #sec02 .inner .works_list .work .txt_box .work_ttl.type02 {
    margin-top: 0;
    margin-bottom: 10px;
  }
}

#sec02 .inner .works_list .work .txt_box .work_detail {
  font-weight: normal;
  font-size: 14px;
  letter-spacing: .05em;
  color: #000;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  #sec02 .inner .works_list .work .txt_box .work_detail {
    font-size: 11px;
    letter-spacing: .03em;
  }
}

/* ----------------------------------------------------------------------
 sec03
---------------------------------------------------------------------- */
#sec03 {
  background: #4ca9b3;
  margin-top: -200px;
}

@media screen and (max-width: 768px) {
  #sec03 {
    margin-top: -100px;
  }
}

#sec03 .inner {
  padding-top: 170px;
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  #sec03 .inner {
    padding-top: 86px;
    padding-bottom: 50px;
    margin: 0;
    width: 100%;
  }
}

#sec03 .inner .sec_ttl {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #sec03 .inner .sec_ttl {
    margin-bottom: 25px;
  }
}

#sec03 .inner .clients_list {
  margin: 0 auto;
  width: calc(100% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  #sec03 .inner .clients_list {
    -webkit-animation: left_scroll 10s linear infinite;
            animation: left_scroll 10s linear infinite;
    margin-left: 0;
    width: 100%;
  }
}

#sec03 .inner .clients_list .client {
  max-width: 300px;
  width: calc((99.9% / 3) - (60px / 3));
  height: 150px;
  background-color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  #sec03 .inner .clients_list .client {
    width: 150px;
    height: 75px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0 7.5px;
  }
}

#sec03 .inner .clients_list .client + .client {
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  #sec03 .inner .clients_list .client + .client {
    margin-left: 0;
  }
}

#sec03 .inner .clients_list .client .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}

#sec03 .inner .clients_list .client .img > img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

@media screen and (max-width: 768px) {
  #sec03 .inner .clients_list .client .img > img {
    width: 70%;
    height: 70%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

/* ----------------------------------------------------------------------
 sec04
---------------------------------------------------------------------- */
#sec04 {
  background: #f5f8f9;
}

#sec04 .inner {
  max-width: 1300px;
}

@media screen and (max-width: 1100px) {
  #sec04 .inner {
    margin: 0;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #sec04 .inner {
    margin: 0 auto;
    width: 92%;
  }
}

#sec04 .inner .sec_ttl {
  color: #0079ac;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #sec04 .inner .sec_ttl {
    margin-bottom: 25px;
  }
}

#sec04 .inner .project_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  #sec04 .inner .project_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#sec04 .inner .project_list .project {
  width: calc((99.9% / 3) - (0px / 3));
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  #sec04 .inner .project_list .project {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #sec04 .inner .project_list .project + .project {
    margin-top: 25px;
  }
}

#sec04 .inner .project_list .project .img {
  width: 100%;
  overflow: hidden;
}

#sec04 .inner .project_list .project .img > img {
  width: 100%;
  -webkit-transition: all .4s;
  transition: all .4s;
}

#sec04 .inner .project_list .project .project_ttl {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: .1em;
  color: #0079ac;
  margin-top: 30px;
  margin-bottom: 28px;
}

@media screen and (max-width: 768px) {
  #sec04 .inner .project_list .project .project_ttl {
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 10px;
  }
}

#sec04 .inner .project_list .project .project_detail {
  font-weight: normal;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .05em;
  color: #000;
  width: calc(100% - 50px);
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #sec04 .inner .project_list .project .project_detail {
    font-size: 11px;
    letter-spacing: .03em;
    width: 100%;
  }
}

#sec04 .inner .project_list .project .more {
  display: block;
  width: calc(100% - 50px);
  margin: 0 auto;
  text-align: right;
  margin-top: 30px;
  opacity: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (max-width: 768px) {
  #sec04 .inner .project_list .project .more {
    width: 100%;
    margin-top: 9px;
  }
}

#sec04 .inner .project_list .project .more > span {
  font-family: lato, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: .05em;
  color: #0079ac;
  position: relative;
}

@media screen and (max-width: 768px) {
  #sec04 .inner .project_list .project .more > span {
    font-size: 11px;
  }
}

#sec04 .inner .project_list .project .more > span::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background-color: #0079ac;
  position: absolute;
  left: -40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

@media screen and (max-width: 768px) {
  #sec04 .inner .project_list .project .more > span::before {
    width: 22.5px;
    left: -38px;
  }
}

#sec04 .inner .project_list .project:hover .img > img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#sec04 .inner .project_list .project:hover .more {
  opacity: 1;
}

#sec04 .inner .project_list .project:hover .more > span::before {
  width: 30px;
}

/* ----------------------------------------------------------------------
 sec05
---------------------------------------------------------------------- */
#sec05 .inner {
  padding-bottom: 100px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #sec05 .inner {
    padding-bottom: 35px;
  }
}

#sec05 .inner .sec_ttl {
  color: #4ca9b3;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #sec05 .inner .sec_ttl {
    margin-bottom: 40px;
  }
}

#sec05 .inner .company_content {
  margin-bottom: 120px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #sec05 .inner .company_content {
    margin-bottom: 22.5px;
  }
}

#sec05 .inner .company_content .company_detail {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 2;
  letter-spacing: .1em;
  color: #0079ac;
}

@media screen and (max-width: 768px) {
  #sec05 .inner .company_content .company_detail {
    text-align: left;
    font-size: 11px;
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#sec05 .inner .company_content .address {
  position: absolute;
  bottom: -75px;
  left: calc(50% + 300px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 940px) {
  #sec05 .inner .company_content .address {
    left: auto;
    -webkit-transform: none;
            transform: none;
    right: 0;
  }
}

@media screen and (max-width: 768px) {
  #sec05 .inner .company_content .address {
    position: static;
  }
}

#sec05 .inner .company_content .address .txt {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: .1em;
  color: #0079ac;
  margin-right: 20px;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  #sec05 .inner .company_content .address .txt {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  #sec05 .inner .company_content .address .img {
    width: 115px;
  }
}

#sec05 .inner .company_content .address .img > img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

@media screen and (max-width: 768px) {
  #sec05 .inner .company_content .address .img > img {
    width: 100%;
  }
}

#sec05 .inner .company_table {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #sec05 .inner .company_table {
    width: 100%;
    margin-top: 35px;
  }
}

#sec05 .inner .company_table tbody tr {
  border-bottom: 1px solid #c9c9c9;
}

#sec05 .inner .company_table tbody tr th {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: .05em;
  color: #0079ac;
  text-align: left;
  padding: 15px 65px 15px 20px;
}

@media screen and (max-width: 768px) {
  #sec05 .inner .company_table tbody tr th {
    font-size: 10px;
    display: block;
    padding: 11px 0 7px;
  }
}

#sec05 .inner .company_table tbody tr td {
  font-weight: normal;
  font-size: 14px;
  letter-spacing: .05em;
  color: #000;
  padding: 15px 30px 15px 0;
}

@media screen and (max-width: 768px) {
  #sec05 .inner .company_table tbody tr td {
    font-size: 10px;
    display: block;
    padding: 0 0 8px 0;
    line-height: 1.3;
  }
}

#sec05 .inner .company_bg .img {
  position: absolute;
}

#sec05 .inner .company_bg .img > img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

#sec05 .inner .company_bg .img.img01 {
  top: 50px;
  left: -250px;
}

@media screen and (max-width: 768px) {
  #sec05 .inner .company_bg .img.img01 {
    top: 20px;
    left: -290px;
  }
}

#sec05 .inner .company_bg .img.img02 {
  bottom: 50px;
  right: -250px;
}

@media screen and (max-width: 768px) {
  #sec05 .inner .company_bg .img.img02 {
    bottom: auto;
    top: 90px;
    right: -290px;
  }
}

/* ----------------------------------------------------------------------
 sec06
---------------------------------------------------------------------- */
#sec06 {
  background: #0079ac;
}

@media screen and (max-width: 768px) {
  #sec06 .inner {
    padding-bottom: 50px;
  }
}

#sec06 .inner .sec_ttl {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #sec06 .inner .sec_ttl {
    margin-bottom: 15px;
  }
}

#sec06 .inner form .contact_table {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #sec06 .inner form .contact_table {
    margin: 0;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #sec06 .inner form .contact_table tbody tr {
    position: relative;
  }
}

#sec06 .inner form .contact_table tbody tr .th {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: .1em;
  color: #FFF;
  text-align: left;
  padding-right: 8px;
}

@media screen and (max-width: 768px) {
  #sec06 .inner form .contact_table tbody tr .th {
    display: inline-block;
    font-size: 11px;
  }
}

#sec06 .inner form .contact_table tbody tr .required {
  padding-right: 30px;
}

@media screen and (max-width: 768px) {
  #sec06 .inner form .contact_table tbody tr .required {
    display: inline-block;
    float: right;
    padding-right: 0;
  }
}

#sec06 .inner form .contact_table tbody tr .required > span {
  font-weight: bold;
  font-size: 12px;
  letter-spacing: .1em;
  color: #ffcc00;
  border: 1px solid #ffcc00;
  width: 40px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  #sec06 .inner form .contact_table tbody tr .required > span {
    width: 30px;
    height: 18px;
    font-size: 10px;
  }
}

#sec06 .inner form .contact_table tbody tr .detial {
  padding: 10px 0;
  font-size: 15px;
  color: #FFF;
}

@media screen and (max-width: 768px) {
  #sec06 .inner form .contact_table tbody tr .detial {
    display: block;
    font-size: 11px;
  }
}

#sec06 .inner form .contact_table tbody tr .detial > input, #sec06 .inner form .contact_table tbody tr .detial textarea {
  width: 500px;
  border: none;
  font-size: 15px;
  padding: 10px;
  border-radius: 0;
}

@media screen and (max-width: 768px) {
  #sec06 .inner form .contact_table tbody tr .detial > input, #sec06 .inner form .contact_table tbody tr .detial textarea {
    width: 100%;
    font-size: 11px;
    padding: 6px;
  }
}

#sec06 .inner form .contact_table tbody tr .detial > input:focus, #sec06 .inner form .contact_table tbody tr .detial textarea:focus {
  outline: none;
}

#sec06 .inner form .contact_table tbody tr .detial > input {
  height: 36px;
}

@media screen and (max-width: 768px) {
  #sec06 .inner form .contact_table tbody tr .detial > input {
    height: 27px;
  }
}

#sec06 .inner form .contact_table tbody tr .detial > textarea {
  height: 250px;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  #sec06 .inner form .contact_table tbody tr .detial > textarea {
    height: 150px;
  }
}

#sec06 .inner form .contact_table tbody tr.textarea .th {
  vertical-align: top;
  padding-top: 21px;
}

@media screen and (max-width: 768px) {
  #sec06 .inner form .contact_table tbody tr.textarea .th {
    padding-top: 0;
    vertical-align: middle;
  }
}

#sec06 .inner form .contact_table tbody tr.textarea .required {
  vertical-align: top;
  padding-top: 17px;
}

@media screen and (max-width: 768px) {
  #sec06 .inner form .contact_table tbody tr.textarea .required {
    padding-top: 0;
    vertical-align: middle;
  }
}

#sec06 .inner form .checkbox_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
  cursor: pointer;
  margin-top: 20px;
  position: relative;
}

#sec06 .inner form .checkbox_label input[type='checkbox'] {
  opacity: 0;
  position: absolute;
  bottom: -5px;
  left: calc(50% - 135px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  #sec06 .inner form .checkbox_label input[type='checkbox'] {
    left: calc(50% - 108px);
  }
}

#sec06 .inner form .checkbox_label input[type='checkbox']:checked + .checkmark::before, #sec06 .inner form .checkbox_label input[type='checkbox']:checked + .checkmark::after {
  opacity: 1;
}

#sec06 .inner form .checkbox_label .checkmark {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #FFF;
  margin-right: 10px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #sec06 .inner form .checkbox_label .checkmark {
    width: 18px;
    height: 18px;
  }
}

#sec06 .inner form .checkbox_label .checkmark::before, #sec06 .inner form .checkbox_label .checkmark::after {
  opacity: 0;
  -webkit-transition: all .1s;
  transition: all .1s;
}

#sec06 .inner form .checkbox_label .checkmark::before {
  font-family: "Font Awesome 5 Free";
  content: '\f00c';
  font-weight: 900;
  z-index: 1000;
  color: #0079ac;
  font-size: 20px;
  position: absolute;
  top: calc(50% + 1px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  #sec06 .inner form .checkbox_label .checkmark::before {
    font-size: 14px;
  }
}

#sec06 .inner form .checkbox_label .txt {
  color: #FFF;
  position: relative;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  #sec06 .inner form .checkbox_label .txt {
    font-size: 11px;
  }
}

#sec06 .inner form .checkbox_label .txt a {
  color: #FFF;
}

#sec06 .inner form .submit_btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 0;
  margin: 0 auto;
  width: 420px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffcc00;
  color: #0079ac;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: .1em;
  border: 2px solid #ffcc00;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  #sec06 .inner form .submit_btn {
    width: 92%;
    height: 52px;
    font-size: 14px;
  }
}

#sec06 .inner form .submit_btn:hover {
  background-color: #0079ac;
  color: #ffcc00;
}

#sec06 .inner .mw_wp_form_confirm form .contact_table tbody tr .detial {
  padding: 15px;
}

#sec06 .inner .mw_wp_form_confirm form .contact_table tbody tr.textarea .th {
  vertical-align: middle;
  padding-top: 0;
}

#sec06 .inner .mw_wp_form_confirm form .contact_table tbody tr.textarea .required {
  vertical-align: middle;
  padding-top: 0;
}

#sec06 .inner .mw_wp_form_confirm form .submit_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#sec06 .inner .mw_wp_form_confirm form .submit_btns .submit_btn {
  width: 250px;
  margin: 0;
}

@media screen and (max-width: 768px) {
  #sec06 .inner .mw_wp_form_confirm form .submit_btns .submit_btn {
    width: calc((99.9% / 2) - (15px / 2));
  }
}

#sec06 .inner .mw_wp_form_confirm form .submit_btns .submit_btn + .submit_btn {
  margin-left: 15px;
}

#sec06 .inner .mw_wp_form_confirm form .submit_btns, #sec06 .inner .mw_wp_form_complete form .submit_btns {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  #sec06 .inner .mw_wp_form_confirm form .submit_btns, #sec06 .inner .mw_wp_form_complete form .submit_btns {
    margin-top: 15px;
  }
}

#sec06 .inner .thx_message {
  padding: 20px 0;
  font-size: 20px;
  color: #FFF;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #sec06 .inner .thx_message {
    font-size: 16px;
    line-height: 1.4;
  }
}

#sec06 .inner .btn01 {
  margin: 20px auto 0;
  border: none;
  width: 420px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffcc00;
  color: #0079ac;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: .1em;
  border: 2px solid #ffcc00;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  #sec06 .inner .btn01 {
    width: 92%;
    height: 52px;
    font-size: 14px;
    margin: 15px auto 0;
  }
}

#sec06 .inner .btn01:hover {
  background-color: #0079ac;
  color: #ffcc00;
}
/*# sourceMappingURL=top.css.map */