@charset "UTF-8";
/*==============================================================*/
/*!　home　*/
/* ---------------------------------------------------------- */


/* CSS */

#home .container {
  padding: 0;
}

#home .container > .inner {
  padding: 0 10px;
}

@media (min-width: 768px) {
  #home .container > .inner {
    padding: 0;
  }
}

#home .category__title {
  display: inline-block;
  padding: 0 0 10px 0;
  background-image: url(../img/line_01.gif);
  background-repeat: repeat-x;
  background-position: left bottom;
}

#home .container__box {
  margin: 0;
}

#home .container__box .main {
  border-left: none;
  border-bottom: none;
}

@media (min-width: 768px) {
  #home .container__box .side {
    max-width: 200px;
  }
}

#home #slider__box {
  width: 100%;
  padding: 0 0 25px 0;
  position: relative;

}

@media (min-width: 768px) {
  #home #slider__box {
    padding: 0 0 55px 0;
	height: auto;
  }
}

#home #slider__text {
	width: 100%;
	padding: 0 0 25px 0;
	position: absolute;
	
	top: 45%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	z-index: 99;
	display: block;
	text-align: center;
	
	font-size: 1.692rem;
	letter-spacing: 0.5em;
	line-height:1.5;
	color: #fff;

	display: unset;
	align-items: center;
	justify-content: center;
	/*	text-shadow: 2px 3px 3px rgba(0, 0, 0, 1);*/

	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4),
	-2px 3px 10px rgba(0, 0, 0, 0.4),
	2px -3px 10px rgba(0, 0, 0, 0.4),
	-2px -3px 10px rgba(0, 0, 0, 0.4);
}

#home #slider__box .slider {
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
  line-height: 0;
}

#home #slider__box .slider.pc {
	display: none;
}

#home #slider__box .slider.sp {
	display: block;
}
@media (min-width: 960px) {
	#home #slider__box .slider.pc {
		display: block;
	}
	#home #slider__box .slider.sp {
		display: none
	}
}
#home #slider__box .slider img {
  object-fit: cover;
  font-family: "object-fit:cover;";
  width: 100%;
  height: 540px;
}

@media (min-width: 768px) {

  #home #slider__box .slider img {
	  height: 713px;
  }
}

#home #slider__box .slider .slider-item {
  position: relative;
}



#home #slider__box .slider .slick-prev {
  left: 0 !important;
}

#home #slider__box .slider .slick-next {
  right: 0 !important;
}

#home #slider__box .slider .slick-dots {
  margin: 0;
  padding: 0;
  bottom: 20px;
  left: 20px;
  width: auto !important;
}

#home #slider__box .slider .slick-dots li {
  display: inline-block;
  margin: 0 10px 0 0;
  background-color: #fff;
}

#home #slider__box .slider .slick-dots li button {
  position: relative;
  text-indent: -9999px;
}

#home #slider__box .slider .slick-dots li button:before {
  content: "";
  cursor: pointer;
  height: 13.5px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 24px;
  width: 13.5px;
}

#home #slider__box .slider .slick-dots li.slick-active {
  background-color: #33703D;
}


/*　スクロール　アニメーション　*/
#btn__scroll {
	display: table;
	padding: 0 0 26px 0;
	position: absolute;

	left: 50%;
	-webkit-transform: translate(-50%,0%);
	-moz-transform: translate(-50%,0%);
	-ms-transform: translate(-50%,0%);
	-o-transform: translate(-50%,0%);
	transform: translate(-50%,0%);
	z-index: 99;
	bottom: 0;
	
	text-align: center;
}

@media (min-width: 768px) {
  #btn__scroll {
    padding: 0 0 55px 0;
  }
}

#btn__scroll a {
	text-decoration: none;

}
#btn__scroll a:hover {
  opacity: .5;
}
#wrapper-inner {
  display: table-cell;
  vertical-align:middle;
  width:100%;
  height:100%;
}

#scroll-down {
    display: block;
    position: relative;
    padding-top: 60px;
}

#scroll-title {
	display: block;
	color: #fff;
	font-family: "Noto Serif JP Medium";
	font-size:　12px;
	font-weight:　bold;
	letter-spacing:.1em;
}
#scroll-down::before {
    -webkit-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    /* Safari 4+ */
    
    -moz-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    /* Fx 5+ */
    
    -o-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    /* Opera 12+ */
    
    animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    /* IE 10+, Fx 29+ */
    
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -1px;
    width: 1px;
    height: 60px;
    background: #fff;
    content: ' ';
}
@-webkit-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}
@-moz-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}

@-o-keyframes elasticus {
	0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}
@keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}

