@charset "utf-8";

#keyVisual{
	background: url("../img/keyvisual_pc.jpg") no-repeat right center / cover;
}

@media screen and (max-width: 1600px){
	#keyVisual{
		background-position: 50% center;
	}
}
@media screen and (max-width: 1024px){
	#keyVisual{
		background-position: 82% center;
	}
}
@media screen and (max-width: 768px){
	#keyVisual{
		background: url("../img/keyvisual_sp.jpg") no-repeat right center / cover;
	}
}

/* ------------------------------------------------------------------------ */

/* 共通

/* ------------------------------------------------------------------------ */
.contents,
.contents > section {
    text-align: left;
}

.contents > section {
    margin: 0 0 100px;
}

.contents > section > div{
    margin-bottom: 60px;
}

.contents > section > div > p,
.contents > section > p{
    font-size: 1.6rem;
    line-height: 2.0;
}

.contents > section > div > p > span{
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

#lead{
    font-size: 1.8rem;
    font-family: "Shippori Mincho", serif;
    font-weight: bold;
    line-height: 2.0;
    text-align: center;
    margin: 60px 0;
}

.ulStyle01 {
	margin	: 0 15px 10px;
    font-size: 1.6rem;
}

	.ulStyle01 li {
		list-style	: disc;
		margin		: 0 15px 3px;
		padding		: 0;
		text-align	: left;
	}

/* ------------------------------------------------------------------------ */

/* ご利用者の声

/* ------------------------------------------------------------------------ */
.interviewBox{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.interview_item{
    max-width: 420px;
    background: #fff;
    padding: 15px;
    margin: 0 20px 40px;
    text-align: left;
    font-size: 1.6rem;
    box-shadow: 3px 3px 13px 0px rgba(0,0,0,0.1);
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 1, 1);
}

.interview_item p{
    position: absolute;
    left: 9px;
    top: 9px;
    z-index: 99;
    color: #fff;
}

.interview_item::after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background: #282730 24px 0px / 30px 8px;
    border-bottom-right-radius: 100%;
}
.interview_item:hover{
    opacity: 0.8;
}

.dummy{
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}


/* 背景（オーバーレイ） */
.modal_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9998;
}

/* モーダル本体 */
.modal_box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; /* スマホ対応 */
    max-width: 800px; /* 最大幅 */
    background: #fff;
    padding: 20px;
    display: none;
    z-index: 9999;
    box-sizing: border-box;
    height: 600px;
    overflow-y: auto;
    transition: inherit;
}

.modal_box.interview_item{
    border: 4px solid #b48fcc;
    max-width: 424px;
    border-radius: 0;
    padding: 40px 20px 0;
    height: 620px;
}

.modal_box.interview_item::after{
    background: #b48fcc;
}

.modal_box.interview_item:hover{
    opacity: inherit;
}

.modal_close{
    position: absolute;
    top: 10px;
    right: 10px;
    background: #808080;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    font-size: 2.0rem;
    z-index: 99;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .interview_item{
        margin: 0 auto 40px !important;
    }
}
