@charset "UTF-8";
/*----------------------------------------------------
	基本設定
----------------------------------------------------*/
body {
  font-size: 14px;
  color: #000;
  line-height: 1.5;
  background: #fff !important;
}

body.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* リンク設定 ====================*/
a {
  outline: none;
}
a:link {
  color: #000;
  text-decoration: underline;
}
a:visited {
  color: #000;
}
a:hover {
  color: #006f3f;
  text-decoration: none;
}
a:active {
  color: #000;
}
a:focus {
  outline: none;
}

a.pdf {
  display: inline-block;
  position: relative;
  padding-left: 1em;
}
a.pdf::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 10px;
  height: 12px;
  background: url("../img/ic_pdf.svg") left top no-repeat;
}

a.blank {
  display: table;
  position: relative;
  padding-right: 15px;
}
a.blank::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  right: 0;
  width: 12px;
  height: 10px;
  background-image: url("../img/ic_blank.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

sup {
  font-size: 10px;
  vertical-align: top;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

.sp {
  display: none !important;
}

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

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

.anchor {
  margin-top: -40px;
  padding-top: 40px;
}

/*----------------------------------------------------
	wrapper
----------------------------------------------------*/
.wrapper {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  transition: padding-top 0.15s ease;
}

@media (max-width: 1240px) {
  .wrapper {
    padding-top: 130px;
  }
}
/*----------------------------------------------------
	header
----------------------------------------------------*/
header.header {
  box-sizing: border-box;
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 0 50px;
  background: #fff;
}
header.header > .inner {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
header.header .header__title {
  width: 255px;
  height: 46px;
  background: url("../img/logo.png") left center no-repeat;
  background-size: contain;
}
header.header .header__title a {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
}
header.header .btn__menu {
  display: none;
}
header.header .navigation {
  display: block !important;
  height: 100%;
}
header.header .navigation > .inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
header.header .navigation ul.nav__list {
  box-sizing: border-box;
  display: flex;
  height: 100%;
  margin-right: -20px;
  padding-top: 42px;
  pointer-events: auto;
}
header.header .navigation ul.nav__list li.nav__link > a {
  display: block;
  position: relative;
  padding: 0 20px 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease;
}
header.header .navigation ul.nav__list li.nav__link > a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 10px;
  left: 20px;
  width: calc(100% - 40px);
  height: 2px;
  background: #00873b;
  opacity: 0;
  transition: opacity 0.2s ease;
}
header.header .navigation ul.nav__list li.nav__link > a:hover {
  color: #006f3f;
}
header.header .navigation ul.nav__list li.nav__link > a:hover::after {
  opacity: 1;
}
header.header .navigation ul.nav__list li.nav__link + li.nav__link > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  width: 1px;
  height: 14px;
  border-left: 1px solid #d1d1d1;
}
header.header .navigation ul.nav__list li.nav__dropdown a {
  position: relative;
  z-index: 100;
}
header.header .navigation ul.nav__list li.nav__dropdown span {
  display: block;
  position: relative;
  padding-right: 18px;
}
header.header .navigation ul.nav__list li.nav__dropdown span::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 4px 0 4px;
  border-color: #000000 transparent transparent transparent;
}
header.header .navigation ul.nav__list li.nav__dropdown:hover a {
  color: #006f3f;
}
header.header .navigation ul.nav__list li.nav__dropdown:hover a::after {
  opacity: 1;
}
header.header .navigation ul.nav__list li.nav__dropdown:hover span::after {
  border-color: #006f3f transparent transparent transparent;
}
header.header .navigation ul.nav__list li.nav__dropdown:hover .dropdown__contents {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s ease;
}
header.header .navigation .dropdown__contents {
  visibility: hidden;
  box-sizing: border-box;
  position: absolute;
  z-index: 99;
  top: 57px;
  left: 0;
  width: 100%;
  padding-top: 30px;
  opacity: 0;
}
header.header .navigation .dropdown__contents .inner {
  display: flex;
  width: 100%;
  height: 120px;
  background: #f5f5f5;
}
header.header .navigation .dropdown__contents p.dropdown__title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25.736%;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  background: #006f3f;
}
header.header .navigation .dropdown__contents ul.dropdown__list {
  box-sizing: border-box;
  display: flex;
  width: 74.264%;
  padding: 30px 5.883% 30px 30px;
}
header.header .navigation .dropdown__contents ul.dropdown__list li {
  width: 23.89675%;
}
header.header .navigation .dropdown__contents ul.dropdown__list li a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 30px 0 20px;
  text-decoration: none;
  color: #006f3f;
  line-height: 1;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  transition: border 0.2s ease;
}
header.header .navigation .dropdown__contents ul.dropdown__list li a:hover {
  border: 1px solid #006f3f;
}
header.header .navigation .dropdown__contents ul.dropdown__list li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 28px;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: solid 1px #006f3f;
  border-right: solid 1px #006f3f;
  transform: rotate(45deg);
}
header.header .navigation .dropdown__contents ul.dropdown__list li + li {
  margin-left: 1.471%;
}

@media (max-width: 1240px) {
  header.header {
    height: 130px;
    padding-top: 25px;
    background: #fff;
  }
  header.header > .inner {
    display: block;
  }
  header.header .header__title {
    margin: 0 auto;
  }
  header.header .navigation > .inner {
    justify-content: center;
  }
  header.header .navigation ul.nav__list {
    margin-right: 0;
    padding-top: 20px;
  }
  header.header .navigation ul.nav__list li.nav__link > a {
    padding: 0 12px 20px;
    font-size: 13px;
  }
  header.header .navigation .dropdown__contents {
    top: 106px;
    padding-top: 24px;
  }
  header.header .navigation .dropdown__contents .inner {
    height: 100px;
  }
  header.header .navigation .dropdown__contents p.dropdown__title {
    width: 18%;
  }
  header.header .navigation .dropdown__contents ul.dropdown__list {
    width: 82%;
    padding: 20px 30px;
  }
}
body#home header.header a.home {
  color: #006f3f;
}
body#home header.header a.home::after {
  opacity: 1;
}

body#about header.header a.about,
body#philosophy header.header a.about,
body#profile header.header a.about,
body#history header.header a.about {
  color: #006f3f;
}
body#about header.header a.about::after,
body#philosophy header.header a.about::after,
body#profile header.header a.about::after,
body#history header.header a.about::after {
  opacity: 1;
}
body#about header.header .nav__dropdown span::after,
body#philosophy header.header .nav__dropdown span::after,
body#profile header.header .nav__dropdown span::after,
body#history header.header .nav__dropdown span::after {
  border-color: #006f3f transparent transparent transparent;
}

body#project header.header a.project {
  color: #006f3f;
}
body#project header.header a.project::after {
  opacity: 1;
}

body#expressway header.header a.expressway {
  color: #006f3f;
}
body#expressway header.header a.expressway::after {
  opacity: 1;
}

body#realestate header.header a.realestate {
  color: #006f3f;
}
body#realestate header.header a.realestate::after {
  opacity: 1;
}

body#tenants header.header a.tenants {
  color: #006f3f;
}
body#tenants header.header a.tenants::after {
  opacity: 1;
}

body#access header.header a.access {
  color: #006f3f;
}
body#access header.header a.access::after {
  opacity: 1;
}

/*----------------------------------------------------
	pagetop
----------------------------------------------------*/
.pagetop {
  display: none;
  position: fixed;
  z-index: 98;
  right: 30px;
  padding-bottom: 30px;
}
.pagetop a {
  display: block;
  width: 56px;
  height: 56px;
  background-color: #006f3f;
  background-image: url("../img/pagetop.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  transition: background-color 0.15s ease;
}
.pagetop a:hover {
  background-color: rgba(0, 111, 63, 0.7);
}
.pagetop a span {
  opacity: 0;
}

/*----------------------------------------------------
	footer
----------------------------------------------------*/
footer.footer {
  margin-top: 80px;
  border-top: 1px solid #e1e1e1;
}
footer.footer .footer__top {
  padding: 0 50px;
}
footer.footer .footer__top .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 0 75px;
}
footer.footer .footer__top .inner .block:first-child {
  order: 2;
}
footer.footer .footer__top .inner .block:last-child {
  order: 1;
}
footer.footer .footer__top .inner .footer__title {
  width: 255px;
  height: 46px;
  background: url("../img/logo.png") left center no-repeat;
  background-size: cover;
}
footer.footer .footer__top .inner .footer__title a {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
}
footer.footer .footer__top .inner p.text {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
}
footer.footer .footer__top .inner ul.nav__list {
  box-sizing: border-box;
  display: flex;
  height: 100%;
  pointer-events: auto;
}
footer.footer .footer__top .inner ul.nav__list li.nav__link > a {
  display: block;
  position: relative;
  padding: 8px 0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease;
}
footer.footer .footer__top .inner ul.nav__list li.nav__link > a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00873b;
  opacity: 0;
  transition: opacity 0.2s ease;
}
footer.footer .footer__top .inner ul.nav__list li.nav__link > a:hover {
  color: #006f3f;
}
footer.footer .footer__top .inner ul.nav__list li.nav__link > a:hover::after {
  opacity: 1;
}
footer.footer .footer__top .inner ul.nav__list li.nav__link + li.nav__link {
  margin-left: 20px;
  padding-left: 20px;
}
footer.footer .footer__top .inner ul.nav__list li.nav__link + li.nav__link a::before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: -20px;
  width: 1px;
  height: 14px;
  border-left: 1px solid #d1d1d1;
}
footer.footer .footer__top .inner .btn__data {
  display: table;
  margin-top: 20px;
}
footer.footer .footer__top .inner .btn__data a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 276px;
  height: 48px;
  text-decoration: none;
  color: #000;
  line-height: 1;
  border: 1px solid #e1e1e1;
  transition: all 0.2s ease;
}
footer.footer .footer__top .inner .btn__data a:hover {
  color: #006f3f;
  border: 1px solid #006f3f;
}
footer.footer .footer__bottom {
  padding: 0 50px;
  background: #006f3f;
}
footer.footer .footer__bottom .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  height: 80px;
  margin: 0 auto;
}
footer.footer .footer__bottom .inner ul.nav__list {
  display: flex;
}
footer.footer .footer__bottom .inner ul.nav__list li a {
  color: #fff;
  line-height: 1;
}
footer.footer .footer__bottom .inner ul.nav__list li + li {
  margin-left: 30px;
}
footer.footer .footer__bottom .inner p.copyright {
  color: #fff;
  line-height: 1;
}

