@charset "UTF-8";
.font-lato {
  font-family: 'Lato', sans-serif;
}

/*共通部分*/
.sp_nav_btn {
  position: absolute;
  right: 0;
  top: 3px;
}
.sp_nav_btn a {
  color: white;
}

/**********************************************************************
	ページヘッダ - className : Header
***********************************************************************/
.Header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  color: white;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  position: absolute;
  /*
  &.clone-nav {
  	display: block;
  	position: fixed;
  	top :0;
  	left :0;
  	z-index: 2;
  	transition: .5s;
  	width: 100%;
  	transform: translateY(-100%);
  	@include mq($break_sp) {
  		//display: none;
  	}
  }
  &.is-show {
  	transform: translateY(0);
  }
  */
}
@media only screen and (max-width: 767px) {
  .Header {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.7);
  }
}
.Header a {
  color: white;
}
.Header a:hover {
  text-decoration: none;
}

.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
  color: #e97198;
}

/**********************************************************************
	ページタイトル - className : Page_title
***********************************************************************/
.Page_title {
  background: #666;
}

/**********************************************************************
	SPナビゲーション - className : Page_title
***********************************************************************/
.Sp-nav {
  opacity: 0;
  height: 0;
}
.Sp-nav .sp-nav-header {
  background-color: #fdf1f4;
  position: relative;
  padding: 20px;
  /*
  a {
  	color: $base_font_color;
  	font-size: 20px;
  }
  */
}
.Sp-nav .sp-nav-header img {
  width: 40%;
  display: block;
}
.Sp-nav .sp-nav-header .close-sp_nav {
  position: absolute;
  width: 30px;
  display: block;
  top: 35%;
  right: 20px;
  cursor: pointer;
}
.Sp-nav .sp-gnav {
  padding: 10px;
  background-color: #fdf1f4 !important;
}
.Sp-nav .sp-gnav .sp-nav-list li {
  text-align: center;
  background-color: white;
  margin-bottom: 5px;
}
.Sp-nav .sp-gnav .sp-nav-list li a {
  color: #333;
  font-size: 1.4rem;
  display: block;
  padding: 10px;
}
.Sp-nav .sp-gnav .sp-nav-list li a span {
  display: block;
  text-align: center;
}
.Sp-nav .sp-gnav .sp-nav-list li a:hover {
  text-decoration: none;
  opacity: 0.7;
  transition: opacity .2s linear;
}

/**********************************************************************
	ぱんくず - className : Breadcrumb
***********************************************************************/
.Breadcrumb {
  background: #f2f2f2;
  padding: 10px 20px;
}
.Breadcrumb .Breadcrumb-separator li {
  display: inline-block;
}
.Breadcrumb .Breadcrumb-separator li:after {
  font-family: 'FontAwesome';
  content: '';
  font-size: 120%;
  padding: 0 0.5em;
}
.Breadcrumb .Breadcrumb-separator li:last-child:after {
  content: none;
}

/**********************************************************************
	ページフッタ - className : Footer
***********************************************************************/
.Footer {
  background: #363947;
  padding-top: 84px;
  padding-bottom: 20px;
  color: white;
}
@media only screen and (max-width: 767px) {
  .Footer {
    padding-top: 42px;
  }
}
.Footer .footer_link {
  text-align: center;
}
.Footer .footer_link li {
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .Footer .footer_link li {
    width: 48%;
  }
}
.Footer .footer_link li a {
  color: #ffffff;
  font-weight: bold;
  padding: 0 21px 0 23px;
}
@media only screen and (max-width: 979px) {
  .Footer .footer_link li a {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .Footer .footer_link li a {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .Footer .footer_link li {
    margin: 10px 0;
  }
  .Footer .footer_link li:nth-child(even) {
    border-left: solid 1px #d6d6d8;
  }
}
.Footer .footer_link li + li {
  border-left: solid 1px #d6d6d8;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .Footer .footer_link li + li {
    border-left: none;
  }
}
.Footer .Copyright {
  border-top: solid 1px #ffffff;
  font-family: 'Lato', sans-serif;
  padding-top: 10px;
  text-align: center;
}

/**********************************************************************
	ページトップ - className : Pagetop
***********************************************************************/
.Pagetop {
  cursor: pointer;
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 80px;
  height: 80px;
}
.Pagetop.fixed {
  position: absolute;
  top: -40px;
}

/**********************************************************************
	slick parts
***********************************************************************/
.slick-prev,
.slick-next {
  width: 30px;
  height: 30px;
}

.slick-prev:before,
.slick-next:before {
  content: "";
  width: 30px;
  height: 30px;
  color: inherit;
  opacity: 1;
  display: block;
}

.slick-next {
  right: 30.2%;
}
.slick-next:before {
  background: url(/common/images/ico_slick_arrow_next.png) no-repeat left top;
  -webkit-background-size: contain;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .slick-next {
    right: 15.2%;
  }
}

.slick-prev {
  left: 30.2%;
}
.slick-prev:before {
  background: url(/common/images/ico_slick_arrow_prev.png) no-repeat left top;
  -webkit-background-size: contain;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .slick-prev {
    left: 15.2%;
  }
}
