@charset "utf-8";
/* CSS Document */
.header {
    background-color: #fe9900;
}
.main .mv_pt {
  background: url("../images/main_img_top_pc.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  height: 571px;
}
.main .mv2_pt {
	margin-bottom: 2em;
}
.main .mv2_pt .layout .mv_text .special_pt ul {
	justify-content: start;
	gap: 1vw;
    margin-bottom: 6em;
}

.main .mv2_pt .layout .mv_text .special_pt ul li {
    width: 32%;
	background-color: #fff;
	border-radius: 10px;
    border: 1px solid #cccccc;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.3);
	padding: 0;
}
.main .mv2_pt .layout .mv_text .special_pt ul li img{
	border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.main .mv2_pt .layout .mv_text .special_pt .special_box{
	padding: 0 2em 0 2em;
}
.main .mv2_pt .layout .mv_text .special_pt ul li .title {
   text-align: left;
}
.layout .desc {
	margin-bottom: 2em;
	text-align: left;
	
}
@media screen and (max-width: 767px) {
  .main .mv_pt {
	width: 100%;
    margin: 0 auto;
    background: url("../images/main_img_top_sp.jpg") no-repeat;
    background-position: center;
    background-size: cover;
    height: 85vw;  
  }
	.main .mv2_pt .layout .mv_text .special_pt ul li {
        width: 100%;
        margin-bottom: 20px;
    }
}

/*------------------------------パンくず-------------------------------*/
.breadcrumb{
    color: #555;
    font-size: 11px;
    height: 30px;
    margin-bottom: 20px;
    padding: 5px;
    background: #fff;
    border-bottom: solid 1px #ccc;
    box-shadow: 0 1px 0 0px #cfcfcf;
}
.breadcrumb ul{
    width: 1180px;
	margin: 4 auto;
	padding: 0;
	list-style: none;
}
.breadcrumb li{
	float: left;
    margin-right: 50px;
}
.breadcrumb a{
	position: relative;
	text-decoration: none;
	color: #555;
}
.breadcrumb a:hover{
	text-decoration: underline;
}
.breadcrumb a:after{
    position: absolute;
    content: ">";
    top: 0;
    left: auto;
    right: -30px;
    display: block;
    color: #555;
}

/*------------------------------モバイル表示-------------------------------*/
.sp_hide{
	display: block !important;
}
@media screen and (max-width:641px) {
	.sp_hide{
		display: none !important;
	}
}