@charset "UTF-8";
html, body {
  margin: 0;
  width: 100%;
  color: #333;
  background-color: #f9f8f3;
  font-family: "Yu Gothic", YuGothic, 游ゴシック体, 游ゴシック, Helvetica, Verdana, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 16px;
}

@media print, screen and (min-width: 751px) {
  html, body {
    -webkit-print-color-adjust: exact;
    min-width: 946px;
    letter-spacing: 1px;
  }

  img {
    -webkit-backface-visibility: hidden;
  }

  .inner {
    width: 1260px;
    margin: 0 auto;
  }

  .inner.medium {
    width: 946px;
  }

  .sp {
    display: none !important;
  }

  .over a:hover {
    opacity: 0.8;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }

  a,
a img {
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
  }
}
/*----------------------------------------------------------------
Layout
------------------------------------------------------------------*/
.alignCenter {
  text-align: center;
}

.columnLayout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.columnLayout.col03 .columnItem {
  width: 32.4%;
}

.columnLayout.col04 .columnItem {
  width: 23.9%;
}

/*----------------------------------------------------------------
Modules
------------------------------------------------------------------*/
/*---------------ボタン系モジュール----------------*/
.btnGeneral {
  border-radius: 3px;
  background-color: #333;
  color: #fff !important;
  font-size: 18px;
  letter-spacing: 1.8px;
  display: block;
  width: 270px;
  margin: 60px auto 0;
  text-align: center;
  padding: 16px 10px;
  position: relative;
  border: 1px solid #333;
}

.btnGeneral:after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -5px;
}

.btnBlank {
  width: 380px;
}

.btnBlank a {
  background: #333;
  border: 1px solid #333;
  border-radius: 3px;
  display: block;
  padding: 10px;
  text-align: center;
}

.btnBlank a span {
  color: #fff;
  font-size: 16px;
  padding-right: 28px;
  background: url(../img/icon/icon_blank.png) no-repeat right center;
  background-size: 11px;
}

@media only screen and (min-width: 751px) {
  .btnGeneral {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }

  .btnGeneral:hover {
    color: #333 !important;
    background-color: #fff;
  }

  .btnGeneral:hover:after {
    border-color: #333;
  }

  .btnBlank a:hover {
    background: #fff;
  }

  .btnBlank a:hover span {
    background: url(../img/icon/icon_blank_b.png) no-repeat right center;
    background-size: 11px;
    color: #000;
  }
}
@media all and (-ms-high-contrast: none) {
  .btnGeneral {
    padding-top: 19px;
    padding-bottom: 13px;
  }
}
.btnContact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 418px;
  height: 100px;
  border-radius: 3px;
  background-color: #ffe100;
  text-align: center;
  position: relative;
}

.btnContact:before, .btnContact:after {
  content: "";
  display: block;
}

.btnContact:before {
  background-size: contain;
  background-repeat: no-repeat;
}

.btnContact:after {
  width: 12px;
  height: 12px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 5px;
}

.btnContact.event::before {
  background-image: url(../img/icon/icon_flag.png);
  width: 24px;
  height: 34px;
  margin-right: 6px;
}

.btnContact.docs::before {
  background-image: url(../img/icon/icon_note2.png);
  width: 25px;
  height: 31px;
  margin-right: 5px;
}

@media only screen and (min-width: 751px) {
  .btnContact {
    -webkit-transition: opacity 0.3s, -webkit-box-shadow 0.3s;
    transition: opacity 0.3s, -webkit-box-shadow 0.3s;
    transition: opacity 0.3s, box-shadow 0.3s;
    transition: opacity 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
  }

  .btnContact:hover {
    opacity: 0.7;
    -webkit-box-shadow: 0px 4px 10px 0 rgba(34, 34, 34, 0.2);
            box-shadow: 0px 4px 10px 0 rgba(34, 34, 34, 0.2);
  }
}
.btnContact .txt {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 2.8px;
}

.btnContact .txtSmall {
  display: block;
  font-size: 17px;
  letter-spacing: 1.7px;
  -webkit-font-feature-settings: "halt";
  font-feature-settings: "halt";
  padding-top: 4px;
}

