@charset "UTF-8";
/*----------------------------------------------------
	基本設定
----------------------------------------------------*/
body {
  font-size: 3.73vw;
  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: underline;
}
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: 2.66vw;
  height: 3.2vw;
  background: url("../img/ic_pdf.svg") left top no-repeat;
}

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

sup {
  font-size: 2.66vw;
  vertical-align: top;
}

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

.pc {
  display: none !important;
}

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

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

.anchor {
  margin-top: -30vw;
  padding-top: 30vw;
}

/*----------------------------------------------------
	wrapper
----------------------------------------------------*/
.wrapper {
  overflow: hidden;
  position: relative;
  padding-top: 16vw;
}

/*----------------------------------------------------
	header
----------------------------------------------------*/
header.header {
  box-sizing: border-box;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  /* メニュー ====================*/
}
header.header a {
  text-decoration: none;
}
header.header > .inner {
  position: relative;
  height: 16vw;
  background: #fff;
}
header.header > .inner::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 16vw;
  background: #fff;
}
header.header .header__title {
  position: absolute;
  z-index: 100;
  top: 3.33vw;
  left: 4.26vw;
  width: 51.6vw;
  height: 9.33vw;
  background: url("../img/logo_sp.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: block;
  position: absolute;
  z-index: 100;
  top: 5.33vw;
  right: 5.6vw;
  width: 8vw;
  height: 4.8vw;
  cursor: pointer;
}
header.header .btn__menu span {
  display: block;
  position: absolute;
  top: 2.13vw;
  left: 0;
  width: 8vw;
  height: 0.53vw;
  background: #006f3f;
  transition: all 0.2s;
}
header.header .btn__menu span:nth-child(1) {
  transform: translateY(-2.13vw);
}
header.header .btn__menu span:nth-child(2) {
  opacity: 1;
}
header.header .btn__menu span:nth-child(3) {
  transform: translateY(2.13vw);
}
header.header .btn__menu.open span:nth-child(1) {
  transform: rotate(-45deg) translateY(0px);
}
header.header .btn__menu.open span:nth-child(2) {
  opacity: 0;
}
header.header .btn__menu.open span:nth-child(3) {
  transform: rotate(45deg) translateY(0px);
}
header.header .navigation {
  box-sizing: border-box;
  overflow-y: auto;
  position: fixed;
  z-index: 98;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 16vw 0 14.66vw;
  background: #006f3f;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
header.header .navigation ul.nav__list {
  border-top: 1px solid #005530;
}
header.header .navigation ul.nav__list li.nav__link {
  border-bottom: 1px solid #005530;
}
header.header .navigation ul.nav__list li.nav__link > a {
  box-sizing: border-box;
  position: relative;
  display: block;
  padding: 5.33vw 4.93vw;
  text-align: left;
  text-decoration: none;
  font-size: 4.8vw;
  color: #fff;
  line-height: 1;
}
header.header .navigation ul.nav__list li.nav__dropdown > a {
  padding-bottom: 3.33vw;
}
header.header .navigation .dropdown__contents {
  padding-bottom: 3.33vw;
}
header.header .navigation .dropdown__contents p.dropdown__title {
  display: none;
}
header.header .navigation .dropdown__contents ul {
  padding: 0 5.2vw;
}
header.header .navigation .dropdown__contents ul li > a {
  display: block;
  position: relative;
  padding: 2vw 4.26vw;
  font-size: 4vw;
  color: #fff;
}
header.header .navigation .dropdown__contents ul li > a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.13vw;
  height: 1px;
  background: #fff;
}
header.header .navigation.open {
  opacity: 1;
  pointer-events: auto;
}

/*----------------------------------------------------
	pagetop
----------------------------------------------------*/
.pagetop {
  display: none;
  position: fixed;
  z-index: 98;
  right: 4.26vw;
  padding-bottom: 4.26vw;
}
.pagetop a {
  display: block;
  width: 12vw;
  height: 12vw;
  background-color: #006f3f;
  background-image: url("../img/pagetop.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
}
.pagetop a span {
  opacity: 0;
}

/*----------------------------------------------------
	footer
----------------------------------------------------*/
footer.footer {
  margin-top: 16vw;
  border-top: 1px solid #e1e1e1;
}
footer.footer .footer__top .footer__title {
  width: 66.4vw;
  height: 12vw;
  margin: 10.66vw auto 0;
  background: url("../img/logo_sp.png") left center no-repeat;
  background-size: contain;
}
footer.footer .footer__top .footer__title a {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
}
footer.footer .footer__top p.text {
  margin-top: 6.66vw;
  text-align: center;
  font-size: 3.73vw;
}
footer.footer .footer__top ul.nav__list li.nav__link {
  position: relative;
  border-bottom: 1px solid #e1e1e1;
  background-position: left 4.26vw center;
  background-repeat: no-repeat;
  background-size: 10.66vw 10.66vw;
}
footer.footer .footer__top ul.nav__list li.nav__link a {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 5.33vw 4.26vw;
  text-decoration: none;
  font-size: 4.26vw;
  color: #000;
  line-height: 1;
}
footer.footer .footer__top .btn__data {
  display: table;
  margin: 10.66vw auto 0;
}
footer.footer .footer__top .btn__data a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 81.6vw;
  height: 14.66vw;
  text-decoration: none;
  font-size: 4.26vw;
  color: #000;
  line-height: 1;
  border: 1px solid #e1e1e1;
}
footer.footer .footer__bottom {
  margin-top: 9.33vw;
  padding: 8.66vw 4.26vw 8vw;
  background: #006f3f;
}
footer.footer .footer__bottom ul.nav__list {
  display: flex;
  justify-content: center;
}
footer.footer .footer__bottom ul.nav__list li a {
  color: #fff;
  line-height: 1;
}
footer.footer .footer__bottom ul.nav__list li + li {
  margin-left: 13.33vw;
}
footer.footer .footer__bottom p.copyright {
  margin-top: 6.66vw;
  text-align: center;
  color: #fff;
  line-height: 1;
}

/*----------------------------------------------------
	共通
----------------------------------------------------*/
.titlearea {
  position: relative;
  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: 40vw;
  padding: 0 4.26vw;
  padding-top: 12.8vw;
}
.titlearea h1.title {
  text-align: center;
}
.titlearea h1.title strong {
  display: block;
  height: 7.86vw;
  margin: 0 auto;
  color: transparent;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
.titlearea h1.title span {
  display: block;
  margin-top: 2.66vw;
  font-size: 3.73vw;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.section {
  padding: 0 4.26vw;
}

.section + .section {
  margin-top: 13.33vw;
}

.nav__bottom {
  margin-top: 16vw;
  padding: 0 4.26vw;
}
.nav__bottom ul.nav__list {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  pointer-events: auto;
}
.nav__bottom ul.nav__list li.nav__link {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  width: 50%;
  padding-bottom: 2.13vw;
}
.nav__bottom ul.nav__list li.nav__link:nth-of-type(odd) {
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
}
.nav__bottom ul.nav__list li.nav__link:nth-of-type(even) {
  border-right: 1px solid #e1e1e1;
}
.nav__bottom ul.nav__list li.nav__link:nth-of-type(n+3) {
  margin-top: 5.33vw;
}
.nav__bottom ul.nav__list li.nav__link a {
  box-sizing: border-box;
  display: table;
  position: relative;
  padding: 3.73vw 0 2.4vw;
  text-decoration: none;
  font-size: 4.26vw;
  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: 0.6vw;
  background: #00873b;
  opacity: 0;
}

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::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: 32vw;
  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: 6.4vw;
  font-weight: 400;
  color: #fff;
}
body#data .section,
body#terms .section,
body#sitemap .section,
body#notfound .section {
  margin-top: 13.33vw;
}

/*----------------------------------------------------
	ニュース&トピックス リスト
----------------------------------------------------*/
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: 5.33vw 0 3.6vw;
  text-decoration: none;
  color: #000000;
  line-height: 1;
}
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: 24vw;
  font-size: 3.73vw;
}
ul.news__list li p.cat {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26.66vw;
  min-height: 5.6vw;
  padding: 1.06vw 1.33vw 1.33vw;
  font-size: 3.2vw;
  color: #fff;
  background: #646464;
  border-radius: 1.06vw;
}
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 ul.download__list {
  margin-top: 40px;
  border-top: 1px solid #e1e1e1;
}
body#data ul.download__list li {
  display: flex;
  margin-top: 5vw;
  padding-bottom: 5.33vw;
  border-bottom: 1px solid #e1e1e1;
}
body#data ul.download__list li::before {
  margin-right: 0.5em;
  font-size: 4.8vw;
  font-weight: 700;
  color: #006f3f;
  line-height: 1.3;
}
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: 5.33vw;
  color: #006f3f;
  line-height: 1.3;
}
body#data ul.download__list li a strong {
  font-size: 4.8vw;
  font-weight: 700;
}
body#data ul.download__list li a::before {
  content: "";
  display: block;
  position: absolute;
  top: 1vw;
  left: 0;
  width: 3.73vw;
  height: 4.53vw;
  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 .section,
