/*導入実績*/
.logo-inner{
	padding-left:50px;
	padding-right:50px;
}

.logo-area{
    box-shadow: 10px 10px 0px 0px #000000;
    border: 2px solid;
    border-radius: 15px;
    overflow: hidden;
}

.logo-area p{
    background: #FFCF14;
    border-bottom: 2px solid;
    text-align: center;
    font-weight: bold;
    padding: 30px;
    font-size: 25px;
}

.logo-list{
    padding: 45px 70px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.logo {
    width: calc((100% - 320px) / 8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img{
	width: 100%;
    height: auto;
}

.casestudy-button-area{
    display: flex;
    margin-top: 80px;
    justify-content: center;
    gap: 25px;
}

.casestudy-button-area .button-orange,
.casestudy-button-area .button-black
{
    margin: 0px;
    width: 550px;
}

/*導入事例インタビュー*/

.interview-mv-area{
    display: flex;
    gap: 20px;
    align-items: center;
}

.interview-mv-text-area{
	line-height: 1.5;
}

.interview-mv-text-area div{
	display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.interview-mv-name{
	font-size: 30px;
    font-weight: bold;
}

.interview-mv-number{
    border: 2px solid #000000;
    border-radius: 30px;
    background: #FFF31C;
    font-size: 24px;
    font-weight: bold;
    width: 110px;
    height: 40px;
    text-align: center;
}

.interview-title{
	font-size: 34px;
    font-weight: bold;
}

.interview-contents-group h2{
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 30px;
    border-bottom: 1px solid;
}

.middle-contents-title{
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 15px 0;
    position: relative;
    padding-left: 30px;
}

.middle-contents-title:before{
	position:absolute;
	top:calc((1.85em - 22px) / 2);
	left:0;
	content:'';
	background-image:url(https://www.dos-osaka.co.jp/deviceshutter/casestudy/img/icon_02.png);
	width:22px;
	height:22px;
}

.middle-contents-maintext{
	margin-bottom: 70px;
}

.interview-profile-logo{
	border: 2px solid #000000;
    border-radius: 40px;
    box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    margin-bottom: 40px;
}

.interview-profile-area{
	display: flex;
    gap: 65px;
}

.interview-profile-left{
	width: calc(100% - 885px);
}

.interview-profile-right{
    width: 820px;
}

.interview-profile-area img{
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

.interview-profile-bill{
	margin-top:30px;
}

.interview-profile-table{
	width: 100%;
}

.interview-profile-table table{
	padding: 50px 30px 50px 50px;
    background: #F2F2F2;
    width: 100%;
	border-radius: 40px;
	margin-bottom: 50px;
}

.interview-profile-table table tr{
    border-bottom: 2px solid #000000;
    display: flex;
    align-items: flex-start;
    padding: 25px 0;
}

.interview-profile-table table tr:first-child{
	padding-top:0;
}

.interview-profile-table table tr:last-child{
	padding-bottom:0;
}

.interview-profile-table table tr td{
    width: 80%;
}

.interview-profile-table table tr td:first-child{
    width: 20%;
    font-weight: bold;
}

.interview-profile-table table tr:last-of-type{
	border-bottom: none;
}

@media (max-width: 1500px) {

.interview-profile-left{
	width: 35%;
}

.interview-profile-right {
    width: calc(65% - 65px);
}
}

@media (max-width: 1300px) {
.logo-list{
    gap: 15px;
	padding: 30px 15px;
}

.logo {
    width: calc((100% - 30px) / 3);
}

.logo img {
	max-width: 200px;
}

}

@media (max-width: 1000px) {
.casestudy-button-area{
	flex-wrap: wrap;
}

.interview-mv-area{
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.interview-mv-area img{
        width: auto;
        height: auto;
        max-width: 100%;
}

.interview-mv-text-area div{
    flex-direction: column-reverse;
    gap: 20px;
    margin-bottom: 15px;
}

.interview-mv-number {
    border-radius: 20px;
    font-size: 20px;
    width: 110px;
    height: 32px;
}

.interview-mv-name{
    font-size: 18px;
}

.interview-title{
    font-size: 22px;
}

.interview-profile-area{
	flex-direction: column;
    align-items: center;
}

.interview-profile-logo{
    height: auto;
    margin-bottom: 40px;
    padding: 30px;
border-radius: 20px;
}

.interview-profile-table table{
	padding: 30px;
}

.interview-profile-table table tr{
	flex-direction: column;
	gap:10px;
}

.interview-profile-table table tr td,
.interview-profile-table table tr td:first-child{
    width: 100%;
}

.interview-profile-left,
.interview-profile-right{
        width: 80%;
}

}

@media (max-width: 800px) {

.logo-area p {
    font-size: 20px;
    padding: 30px 20px;
}

.logo-inner{
	padding-left: 15px;
    padding-right: 25px;
}

.casestudy-button-area{
    margin-top: 30px;
    gap: 15px;
}

.interview-contents-group h2{
	font-size: 20px;
    margin: 0 0 15px 0;
    padding-bottom: 15px;
}

.middle-contents-title{
    font-size: 18px;
    margin: 0 0 15px 0;
}

.middle-contents-maintext{
    margin-bottom: 40px;
}

.interview-contents-group h2:before,
.middle-contents-title:before{
    background-size: contain;
    width: 18px;
    height: 18px;
    top: calc((1.85em - 18px) / 2);
}

.casestudy-button-area .button-orange,
.casestudy-button-area .button-black{
	width: calc(100% - 65px);
}

.interview-profile-area img{
    max-width: 100%;
}

.interview-profile-table table{
	border-radius: 20px;
	margin-bottom: 30px;
}

.interview-profile-area{
	gap: 30px;
}


}

@media (max-width: 600px) {
.interview-profile-left,
.interview-profile-right{
        width: 100%;
}

}