@charset "utf-8";
/* CSS Document */
body{
	background-color:#000;
	color:#fff;
  background-image: url('img/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 100vh;
	margin:0;
}

.main-visual {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1280px;
  height: 100vh;
  margin: 0 auto;
  z-index: 10;
  transition: opacity 0.8s ease;
}

.main-visual.hidden {
  opacity: 0;
  pointer-events: none;
}

.main-visual img {
  width: 100%;
  display: block;
  margin: 0 auto;
}


.content {
  margin-top: 80vh;
  opacity: 0;
  transition: opacity 0.8s ease;
	
}


.content-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.block {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: #333;
  padding: 2em;
  box-sizing: border-box;
}

/* 各背景画像を指定 */
.block01 {
  background-image: url('img/contentsbk01.png');
  width: 48%;
  aspect-ratio: 629 / 538;
	position: relative;
}

.block02 {
  background-image: url('img/contentsbk02.png');
  width: 48%;
  aspect-ratio: 630 / 542;
	position: relative;
}

.block03 {
	background-size: contain;
  background-image: url('img/contentsbk03.png');
  width: 100%;
  aspect-ratio: 1277 / 277;
	position: relative;
}

/* タブレット対応 */
@media screen and (max-width: 768px) {
  .content-blocks {
    flex-direction: column;
    gap: 16px;
  }

  .block01 {
    width: 100%;
  }
	
  .block02 {
    width: 100%;
  }

  .block03 {
    background-image: url('img/contentsbk04.png');
    width: 100%;
  aspect-ratio: 629 / 538;
  }
}

/* スマホ対応 */
@media screen and (max-width: 480px) {
  .block01 {
    background-image: url('img/contentsbk01_sp.png');
    width: 100%;
    aspect-ratio: 629 / 1200;
  }
	
  .block02 {
    background-image: url('img/contentsbk02_sp.png');
    width: 100%;
    aspect-ratio: 629 / 1200;
  }

  .block03 {
    background-image: url('img/contentsbk03_sp.png');
    width: 100%;
    aspect-ratio: 629 / 1200;
  }
}

.block01 .inner, .block02 .inner {
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1em;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

.block03 .inner{
  position: absolute;
  top: 0;
  left: 20%;
  right: 0;
  bottom: 0;
  padding: 1em;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
	
	.block03 .inner{
		top: 15%;
		left: 0;
		right: 0;
		bottom: 0;
	}
}

@media screen and (max-width: 480px) {
	.block01 .inner, .block02 .inner {
		top: 8%;
	}
	
	.block03 .inner{
		top: 8%;
		left: 0;
		right: 0;
		bottom: 0;
	}
}


.text-large-red {
  font-size: clamp(1rem, 2vw, 1.6rem);
  /*font-size: 1.6rem;*/
  font-weight: bold;
  color: #c00;
  margin-top: 0;
  margin-bottom: 0.5em;
	text-align:center;
}

.text-medium-white {
  font-size: clamp(0.7rem, 1vw, 1rem);
  font-weight: bold;
  color: #fff;
  background-color: #000;
  padding: 0.2em 0.6em;
	text-align:center;
	width:90%;
	margin:0 auto 0.2em;
}

.text-medium-black {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-weight: bold;
  color: #000;
	padding:0.2em 1em 0;
	margin: 0 auto 0.5em;
}

.text-small-list {
  font-size: clamp(0.6rem, 1vw, 1rem);
  color: #333;
  line-height: 1.6;
  padding-left: 2em;
  padding-right: 1em;
  margin: 0.5em 0;
}

.text-small-list li {
  list-style-type: disc;
  margin-bottom: 0.3em;
}

@media screen and (max-width: 768px) {
  .text-large-red {
    font-size: 1.6rem;
  }

  .text-medium-white,
  .text-medium-black {
    font-size: 1.1rem;
	  line-height:2rem;
  }

  .text-small-list {
    font-size: 16px;
	  padding:0.5rem;
	  padding-top:0;
	  padding-left:2rem;
  }

  .block .inner {
    padding: 0.8em;
  }
}

.notice-section {
  background-color: #e70012;
  padding: 2em 1em;
}
.notice-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2em;
}

.notice-text {
  flex: 1 1 60%;
  min-width: 250px;
}

.notice-image {
  flex: 0 0 300px;
  text-align: center;
  align-self: flex-end;
}

.notice-image img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .notice-inner {
    flex-direction: column;
    align-items: center;
  }

  .notice-text,
  .notice-image {
    width: 100%;
    text-align: center;
  }
	
	.notice-text .text-small-list{
    text-align: left;
	}
	
}


.notice-section a {
  color:#fff;
	line-height:2;
	font-size:1.1rem;
}
.notice-section p {
  color:#fff;
	margin:0;
	line-height:1.5;
}

.notice-section .storetitle{
	margin:2rem 0 0.5rem;
}

.notice-section h2.text-medium-white{
	font-size:1rem;
	width:100px;
	margin:1.5rem 0 1rem;
}

.notice-section .text-small-list{
	font-size: clamp(0.9rem, 1vw, 1rem);
	color:#fff;
}





/*スマホ時のみ有効*/
.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}