body#terms p.text + h2.title__line {
  margin-top: 13.33vw;
}
body#terms h3.title {
  margin-top: 1.5em;
}
body#terms h3.title + p.text {
  margin-top: 0.75em;
}

/*----------------------------------------------------
	サイトマップ
----------------------------------------------------*/
body#sitemap .section {
  margin-top: 8vw;
}
body#sitemap ul.sitemap__list {
  border-top: 1px solid #e1e1e1;
}
body#sitemap ul.sitemap__list li.sitemap__link {
  margin-top: 5.33vw;
  padding-bottom: 5.33vw;
  border-bottom: 1px solid #e1e1e1;
}
body#sitemap ul.sitemap__list li.sitemap__link > a {
  box-sizing: border-box;
  position: relative;
  display: block;
  text-align: left;
  text-decoration: none;
  font-size: 4.8vw;
  font-weight: 700;
  color: #006f3f;
  line-height: 1;
}
body#sitemap ul.sitemap__list li.sitemap__link ul {
  margin-top: 5.33vw;
}
body#sitemap ul.sitemap__list li.sitemap__link ul li > a {
  display: block;
  position: relative;
  padding: 0 4.26vw;
  font-size: 4vw;
  color: #006f3f;
}
body#sitemap ul.sitemap__list li.sitemap__link ul li > a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.13vw;
  height: 1px;
  background: #006f3f;
}
body#sitemap ul.sitemap__list li.sitemap__link ul li + li {
  margin-top: 4vw;
}
body#sitemap ul.sub__list {
  margin-top: 10.66vw;
}
body#sitemap ul.sub__list li a {
  display: block;
  font-size: 4vw;
  color: #006f3f;
  line-height: 1;
}
body#sitemap ul.sub__list li + li {
  margin-top: 8vw;
}

/*----------------------------------------------------
	404 Not Found.
----------------------------------------------------*/
body#notfound .section {
  padding-top: 8vw;
}
body#notfound .section h4.title {
  margin-top: 2em;
  text-align: center;
}
body#notfound .section p.text {
  margin-top: 1em;
  text-align: center;
}
body#notfound .section .btn__arrow {
  display: table;
  margin: 8vw auto 0;
}

/* パスワード保護 ====================*/
.area__password {
  padding: 8vw 5.33vw 13vw;
  background: #fff;
  border-radius: 2.66vw;
}
.area__password p.text {
  margin-top: 2.4vw;
  text-align: center;
  font-size: 3.73vw;
  line-height: 1.5;
}
.area__password form {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4vw;
}
.area__password input[type=password] {
  box-sizing: border-box;
  width: 55%;
  height: 12vw;
  padding: 2.66vw 4vw;
  text-align: center;
  font-size: 6vw;
  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;
  width: 45%;
  height: 12vw;
  padding: 3vw;
  text-align: center;
  text-decoration: none;
  font-size: 4vw;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  background-color: #006f3f;
  cursor: pointer;
}

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

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

h2.title__line {
  position: relative;
  padding-top: 5.33vw;
  font-size: 4.8vw;
  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: 26.66vw;
  height: 1.06vw;
  border-top: 1.06vw solid #006f3f;
}

h2.title__border {
  padding-bottom: 3.2vw;
  font-size: 6.4vw;
  font-weight: 700;
  color: #006f3f;
  line-height: 1;
  border-bottom: 1px solid #006f3f;
}
h2.title__border span {
  font-size: 5.33vw;
  font-weight: 400;
}

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

h4.title {
  font-size: 4.8vw;
  line-height: 1;
}