#home a.anchor{
   display: block;
   margin-top:-100px;
   padding-top:100px;
}

#home #news__box {
  padding: 60px 0 30px;
}

@media (min-width: 768px) {
  #home #news__box {
    padding: 60px 40px 30px;
  }
  #home #news__box .container__box .main {
    padding: 0 0 0 40px;
  }
}

#home #news__box .news__list li {
  margin: 0 0 15px 0;
}

#home #news__box .news__list li a {
  text-decoration: none;
  display: block;
}

#home #news__box .news__list li a:link, #home #news__box .news__list li a:visited, #home #news__box .news__list li a:focus {
  color: #000;
}

#home #news__box .news__list li a:hover {
  color: #E20A16;
}

#home #news__box .news__list li span {
  display: block;
}

#home #news__box .news__list li span.title {
  padding-left: 10em;
}

#home #news__box .news__list li time {
  display: block;
  float: left;
  width: 8em;
}

#home #concept__box {
  padding: 0px 0 35px 0;
  background-image: url(../img/home/bg_04.jpg), url(../img/home/bg_01.gif);
  background-repeat: no-repeat,no-repeat;
  background-position: center 70px,center bottom;
}

@media (min-width: 768px) {
  #home #concept__box {


    padding: 0 40px 120px;
    background-position: right top,left bottom;
  }
}

@media (min-width: 768px) {
  #home #concept__box .container__box {
    display: block;
    padding-top: 20px;
  }
}

@media (min-width: 768px) {
  #home #concept__box .container__box .main {
    padding: 0;
    margin-left: 30px;
  }
}

#home #concept__box .container__box .side {
  margin: 0 0 20px 0;
}

#home #concept__box .concept__block {
  width: 100%;
  max-width: 620px;
  padding: 40px 20px;
  margin: 360px auto 0;
  background-color: white;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
}

@media (min-width: 768px) {
  #home #concept__box .concept__block {
    padding: 60px 70px;
    margin: 0;
  }
}

#home #concept__box .concept__block .text__block h3 {
  font-size: 1.23077rem;
}

@media (min-width: 768px) {
  #home #concept__box .concept__block .text__block h3 {
    font-size: 1.53846rem;
  }
}

#home #concept__box .concept__block .text__block h3 span {
  font-size: 1.84615rem;
  margin: 0 20px;
}

#home #works__box {
  padding: 45px 0 20px;
}

@media (min-width: 768px) {
  #home #works__box {
    padding: 90px 40px 35px;
  }
  #home #works__box .container__box .main {
    padding: 0 0 0 50px;
  }
}

#home #contents__box {
  background-color: ;
  padding: 35px 0 20px;
}

@media (min-width: 768px) {
  #home #contents__box {
    padding: 70px 40px 40px;
  }
}

@media (min-width: 1020px) {
  #home #contents__box br.sp__new-line {
    display: none;
  }
}

#home #contents__box ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
}

#home #contents__box ul li {
  width: 49%;
  margin: 0 0 1.5% 0;
}

@media (min-width: 768px) {
  #home #contents__box ul li {
    width: 32%;
  }
}

#home #contents__box ul li a {
  background: transparent;
  height: 100px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: .3s;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background-color: #33703D;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

#home #contents__box ul li a::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  right: -100px;
  z-index: -1;
  border-right: 100px solid transparent;
  border-bottom: 100px solid #67ad73;
  transform: translateX(-100%);
  transition: transform ease .3s;
}

#home #contents__box ul li a:link, #home #contents__box ul li a:visited, #home #contents__box ul li a:focus {
  color: #fff;
}

#home #contents__box ul li a:hover {
  color: #fff;
}

#home #contents__box ul li a:hover::before {
  transform: translateX(0);
}

#home #contents__box ul li a span {
  width: 100%;
  display: block;
  position: relative;
}

#home #contents__box ul li a span:before {
  content: "\f054";
  right: 15px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

#home #about__box {
  background-image: url(../img/home/img_01.jpg);
  background-position: center top;
  background-size: cover;
  padding: 30px 0 0;
}

@media (min-width: 768px) {
  #home #about__box {
    padding: 60px 40px 0;
  }
  #home #about__box .container__box .main {
    padding: 0 0 0 60px;
  }
}

#home #about__box .about__block {
  width: 100%;
  max-width: 1000px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 55px 20px 0;
  background-color: rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
}

@media (min-width: 1100px) {
  #home #about__box .about__block {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    padding: 5% 8% 0;
    margin-top: 30px;
  }
  #home #about__box .about__block .photo__block {
    max-width: 320px;
    margin: -58px 0 0 0;
    text-align: right;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  #home #about__box .about__block .text__block {
    max-width: 470px;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  #home #about__box .about__block .text__block img {
	border-style: none;
	height: auto;
	max-width: 100%;
  }
  #home #about__box .about__block .text__block h3 {
    font-size: 1.53846rem;
  }
}