@media (max-width: 1240px) {
  footer.footer .footer__top .inner {
    display: block;
    padding: 30px 0 35px;
  }
  footer.footer .footer__top .inner .footer__title {
    margin: 30px auto 0;
  }
  footer.footer .footer__top .inner p.text {
    text-align: center;
  }
  footer.footer .footer__top .inner ul.nav__list {
    justify-content: center;
  }
  footer.footer .footer__top .inner ul.nav__list li.nav__link + li.nav__link {
    margin-left: 1.2vw;
    padding-left: 1.2vw;
  }
  footer.footer .footer__top .inner ul.nav__list li.nav__link + li.nav__link a::before {
    left: -1.2vw;
  }
  footer.footer .footer__top .inner .btn__data {
    margin: 20px auto 0;
  }
  footer.footer .footer__bottom {
    padding: 0 50px;
    background: #006f3f;
  }
  footer.footer .footer__bottom .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    height: 80px;
    margin: 0 auto;
  }
  footer.footer .footer__bottom .inner ul.nav__list {
    display: flex;
  }
  footer.footer .footer__bottom .inner ul.nav__list li a {
    text-decoration: none;
    color: #fff;
    line-height: 1;
  }
  footer.footer .footer__bottom .inner ul.nav__list li a:hover {
    text-decoration: underline;
  }
  footer.footer .footer__bottom .inner ul.nav__list li + li {
    margin-left: 30px;
  }
  footer.footer .footer__bottom .inner p.copyright {
    color: #fff;
    line-height: 1;
  }
}
/*----------------------------------------------------
	共通
----------------------------------------------------*/
.titlearea {
  position: relative;
  padding: 0 50px;
  background-color: #b5b7b9;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.titlearea::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(121, 130, 144, 0.6);
  mix-blend-mode: multiply;
}
.titlearea .inner {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  height: 330px;
  padding-top: 115px;
}
.titlearea h1.title {
  text-align: center;
}
.titlearea h1.title strong {
  display: block;
  height: 62px;
  margin: 0 auto;
  color: transparent;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
.titlearea h1.title span {
  display: block;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.section {
  padding: 0 50px;
}
.section > .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section + .section {
  margin-top: 80px;
}

.nav__bottom {
  max-width: 860px;
  margin: 120px auto 0;
  padding: 0 50px;
}
.nav__bottom ul.nav__list {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  pointer-events: auto;
  border-right: 1px solid #d1d1d1;
  border-left: 1px solid #d1d1d1;
}
.nav__bottom ul.nav__list li.nav__link {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  width: 25%;
}
.nav__bottom ul.nav__list li.nav__link a {
  box-sizing: border-box;
  display: table;
  position: relative;
  height: 36px;
  padding: 8px 0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav__bottom ul.nav__list li.nav__link a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00873b;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.nav__bottom ul.nav__list li.nav__link a:hover {
  color: #006f3f;
}
.nav__bottom ul.nav__list li.nav__link a:hover::after {
  opacity: 1;
}
.nav__bottom ul.nav__list li.nav__link + li.nav__link {
  border-left: 1px solid #d1d1d1;
}

body#about .nav__bottom a.about {
  color: #006f3f;
}
body#about .nav__bottom a.about::after {
  opacity: 1;
}

body#philosophy .nav__bottom a.philosophy {
  color: #006f3f;
}
body#philosophy .nav__bottom a.philosophy::after {
  opacity: 1;
}

body#profile .nav__bottom a.profile {
  color: #006f3f;
}
body#profile .nav__bottom a.profile::after {
  opacity: 1;
}

body#history .nav__bottom a.history {
  color: #006f3f;
}
body#history .nav__bottom a.history::after {
  opacity: 1;
}

body#data .titlearea,
body#terms .titlearea,
body#sitemap .titlearea,
body#notfound .titlearea {
  padding: 0 30px;
}
body#data .titlearea::before,
body#terms .titlearea::before,
body#sitemap .titlearea::before,
body#notfound .titlearea::before {
  content: none;
}
body#data .titlearea .inner,
body#terms .titlearea .inner,
body#sitemap .titlearea .inner,
body#notfound .titlearea .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  padding-top: 0;
}
body#data .titlearea h1.title,
body#terms .titlearea h1.title,
body#sitemap .titlearea h1.title,
body#notfound .titlearea h1.title {
  font-size: 40px;
  font-weight: 400;
  color: #fff;
}
body#data .section,
body#terms .section,
body#sitemap .section,
body#notfound .section {
  margin-top: 80px;
}

/*----------------------------------------------------
	ニュース&トピックス リスト
----------------------------------------------------*/
ul.news__list {
  border-top: 1px solid #e1e1e1;
}
ul.news__list li {
  border-bottom: 1px solid #e1e1e1;
}
ul.news__list li a {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0 23px;
  text-decoration: none;
  color: #000000;
  line-height: 1;
}
ul.news__list li a:hover p.title {
  color: #006f3f;
  text-decoration: none;
}
ul.news__list li a.off {
  pointer-events: none;
}
ul.news__list li a.off p.title {
  text-decoration: none;
}
ul.news__list li p.date {
  display: flex;
  align-items: center;
  width: 98px;
}
ul.news__list li p.cat {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  min-height: 21px;
  padding: 4px 5px 5px;
  font-size: 12px;
  color: #fff;
  background: #646464;
  border-radius: 4px;
}
ul.news__list li p.title {
  width: 100%;
  margin-top: 0.5em;
  text-decoration: underline;
  line-height: 2;
}
ul.news__list li p.cat01 {
  background: #c30822;
}

/*----------------------------------------------------
	テナント様向け各種書式ダウンロード
----------------------------------------------------*/
body#data .section .inner {
  max-width: 800px;
}
body#data ul.download__list {
  margin-top: 40px;
  border-top: 1px solid #e1e1e1;
}
body#data ul.download__list li {
  display: flex;
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e1e1e1;
}
body#data ul.download__list li::before {
  margin-right: 0.5em;
  font-size: 18px;
  font-weight: 700;
  color: #006f3f;
  line-height: 1;
}
body#data ul.download__list li:nth-of-type(1)::before {
  content: "1.";
}
body#data ul.download__list li:nth-of-type(2)::before {
  content: "2.";
}
body#data ul.download__list li:nth-of-type(3)::before {
  content: "3.";
}
body#data ul.download__list li:nth-of-type(4)::before {
  content: "4.";
}
body#data ul.download__list li:nth-of-type(5)::before {
  content: "5.";
}
body#data ul.download__list li:nth-of-type(6)::before {
  content: "6.";
}
body#data ul.download__list li:nth-of-type(7)::before {
  content: "7.";
}
body#data ul.download__list li:nth-of-type(8)::before {
  content: "8.";
}
body#data ul.download__list li a {
  display: block;
  position: relative;
  padding-left: 20px;
  color: #006f3f;
  line-height: 1;
}
body#data ul.download__list li a strong {
  font-size: 18px;
  font-weight: 700;
}
body#data ul.download__list li a::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 14px;
  height: 17px;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}
body#data ul.download__list li a.ic_w::before {
  background-image: url("../img/ic_w.png");
}
body#data ul.download__list li a.ic_x::before {
  background-image: url("../img/ic_x.png");
}

/*----------------------------------------------------
	サイトご利用上の注意
----------------------------------------------------*/
body#terms p.text + h2.title__line {
  margin-top: 80px;
}
body#terms h3.title {
  margin-top: 1.5em;
}
body#terms h3.title + p.text {
  margin-top: 0.75em;
}

/*----------------------------------------------------
	サイトマップ
----------------------------------------------------*/
body#sitemap .section .inner {
  max-width: 800px;
}
body#sitemap ul.sitemap__list {
  border-top: 1px solid #e1e1e1;
}
body#sitemap ul.sitemap__list li.sitemap__link {
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e1e1e1;
}
body#sitemap ul.sitemap__list li.sitemap__link > a {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #006f3f;
  line-height: 1;
}
body#sitemap ul.sitemap__list li.sitemap__link ul {
  display: flex;
  margin-top: 20px;
}
body#sitemap ul.sitemap__list li.sitemap__link ul li a {
  display: block;
  font-size: 16px;
  color: #006f3f;
  line-height: 1;
}
body#sitemap ul.sitemap__list li.sitemap__link ul li + li {
  position: relative;
  margin-left: 1.5em;
  padding-left: 1.5em;
}
body#sitemap ul.sitemap__list li.sitemap__link ul li + li::before {
  content: "";
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 1px;
  height: 16px;
  border-left: 1px solid #000;
}
body#sitemap ul.sub__list {
  display: flex;
  margin-top: 60px;
}
body#sitemap ul.sub__list li a {
  display: block;
  font-size: 16px;
  color: #006f3f;
  line-height: 1;
}
body#sitemap ul.sub__list li + li {
  margin-left: 50px;
}