h4.title__bg {
  position: relative;
  padding: 0 4vw;
}
h4.title__bg::before, h4.title__bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 4vw;
  height: 8.93vw;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
h4.title__bg::before {
  left: 0;
  background-image: url("../img/bg_h3_left_sp.png");
}
h4.title__bg::after {
  right: 0;
  background-image: url("../img/bg_h3_right_sp.png");
}
h4.title__bg span {
  display: block;
  height: 8.93vw;
  text-align: center;
  font-size: 4.4vw;
  line-height: 1;
  background: #fff;
}

h5.title {
  font-size: 4.26vw;
  line-height: 1;
}

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

p.text__lead {
  font-size: 5.06vw;
  font-weight: 700;
  line-height: 1.6;
}

p.text__note {
  font-size: 3.2vw;
  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: 3.2vw;
}

/*----------------------------------------------------
	table
----------------------------------------------------*/
table.table01 {
  width: 100%;
}
table.table01 thead {
  display: none;
}
table.table01 tr {
  display: block;
}
table.table01 th,
table.table01 td {
  display: block;
  border-bottom: 1px solid #e1e1e1;
}
table.table01 th {
  padding: 2.66vw 3.46vw;
  text-align: left;
  background: #ffffff;
}
table.table01 td {
  padding: 2.66vw 6.66vw;
}
table.table01 td:nth-of-type(1)::before {
  content: "竣工";
  display: inline-block;
  width: 7em;
}
table.table01 td:nth-of-type(2)::before {
  content: "主なテナント";
  display: inline-block;
  width: 7em;
}

table.table02 {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
}
table.table02 th,
table.table02 td {
  display: block;
  line-height: 2;
}
table.table02 th {
  padding: 2.66vw 4vw;
  text-align: left;
  font-weight: 400;
  background-color: #f5f5f5;
  border-top: 1px solid #e1e1e1;
}
table.table02 td {
  padding: 3vw 4vw;
}
table.table02 td a {
  text-decoration: none;
}

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: 2.66vw;
  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: 2.66vw;
  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;
}
.btn__arrow a {
  box-sizing: border-box;
  display: table;
  position: relative;
  width: 58.93vw;
  height: 12.8vw;
  padding: 2.66vw 12vw 0 0;
  text-decoration: none;
  font-size: 4.26vw;
  font-weight: 700;
  color: #006f3f;
  line-height: 1;
  border-bottom: 1px solid #006f3f;
}
.btn__arrow a::before {
  content: "";
  box-sizing: border-box;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 9.86vw;
  height: 9.86vw;
  background: #006f3f;
  border-radius: 50%;
}
.btn__arrow a::after {
  content: "";
  display: block;
  position: absolute;
  top: 3.7vw;
  right: 4vw;
  width: 2.13vw;
  height: 2.13vw;
  border-top: 0.4vw solid #fff;
  border-right: 0.4vw solid #fff;
  transform: rotate(45deg);
}

