
 
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
			text-decoration: none;
        }

        body {
			font-family: 'Noto sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
			padding: 0;
			background: linear-gradient(180deg, #aebbf4 0%, #cfd4e4 100%);
			min-height: 100vh;
        }

        .logo-container {
           display: flex;
			justify-content: center;
			gap: 20px;
			margin-bottom: 50px;
			background: #05142f;
			padding: 20px;
        }

        .logo-button {
            background-color: #2c3e50;
            color: white;
            padding: 20px 60px;
            border: none;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .logo-button:hover {
            background-color: #34495e;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .card-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }
        .banner-warp {
            margin: 50px auto 0;
            background: #a4abc8;
            padding: 50px
        } 
        .banner-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }

        .card {
            width: 340px;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
			font-family: 'Noto sans';
        }
        .banner {
            width: 340px;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
			font-family: 'Noto sans';
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }
        .banner .thumbnail {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        .thumbnail {
            height: 240px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .title {
            background-color: #fff;
            padding: 25px 20px;
            color: #000;
            font-size: 18px;
            font-weight: 500;
            line-height: 1.5;
            min-height: 100px;
            display: flex;
            align-items: center;
        }

        .title:hover {
            background-color: #fff;text-decoration: underline;
        }

        .sns-links {
            max-width: 1200px;
            margin: 50px auto 0;
            padding: 30px;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 35px;
            flex-wrap: wrap;
        }

        .sns-links a {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: #2c3e50;
            font-weight: 600;
            font-size: 15px;
            padding: 10px 20px;
            border-radius:50px;
            transition: all 0.3s;
            background-color: rgba(255, 255, 255, 0.3);
			height: 40px;
			border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .sns-links a:hover {
            background-color: #e9ecef;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .sns-links img {
            vertical-align: middle;
        }
		.sorry{font-size: 18px;
			color: #4760b2;
			text-align: center;
			margin: 0 auto 50px;
			line-height: 22px;
			max-width: 90%;
		}
		.copyright{background: #e1e5eb;
			font-size: 14px;
			padding: 10px 20px;
			margin: 30px 0 0 0;
			text-align: center;
			width: 100%;
			color: #486d98;
		}


@media (max-width: 768px) {
		.logo-container{
			margin-bottom: 25px;
			padding: 10px;
		}
		.logo-container img{
			width: 190px;
			margin: 0 auto;
		}
		.sorry{
			margin: 25px auto ;
			font-size: 16px;
			line-height: 20px;
		}
		.sns-links{
			gap:15px;
			padding: 0px;
		}
		.card{box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);}
		.card-container{padding: 20px;}
		.card:hover {
            transform: translateY(-10px);
            box-shadow: 0 7px 25px rgba(0, 0, 0, 0.3);
        }
		.title{padding:0 20px}

}