/*----------------------------------------------------
	404 Not Found.
----------------------------------------------------*/
body#notfound .titlearea h1.title {
  font-size: 50px;
  font-weight: 200;
  font-family: "Outfit", sans-serif;
}
body#notfound .section .inner {
  max-width: 800px;
}
body#notfound h4.title {
  margin-top: 2em;
  text-align: center;
}
body#notfound p.text {
  margin-top: 1em;
  text-align: center;
}
body#notfound .btn__arrow {
  display: table;
  margin: 40px auto 0;
}

/* パスワード保護 ====================*/
.area__password {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px 70px;
  background: #fff;
  border-radius: 10px;
}
.area__password p.text {
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}
.area__password form {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.area__password input[type=password] {
  box-sizing: border-box;
  width: 200px;
  height: 50px;
  padding: 10px 15px;
  text-align: center;
  font-size: 24px;
  letter-spacing: 0.2em;
  background: #fff;
  border: 1px solid #006f3f;
}
.area__password input[type=submit] {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 150px;
  height: 50px;
  padding: 5px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  background-color: #006f3f;
  cursor: pointer;
  transition: opacity 0.15s ease-out;
}
.area__password input[type=submit]:hover {
  opacity: 0.8;
}

/* ======================================================
	共通パーツ類
====================================================== */
/*----------------------------------------------------
	h
----------------------------------------------------*/
h2.title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

h2.title__green {
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  color: #006f3f;
  line-height: 1;
}

h2.title__line {
  position: relative;
  padding-top: 25px;
  font-size: 24px;
  font-weight: 400;
  color: #006f3f;
  line-height: 1.75;
  border-top: 1px solid #006f3f;
}
h2.title__line::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 4px;
  border-top: 4px solid #006f3f;
}

h2.title__border {
  padding-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
  color: #006f3f;
  line-height: 1;
  border-bottom: 1px solid #006f3f;
}
h2.title__border span {
  font-size: 20px;
  font-weight: 400;
}

h3.title {
  font-size: 22px;
  font-weight: 400;
  color: #006f3f;
  line-height: 1;
}

h4.title {
  font-size: 18px;
  line-height: 1;
}

h4.title__bg {
  position: relative;
  display: table;
  margin: 0 auto;
  padding: 0 18px;
  font-size: 18px;
}
h4.title__bg::before, h4.title__bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 18px;
  height: 38px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
h4.title__bg::before {
  left: 0;
  background-image: url("../img/bg_h3_left.png");
}
h4.title__bg::after {
  right: 0;
  background-image: url("../img/bg_h3_right.png");
}
h4.title__bg span {
  display: table;
  height: 38px;
  padding: 0 22px;
  text-align: center;
  font-size: 18px;
  line-height: 1;
  background: #fff;
}

h5.title {
  font-size: 16px;
  line-height: 1;
}

/*----------------------------------------------------
	p
----------------------------------------------------*/
p.text {
  font-size: 16px;
  line-height: 2;
}
p.text:not(:first-child) {
  margin-top: 2em;
}

p.text__lead {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
}

p.text__note {
  font-size: 12px;
  line-height: 2;
}

p.text__kome {
  position: relative;
  padding-left: 1em;
  white-space: nowrap;
}
p.text__kome::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

/*----------------------------------------------------
	ul
----------------------------------------------------*/
ul.list__circle li {
  display: flex;
  position: relative;
  padding-left: 1.25em;
}
ul.list__circle li::before {
  content: "◎";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
}
ul.list__circle li + li {
  margin-top: 0.75em;
}

ul.list__square li {
  display: flex;
  position: relative;
  padding-left: 1.25em;
}
ul.list__square li::before {
  content: "■";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
}
ul.list__square li + li {
  margin-top: 0.75em;
}

ul.list__disc li {
  display: flex;
  position: relative;
  padding-left: 1em;
}
ul.list__disc li::before {
  content: "•";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
}
ul.list__disc li + li {
  margin-top: 0.75em;
}

ul.list__kome li {
  position: relative;
  padding-left: 1em;
}
ul.list__kome li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
ul.list__kome li + li {
  margin-top: 0.75em;
}

/*----------------------------------------------------
	figure
----------------------------------------------------*/
figure.img {
  margin: 0;
}
figure.img figcaption {
  margin-top: 0.5em;
  font-size: 12px;
}

/*----------------------------------------------------
	table
----------------------------------------------------*/
table.table01 {
  width: 100%;
}
table.table01 th,
table.table01 td {
  padding: 12px;
  vertical-align: middle;
}
table.table01 th {
  text-align: left;
}
table.table01 thead th {
  padding-top: 0;
  text-align: left;
  background-color: #f5f5f5;
  border-bottom: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
}
table.table01 tr:nth-child(odd) {
  background-color: #fff;
}
table.table01 tr:nth-of-type(even) {
  background-color: #f5f5f5;
}

table.table02 {
  width: 100%;
  border-top: 1px solid #e1e1e1;
}
table.table02 th,
table.table02 td {
  padding: 15px 30px;
  font-size: 16px;
  line-height: 2;
  vertical-align: top;
  border-bottom: 1px solid #e1e1e1;
}
table.table02 th {
  box-sizing: border-box;
  width: 200px;
  padding: 15px 30px;
  text-align: left;
  font-weight: 400;
  background-color: #f5f5f5;
}
table.table02 td {
  padding-right: 0;
}

table.table03 {
  width: 100%;
}
table.table03 th,
table.table03 td {
  font-size: 14px;
  line-height: 1.5;
  vertical-align: middle;
}
table.table03 th {
  box-sizing: border-box;
  padding: 5px;
  font-weight: 400;
  white-space: nowrap;
  background-color: rgba(0, 111, 63, 0.2);
  border-right: 1px solid #fff;
}
table.table03 th:last-child {
  border-right: 1px solid rgba(0, 111, 63, 0.2);
}
table.table03 td {
  padding: 5px;
  background: #fff;
  border: 1px solid rgba(0, 111, 63, 0.2);
  border-top: none;
}
table.table03 td.nowrap {
  white-space: nowrap;
}

/*----------------------------------------------------
	btn
----------------------------------------------------*/
.btn__arrow {
  display: table;
  position: relative;
}
.btn__arrow::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  border-radius: 50%;
  background: #006f3f;
  transition: transform 0.3s ease;
  transform: scaleX(1);
  transform-origin: left bottom;
}
.btn__arrow:hover::before {
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: right bottom;
}
.btn__arrow a {
  box-sizing: border-box;
  display: table;
  position: relative;
  width: 240px;
  height: 58px;
  padding: 15px 60px 0 0;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: #006f3f;
  line-height: 1;
  transition: color 0.3s ease;
}
.btn__arrow a::before {
  content: "";
  box-sizing: border-box;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  background: #006f3f;
  border-radius: 50%;
}
.btn__arrow a::after {
  content: "";
  display: block;
  position: absolute;
  top: 17px;
  right: 19px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.btn__border a {
  box-sizing: border-box;
  display: table;
  position: relative;
  padding: 10px 25px 12px 10px;
  text-decoration: none;
  color: #006f3f;
  border: 1px solid #c8c8c8;
  border-radius: 6px;
  transition: border 0.2s ease;
}
.btn__border a:hover {
  border: 1px solid #006f3f;
}
.btn__border a::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 3px);
  right: 11px;
  width: 5px;
  height: 5px;
  border-top: solid 1px #006f3f;
  border-right: solid 1px #006f3f;
  transform: rotate(45deg);
}