.btn__border a {
  box-sizing: border-box;
  display: table;
  position: relative;
  padding: 1.8vw 6vw 2.33vw 4vw;
  text-decoration: none;
  color: #006f3f;
  border: 1px solid #c8c8c8;
  border-radius: 6px;
}
.btn__border a::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 0.8vw);
  right: 2.93vw;
  width: 1.33vw;
  height: 1.33vw;
  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: 1.8vw 8vw 2.33vw 4vw;
  text-decoration: none;
  color: #006f3f;
  border: 1px solid #c8c8c8;
  border-radius: 6px;
}
.btn__border-blank a::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 1.33vw);
  right: 11px;
  width: 3.2vw;
  height: 2.66vw;
  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: 100vh;
  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: 4vw 5.6vw;
}
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: 6.4vw;
  height: 0.4vw;
  margin: 0;
  pointer-events: none;
  background: #dcdcdc;
  border-radius: 0;
  opacity: 1;
}
body.home .mainvisual .pagination .swiper-pagination span.swiper-pagination-bullet-active {
  background: #006f3f;
}
body.home .mainvisual .pagination .swiper-pagination span + span {
  margin-left: 5.33vw;
}
@keyframes scroll {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
body.home .mainvisual .scroll {
  position: absolute;
  left: 5.33vw;
  bottom: 5.33vw;
  width: 23.46vw;
  height: 23.46vw;
  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;
  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;
  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% - 40.8vw);
  left: calc(50% - 33.33vw);
  width: 66.66vw;
}
body.home .mainvisual .block p.logo {
  display: table;
  margin: 0 auto;
}
body.home .mainvisual .block p.logo img {
  width: 53.33vw;
  height: 29.2vw;
}
body.home .mainvisual .block p.text {
  margin-top: 8vw;
  padding: 6vw 0;
  text-align: center;
  font-size: 4vw;
  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: 24vw;
  padding: 0 3vw;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
}
body.home .mainvisual .block__text p.title {
  width: 100%;
  font-size: 3.2vw;
  font-weight: 700;
}
body.home .mainvisual .block__text p.text {
  width: 100%;
  font-size: 3vw;
  line-height: 1.6;
}
body.home .mainvisual .block__text p.text a {
  display: table;
  margin: 0 auto;
}
body.home .section__about {
  position: relative;
  z-index: 0;
  margin-top: -16vw;
  padding: 32vw 4.26vw 0;
}
body.home .section__about .column {
  display: flex;
  flex-direction: column;
}
body.home .section__about .column .cell {
  display: contents;
}
body.home .section__about .column .inner {
  display: contents;
}
body.home .section__about h2.title {
  order: 1;
  text-align: left;
}
body.home .section__about h2.title strong {
  display: block;
  width: 32.53vw;
  height: 8.13vw;
  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: 5.33vw;
  font-size: 4.26vw;
  font-weight: 400;
  color: #006f3f;
  line-height: 1;
}
body.home .section__about p.text__lead {
  order: 2;
  margin-top: 9vw;
  font-size: 5.33vw;
  font-weight: 700;
  line-height: 1.76;
}
body.home .section__about p.text {
  order: 3;
  margin-top: 4vw;
  font-size: 4.26vw;
  line-height: 2;
}
body.home .section__about .btn__arrow {
  order: 4;
  margin: 10.66vw auto 0;
}
body.home .section__business {
  margin-top: 16vw;
}
body.home .section__business .column .cell {
  box-sizing: border-box;
  position: relative;
  height: 73.33vw;
}
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;
}
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;
}
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: 7vw;
}
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;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 4.26vw;
  text-align: center;
  text-decoration: none;
  color: #fff;
}
body.home .section__business a::before {
  content: "";
  display: block;
  position: absolute;
  right: 4.26vw;
  bottom: 4.26vw;
  width: 9.86vw;
  height: 9.86vw;
  border: 1px solid #fff;
  border-radius: 50%;
}
body.home .section__business a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 8.2vw;
  right: 8.8vw;
  width: 2.13vw;
  height: 2.13vw;
  border-top: 0.4vw solid #fff;
  border-right: 0.4vw solid #fff;
  transform: rotate(45deg);
}
body.home .section__business h2.title {
  margin: 0 auto;
}
body.home .section__business h2.title strong {
  display: block;
  font-size: 8vw;
  font-weight: 300;
  line-height: 1.2;
}
body.home .section__business h2.title span {
  display: block;
  margin-top: 4vw;
  font-size: 4.26vw;
  font-weight: 400;
  line-height: 1;
}
body.home .section__business p.text {
  margin-top: 8vw;
  font-size: 3.73vw;
  line-height: 2;
}
body.home .section__tenants {
  position: relative;
  margin-top: 16vw;
  padding: 0 4.26vw 24vw;
}
body.home .section__tenants h2.title {
  text-align: left;
}
body.home .section__tenants h2.title strong {
  display: block;
  width: 37.46vw;
  height: 8vw;
  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: 4vw;
  font-size: 4.26vw;
  font-weight: 400;
  color: #006f3f;
  line-height: 1;
}
body.home .section__tenants p.text {
  margin-top: 8vw;
  font-size: 4.26vw;
  line-height: 2;
}
body.home .section__tenants ul.tenants__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8.8vw;
}
body.home .section__tenants ul.tenants__list li {
  box-sizing: border-box;
  width: calc((100% - 2vw) / 2);
}
body.home .section__tenants ul.tenants__list li:nth-child(even) {
  margin-left: 2vw;
}
body.home .section__tenants ul.tenants__list li:nth-child(n+3) {
  margin-top: 2vw;
}
body.home .section__tenants ul.tenants__list li img {
  width: 100%;
}
body.home .section__tenants .btn__arrow {
  position: absolute;
  bottom: 0;
  left: calc(50% - 29.46vw);
}
body.home .section__news {
  position: relative;
  margin-top: 16vw;
  padding: 16vw 4.26vw 40vw;
  background: #f5f5f5;
}
body.home .section__news h2.title {
  text-align: left;
}
body.home .section__news h2.title strong {
  display: block;
  width: 75.33vw;
  height: 9.73vw;
  color: transparent;
  background: url("../../img/home/title_newstopics_sp.svg") left top no-repeat;
  background-size: contain;
}
body.home .section__news h2.title span {
  display: block;
  margin-top: 4vw;
  font-size: 4.26vw;
  font-weight: 400;
  color: #006f3f;
  line-height: 1;
}
body.home .section__news ul.news__list {
  margin-top: 10.66vw;
}
body.home .section__news .btn__arrow {
  position: absolute;
  bottom: 16vw;
  left: calc(50% - 29.46vw);
}
body.home .bnrarea {
  margin-top: 16vw;
  padding: 0 4.26vw;
}
body.home .bnrarea ul.bnr__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
body.home .bnrarea ul.bnr__list li {
  width: calc((100% - 2.66vw) / 2);
  margin-right: 2.6vw;
}
body.home .bnrarea ul.bnr__list li:nth-of-type(2n) {
  margin-right: 0;
}
body.home .bnrarea ul.bnr__list li:nth-of-type(n+3) {
  margin-top: 2.6vw;
}
body.home .bnrarea ul.bnr__list li a {
  box-sizing: border-box;
  display: block;
  border: 1px solid #e1e1e1;
}

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

body.home.--block {
  /*.mainvisual {
  	.block { top: 29vw; }
  	/*.bnr__kkproject { top: 4vw; }
  }*/
}
body.home.--block .btn__regulation {
  width: 100%;
  height: 13.33vw;
}
body.home.--block .btn__regulation a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 4.8vw;
  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: 10.66vw;
}
body.home.--block .btn__regulation a span::before {
  content: "";
  display: block;
  position: absolute;
  top: 3.33vw;
  right: 0;
  width: 6.66vw;
  height: 6.66vw;
  background: #fff;
  border-radius: 100%;
}
body.home.--block .btn__regulation a span::after {
  content: "";
  display: block;
  position: absolute;
  top: 5vw;
  right: 2.1vw;
  width: 2vw;
  height: 2vw;
  border-top: 0.4vw solid #006f3f;
  border-right: 0.4vw solid #006f3f;
  transform: rotate(135deg);
}
body.home.--block .regulation {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: -16vw;
  padding: 16vw 0 1px;
}
body.home.--block .regulation .inner {
  padding: 5.33vw 4.26vw;
  background: #006f3f;
}
body.home.--block .regulation h2.title {
  display: block;
  height: 7.2vw;
  padding: 0.15em 0 0 11.06vw;
  text-align: left;
  box-sizing: border-box;
  font-size: 4.8vw;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  background: url("../../img/home/ic_exclamation.png") left top no-repeat;
  background-size: contain;
}
body.home.--block .regulation ul.textarea {
  box-sizing: border-box;
  margin-top: 2.66vw;
  padding: 4vw 5.33vw;
  background: #fff;
  border-radius: 1.6vw;
}
body.home.--block .regulation ul.textarea li {
  font-size: 4.26vw;
  line-height: 1.8;
}
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 {
  z-index: 0;
  background-image: url("../../img/about/bg_title_sp.jpg");
}
body#about .titlearea .inner,
body#philosophy .titlearea .inner,
body#profile .titlearea .inner,
body#history .titlearea .inner {
  background: url("../img/bg_title_sp.png") center bottom no-repeat;
  background-size: contain;
  border-bottom: 1px solid #fff;
}
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: 26.13vw;
  background-image: url("../../img/about/title_about.svg");
}

