@charset "UTF-8";
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	変数設定

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.container {
  width: 1200px;
  margin: 0 auto;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .container {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .container {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}
/*--------------------------------------------------------------
	keyvisualBlock
--------------------------------------------------------------*/
#keyvisualBlock ul {
  position: relative;
  width: 100%;
}
#keyvisualBlock li {
  position: absolute;
  top: 0;
  width: 55%;
}
#keyvisualBlock h2 {
  position: absolute;
  top: 50%;
  font-size: 4rem;
  color: #fff;
}
#keyvisualBlock li:nth-child(1) {
  left: 0;
}
#keyvisualBlock li:nth-child(1) h2 {
  right: 15%;
  transform: translate(0%, -50%);
}
#keyvisualBlock li:nth-child(2) {
  right: 0;
}
#keyvisualBlock li:nth-child(2) img {
  -webkit-mask-image: url("../../img/kv_mask.svg");
  mask-image: url("../../img/kv_mask.svg");
  mask-repeat: no-repeat;
}
#keyvisualBlock li:nth-child(2) h2 {
  left: 12%;
  transform: translate(0%, -50%);
}

/*--------------------------------------------------------------
	leadBlock
--------------------------------------------------------------*/
#leadBlock {
  padding: 120px 0;
}
#leadBlock section h3 {
  font-size: 2rem;
  color: #231815;
}
#leadBlock section h3 span {
  color: #fabe00;
  margin: 0 10px;
}
#leadBlock ul .img_box {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
#leadBlock ul .img_box img {
  transition: 0.3s ease;
}
#leadBlock ul h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 1;
}
#leadBlock ul h4 span {
  display: inline-block;
  position: relative;
  font-size: 2rem;
  line-height: 1;
  padding: 10px 20px;
}
#leadBlock ul h4 span::before,
#leadBlock ul h4 span::after,
#leadBlock ul h4::before,
#leadBlock ul h4::after {
  transition: 0.15s ease;
  position: absolute;
  content: "";
  background: #fff;
}
#leadBlock ul h4 span::before {
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
}
#leadBlock ul h4 span::after {
  bottom: 0;
  right: 0;
  width: 1px;
  height: 0;
}
#leadBlock ul h4::before {
  top: 0;
  right: 0;
  width: 0;
  height: 1px;
}
#leadBlock ul h4::after {
  top: 0;
  left: 0;
  width: 1px;
  height: 0;
}
#leadBlock ul li:hover .img_box img {
  transform: scale(1.1);
}
#leadBlock ul li:hover h4 span::before {
  width: 100%;
}
#leadBlock ul li:hover h4 span::after {
  height: 100%;
  transition-delay: 0.15s;
}
#leadBlock ul li:hover h4::before {
  width: 100%;
  transition-delay: 0.3s;
}
#leadBlock ul li:hover h4::after {
  height: 100%;
  transition-delay: 0.45s;
}

/*--------------------------------------------------------------
	resultBlock
--------------------------------------------------------------*/
#resultBlock {
  padding: 120px 0;
  background: #f4f4f4;
}

/*--------------------------------------------------------------
	bonsaiBlock
--------------------------------------------------------------*/
#bonsaiBlock {
  padding: 120px 0;
}
#bonsaiBlock .headline h2 img {
  margin-bottom: 10px;
}

#bonsaiImgList {
  overflow: hidden;
}
#bonsaiImgList li {
  float: left;
  width: 25%;
}

#bonsaiLeadBlock {
  padding: calc(120px / 3) 0 calc(120px / 2);
  background: #231815;
}
#bonsaiLeadBlock h4 {
  font-size: 1.25rem;
  text-align: center;
  color: #fff;
}

#oroshiBlock {
  overflow: hidden;
  background: rgba(35, 24, 21, 0.4);
}
#oroshiBlock div {
  float: left;
  width: 50%;
}
#oroshiBlock div:nth-child(2) {
  position: relative;
  background: url("../img/icon_link_white.svg") top 20px right 20px no-repeat;
}
#oroshiBlock .img_box img {
  width: 100%;
  transition: 0.3s ease;
}
#oroshiBlock a:hover .img_box img {
  transform: scale(1.1);
}
#oroshiBlock section {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#oroshiBlock h4 {
  font-size: 1.5rem;
}

