@charset "UTF-8";
* {
  background-repeat: no-repeat;
  line-height: 140%;
  margin: 0;
  padding: 0;
  outline: none;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  overflow: hidden;
  color: #333;
}

a:hover {
  color: #666;
}

img {
  border: none;
  line-height: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

img[data-echo] {
  min-width: 50px;
  min-height: 50px;
  background-image: url(../images/common/loader-white.gif);
  background-position: center center;
  border: solid 1px #ddd;
  border-radius: 5px;
}

img[data-echo].loaded {
  background-image: none;
}

.clear {
  clear: both;
  height: 0;
  line-height: 0;
  font-size: 0;
}

.space10 {
  height: 10px;
}

.space20 {
  height: 20px;
}

.space30 {
  height: 30px;
}

.space40 {
  height: 40px;
}

.space100 {
  height: 100px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

.font10 {
  font-size: 10px;
}

.font12 {
  font-size: 12px;
}

.font14 {
  font-size: 14px;
}

.bold {
  font-weight: bold;
}

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

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.red {
  color: #c00;
}

ul.no-list-style li {
  list-style: none;
}

.alpha {
  transition: all 0.4s ease-out;
}

.alpha:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.75;
  opacity: 0.75;
}

.wrap-alpha a {
  transition: all 0.4s ease-out;
}

.wrap-alpha a:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.75;
  opacity: 0.75;
}

.transition-01 {
  transition: all 0.2s ease-out;
}

.transition-02 {
  transition: all 0.4s ease-out;
}

.transition-03 {
  transition: all 0.6s ease-out;
}

/* Scroll Trigger */
.trigger {
  transition: transform 1s ease, opacity 1s ease;
}

.trigger-2 {
  transition: transform 1.5s ease, opacity 1.5s ease;
}

.trigger-3 {
  transition: transform 1s ease 0.5s, opacity 1s ease 0.5s;
}

.invisible {
  transition: opacity 0.5s ease;
  opacity: 0;
}

.visible {
  transition: opacity 1s ease;
  opacity: 1;
}

.fromTopIn {
  transform: translate(0, 0);
  opacity: 1;
}

.fromTopOut {
  transform: translate(0, -20px);
  opacity: 0;
}

.fromBottomIn {
  transform: translate(0, 0);
  opacity: 1;
}

.fromBottomOut {
  transform: translate(0, 20px);
  opacity: 0;
}

.fromLeftIn {
  transform: translate(0, 0);
  opacity: 1;
}

.fromLeftOut {
  transform: translate(-20px, 0);
  opacity: 0;
}

.fromRightIn {
  transform: translate(0, 0);
  opacity: 1;
}

.fromRightOut {
  transform: translate(20px, 0);
  opacity: 0;
}

.scaleUpIn {
  transform: scale(1, 1);
  opacity: 1;
}

.scaleUpOut {
  transform: scale(1.2, 1.2);
  opacity: 0;
}

.scaleDownIn {
  transform: scale(1, 1);
  opacity: 1;
}

.scaleDownOut {
  transform: scale(0.7, 0.7);
  opacity: 0;
}

.rotateIn {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

.rotateOut {
  transform: rotate(30deg) scale(0.9);
  opacity: 0;
}

.bd-01 {
  background: linear-gradient(transparent 60%, rgba(252, 238, 33, 0.6) 0%);
  font-weight: bold;
}

.bd-02 {
  background: linear-gradient(transparent 60%, rgba(228, 0, 3, 0.4) 0%);
  font-weight: bold;
}

.bd-03 {
  background: linear-gradient(transparent 60%, rgba(0, 65, 219, 0.5) 0%);
  font-weight: bold;
}

.cursor {
  cursor: pointer;
  cursor: hand;
}

th,
td {
  text-align: left;
}

input[type=text]:focus {
  outline: 0;
}

button:focus {
  outline: 0;
  -webkit-appearance: none;
  border-radius: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-table;
}

.clearfix {
  zoom: 1;
} /** for IE7 **/
/* Hides from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End hide from IE-mac */
.link a {
  color: #0071b8;
}

.link a:hover {
  color: #ffb700;
}

#window-size {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 200px;
  background-color: #fff;
  font-size: 16px;
  font-weight: bold;
  z-index: 9999;
  text-align: center;
  padding: 10px;
  display: none;
}

#ie-notice {
  background-color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: red;
}

i {
  font-style: normal;
}

/** ***********************************************

COMMON

*********************************************** **/
.cols-2 {
  font-size: 0;
}

.cols-2 .col {
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  width: 50%;
}

.cols-3 {
  font-size: 0;
}

.cols-3 .col {
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  width: 33.33333%;
}

.cols-4 {
  font-size: 0;
}

.cols-4 .col {
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  width: 25%;
}

@media screen and (max-width: 700px) {
  .cols-2 .col,
  .cols-3 .col,
  .cols-4 .col {
    display: block;
    width: 100%;
  }
}
.tr {
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}

.td {
  display: table-cell;
  vertical-align: top;
  word-wrap: break-word;
  overflow: hidden;
  word-break: break-all;
}

.th {
  display: table-cell;
  vertical-align: top;
  word-wrap: break-word;
  overflow: hidden;
  word-break: break-all;
  font-weight: bold;
}

.reset {
  font-size: 0;
  letter-spacing: 0.5;
}

.reset li {
  font-size: 14px;
  letter-spacing: normal;
}

.full {
  width: 100%;
  height: auto;
}

.hr-list {
  letter-spacing: -0.5em;
}

.hr-list li {
  display: inline-block;
  vertical-align: top;
  letter-spacing: normal;
}

.table-style-01 {
  width: 100%;
}

.table-style-01 table {
  width: 100%;
  border-collapse: collapse;
}

.table-style-01 th {
  padding: 10px;
  text-align: left;
  background-color: #eee;
  border-bottom: solid 1px #ddd;
}

.table-style-01 td {
  padding: 10px;
  border-bottom: solid 1px #ddd;
}

.table-style-02 {
  width: 100%;
  background-color: #ccc;
}

.table-style-02 table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 1px;
}

.table-style-02 th {
  text-align: right;
  padding: 8px 10px;
  vertical-align: top;
  white-space: nowrap;
  background: #eee;
}

.table-style-02 td {
  padding: 8px 10px;
  background-color: #fff;
}

.bt-blue a {
  color: #fff;
  display: block;
  padding: 15px 10px;
  text-align: center;
  background-color: #269fe0;
  border-radius: 5px;
  border-bottom: solid 3px #069;
}

.bt-blue a:hover {
  background-color: #ccc;
  border-bottom: none;
  margin-top: 11px !important;
}

.bt-blue-02 a {
  color: #fff;
  display: block;
  padding: 10px 10px;
  text-align: center;
  background-color: #269fe0;
  border-radius: 4px;
}

.bt-blue-02 a:hover {
  background-color: #ccc;
}

.bt-orange a {
  color: #fff;
  display: block;
  padding: 15px 10px;
  text-align: center;
  background: #f90;
  border-radius: 5px;
  border: solid 1px #fff;
  background: linear-gradient(to bottom, #f90, #f60);
}

.bt-orange a:hover {
  background: #f60;
}

#wrapper.on {
  filter: blur(10px);
}

body {
  -webkit-text-size-adjust: 100%;
  word-break: break-all;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 100%;
  font-weight: 400;
}

.mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/**  Slick Base  fadeする場合はslick.cssの読み込みが必要**/
.slick {
  overflow: hidden;
  width: 100%;
  position: relative;
  -webkit-backface-visibility: hidden;
}

.slick li.slick-slide {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
}

.slick li.slick-slide img {
  width: 100%;
  height: auto;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  font-size: 50px;
  margin-top: -50px;
  z-index: 2;
}

.slick-prev {
  left: 10px;
}

.slick-next {
  right: 10px;
}

.slick-dots {
  text-align: center;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
}

.slick-dots li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ddd;
  border-radius: 100%;
  text-indent: -9999px;
  cursor: pointer;
}

.slick-dots li.slick-active {
  background-color: #0071bc;
}

#news {
  background-color: #ffee03;
}

#news .inner {
  padding: 10px;
  text-align: center;
}

#news .inner p {
  font-size: 14px;
  font-weight: bold;
}

#news .inner a {
  color: #0071bc;
  text-decoration: underline;
}

#news .inner .date {
  font-size: 12px;
  color: #333;
}

/** ***********************************************

HEADER

*********************************************** **/
#header {
  position: relative;
  overflow: hidden;
}

.wrap-sns {
  position: absolute;
  top: 10px;
  right: -100px;
  display: flex;
  flex-wrap: wrap;
  width: 80px;
  gap: 5px;
}
@media screen and (max-width: 1024px) {
  .wrap-sns {
    display: none;
  }
}
.wrap-sns .icon {
  display: block;
}
.wrap-sns .icon img {
  width: 35px;
  display: block;
}

#header .wrap-h1 {
  background-color: #0052a5;
  color: #fff;
  padding: 3px;
}

#header .wrap-h1 h1 {
  font-size: 14px;
  padding: 0 10px;
  font-weight: bold;
}

#header .cols-3 {
  padding: 10px;
}

#header .col-1 {
  width: 30%;
}

#header .col-2 {
  text-align: center;
  width: 40%;
}

#header .col-3 {
  width: 30%;
  position: relative;
}

#header .area {
  font-size: 12px;
  background-color: #ffee03;
  border-radius: 100px;
  padding: 3px 10px;
  text-align: center;
  margin-bottom: 10px;
  max-width: 280px;
  font-weight: bold;
}

#header .area a {
  font-weight: bold;
}

#logo {
  margin-bottom: 10px;
  width: 100%;
  height: auto;
  max-width: 280px;
}

#header .add {
  letter-spacing: 1px;
  font-size: 14px;
}

#header .add a {
  display: inline-block;
  background-color: #e25a24;
  color: #fff;
  padding: 2px 12px;
  font-size: 12px;
  vertical-align: middle;
  margin-left: 5px;
  margin-bottom: 3px;
}

#header .mes {
  background-color: #de1c24;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  max-width: 340px;
  margin: 0 auto 20px;
}

#header .bh {
  font-weight: bold;
  font-size: 16px;
  margin-top: 10px;
}

#header .chara {
  position: absolute;
  top: 0px;
  left: 0px;
}

#header .wrap-estimate {
  background-color: #fffba8;
  text-align: center;
  margin-left: 100px;
}

#header .wrap-estimate .in {
  padding: 25px 10px;
}

#header .wrap-estimate p {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  background-color: #ffee03;
  padding: 8px;
  letter-spacing: 0;
}

#header .bt-estimate {
  font-size: 14px;
  color: #fff;
  background-color: #e25a24;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: bold;
  border: solid 2px #fff;
  white-space: nowrap;
}

#header .bt-estimate i {
  font-style: normal;
  font-size: 10px;
  vertical-align: middle;
  display: inline-block;
  padding-bottom: 3px;
}

@media screen and (max-width: 1200px) {
  #header .wrap-h1 h1 {
    font-size: 12px;
  }
  #header .cols-3 {
    padding: 10px 20px;
  }
  #header .col-1 {
    width: 30%;
  }
  #header .col-2 {
    width: 35%;
  }
  #header .col-3 {
    width: 35%;
  }
  #header .area {
    font-size: 12px;
  }
  #header .add {
    font-size: 14px;
  }
  #header .add a {
    padding: 0px 12px;
    font-size: 10px;
  }
  #header .mes {
    font-size: 14px;
    margin: 0 auto 20px;
  }
  #header .bh {
    font-size: 14px;
    margin-top: 10px;
  }
  #header .wrap-estimate .in {
    padding: 25px 10px;
  }
  #header .wrap-estimate p {
    font-size: 16px;
    padding: 8px;
  }
  #header .bt-estimate {
    font-size: 12px;
    padding: 10px 10px;
  }
}
@media screen and (max-width: 800px) {
  #header .col-1 {
    width: 25%;
    padding-right: 20px;
  }
  #header .col-2 {
    width: 35%;
    padding-right: 20px;
  }
  #header .col-3 {
    width: 40%;
  }
  #header .area {
    font-size: 10px;
  }
  #header .add {
    font-size: 12px;
  }
  #logo {
    max-width: 150px;
  }
  #header .bt-estimate {
    font-size: 12px;
  }
}
@media screen and (max-width: 750px) {
  #header .wrap-h1 h1 {
    font-size: 10px;
    display: none;
  }
  #header .col-1 {
    width: 100%;
    text-align: center;
  }
  #header .col-2 {
    display: none;
  }
  #header .col-3 {
    display: none;
  }
  #header .area {
    max-width: 200px;
    margin: 0 auto 10px;
  }
  #header .add {
    font-size: 14px;
  }
}
/** ***********************************************

MENU

*********************************************** **/
#gnav {
  background-color: #0052a5;
  color: #fff;
  text-align: center;
  font-size: 0;
  position: relative;
}

#gnav .main-menu li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

#gnav .main-menu li a {
  display: block;
  color: #fff;
  padding: 20px 30px;
  font-size: 18px;
  font-weight: bold;
  border-right: solid 1px #fff;
  position: relative;
}

#gnav .main-menu li.on a,
#gnav .main-menu li a:hover {
  background-color: #ffee03;
  color: #000;
}

#gnav .main-menu li:first-child a {
  border-left: solid 1px #fff;
}

#gnav .main-menu li i.icon-sankaku {
  font-size: 12px;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -6px;
}

#gnav .sub {
  display: none;
  width: 100%;
  background-color: #fff;
  z-index: 10;
  padding: 30px;
  text-align: left;
}

#gnav .sub li {
  width: 20%;
  display: inline-block;
  padding: 10px;
}

#gnav .sub a {
  display: inline;
  padding: 0;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  text-align: center;
}

.wrap #gnav .sub a {
  font-weight: bold;
}

#gnav .sub .wrap-img {
  display: block;
  width: 100%;
  height: 100px;
  background-size: cover;
  background-color: #ddd;
  background-position: center;
}

#gnav .sub a span {
  display: block;
  margin-top: 5px;
  color: #0071bc;
}

@media screen and (max-width: 1200px) {
  #gnav .main-menu li a {
    padding: 20px 30px;
    font-size: 18px;
  }
  #gnav .main-menu li i.icon-sankaku {
    font-size: 12px;
    margin-left: -6px;
  }
}
@media screen and (max-width: 1023px) {
  #gnav .main-menu li a {
    padding: 20px;
    font-size: 16px;
  }
}
@media screen and (max-width: 850px) {
  #gnav .main-menu li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  #gnav {
    display: none;
  }
}
/** ***********************************************

TOP MAIN

*********************************************** **/
#slide-1.slick li.slick-slide {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  height: 500px;
  background-color: #000;
  position: relative;
}

