@charset "UTF-8";
/* ***************************************************
 PC / SP共通
*************************************************** */
/* ////////////////// タグ初期値 ////////////////// */
html,
body {
  height: 100%;
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, Verdana, sans-serif;
}

*, *::after, *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  color: #2a2a2a;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
  margin: 0;
  padding: 0;
}

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

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  line-height: 1.25em;
}

a {
  color: #2a2a2a;
  text-decoration: none;
}

p {
  margin-top: 0;
  margin-bottom: 1.5em;
}

ul,
dl {
  padding: 0;
}

li, dt, dd {
  margin: 0px;
  padding: 0px;
}

table,
th,
td {
  border-collapse: collapse;
  border: 1px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -moz-box-sizing: content-box;
  height: 0;
}

/* テーブル */
table {
  width: 100%;
  margin: 0 auto 1.5em;
  min-height: 0.1%;
  overflow: auto;
}

td,
th {
  padding: 0.5em;
  border: 1px solid #CCC;
}

th {
  white-space: nowrap;
  background-color: #EEE;
  font-weight: normal;
}

/* ////////////////// フォーム ////////////////// */
form {
  margin: 0px auto;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, Verdana, sans-serif;
  font-size: 16px;
  border: 1px solid #c3cbd0;
  background-color: #fff;
  width: 100%;
  padding: 0.4rem;
  border-radius: 2px;
}

/* ボタン */
button,
input[type="button"],
input[type="submit"] {
  font-size: 16px;
  letter-spacing: normal;
  text-transform: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* セレクトボックス */
.select {
  position: relative;
  display: inline-block;
}
.select.block {
  display: block;
  margin-bottom: .5em;
}
.select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  padding: .4em 50px .4em .4em;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
}
.select select::-ms-expand {
  display: none;
}
.select select option:not(:last-child) {
  border-bottom: 1px dashed #ccc;
}
.select::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 100%;
  content: "";
  background-color: #2692d5;
  border-radius: 0 2px 2px 0;
}
.select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: inline-block;
  margin-top: -6px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none;
}

