@charset "utf-8";


/*==========================================
 トップページ
===========================================*/


/*==========================================
 メインビジュアル
===========================================*/

#mainVisual {
  height: 300px;
}

#mainVisual .topSection {
  padding: 0;
}

#mainVisual .mvBlock {
  position: relative;
  width: 100%;
  height: 300px;
}

#mainVisual .textBlock {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);  
  color: var(--main-color);
  text-align: center;
}

#mainVisual .textBlock .heading {
  font-size : 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

#mainVisual .imageBlock {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#mainVisual .imageBlock img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: 50% 50%;
}

@media print, screen and (min-width: 601px) {

  #mainVisual {
    height: 100vh;
  }

  #mainVisual .mvBlock {
    height: 100vh;
  }

  #mainVisual .textBlock .heading {
    font-size : 2.8rem;
  }

  #mainVisual .imageBlock {
    width: 1200px;
    height: 100vh;
  }

  #mainVisual .imageBlock img{
    height: 100vh;
    object-position: 50% 100%;
  }

}

@media print, screen and (min-width: 1201px) {

  #mainVisual .imageBlock {
    width: 100%;
  }

}

/*==========================================
 すまい造りギャラリー
===========================================*/

#gallery {
  width: 100%;
}

.galleryBlock {
  width: 100%;
}

.galleryTopBox {
	width: 100%;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}

.galleryTopBox.reform {
	align-items: flex-start;
}

.galleryTopBox.care {
	align-items: flex-end;
}

.galleryTopBox:last-child {
  margin-bottom: 0;
}

.galleryTopBox .galleryHead {
  width: 40%;
  margin-bottom: 2px;
}

.galleryTopBox .galleryHead a {
  text-decoration: none;
  aspect-ratio: 2 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border-radius: 8px 8px 0 0;
}

.galleryTopBox.reform .galleryHead a {
  background: var(--gallery01-color);
}

.galleryTopBox.care .galleryHead a {
  background: var(--gallery02-color);
}

.galleryTopBox .galleryHead a:hover {
	opacity: .8;
}

.galleryTopBox .title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.galleryTopBox .title span {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: .8em;
  margin-bottom: 4px;
}

.slideBlock {
  display: block;
	width: 100%;
}

.slideBlock .gallerySliderBox {
	position: relative;
	padding: 0 1px;
}

.slideBlock .gallerySliderBox .image {
  width: 100%;
}

.slideBlock .gallerySliderBox .image img {
	width: 100%;
	height: auto;
}

@media print, screen and (min-width: 601px) {

  .galleryBlock {
  }

  .galleryTopBox {
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }

  .galleryTopBox.reform {
    flex-direction: row;
    align-items: center;
  }

  .galleryTopBox.care {
    flex-direction: row-reverse;
    align-items: center;
  }

  .galleryTopBox .galleryHead {
    width: 190px;
    margin-bottom: 0;
  }

  .galleryTopBox .galleryHead a {
    aspect-ratio: 1;
    border-radius: 8px;
  }

  .galleryTopBox .title {
    font-size: 1.6rem;
  }

  .galleryTopBox .title span {
    font-size: 1.6rem;
  }

.slideBlock {
  width: 770px;
}

.slideBlock .gallerySliderBox {
	padding: 4px;
}

.slideBlock .gallerySliderBox .image {
  border-radius: 6px;
}

}

@media print, screen and (min-width: 1201px) {

}


/*==========================================
 ニュース
===========================================*/

#news {
  width: 100%;
}

.newsBlock {
  width: 100%;
}

  .newsBox {
    padding: 2em .4em;
    border-bottom: 1px dotted #aaa;
  }

  .newsBox a {
    position: relative;
    display: block;
    text-decoration: none;
  }

  .newsBox .date {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--sub-color);
  }

  .newsBox .title {
    font-size: 1.3rem;
    font-weight: 500;
  }

@media print, screen and (min-width: 601px) {

  .newsBlock {
    width: 800px;
    margin-left: auto;
  }


  .newsBox {
  }

  .newsBox .date {
    display: inline-block;
    font-size: 1.8rem;
  }

  .newsBox .title {
    display: inline-block;
    font-size: 1.5rem;
    margin-left: 1em;
  }

}

/*==========================================
 ブログ
===========================================*/

#blog {
  width: 100%;
}

.blogBlock {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}