#slide-1.slick li a {
  background-size: cover;
  display: block;
  height: 500px;
  width: 100%;
  background-position: center;
  opacity: 0.2;
  color: #fff;
  padding: 50px 50px;
}

#slide-1.slick li.slick-current a {
  opacity: 1;
  z-index: 2;
}

#slide-1.slick li.slick-current a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-left: solid 1px #fff;
  border-right: solid 1px #fff;
}

#slide-1 .slick-arrow {
  position: absolute;
  top: 50%;
  font-size: 40px;
  margin-top: -50px;
  z-index: 2;
  color: #fff;
  background-color: #0052a5;
  width: 60px;
  height: 60px;
  border-radius: 100px;
  text-align: center;
  vertical-align: middle;
  line-height: 100%;
  padding-top: 7px;
  border: solid 2px #fff;
}

#slide-1 .slick-prev {
  left: 60px;
  padding-right: 7px;
}

#slide-1 .slick-next {
  right: 60px;
  padding-left: 7px;
}

#slide-1 .slick-dots {
  text-align: center !important;
  position: absolute;
  bottom: 5px;
  left: 50%;
  margin-left: -50px;
  width: 100px;
  padding: 5px 10px 0;
}

#slide-1 .slick-dots li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0px 5px;
  background-color: #ddd;
  text-indent: -9999px;
  cursor: pointer;
  vertical-align: top;
}

#slide-1 .slick-dots li.slick-active {
  background-color: #ffee03;
}

#slide-1 h3.slide-title {
  font-size: 50px;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}

#slide-1 p.desc {
  font-size: 20px;
  font-weight: bold;
  max-width: 600px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 3;
  line-height: 160%;
}

#slide-1 .bt {
  background-color: #ffee03;
  color: #000;
  width: 240px;
  padding: 15px 20px;
  font-weight: bold;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  position: relative;
  z-index: 3;
  border: solid 2px #fff;
}

#slide-1 .bt i {
  font-size: 12px;
  margin-right: 10px;
}

@media screen and (max-width: 800px) {
  #slide-1 h3.slide-title {
    font-size: 36px;
  }
  #slide-1.slick li.slick-slide {
    height: 400px;
  }
  #slide-1.slick li a {
    height: 400px;
  }
  #slide-1 .bt {
    width: 200px;
    padding: 10px;
    font-size: 14px;
  }
  #slide-1 .bt i {
    font-size: 10px;
  }
}
@media screen and (max-width: 700px) {
  #slide-1.slick li.slick-slide {
    height: 300px;
  }
  #slide-1.slick li a {
    height: 300px;
    padding: 40px 20px 0;
  }
  #slide-1 h3.slide-title {
    font-size: 26px;
    text-align: center;
    padding: 0;
    margin-bottom: 20px;
  }
  #slide-1 p.desc {
    font-size: 14px;
    margin: 0 auto 20px;
  }
  #slide-1 .bt {
    width: 200px;
    padding: 10px;
    font-size: 14px;
  }
  #slide-1 .bt i {
    font-size: 10px;
  }
  #slide-1 .slick-dots {
    bottom: 10px;
    padding: 5px 5px 0;
  }
  #slide-1 .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 2px 3px;
  }
}
.title-h2 {
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0;
}

.title-h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: #000;
  margin: 30px auto;
}

.sec-common {
  padding: 50px 0;
}

.bt-y {
  text-align: center;
}

.bt-y a {
  display: block;
  margin: 50px auto 0;
  max-width: 240px;
  width: 100%;
  background-color: #ffee03;
  color: #000;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  border: solid 2px #fff;
}

.bt-y a i {
  font-size: 12px;
  margin-right: 5px;
}

.bt-g {
  text-align: center;
}

.bt-g a {
  display: block;
  margin: 50px auto 0;
  max-width: 240px;
  width: 100%;
  background-color: #0052a5;
  color: #fff;
  font-size: 14px;
  padding: 15px;
  font-weight: bold;
  border: solid 2px #fff;
}

.bt-g a i {
  font-size: 10px;
  margin-right: 5px;
}

@media screen and (max-width: 700px) {
  .title-h2 {
    font-size: 25px;
    margin-bottom: 50px;
  }
  .title-h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: #000;
    margin: 20px auto;
  }
  .sec-common {
    padding: 30px 0;
  }
  .bt-y a {
    display: block;
    margin: 30px auto 0;
    max-width: 200px;
    width: 100%;
    background-color: #ffee03;
    color: #000;
    font-size: 20px;
    padding: 15px;
    font-size: 14px;
    font-weight: bold;
    border: solid 2px #fff;
  }
  .bt-y a i {
    font-size: 10px;
    vertical-align: middle;
  }
}
#sec-02 {
  background-color: #e4eaf2;
}

#sec-02 .inner {
  text-align: center;
}

#sec-02 .catch {
  font-size: 24px;
  font-weight: bold;
  color: #e25a24;
}

#sec-02 .title-h3 {
  font-size: 40px;
  font-weight: bold;
  color: #e25a24;
}

#sec-02 .wrap-hitoke {
  max-width: 700px;
  margin: 50px auto 20px;
  height: 150px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

#sec-02 .wrap-hitoke li {
  list-style: none;
  font-size: 16px;
  text-align: left;
  margin-bottom: 10px;
}

@media screen and (max-width: 700px) {
  #sec-02 .catch {
    font-size: 16px;
  }
  #sec-02 .title-h3 {
    font-size: 30px;
  }
  #sec-02 .wrap-hitoke {
    max-width: 700px;
    margin: 30px 20px 20px;
    height: 150px;
    overflow: auto;
  }
  #sec-02 .wrap-hitoke li {
    font-size: 14px;
    text-align: left;
    margin-bottom: 10px;
  }
}
#sec-03 {
  background-color: #0052a5;
  color: #fff;
}

#sec-03 .title-h2::after {
  background-color: #fff;
}

#sec-03 .item {
  margin-bottom: 50px;
}

#sec-03 .img {
  width: 50%;
  padding: 0 30px;
}

#sec-03 .txt {
  width: 50%;
  padding: 0 30px;
}

#sec-03 .fl-l {
  float: left;
}

#sec-03 .fl-r {
  float: right;
}

#sec-03 h3 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
}

#sec-03 h3 i {
  color: #ffee03;
  font-style: italic;
  font-size: 70px;
  margin-right: 5px;
}

#sec-03 p {
  font-size: 18px;
  line-height: 160%;
}

@media screen and (max-width: 700px) {
  #sec-03 .item {
    margin-bottom: 30px;
  }
  #sec-03 .img {
    width: 100%;
    padding: 0;
  }
  #sec-03 .txt {
    width: 100%;
    padding: 20px;
  }
  #sec-03 .fl-l {
    float: none;
  }
  #sec-03 .fl-r {
    float: none;
  }
  #sec-03 h3 {
    font-size: clamp(20px, 2.3vw, 30px);
    margin-bottom: 20px;
  }
  #sec-03 .item-2 h3 {
    font-size: clamp(20px, 2.3vw, 30px);
  }
  #sec-03 h3 i {
    font-size: 40px;
  }
  #sec-03 p {
    font-size: 14px;
    line-height: 160%;
  }
}
#sec-04 .cols-2 {
  margin-bottom: 40px;
}

#sec-04 .cols-2 li {
  padding: 20px;
  position: relative;
}