/*----------------------------------------------------
	当社について
----------------------------------------------------*/
body#about p.text__lead {
  margin-top: 10vw;
  text-align: center;
}
body#about .column01 .cell + .cell {
  margin-top: 6.66vw;
}
body#about .section01 {
  position: relative;
  z-index: 1;
  margin-top: -2px;
  background: #fff;
}
body#about .section04 .bgarea__gray {
  margin-top: 9.33vw;
  padding: 0 6.66vw 6.66vw;
}
body#about .section04 .bgarea__gray .column02 {
  margin-top: 6.66vw;
}
body#about .section04 .bgarea__gray .column02 .cell + .cell {
  position: relative;
  margin-top: 13.33vw;
}
body#about .section04 .bgarea__gray .column02 .cell + .cell::before {
  content: "";
  display: block;
  position: absolute;
  top: -10.93vw;
  left: calc(50% - 4.8vw);
  width: 9.6vw;
  height: 8.53vw;
  background: url("../img/ic_arrow_sp.png") left center no-repeat;
  background-size: contain;
}
body#about .section05 {
  margin-top: 16vw;
}
body#about .section05 .column01 {
  margin-top: 13.33vw;
}
body#about .section05 .column03 {
  margin-top: 8vw;
}
body#about .section05 .column03 .cell + .cell {
  margin-top: 5.33vw;
}
body#about .section05 .bgarea__gray {
  margin-top: 10.66vw;
  padding: 0 4.26vw 8vw;
}
body#about .section05 .bgarea__gray ul.list__circle {
  margin-top: 8vw;
}
body#about .section05 .bgarea__gray .column05 {
  margin-top: 8vw;
}
body#about .section05 .bgarea__gray .btn__border {
  display: table;
  margin: 2em auto 0;
  font-size: 4.26vw;
}
body#about .section05 .bgarea__gray .btn__border a {
  background: #fff;
}
body#about .section05 .bgarea__gray-urbanplanning p.text-scroll {
  margin-top: 4vw;
  font-size: 3.2vw;
}
body#about .section05 .bgarea__gray-urbanplanning .table-scroll {
  overflow: auto;
  margin-top: 2vw;
}
body#about .section05 .bgarea__gray-urbanplanning .table-scroll table.table03 {
  width: 940px;
}
body#about .section05 .bgarea__gray-urbanplanning .column06 {
  margin-top: 4vw;
}
body#about .section05 .bgarea__gray-urbanplanning .column06 .cell + .cell {
  margin-top: 4vw;
}
body#about .section05 .bgarea__gray-urbanplanning .column06 + .column06 {
  margin-top: 8vw;
}
body#about .section05 .bgarea__gray-urbanplanning h6.title {
  padding: 2vw;
  background-color: rgba(0, 111, 63, 0.2);
}
body#about .section05 .bgarea__gray-urbanplanning ul.list__square {
  margin-top: 4vw;
  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.text__note {
  margin-top: 0.5em;
}
body#about .section05 .borderarea01 {
  margin-top: 13.33vw;
  padding: 8vw 4.26vw;
}
body#about .section05 .borderarea01 dl dt {
  font-size: 4.26vw;
  font-weight: 700;
}
body#about .section05 .borderarea01 dl dd {
  margin-top: 0.75em;
  line-height: 1.7;
}
body#about .section05 .borderarea01 ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 6.66vw;
}
body#about .section05 .borderarea01 ul li {
  width: calc((100% - 4.26vw) / 2);
  margin-right: 4.26vw;
}
body#about .section05 .borderarea01 ul li:nth-of-type(2n) {
  margin-right: 0;
}
body#about .section05 .borderarea01 ul li:nth-of-type(n+3) {
  margin-top: 5.33vw;
}
body#about .section05 .borderarea02 {
  margin-top: 13.33vw;
  padding: 8vw 4.26vw;
}
body#about .section05 .borderarea02 dl dt {
  font-size: 4.26vw;
  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 .section {
  position: relative;
  z-index: 1;
  margin-top: -2px;
  background: #fff;
}
body#philosophy figure.img {
  margin-top: 10vw;
  text-align: center;
}

/*----------------------------------------------------
	会社概要
----------------------------------------------------*/
body#profile {
  /*.bgarea__lightgreen {
  	box-sizing: border-box;
  	margin: 6.66vw 4.26vw 0;
  	padding: 5.33vw;
  	p.text {
  		text-align: center;
  		line-height: 1
  	}
  }*/
}
body#profile .section {
  position: relative;
  z-index: 1;
  margin-top: -2px;
  padding: 0;
  background: #fff;
}
body#profile table.table02 {
  margin-top: 10.66vw;
}
body#profile p.text__note {
  text-align: right;
  margin-top: 0.5em;
  padding: 0 4.26vw;
}

/*----------------------------------------------------
	沿 革
----------------------------------------------------*/
body#history .section {
  position: relative;
  z-index: 1;
  margin-top: -2px;
  background: #fff;
}
body#history .historyarea {
  position: relative;
  margin-top: 8vw;
}
body#history .historyarea::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 7.46vw;
  width: 0.8vw;
  height: 100%;
  border-left: 0.8vw solid #006f3f;
}
body#history .historyarea .category {
  position: relative;
  z-index: 1;
  padding-bottom: 9.33vw;
  background: #fff;
}
body#history .historyarea .category p.title {
  box-sizing: border-box;
  text-align: center;
  font-size: 4.8vw;
  font-weight: 700;
  color: #006f3f;
  line-height: 1;
}
body#history .historyarea .category p.title:last-child {
  display: none;
}
body#history .historyarea dl {
  position: relative;
  z-index: 1;
  padding-left: 19.46vw;
}
body#history .historyarea dl dt.age {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 15.33vw;
  padding: 0.8vw 0 1.06vw;
  font-size: 4.8vw;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  background: #006f3f;
  border-radius: 0.8vw;
}
body#history .historyarea dl dd.history p.text {
  display: flex;
  width: 100%;
  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 p.text span.date {
  white-space: nowrap;
}
body#history .historyarea dl dd.history figure.img:not(:first-child) {
  margin-top: 1.25em;
}
body#history .historyarea dl dd.event {
  margin-top: 0.75em;
}
body#history .historyarea dl dd.event::before {
  content: "［主な出来事］";
  display: block;
  margin: 0 0 0.25em -0.5em;
  font-size: 3.2vw;
  font-weight: 700;
  color: #006f3f;
}
body#history .historyarea dl dd.event p.text {
  display: flex;
  width: 100%;
  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 dd.event span.space {
  display: none;
}
body#history .historyarea dl dd.history.blank,
body#history .historyarea dl dd.event.blank {
  display: none;
}
body#history .historyarea dl dd.history.blank + dd.event {
  margin-top: 0;
}
body#history .historyarea dl + dl {
  margin-top: 6vw;
}
body#history .historyarea p.text__current {
  margin-top: 2em;
  padding-left: 19.46vw;
  font-size: 4.8vw;
  font-weight: 700;
  color: #006f3f;
  line-height: 1;
}

