@charset "Shift_JIS";

/* ---------- SLIDER AREA ---------- */

.slider_box{
	position: relative;
}

.slider_area{
	margin: 0px 0px 0px 0px;
	padding: 30px 0px 40px 0px;
	background-color: rgba(112,105,87,0.05);
	box-sizing: border-box;
}

.slick-slider
{
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
	
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    /**display: block;**/
  max-width: 100%;
  /*padding: 10px;*/
  box-sizing: border-box;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: inline-block;
}


.slick-slider{
  box-sizing: border-box;
  /*background-color: rgba(226,224,222);*/
}

.slick-slide{
  max-width: 100%!important;
}

.slick-dots{
  display: none!important;
}


.arrow_box{
  position: absolute;
  width: 830px;
  height: 40px;
  top: 0;
  left: 0;
  margin: auto;
  right: 0;
  bottom: 0;
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 35px;
  height: 35px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  border: none;
  outline: none;
  z-index: 1;
}

.slick-prev{
  left: 0;
  background: rgba(255,255,255,1.00);
  border-radius: 20px;
}

.slick-next {
  right: 0;
  background: rgba(255,255,255,1.00);
  border-radius: 20px;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: rgba(255,255,255,1.00);
  outline: none;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev:before {
  content: '';
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0;
  bottom: 0;
  left: 13px;
  margin: auto;
  border-top: 2px solid rgba(44, 93, 50, 1.00);
  border-right: 2px solid rgba(44, 93, 50, 1.00);
  z-index: 1;
  transform: rotate(-135deg);
}

.slick-next:before {
  content: '';
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0;
  bottom: 0;
  right: 13px;
  margin: auto;
  border-top: 2px solid rgba(44, 93, 50, 1.00);
  border-left: 2px solid rgba(44, 93, 50, 1.00);
  z-index: 1;
  transform: rotate(135deg);
}


/*----- WORKS SLIDE -----*/

.works_slide_area {
  margin: 0 auto;
  position: relative;
}

.works_slide_flame {
  width: calc(100% + (100vw - 100%) / 2);
}

.works_slide_list_area {
}

.slick__prev,
.slick__next {
  position: absolute;
  top: 40px;
  z-index: 1;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(40,120,60,1.00);
  background: rgba(40,120,60,1.00);
  transition: 0.25s ease-out;
}

.slick__prev:hover,
.slick__next:hover {
  background: rgba(255,255,255,1.00);
  transition: 0.25s ease-out;
}

.slick__prev {
  top: 0;
  left: -25px;
  bottom: 0;
  margin: auto;
}

.slick__next {
  top: 0;
  right: -25px;
  bottom: 0;
  margin: auto;
}

.slick__prev::before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: rgba(255, 255, 255, 1.00);
  height: 15px;
  width: 15px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  transition: 0.25s ease-out;
}

.slick__prev:hover::before{
  background: rgba(40,120,60,1.00);
  transition: 0.25s ease-out;
}

.slick__next::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: rgba(255, 255, 255, 1.00);
  height: 15px;
  width: 15px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: 0.25s ease-out;
}

.slick__next:hover::before{
  background: rgba(40,120,60,1.00);
  transition: 0.25s ease-out;
}

.works_list {
  width: 350px;
  height: 450px;
  margin-right: 30px;
}

.works_list a {
  position: relative;
  height: 100%;
  text-decoration: none;
  color: rgba(0,0,0,1.00);
  background: rgba(255,255,255,1.00);
  border: 1px solid rgba(0,0,0,1.00);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
  transition: 0.25s ease-out;
}

.works_list .title_area{
  font-size: 125%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.works_list .title_area span{
  font-size: 125%;
}

.works_list .img_area{
	overflow: hidden;
}

.works_list .img_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.25s ease-out;
}

.works_list a:hover img {
  transform:scale(1.05,1.05);
  transition: 0.25s ease-out;
}