#sec-04 .cols-2 a {
  display: block;
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 10px;
  position: relative;
}

#sec-04 .cols-2 a::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

#sec-04 h3 {
  color: #ffee03;
  position: absolute;
  top: -20px;
  left: 30px;
  z-index: 2;
  line-height: 100%;
}

#sec-04 h3 i {
  color: #ffee03;
  font-style: italic;
  display: block;
  line-height: 120%;
}

#sec-04 .cols-2 h3 {
  font-size: 40px;
  text-shadow: 2px 2px 2px #333;
}

#sec-04 .cols-2 h3 i {
  font-size: 70px;
  line-height: 120%;
}

#sec-04 p.desc {
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  z-index: 3;
}

#sec-04 .cols-2 p.desc {
  top: 100px;
  left: 20px;
  max-width: 80%;
  text-shadow: 2px 2px 2px #333;
}

#sec-04 .bt {
  position: absolute;
  bottom: 10px;
  right: 10px;
  border: solid 1px #fff;
  padding: 10px;
  z-index: 3;
  transition: all 0.2s ease-out;
}

#sec-04 a:hover .bt {
  background-color: #fff;
  color: #333;
}

#sec-04 .cols-3 li {
  padding: 10px;
  position: relative;
  margin-bottom: 30px;
}

#sec-04 .cols-3 a {
  display: block;
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 10px;
  position: relative;
  background-color: #333;
}

#sec-04 .cols-3 a::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

#sec-04 .cols-3 h3 {
  font-size: 32px;
  text-shadow: 2px 2px 2px #333;
}

#sec-04 .cols-3 h3 i {
  font-size: 46px;
  line-height: 120%;
}

#sec-04 .cols-3 p.desc {
  font-size: 16px;
  top: 65px;
  left: 20px;
  max-width: 80%;
  text-shadow: 2px 2px 2px #333;
}

#sec-04 .cols-3 .bt {
  font-size: 12px;
}

#sec-04 .cols-3 .bt i {
  font-size: 10px;
}

@media screen and (max-width: 700px) {
  #sec-04 .cols-2 {
    margin-bottom: 0px;
  }
  #sec-04 .cols-2 li {
    padding: 10px;
    position: relative;
    margin-bottom: 30px;
  }
  #sec-04 .cols-2 a {
    height: 250px;
  }
  #sec-04 .cols-2 h3 {
    font-size: 32px;
    text-shadow: 2px 2px 2px #333;
  }
  #sec-04 .cols-2 h3 i {
    font-size: 46px;
    line-height: 120%;
  }
  #sec-04 .bt {
    font-size: 12px;
  }
  #sec-04 .bt i {
    font-size: 10px;
  }
}
#sec-05 {
  background-color: #e4eaf2;
}

#sec-05 .cols-3 li {
  padding: 10px;
  text-align: center;
  padding-bottom: 20px;
}

#sec-05 .cols-3 .wrap-img {
  display: block;
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  background-color: #333;
}

#sec-05 .cols-3 p {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

#sec-05 .cols-3 li.alpha:hover p {
  opacity: 1;
}

@media screen and (max-width: 700px) {
  #sec-05 .cols-3 p {
    font-size: 12px;
  }
  #sec-05 .cols-3 li {
    width: 50%;
    padding-bottom: 0px;
    display: inline-block;
  }
  #sec-05 .cols-3 .wrap-img {
    height: 150px;
  }
}
.wrap-contact {
  border: solid 5px rgb(231, 29, 36);
  max-width: 1000px;
  margin: 0 auto;
}

.wrap-contact .catch {
  background-color: rgb(231, 29, 36);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 15px;
  color: #fff;
}

.wrap-contact .cols-2 {
  padding: 20px;
  text-align: center;
}

.wrap-contact .col-1 {
  width: 50%;
  padding-right: 30px;
}

.wrap-contact .col-2 {
  width: 50%;
  position: relative;
  padding-left: 30px;
}

.wrap-contact .col-1 p {
  font-weight: bold;
}

.wrap-contact .col-1 .p2 {
  margin-top: 15px;
  margin-bottom: 10px;
}

.wrap-contact .col-1 .p3 {
  background-color: rgb(231, 29, 36);
  color: #fff;
  max-width: 150px;
  margin: 10px auto;
}

.wrap-contact .col-2 .chara {
  position: absolute;
  top: 40px;
  left: 0px;
}

.wrap-contact .col-2 .wrap-estimate {
  background-color: #fffba8;
  text-align: center;
  margin-left: 100px;
  margin-top: 50px;
}

.wrap-contact .col-2 .wrap-estimate .in {
  padding: 25px 10px;
}

.wrap-contact .col-2 .wrap-estimate p {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  background-color: #ffee03;
  padding: 8px;
  letter-spacing: 0;
}

.wrap-contact .col-2 .bt-estimate {
  font-size: 14px;
  color: #fff;
  background-color: #e25a24;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: bold;
  border: solid 2px #fff;
  white-space: nowrap;
}

.wrap-contact .col-2 .bt-estimate i {
  font-style: normal;
  font-size: 10px;
  vertical-align: middle;
  display: inline-block;
  padding-bottom: 3px;
}

/**
@media screen and (max-width: 1200px) {

#page .wrap-contact .catch{font-size: 20px}
#page .wrap-contact .col-1{width: 50%; padding-right: 30px}
#page .wrap-contact .col-2{width: 50%;position: relative; padding-left: 30px}

}



@media screen and (max-width: 950px) {

#page .wrap-contact{border:solid 5px rgba(231,29,36,1.00); max-width: 1000px; margin: 0 auto;}
#page .wrap-contact .catch{font-size: 18px ;padding: 10px}
#page .wrap-contact .col-1{width: 100%; padding-right: 0px}
#page .wrap-contact .col-2{width: 100%; padding-left: 0px}
#page .wrap-contact .col-2 .chara{position: absolute; top:0px; left: -15px}
#page .wrap-contact .col-2 .wrap-estimate{ margin-top: 20px}
#page .wrap-contact .col-2 .wrap-estimate p{font-size: 16px;}
#page .wrap-contact .col-2 .bt-estimate{font-size: 16px}

}


@media screen and (max-width: 500px) {

#page .wrap-contact{border:solid 5px rgba(231,29,36,1.00); max-width: 1000px; margin: 0 auto;}
#page .wrap-contact .catch{font-size: 18px ;padding: 10px}
#page .wrap-contact .col-1{width: 100%; padding-right: 0px}
#page .wrap-contact .col-2{width: 100%; padding-left: 0px}
#page .wrap-contact .col-1 .img-02{max-width: 200px}
#page .wrap-contact .col-2 .chara{position: absolute; top:0px; left: -15px}
#page .wrap-contact .col-2 .wrap-estimate{ margin-top: 20px}
#page .wrap-contact .col-2 .wrap-estimate p{font-size: 16px;}
#page .wrap-contact .col-2 .bt-estimate{font-size: 16px}

}
**/
@media screen and (max-width: 700px) {
  .wrap-contact {
    border: solid 5px rgb(231, 29, 36);
    max-width: 1000px;
    margin: 0 auto;
  }
  .wrap-contact .catch {
    font-size: 18px;
    padding: 10px;
  }
  .wrap-contact .col-1 {
    width: 100%;
    padding-right: 0px;
  }
  .wrap-contact .col-2 {
    width: 100%;
    padding-left: 0px;
  }
  .wrap-contact .col-1 .img-02 {
    max-width: 200px;
  }
  .wrap-contact .col-2 .chara {
    position: absolute;
    top: 0px;
    left: -15px;
  }
  .wrap-contact .col-2 .wrap-estimate {
    margin-top: 20px;
  }
  .wrap-contact .col-2 .wrap-estimate p {
    font-size: 16px;
  }
  .wrap-contact .col-2 .bt-estimate {
    font-size: 12px;
  }
}
/** ブログ **/
#sec-07 .cols-3 li {
  padding: 10px;
  text-align: center;
  padding-bottom: 20px;
}