.btn__border-blank a {
  box-sizing: border-box;
  display: table;
  position: relative;
  padding: 10px 30px 12px 10px;
  text-decoration: none;
  color: #006f3f;
  border: 1px solid #c8c8c8;
  border-radius: 6px;
  transition: border 0.2s ease;
}
.btn__border-blank a:hover {
  border: 1px solid #006f3f;
}
.btn__border-blank a::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 11px;
  width: 12px;
  height: 10px;
  background-image: url("../img/ic_blank.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*----------------------------------------------------
	bgarea
----------------------------------------------------*/
.bgarea__gray {
  background: #f5f5f5;
}

.bgarea__white {
  background: #fff;
}

.bgarea__lightgreen {
  background: #f1f9f6;
}

/*----------------------------------------------------
	borderarea
----------------------------------------------------*/
.borderarea {
  border: 1px solid #c8c8c8;
}

/*----------------------------------------------------
	HOME
----------------------------------------------------*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body.home .mainvisual.visible {
  animation-name: fadeIn;
  animation-duration: 0.2s;
  animation-delay: 0.2s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
body.home .mainvisual {
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  z-index: 2;
  height: 100vw;
  opacity: 0;
}
body.home .mainvisual .swiper-container {
  overflow: hidden;
  position: relative;
  height: 100%;
}
body.home .mainvisual .swiper-container::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(56, 64, 76, 0.6);
  mix-blend-mode: multiply;
}
body.home .mainvisual .swiper-wrapper {
  position: relative;
  z-index: 0;
}
body.home .mainvisual .swiper-slide {
  box-sizing: border-box;
  position: relative;
  z-index: 0;
}
body.home .mainvisual .img {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
body.home .mainvisual .pagination {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 30px 50px;
}
body.home .mainvisual .pagination::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(56, 64, 76, 0.6);
  mix-blend-mode: multiply;
}
body.home .mainvisual .pagination .swiper-pagination {
  display: flex;
  position: relative;
  z-index: 1;
  bottom: 0;
}
body.home .mainvisual .pagination .swiper-pagination span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 0;
  pointer-events: none;
  background: #dcdcdc;
  border-radius: 0;
  opacity: 1;
}
body.home .mainvisual .pagination .swiper-pagination span:hover {
  background: #006f3f;
}
body.home .mainvisual .pagination .swiper-pagination span.swiper-pagination-bullet-active {
  background: #006f3f;
}
body.home .mainvisual .pagination .swiper-pagination span + span {
  margin-left: 20px;
}
@keyframes scroll {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
body.home .mainvisual .scroll {
  position: absolute;
  left: 40px;
  bottom: 40px;
  width: 124px;
  height: 142px;
  z-index: 1;
}
body.home .mainvisual .scroll a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
}
body.home .mainvisual .scroll::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../img/home/scroll.png") center center no-repeat;
  background-size: contain;
  animation: scroll 20s linear infinite;
}
body.home .mainvisual .scroll::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../img/home/scroll_arrow.png") center center no-repeat;
  background-size: contain;
}
body.home .mainvisual .block {
  position: absolute;
  top: calc(50% - 175px);
  left: calc(50% - 145px);
  width: 290px;
}
body.home .mainvisual .block p.logo {
  display: table;
  margin: 0 auto;
}
body.home .mainvisual .block p.logo img {
  width: 278px;
  height: 152px;
}
body.home .mainvisual .block p.text {
  margin-top: 32px;
  padding: 18px 0;
  text-align: center;
  font-size: 16px;
  color: #fff;
  line-height: 2;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
body.home .mainvisual .block__text {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 0 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
}
body.home .mainvisual .block__text p.title {
  width: 100%;
  font-size: 16px;
  font-weight: 700;
}
body.home .mainvisual .block__text p.text {
  width: 100%;
  font-size: 14px;
  line-height: 1.8;
}
body.home .mainvisual .block__text p.text a {
  display: table;
  margin: 0 auto;
}
body.home .section__about {
  position: relative;
  z-index: 0;
  margin-top: -100px;
  padding: 220px 50px 0;
}
body.home .section__about .column {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}
body.home .section__about .column .cell {
  box-sizing: border-box;
  width: 50%;
}
body.home .section__about .column .cell:first-child {
  width: 250px;
  display: flex;
}
body.home .section__about .column .cell:last-child {
  width: calc(82% - 250px);
  margin-left: 18%;
}
body.home .section__about h2.title {
  text-align: left;
}
body.home .section__about h2.title strong {
  display: block;
  width: 173px;
  height: 44px;
  color: transparent;
  background: url("../../img/home/title_about.svg") left top no-repeat;
  background-size: contain;
}
body.home .section__about h2.title span {
  display: block;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 400;
  color: #006f3f;
  line-height: 1;
}
body.home .section__about p.text__lead {
  margin-top: -0.5em;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.76;
  letter-spacing: 0.05em;
}
body.home .section__about p.text {
  margin-top: 35px;
  font-size: 16px;
  line-height: 2.25;
}
body.home .section__about .btn__arrow {
  width: 250px;
  margin-top: 80px;
}
body.home .section__about .bnr__kkproject {
  margin-top: 40px;
  width: 250px;
}
body.home .section__about .bnr__kkproject a {
  transition: opacity 0.2s;
}
body.home .section__about .bnr__kkproject a:hover {
  opacity: 0.8;
}
body.home .section__business {
  margin-top: 120px;
}
body.home .section__business .column {
  display: flex;
}
body.home .section__business .column .cell {
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  width: 33.3333333333%;
  height: 440px;
}
body.home .section__business .column .cell::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.2s;
  transform: scale(1.009);
}
body.home .section__business .column .cell::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(56, 64, 76, 0.6);
  mix-blend-mode: multiply;
  transition: all 0.2s;
}
body.home .section__business .column .cell:hover::before {
  transform: scale(1.05);
}
body.home .section__business .column .cell:hover::after {
  background: rgba(56, 64, 76, 0.2);
}
body.home .section__business .column .kk-saisei::before {
  background-image: url("../../img/home/kksaisei_img.jpg");
}
body.home .section__business .column .kk-saisei h2 strong {
  font-size: 30px;
}
body.home .section__business .column .realestate::before {
  background-image: url("../../img/home/estate_img.jpg");
}
body.home .section__business .column .expressway::before {
  background-image: url("../../img/home/expressway_img.jpg");
}
body.home .section__business a {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: #fff;
}
body.home .section__business a::before {
  content: "";
  display: block;
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 45px;
  height: 45px;
  border: 1px solid #fff;
  border-radius: 50%;
}
body.home .section__business a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 47px;
  right: 50px;
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
}
body.home .section__business h2.title {
  width: 100%;
}
body.home .section__business h2.title strong {
  display: block;
  font-size: 34px;
  font-weight: 300;
  line-height: 1.2;
}
body.home .section__business h2.title span {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
body.home .section__business p.text {
  margin-top: 30px;
  font-size: 16px;
  line-height: 2;
}
body.home .section__tenants {
  margin-top: 120px;
  padding: 0 50px;
}
body.home .section__tenants .column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
body.home .section__tenants .column .cell {
  box-sizing: border-box;
}
body.home .section__tenants .column .cell:nth-child(1) {
  width: 229px;
}
body.home .section__tenants .column .cell:nth-child(2) {
  width: calc(100% - 229px - 240px);
  padding: 0 5%;
}
body.home .section__tenants .column .cell:nth-child(3) {
  width: 240px;
}
body.home .section__tenants h2.title {
  width: 229px;
  text-align: left;
}
body.home .section__tenants h2.title strong {
  display: block;
  width: 229px;
  height: 43px;
  color: transparent;
  background: url("../../img/home/title_tenants.svg") left top no-repeat;
  background-size: contain;
}
body.home .section__tenants h2.title span {
  display: block;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 400;
  color: #006f3f;
  line-height: 1;
}
body.home .section__tenants p.text {
  font-size: 16px;
  line-height: 2.25;
}
body.home .section__tenants ul.tenants__list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 55px auto 0;
}
body.home .section__tenants ul.tenants__list li {
  box-sizing: border-box;
  width: 23.7505%;
  margin-right: 1.666%;
}
body.home .section__tenants ul.tenants__list li:nth-child(4n) {
  margin-right: 0;
}
body.home .section__tenants ul.tenants__list li:nth-child(n+5) {
  margin-top: 1.666%;
}
body.home .section__tenants ul.tenants__list li img {
  width: 100%;
}
body.home .section__news {
  margin-top: 120px;
  padding: 100px 50px;
  background: #f5f5f5;
}
body.home .section__news .column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}
body.home .section__news .column .cell {
  box-sizing: border-box;
}
body.home .section__news .column .cell:first-child {
  width: 240px;
}
body.home .section__news .column .cell:last-child {
  width: calc(100% - 240px);
  padding-left: 8.333%;
}
body.home .section__news h2.title {
  text-align: left;
}
body.home .section__news h2.title strong {
  display: block;
  width: 204px;
  height: 120px;
  color: transparent;
  background: url("../../img/home/title_newstopics.svg") left top no-repeat;
  background-size: contain;
}
body.home .section__news h2.title span {
  display: block;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 400;
  color: #006f3f;
  line-height: 1;
}
body.home .section__news .btn__arrow {
  margin-top: 80px;
}
body.home .bnrarea {
  margin-top: 120px;
  padding: 0 50px;
}
body.home .bnrarea ul.bnr__list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
body.home .bnrarea ul.bnr__list li {
  width: 31.6666666667%;
  margin-right: 2.5%;
  text-align: center;
}
body.home .bnrarea ul.bnr__list li:nth-of-type(3n) {
  margin-right: 0;
}
body.home .bnrarea ul.bnr__list li:nth-of-type(n+4) {
  margin-top: 2.5%;
}
body.home .bnrarea ul.bnr__list li:last-child {
  background: #fcf2e8;
}
body.home .bnrarea ul.bnr__list li a {
  box-sizing: border-box;
  display: block;
  border: 1px solid #e1e1e1;
  transition: all 0.2s ease;
}
body.home .bnrarea ul.bnr__list li a:hover {
  border: 1px solid #006f3f;
}
@media (max-width: 1240px) {
  body.home .section__about p.text__lead br {
    display: none;
  }
}
@media (max-width: 1040px) {
  body.home .regulation {
    margin-top: -130px;
    padding-top: 130px;
  }
  body.home .section__about {
    margin-top: -130px;
    padding-top: 250px;
  }
  body.home .section__about p.text br {
    display: none;
  }
  body.home .section__business p.text {
    margin-top: 1.5em;
    font-size: 15px;
  }
  body.home .section__business p.text br {
    display: none;
  }
  body.home .section__tenants .column .cell:nth-child(1), body.home .section__tenants .column .cell:nth-child(3) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
  }
  body.home .section__tenants .column .cell:nth-child(2) {
    width: 50%;
    padding: 0 0 0 4.2%;
  }
  body.home .section__tenants h2.title {
    width: 240px;
  }
  body.home .section__tenants .btn__arrow {
    margin-top: 60px;
  }
}

body.home.--none .btn__regulation {
  display: none;
}
body.home.--none .btn__regulation a {
  display: none;
}
body.home.--none .regulation {
  display: none;
}

body.home.--block .btn__regulation {
  width: 100%;
  height: 60px;
}
body.home.--block .btn__regulation a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  background: #006f3f;
}
body.home.--block .btn__regulation a span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  margin: 0 auto;
  padding-right: 45px;
}
body.home.--block .btn__regulation a span::before {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 100%;
}
body.home.--block .btn__regulation a span::after {
  content: "";
  display: block;
  position: absolute;
  top: 25px;
  right: 8px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #006f3f;
  border-right: 2px solid #006f3f;
  transform: rotate(135deg);
}
body.home.--block .regulation {
  margin-top: -100px;
  padding-top: 100px;
}
body.home.--block .regulation .inner {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px 50px;
  background: #006f3f;
}
body.home.--block .regulation .detail {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}
body.home.--block .regulation h2.title {
  display: flex;
  align-items: center;
  justify-content: center;
}
body.home.--block .regulation h2.title strong {
  display: block;
  width: 140px;
  padding-top: 60px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  background: url("../../img/home/ic_exclamation.png") center top no-repeat;
}
body.home.--block .regulation ul.textarea {
  box-sizing: border-box;
  width: calc(100% - 185px);
  margin-left: 45px;
  padding: 25px 30px;
  background: #fff;
  border-radius: 6px;
}
body.home.--block .regulation ul.textarea li {
  font-size: 15px;
  line-height: 1.7;
}
body.home.--block .regulation ul.textarea li + li {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid #e1e1e1;
}

/*----------------------------------------------------
	共通
----------------------------------------------------*/
body#about .titlearea,
body#philosophy .titlearea,
body#profile .titlearea,
body#history .titlearea {
  background-image: url("../../img/about/bg_title.jpg");
}
body#about .titlearea .inner,
body#philosophy .titlearea .inner,
body#profile .titlearea .inner,
body#history .titlearea .inner {
  background: url("../img/bg_title.png") center bottom no-repeat;
}
body#about .titlearea h1.title strong,
body#philosophy .titlearea h1.title strong,
body#profile .titlearea h1.title strong,
body#history .titlearea h1.title strong {
  width: 200px;
  background-image: url("../../img/about/title_about.svg");
}
body#about .nav__bottom ul.nav__list li.nav__link,
body#philosophy .nav__bottom ul.nav__list li.nav__link,
body#profile .nav__bottom ul.nav__list li.nav__link,
body#history .nav__bottom ul.nav__list li.nav__link {
  width: 33.3333333333%;
}

