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

.concept_wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 5vw;
	background: #fff;
}

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

.video-wrapper {
  flex: 1 1 300px;
  max-width: 300px;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.detail_wrap {
  width: 100%;
  position: relative;
  padding: 3vw 0 0;
	background: #fff;
}

.detail_content_01 {
  margin: 0 auto;
  padding: 2.5vw 2.5vw;
}

.detail_content_03{
	  display: flex;
            align-items: center;
            justify-content: center;
            max-width: 800px;
            margin: 0 auto;
}

 .image-content {
            width: 50%;
            padding: 20px;
}
        .image-content img {
            max-width: 100%;
            height: auto;
            display: block;
}

 .caption_title {
  font-family: "kozuka-gothic-pr6n", sans-serif;
        font-size: clamp(15px, 3.8vw, 25px);    
	line-height: 2.0;
	color: #c68042;
    font-feature-settings: "palt"1;
  font-weight: 500;
  text-align:  center;
}

 .caption_01 {
  font-family: "kozuka-gothic-pr6n", sans-serif;
        font-size: clamp(15px, 3.8vw, 18px);    
	line-height: 2.0;
	color: #c68042;
    font-feature-settings: "palt"1;
  font-weight: 500;
  text-align:  center;
}

 .caption_02 {
  font-family: "kozuka-gothic-pr6n", sans-serif;
        font-size: clamp(15px, 3.8vw, 10px); 
	line-height: 1.5;
    font-feature-settings: "palt"1;
  font-weight: 500;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
  width: fit-content;
}

 .caption_03 {
  list-style:none;
  text-align:  left;
}

@media screen and (max-width: 599px) {}
@media screen and (max-width: 960px) {
 .detail_content_03{
  flex-direction: column;
  text-align: center;
 }
 .image-content {
  width: 80%;
	 padding: 0;
 }
 }

@media screen and (max-width: 1024px) {}

@keyframes displayAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}