/*----------------------------------------------------
	自動車道事業
----------------------------------------------------*/
body#expressway .titlearea {
  background-image: url("../../img/expressway/bg_title_sp.jpg");
}
body#expressway .titlearea h1.title strong {
  width: 79.2vw;
  background-image: url("../../img/expressway/title_expressway.svg");
}
body#expressway .section01 {
  margin-top: 10.66vw;
}
body#expressway .section01 .maparea {
  margin-top: 10vw;
}
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;
  flex-wrap: wrap;
}
body#expressway .section01 .maparea .column .cell {
  display: contents;
}
body#expressway .section01 .maparea figure.map01 {
  order: 1;
  width: 100%;
  margin-top: 8vw;
}
body#expressway .section01 .maparea figure.map01 img {
  box-sizing: border-box;
  display: block;
  width: 70%;
  margin: 0 auto;
  border: 6px solid #006f3f;
  border-radius: 100vmax;
}
body#expressway .section01 .maparea figure.map01 + ul.list__square {
  display: table;
  order: 2;
  margin: 4vw auto 0;
}
body#expressway .section01 .maparea .btn__border {
  order: 5;
  width: 100%;
  margin-top: 8vw;
}
body#expressway .section01 .maparea .btn__border a {
  width: 100%;
}
body#expressway .section01 .maparea figure.map02 {
  order: 3;
  margin-top: 8vw;
}
body#expressway .section01 .maparea figure.map02 + ul.list__square {
  order: 4;
  margin-top: 0.5em;
}
body#expressway .section01 .maparea .bgarea__gray {
  box-sizing: border-box;
  order: 5;
  width: 100%;
  margin-top: 8vw;
  padding: 4vw;
}
body#expressway .section01 .maparea .bgarea__gray h5.title {
  text-align: center;
  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 {
  font-size: 3.6vw;
}
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 {
  margin-top: 16vw;
  padding: 0 4.26vw;
}
body#expressway .inquiryarea dl {
  text-align: center;
  color: #006f3f;
  line-height: 1;
}
body#expressway .inquiryarea dl dt {
  font-size: 3.73vw;
  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 a {
  text-decoration: none;
  color: #006f3f;
}
body#expressway .inquiryarea dl dd p.tel span {
  font-size: 4.26vw;
  font-weight: 300;
}
body#expressway .inquiryarea dl dd p.tel strong {
  margin-left: 0.15em;
  font-size: 6.93vw;
  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_sp.jpg");
}
body#realestate .titlearea h1.title strong {
  width: 83.6vw;
  background-image: url("../../img/realestate/title_realestate.svg");
}
body#realestate .section01 {
  margin-top: 10.66vw;
}
body#realestate .section01 .column01 {
  margin-top: 1em;
}
body#realestate .section01 .column01 .cell + .cell {
  margin-top: 6.66vw;
}
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: 3.73vw;
  font-weight: 400;
  color: #000;
}
body#realestate .section01 figure.img {
  display: table;
  margin: 5.33vw auto 0;
}
body#realestate .section02 {
  padding: 10.66vw 4.26vw;
  background: #f5f5f5;
}
body#realestate .section02 figure.maparea {
  position: relative;
  z-index: 1;
}
body#realestate .section02 ul.building__list {
  position: relative;
  z-index: 0;
  margin-top: -16vw;
  padding-top: 26.66vw;
}
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: 5.33vw 2.66vw 2.66vw 0;
}
body#realestate .section02 ul.building__list li .column .cell:last-child {
  padding: 1.33vw 1.33vw 0 0;
}
body#realestate .section02 ul.building__list li p.name {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  position: relative;
  min-height: 11.46vw;
  padding-left: 5.33vw;
  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: 1.2vw;
  height: 100%;
  border-left: 1.2vw solid #ff7c00;
}
body#realestate .section02 ul.building__list li p.name strong {
  display: block;
  width: 100%;
  margin-top: -0.15em;
  font-size: 5.33vw;
}
body#realestate .section02 ul.building__list li p.name span {
  display: block;
  width: 100%;
  margin-top: 0.45em;
  font-size: 3.2vw;
}
body#realestate .section02 ul.building__list li .btn__border {
  margin: 5.33vw 0 0 5.33vw;
}
body#realestate .section02 ul.building__list li dl.list__info {
  margin-top: 1.33vw;
  padding: 5.33vw;
  border-top: 0.4vw 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);
}
body#realestate .section02 ul.building__list li + li {
  margin-top: 6.66vw;
}
body#realestate .section02 .column02 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10.66vw;
}
body#realestate .section02 .column02 .cell {
  width: calc((100% - 4.26vw) / 2);
  margin-right: 4.26vw;
}
body#realestate .section02 .column02 .cell:nth-of-type(2n) {
  margin-right: 0;
}
body#realestate .section02 .column02 .cell:nth-of-type(n+3) {
  margin-top: 5.33vw;
}
body#realestate .section03 .column03 {
  margin-top: 10.66vw;
}
body#realestate .section03 .column03 .cell + .cell {
  margin-top: 5.33vw;
}