/*----------------------------------------------------
	当社について
----------------------------------------------------*/
body#about p.text__lead {
  margin-top: 70px;
  text-align: center;
}
body#about .column01 {
  display: flex;
}
body#about .column01 .cell {
  width: 47%;
}
body#about .column01 .cell + .cell {
  margin-left: 6%;
}
body#about .section04 .bgarea__gray {
  margin-top: 50px;
  padding: 0 5% 5%;
}
body#about .section04 .bgarea__gray .column02 {
  display: flex;
  margin-top: 30px;
}
body#about .section04 .bgarea__gray .column02 .cell {
  width: calc((100% - 100px) / 3);
}
body#about .section04 .bgarea__gray .column02 .cell + .cell {
  position: relative;
  margin-left: 50px;
}
body#about .section04 .bgarea__gray .column02 .cell + .cell::before {
  content: "";
  display: block;
  position: absolute;
  top: 32%;
  left: -40px;
  width: 32px;
  height: 36px;
  background: url("../img/ic_arrow.png") left center no-repeat;
}
@media (max-width: 1100px) {
  body#about .section04 .bgarea__gray .column02 .cell + .cell::before {
    top: 6.2vw;
  }
}
body#about .section05 .column01 {
  margin-top: 80px;
}
body#about .section05 .column03 {
  display: flex;
  margin-top: 60px;
}
body#about .section05 .column03 .cell {
  width: 30%;
}
body#about .section05 .column03 .cell + .cell {
  margin-left: 5%;
}
body#about .section05 .bgarea__gray {
  margin-top: 60px;
  padding: 0 3% 5%;
}
body#about .section05 .bgarea__gray .column04 {
  display: flex;
  margin-top: 30px;
}
body#about .section05 .bgarea__gray .column04 .cell {
  width: 47.8725%;
}
body#about .section05 .bgarea__gray .column04 .cell + .cell {
  margin-left: 4.255%;
}
body#about .section05 .bgarea__gray .column05 {
  display: flex;
  margin-top: 40px;
}
body#about .section05 .bgarea__gray .column05 .cell {
  width: 47.8725%;
}
body#about .section05 .bgarea__gray .column05 .cell + .cell {
  margin-left: 4.255%;
}
body#about .section05 .bgarea__gray .btn__border {
  display: table;
  margin: 2em auto 0;
  font-size: 16px;
}
body#about .section05 .bgarea__gray .btn__border a {
  padding-left: 20px;
  background: #fff;
}
body#about .section05 .bgarea__gray-urbanplanning p.text-scroll {
  display: none;
}
body#about .section05 .bgarea__gray-urbanplanning .table-scroll {
  margin-top: 15px;
}
body#about .section05 .bgarea__gray-urbanplanning .column06 {
  display: flex;
  margin-top: 20px;
}
body#about .section05 .bgarea__gray-urbanplanning .column06 .cell:first-child {
  width: 50%;
}
body#about .section05 .bgarea__gray-urbanplanning .column06 .cell:last-child {
  width: 45.745%;
}
body#about .section05 .bgarea__gray-urbanplanning .column06 .cell + .cell {
  margin-left: 4.255%;
}
body#about .section05 .bgarea__gray-urbanplanning .column06 + .column06 {
  margin-top: 30px;
}
body#about .section05 .bgarea__gray-urbanplanning h6.title {
  padding: 5px;
  background-color: rgba(0, 111, 63, 0.2);
}
body#about .section05 .bgarea__gray-urbanplanning ul.list__square {
  margin-top: 15px;
  margin-left: 0.75em;
}
body#about .section05 .bgarea__gray-urbanplanning ul.list__square li {
  display: block;
}
body#about .section05 .bgarea__gray-urbanplanning ul.list__square li span {
  display: block;
  width: 100%;
  font-size: 12px;
}
body#about .section05 .bgarea__gray-urbanplanning p.text__note {
  padding-left: 2.5em;
  text-indent: -2.5em;
  line-height: 1.6;
}
body#about .section05 .bgarea__gray-urbanplanning p.text__note + p.text__note {
  margin-top: 0.15em;
}
body#about .section05 .bgarea__gray-urbanplanning h4 + h5 {
  margin-top: 30px;
}
body#about .section05 .bgarea__gray-urbanplanning h5 + p {
  margin-top: 15px;
}
body#about .section05 .bgarea__gray-urbanplanning .table-scroll + p {
  margin-top: 0.5em;
}
body#about .section05 .borderarea01 {
  display: flex;
  align-items: center;
  margin-top: 80px;
  padding: 3%;
}
body#about .section05 .borderarea01 dl {
  width: 26.571%;
}
body#about .section05 .borderarea01 dl dt {
  font-size: 16px;
  font-weight: 700;
}
body#about .section05 .borderarea01 dl dd {
  margin-top: 0.75em;
  line-height: 1.7;
}
body#about .section05 .borderarea01 ul {
  display: flex;
  width: 71.429%;
  margin-left: 2%;
}
body#about .section05 .borderarea01 ul li {
  width: 23.881%;
}
body#about .section05 .borderarea01 ul li + li {
  margin-left: 1.492%;
}
body#about .section05 .borderarea01 figcaption {
  margin-top: 0.5em;
}
body#about .section05 .borderarea02 {
  margin-top: 80px;
  padding: 3%;
}
body#about .section05 .borderarea02 dl dt {
  font-size: 16px;
  font-weight: 700;
}
body#about .section05 .borderarea02 dl dd {
  margin-top: 0.75em;
  line-height: 1.7;
}
body#about .section05 .borderarea02 ul.list__disc {
  margin-top: 1em;
}

/*----------------------------------------------------
	企業理念
----------------------------------------------------*/
body#philosophy figure.img {
  margin-top: 70px;
  text-align: center;
}

/*----------------------------------------------------
	会社概要
----------------------------------------------------*/
body#profile {
  /*.bgarea__lightgreen {
  	display: table;
  	margin: 40px auto 0;
  	padding: 20px 40px;
  	p.text { line-height: 1 }
  }*/
}
body#profile table.table02 {
  margin-top: 70px;
}
body#profile p.text__note {
  text-align: right;
  margin-top: 0.5em;
}