#home #about__box .about__block .photo__block {
  font-size: 0px;
  line-height: 0;

  text-align: center;
}

#home #about__box .about__block .text__block {
  width: 100%;
}

#home #about__box .about__block .text__block h3 {
  font-size: 1.53846rem;
}

#home #contact__box {
  padding: 30px 0 10px;
}

@media (min-width: 768px) {
  #home #contact__box {
    padding: 75px 40px 20px;
  }
  #home #contact__box .container__box .main {
    padding: 0 0 0 60px;
  }
}

#home #contact__box .contact__list__box ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

#home #contact__box .contact__list__box .tel, #home #contact__box .contact__list__box .mail {
  display: block;
  position: relative;
  text-decoration: none;
}

#home #contact__box .contact__list__box .tel:before, #home #contact__box .contact__list__box .mail:before {
  font-size: 0px;
  line-height: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  left: 0;
}

#home #contact__box .contact__list__box .tel {
  padding: 0 0 0 30px;
  margin: 0 30px 0 0;
  font-size: 1.84615rem;
  color: #33703D;
}

#home #contact__box .contact__list__box .tel:before {
  content: url(../img/icon_tel.png);
}

#home #contact__box .contact__list__box .mail {
  padding: 0 0 0 40px;
  margin: 0;
}

#home #contact__box .contact__list__box .mail:before {
  content: url(../img/icon_mail.png);
}


/* Blog・Column
---------------------------------------- */
#home #blog__box {
  padding: 60px 0 30px;
}

@media (min-width: 768px) {
  #home #blog__box {
    padding: 60px 40px 30px;
  }
  #home #blog__box .container__box .main {
    padding-left: 40px;
  }
}

/* blog list
---------------------------------------- */
#home #blog__box ul.blog__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}

#home #blog__box ul.blog__list li {
  box-sizing: border-box;
  flex: 1 0 49%;
  width: 49%;
  padding: 0 1%;
  margin: 0 0 15px;
}

/* 画像のアスペクト比を固定（例：4:3） */
#home #blog__box ul.blog__list li .photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;  /* ←ここで縦横比を指定（16 / 9 などに変えてもOK） */
  overflow: hidden;
  margin: 0 0 15px;
  font-size: 0;
  line-height: 0;
}

#home #blog__box ul.blog__list li .photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; /* 枠いっぱいにトリミング */
}

/* 日付・カテゴリなど */
#home #blog__box ul.blog__list li p.data {
  line-height: 1;
  margin: 0 0 10px;
}

#home #blog__box ul.blog__list li dl.category {
  color: #666;
  line-height: 1;
  margin: 0 0 15px;
}

#home #blog__box ul.blog__list li dl.category::after {
  content: "";
  display: block;
  clear: both;
}

#home #blog__box ul.blog__list li dl.category dt {
  float: left;
  width: 6em;
  padding: 0;
}

#home #blog__box ul.blog__list li dl.category dd {
  margin: 0;
  padding-left: 6em;
}

/* aタグ共通 */
#home #blog__box .blog__list li a {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  text-decoration: none;
  line-height: 1.6;
  color: #000;
}

#home #blog__box .blog__list li a:link,
#home #blog__box .blog__list li a:visited,
#home #blog__box .blog__list li a:focus {
  color: #000;
}

#home #blog__box .blog__list li a:link dl.category,
#home #blog__box .blog__list li a:visited dl.category,
#home #blog__box .blog__list li a:focus dl.category {
  color: #666;
}

/* hover時の共通アニメーション */
#home #blog__box ul.blog__list li a:hover {
  opacity: 0.8;
  transition: opacity 0.1s ease, color 0.1s ease;
  color: #E20A16;
}

#home #blog__box ul.blog__list li a:hover dl.category {
  color: #E20A16;
}

/* レイアウトのブレイクポイント */
@media (min-width: 960px) {
  #home #blog__box ul.blog__list li {
    flex: 1 0 24%;
    width: 24%;
    padding: 0 0.6%;
  }
}

div.mov {
	margin:0px 10px;
}

@media (min-width: 690px) {
	div.mov {
		margin:30px 30px 0px 30px;
	}
}


/* インスタ枠 */

#home #instagram__box {
  padding: 30px 0 10px;
  background-color: #f0f0f0;
}

@media (min-width: 768px) {
  #home #instagram__box {
    padding: 75px 40px 20px;
  }
  #home #instagram__box .container__box .main {
    padding: 0 0 0 40px;
  }
}