/*----------------------------------------------------
	テナント紹介
----------------------------------------------------*/
body#tenants .titlearea {
  background-color: transparent;
  background-image: url("../../img/tenants/bg_title_sp.jpg");
}
body#tenants .titlearea h1.title strong {
  width: 34.13vw;
  background-image: url("../../img/tenants/title_tenants.svg");
}
body#tenants .section {
  padding: 0;
  background: #f5f5f5;
}
body#tenants .section .bgarea__white {
  padding: 8vw 4.26vw;
}
body#tenants .section .bgarea__white .column .cell:first-child ul.nav__list li.nav__link:nth-of-type(1) {
  width: 100%;
  margin-right: 0;
}
body#tenants .section .bgarea__white .column .cell:first-child ul.nav__list li.nav__link:nth-of-type(n+2) {
  margin-top: 0.6vw;
}
body#tenants .section .bgarea__white .column .cell:first-child ul.nav__list li.nav__link:nth-of-type(3), body#tenants .section .bgarea__white .column .cell:first-child ul.nav__list li.nav__link:nth-of-type(5) {
  margin-left: 0.6vw;
}
body#tenants .section .bgarea__white .column .cell:last-child {
  margin-top: 5.33vw;
}
body#tenants .section .bgarea__white .column .cell:last-child ul.nav__list li.nav__link + li.nav__link {
  margin-left: 0.6vw;
}
body#tenants .section .bgarea__white ul.nav__list {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  margin-top: 4vw;
  pointer-events: auto;
}
body#tenants .section .bgarea__white ul.nav__list li.nav__link {
  box-sizing: border-box;
  width: calc((100% - 0.61vw) / 2);
  background: #f5f5f5;
  border-radius: 1.06vw;
}
body#tenants .section .bgarea__white ul.nav__list li.nav__link a {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  padding: 4vw 4vw 2vw;
  text-decoration: none;
}
body#tenants .section .bgarea__white ul.nav__list li.nav__link a span {
  display: table;
  position: relative;
  margin: 0 auto;
  padding-bottom: 2.4vw;
  font-size: 3.73vw;
  font-weight: 400;
  color: #000;
  line-height: 1;
  white-space: nowrap;
}
body#tenants .section .bgarea__white ul.nav__list li.nav__link a span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.6vw;
  background: #00873b;
  opacity: 0;
}
body#tenants .section .bgarea__white ul.nav__list li.nav__link a.current span {
  color: #006f3f;
}
body#tenants .section .bgarea__white ul.nav__list li.nav__link a.current span::after {
  opacity: 1;
}
body#tenants .section h2.title__border {
  margin: 10.66vw 4.26vw 0;
}
body#tenants .section ul.building__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.75em;
  padding: 0 0 0 4.26vw;
}
body#tenants .section ul.building__list li {
  margin-top: 0.25em;
  white-space: nowrap;
}
body#tenants .section ul.tenants__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8vw;
  padding: 0 4.26vw;
}
body#tenants .section ul.tenants__list li.tenants {
  box-sizing: border-box;
  width: 100%;
  padding: 4.26vw;
  background: #fff;
  border-radius: 1.06vw;
}
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: 1.33vw 2.13vw 1.86vw;
  font-size: 3.2vw;
  color: #fff;
  line-height: 1;
  border-radius: 1.06vw;
}
body#tenants .section ul.tenants__list li.tenants ul.list__category li + li {
  margin-left: 1.33vw;
}
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: 2.66vw;
  border: 1px solid #e1e1e1;
}
body#tenants .section ul.tenants__list li.tenants figure.img img {
  width: auto;
  height: auto;
  max-width: 100%;
}
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: 3.2vw;
}
body#tenants .section ul.tenants__list li.tenants p.type {
  position: relative;
  margin: 0.5em 2px 0;
  display: flex;
  padding-left: 10.66vw;
  font-size: 3.2vw;
  line-height: 1.3;
}
body#tenants .section ul.tenants__list li.tenants p.type span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 10.66vw;
  height: 4.26vw;
  padding: 0.4vw 0 0 0.53vw;
  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: 3.73vw;
  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: 3vw 4vw 3.73vw;
  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: 5.33vw;
}
body#tenants .section ul.tenants__list li.tenants p.web a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  right: 0;
  width: 3.2vw;
  height: 2.66vw;
  background-image: url("../img/ic_blank.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
body#tenants .section ul.tenants__list li.tenants + li.tenants {
  margin-top: 8vw;
}

/*----------------------------------------------------
	交通アクセス
----------------------------------------------------*/
body#access .titlearea {
  background-image: url("../../img/access/bg_title_sp.jpg");
}
body#access .titlearea h1.title strong {
  width: 30.26vw;
  background-image: url("../../img/access/title_access.svg");
}
body#access .section01 {
  margin-top: 10.66vw;
  padding: 0;
}
body#access .section01 .column01 {
  padding: 0 4.26vw;
}
body#access .section01 .column01 .cell + .cell {
  margin-top: 8vw;
}
body#access .section01 p.text {
  margin-top: 1.5em;
  line-height: 1.8;
}
body#access .section01 .accessarea {
  margin-top: 6.66vw;
  padding-top: 8vw;
  border-top: 1px solid #e1e1e1;
}
body#access .section01 dl.list__access dt {
  margin-top: 6.66vw;
  font-size: 4.26vw;
  color: #006f3f;
}
body#access .section01 dl.list__access dd {
  margin-top: 1.33vw;
}
body#access .section01 dl.list__access dd span {
  color: #0000dc;
  font-weight: 700;
}
body#access .section01 h5.title:not(:first-child) {
  margin-top: 8vw;
}
body#access .section01 .column01 + h5.title {
  padding: 0 4.26vw;
}
body#access .section01 .column02 {
  margin-top: 6.66vw;
  padding: 0 4.26vw;
}
body#access .section01 .column02 .cell + .cell {
  position: relative;
  margin-top: 14.66vw;
}
body#access .section01 .column02 .cell + .cell::before {
  content: "";
  display: block;
  position: absolute;
  top: -10.66vw;
  left: calc(50% - 5.2vw);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.33vw 5.2vw 0 5.2vw;
  border-color: #0b8144 transparent transparent transparent;
}
body#access .section01 .maparea {
  margin-top: 13.33vw;
}
body#access .section01 .maparea iframe {
  width: 100%;
  height: 100vw;
}

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

body#news .section {
  margin-top: 10.66vw;
}
body#news .pagenation {
  display: table;
  margin: 10.66vw auto 0;
}
body#news .pagenation ul {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 0 20vw;
}
body#news .pagenation ul li {
  width: 10.66vw;
  height: 10.66vw;
  font-size: 4.26vw;
  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: 10.66vw;
}
body#detail ul.news__list {
  border-top: none;
}
body#detail ul.news__list li {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 6.66vw;
}
body#detail ul.news__list li p.title {
  width: 100%;
  margin-top: 0.75em;
  text-decoration: none;
  font-size: 5.33vw;
  line-height: 1.65;
}
body#detail .area__edit {
  margin-top: 9.33vw;
}
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: 5.6vw;
}
body#detail .area__edit h2 {
  font-size: 5.33vw;
}
body#detail .area__edit h3 {
  font-size: 5.06vw;
}
body#detail .area__edit h4 {
  font-size: 4.53vw;
}
body#detail .area__edit h5 {
  font-size: 4.26vw;
}
body#detail .area__edit h5 {
  font-size: 4vw;
}
body#detail .area__edit p {
  font-size: 3.73vw;
  line-height: 2;
}
body#detail .area__edit p:not(:first-child) {
  margin-top: 2em;
}
body#detail .area__edit p img {
  display: table;
  max-width: 100%;
  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: 16vw auto 0;
}