/*----------------------------------------------------
	沿 革
----------------------------------------------------*/
body#history .historyarea {
  margin-top: 80px;
}
body#history .historyarea .inner {
  position: relative;
  padding-bottom: 50px;
}
body#history .historyarea .inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 100%;
  border-left: 2px solid #006f3f;
}
body#history .historyarea .category {
  display: flex;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
  border-bottom: 1px solid #006f3f;
}
body#history .historyarea .category p.title {
  box-sizing: border-box;
  width: 50%;
  padding: 10px 20px 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #006f3f;
  line-height: 1;
}
body#history .historyarea dl {
  position: relative;
  z-index: 1;
  display: flex;
}
body#history .historyarea dl dt.age {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  order: 2;
  width: 130px;
}
body#history .historyarea dl dt.age span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  padding: 3px 0 4px;
  font-size: 25px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  background: #006f3f;
  border-radius: 4px;
}
body#history .historyarea dl dd {
  width: calc((100% - 130px) / 2);
}
body#history .historyarea dl dd.history {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
  order: 1;
}
body#history .historyarea dl dd.history p.text {
  width: 100%;
  padding-top: 0.15em;
  text-align: right;
  line-height: 1.4;
}
body#history .historyarea dl dd.history p.text:not(:first-child) {
  margin-top: 0.5em;
}
body#history .historyarea dl dd.history figure.img:not(:first-child) {
  margin-top: 1.25em;
}
body#history .historyarea dl dd.history figure.img figcaption {
  margin-top: 0.5em;
}
body#history .historyarea dl dd.event {
  order: 3;
}
body#history .historyarea dl dd.event p.text {
  display: flex;
  width: 100%;
  padding-top: 0.15em;
  /*padding-top: 0.25em;
  font-size: 14px;*/
  line-height: 1.4;
}
body#history .historyarea dl dd.event p.text:not(:first-child) {
  margin-top: 0.5em;
}
body#history .historyarea dl dd.event p.text span.date {
  white-space: nowrap;
}
body#history .historyarea dl + dl {
  margin-top: 20px;
}
body#history .historyarea p.text__current {
  margin-top: 1em;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #006f3f;
  line-height: 1;
}

/*----------------------------------------------------
	自動車道事業
----------------------------------------------------*/
body#expressway .titlearea {
  background-image: url("../../img/expressway/bg_title.jpg");
}
body#expressway .titlearea h1.title strong {
  width: 609px;
  height: 60px;
  background-image: url("../../img/expressway/title_expressway.svg");
}
body#expressway .section01 {
  margin-top: 80px;
}
body#expressway .section01 .maparea {
  max-width: 830px;
  margin: 40px auto 0;
}
body#expressway .section01 .maparea h4.title {
  color: #006f3f;
}
body#expressway .section01 .maparea ul.list__square li.yellow::before {
  color: #ffc000;
}
body#expressway .section01 .maparea ul.list__square li.gray::before {
  color: #bfbfbf;
}
body#expressway .section01 .maparea ul.list__square li.black::before {
  color: #000000;
}
body#expressway .section01 .maparea ul.list__square li + li {
  margin-top: 0.25em;
}
body#expressway .section01 .maparea .column {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
body#expressway .section01 .maparea .column .cell:first-child {
  width: 260px;
}
body#expressway .section01 .maparea .column .cell:last-child {
  width: calc(100% - 300px);
}
body#expressway .section01 .maparea figure.map01 img {
  box-sizing: border-box;
  border: 6px solid #006f3f;
  border-radius: 100vmax;
}
body#expressway .section01 .maparea .btn__border {
  width: 100%;
  margin-top: 30px;
}
body#expressway .section01 .maparea .btn__border a {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 10px 20px;
}
body#expressway .section01 .maparea figure.map01 + ul.list__square {
  display: table;
  margin: 15px auto 0;
}
body#expressway .section01 .maparea figure.map02 + ul.list__square {
  margin-top: 0.5em;
}
body#expressway .section01 .maparea .bgarea__gray {
  margin-top: 30px;
  padding: 30px;
}
body#expressway .section01 .maparea .bgarea__gray h5.title {
  line-height: 1.4;
}
body#expressway .section01 .maparea .bgarea__gray ul.list__disc {
  margin-top: 1em;
}
body#expressway .section01 .maparea .bgarea__gray ul.list__disc li + li {
  margin-top: 0.25em;
}
body#expressway .section02 ul.list__kome {
  margin-top: 1em;
}
body#expressway .inquiryarea {
  max-width: 1000px;
  margin: 100px auto 0;
  padding: 0 50px;
}
body#expressway .inquiryarea dl {
  color: #006f3f;
  line-height: 1;
}
body#expressway .inquiryarea dl dt {
  font-size: 16px;
  font-weight: 700;
}
body#expressway .inquiryarea dl dd {
  margin-top: 1em;
}
body#expressway .inquiryarea dl dd p.tel {
  font-family: "Outfit", sans-serif;
}
body#expressway .inquiryarea dl dd p.tel span {
  font-size: 20px;
  font-weight: 300;
}
body#expressway .inquiryarea dl dd p.tel strong {
  margin-left: 0.15em;
  font-size: 30px;
  font-weight: 300;
}
body#expressway .inquiryarea dl dd p.name {
  margin-top: 1em;
}
body#expressway .inquiryarea dl dd p.time {
  margin-top: 0.8em;
}

/*----------------------------------------------------
	不動産賃貸事業
----------------------------------------------------*/
body#realestate .titlearea {
  background-image: url("../../img/realestate/bg_title.jpg");
}
body#realestate .titlearea h1.title strong {
  width: 646px;
  background-image: url("../../img/realestate/title_realestate.svg");
}
body#realestate .section01 {
  margin-top: 80px;
}
body#realestate .section01 .column01 {
  display: flex;
  margin-top: 50px;
}
body#realestate .section01 .column01 .cell {
  width: 47%;
}
body#realestate .section01 .column01 .cell + .cell {
  margin-left: 6%;
}
body#realestate .section01 h4.title {
  display: table;
  margin: 0 auto;
  text-align: center;
  color: #006f3f;
}
body#realestate .section01 h4.title span {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #000;
}
body#realestate .section01 figure.img {
  display: table;
  margin: 25px auto 0;
}
body#realestate .section02 {
  padding: 60px 50px 77px;
  background: #f5f5f5;
}
body#realestate .section02 figure.maparea {
  position: relative;
  z-index: 1;
}
body#realestate .section02 ul.building__list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 0;
  margin-top: -80px;
  padding-top: 100px;
}
body#realestate .section02 ul.building__list li {
  width: 47%;
  margin-top: -100px;
  padding-top: 140px;
}
body#realestate .section02 ul.building__list li:nth-of-type(even) {
  margin-left: 6%;
}
body#realestate .section02 ul.building__list li .inner {
  width: 100%;
  height: 100%;
  background: #fff;
}
body#realestate .section02 ul.building__list li .column {
  display: flex;
}
body#realestate .section02 ul.building__list li .column .cell {
  box-sizing: border-box;
  width: 50%;
}
body#realestate .section02 ul.building__list li .column .cell:first-child {
  padding: 40px 10px 10px 0;
}
body#realestate .section02 ul.building__list li .column .cell:last-child {
  padding: 6px 6px 0 0;
}
body#realestate .section02 ul.building__list li p.name {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  position: relative;
  min-height: 55px;
  padding-left: 26px;
  font-weight: 700;
  color: #ff7c00;
  line-height: 1.3;
}
body#realestate .section02 ul.building__list li p.name::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  border-left: 5px solid #ff7c00;
}
body#realestate .section02 ul.building__list li p.name strong {
  display: block;
  width: 100%;
  margin-top: -0.15em;
  font-size: 22px;
}
body#realestate .section02 ul.building__list li p.name span {
  display: block;
  width: 100%;
  margin-top: 0.45em;
  font-size: 15px;
}
body#realestate .section02 ul.building__list li .btn__border {
  margin: 26px 0 0 26px;
}
body#realestate .section02 ul.building__list li dl.list__info {
  margin-top: 6px;
  padding: 20px;
  border-top: 2px solid #f5f5f5;
}
body#realestate .section02 ul.building__list li dl.list__info .group {
  display: flex;
}
body#realestate .section02 ul.building__list li dl.list__info .group + .group {
  margin-top: 0.5em;
}
body#realestate .section02 ul.building__list li dl.list__info dt {
  width: 4em;
}
body#realestate .section02 ul.building__list li dl.list__info dd {
  width: calc(100% - 4em);
}
@media (max-width: 1040px) {
  body#realestate .section02 ul.building__list {
    margin-top: -110px;
    padding-top: 130px;
  }
  body#realestate .section02 ul.building__list li {
    margin-top: -130px;
    padding-top: 170px;
  }
}
body#realestate .section02 .column02 {
  display: flex;
  margin-top: 100px;
}
body#realestate .section02 .column02 .cell {
  width: 22%;
}
body#realestate .section02 .column02 .cell + .cell {
  margin-left: 4%;
}
body#realestate .section03 .column03 {
  display: flex;
  margin-top: 52px;
}
body#realestate .section03 .column03 .cell {
  width: 30%;
}
body#realestate .section03 .column03 .cell + .cell {
  margin-left: 5%;
}