#sec-07 .cols-3 .wrap-img {
  display: block;
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  color: #333;
  position: relative;
  background-color: #ddd;
  font-size: 24px;
  padding-top: 90px;
  letter-spacing: 1px;
}

#sec-07 .cols-3 p {
  font-size: 14px;
  margin-top: 10px;
  font-weight: bold;
}

#sec-07 .cols-3 li.alpha:hover p {
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  #sec-07 .cols-3 .wrap-img {
    height: 200px;
    padding-top: 80px;
  }
  #sec-07 .cols-3 .wrap-img img {
    max-width: 150px;
  }
}
@media screen and (max-width: 700px) {
  #sec-07 .cols-3 .wrap-img {
    height: 150px;
    padding-top: 54px;
  }
}
#back-top a {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #000;
  padding: 10px;
  color: #eee;
  font-size: 14px;
}

#footer {
  background-color: #eee;
}

#footer .inner {
  padding: 50px 10px;
}

#footer .col-1 {
  width: 40%;
}

#footer .col-2 {
  width: 60%;
  padding-left: 50px;
}

#footer .p1 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 5px;
}

#footer .p2 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

#footer .p2 a {
  background-color: #e25a24;
  color: #fff;
  font-size: 10px;
  display: inline-block;
  padding: 1px 10px;
  margin-left: 5px;
}

#footer .p3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

#footer .p4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

#footer .p5 {
  font-size: 14px;
}

#f-nav li {
  list-style: none;
  display: inline-block;
  margin: 10px;
  font-weight: bold;
}

.wrap-copy {
  text-align: center;
  font-size: 10px;
  letter-spacing: 2px;
  background-color: #0052a5;
  color: #fff;
  padding: 10px;
}

#footer .wrap-sv {
  border: solid 1px #000;
  padding: 20px;
  margin-top: 30px;
}

#footer .wrap-sv p {
  font-weight: bold;
  margin-bottom: 10px;
}

#footer .wrap-sv li {
  display: inline-block;
  margin: 5px;
}

@media screen and (max-width: 700px) {
  #footer .inner {
    padding: 30px 10px;
  }
  #footer .col-1 {
    width: 100%;
  }
  #footer .col-2 {
    width: 100%;
    padding-left: 0px;
    padding-top: 20px;
  }
  #footer .p1 {
    font-size: 24px;
  }
  #footer .p2 {
    font-size: 14px;
  }
  #footer .p3 {
    font-size: 18px;
  }
  #footer .p5 {
    font-size: 12px;
  }
}
#bt-nav {
  display: none;
}

#show-menu {
  display: none;
}

@media screen and (max-width: 750px) {
  #bt-nav {
    display: block;
    position: fixed;
    top: 40px;
    right: 15px;
    background-color: #0052a5;
    padding: 8px;
    z-index: 9999;
    width: 40px;
    height: 35px;
  }
  #bt-nav span {
    position: absolute;
    left: 5px;
    display: block;
  }
  #bt-nav .item-01 {
    width: 30px;
    height: 2px;
    background-color: #fff;
    display: block;
    top: 8px;
  }
  #bt-nav .item-02 {
    width: 30px;
    height: 2px;
    background-color: #fff;
    display: block;
    top: 16px;
  }
  #bt-nav .item-03 {
    width: 30px;
    height: 2px;
    background-color: #fff;
    display: block;
    top: 24px;
  }
  #bt-nav.on .item-01 {
    transform: rotate(-32deg);
    transform-origin: right;
    left: 2.5px;
  }
  #bt-nav.on .item-02 {
    width: 0;
  }
  #bt-nav.on .item-03 {
    width: 30px;
    transform: rotate(32deg);
    transform-origin: right;
    left: 2.5px;
  }
  #show-menu {
    display: block;
    width: 82%;
    height: 100%;
    background-color: #0052a5;
    position: fixed;
    top: 0;
    left: -82%;
    overflow: auto;
  }
  #show-menu.on {
    left: 0;
  }
  #show-menu ul {
    margin-bottom: 20px;
  }
  #show-menu ul a {
    color: #fff;
    font-weight: bold;
    display: block;
    width: 100%;
    padding: 15px;
    border-bottom: solid 1px #fff;
    position: relative;
  }
  .sp-sub-menu {
    display: none;
  }
  .sp-sub-menu li a {
    background-color: #fff;
    color: #0052a5 !important;
    font-size: 14px;
    padding: 10px;
    border-bottom: solid 1px #ddd !important;
  }
  #show-menu i {
    position: absolute;
    top: 15px;
    right: 10px;
  }
}
#show-menu .icon {
  margin-left: 10px;
}

#show-menu .icon img {
  max-width: 40px;
}

@media screen and (max-width: 320px) {
  #bt-nav {
    right: 10px;
  }
}
/** ***********************************************

PAGE

*********************************************** **/
#b-navi {
  background-color: #eee;
  padding: 8px 0;
}

#b-navi .inner {
  padding: 0 10px;
}

#b-navi li {
  display: inline-block;
  font-size: 12px;
  color: #666;
}

#b-navi li a {
  color: #333;
}

#b-navi li::after {
  content: " / ";
  color: #333;
}

@media screen and (max-width: 500px) {
  #b-navi li {
    font-size: 12px;
  }
}
#page {
  font-size: 0;
  padding: 30px 10px;
}

#page .left-contents {
  width: 75%;
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  padding-right: 30px;
}

#page .right-contents {
  width: 25%;
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  min-height: 300px;
}

@media screen and (max-width: 950px) {
  #page .left-contents {
    width: 100%;
    padding-right: 0px;
  }
  #page .right-contents {
    display: none;
  }
}
h2.title {
  background-color: #0052a5;
  color: #fff;
  padding: 10px;
  padding-left: 30px;
  position: relative;
  margin-bottom: 30px;
}

h2.title::after {
  content: "";
  width: 15px;
  height: 4px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  margin-top: -4px;
}

@media screen and (max-width: 400px) {
  h2.title {
    font-size: 16px;
  }
  h2.title::after {
    margin-top: -2px;
  }
}
.cont {
  padding-bottom: 50px;
}

#strength .bg {
  background-color: #e4eaf2;
  padding: 20px;
  margin-bottom: 50px;
}

#strength .item {
  margin-bottom: 30px;
  position: relative;
  background-color: #fff;
  border: solid 3px #eee;
  padding: 20px;
}

#strength .item .p1 {
  font-size: 40px;
  font-weight: bold;
  margin-left: 60px;
  text-indent: -55px;
}

#strength .item .p1 img {
  width: 48px;
  height: auto;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 5px;
}

#strength .item .p1 strong {
  color: #de1c24;
}

#strength .desc {
  margin-top: 30px;
  width: 85%;
  margin-left: 15%;
  border: solid 3px #ddd;
  border-radius: 5px;
  padding: 20px;
  position: relative;
}