@media all and (max-width:1280px){
	
.works_slide_area {
  margin: 0 auto;
  position: relative;
}

.works_slide_flame {
  width: calc(100% + (100vw - 100%) / 2);
}

.works_slide_list_area {
}

.slick__prev,
.slick__next {
  position: absolute;
  top: 40px;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.slick__prev {
  top: 0;
  left: -20px;
  bottom: 0;
  margin: auto;
}

.slick__next {
  top: 0;
  right: -20px;
  bottom: 0;
  margin: auto;
}

.slick__prev:before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: rgba(255, 255, 255, 1.00);
  height: 14px;
  width: 13px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.slick__next:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: rgba(255, 255, 255, 1.00);
  height: 14px;
  width: 13px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.works_list {
  width: 300px;
  height: 390px;
  margin-right: 25px;
}

.works_list a {
  position: relative;
  height: 100%;
  top: 0;
  left: 0;
  text-decoration: none;
  color: rgba(0,0,0,1.00);
  background: rgba(255,255,255,1.00);
  border: 1px solid rgba(0,0,0,1.00);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
  transition: 0.25s ease-out;
}

.works_list .title_area{
  font-size: 125%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.works_list .title_area span{
  font-size: 110%;
}
	
.works_list .img_area{
	overflow: hidden;
}

.works_list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.25s ease-out;
}

.works_list a:hover img {
  transform:scale(1.05,1.05);
  transition: 0.25s ease-out;
}
	
}


@media all and (max-width:960px), print{
	
.works_slide_area {
  margin: 0 auto;
  position: relative;
}

.works_slide_flame {
  width: calc(100% + (100vw - 100%) / 2);
}

.works_slide_list_area {
}

.slick__prev,
.slick__next {
  position: absolute;
  top: 40px;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.slick__prev {
  top: 0;
  left: -10px;
  bottom: 0;
  margin: auto;
}

.slick__next {
  top: 0;
  right: -10px;
  bottom: 0;
  margin: auto;
}

.slick__prev:before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: rgba(255, 255, 255, 1.00);
  height: 12px;
  width: 11px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.slick__next:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: rgba(255, 255, 255, 1.00);
  height: 12px;
  width: 11px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.works_list {
  width: 260px;
  height: 335px;
  margin-right: 20px;
}

.works_list a {
  position: relative;
  height: 100%;
  top: 0;
  left: 0;
  text-decoration: none;
  color: rgba(0,0,0,1.00);
  background: rgba(255,255,255,1.00);
  border: 1px solid rgba(0,0,0,1.00);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
  transition: 0.25s ease-out;
}

.works_list .title_area{
  font-size: 115%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.works_list .title_area span{
  font-size: 110%;
}

.works_list .img_area{
	overflow: hidden;
}
	
.works_list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.25s ease-out;
}

.works_list a:hover img {
  transform:scale(1.05,1.05);
  transition: 0.25s ease-out;
}
	
}


@media all and (max-width:640px){
	
.works_slide_area {
  margin: 0 auto;
  position: relative;
}

.works_slide_flame {
  width: calc(100% + (100vw - 100%) / 2);
}

.works_slide_list_area {
}

.slick__prev,
.slick__next {
  position: absolute;
  top: 40px;
  z-index: 1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.slick__prev {
  top: 0;
  left: -10px;
  bottom: 0;
  margin: auto;
}

.slick__next {
  top: 0;
  right: -10px;
  bottom: 0;
  margin: auto;
}

.slick__prev:before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: rgba(255, 255, 255, 1.00);
  height: 10px;
  width: 9px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.slick__next:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: rgba(255, 255, 255, 1.00);
  height: 10px;
  width: 9px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.works_list {
  width: 220px;
  height: 280px;
  margin-right: 15px;
}

.works_list a {
  position: relative;
  height: 100%;
  top: 0;
  left: 0;
  text-decoration: none;
  color: rgba(0,0,0,1.00);
  background: rgba(255,255,255,1.00);
  border: 1px solid rgba(0,0,0,1.00);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
  transition: 0.25s ease-out;
}

.works_list .title_area{
  font-size: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.works_list .title_area span{
  font-size: 110%;
}

.works_list .img_area{
	overflow: hidden;
}
	
.works_list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.25s ease-out;
}

.works_list a:hover img {
  transform:scale(1.05,1.05);
  transition: 0.25s ease-out;
}
	
}