/*----------------------------------------------------
	テナント紹介
----------------------------------------------------*/
body#tenants .titlearea {
  background-color: transparent;
  background-image: url("../../img/tenants/bg_title.jpg");
}
body#tenants .titlearea h1.title strong {
  width: 263px;
  background-image: url("../../img/tenants/title_tenants.svg");
}
body#tenants .section {
  padding-top: 50px;
  padding-bottom: 120px;
  background: #f5f5f5;
}
body#tenants .section .bgarea__white {
  padding: 0 34px 30px;
  border-radius: 8px;
}
body#tenants .section .bgarea__white .column {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
body#tenants .section .bgarea__white .column .cell {
  margin: 25px 20px 0;
}
@media (max-width: 1098px) {
  body#tenants .section .bgarea__white h5.title {
    text-align: center;
  }
}
body#tenants .section .bgarea__white ul.nav__list {
  box-sizing: border-box;
  display: flex;
  margin-top: 15px;
  padding: 20px 30px 15px;
  pointer-events: auto;
  background: #f5f5f5;
  border-radius: 4px;
}
body#tenants .section .bgarea__white ul.nav__list li.nav__link a {
  display: block;
  position: relative;
  padding-bottom: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease;
}
body#tenants .section .bgarea__white ul.nav__list li.nav__link a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00873b;
  opacity: 0;
  transition: opacity 0.2s ease;
}
body#tenants .section .bgarea__white ul.nav__list li.nav__link a:hover {
  color: #006f3f;
}
body#tenants .section .bgarea__white ul.nav__list li.nav__link a:hover::after {
  opacity: 1;
}
body#tenants .section .bgarea__white ul.nav__list li.nav__link a.current {
  color: #006f3f;
}
body#tenants .section .bgarea__white ul.nav__list li.nav__link a.current::after {
  opacity: 1;
}
body#tenants .section .bgarea__white ul.nav__list li.nav__link + li.nav__link {
  margin-left: 20px;
  padding-left: 20px;
}
body#tenants .section .bgarea__white ul.nav__list li.nav__link + li.nav__link a::before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: -20px;
  width: 1px;
  height: 14px;
  border-left: 1px solid #d1d1d1;
}
body#tenants .section h2.title__border {
  margin-top: 40px;
}
body#tenants .section ul.building__list {
  display: flex;
  margin-top: 1em;
}
body#tenants .section ul.building__list li {
  white-space: nowrap;
}
body#tenants .section ul.tenants__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}
body#tenants .section ul.tenants__list li.tenants {
  box-sizing: border-box;
  width: 32%;
  margin-right: 2%;
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}
body#tenants .section ul.tenants__list li.tenants:nth-of-type(3n) {
  margin-right: 0;
}
body#tenants .section ul.tenants__list li.tenants:nth-of-type(n+4) {
  margin-top: 2%;
}
body#tenants .section ul.tenants__list li.tenants ul.list__category {
  display: flex;
}
body#tenants .section ul.tenants__list li.tenants ul.list__category li {
  padding: 5px 8px 7px;
  font-size: 12px;
  color: #fff;
  line-height: 1;
  border-radius: 4px;
}
body#tenants .section ul.tenants__list li.tenants ul.list__category li + li {
  margin-left: 5px;
}
body#tenants .section ul.tenants__list li.tenants ul.list__category li.ic__sc {
  background: #f88181;
}
body#tenants .section ul.tenants__list li.tenants ul.list__category li.ic_restaurant {
  background: #fbb226;
}
body#tenants .section ul.tenants__list li.tenants ul.list__category li.ic_productsales {
  background: #11b158;
}
body#tenants .section ul.tenants__list li.tenants ul.list__category li.ic_other {
  background: #9358d5;
}
body#tenants .section ul.tenants__list li.tenants figure.img {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 5px;
  border: 1px solid #e1e1e1;
}
body#tenants .section ul.tenants__list li.tenants h4.title {
  margin: 0.65em 2px 0;
  line-height: 1.3;
}
body#tenants .section ul.tenants__list li.tenants p.company {
  margin: 0.5em 2px 0;
  font-size: 12px;
}
body#tenants .section ul.tenants__list li.tenants p.type {
  position: relative;
  margin: 0.5em 2px 0;
  display: flex;
  padding-left: 40px;
  font-size: 12px;
  line-height: 1.3;
}
body#tenants .section ul.tenants__list li.tenants p.type span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 16px;
  padding: 1px 0 0 2px;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  background: url("../../img/tenants/bg_type.png") left top no-repeat;
  background-size: contain;
}
body#tenants .section ul.tenants__list li.tenants p.text {
  margin: 0.75em 2px 0;
  font-size: 14px;
  line-height: 1.7;
}
body#tenants .section ul.tenants__list li.tenants ul.list__building {
  display: flex;
  flex-wrap: wrap;
  margin: 1em 2px 0;
  padding: 11px 15px 14px;
  background: #f1f9f6;
}
body#tenants .section ul.tenants__list li.tenants ul.list__building li:last-child::after {
  content: none;
}
body#tenants .section ul.tenants__list li.tenants ul.list__building li::after {
  content: "/";
  padding: 0 0.5em;
  color: #000;
}
body#tenants .section ul.tenants__list li.tenants p.web {
  margin: 0.5em 2px 0;
}
body#tenants .section ul.tenants__list li.tenants p.web a {
  display: table;
  position: relative;
  padding-right: 20px;
}
body#tenants .section ul.tenants__list li.tenants p.web a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  right: 0;
  width: 12px;
  height: 10px;
  background-image: url("../img/ic_blank.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
body#tenants .section ul.building__list + ul.tenants__list {
  margin-top: 26px;
}
body#tenants footer.footer {
  margin-top: 0;
  border-top: none;
}

/*----------------------------------------------------
	交通アクセス
----------------------------------------------------*/
body#access .titlearea {
  background-image: url("../../img/access/bg_title.jpg");
}
body#access .titlearea h1.title strong {
  width: 232px;
  background-image: url("../../img/access/title_access.svg");
}
body#access .section01 {
  margin-top: 80px;
}
body#access .section01 .column01 {
  display: flex;
  justify-content: space-between;
}
body#access .section01 .column01 .cell:first-child {
  width: 36%;
}
body#access .section01 .column01 .cell:last-child {
  width: 58%;
}
body#access .section01 p.text {
  margin-top: 1.5em;
}
body#access .section01 .accessarea {
  margin-top: 25px;
  padding-top: 30px;
  border-top: 1px solid #e1e1e1;
}
body#access .section01 dl.list__access dt {
  margin-top: 25px;
  font-size: 16px;
  color: #006f3f;
}
body#access .section01 dl.list__access dd {
  margin-top: 5px;
}
body#access .section01 dl.list__access dd span {
  color: #0000dc;
  font-weight: 700;
}
body#access .section01 h5.title:not(:first-child) {
  margin-top: 70px;
}
body#access .section01 .column02 {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
body#access .section01 .column02 .cell {
  width: 30%;
}
body#access .section01 .column02 .cell + .cell {
  position: relative;
  margin-left: 5%;
}
body#access .section01 .column02 .cell + .cell::before {
  content: "";
  display: block;
  position: absolute;
  top: 83px;
  left: -30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent #0b8144;
}
@media (max-width: 1100px) {
  body#access .section01 .column02 .cell + .cell::before {
    top: 7.5456vw;
    left: -2.727vw;
    border-width: 1.363vw 0 1.363vw 1.363vw;
  }
}
body#access .section01 .maparea {
  margin-top: 60px;
}
body#access .section01 .maparea iframe {
  width: 100%;
  height: 400px;
}

/*----------------------------------------------------
	ニュース&トピックス
----------------------------------------------------*/
body#news .titlearea,
body#detail .titlearea {
  background-image: url("../../img/news/bg_title.jpg");
}
body#news .titlearea h1.title strong,
body#detail .titlearea h1.title strong {
  width: 462px;
  background-image: url("../../img/news/title_newstopics.svg");
}

body#news .section {
  margin-top: 80px;
}
body#news .pagenation {
  display: table;
  margin: 30px auto 0;
}
body#news .pagenation ul {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 0 75px;
}
body#news .pagenation ul li {
  width: 50px;
  height: 50px;
  font-size: 14px;
  line-height: 1;
}
body#news .pagenation ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #006f3f;
}
body#news .pagenation ul li.active {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
}
body#news .pagenation ul li.prev,
body#news .pagenation ul li.next {
  position: absolute;
  margin: 0;
}
body#news .pagenation ul li.prev {
  top: 0;
  left: 0;
}
body#news .pagenation ul li.next {
  top: 0;
  right: 0;
}