#strength .desc .fukidashi::after {
  content: "◀";
  color: #ddd;
  display: block;
  position: absolute;
  left: -15px;
  top: 50%;
  margin-top: -7px;
}

#strength .chara {
  position: absolute;
  bottom: 0;
  left: 10px;
  max-height: 120px;
  width: auto;
}

#strength .item .p2 {
  font-size: 20px;
  font-weight: bold;
}

#strength .cols-2 .col:nth-of-type(1) {
  padding-right: 8px;
}

#strength .cols-2 .col:nth-of-type(2) {
  padding-left: 8px;
}

@media screen and (max-width: 800px) {
  #strength .item .p1 {
    font-size: 24px;
    font-weight: bold;
    margin-left: 60px;
    text-indent: -50px;
  }
  #strength .item .p2 {
    font-size: 16px;
    font-weight: bold;
  }
  #strength .item .p1 img {
    width: 38px;
    height: auto;
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 5px;
  }
  #strength .desc {
    margin-top: 20px;
    width: 85%;
    margin-left: 15%;
  }
  #strength .chara {
    position: absolute;
    bottom: 0;
    left: 10px;
    max-height: 120px;
    width: auto;
  }
}
@media screen and (max-width: 450px) {
  #strength .item .p1 {
    font-size: 20px;
    font-weight: bold;
    margin-left: 20px;
    text-indent: -30px;
  }
  #strength .item .p2 {
    font-size: 14px;
    font-weight: bold;
  }
  #strength .item .p1 img {
    width: 20px;
    height: auto;
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 5px;
  }
  #strength .desc {
    margin-top: 20px;
    width: 70%;
    margin-left: 30%;
    padding: 10px;
  }
  #strength .chara {
    left: 10px;
    max-height: 100px;
    width: auto;
  }
  #strength .cols-2 .col:nth-of-type(1) {
    padding-right: 0px;
    margin-bottom: 20px;
  }
  #strength .cols-2 .col:nth-of-type(2) {
    padding-left: 0px;
  }
}
@media screen and (max-width: 320px) {
  #strength .bg {
    padding: 10px;
  }
}
/** ***********************************************

右側コンテンツ

*********************************************** **/
.right-contents .item {
  margin-top: 30px;
}

.right-contents h4.title {
  background-color: #0052a5;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 8px 5px;
}

.right-contents .wrap-sv h4.title {
  background-color: #0052a5;
  color: #fff;
  margin-bottom: 0;
}

.right-contents .list-service {
  border: solid 3px #0052a5;
}

.right-contents .list-service a {
  display: block;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border-bottom: solid 1px #ddd;
  color: #333;
  position: relative;
}

.right-contents .list-service li:last-child a {
  border-bottom: none;
}

.right-contents .list-service a:hover {
  background-color: #eee;
}

.right-contents .list-service i {
  position: absolute;
  top: 50%;
  right: 10px;
  font-size: 20px;
  margin-top: -10px;
}

.right-contents .works {
  background-color: #f5f5f5;
}

.right-contents .works li {
  padding: 10px;
  text-align: center;
  padding-bottom: 20px;
  list-style: none;
  border-bottom: solid 1px #ddd;
}

.right-contents .works .wrap-img {
  width: 100px;
  height: 100px;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  background-color: #333;
  display: inline-block;
}

.right-contents .works p {
  font-size: 14px;
  display: inline-block;
  width: 140px;
  vertical-align: top;
  text-align: left;
  padding-left: 20px;
  padding-top: 10px;
}

.right-contents .bt-y a {
  margin-top: 20px;
  font-size: 14px;
  max-width: 160px;
  padding: 10px;
}

.right-contents .bt-y i {
  font-size: 10px;
}

#page .main-img {
  width: 100%;
  height: 300px;
  background-position: center;
  background-size: cover;
  position: relative;
  color: #fff;
  padding: 80px 30px 0;
  margin-bottom: 20px;
}

#page .main-img::after {
  content: "";
  display: block;
  width: 100%;
  height: 300px;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
}

#page .main-img h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 1px #333;
}

#page .main-img p {
  font-size: 26px;
  font-weight: bold;
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 1px #333;
}

@media screen and (max-width: 600px) {
  #page .main-img {
    height: 200px;
    padding: 30px 30px 0;
  }
  #page .main-img::after {
    height: 200px;
  }
  #page .main-img h2 {
    font-size: 30px;
  }
  #page .main-img p {
    font-size: 16px;
  }
}
#page .page-navi {
  padding: 10px;
}

#page .page-navi li {
  display: inline-block;
  margin: 0 5px;
}

#page .page-navi li a {
  font-weight: bold;
  padding: 10px;
  background-color: rgba(1, 142, 69, 0.2);
}

#page .title-01 {
  border-left: solid 5px #0052a5;
  padding: 5px 0 5px 15px;
  font-size: 24px;
  margin-bottom: 20px;
  color: #0052a5;
}

#page .title-02 {
  border-left: solid 5px #333;
  padding: 5px 0 5px 15px;
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

#page .title-03 {
  border-bottom: solid 1px #ddd;
  padding: 5px 0 5px 15px;
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

#page .title-04 {
  border-top: solid 1px #333;
  border-bottom: solid 1px #333;
  padding: 12px 0;
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
  text-align: center;
}

#page .title-05 {
  padding: 5px 10px;
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
  background-color: #de1c24;
  text-align: center;
}

#page .title-06 {
  padding: 5px 20px;
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
  background-color: #0052a5;
}

@media screen and (max-width: 600px) {
  #page .title-01 {
    font-size: 20px;
  }
  #page .title-02 {
    font-size: 20px;
  }
  #page .title-03 {
    font-size: 20px;
  }
  #page .title-04 {
    font-size: 20px;
  }
  #page .title-05 {
    font-size: 20px;
  }
  #page .title-06 {
    font-size: 20px;
  }
}
#page .block {
  padding: 20px 0;
}

#page .block p {
  padding: 0 10px;
  line-height: 180%;
  font-size: 16px;
  margin-bottom: 1em;
}

#page .block p:last-child {
  margin-bottom: 0;
}

#page .block ul {
  margin-left: 30px;
  margin-bottom: 1em;
}

#page .block li {
  line-height: 180%;
  font-size: 16px;
}

#page .img-left .col-txt {
  padding-left: 20px;
}

#page .img-right .col-txt {
  padding-right: 20px;
}

#page .block .wrap-img {
  margin-bottom: 1em;
}

#page .block .bg-y {
  background-color: rgb(255, 251, 168);
  padding: 20px;
  border: solid 1px #e25a24;
  margin-bottom: 1em;
  font-weight: bold;
}

#page .block .bg-y p,
#page .block .bg-y ul {
  margin-bottom: 0;
}

#page .block .check {
  font-weight: bold;
}

#page .block .check li {
  list-style: none;
  margin-bottom: 10px;
}

#page .block .check li:last-child {
  margin-bottom: 0px;
}

#page .block .check li::before {
  content: "";
  background-image: url(../images/page/check.png);
  background-size: cover;
  height: 24px;
  width: 24px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 10px;
  padding-top: 2px;
}

#page .block .works {
  border-bottom: solid 1px #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

#page .block .works::last-child {
  border-bottom: none;
}

#page .block .works p {
  margin-bottom: 0;
  padding-top: 10px;
}

#page .block .works .col {
  padding: 10px;
  text-align: center;
}

#page .block .works .col .cap {
  display: block;
  margin: 5px auto 0;
  font-size: 16px;
}

