/* -----------------------------------------------------------
　　　　業界別・分野別に見る（共通箇所）
-------------------------------------------------------------- */
/* モーダル本体 */
.modal__wrapper, .modal__wrapper02 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
}

.modal__layer, .modal__layer02 {
    height: 100%;
    background: rgba(50, 50, 50, .85);
    cursor: pointer;
}

.modal__container, .modal__container02 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 80px);
	height: auto;
    padding: 0;
    background: #fff;
    z-index: 99999;
	overflow: hidden;
}

.modal__inner, .modal__inner02 {
    position: relative;
    height: 100%;
    padding: 20px;
}

/* モーダルを閉じるボタン */
.modal__close, .modal__close02 {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
	background: var(--main-blue);
    cursor: pointer;
    transition: opacity .6s;
	z-index: 2;
}

.modal__close:hover,
.modal__close02:hover{
    opacity: .6;
}

.modal__close:before, .modal__close:after,
.modal__close02:before, .modal__close02:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1px;
    background: #fff;
    content: '';
}

.modal__close:before, .modal__close02:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close:after, .modal__close02:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 768px) {
    .trigger__wrap .modal__trigger:last-of-type,
	.trigger__wrap .modal__trigger02:last-of-type {
        margin: 0;
    }

    .modal__container, .modal__container02 {
        width: calc(100% - 40px);
        padding: 10px 0 10px;
        height: calc(100% - 20px);
    }
    
    .modal__inner, .modal__inner02 {
		overflow-y: scroll;
        padding: 0 10px;
    }
    
	/* モーダルを閉じるボタン */
    .modal__close, .modal__close02 {
        top: 20px;
        right: 20px;
        width: 34px;
        height: 34px;
    }
    
}

/* -----------------------------------------------------------
　　　　モーダル 業界別に見る
-------------------------------------------------------------- */
.trigger__wrap {
	display: flex;
    flex-wrap: wrap;
    gap: 20px;
	margin-top: 70px;
}

.modal__trigger {
	width: calc((100% - 40px) / 3);
    border-radius: 10px;
    height: 330px;
    position: relative;
    overflow: hidden;
	color: #fff;
	cursor: pointer;
}

/* モーダル内コンテンツ industry */
.modal__content.industry {
	color: #fff;
}
.modal__content.industry .modal__box {
	padding: 50px 50px;
	background-color: var(--main-black);
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
.modal__content.industry .modal__txtbox {
	width: 60%;
}
.modal__content.industry .modal__imgbox {
	width: 40%;
}
.modal__content.industry .modal__imgbox img {
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.modal__content.industry .industry-title {
    font-size: 3.5rem;
	font-family: var(--main-en);
	letter-spacing: .07em;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1;
}
.modal__content.industry .industry-en {
    font-family: var(--main-en);
    margin-right: 10px;
}
.modal__content.industry .industry-subtitle {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: .1em;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
	line-height: 1.3;
}
.modal__content.industry .industry-txt {
    line-height: 1.7;
    margin-bottom: 20px;
}
.modal__content.industry .industry-txt:last-of-type {
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	.trigger__wrap {
        display: block;
		margin-top: 30px;
    }
    
    .modal__trigger {
        width: 100%;
        margin: 0 0 20px;
        padding: 0;
		border-radius: 0;
		height: auto;
    }
	
    /* モーダル内コンテンツ industry */
	.modal__content.industry .modal__box {
		padding: 30px 20px;
		display: block;
	}
	.modal__content.industry .modal__txtbox {
		width: 100%;
	}
	.modal__content.industry .modal__imgbox {
		width: 100%;
		margin-top: 20px;
	}
	.modal__content.industry .industry-title {
		font-size: 2.2rem;
		margin: 30px 0 20px;
	}
	.modal__content.industry .industry-subtitle {
		font-size: 1.8rem;
		padding-bottom: 20px;
		margin-bottom: 20px;
		border-bottom: 1px solid #fff;
	}
	
	.modal__content.industry .industry-title {
		font-size: 2.3rem;
		margin-bottom: 20px;
	}
	.modal__content.industry .industry-subtitle {
		font-size: 1.8rem;
		line-height: 1.5;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
	.modal__content.industry .industry-txt {
		margin-bottom: 10px;
	}
	
}

/* -----------------------------------------------------------
　　　　モーダル 技術別に見る
-------------------------------------------------------------- */
.trigger__wrap02 {
	display: flex;
    flex-wrap: wrap;
    gap: 80px 30px;
	margin-top: 70px;
}
.modal__trigger02 {
	width: calc((100% - 90px) / 4);
    height: 200px;
    border-radius: 100px;
	overflow: visible;
	position: relative;
	color: #fff;
	cursor: pointer;
}

/* モーダル内コンテンツ technology */
.modal__content.technology .modal__box {
	display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 50px 50px;
	background-color: var(--en-gray);
}
.modal__content.technology .modal__box .technology-modal-txtbox {
	width: 60%;
}
.modal__content.technology .modal__box .technology-box {
	width: 40%;
}
.modal__content.technology .modal__box .technology-box img {
	width: 100%;
	object-fit: cover;
	object-position: center;
}
.modal__content.technology .modal__box .technology-title02 {
    font-size: 3.5rem;
	font-family: var(--main-en);
	letter-spacing: .07em;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1;
	color: #fff;
}
.modal__content.technology .modal__box .technology-txt {
    line-height: 1.8;
	text-align: left;
    margin-bottom: 40px;
	padding: 0 0;
	font-family: 'Lato', 'Zen Kaku Gothic New', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-weight: 400;
}
.modal__content.technology .modal__box .tec-sec {
    background-color: var(--en-light-gray);
    padding: 30px;
    border-radius: 10px;
}
.modal__content.technology .modal__box .tec-subtitle {
    color: var(--main-blue);
    font-size: 2rem;
	font-family: var(--main-en);
	letter-spacing: .07em;
    font-weight: 500;
    margin-bottom: 15px;
    border-left: 4px solid var(--main-blue);
    padding-left: 10px;
    line-height: 1.3;
}
.modal__content.technology .modal__box .tec-txt {
    color: var(--main-black);
    line-height: 1.7;
}

@media screen and (max-width: 768px){
	.trigger__wrap02 {
		display: flex;
		padding: 0 20px;
		gap: 70px 15px;
        margin-top: 30px;
	}
	.modal__trigger02 {
		width: calc((100% - 15px) / 2);
        height: auto;
	}
	
	/* モーダル内コンテンツ technology */
	.modal__content.technology .modal__box {
		flex-direction: column-reverse;
        gap: 0;
		padding: 30px 20px;
	}
	.modal__content.technology .modal__box .technology-modal-txtbox {
		width: 100%;
	}
	.modal__content.technology .modal__box .technology-box {
		width: 100%;
	}
	.modal__content.technology .modal__box .technology-title02 {
		font-size: 2.2rem;
		margin: 30px 0 20px;
	}
	.modal__content.technology .modal__box .technology-txt {
		margin-bottom: 20px;
	}
	.modal__content.technology .modal__box .tec-sec {
		padding: 30px 15px;
	}
	.modal__content.technology .modal__box .tec-subtitle {
		
	}
    
}	