body#detail .section {
  margin-top: 60px;
}
body#detail ul.news__list {
  max-width: 1000px;
  margin: 0 auto;
  border-top: none;
}
body#detail ul.news__list li {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 25px;
}
body#detail ul.news__list li p.title {
  width: 100%;
  margin-top: 0.75em;
  text-decoration: none;
  font-size: 20px;
  line-height: 1.8;
}
body#detail .area__edit {
  margin-top: 40px;
}
body#detail .area__edit h1, body#detail .area__edit h2, body#detail .area__edit h3, body#detail .area__edit h3, body#detail .area__edit h4, body#detail .area__edit h5, body#detail .area__edit h6 {
  line-height: 1.8;
}
body#detail .area__edit h1:not(:first-child), body#detail .area__edit h2:not(:first-child), body#detail .area__edit h3:not(:first-child), body#detail .area__edit h3:not(:first-child), body#detail .area__edit h4:not(:first-child), body#detail .area__edit h5:not(:first-child), body#detail .area__edit h6:not(:first-child) {
  margin-top: 3em;
}
body#detail .area__edit h1 {
  font-size: 28px;
}
body#detail .area__edit h2 {
  font-size: 26px;
}
body#detail .area__edit h3 {
  font-size: 24px;
}
body#detail .area__edit h4 {
  font-size: 22px;
}
body#detail .area__edit h5 {
  font-size: 20px;
}
body#detail .area__edit h5 {
  font-size: 18px;
}
body#detail .area__edit p {
  font-size: 16px;
  line-height: 2.25;
}
body#detail .area__edit p:not(:first-child) {
  margin-top: 2.5em;
}
body#detail .area__edit p img {
  display: table;
  max-width: 100%;
  margin: 0 auto;
}
body#detail .area__edit p img.alignright {
  display: block;
  margin: 0 0 0 auto;
}
body#detail .area__edit p img.alignleft {
  display: block;
  margin: 0 auto 0 0;
}
body#detail .area__edit p img.aligncenter {
  display: block;
  margin: 0 auto;
}
body#detail .area__edit h1 + p,
body#detail .area__edit h2 + p,
body#detail .area__edit h3 + p,
body#detail .area__edit h4 + p,
body#detail .area__edit h5 + p,
body#detail .area__edit h6 + p {
  margin-top: 1em;
}
body#detail .btn__arrow {
  display: table;
  margin: 80px auto 0;
}

/* ======================================================
	フォーム
====================================================== */
body.form .titlearea,
body.confirmation .titlearea,
body.thanks .titlearea {
  padding: 0 30px;
  background-color: #006f3f;
}
body.form .titlearea::before,
body.confirmation .titlearea::before,
body.thanks .titlearea::before {
  content: none;
}
body.form .titlearea .inner,
body.confirmation .titlearea .inner,
body.thanks .titlearea .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  padding-top: 0;
}
body.form .titlearea h1.title,
body.confirmation .titlearea h1.title,
body.thanks .titlearea h1.title {
  font-size: 40px;
  font-weight: 400;
  color: #fff;
}
body.form .section,
body.confirmation .section,
body.thanks .section {
  margin-top: 80px;
}

/* 入力画面 ====================*/
body.form section.section p.text__lead {
  margin-bottom: 4em;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}
body.form section.section .block {
  max-width: 680px;
  margin: 0 auto;
}
body.form section.section dl.form dt {
  display: flex;
  align-items: center;
  height: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #006f3f;
  line-height: 1;
}
body.form section.section dl.form dt span.ic__required {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 20px;
  margin-left: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  background: #F43B59;
  border-radius: 4px;
}
body.form section.section dl.form dd {
  box-sizing: border-box;
  width: 100%;
  margin-top: 10px;
}
body.form section.section dl.form dd input[type=text],
body.form section.section dl.form dd input[type=tel] {
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  padding: 10px 15px;
  font-size: 16px;
  background: #fff;
  border: 1px solid #e1e1e1;
}
body.form section.section dl.form dd input[type=text]::-moz-placeholder, body.form section.section dl.form dd input[type=tel]::-moz-placeholder {
  color: #ccc;
}
body.form section.section dl.form dd input[type=text]::placeholder,
body.form section.section dl.form dd input[type=tel]::placeholder {
  color: #ccc;
}
body.form section.section dl.form dd textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 10px 8px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  line-height: 1.7;
  overflow-wrap: break-word;
  border: 1px solid #e1e1e1;
}
body.form section.section dl.form dd textarea::-moz-placeholder {
  color: #ccc;
}
body.form section.section dl.form dd textarea::placeholder {
  color: #ccc;
}
body.form section.section dl.form dd span.error {
  width: 100%;
  margin-top: 5px;
  font-size: 14px;
  color: #cd1a00;
}
body.form section.section dl.form dd.checkbox {
  margin-top: 0;
}
body.form section.section dl.form dd.checkbox > span {
  display: block;
  margin: 20px 30px 0 0;
}
body.form section.section dl.form dd.checkbox > span label {
  display: block;
  height: 100%;
  position: relative;
  cursor: pointer;
}
body.form section.section dl.form dd.checkbox > span input[type=checkbox] {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
}
body.form section.section dl.form dd.checkbox > span input[type=checkbox] + span {
  display: flex;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1;
}
body.form section.section dl.form dd.checkbox > span input[type=checkbox] + span::before {
  content: "";
  box-sizing: border-box;
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #006f3f;
  background: #fff;
}
body.form section.section dl.form dd.checkbox > span input[type=checkbox]:checked + span::before {
  background: #006f3f;
}
body.form section.section dl.form dd.checkbox > span input[type=checkbox]:checked + span:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 6px;
  width: 4px;
  height: 7px;
  transform: rotate(45deg);
  border: 2px solid transparent;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
body.form section.section dl.form dd.checkbox span.error {
  margin-top: 5px;
}
body.form section.section dl.form + dl.form {
  margin-top: 30px;
}
body.form section.section div.checkbox {
  margin-top: 60px;
}
body.form section.section div.checkbox dl.form dd.text {
  display: none;
}
body.form section.section div.personal {
  margin-top: 60px;
}
body.form section.section div.personal h3.title {
  font-size: 16px;
  font-weight: 700;
  color: #006f3f;
  line-height: 1;
}
body.form section.section div.personal .scroll {
  overflow-y: scroll;
  height: 10em;
  margin-top: 15px;
  border: 1px solid #e1e1e1;
}
body.form section.section div.personal .scroll .scroll__inner {
  padding: 1.5em;
}
body.form section.section div.personal .scroll h4.title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
body.form section.section div.personal .scroll p.text {
  margin-top: 0.5em;
  font-size: 12px;
}
body.form section.section div.personal .scroll p.text + h4.title {
  margin-top: 1em;
}
body.form section.section div.personal p.checkbox {
  display: table;
  margin: 30px auto 0;
}
body.form section.section div.personal p.checkbox > span {
  display: block;
}
body.form section.section div.personal p.checkbox > span label {
  display: block;
  height: 100%;
  position: relative;
  cursor: pointer;
}
body.form section.section div.personal p.checkbox > span input[type=checkbox] {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
}
body.form section.section div.personal p.checkbox > span input[type=checkbox] + span {
  display: flex;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1;
}
body.form section.section div.personal p.checkbox > span input[type=checkbox] + span::before {
  content: "";
  box-sizing: border-box;
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #006f3f;
  background: #fff;
}
body.form section.section div.personal p.checkbox > span input[type=checkbox]:checked + span::before {
  background: #006f3f;
}
body.form section.section div.personal p.checkbox > span input[type=checkbox]:checked + span:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 6px;
  width: 4px;
  height: 7px;
  transform: rotate(45deg);
  border: 2px solid transparent;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
body.form section.section div.personal p.checkbox span.error {
  width: 100%;
  margin-top: 5px;
  text-align: center;
  font-size: 14px;
  color: #cd1a00;
}
body.form section.section .submit {
  margin-top: 80px;
}
body.form section.section .submit .btn__area {
  display: flex;
  justify-content: center;
  margin: 30px auto 0;
}
body.form section.section .submit .btn__area button.btn__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 50px;
  margin: 0 1em;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  background-color: #006f3f;
  border-radius: 100vmax;
  transition: all 0.2s;
  cursor: pointer;
}
body.form section.section .submit .btn__area button.btn__submit:hover {
  opacity: 0.8;
}

/* 確認画面 ====================*/
body.confirmation section.section p.text__lead {
  margin-bottom: 4em;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}
body.confirmation section.section dl.form dt span.ic__required {
  display: none;
}
body.confirmation section.section dl.form dd,
body.confirmation section.section dl.form dd.checkbox {
  min-height: 50px;
  margin-top: 10px;
  padding: 12px 15px 14px;
  font-size: 16px;
  overflow-wrap: break-word;
  background: rgba(225, 225, 225, 0.3);
  border-bottom: none;
}
body.confirmation section.section dl.con__none {
  display: none;
}
body.confirmation section.section div.checkbox dl.form dd.checkbox {
  display: none;
}
body.confirmation section.section div.checkbox dl.form dd.text {
  display: block;
}
body.confirmation section.section div.personal {
  display: none;
}

/* 完了画面 ====================*/
body.thanks section.section h3.title,
body.thanks section.section p.text {
  text-align: center;
}
body.thanks section.section .btn__arrow {
  display: table;
  margin: 40px auto 0;
}

/*----------------------------------------------------
	KK線再生に向けた取組み
----------------------------------------------------*/
body#project .titlearea {
  padding: 0 30px;
  background-image: url("../../img/project/bg_title.jpg");
}
body#project .titlearea h1.title strong {
  font-size: 56px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}
body#project .section {
  margin-top: 80px;
}
body#project .section figure.img {
  position: relative;
  display: table;
  margin: 0 auto;
}
body#project .section figure.img:not(:first-child) {
  margin-top: 25px;
}
body#project .section figure.img.--dummy {
  position: relative;
}
body#project .section figure.img.--dummy::after {
  content: "ダミー画像";
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 2.5em;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  color: red;
}
body#project .section figure.img.--dummy img {
  position: relative;
  z-index: 0;
}
body#project .section .btn__border,
body#project .section .btn__border-blank {
  display: table;
  margin: 30px auto 0;
}
body#project .section .btn__border a,
body#project .section .btn__border-blank a {
  padding-left: 20px;
}
body#project .section .bgarea__gray {
  display: table;
  margin: 30px auto 0;
  padding: 40px;
}/*# sourceMappingURL=pc.css.map */