@charset "utf-8";

/* 追加 */

#join-img-wrapper img {
	width: 80%;
	height: auto;
	margin: 0 10%;
	cursor: pointer;
}

#light-box {
    display: none;
}

#light-box .light-box-inner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
	overflow: auto;
}

#light-box .light-box-inner .light-box-figure-wrapper {
    position: absolute;
    width: 80%;
    padding: 8px;
    background: #ffffff;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
    background: #ffffff;
}

@media only screen and (max-width: 768px) {
	#light-box .light-box-inner .light-box-figure-wrapper {
		width: 80%;
	}
}

#light-box .light-box-inner .light-box-figure-wrapper #light-box-img {
    width: 100%;
    height: auto;
}

#light-box .light-box-inner .light-box-figure-wrapper #light-box-close {
    position: absolute;
    width: 32px;
    height: 32px;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
	cursor: pointer;
}

#light-box .light-box-inner .light-box-figure-wrapper #light-box-close:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 100%;
    height: 2px;
    background: #ffffff;
}

#light-box .light-box-inner .light-box-figure-wrapper #light-box-close:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
    width: 100%;
    height: 2px;
    background: #ffffff;
}