@charset "utf-8";

/*---------------------------------------------------------------------------------------------

FLEX

---------------------------------------------------------------------------------------------*/

.flex {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.al-start {
  -webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.al-center {
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.jt-center {
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.jt-around {
  -ms-flex-pack: distribute;
	justify-content: space-around;
}

.jt-between {
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.jt-start {
  -webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.jt-end {
  -webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.flex_wrap {
  -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}

@media screen and (max-width: 768px) {

  .sp_noflex {
    display: block;
  }

  .sp_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

}

/*---------------------------------------------------------------------------------------------

PC

---------------------------------------------------------------------------------------------*/

@media screen and (min-width: 769px) {

  .onlyPC {
    display: block;
  }

  .onlySP {
    display: none !important;
  }

}

/*---------------------------------------------------------------------------------------------

SP

---------------------------------------------------------------------------------------------*/


@media screen and (max-width: 768px) {

  .onlyPC {
    display: none !important;
  }

  .onlySP {
    display: block;
  }

}

/*---------------------------------------------------------------------------------------------

コンテンツ

---------------------------------------------------------------------------------------------*/

#gnav .downs_3 li {
  width: calc(100% / 5);
}

.mv_wrap {
  position: relative;
}

.mv_wrap img {
  max-width: 100%;
  height: auto;
}

.mv_box {
  position: absolute;
  background: #FBFBF2;
  border: 2px solid #DD5726;
  padding: 35px;
  top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.mv_box h1 {
  font-size: 28px;
  color: #DD5726;
  margin-bottom: 10px;
  background: none;
}

.mv_box p {
  font-size: 16px;
}

.rec_list {
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.16);
}

.rec_list a {
  opacity: 1;
  transition: .3s;
}

.rec_list a:hover {
  text-decoration: none;
  opacity: .6;
}

.rec_box {
  max-width: 306px;
  width: 33.3%;
}

.rec_box:nth-of-type(2) {
  border-left: 1px solid #E8E8E8;
  border-right: 1px solid #E8E8E8;
}

.rec_box img {
  max-width: 100%;
  height: auto;
}

.section h2.rec_tit {
  position: relative;
    width: 85%;
    font-size: 20px;
    font-weight: 500;
    padding: 10px;
    text-align: center;
    margin: auto;
    margin-top: -15px;
    z-index: 2;
}

.rec_head {
  display: flex;
    align-items: center;
    justify-content: center;
  font-size: 14px;
  color: #DD5726;
  height: 40px;
  vertical-align: middle;
  text-align: center;
}

.rec_read {
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
}

.section.cat01 {
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  #gnav .downs_3 li.ups {
    width: 33.333%;
    border-bottom: 1px solid #E2DDCF;
  }
  #gnav .downs_3 li.downs:last-child a {
    border-right: 1px solid #EADEC8;
  }
  .content {
    padding: 0;
  }
  .mv_box {
    position: static;
    transform: none;
    border: none;
    background: transparent;
    padding: 0;
    margin-top: 30px;
  }
  .mv_box h1,
  .mv_box p {
    text-align: center;
  }
  .cat01 {
    margin-top: 30px;
  }
  .rec_list {
    width: 90%;
    margin: auto;
    box-shadow: none;
  }
  .rec_box {
    display: block;
    max-width: 100%;
    width: 100%;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.16);
    margin-bottom: 27px;
  }
  .rec_read {
    padding-bottom: 20px;
  }
  .pagetop {
    padding: 30px 10px 10px 10px;
  }
}