@charset "UTF-8";
/*********************************************************
base
*********************************************************/
* {
  box-sizing: border-box;
}

body {
  background-color: #f9f9f9;
  background-image: inear-gradient(#f9f9f9, #eeeeee);
  color: #333333;
  font-family: ArialMT, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

a {
  color: #ff8b07;
}
a:hover {
  opacity: 0.8;
}

img {
  height: auto;
  max-width: 100%;
}

li {
  list-style: none;
}

span {
  font-weight: inherit;
}

/*-----------------------
toggle-ttl
-----------------------*/
.toggle-ttl {
  background: #eee;
  background-image: linear-gradient(#fff, #f1f1f1);
  border: 1px solid #ccc;
  color: #2f3e46;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  overflow: hidden;
  padding: 9px 7px 9px 40px;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.toggle-ttl:hover {
  background: #dfdfdf;
  background-image: linear-gradient(#fff, #dfdfdf);
  opacity: 1;
}
.toggle-ttl::before {
  color: #009b53;
  content: "\f056";
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.toggle-ttl.open::before {
  content: "\f055";
}

/*-----------------------
toggle-content
-----------------------*/
.toggle-content {
  padding: 10px 15px;
}
.toggle-content .toggle-content__kana {
  display: block;
  font-size: 12px;
}
.toggle-content .toggle-content__kanji {
  display: block;
  padding-left: 12px;
}

/*********************************************************
header
*********************************************************/
/*-----------------------
header-top
-----------------------*/
.header-top {
  background: #009b53;
  background-image: linear-gradient(#00b561, #008245);
  border: 1px solid #009b53;
  color: #ffffff;
  font-weight: bold;
  padding: 0.4em 15px;
}
@media (min-width: 1025px) {
  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.header-top__ttl {
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 1px 0 #444;
}
@media (min-width: 1025px) {
  .header-top__ttl {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .header-top__ttl {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .header-top__ttl {
    font-size: 12px;
  }
}

.header-top__contact {
  text-align: right;
}
@media (min-width: 1025px) {
  .header-top__contact {
    width: 20%;
  }
}
@media (max-width: 1024px) {
  .header-top__contact {
    display: none;
  }
}
.header-top__contact a {
  background: #eee;
  background-image: linear-gradient(#fff, #f1f1f1);
  border: 1px solid #ccc;
  color: #2f3e46;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  display: inline-block;
  font-size: 12px;
  padding: 7px 12px;
  text-align: center;
}
.header-top__contact a:hover {
  background: #dfdfdf;
  background-image: linear-gradient(#fff, #dfdfdf);
  opacity: 1;
}
.header-top__contact a img {
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
  width: 16px;
}

/*-----------------------
header-top-sp
-----------------------*/
.header-top-sp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 15px 0;
}
.toppage .header-top-sp {
  margin-bottom: 15px;
}
@media (min-width: 1025px) {
  .header-top-sp {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-top-sp__logo {
    width: 100px;
  }
}

.header-top-sp__contact a {
  background: #eee;
  background-image: linear-gradient(#fff, #f1f1f1);
  border: 1px solid #ccc;
  color: #2f3e46;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  display: inline-block;
  font-size: 14px;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}
.header-top-sp__contact a:hover {
  background: #dfdfdf;
  background-image: linear-gradient(#fff, #dfdfdf);
  opacity: 1;
}
.header-top-sp__contact a img {
  display: inline-block;
  vertical-align: middle;
  width: 50px;
}
@media (max-width: 480px) {
  .header-top-sp__contact a img {
    width: 25px;
  }
}

/*********************************************************
footer
*********************************************************/
footer {
  border: 1px solid #009b53;
  margin-top: 15px;
}

.footer-bg {
  background: #009b53;
  background-image: linear-gradient(#00b561, #008245);
  color: #ffffff;
  font-weight: bold;
  padding: 10px;
  text-shadow: 0 1px 0 #444444;
}

.copy {
  font-size: 12px;
}

/*********************************************************
wrapper
*********************************************************/
.wrapper {
  border-left: 1px solid #CCC;
  border-right: 1px solid #CCC;
  margin: 0 auto;
  max-width: 1000px;
}

/*********************************************************
main
*********************************************************/
.main {
  display: flex;
}
@media (min-width: 1025px) {
  .main {
    min-height: 1000px;
  }
}
@media (max-width: 1024px) {
  .main {
    flex-direction: column-reverse;
  }
}

/*********************************************************
side-column
*********************************************************/
.side-column .recommend-area {
  margin-top: 5px;
}
@media (min-width: 1025px) {
  .side-column {
    border-right: 1px solid #ccc;
    width: 234px;
  }
  .side-column .recommend-area {
    display: none;
  }
}
@media (max-width: 1024px) {
  .side-column {
    display: none;
  }
  .toppage .side-column {
    display: block;
  }
}

.side-column__logo {
  padding: 10px;
  text-align: center;
}
@media (max-width: 1024px) {
  .side-column__logo {
    display: none;
  }
}

/*-----------------------
side-column-nav
-----------------------*/
.side-column-nav li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .side-column-nav li:last-child a {
    border-radius: 0 0 5px 5px;
  }
}
.side-column-nav .toggle-content {
  padding: 0;
}
.side-column-nav .toggle-ttl {
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}
.side-column-nav .toggle-ttl.open {
  border: 1px solid #ccc;
  border-radius: 10px;
}
@media (min-width: 1025px) {
  .side-column-nav .toggle-ttl {
    display: none;
  }
}

.side-column-nav__list li a {
  background: #eee;
  background-image: linear-gradient(#fff, #f1f1f1);
  border: 1px solid #ccc;
  color: #2f3e46;
  font-weight: bold;
  text-decoration: none;
  border-width: 1px 0 0;
  display: block;
  font-size: 16px;
  padding: 12px;
  position: relative;
}
.side-column-nav__list li a:hover {
  background: #dfdfdf;
  background-image: linear-gradient(#fff, #dfdfdf);
  opacity: 1;
}
.side-column-nav__list li a::after {
  color: #009b53;
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.side-column-nav__list li:last-child a {
  border-width: 1px 0;
}

/*-----------------------
official-sns
-----------------------*/
.official-sns {
  margin-top: 5px;
}

.official-sns__list {
  margin-top: 15px;
}
.official-sns__list li {
  display: inline-block;
  padding: 0 15px;
  width: 48%;
}
@media (max-width: 1024px) {
  .official-sns__list li {
    width: 18%;
  }
}

/*-----------------------
qrcode
-----------------------*/
.qrcode {
  background: #fff;
  border-radius: 5px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.6);
  margin: 20px;
  overflow: hidden;
  padding: 0 0 20px 0;
  text-align: center;
}
@media (max-width: 1024px) {
  .qrcode {
    display: none;
  }
}
.qrcode img {
  width: 100px;
}

.qrcode__ttl {
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px dotted #999;
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 5px 10px;
}

/*********************************************************
main-column
*********************************************************/
@media (min-width: 1025px) {
  .main-column {
    padding: 20px;
    width: 765px;
  }
}
@media (max-width: 1024px) {
  .main-column .recommend-area {
    display: none;
  }
}

.main-column__area:nth-of-type(n + 2) {
  margin-top: 10px;
}

/*-----------------------
flexslider
-----------------------*/
@media (max-width: 1024px) {
  .flex-direction-nav .flex-prev {
    opacity: 1 !important;
    left: 0 !important;
  }
}

@media (max-width: 1024px) {
  .flex-direction-nav .flex-next {
    opacity: 1 !important;
    right: 0 !important;
  }
}

/*-----------------------
recommend-area
-----------------------*/
.recommend-area__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.recommend-area__list li {
  border: 5px solid rgb(234, 234, 234);
  padding: 5px;
  width: 30%;
}
.recommend-area__list li:nth-child(n+4) {
  margin-top: 10px;
}
.recommend-area__list li p {
  color: #000;
}

/*-----------------------
information-area
-----------------------*/
.information-area__item {
  display: flex;
}

.information-area__date {
  color: #000;
  text-shadow: 0 1px 0 #eee;
}

.information-area__ttl {
  margin-left: 5%;
}
.information-area__ttl a {
  color: #2489ce;
  font-weight: bold;
  text-decoration: underline;
  text-shadow: 0 1px 0 #eee;
}

/*********************************************************
下層ページ
*********************************************************/
/*-----------------------
page-ttl
-----------------------*/
.page-ttl {
  background-color: #009b53;
  background-image: linear-gradient(#00b561, #008245);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  padding: 8px 12px;
  text-shadow: 0 1px 0 #444;
}

/*-----------------------
contents
-----------------------*/
.contents {
  margin-top: 20px;
  padding: 0 15px 15px;
}

/*********************************************************
会社概要
*********************************************************/
/*-----------------------
company
-----------------------*/
.company {
  padding: 15px;
}

.company__ttl {
  background-color: #009b53;
  background-image: linear-gradient(#00b561, #008245);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  padding: 15px 0;
  text-align: center;
  text-shadow: 0 1px 0 #444;
}

/*-----------------------
company-list
-----------------------*/
.company-list dt {
  margin-top: 5px;
}
.company-list dd {
  margin-bottom: 5px;
}
.company-list dd p:nth-child(n+2) {
  margin-top: 1em;
}
.company-list dd p a {
  color: #FF9f08;
  font-weight: bold;
  text-decoration: underline;
}

/*********************************************************
philosophy.html
*********************************************************/
.philosophy__list li {
  margin-top: 15px;
}
.philosophy__list li:first-child {
  margin-top: 0;
}

/*********************************************************
contents
*********************************************************/
.contents__img {
  margin: 15px 0 30px;
}

.contents__txt {
  border-top: 1px solid #333;
  padding: 15px 0 8px;
}

.contents__link {
  color: #a55a04;
  font-size: 18px;
  font-weight: bold;
  text-decoration: underline;
}
.contents__link:hover {
  opacity: 0.8;
}

.contents__return {
  border-top: 1px solid #333;
  padding-top: 30px;
}
.contents__return a {
  color: #00bfff;
  text-decoration: underline;
}
.contents__return a:hover {
  opacity: 0.8;
}

/*-----------------------
breadcrumbs
-----------------------*/
.breadcrumbs {
  display: none;
}
@media (max-width: 1024px) {
  .breadcrumbs {
    display: flex;
    justify-content: center;
    margin: 10px 0;
  }
}

.breadcrumbs__item {
  font-size: 14px;
}
@media (max-width: 480px) {
  .breadcrumbs__item {
    font-size: 12px;
  }
}
.breadcrumbs__item.-home {
  display: flex;
  align-items: center;
  position: relative;
}
.breadcrumbs__item.-home::after {
  border-color: #333;
  border-style: solid;
  border-width: 1px 1px 0 0;
  content: "";
  display: inline-block;
  margin: 0 10px 0 5px;
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
}

.breadcrumbs__link:hover {
  text-decoration: none;
}

/*********************************************************
parking.html
*********************************************************/
/*-----------------------
parking-table
-----------------------*/
body {
  counter-reset: number 0;
}

.parking-table {
  margin: 15px 0 30px;
}
.parking-table th {
  font-weight: bold;
  padding-right: 20px;
  text-align: left;
}
.parking-table th:last-child {
  padding-right: 0;
}
.parking-table td {
  padding: 5px 10px 5px 0;
}
.parking-table tbody td:first-child::before {
  content: counter(number);
  counter-increment: number 1;
}

.parking-table__del {
  color: #999;
}

/*********************************************************
access.html
*********************************************************/
/*-----------------------
access
-----------------------*/
.access__click {
  border-bottom: 3px solid #000;
  font-weight: bold;
}

.access__img {
  margin-top: 15px;
}

.access__ggmap {
  margin-top: 30px;
  padding-bottom: 55%;
  position: relative;
}
.access__ggmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/*-----------------------
access-address
-----------------------*/
.access-address {
  margin-top: 30px;
}

.access-address__ttl {
  border-color: #333;
  border-style: solid;
  border-width: 0 0 1px 6px;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 2px 5px;
}

.access-address__txt {
  margin-bottom: 20px;
}
.access-address__txt:last-child {
  margin-bottom: 0;
}
.access-address__txt li {
  margin-left: 1em;
  text-indent: -1em;
}

/*********************************************************
topixページ
*********************************************************/
.topix-list__box {
  border: #cc0000 3px double;
  margin-top: 15px;
  padding: 15px;
  text-align: center;
}
@media (max-width: 480px) {
  .topix-list__box {
    padding: 10px;
  }
}

.topix-list__txt {
  margin: 10px 0 0 1em;
  text-align: left;
  text-indent: -1em;
}

.topix__return:last-child {
  margin-top: 15px;
}

/*********************************************************
property.html
*********************************************************/
.property-ttl {
  background: #fff;
  border-top: 3px solid #009b53;
  box-shadow: 0 3px 3px #ddd;
  font-size: 22px;
  font-weight: bold;
  padding: 15px;
  text-align: left;
}
@media (max-width: 480px) {
  .property-ttl {
    font-size: 18px;
  }
}

.property-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 600px) {
  .property-header {
    display: block;
  }
}

.property-header__info {
  text-align: left;
}
@media (min-width: 601px) {
  .property-header__info {
    margin-right: 10px;
  }
}
@media (max-width: 600px) {
  .property-header__info {
    text-align: center;
  }
}

.property-header__txt {
  line-height: 1.5;
}
@media (max-width: 400px) {
  .property-header__txt {
    display: inline-block;
    text-align: left;
    width: 95%;
    max-width: 250px;
  }
}
.property-header__txt:last-child {
  margin-top: 5px;
}
.property-header__txt strong {
  color: #f00;
  font-size: 20px;
  font-weight: bold;
}
.property-header__txt span {
  display: inline-block;
}

.property-header__btn {
  background: #ff8b07;
  color: #fff;
  display: block;
  font-weight: bold;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  width: 270px;
}
@media (max-width: 600px) {
  .property-header__btn {
    margin: 15px auto 0;
  }
}
@media (max-width: 330px) {
  .property-header__btn {
    font-size: 12px;
    width: 95%;
  }
}

.swiper {
  border: 3px solid #009b53;
  margin-top: 50px;
}
.swiper img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 500px;
}
@media (max-width: 480px) {
  .swiper img {
    height: 350px;
  }
}

.slider-thumbnail {
  margin-top: 15px;
}
.slider-thumbnail img {
  border: 1px solid #666;
  cursor: pointer;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100px;
}
@media (max-width: 480px) {
  .slider-thumbnail img {
    height: 80px;
  }
}

.property-table {
  margin-top: 50px;
  width: 100%;
}
@media (max-width: 600px) {
  .property-table table,
  .property-table tbody,
  .property-table tr,
  .property-table th,
  .property-table td {
    display: block;
  }
}
.property-table th,
.property-table td {
  border: 1px solid #333;
  font-size: 12px;
  padding: 10px;
  vertical-align: middle;
}
.property-table th {
  background: #eee;
  width: 15%;
}
@media (max-width: 600px) {
  .property-table th {
    border-width: 1px 1px 0 1px;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .property-table td {
    border-width: 1px 1px 0 1px;
  }
}
@media (max-width: 600px) {
  .property-table tr:last-child td:last-child {
    border-width: 1px;
  }
}