/*--------------------------------------------------------------
	fusenCalendarBlock
--------------------------------------------------------------*/
#fusenCalendarBlock {
  margin-bottom: 120px;
}
#fusenCalendarBlock ul {
  overflow: hidden;
}
#fusenCalendarBlock li {
  float: left;
  width: 33.3333333333%;
}
#fusenCalendarBlock li:nth-child(2) img,
#fusenCalendarBlock li:nth-child(3) img {
  transition: 0.3s ease;
}
#fusenCalendarBlock a:hover li:nth-child(2) img,
#fusenCalendarBlock a:hover li:nth-child(3) img {
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  /*--------------------------------------------------------------
  	keyvisualBlock
  --------------------------------------------------------------*/
  #keyvisualBlock ul {
    position: static;
    width: 100%;
  }
  #keyvisualBlock li {
    position: relative;
    top: 0;
    width: 100%;
  }
  #keyvisualBlock h2 {
    position: absolute;
    top: 50%;
    margin-right: -50%;
    left: 50%;
    font-size: 2rem;
  }
  #keyvisualBlock li:nth-child(1) {
    left: 0;
  }
  #keyvisualBlock li:nth-child(1) h2 {
    right: auto;
    transform: translate(-50%, 50%);
  }
  #keyvisualBlock li:nth-child(2) {
    right: 0;
    top: -8%;
  }
  #keyvisualBlock li:nth-child(2) img {
    -webkit-mask-image: url("../../img/sp_kv_mask.svg");
    mask-image: url("../../img/sp_kv_mask.svg");
    mask-repeat: no-repeat;
  }
  #keyvisualBlock li:nth-child(2) h2 {
    left: 50%;
    transform: translate(-50%, -150%);
  }
  /*--------------------------------------------------------------
  	leadBlock
  --------------------------------------------------------------*/
  #leadBlock {
    padding: 50px 0;
  }
  #leadBlock section h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  #leadBlock section p {
    text-align: left;
  }
  #leadBlock ul .img_box {
    margin-bottom: 20px;
  }
  #leadBlock ul h4 {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 1;
  }
  #leadBlock ul h4 span {
    display: inline-block;
    position: relative;
    font-size: 2rem;
    line-height: 1;
    padding: 10px 20px;
  }
  #leadBlock ul h4 span::before,
  #leadBlock ul h4 span::after,
  #leadBlock ul h4::before,
  #leadBlock ul h4::after {
    transition: 0.15s ease;
    position: absolute;
    content: "";
    background: #fff;
  }
  #leadBlock ul h4 span::before {
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
  }
  #leadBlock ul h4 span::after {
    bottom: 0;
    right: 0;
    width: 1px;
    height: 0;
  }
  #leadBlock ul h4::before {
    top: 0;
    right: 0;
    width: 0;
    height: 1px;
  }
  #leadBlock ul h4::after {
    top: 0;
    left: 0;
    width: 1px;
    height: 0;
  }
  #leadBlock ul li:hover .img_box img {
    transform: scale(1.1);
  }
  #leadBlock ul li:hover h4 span::before {
    width: 100%;
  }
  #leadBlock ul li:hover h4 span::after {
    height: 100%;
    transition-delay: 0.15s;
  }
  #leadBlock ul li:hover h4::before {
    width: 100%;
    transition-delay: 0.3s;
  }
  #leadBlock ul li:hover h4::after {
    height: 100%;
    transition-delay: 0.45s;
  }
  /*--------------------------------------------------------------
  	resultBlock
  --------------------------------------------------------------*/
  #resultBlock {
    padding: 50px 0;
  }
  /*--------------------------------------------------------------
  	bonsaiBlock
  --------------------------------------------------------------*/
  #bonsaiBlock {
    padding: 50px 0;
  }
  #bonsaiBlock .headline h2 img {
    width: 240px;
    margin-bottom: 10px;
  }
  #bonsaiImgList {
    overflow: hidden;
  }
  #bonsaiImgList li {
    width: 50%;
  }
  #bonsaiLeadBlock {
    padding: 50px 0;
    background: #231815;
  }
  #bonsaiLeadBlock h4 {
    font-size: 1.2rem;
  }
  #oroshiBlock div {
    float: none;
    width: 100%;
  }
  #oroshiBlock div:nth-child(2) {
    position: static;
    background-position: top 10px right 10px;
  }
  #oroshiBlock section {
    position: static;
    top: 0;
    left: 0;
    margin: 0;
    padding: 20px 0;
    transform: none;
  }
  #oroshiBlock h4 {
    font-size: 1.2rem;
  }
  /*--------------------------------------------------------------
  	fusenCalendarBlock
  --------------------------------------------------------------*/
  #fusenCalendarBlock {
    margin-bottom: 50px;
  }
  #fusenCalendarBlock li {
    float: none;
    width: 100%;
    text-align: center;
  }
  #fusenCalendarBlock .img_box img {
    width: auto;
    max-width: 100%;
  }
}/*# sourceMappingURL=home.css.map */