@charset "utf-8";

/*------------------------------------------------------------------------------------------------ ▼ #cover --*/

@media all {
	.plan-list {
		a.plan {
			display: flex;
			padding: 50px 50px 15px;
			border: 1px solid #ddd;
			border-radius: var(--border-radius-light);
			
			.plan-photo {
				display: flex;
				align-items: center;
				justify-content: space-between;
				position: relative;
				width: 350px;
				aspect-ratio: 16 / 10;
				margin-right: 50px;
				border-radius: var(--border-radius);
				background-position: center;
				background-size: cover;
			}
			
			.plan-photo::before,
			.plan-photo::after {
				content: '';
				width: 30px;
				height: 100px;
				background: rgba(0, 0, 0, 0.5);
			}
			
			.plan-overview {
				margin: 15px 0;
				padding: 0px 0;
				border-top: 0px dashed #ccc;
				border-bottom: 0px dashed #ccc;
				
				font-size: 15px;
			}
			
			.plan-title {
				font-size: 24px;
			}
		}
		
		a.plan::before {
			content: '選択する';
			display: flex;
			position: absolute;
			bottom: 30px;
			right: 30px;
			padding: 18px 40px;
			border: 1px solid #fa0;
			border-radius: 5px;
			
			font-size: 28px;
			color: #f90;
		}
		
		a.a-en::before {
			content: 'Select';
		}
		
		li:nth-child(n + 2) a.plan {
            margin-top: 15px;
        }
	}
}