.btnContactWrapper {
  width: 866px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/*--------------------------------------------------------------
// HEADAER
--------------------------------------------------------------*/
.headerTopbar {
  padding-top: 30px;
}

.headerTopbar > .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (min-width: 751px) {
  .headerTopbar .logo {
    display: block;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  .headerTopbar .logo:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
.headerTopNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.headerTopNav li a {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left 18px center;
  position: relative;
  padding-left: 42px;
  padding-right: 15px;
}

@media print, screen and (min-width: 751px) {
  .headerTopNav li a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  .headerTopNav li a:hover {
    opacity: 0.6;
  }
}
.headerTopNav li:not(:first-of-type) a::before {
  content: "";
  display: block;
  height: 33px;
  width: 0;
  border-left: 1px dotted #7f7f7f;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.headerTopNav li:first-of-type a {
  padding-right: 30px;
}

.headerTopNav li.mansion a {
  background-image: url(../img/icon/icon_mansion-black.png);
  background-size: 13px 19px;
}

.headerTopNav li.house a {
  background-image: url(../img/icon/icon_home_black.png);
  background-size: 16px 16px;
}

.spHeaderMenu {
  display: none;
}

.btnSide {
  position: absolute;
  right: 0;
  top: 115px;
  z-index: 999;
  background-color: #ffe100;
  border-radius: 4px 0 0 4px;
  border: 1px solid #d0c35e;
  border-right: none;
}

.btnSidePart {
  padding: 12px 6px;
}
.btnSidePart:last-child {
    background: #fff1a3;
}
.btnSidePart:first-of-type {
  border-bottom: 1px solid #d0c35e;
}

.btnSidePart a {
  display: block;
  text-align: center;
}

@media print, screen and (min-width: 751px) {
  .btnSidePart a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  .btnSidePart a:hover {
    opacity: 0.7;
  }
}
/*--------------------------------------------------------------------
page topボタン
-------------------------------------------------------------------*/
#PageTop {
  width: 72px;
  height: 72px;
  background-color: #333;
  border-radius: 50%;
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 100;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#PageTop span {
  display: block;
  width: 20px;
  height: 20px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translateY(4px) rotate(-45deg);
  transform: translateY(4px) rotate(-45deg);
}

@media print, screen and (min-width: 751px) {
  #PageTop {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  #PageTop:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
/*--------------------------------------------------------------------
footer
-------------------------------------------------------------------*/
.footerContact {
  color: #fff;
  background-color: #333;
  padding-top: 30px;
  padding-bottom: 26px;
}

.footerContact .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footerContact .footerContactList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footerContact .footerContactList li {
  width: 295px;
}

@media print, screen and (min-width: 751px) {
  .footerContact .footerContactList li:first-of-type {
    margin-right: 30px;
  }
}
.footerContact .footerContactList .plaintxt {
  font-size: 13px;
  text-align: center;
  padding-top: 10px;
  letter-spacing: -0.3px;
}

.footerContact .btnContact {
  width: 100%;
  height: 80px;
}

.footerContact .btnContact .txt {
  font-size: 18px;
  letter-spacing: 0px;
}

.footerContact .btnContact .txtSmall {
  font-size: 13px;
  letter-spacing: 0.8px;
  padding-top: 7px;
}

.footerContact .btnContact.event::before {
  margin-right: 2px;
}

.footerContact .contactDetail {
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.footerContact .contactDetail .btnContact {
  display: none;
}

.footerContact .contactDetail .txt {
  font-size: 14px;
  line-height: 1.35;
}

.footerContact .contactDetail .telnumber {
  display: inline-block;
  margin: 14px 0;
}

.footerSitemapArea {
  background-color: #eee;
  color: #3e3a39;
}

@media only screen and (min-width: 751px) {
  .footerSitemapArea a:hover {
    text-decoration: underline;
  }
}
.footerSitemapArea .sitemapTop {
	padding-bottom: 30px;
}
.footerSitemapArea .sitemapTop .sitemapTitle {
  border-left-color: #52b62a;
  color: #52b62a;
}
.footerSitemapArea .sitemapTop .sitemapTitle a{color: #52b62a;}
.footerSitemapArea .sitemapTop .sitemapParent span::before, .footerSitemapArea .sitemapTop .sitemapParent a::before {
  color: #52b62a;
}

.footerSitemapArea .sitemapMarugoto .sitemapTitle {
  border-left-color: #e6b92d;
  color: #e6b92d;
}

.footerSitemapArea .sitemapMarugoto .sitemapParent span::before, .footerSitemapArea .sitemapMarugoto .sitemapParent a::before {
  color: #e6b92d;
}

.footerSitemapArea .sitemapMansion .sitemapTitle {
  border-left-color: #129fb2;
  color: #129fb2;
}

.footerSitemapArea .sitemapMansion .sitemapParent span::before, .footerSitemapArea .sitemapMansion .sitemapParent a::before {
  color: #129fb2;
}

.footerSitemapArea .sitemapBubun .sitemapTitle {
  border-left-color: #e55b6c;
  color: #e55b6c;
}

.footerSitemapArea .sitemapBubun .sitemapParent span::before, .footerSitemapArea .sitemapBubun .sitemapParent a::before {
  color: #e55b6c;
}

.footerSitemapArea .sitemapTitle {
  margin-bottom: 22px;
  background-color: #fff;
  border-left-style: solid;
  border-left-width: 6px;
  padding: 7px 0 7px 16px;
  font-weight: bold;
}

.footerSitemapArea .sitemapRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 22px;
}

.footerSitemapArea .sitemapCol {
  width: 25%;
  padding-right: 10px;
}

.footerSitemapArea .sitemapParent {
  font-size: 14px;
  font-weight: bold;
  position: relative;
  margin-bottom: 14px;
  line-height: 1.3;
  padding-left: 1.1em;
}

.footerSitemapArea .sitemapParent a:before, .footerSitemapArea .sitemapParent span:before {
  content: "●";
  position: absolute;
  left: 0;
}

.footerSitemapArea .sitemapChild {
  font-size: 12px;
  line-height: 1.7;
  padding-bottom: 22px;
  margin-bottom: 20px;
}
.footerSitemapArea .sitemapChild.childrenBtm{
	padding-bottom: 0;
	margin-bottom: 0;
}
.footerSitemapArea .sitemapChild.border {
  border-bottom: 1px dotted #7f7f7f;
}

.footerSitemapArea .sitemapChild li {
  padding: 2px 0;
  -webkit-font-feature-settings: "pwid";
  font-feature-settings: "pwid";
}

.footerSitemapArea .sitemapChild li.children {
  margin-top: 20px;
}

.footerLinkArea {
  background-color: #d8d8d8;
  padding-top: 28px;
  padding-bottom: 26px;
}

.footerLinkArea .ttl {
  margin-bottom: 10px;
  color: #3e3a39;
  font-size: 15px;
  font-weight: bold;
}

.footerLinkArea .columnLayout {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.footerRelatedSites {
  width: 710px;
}

.footerRelatedSites li {
  display: inline-block;
  margin: 3px 8px 3px 0;
  color: #666;
  font-size: 13px;
}

.footerRelatedSites a {
  border-right: 1px solid #bfbfbf;
  display: block;
  line-height: 23px;
  padding-right: 8px;
}

@media only screen and (min-width: 751px) {
  .footerRelatedSites a:hover {
    text-decoration: underline;
  }
}
.footerBnrArea {
  width: 208px;
}

.footerBnrArea a {
  display: block;
}

@media only screen and (min-width: 751px) {
  .footerBnrArea a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  .footerBnrArea a:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
.footerBnrArea a:first-of-type {
  margin-bottom: 10px;
}

.footerBottom {
  background-color: #fff;
  padding: 14px 0;
}

.footerBottom .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
	
}

@media only screen and (min-width: 751px) {
  .footerBottom .logo {
    display: block;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  .footerBottom .logo:hover {
    text-decoration: none;
    cursor: pointer;
    opacity: 0.7;
  }
}
.footerBottom ul {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 16px;
  color: #666;
}

.footerBottom li {
  position: relative;
  padding-left: 8px;
  margin-left: 40px;
}

.footerBottom li:before {
  content: "";
  display: block;
  border: 3px solid transparent;
  border-left: 3px solid #666;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
}

@media only screen and (min-width: 751px) {
  .footerBottom a:hover {
    text-decoration: underline;
  }
}
.footerBottom .copyright {
  position: absolute;
  top: 50%;
  left: 180px;
  font-size: 10px;
  font-family: Arial, Helvetica, sans-serif;
  color: #666;
  letter-spacing: 0;
  -webkit-font-feature-settings: "pwid";
  font-feature-settings: "pwid";
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  margin-top: -4px;
}

/* ----------------------------------------------------------------

下層ページ

---------------------------------------------------------------- */
@media print, screen and (min-width: 751px) {
  .sub#container.fix {
    padding-top: 77px;
  }

  .sub .mainContent {
    padding: 40px 0 100px;
    background: #fff;
  }
  .sub .mainContent p, .sub .mainContent li, .sub .mainContent dt, .sub .mainContent dd, .sub .mainContent th, .sub .mainContent td {
    line-height: 1.8;
  }
  .sub .mainContent p.note {
    font-size: 14px;
  }

  /* header
  ------------------------------------------- */
  .sub header {
    background: #fff;
  }
  .sub header .headerTopbar {
    padding: 14px 0 6px;
  }
  .sub header .headerTopbar > .inner {
    width: 946px;
  }
  .sub header .headerTopbar > .inner .logoArea img {
    width: 245px;
  }
  .sub header .headerTopbar > .inner .headerTopNav li {
    margin-left: 10px;
  }
  .sub header .headerTopbar > .inner .headerTopNav li img.top {
    display: none;
  }
  .sub header .headerTopbar > .inner .headerTopNav li a {
    padding: 0 0 0 31px;
    background-position: 10px;
  }
  .sub header .headerTopbar > .inner .headerTopNav li a:before {
    height: 17px;
  }

  /* nav
  ------------------------------------------- */
  nav {
    background-color: #fff;
    -webkit-box-shadow: 0px 6px 10px 0 rgba(34, 34, 34, 0.08);
            box-shadow: 0px 6px 10px 0 rgba(34, 34, 34, 0.08);
    padding-top: 16px;
    position: relative;
  }

  nav.fix {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 101;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  nav ul.inner {
    width: 1101px;
    padding: 0;
  }

  nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 0;
  }

  nav > ul > li:first-of-type {
    border-left: 1px dotted #7f7f7f;
  }

  nav > ul > li {
    border-right: 1px dotted #7f7f7f;
    line-height: 1.25;
    font-weight: bold;
    border: none !important;
		font-size: 15px;
    /*position: relative;*/
  }

  /*nav > ul > li:after {
  	content: "";
  	width: 1px;
  	height: 40px;
  	border-right: 1px dotted #7f7f7f;
  	position: absolute;
  	top: 2px;
  	left: 0;
  }
  nav > ul > li:last-child:before {
  	content: "";
  	width: 1px;
  	height: 40px;
  	border-right: 1px dotted #7f7f7f;
  	position: absolute;
  	top: 2px;
  	right: 0;
  }*/
  nav > ul > li:nth-child(1) {
    width: 225px;
  }

  nav > ul > li:nth-child(2) {
    width: 240px;
  }

  nav > ul > li:nth-child(3) {
    width: 160px;
  }

  nav > ul > li:nth-child(4) {
    width: 155px;
  }

  nav > ul > li:nth-child(5) {
    width: 216px;
  }

  nav > ul > li > a {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1px 10px 20px 60px;
    background-repeat: no-repeat;
    background-position: left 9px top;
    background-size: 42px 42px;
    position: relative;
  }

  nav > ul > li > a span:after {
    content: "";
    width: 1px;
    height: 40px;
    border-left: 1px dotted #828282;
    position: absolute;
    top: 0;
    left: 1px;
  }

  nav > ul > li:last-child > a span:before {
    content: "";
    width: 1px;
    height: 40px;
    border-right: 1px dotted #828282;
    position: absolute;
    top: 0;
    right: 1px;
  }

  nav > ul > .strength > a {
    background-image: url(/kodate2/common_re/img/icon/icon_home_s.png);
  }

  nav > ul > .case > a {
    background-image: url(/kodate2/common_re/img/icon/icon_pen_s.png);
  }

  nav > ul > .flow > a {
    background-image: url(/kodate2/common_re/img/icon/icon_note_s.png);
  }

  nav > ul > .cost > a {
    background-image: url(/kodate2/common_re/img/icon/icon_money_s.png);
  }

  nav > ul > .solution > a {
    background-image: url(/kodate2/common_re/img/icon/icon_book_s.png);
  }

  nav > ul > .voice > a {
    background-image: url(/kodate2/common_re/img/icon/icon_person_s.png);
  }

  nav > ul > li:hover > a:after,
.strength nav > ul > .strength > a:after,
.case nav > ul > .case > a:after,
.flow nav > ul > .flow > a:after,
.cost nav > ul > .cost > a:after,
.solution nav > ul > .solution > a:after {
    content: "";
    width: 100%;
    height: 5px;
    background: #ffe100;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  /* megamenu
  ------------------------------------------- */
  nav .mega {
    width: 100%;
    position: absolute;
    left: 0;
    background: #fff;
    display: none;
    z-index: 101;
    -webkit-box-shadow: 0px 2px 2px 0 #eee, 0 16px 8px -10px #eee inset;
            box-shadow: 0px 2px 2px 0 #eee, 0 16px 8px -10px #eee inset;
  }
  nav .mega > div {
    width: 946px;
    margin: 0 auto;
    padding: 30px 0;
  }
  nav .mega > div .nav li {
    font-size: 17px;
    width: 223px;
    float: left;
    margin-right: 18px;
    font-weight: normal;
    border-bottom: 1px solid #dedede;
  }
  nav .mega > div .nav li:nth-child(4n) {
    margin-right: 0;
  }
  nav .mega > div .nav li:nth-child(n+5) {
    margin-top: 15px;
  }
  nav .mega > div .nav li a {
    display: table-cell;
    padding: 10px 5px;
    vertical-align: middle;
    width: 223px;
    position: relative;
  }
  nav .mega > div .nav li a:hover {
    background-color: #f8f8f8;
  }
  nav .mega > div .nav li a:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -4px;
  }
  nav .mega > div .nav + p {
    background: #f7f7f7;
    border: 1px solid #ececec;
    font-size: 18px;
    padding: 5px 15px 4px;
    margin: 30px 0 20px;
  }
  nav .mega > div .bnr {
    margin-top: 30px;
  }
  nav .mega > div .bnr li {
    width: 302px;
    float: left;
    margin-right: 20px;
  }
  nav .mega > div .bnr li:nth-child(3n) {
    margin-right: 0;
  }
  nav .mega > div .bnr li a {
    display: table-cell;
    width: 302px;
    height: 72px;
    border-radius: 4px;
    padding: 0 30px 0 60px;
    vertical-align: middle;
    position: relative;
    background: #fee100;
  }
  nav .mega > div .bnr li a:hover {
    background-color: #ead003;
    opacity: 1 !important;
  }
  nav .mega > div .bnr li a:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -4px;
  }

  /* 見出し
  ------------------------------------------- */
  .sub h1 {
    background-size: cover;
    background-position: center;
    font-size: 40px;
    color: #fff;
  }
  .sub h1 span {
    display: block;
    width: 946px;
    margin: 0 auto;
  }
  .sub h1 span b {
    display: table-cell;
    width: 946px;
    height: 243px;
    text-align: center;
    vertical-align: middle;
    padding-bottom: 34px;
    text-shadow: 0 0 10px #888;
  }
  .sub h1 span b span.style01 {
    width: 140px;
    font-size: 19px;
    background: #ffe100;
    text-shadow: 0 0 0;
    color: #000;
    border-radius: 50px;
    padding: 6px 0 5px;
    margin-bottom: 15px;
  }

  .sub.strength h1 {
    background-image: url(../../strength/img/bg_mv.jpg);
  }

  .sub.flow h1 {
    background-image: url(../../flow/img/bg_mv.jpg);
  }

  .sub.cost h1 {
    background-image: url(../../cost/img/bg_mv.jpg);
  }

  .sub.solution h1 {
    background-image: url(../../solution/img/bg_mv.jpg);
  }

  .sub .ttl01 {
    font-size: 40px;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 55px;
    position: relative;
    text-align: center;
  }
  .sub .ttl01 span {
    font-size: 24px;
    display: block;
  }
  .sub .ttl01:after {
    content: "";
    width: 68px;
    height: 2px;
    background: #ffe100;
    position: absolute;
    left: 50%;
    bottom: -20px;
    margin-left: -34px;
  }

  .sub .ttl02 {
    font-size: 24px;
    background: url(../img/icon/icon_circle01.png) left 11px no-repeat;
    background-size: 12px;
    padding-left: 25px;
    margin-bottom: 40px;
    line-height: 1.5;
  }
  .sub .ttl02 span {
    font-size: 14px;
  }

  .sub .ttl03 {
    font-size: 24px;
    text-align: center;
    margin: 0 0 40px;
    position: relative;
  }
  .sub .ttl03:after {
    content: "";
    position: absolute;
    width: 84px;
    height: 84px;
    top: -113px;
    left: 50%;
    margin-left: -42px;
  }

  .sub .ttlList {
    font-size: 24px;
    padding: 15px 0 15px 70px;
    margin-bottom: 10px;
    position: relative;
  }
  .sub .ttlList:before {
    content: "";
    width: 50px;
    height: 50px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 50px;
  }
  .sub .ttlList.ttlList01:before {
    background-image: url(../img/icon/icon_1.png);
  }
  .sub .ttlList.ttlList02:before {
    background-image: url(../img/icon/icon_2.png);
  }
  .sub .ttlList.ttlList03:before {
    background-image: url(../img/icon/icon_3.png);
  }
  .sub .ttlList.ttlList04:before {
    background-image: url(../img/icon/icon_4.png);
  }

  .sub .ttlList.ttlList02-01, .sub .ttlList.ttlList02-02, .sub .ttlList.ttlList02-03, .sub .ttlList.ttlList02-04 {
    padding: 5px 0 5px 45px;
  }

  .sub .ttlList.ttlList02-01:before, .sub .ttlList.ttlList02-02:before, .sub .ttlList.ttlList02-03:before, .sub .ttlList.ttlList02-04:before {
    width: 30px;
    height: 29px;
    background-size: 30px;
  }

  .sub .ttlList.ttlList02-01:before {
    background-image: url(../img/icon/icon2_1.png);
  }

  .sub .ttlList.ttlList02-02:before {
    background-image: url(../img/icon/icon2_2.png);
  }

  .sub .ttlList.ttlList02-03:before {
    background-image: url(../img/icon/icon2_3.png);
  }

  .sub .ttlList.ttlList02-04:before {
    background-image: url(../img/icon/icon2_4.png);
  }

  /* パンクズ
  ------------------------------------------- */
  #breadCrumb {
    background: rgba(0, 0, 0, 0.7);
    margin-top: -42px;
    height: 42px;
  }
  #breadCrumb ul {
    width: 946px;
    margin: 0 auto;
    padding: 13px 0;
  }
  #breadCrumb ul li {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    background: url(../img/icon/icon_crumb.png) left center no-repeat;
    padding: 0 5px 0 12px;
  }
  #breadCrumb ul li:first-child {
    padding-left: 0;
    background: none;
  }
  #breadCrumb ul li a {
    color: #fff;
    text-decoration: underline;
  }
  #breadCrumb ul li a:hover {
    text-decoration: none;
  }

  /* leader
  ------------------------------------------- */
  .sub .leader {
    text-align: center;
    font-size: 18px;
    padding: 110px 0 50px;
    position: relative;
  }
  .sub .leader:after {
    content: "";
    position: absolute;
    width: 84px;
    height: 84px;
    top: 0;
    left: 50%;
    margin-left: -42px;
    background-size: 100%;
  }

  /* anchor
  ------------------------------------------- */
  .anchor {
    text-align: center;
    background: #fff;
    padding: 0 0 35px;
  }
  .anchor ul li {
    display: inline-block;
    margin: 0 3px 10px;
    font-size: 18px;
  }
  .anchor ul li a {
    width: 225px;
    margin: 0;
  }
  .anchor ul li a:after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  /* リスト表示
  ------------------------------------------- */
  .categorylist.odd li:nth-child(4) {
    margin-left: 163px;
  }
  .categorylist > div {
    padding: 70px 0;
  }
  .categorylist > div ul li {
    float: left;
    width: 295px;
    margin-right: 30px;
  }
  .categorylist > div ul li img {
    width: 100%;
  }
  .categorylist > div ul li:nth-child(3n) {
    margin-right: 0;
  }
  .categorylist > div ul li:nth-child(n+4) {
    margin-top: 30px;
  }
  .categorylist > div ul li a {
    display: block;
    position: relative;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
  }
  .categorylist > div ul li a:hover {
    opacity: 0.7;
  }
  .categorylist > div ul li a figure figcaption {
    position: absolute;
    bottom: 0;
    height: 70px;
    background: rgba(0, 0, 0, 0.5);
    width: 295px;
    text-align: center;
    line-height: 1.3;
  }
  .categorylist > div ul li a figure figcaption span {
    height: 70px;
    width: 295px;
    display: table-cell;
    vertical-align: middle;
  }
  .categorylist > div ul li a figure figcaption span:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 16px;
    margin-top: -4px;
  }
  .categorylist > div ul li a figure figcaption span b {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
  }
  .categorylist ul.cloumn2 {
    width: 650px;
    margin: -30px auto 0;
  }
  .categorylist ul.cloumn2 li {
    margin: 30px 15px 0;
  }
  .categorylist ul.cloumn2 li:nth-child(3n), .categorylist ul.cloumn2 li:nth-child(n+4) {
    margin: 30px 15px 0;
  }
}
/* ----------------------------------------------------------------

既存ページ PC

---------------------------------------------------------------- */
@media print, screen and (min-width: 751px) {
  .default {
    background-color: #fff;
  }
  .default #breadCrumb {
    width: 946px;
    margin: 20px auto 0;
    background: none;
    font-size: 14px;
    height: auto;
  }
  .default #breadCrumb li {
    display: inline-block;
    background: url(../img/icon/icon_crumb.png) left center no-repeat;
    padding: 0 5px 0 12px;
  }
  .default #breadCrumb li:first-child {
    background: none;
    padding-left: 0;
  }
  .default #breadCrumb li a {
    text-decoration: underline;
  }
  .default #breadCrumb li a:hover {
    text-decoration: none;
  }
  .default.urban #breadCrumb {
    margin-bottom: 20px;
  }
  .default.faq #main-area {
    margin-top: -100px;
    padding-top: 130px;
  }
  .default #area-container {
    font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.5px;
  }
  .default #area-container .h1, .default #area-container h1 {
    color: #333;
  }
  .default #area-container .headline {
    color: #333;
  }
  .default #area-container .parts-bt a {
    color: #fff;
  }
  .default #area-container.case {
    margin-top: -34px;
  }
  .default #area-container .inner {
    width: auto;
  }
  .default #Contact .inner,