.blogBox {
	width: calc((100% - 10px) / 2);
  background: #fff;
  border: 1px solid var(--line-color);  
  box-shadow: 0 10px 10px -6px rgba(0,0,0,.3);
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.blogBox a {
	position: relative;
  display: block;
  text-decoration: none;
}

.blogBox:hover {
  box-shadow: 0 6px 10px -6px rgba(0,0,0,.3);
}

.blogBox .image {
  padding: 0.4em;
	width: 100%;
  transition: all 0.3s ease-in-out;
}

.blogBox a:hover .image {
  background-color: #fff;
  opacity: 0.8;
}

.blogBox .image img {
	width: 100%;
	height: auto;
}

.blogBox .textBlock {
  padding: 0.6em;
}

.blogBox .textBlock .blogHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .4em;
}

.blogBox .textBlock .blogHead .ctgry {
	width: 5em;
	padding: 0.2em 0.4em;
	font-size: 1.2rem;
	line-height: 1.2;
	text-align: center;
	color: #fff;
  border-radius: 4px;
  background: var(--sub-color);
}

.blogBox .textBlock .blogHead .date {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
	font-size: 1.5rem;
}

.blogBox .textBlock .title {
	font-size: 1.3rem;
  font-weight: 500;
}

@media print, screen and (min-width: 601px) {

  .blogBlock {
  }

  .blogBox {
    width: 230px;
    margin-bottom: 0;
  }

  .blogBox .textBlock {
  }

  .blogBox .textBlock .date {
    font-size: 1.8rem;
  }

  .blogBox .textBlock .title {
    font-size: 1.5rem;
  }

}

/*==========================================
 お役立ち情報
===========================================*/

#useful {
  width: 100%;
}

.usefulBlock {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.usefulTopBox {
	width: 48%;
	margin: 1.0%;
  padding: 20px 10px;
  text-align: center;
  background: #fff;
  border: 4px solid var(--main-color);
  box-shadow: inset 0px 0px 0px 6px rgba(63, 126, 68, .3);
}

.usefulTopBox .title {
	font-size: 1.4rem;
  font-weight: 500;
  color: var(--main-color);
  margin-bottom: 1em;
}

.usefulTopBox .title span {
	display: block;
	margin-bottom: 0.2em;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 2.0em;
  border-bottom: 1px solid var(--main-color);
}

.usefulTopBox .desc {
	font-size: 1.2rem;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 1em;
}

.usefulTopBox .btnMore2 {
  width: 80%;
  margin: 0 auto;
  height: 34px;
  line-height: 32px;
}

.usefulTopBox .btnMore2 a {
  display: block;
  position: relative;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.usefulTopBox .btnMore2 a:hover {
  background: #fff;
  color: var(--main-color);
}

@media print, screen and (min-width: 601px) {

  .usefulBlock {
  }

.usefulTopBox {
	width: 220px;
  padding: 2em 1em;
  margin: 0;
}

.usefulTopBox .title {
	font-size: 1.5rem;
}

.usefulTopBox .desc {
	font-size: 1.4rem;
}

.usefulTopBox .btnMore2 a {
  font-size: 1.4rem;
}

}

/*==========================================
 共通
===========================================*/

.topSection_wrap {
	width: 100%;
	position: relative;
  z-index: 0;
}

.topSection {
  width: 100%;
	padding: 40px 0;
	position: relative;
}

.topSectionBox {
	width: 100%;
	padding: 0 10px;
  position: relative;
}

.topSectionBox .topSectionHead {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

.topSectionBox .topSectionHead .heading {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--main-color);
}

.topSectionBox .topSectionHead .heading span {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 3.8em;
}

.topSectionBox .topSectionHead .btnMore {
}

.topSectionBox .topSectionHead .btnMore::after {
	content: '\f105';
	font-family: FontAwesome;
	font-size: 1.2rem;
	margin-left: 0.3em;
}

.topSectionBox .topSectionHead .btnMore a {
	font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.btnMore a:hover {
  color: var(--main-color);
}

@media print, screen and (min-width: 601px) {

  .topSection {
    padding: 80px 0;
  }

  .topSectionBox {
    width: 980px;
    margin: 0 auto;
	  padding: 0;
  }
	
  .topSectionBox .topSectionHead .heading {
    font-size: 1.5rem;
  }

  .topSectionBox .topSectionHead .heading::after {
    width: 14%;
  }

  .topSectionBox .topSectionHead .heading span {
  }

  .topSectionBox .topSectionHead .btnMore {
  }

  .topSectionBox .topSectionHead .btnMore::after {
    font-size: 1.5rem;
  }

  .topSectionBox .topSectionHead .btnMore a {
    font-size: 1.5rem;
  }
	
}

