a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

a:link, a:visited, a:hover, a:active {
    color: inherit;
    text-decoration: none;
}

.sp {
    display: none;
}

#header{
	margin-top:80px;
	height:auto;
}

#header .sub_main{
	background-image:url(../img/jigyou_main.png);
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
	position:relative;
	height:60vh;
}

#header .sub_main h2{
	position:absolute;
	top: 50%;
	left:50%;
	-webkit-transform: translate(-50%, -50%);
  	transform: translate(-50%, -50%);
	font-size:30px;
}

#header ul.anker_list{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-align-items: stretch;
	align-items: stretch;
	align-content: flex-start;
	justify-content: center;
}
#header ul.anker_list li{
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	background: #FFF;
	border: #FA841D 1px solid;
	color: #FA841D;
}
#header ul.anker_list li:not(:last-child){
	border-right: 0;
}
#header ul.anker_list li a{
	display: block;
	width: 100%;
	height: 100%;
	padding: 29px 0;
	text-align: center;
	vertical-align: middle;
}
#header ul.anker_list li:hover,#header ul.anker_list li:first-child{
	/* background: #26A07B; */
	/* color: #FFF; */
}
#header ul.anker_list li a:hover{
	-ms-filter: "alpha(opacity100)";
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
}
#header ul.anker_list li a .list_box{
	padding-right: 30px;
	position: relative;
	font-size:18px;
	font-weight:500;
}
#header ul.anker_list li a .list_box::before,
#header ul.anker_list li a .list_box::after{
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	position: absolute;
}
#header ul.anker_list li a .list_box::before{
	border-width: 12px 7px 0 7px;
	border-color: #FA841D transparent transparent transparent;
	top: 6px;
	right: 0;
}
#header ul.anker_list li a .list_box::after{
	border-width: 10px 6px 0 6px;
	border-color: #FFF transparent transparent transparent;
	top: 7px;
	right: 1px;
}
#header ul.anker_list li a:hover .list_box::before{
	border-color: #FFF transparent transparent transparent;
}
#header ul.anker_list li a:hover .list_box::after{
	border-color: #FA841D transparent transparent transparent;
}

#sec01{
	max-width:1200px;
	width:80%;
	margin:0 auto;
}

section{
display: block;
    padding-top: 90px;
    margin-top: -90px;
}

section h2 {
    padding: 0;
}


/*
    スライダーの設定
*/
.products {
    width: 930px;
    max-width: 100%;
    height: auto;
    min-height: 500px;
    margin: 0 auto;
    position: relative;
}

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

.slick-prev::before {
        position: relative;
        content: "\f060";
        font-family: FontAwesome;
        background: rgba(255,255,255,0.5);
        padding: 10px;
        opacity: 1;
          }
 
.slick-next::before {
        position: relative;
    content: "\f061";
    font-family: FontAwesome;
    background: rgba(255,255,255,0.5);
    padding: 10px;
    opacity: 1;
          }
 
.slick-prev{
     left: 2%;
     }
.slick-next{
     right: 2%;
    }
 
.slick-prev:hover:before{
     animation: arrow_prev .5s ease-out forwards;
    }
@keyframes arrow_prev {
    0% {
      right: 0px;
    }
    50% {
      right: 5px;
    }
    100% {
          right: 0;
    }
}
 
.slick-next:hover:before{
    animation: arrow_next .5s ease-out forwards;
        }
    @keyframes arrow_next {
    0% {
      left: 0px;
    }
    50% {
      left: 5px;
    }
    100% {
      left: 0;
    }
}


#sec02,#sec03,#sec04{
	width:900px;
	margin: 30px auto;
}

#sec03 table,#sec04 table{
	width:100%;
}

#sec03 table td,#sec04 table td{
	border:1px solid #FA841D;
	padding: 10px 20px;
	font-size:16px;
	text-align:center;
}

#sec03 table th,#sec04 table th{
	background-color: #FA841D;
	color:#fff;
	text-align:center;
	padding:10px;
}


#sec05{
	width:1000px;
	margin:50px auto;
	text-align:center;
}
#sec05 .flex_box{
	justify-content:space-between;
}

#sec05 dl{
	width:24%;
	display:flex;
	flex-wrap:wrap;
	flex-direction:column;
}

#sec05 dl dt{
	position:relative;
	background-color:#FA841D;
	text-align:center;
	color:#fff;
	padding:10px;
	
}

#sec05 dl:nth-child(2n) dt{
	background-color:#FACF1D;
}

#sec05 dl dt h3{
	font-size:24px;
}

#sec05 dl dd{
	border:1px solid #FA841D;
	padding:5%;
	flex: 1 0 auto;
	text-align:left;
}

#sec05 dl:nth-child(2n) dd{
	border:1px solid #FACF1D;
	padding:5%;
}

#sec05 dl dd span{
	display:block;
	padding:10px;
	margin-top:10px;
	border:#B8B3B3 1px solid;
}

#sec05 dl dt:after{
	content:'';
	    width: 0;
    height: 0;
    border-width: 10px 0 10px 18px;
    border-style: solid;
    position: absolute;
    left: calc(50% - 10px);
    bottom: -18px;
}	

#sec05 dl:nth-child(1n) dt::after {
	border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #FA841D;
}

#sec05 dl:nth-child(2n) dt::after {
	border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #FACF1D;
}

#sec05 a{
	color:#EDAD0C;
	text-decoration:underline;
}

#sec05 .link{
	width:auto;
	margin:30px auto;
}

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

#sec03, #sec04, #sec05{
	width:90%;
}

.products {
    width: 100%;
    max-width: 100%;
    min-height: auto;
}

#header{
	margin-top:0;
}
}

@media screen and (max-width:480px) {
	.sp {
    display: block;
}
    .slick-prev{
        left: 30px;                 
    }
     .slick-next{
       right: 30px;
    }
	
	#sec01 .flex_box{
		display:block;
	}
	
	#sec01 .flex_item{
		width:100%;
		margin:10px 0;
	}
	

	
	#header ul.anker_list li {
    height: auto;
}
	#header ul.anker_list li a {
    padding: 10px 0 10px;
    font-size: 12px;
}

	#header ul.anker_list li a .list_box {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    align-content: center;
    height: 100%;
    text-align: center;
    padding: 0 0 20px;
	font-size:12px;
	font-weight:normal;
}

#header ul.anker_list li a .list_box::before, #header ul.anker_list li a:hover .list_box::before {
    top: auto;
    bottom: 0;
    right: calc(50% - 7px);
}

#sec05 .flex_box{
	display:block;
}

#sec05 dl{
	width:100%;
	height:auto;
	margin-bottom:10px;
}
	
}