#page .block .works img {
  width: auto;
  max-width: 100%;
  max-height: 600px;
}

#page .wrap-price {
  max-width: 500px;
}

#page .wrap-price table {
  width: 100%;
}

#page .wrap-price th {
  width: 200px;
  text-align: left;
  font-weight: normal;
  font-size: 16px;
  padding: 15px;
  padding-right: 20px;
  background-color: rgb(212, 233, 218);
}

#page .wrap-price td {
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  padding: 15px;
  padding-left: 20px;
}

#page .qa {
  padding: 16px;
}

#page .q {
  font-size: 20px;
  font-weight: bold;
  background-color: #0052a5;
  color: #fff;
  padding: 5px 10px;
}

#page .q::before {
  content: "Q. ";
}

#page .a {
  font-size: 16px;
  margin-top: 10px;
  padding: 5px 10px;
  line-height: 180%;
}

#page .a::before {
  content: "A. ";
  font-weight: bold;
  font-size: 20px;
  color: #de1c24;
  float: left;
  margin-right: 8px;
}

#page dd {
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  #page .block .check {
    padding-left: 0;
    margin-left: 0;
  }
  #page .block .check li::before {
    height: 18px;
    width: 18px;
  }
  #page .wrap-price th {
    width: inherit !important;
    font-size: 14px;
  }
  #page .wrap-price td {
    font-size: 14px;
  }
  #page .q {
    font-size: 14px;
    font-weight: bold;
    background-color: #0052a5;
    color: #fff;
    padding: 5px 10px;
    line-height: 180%;
  }
  #page .q::before {
    content: "Q. ";
    font-size: 20px;
  }
  #page .a {
    font-size: 14px;
    margin-top: 10px;
    padding: 5px 10px;
    line-height: 180%;
  }
  #page .a::before {
    content: "A. ";
    font-weight: bold;
    font-size: 20px;
    color: #de1c24;
  }
  #page dd {
    margin-bottom: 20px;
  }
}
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  font-size: 12px;
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
  overflow: visible;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox,
#cboxContent,
#cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

#cboxOverlay {
  background: #000;
}

#colorbox {
  outline: none;
}

#cboxContent {
  margin: 0px;
  background: #fff;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxTitle {
  position: absolute;
  bottom: -30px;
  left: 0;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}

#cboxCurrent {
  position: absolute;
  bottom: -30px;
  left: 0px;
  color: #ccc;
  font-size: 12px;
}

#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
  outline: none;
}

#cboxSlideshow {
  position: absolute;
  top: -20px;
  right: 90px;
  color: #fff;
}

#colorbox .slick-arrow {
  color: #fff;
  font-size: 40px;
}

#cboxPrevious .slick-arrow {
  margin-top: -25px;
  left: -40px;
}

#cboxNext .slick-arrow {
  margin-top: -35px;
  right: -40px;
}

#cboxClose {
  font-size: 40px;
  color: #fff;
  position: absolute;
  top: -60px;
  right: 0;
}

/** ***********************************************

対応エリア

*********************************************** **/
.wrap-area {
  margin-bottom: 30px;
  border: solid 5px #0052a5;
  position: relative;
}

.wrap-area .col-1 {
  padding-right: 20px;
  vertical-align: middle;
}

.wrap-area .col-2 {
  padding: 40px 20px;
  vertical-align: middle;
}

.wrap-area .col-2 p.p1 {
  font-size: 24px !important;
  font-weight: bold;
}

.wrap-area .col-2 span {
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  background-color: rgb(237, 223, 34);
  margin: 10px 0;
  border-radius: 5px;
  box-shadow: 1px 1px 2px #333;
}

.wrap-area .col-2 span.sp2 {
  background-color: #e25a24;
  color: #fff;
  margin-left: 10px;
}

.wrap-area .col-2 span.sp3 {
  background-color: rgb(208, 20, 90);
  color: #fff;
  font-size: 18px;
}

.wrap-area .col-2 span.sp4 {
  background-color: rgb(255, 123, 168);
  color: #fff;
  margin-left: 10px;
  font-size: 18px;
}

.wrap-area .tel-1 {
  margin-top: 30px;
}

.wrap-area .tel-1 .mes {
  background-color: #de1c24;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  max-width: 100%;
  margin: 0 auto 20px;
  text-align: center;
  padding: 3px 0;
}

.wrap-area .tel-1 .bh {
  font-weight: bold;
  font-size: 16px;
  margin-top: 10px;
  text-align: center;
}

.wrap-area .tel-2 {
  margin-top: 20px;
  text-align: center;
  border-top: solid 1px #ddd;
  padding-top: 10px;
}

.wrap-area .tel-2 p {
  font-weight: bold;
}

.wrap-area .tel-2 .p2 {
  margin-top: 15px;
  margin-bottom: 10px;
}

.wrap-area .tel-2 .p3 {
  background-color: rgb(231, 29, 36);
  color: #fff;
  max-width: 150px;
  margin: 10px auto;
}

.area dt {
  font-weight: bold;
}

.area-title {
  max-width: 250px;
  position: absolute;
  top: -5px;
  right: -5px;
}

@media screen and (max-width: 500px) {
  .wrap-area {
    margin-bottom: 0px;
  }
  .wrap-area .col-2 p.p1 {
    font-size: 20px !important;
  }
}
/** ***********************************************

会社案内

*********************************************** **/
#about .table-style-01 {
  margin-top: 30px;
}

#about .table-style-01 th {
  font-size: 16px;
  padding: 15px;
}

#about .table-style-01 td {
  font-size: 16px;
  padding: 15px;
}

#about .wrap-map iframe {
  width: 100%;
  height: 400px;
}

.wrap-staff {
  padding-top: 30px;
}

.wrap-staff .img {
  width: 40%;
}

.wrap-staff .txt {
  width: 60%;
  padding-left: 30px;
}

.wrap-staff .txt .p1 {
  margin-bottom: 0 !important;
}

.wrap-staff .txt p.p2 {
  font-weight: bold;
  font-size: 20px !important;
}

.wrap-staff .txt th {
  padding: 10px;
  white-space: nowrap;
  background-color: #f8f8d4;
}

.wrap-staff .txt td {
  padding: 10px;
}

#about p.comment {
  border: solid 3px #f7ac3b;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
  position: relative;
}

#about p.comment::after {
  content: "▲";
  color: #f7ac3b;
  position: absolute;
  top: -22px;
  left: 20px;
}

#about hr {
  border: none;
  height: 1px;
  background-color: #ddd;
  margin-top: 30px;
}

@media screen and (max-width: 500px) {
  #about .table-style-01 {
    margin-top: 20px;
  }
  #about .table-style-01 th {
    font-size: 12px;
    padding: 15px;
  }
  #about .table-style-01 td {
    font-size: 12px;
    padding: 15px;
  }
  #about .wrap-map iframe {
    width: 100%;
    height: 300px;
  }
  .wrap-staff {
    padding-top: 30px;
  }
  .wrap-staff .img {
    width: 100%;
  }
  .wrap-staff .txt {
    width: 100%;
    padding-left: 0px;
    padding-top: 10px;
  }
  .wrap-staff .txt .p1 {
    font-size: 14px !important;
  }
  .wrap-staff .txt p.p2 {
    font-weight: bold;
    font-size: 16px !important;
  }
  .wrap-staff .txt th {
    padding: 10px;
    white-space: nowrap;
    background-color: #f8f8d4;
  }
  .wrap-staff .txt td {
    padding: 10px;
  }
  #about p.comment {
    font-size: 14px;
  }
}
/** ***********************************************

採用ページ

*********************************************** **/
.apply-form .required {
  background-color: #de1c24;
  color: #fff;
  display: inline-block;
  padding: 2px 5px;
  font-size: 10px;
  margin-left: 5px;
}

