@charset "UTF-8";
/* CSS Document */

body {
    background: #000000;
}

#header {
	width: 100%;
	padding: 0;
	margin: 0;
}

#header img {
	width: 100%;
	height: auto;
}

#page {
	width: 70%;
	text-align: center;
	margin: 0 auto;
	padding: 0;
}

#page img {
	width: 100%;
	height: auto;
}

.youtube {
  width: 100%;
	margin: 0 auto;
  aspect-ratio: 16 / 9;
	text-align:center;
	z-index: 998;
}

.youtube video {
  width: 100% !important;
  height: 100% !important;
}

#shop {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
	margin-top: 100px;
}

#shop a{
	color: #FFFFFF;
}

/* PC → 2列 */

#shop {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
	margin-top: 4px;
}

#shop a {
    display: block;
    width: 48%;
}

#shop img {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease; /* ホバー時のアニメのため */
}

/* ホバーで半透明 */
#shop a:hover img {
    opacity: 0.6;
}

#footer {
	color: #686868;
	margin: 20px auto;
	text-align: center;
}

.company {
	line-height: 1.5;
	font-size: 20px;
}

/* スマホ */
@media screen and (max-width: 767px) {
	
#page {
	width: 100%;
	text-align: center;
	margin: 0 auto;
	padding: 0;
}
	
.company {
	font-size: 50%;
}

.address {
	font-size: 20%;
}
	
}

