@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::after{
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70px;
    height: 70px;
    background: #4c4398 url("/common/img/icon_arrow.png") no-repeat 24px 38px / 30px 8px;
    color: #fff;
    border-top-left-radius: 100%;
}
.interview_item:hover{
    opacity: 0.8;
}

.interview_item > figure{
    margin-bottom: 20px;
}
.interview_item > .name{
    color: #606060;
    margin-bottom: 10px;
}

.interview_item > h2{
    color: #4c4398;
    font-size: 2.0rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 2.0;
}

.interview_item > .voice-txt{
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 2.0;
}

.tag_list > div{
    display: flex;
    font-size: 1.4rem;
}
.tag_list > div dt,
.tag_list > div dd {
  padding: 5px; /* dtとdd間のスペース */
}

.tag_box{
    margin-bottom: 10px;
}

.tag_box > dt{
    min-width: 80px;
    background: #fff;
    padding: 2px !important;
    text-align: center;
}

.tag_list .tag_plan dt{
    border: 1px #764398 solid;
    border-radius: 2px;
    color: #764398;
}
.tag_list .tag_hall dt{
    border: 1px #d96297 solid;
    border-radius: 2px;
    color: #d96297;
}
.tag_list .tag_facility dt{
    border: 1px #336e75 solid;
    border-radius: 2px;
    color: #336e75;
}


/* 背景（オーバーレイ） */
.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;
}

.modal_box > .interview_item{
    box-shadow: inherit;
    max-width: 100%;
}
.modal_box > .interview_item::after{
    display: none;
}

.modal_close{
    background: #fff;
    border: solid 1px #4c4398;
    color: #4c4398;
    padding: 10px 20px;
    width: 200px;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 1, 1);
}
.modal_close:hover{
    background: #4c4398;
    border: solid 1px #4c4398;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .contents > section > div > p,
    .contents > section > p{
        font-size: 1.4rem;
    }
    
    .interview_item > h2{
        font-size: 1.6rem;
    }
    
    .interview_item > .voice-txt{
        font-size: 1.4rem;
        font-weight: normal;
    }
    
    .interview_item{
        margin: 0 auto 40px !important;
    }
}