.apply-form th {
  width: 30%;
  white-space: nowrap;
  font-size: 16px;
  padding: 20px;
  text-align: right;
}

.apply-form td {
  padding: 20px;
  font-size: 16px;
}

.apply-form input[type=text],
.apply-form input[type=email] {
  height: 30px;
  border: solid 1px #ccc;
  padding: 3px;
  font-size: 16px;
}

.apply-form textarea {
  border: solid 1px #ccc;
  width: 100%;
  height: 200px;
  padding: 3px;
  font-size: 16px;
}

.txt-l {
  width: 100%;
}

.txt-m {
  width: 70%;
}

.txt-s {
  width: 50px;
}

.wrap-bts {
  text-align: center;
  margin-top: 50px;
}

.wrap-bts .wpcf7-form-control {
  border: none;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  padding: 15px;
  background-color: #ddd;
  cursor: pointer;
  width: 250px;
  text-align: center;
  margin: 0 10px;
}

.wrap-bts .wpcf7-form-control:hover {
  opacity: 0.8;
}

.wrap-bts .wpcf7-confirm,
.wrap-bts .wpcf7-submit {
  background-color: #de1c24;
  color: #fff;
}

.wrap-bts .wpcf7c-btn-back {
  width: 150px;
}

/** ***********************************************

施工事例ページ

*********************************************** **/
#list-work li {
  padding: 10px;
  text-align: center;
  padding-bottom: 20px;
}

#list-work .wrap-img {
  display: block;
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  background-color: #333;
}

#list-work p {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

#list-work li.alpha:hover p {
  opacity: 1;
}

#single-work div.desc {
  margin-bottom: 20px;
}

#single-work div.desc p {
  font-size: 16px;
  line-height: 180%;
}

#single-work .col {
  padding: 10px;
  text-align: center;
}

#single-work .col img {
  width: 100%;
  height: auto;
}

#single-work .col-1 {
  width: 45%;
}

#single-work .col-2 {
  width: 55%;
}

#single-work .col .cap {
  display: block;
  margin: 5px auto 0;
  font-size: 14px;
}

#single-work .wrap-others {
  border-top: solid 1px #ddd;
  padding-top: 10px;
  margin-top: 10px;
}

#single-work .wrap-others .col-1 {
  width: 50%;
}

#single-work .wrap-others .col-2 {
  width: 50%;
}

#single-work .wrap-others .desc {
  font-weight: bold;
}

.works .bt-g {
  font-size: 14px;
  max-width: 150px;
  margin: 0 auto 30px;
}

.works .bt-g a {
  padding: 10px;
}

@media screen and (max-width: 500px) {
  #single-work .col-1 {
    width: 100%;
  }
  #single-work .col-2 {
    width: 100%;
  }
  #single-work .wrap-others .col-1 {
    width: 100%;
  }
  #single-work .wrap-others .col-2 {
    width: 100%;
  }
  #single-work .wrap-others .col .cap {
    text-align: left;
  }
}
/** ***********************************************

ブログページ

*********************************************** **/
#single .block {
  min-height: 300px;
}

#pager {
  text-align: center;
  padding-top: 50px;
  color: #ddd;
}

/** category **/
.blog-list {
  font-size: 0;
}

.blog-list li {
  margin-bottom: 10px;
  border-bottom: solid 1px #eee;
  padding-bottom: 10px;
}

.blog-list .wrap-img {
  display: inline-block;
  vertical-align: top;
  width: 30%;
  font-size: 14px;
  background-size: cover;
  background-position: center;
  color: #333;
  position: relative;
  background-color: #ddd;
  min-height: 180px;
  padding-top: 60px;
  text-align: center;
}

.blog-list .wrap-txt {
  padding-left: 10px;
  display: inline-block;
  vertical-align: top;
  width: 70%;
  font-size: 14px;
}

.blog-list .title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.blog-list .desc {
  font-size: 14px;
  line-height: 180%;
}

.blog-list a {
  color: #333333;
}

.blog-list .bt {
  margin-top: 20px;
  background-color: #ffee03;
  font-size: 13px;
  padding: 6px;
  text-align: center;
  max-width: 130px;
  font-weight: bold;
}

.blog-list a:hover {
  color: #333;
}

.wp-pagenavi {
  margin-top: 30px;
}

.wp-pagenavi a,
.current {
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
  width: 40px;
  height: 40px;
  text-align: center;
  background-color: #eee;
  margin: 0 3px;
  padding-top: 6px;
  margin-bottom: 10px;
}

.wp-pagenavi a:hover,
.current {
  background-color: #0052a5;
  color: #fff;
}

@media screen and (max-width: 500px) {
  .blog-list .wrap-img {
    display: block;
    width: 100%;
    font-size: 14px;
  }
  .blog-list .wrap-txt {
    padding-left: 0px;
    padding-top: 10px;
    display: block;
    vertical-align: top;
    width: 100%;
    font-size: 14px;
  }
  .blog-list .title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .blog-list .desc {
    font-size: 14px;
    line-height: 180%;
  }
}
/** ***********************************************

よくある質問

*********************************************** **/
#faq .qa {
  padding: 10px;
  padding-bottom: 0;
}

#faq .q {
  font-size: 16px;
  font-weight: bold;
  background-color: #fff;
  color: #0071bc;
  padding: 0px 10px;
  clear: both;
}

#faq .q::before {
  content: "Q. ";
  color: #0071bc;
  font-size: 20px;
}

#faq .a {
  font-size: 16px;
  margin-top: 5px;
  padding: 0px 10px;
  line-height: 180%;
}

#faq .a::before {
  content: "A. ";
  font-weight: bold;
  font-size: 20px;
  color: #de1c24;
  float: left;
  margin-right: 8px;
  font-size: 20px;
}

#faq dd {
  margin-bottom: 20px;
  border-bottom: solid 1px #ddd;
}

#faq dd:last-child {
  border-bottom: none;
}

#faq dd p {
  margin-bottom: 1em;
  padding-top: 3px;
}

#faq h3.title {
  background-color: #eee;
  padding: 5px 10px;
  margin-bottom: 10px;
}

.page-menu {
  text-align: left;
  padding-bottom: 20px;
}

.page-menu li {
  list-style: none;
  display: inline-block;
  margin: 0 5px;
  border-right: solid 1px #ddd;
  padding-right: 10px;
  font-size: 14px;
}

.page-menu li:first-child {
  border-left: solid 1px #ddd;
  padding-left: 10px;
}

.page-menu li a {
  color: #0071bc;
  font-weight: bold;
}

.ie body {
  font-weight: 600;
}

.ie #header .area a {
  font-weight: 600 !important;
}

.ie #gnav .main-menu li a {
  font-weight: bold !important;
}

.ie .wrap-estimate p,
.ie .bt-estimate {
  font-weight: bold !important;
}

.ie .mes {
  font-weight: bold !important;
  padding-top: 5px;
  vertical-align: bottom;
}

.ie .bt-y a,
.ie .bt-g a {
  font-weight: bold !important;
}

.ie p,
.ie a {
  font-weight: 600 !important;
}/*# sourceMappingURL=common.css.map */