/* ***************************************************
 SP
*************************************************** */
@media screen and (max-width: 999px) {
  .pc {
    display: none !important;
  }

  html.scroll-prevent {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  body {
    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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-width: 320px;
    min-height: 100vh;
    line-height: 1.75em;
    font-size: 1rem;
  }

  .container {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    padding-top: 60px;
  }

  @-webkit-keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    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;
    height: 60px;
    padding: 0 0 0 4vw;
    background-color: #fff;
  }
  .header.fixed {
    -webkit-animation: show .5s ease 0s;
            animation: show .5s ease 0s;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
  }
  .header.fixed h1 {
    margin-bottom: 0;
  }
  .header.fixed p {
    display: none;
  }
  .header .header-left p {
    display: none;
  }
  .header .header-left h1 {
    margin: 0;
    font-size: 1rem;
  }
  .header .header-left h1 a {
    display: inline-block;
  }
  .header .header-nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    min-width: 80%;
    height: calc(100vh - 60px);
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 10px 4vw;
    -webkit-animation: show .5s ease 0s;
            animation: show .5s ease 0s;
    overflow-y: auto;
  }
  .header .header-nav.active {
    display: block;
  }
  .header .header-nav > ul {
    list-style: none;
    height: 100%;
    margin: 0;
  }
  .header .header-nav > ul > li {
    white-space: nowrap;
    border-bottom: 1px solid #c3cbd0;
    padding: .5em 0;
  }
  .header .header-nav > ul > li > span {
    position: relative;
    display: block;
    padding: .5em;
  }
  .header .header-nav > ul > li > span::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: #2692d5;
    margin: 0 auto;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .header .header-nav > ul > li.current span::after {
    width: 100%;
  }
  .header .header-nav > ul > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    color: #fff;
    padding: .5em;
  }
  .header .header-nav > ul > li.parent {
    position: relative;
  }
  .header .header-nav > ul > li.parent::after {
    position: absolute;
    top: 1.25em;
    right: 3vw;
    display: block;
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid #c3cbd0;
    border-right: 2px solid #c3cbd0;
    margin: 0 0 0 -3px;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .header .header-nav > ul > li.parent.active::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .header .header-nav > ul > li.parent ul {
    display: none;
    z-index: 100;
    list-style: none;
    background-color: rgba(0, 0, 0, 0.3);
    padding: .5em 0;
  }
  .header .header-nav > ul > li.parent ul li {
    white-space: nowrap;
  }
  .header .header-nav > ul > li.parent ul li:not(:last-child) {
    margin-bottom: .5em;
  }
  .header .header-nav > ul > li.parent ul li a {
    display: block;
    color: #fff;
    padding: .5em 1em;
  }

  #hamburger {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 60px;
    height: 60px;
  }
  #hamburger div {
    width: 100%;
    height: 100%;
    background-color: #2692d5;
    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;
  }
  #hamburger i {
    display: inline-block;
    width: 70%;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
  }
  #hamburger i:before, #hamburger i:after {
    content: "";
    height: 2px;
    border-radius: 3px;
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #fff;
  }
  #hamburger i:before {
    -webkit-transform: translate(0px, -7px);
            transform: translate(0px, -7px);
  }
  #hamburger i:after {
    -webkit-transform: translate(0px, 5px);
            transform: translate(0px, 5px);
  }
  #hamburger.active i {
    height: 0;
  }
  #hamburger.active i:before {
    -webkit-transform: rotate(-45deg) translate(0, 0);
            transform: rotate(-45deg) translate(0, 0);
  }
  #hamburger.active i:after {
    -webkit-transform: rotate(45deg) translate(-1px, -2px);
            transform: rotate(45deg) translate(-1px, -2px);
  }

  /* ////////////////// フッターお問い合わせエリア ////////////////// */
  .cv {
    width: 100%;
    padding: 30px 4vw;
    background-image: url(../images/sample/SW054.JPG);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .cv .cv-inner {
    width: 100%;
    margin: 0 auto;
    padding: 40px 4vw;
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
  }
  .cv .cv-inner h3 {
    border-bottom: 1px solid #2a2a2a;
    margin-bottom: 1.5em;
    padding-bottom: .5em;
  }
  .cv .cv-inner .button {
    margin: 50px 0 0;
  }
  .cv .cv-inner .button a {
    display: inline-block;
    padding: 1em 3em;
    border: 1px solid #2a2a2a;
  }

  /* ////////////////// フッター ////////////////// */
  .footer {
    position: relative;
    background-color: #2a2a2a;
    color: #fff;
  }
  .footer a {
    color: #fff;
  }
  .footer .footer-inner {
    width: 100%;
    margin: 0 auto;
    padding: 60px 4vw 40px;
  }
  .footer .footer-left {
    font-style: normal;
    margin-bottom: 40px;
  }
  .footer .footer-left h2 {
    font-size: 1.5rem;
    margin-bottom: 1em;
    text-align: center;
  }
  .footer .footer-left .address {
    font-size: 0.875rem;
    line-height: 2em;
  }
  .footer .footer-left .contact {
    text-align: center;
    margin: 40px 0;
  }
  .footer .footer-left .contact a {
    display: inline-block;
    padding: 1em 3em;
    margin: 0 auto;
    border: 1px solid #fff;
  }
  .footer .footer-left .phone {
    text-align: center;
  }
  .footer .footer-left .phone .text {
    font-weight: bold;
    margin-bottom: 10px;
  }
  .footer .footer-left .phone .number {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
  }
  .footer .footer-right ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer .footer-right ul li {
    padding: .5em;
    border-bottom: 1px solid #c3cbd0;
  }
  .footer .footer-right ul li a {
    display: block;
    padding: .5em;
  }
  .footer .footer-right ul li a::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    margin-bottom: 3px;
    margin-right: 10px;
  }
  .footer .copyright {
    text-align: center;
    margin: 0;
    font-size: 14px;
  }

  /* 上に戻る */
  #scroll-top {
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    transition: opacity 0.6s;
    position: fixed;
    right: -200px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    z-index: 99;
  }
  #scroll-top.show {
    opacity: 1;
    right: 4vw;
  }
  #scroll-top.end {
    position: absolute;
    top: -25px;
    bottom: auto;
  }
  #scroll-top.end a {
    background-color: #000;
  }
  #scroll-top a {
    position: relative;
    display: block;
    text-align: center;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    width: 100%;
    height: 100%;
    content: "";
  }
  #scroll-top a::before {
    position: absolute;
    top: 22px;
    left: 20px;
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  /* ////////////////// フリー編集箇所 ////////////////// */
  .contents {
    width: 100%;
    margin: 0 auto;
    padding: 60px 4vw;
    line-height: 2em;
  }
  .contents.single {
    padding: 50px 4vw 0;
  }
  .contents .wysiwyg,
  .contents .col2,
  .contents .col2-rev,
  .contents .box {
    margin: 60px auto;
  }
  .contents .wysiwyg p:last-child,
  .contents .col2 p:last-child,
  .contents .col2-rev p:last-child,
  .contents .box p:last-child {
    margin-bottom: 0;
  }
  .contents .wysiwyg h2:first-child,
  .contents .wysiwyg h3:first-child,
  .contents .wysiwyg h4:first-child,
  .contents .col2 h2:first-child,
  .contents .col2 h3:first-child,
  .contents .col2 h4:first-child,
  .contents .col2-rev h2:first-child,
  .contents .col2-rev h3:first-child,
  .contents .col2-rev h4:first-child,
  .contents .box h2:first-child,
  .contents .box h3:first-child,
  .contents .box h4:first-child {
    margin-top: 0;
  }
  .contents .wysiwyg:first-child,
  .contents .col2:first-child,
  .contents .col2-rev:first-child,
  .contents .box:first-child,
  .contents .gallery1:first-child,
  .contents .gallery2:first-child,
  .contents .gallery3:first-child,
  .contents .gallery4:first-child {
    margin-top: 0;
  }
  .contents .wysiwyg:last-child,
  .contents .col2:last-child,
  .contents .col2-rev:last-child,
  .contents .box:last-child,
  .contents .gallery1:last-child,
  .contents .gallery2:last-child,
  .contents .gallery3:last-child,
  .contents .gallery4:last-child {
    margin-bottom: 0;
  }
  .contents h2,
  .contents h3,
  .contents h4 {
    margin: 2em auto;
    line-height: 1.5em;
  }
  .contents h2 {
    background-color: #fff1da;
    border-top: 1px solid #2692d5;
    border-bottom: 1px solid #2692d5;
    padding: .75em 1em;
    font-size: 1.25rem;
  }
  .contents h3 {
    background-color: #fff1da;
    padding: .75em 1em;
    font-size: 24px;
  }
  .contents h4 {
    border-bottom: 1px solid #2692d5;
    padding: .75em 1em;
    font-size: 18px;
  }
  .contents a {
    color: #2692d5;
    text-decoration: underline;
  }
  .contents ol,
  .contents ul {
    margin: 1.5em 0;
    padding-left: 1.5em;
  }
  .contents ol li,
  .contents ul li {
    margin-bottom: .5em;
  }
  .contents ol li ol,
  .contents ol li ul,
  .contents ul li ol,
  .contents ul li ul {
    margin: 1em 0;
    padding-left: 1.5em;
  }
  .contents .col2 .img,
  .contents .col2-rev .img {
    width: 100%;
    margin-bottom: 1em;
    text-align: center;
  }
  .contents .col2 .img img,
  .contents .col2-rev .img img {
    width: 100%;
    max-width: 450px;
  }
  .contents .col2 .text p:last-child,
  .contents .col2-rev .text p:last-child {
    margin-bottom: 0;
  }
  .contents .gallery1,
  .contents .gallery2,
  .contents .gallery3,
  .contents .gallery4 {
    margin: 60px auto;
  }
  .contents .gallery1 {
    text-align: center;
  }
  .contents .gallery2,
  .contents .gallery3,
  .contents .gallery4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style: none;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
  .contents .gallery2 li {
    width: 49%;
  }
  .contents .gallery3::after {
    content: "";
    display: block;
    width: 33%;
  }
  .contents .gallery3 li {
    width: 33%;
  }
  .contents .gallery4::before {
    content: "";
    display: block;
    width: 24%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .contents .gallery4::after {
    content: "";
    display: block;
    width: 24%;
  }
  .contents .gallery4 li {
    width: 24%;
  }
  .contents .box {
    border: double #ddd;
    padding: 1em;
    margin-bottom: 1.5em;
  }
  .contents .box p:last-child {
    margin-bottom: 0;
  }

  /* ////////////////// 共通 ////////////////// */
  .title-center {
    text-align: center;
    margin-bottom: 2em;
    font-weight: normal;
  }
  .title-center span {
    padding: 0 .25em;
    border-bottom: 2px solid #2692d5;
  }

  .title-img {
    position: relative;
    width: 100%;
    height: 200px;
    padding: 20px 4vw;
    color: #fff;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .title-img h1,
  .title-img p,
  .title-img b {
    z-index: 10;
    text-align: center;
  }
  .title-img h1,
  .title-img b {
    font-size: 1.5rem;
    font-family: 'Noto Sans JP', Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Verdana, sans-serif;
    font-weight: 500;
    margin: .5em 0;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  }
  .title-img p {
    font-size: 0.875rem;
  }

  /* ////////////////// トップぺージ ////////////////// */
  #swiper-container {
    position: relative;
  }
  #swiper-container .swiper-slide {
    height: calc(100vh - 60px);
    max-height: 607px;
    background-size: cover;
    background-position: center center;
  }
  #swiper-container .swiper-text {
    position: absolute;
    bottom: 20%;
    left: 0;
    max-width: 90%;
    padding: 50px 4vw;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
  }
  #swiper-container .swiper-text .text1 {
    font-size: 1.25rem;
    margin: 0 0 30px;
  }
  #swiper-container .swiper-text .text2 {
    font-size: 0.875rem;
    margin: 0;
  }

  /* NEWS */
  .front-news {
    width: 100%;
    margin: 0 auto;
    padding: 60px 4vw;
  }
  .front-news .news-title {
    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;
  }
  .front-news .news-title h3 {
    font-family: 'Noto Sans JP', Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Verdana, sans-serif;
    margin: 0 auto 1em;
  }
  .front-news .news-title .news-link {
    font-size: 0.875rem;
  }
  .front-news a {
    color: #2a2a2a;
  }
  .front-news dl {
    margin-bottom: 40px;
  }
  .front-news dl dt {
    display: inline-block;
    padding: .5em;
    background-color: #2692d5;
    color: #fff;
    line-height: 1em;
    font-size: 0.75rem;
  }
  .front-news dl dd {
    padding: .5em 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: .5em;
  }
  .front-news .news-button {
    margin: 0;
    text-align: center;
  }
  .front-news .news-button a {
    display: inline-block;
    padding: .25em 1em;
    border: 1px solid #2a2a2a;
    font-size: 16px;
  }

  /* 事業内容 */
  .front-service {
    background-color: #fff1da;
    padding: 60px 0;
  }

  .front-service-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin: 0 auto;
  }
  .front-service-inner .item {
    width: 30%;
    min-width: 300px;
    margin: 0 1% 20px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }
  .front-service-inner .item .img {
    margin: 0;
  }
  .front-service-inner .item .img img {
    width: 100%;
  }
  .front-service-inner .item .text {
    padding: 30px 15px;
  }
  .front-service-inner .item .text h3 {
    text-align: center;
    margin: 0 auto 1em;
  }
  .front-service-inner .item .text p {
    margin: 0;
    font-size: 16px;
  }

  /* ////////////////// 会社概要・お問い合わせ ////////////////// */
  .page-company,
  .page-contact {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 4vw;
  }
  .page-company dl,
  .page-contact dl {
    margin: 0;
  }
  .page-company dl dt,
  .page-contact dl dt {
    padding: 1em 1em 0;
    font-weight: bold;
  }
  .page-company dl dd,
  .page-contact dl dd {
    padding: 1em;
    border-bottom: 1px solid #c3cbd0;
  }
  .page-company dl dd::after,
  .page-contact dl dd::after {
    clear: both;
    content: "";
    display: block;
  }

  .page-contact textarea {
    height: 200px;
  }
  .page-contact .check {
    margin: 2.5em 0;
    text-align: center;
  }
  .page-contact .button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-contact .button-wrapper button {
    padding: 1em 3em;
    border: 0 solid transparent;
    white-space: nowrap;
    font-size: 0.875rem;
  }
  .page-contact .button-wrapper button:not(:last-child) {
    margin-right: 30px;
  }
  .page-contact .button-wrapper button.back {
    background-color: #c3cbd0;
  }
  .page-contact .button-wrapper button.confirm, .page-contact .button-wrapper button.submit {
    background-color: #2692d5;
    color: #fff;
  }

  /* ////////////////// アクセス ////////////////// */
  .gmap {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin: 0 auto 2em;
  }

  .gmap iframe,
  .gmap object,
  .gmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  /* ////////////////// お知らせ ////////////////// */
  .archive {
    width: 100%;
    margin: 0 auto;
    padding: 60px 4vw;
  }
  .archive section {
    border: 1px solid #c3cbd0;
    margin-bottom: 40px;
  }
  .archive section a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 4vw;
  }
  .archive section .img {
    width: 100px;
    margin-right: 20px;
  }
  .archive section .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
  .archive section .text .date {
    font-size: 0.75rem;
    text-align: right;
    margin: 0;
  }
  .archive section .text h2 {
    font-size: 1rem;
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #c3cbd0;
  }
  .archive section .text .excerpt {
    margin: 0;
    font-size: 0.875rem;
  }

  /* 単投稿 */
  .single-header {
    width: 100%;
    margin: 0 auto;
    padding: 30px 4vw 0;
  }
  .single-header .date {
    width: 100%;
    margin: 0 auto;
    text-align: right;
  }
  .single-header h1 {
    border-bottom: 1px solid #2692d5;
    padding: .75em .5em;
    font-size: 1.5rem;
    font-weight: normal;
  }

  .single-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 60px 0;
    font-size: 0.75rem;
  }
  .single-nav.only-prev::after {
    content: "";
    display: block;
    width: 25%;
  }
  .single-nav.only-next::before {
    content: "";
    display: block;
    width: 25%;
  }
  .single-nav a {
    display: block;
    width: 25%;
    margin: 0 20px;
    padding: .5em;
    border: 1px solid #2a2a2a;
    text-align: center;
  }

  /* ////////////////// ページネーション(wp-pagenaviプラグイン用) ////////////////// */
  .wp-pagenavi {
    clear: both;
    text-align: center;
    margin: 30px 0px 1.5em;
  }
  .wp-pagenavi a,
  .wp-pagenavi span {
    text-decoration: none;
    border: 1px solid #2692d5;
    padding: 0.2em 0.5em;
    margin: 3px;
    background-color: #2692d5;
    color: #fff;
  }
  .wp-pagenavi a:hover {
    opacity: .8;
  }
  .wp-pagenavi .current {
    color: #2692d5;
    background-color: #fff;
  }
}
/* ***************************************************
 PC
*************************************************** */
@media all and (min-width: 1100px) {
  .sp {
    display: none !important;
  }

  body {
    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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-width: 320px;
    min-height: 100vh;
    line-height: 1.75em;
    font-size: 18px;
  }

  .container {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    padding-top: 60px;
  }

  #hamburger {
    display: none;
  }

  @-webkit-keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    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;
    height: 100px;
    padding: 0 60px 0 40px;
    background-color: #fff;
  }
  .header.fixed {
    -webkit-animation: show .5s ease 0s;
            animation: show .5s ease 0s;
    position: fixed;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
  }
  .header.fixed h1 {
    margin-bottom: 0;
  }
  .header.fixed p {
    display: none;
  }
  .header.fixed .header-nav ul li.parent ul {
    top: 70px;
  }
  .header .header-left p {
    margin: 0;
    font-size: 14px;
  }
  .header .header-left h1 {
    margin: 0;
  }
  .header .header-left h1 a {
    display: inline-block;
  }
  .header .header-nav {
    height: 100%;
  }
  .header .header-nav > ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    margin: 0;
  }
  .header .header-nav > ul > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    height: 100%;
    white-space: nowrap;
  }
  .header .header-nav > ul > li:not(:last-child) {
    margin-right: 2em;
  }
  .header .header-nav > ul > li > span {
    position: relative;
    padding: .5em;
    text-align: center;
  }
  .header .header-nav > ul > li > span::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: #2692d5;
    margin: 0 auto;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .header .header-nav > ul > li:hover span::after, .header .header-nav > ul > li.current span::after {
    width: 100%;
  }
  .header .header-nav > ul > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
  .header .header-nav > ul > li.parent {
    position: relative;
  }
  .header .header-nav > ul > li.parent::after {
    position: absolute;
    bottom: 10px;
    left: 50%;
    display: block;
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid #c3cbd0;
    border-right: 2px solid #c3cbd0;
    margin: 0 0 0 -3px;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .header .header-nav > ul > li.parent ul {
    display: none;
    z-index: 100;
    position: absolute;
    top: 100px;
    left: 0;
    list-style: none;
    background-color: rgba(0, 0, 0, 0.8);
    padding: .5em 0;
  }
  .header .header-nav > ul > li.parent ul li {
    white-space: nowrap;
  }
  .header .header-nav > ul > li.parent ul li a {
    display: block;
    color: #fff;
    padding: .5em 1em;
  }

  /* ////////////////// フッターお問い合わせエリア ////////////////// */
  .cv {
    position: relative;
    width: 100%;
    min-height: 440px;
    padding: 60px 80px;
    overflow: hidden;
  }
  .cv::after {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    background-image: url(../images/sample/SW054.JPG);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  .cv .cv-inner {
    width: 800px;
    margin: 0 auto;
    padding: 60px;
    background-color: #fff;
    text-align: center;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }
  .cv .cv-inner h3 {
    border-bottom: 1px solid #2a2a2a;
    margin-bottom: 1.5em;
    padding-bottom: .5em;
  }
  .cv .cv-inner .button {
    margin: 50px 0 0;
  }
  .cv .cv-inner .button a {
    display: inline-block;
    padding: 1em 3em;
    border: 1px solid #2a2a2a;
  }

  /* ////////////////// フッター ////////////////// */
  .footer {
    position: relative;
    background-color: #2a2a2a;
    color: #fff;
  }
  .footer a {
    color: #fff;
  }
  .footer .footer-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 1100px;
    margin: 0 auto;
    padding: 60px 0 40px;
  }
  .footer .footer-left {
    width: 30%;
    font-style: normal;
  }
  .footer .footer-left h2 {
    font-size: 24px;
    margin-bottom: 1em;
  }
  .footer .footer-left .address {
    font-size: 16px;
    line-height: 1.5em;
  }
  .footer .footer-left .contact a {
    display: inline-block;
    padding: 1em 3em;
    border: 1px solid #fff;
  }
  .footer .footer-left .phone .text {
    font-weight: bold;
    margin-bottom: 10px;
  }
  .footer .footer-left .phone .number {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
  }
  .footer .footer-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer .footer-right ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer .footer-right ul:not(:last-child) {
    margin-right: 80px;
  }
  .footer .footer-right ul li {
    margin-bottom: 1em;
  }
  .footer .footer-right ul li a::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    margin-bottom: 3px;
    margin-right: 10px;
  }
  .footer .copyright {
    text-align: center;
    margin: 0;
    font-size: 14px;
  }

  /* 上に戻る */
  #scroll-top {
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    transition: opacity 0.6s;
    position: fixed;
    right: -200px;
    bottom: 50px;
    width: 50px;
    height: 50px;
    z-index: 999;
  }
  #scroll-top.show {
    opacity: 1;
    right: 30px;
  }
  #scroll-top.end {
    position: absolute;
    top: -25px;
    bottom: auto;
  }
  #scroll-top.end a {
    background-color: #000;
  }
  #scroll-top a {
    position: relative;
    display: block;
    text-align: center;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    width: 100%;
    height: 100%;
    content: "";
  }
  #scroll-top a::before {
    position: absolute;
    top: 22px;
    left: 20px;
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  /* ////////////////// フリー編集箇所 ////////////////// */
  .contents {
    width: 1100px;
    margin: 0 auto;
    padding: 100px 0;
    line-height: 1.5em;
  }
  .contents.single {
    padding: 50px 0 0;
  }
  .contents .wysiwyg,
  .contents .col2,
  .contents .col2-rev,
  .contents .box {
    margin: 80px auto;
  }
  .contents .wysiwyg p:last-child,
  .contents .col2 p:last-child,
  .contents .col2-rev p:last-child,
  .contents .box p:last-child {
    margin-bottom: 0;
  }
  .contents .wysiwyg h2:first-child,
  .contents .wysiwyg h3:first-child,
  .contents .wysiwyg h4:first-child,
  .contents .col2 h2:first-child,
  .contents .col2 h3:first-child,
  .contents .col2 h4:first-child,
  .contents .col2-rev h2:first-child,
  .contents .col2-rev h3:first-child,
  .contents .col2-rev h4:first-child,
  .contents .box h2:first-child,
  .contents .box h3:first-child,
  .contents .box h4:first-child {
    margin-top: 0;
  }
  .contents .wysiwyg:first-child,
  .contents .col2:first-child,
  .contents .col2-rev:first-child,
  .contents .box:first-child,
  .contents .gallery1:first-child,
  .contents .gallery2:first-child,
  .contents .gallery3:first-child,
  .contents .gallery4:first-child {
    margin-top: 0;
  }
  .contents .wysiwyg:last-child,
  .contents .col2:last-child,
  .contents .col2-rev:last-child,
  .contents .box:last-child,
  .contents .gallery1:last-child,
  .contents .gallery2:last-child,
  .contents .gallery3:last-child,
  .contents .gallery4:last-child {
    margin-bottom: 0;
  }
  .contents h2,
  .contents h3,
  .contents h4 {
    margin: 2em auto;
    line-height: 1.5em;
  }
  .contents h2 {
    background-color: #fff1da;
    border-top: 1px solid #2692d5;
    border-bottom: 1px solid #2692d5;
    padding: .75em 1em;
    font-size: 24px;
  }
  .contents h3 {
    background-color: #fff1da;
    padding: .75em 1em;
    font-size: 24px;
  }
  .contents h4 {
    border-bottom: 1px solid #2692d5;
    padding: .75em 1em;
    font-size: 18px;
  }
  .contents a {
    color: #2692d5;
    text-decoration: underline;
  }
  .contents ol,
  .contents ul {
    margin: 1.5em 0;
    padding-left: 1.5em;
  }
  .contents ol li,
  .contents ul li {
    margin-bottom: .5em;
  }
  .contents ol li ol,
  .contents ol li ul,
  .contents ul li ol,
  .contents ul li ul {
    margin: 1em 0;
    padding-left: 1.5em;
  }
  .contents .col2,
  .contents .col2-rev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .contents .col2 .img,
  .contents .col2-rev .img {
    width: 40%;
  }
  .contents .col2 .text,
  .contents .col2-rev .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
  .contents .col2 .text p:last-child,
  .contents .col2-rev .text p:last-child {
    margin-bottom: 0;
  }
  .contents .col2 .img {
    margin-right: 40px;
  }
  .contents .col2-rev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .contents .col2-rev .img {
    margin-left: 40px;
  }
  .contents .gallery1,
  .contents .gallery2,
  .contents .gallery3,
  .contents .gallery4 {
    margin: 80px auto;
  }
  .contents .gallery1 {
    text-align: center;
  }
  .contents .gallery2,
  .contents .gallery3,
  .contents .gallery4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style: none;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
  .contents .gallery2 li {
    width: 49%;
  }
  .contents .gallery3::after {
    content: "";
    display: block;
    width: 33%;
  }
  .contents .gallery3 li {
    width: 33%;
  }
  .contents .gallery4::before {
    content: "";
    display: block;
    width: 24%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .contents .gallery4::after {
    content: "";
    display: block;
    width: 24%;
  }
  .contents .gallery4 li {
    width: 24%;
  }
  .contents .box {
    border: double #ddd;
    padding: 1em;
    margin-bottom: 1.5em;
  }
  .contents .box p:last-child {
    margin-bottom: 0;
  }

  /* ////////////////// 共通 ////////////////// */
  .title-center {
    text-align: center;
    margin-bottom: 2em;
    font-weight: normal;
  }
  .title-center span {
    padding: 0 .25em;
    border-bottom: 2px solid #2692d5;
  }

  .title-img {
    position: relative;
    width: 100%;
    height: 400px;
    color: #fff;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .title-img h1,
  .title-img p,
  .title-img b {
    z-index: 10;
    text-align: center;
  }
  .title-img h1,
  .title-img b {
    font-size: 36px;
    font-family: 'Noto Sans JP', Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Verdana, sans-serif;
    font-weight: 500;
    margin: .5em 0;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  }

  /* ////////////////// トップぺージ ////////////////// */
  #swiper-container {
    position: relative;
  }
  #swiper-container .swiper-slide {
    height: 600px;
    background-size: cover;
    background-position: center center;
  }
  #swiper-container .swiper-text {
    position: absolute;
    bottom: 50px;
    left: 0;
    padding: 50px 100px;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
  }
  #swiper-container .swiper-text .text1 {
    font-size: 36px;
    margin: 0 0 30px;
  }
  #swiper-container .swiper-text .text2 {
    font-size: 18px;
    margin: 0;
  }

  /* NEWS */
  .front-news {
    width: 800px;
    margin: 0 auto;
    padding: 100px 0 80px;
  }
  .front-news .news-title {
    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;
  }
  .front-news .news-title h3 {
    font-family: 'Noto Sans JP', Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Osaka, Verdana, sans-serif;
    margin: 0 auto 1em;
  }
  .front-news .news-title .news-link {
    font-size: 16px;
  }
  .front-news a {
    color: #2a2a2a;
  }
  .front-news dl {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .front-news dl dt {
    float: left;
    width: 140px;
    padding: .5em 20px;
  }
  .front-news dl dd {
    padding: .5em 0 .5em 160px;
    border-bottom: 1px solid #ddd;
    margin-bottom: .5em;
  }
  .front-news .news-button {
    margin: 0;
    text-align: center;
  }
  .front-news .news-button a {
    display: inline-block;
    padding: .25em 1em;
    border: 1px solid #2a2a2a;
    font-size: 16px;
  }

  /* 事業内容 */
  .front-service {
    background-color: #fff1da;
    padding: 100px 0;
  }

  .front-service-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 1100px;
    margin: 0 auto;
  }
  .front-service-inner .item {
    width: 30%;
    margin: 0 1% 20px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }
  .front-service-inner .item .img {
    margin: 0;
  }
  .front-service-inner .item .img img {
    width: 100%;
  }
  .front-service-inner .item .text {
    padding: 30px 15px;
  }
  .front-service-inner .item .text h3 {
    text-align: center;
    margin: 0 auto 1em;
  }
  .front-service-inner .item .text p {
    margin: 0;
    font-size: 16px;
  }

  /* ////////////////// 会社概要・お問い合わせ ////////////////// */
  .page-company,
  .page-contact {
    width: 800px;
    margin: 0 auto;
    padding: 100px 0;
  }
  .page-company dl dt,
  .page-contact dl dt {
    width: 200px;
    padding: 1em 1em 0;
    float: left;
  }
  .page-company dl dd,
  .page-contact dl dd {
    padding: 1em 1em 1em 220px;
    border-bottom: 1px solid #c3cbd0;
  }
  .page-company dl dd::after,
  .page-contact dl dd::after {
    clear: both;
    content: "";
    display: block;
  }

  .page-contact textarea {
    height: 200px;
  }
  .page-contact .check {
    margin: 2.5em 0;
    text-align: center;
  }
  .page-contact .button-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page-contact .button-wrapper button {
    padding: 1em 3em;
    border: 0 solid transparent;
  }
  .page-contact .button-wrapper button:not(:last-child) {
    margin-right: 40px;
  }
  .page-contact .button-wrapper button.back {
    background-color: #c3cbd0;
  }
  .page-contact .button-wrapper button.confirm, .page-contact .button-wrapper button.submit {
    background-color: #2692d5;
    color: #fff;
  }

  /* ////////////////// アクセス ////////////////// */
  .gmap {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin: 0 auto 2em;
  }

  .gmap iframe,
  .gmap object,
  .gmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  /* ////////////////// お知らせ ////////////////// */
  .archive {
    width: 1100px;
    margin: 0 auto;
    padding: 100px 0;
  }
  .archive section {
    border: 1px solid #c3cbd0;
    margin-bottom: 40px;
  }
  .archive section a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 40px;
  }
  .archive section .img {
    width: 200px;
    margin-right: 20px;
  }
  .archive section .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
  .archive section .text .date {
    font-size: 14px;
    text-align: right;
    margin: 0;
  }
  .archive section .text h2 {
    font-size: 24px;
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #c3cbd0;
  }
  .archive section .text .excerpt {
    margin: 0;
  }

  /* 単投稿 */
  .single-header {
    width: 1100px;
    margin: 0 auto;
    padding: 30px 0 0;
  }
  .single-header .date {
    width: 1100px;
    margin: 0 auto;
    text-align: right;
  }
  .single-header h1 {
    border-bottom: 1px solid #2692d5;
    padding: .75em .5em;
    font-size: 36px;
    font-weight: normal;
  }

  .single-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 800px;
    margin: 0 auto;
    padding: 100px 0;
  }
  .single-nav.only-prev::after {
    content: "";
    display: block;
    width: 25%;
  }
  .single-nav.only-next::before {
    content: "";
    display: block;
    width: 25%;
  }
  .single-nav a {
    display: block;
    width: 25%;
    margin: 0 20px;
    padding: .5em;
    border: 1px solid #2a2a2a;
    text-align: center;
  }

  /* ////////////////// ページネーション(wp-pagenaviプラグイン用) ////////////////// */
  .wp-pagenavi {
    clear: both;
    text-align: center;
    margin: 30px 0px 1.5em;
  }
  .wp-pagenavi a,
  .wp-pagenavi span {
    text-decoration: none;
    border: 1px solid #2692d5;
    padding: 0.2em 0.5em;
    margin: 3px;
    background-color: #2692d5;
    color: #fff;
  }
  .wp-pagenavi a:hover {
    opacity: .8;
  }
  .wp-pagenavi .current {
    color: #2692d5;
    background-color: #fff;
  }
}