.default .BnrArea .inner {
    width: auto;
  }
}
.footerImg {
  padding-bottom: 20px;
  padding-top: 20px;
  background: white;
  margin-bottom: 20px;
}

.footerImg img {
  max-width: 100%;
}

.footerImg a img {
  max-width: 100%;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  opacity: 1;
}

.footerImg a:hover img {
  opacity: 0.7;
}
.footerImg.bnrBox .inner{
	display: flex;
	justify-content: space-between;
}
.footerImg.bnrBox .inner a{
	width: 465px;
	display: block;
}

@media only screen and (min-width: 751px) {
  /* -----------------------------------------------------------------------------

   	snsLink

   ----------------------------------------------------------------------------- */
  #snsLink {
    background: #f9f8f3;
    padding: 20px 0;
  }

  #snsLink .inner {
    width: 946px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  #snsLink .inner p.linkYoutube,#snsLink .inner p.linkInstagram {
    margin-right: 10px;
  }

  #snsLink .inner p.linkYoutube a,#snsLink .inner p.linkInstagram  a {
    padding: 5px 15px;
    display: block;
    border: 1px solid #dcdcdc;
    background: #fff;
    border-radius: 8px;
  }

  #snsLink .inner p.linkYoutube a:hover,#snsLink .inner p.linkInstagram a:hover {
    border: 1px solid #ccc;
    opacity: 0.7;
  }

  #snsLink .inner p span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  #snsLink .inner p span:before {
    content: "";
    width: 40px;
    height: 40px;
    background-image: url(/kodate2/common_re/img/icon_youtube.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    margin-right: 10px;
    display: block;
  }

	#snsLink .inner p.linkInstagram span:before{
		background-image: url(/2018/common/img/icon_instagram.png);
	}
  #snsLink .inner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  #snsLink .inner ul li {
    margin-left: 20px;
    width: 40px;
  }

  #snsLink .inner ul li img {
    width: 100%;
  }

  #snsLink .inner ul li a:hover {
    opacity: 0.7;
  }
}
.bnr_hojo02{
	margin:40px auto 0;
	max-width: 945px;
}
.bnr_hojo02 img{
	max-width: 100%;
}
.bnr_hojo02 a:hover{
	opacity: .8;
}