/* ======================================================
	フォーム
====================================================== */
body.form .titlearea,
body.confirmation .titlearea,
body.thanks .titlearea {
  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: 32vw;
  padding-top: 0;
}
body.form .titlearea h1.title,
body.confirmation .titlearea h1.title,
body.thanks .titlearea h1.title {
  font-size: 6.4vw;
  font-weight: 400;
  color: #fff;
}
body.form .section,
body.confirmation .section,
body.thanks .section {
  margin-top: 13.33vw;
}

/* 入力画面 ====================*/
body.form section.section p.text__lead {
  margin-bottom: 2em;
  text-align: center;
  font-size: 4.26vw;
  font-weight: 400;
}
body.form section.section dl.form dt {
  display: flex;
  align-items: center;
  font-size: 3.73vw;
  font-weight: 700;
  color: #006f3f;
}
body.form section.section dl.form dt span.ic__required {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.2vw;
  height: 4.8vw;
  margin-top: 0.15em;
  margin-left: 2vw;
  text-align: center;
  font-size: 3.2vw;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  background: #F43B59;
  border-radius: 0.53vw;
}
body.form section.section dl.form dd {
  box-sizing: border-box;
  width: 100%;
  margin-top: 2vw;
}
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: 10.66vw;
  padding: 2.66vw;
  font-size: 4.26vw;
  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: 2vw 2.5vw;
  font-size: 4.26vw;
  font-family: "Noto Sans JP", sans-serif;
  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: 1.33vw;
  font-size: 3.73vw;
  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: 6.8vw 0 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: 8vw;
  font-size: 4.26vw;
  line-height: 1.4;
}
body.form section.section dl.form dd.checkbox > span input[type=checkbox] + span::before {
  content: "";
  box-sizing: border-box;
  display: block;
  position: absolute;
  top: 0.7vw;
  left: 0;
  width: 5.33vw;
  height: 5.33vw;
  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: calc(50% - 2.2vw);
  left: 1.6vw;
  width: 1.06vw;
  height: 2vw;
  transform: rotate(45deg);
  border: 0.6vw solid transparent;
  border-bottom: 0.6vw solid #fff;
  border-right: 0.6vw solid #fff;
}
body.form section.section dl.form dd.checkbox span.error {
  margin-top: 1.33vw;
}
body.form section.section dl.form + dl.form {
  margin-top: 5vw;
}
body.form section.section div.checkbox {
  margin-top: 5vw;
}
body.form section.section div.checkbox dl.form dd.text {
  display: none;
}
body.form section.section div.personal {
  margin-top: 12vw;
}
body.form section.section div.personal h3.title {
  font-size: 3.73vw;
  font-weight: 700;
  color: #006f3f;
  line-height: 1.4;
}
body.form section.section div.personal .scroll {
  overflow-y: scroll;
  height: 10em;
  margin-top: 4vw;
  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: 3.46vw;
  font-weight: 700;
  line-height: 1;
}
body.form section.section div.personal .scroll p.text {
  margin-top: 0.5em;
  font-size: 3.2vw;
}
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: 4.8vw auto 0;
}
body.form section.section div.personal p.checkbox > span {
  display: block;
  margin: 4vw 0 0 0;
}
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: 8vw;
  font-size: 4.26vw;
  line-height: 1.4;
}
body.form section.section div.personal p.checkbox > span input[type=checkbox] + span::before {
  content: "";
  box-sizing: border-box;
  display: block;
  position: absolute;
  top: 0.7vw;
  left: 0;
  width: 5.33vw;
  height: 5.33vw;
  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: calc(50% - 2.2vw);
  left: 1.6vw;
  width: 1.06vw;
  height: 2vw;
  transform: rotate(45deg);
  border: 0.6vw solid transparent;
  border-bottom: 0.6vw solid #fff;
  border-right: 0.6vw solid #fff;
}
body.form section.section div.personal p.checkbox span.error {
  width: 100%;
  margin-top: 1.33vw;
  text-align: center;
  font-size: 3.73vw;
  color: #cd1a00;
}
body.form section.section .submit {
  margin-top: 16vw;
}
body.form section.section .btn__area {
  display: flex;
  justify-content: center;
  margin: 8vw auto 0;
}
body.form section.section .btn__area button.btn__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33.33vw;
  height: 10.4vw;
  margin: 0 1em;
  font-size: 3.6vw;
  font-weight: 700;
  color: #fff;
  background-color: #006f3f;
  border-radius: 100vmax;
  cursor: pointer;
}

/* 確認画面 ====================*/
body.confirmation section.section p.text__lead {
  margin-bottom: 2em;
  text-align: center;
  font-size: 4.26vw;
  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: 10.66vw;
  margin-top: 2vw;
  padding: 2vw 4vw 2.5vw;
  font-size: 4.26vw;
  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: 8vw auto 0;
}

/*----------------------------------------------------
	KK線再生に向けた取組み
----------------------------------------------------*/
body#project .titlearea {
  background-image: url("../../img/project/bg_title_sp.jpg");
}
body#project .titlearea h1.title strong {
  font-size: 8vw;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}
body#project .titlearea h1.title span {
  line-height: 1.4;
}
body#project .section {
  margin-top: 10.66vw;
}
body#project .section figure.img {
  display: table;
  margin: 0 auto;
}
body#project .section figure.img:not(:first-child) {
  margin-top: 5.33vw;
}
body#project .section figure.img figcaption {
  font-size: 3vw;
}
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: 10vw;
  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: 5.33vw auto 0;
}
body#project .section .bgarea__gray {
  display: table;
  margin: 5.33vw auto 0;
  padding: 5vw 3vw 5vw 4.26vw;
}/*# sourceMappingURL=sp.css.map */