#hero_section {
  width: 100%;
}

.banner_image {
  position: relative;
  height: 100vh;
}

.banner_slider {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: url("../image/banner_img_bg.jpg");
  background-size: cover;
  background-position: center;
}

.banner_content {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 984px;
}

.banner_content img {
  width: 100%;
  height: auto;
  animation: ani-slg1 1s ease alternate;
}

@keyframes ani-slg1 {
  0% {
    transform: translateY(70px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* SNS_event styles */
#SNS_event {
  width: 100%;
  padding: 40px 20px;
  color: white;
  background-color: #D3CEC4;
  text-align: center;
}

.sns_event_card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.sns_event_item {
  width: 100%;
  max-width: 300px;
  background-color: black;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.sns_event_item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sns_event_item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.sns_event_item p {
  padding: 12px 0;
  font-size: 16px;
}

/* universe */
#universe {
    height: auto;
    padding: 30px 15px;
	background-color: #3c4b2c;
	color: #fff;
}

.universe_box {
    width: 100%;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.universe_text {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 20px;
}

.universe_box_text_content {
    top: auto;
    transform: none;
    padding: 0;
}

.universe_text h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.universe_text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.universe_text .page_landing_btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 8px;
	background-color: #00a029;
}

.universe_text .page_landing_btn:hover {
	background-color: #007f1f;
}

.universe_image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
}

.universe_image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* character styles */
#character {
	position: relative;
    background-color: #b6a49a;
}

.character_section_elem {
	position: relative;
	padding-bottom: 50px;
}

.character_table {
	position: relative;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	background-color: #6dd300;
	top: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	padding: 15px;
	box-sizing: border-box;
}

.character_element {
	box-sizing: border-box;
	flex: 1 1 150px;
	max-width: 250px;
	height: auto;
	background-color: #e3e3e3;
	border: 1px solid #5f5f5f;
	font-size: 14px;
	text-align: center;
	transition: all .2s;
	border-radius: 10px;
	overflow: hidden;
}

.character_element img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.character_element figcaption {
	padding: 8px 0;
	font-size: 14px;
}

.character_element:hover {
	background-color: navy;
	color: aqua;
}

/* novel style */
#novel {
    width: 100%;
    padding: 40px 15px;
    background-color: #00FFFF;
    box-sizing: border-box;
}

.novel_box {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

.novel_image {
    flex: 1 1 280px;
    max-width: 500px;
    min-height: 200px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: #5555559c 5px 3px 14px 3px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.novel_image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.novel_text {
    flex: 1 1 280px;
    max-width: 700px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: #5555559c 5px 3px 14px 3px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.novel_box_text_content {
    width: 100%;
}

.novel_text h3 {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.4;
}

.novel_text h3 .highlight {
    color: #0037ff;
}

.novel_text p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.novel_text p .highlight {
    font-weight: bold;
}

.novel_text .page_landing_btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background-color: #0037ff;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
}

.novel_text .page_landing_btn:hover {
    background-color: #001f7f;
}

/* brand style */
#brand {
    width: 100%;
    padding: 40px 15px;
    background-color: #555555;
    box-sizing: border-box;
}

.SNAPTIME, .Viridis {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

.SNAPTIME .brand_box, .Viridis .brand_box {
    flex: 1 1 300px;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: seashell;
    border-radius: 20px;
    box-shadow: #5555559c 5px 3px 14px 3px;
    padding: 15px;
    box-sizing: border-box;
}

.SNAPTIME .brand_box img, .Viridis .brand_box img {
    width: 150px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.SNAPTIME .brand_box {
    flex-direction: row;
}

.Viridis .brand_box {
    flex-direction: row-reverse;
}

.brand_box_text_content {
    flex: 1;
}

.brand_box_text_content h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.brand_box_text_content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.SNAPTIME .page_landing_btn {
    display: inline-block;
    padding: 10px 18px;
    background-color: #000;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 10px;
}

.SNAPTIME .page_landing_btn:hover {
    background-color: #555;
}

.Viridis .page_landing_btn {
    display: inline-block;
    padding: 10px 18px;
    background-color: #A7FC00;
    color: #000;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 10px;
}

.Viridis .page_landing_btn:hover {
    background-color: #00a029;
    color: #fff;
}

/* goods style */
#goods {
    width: 100%;
    padding: 50px 15px;
    background-color: #15923B;
    color: #A6E3A1;
    box-sizing: border-box;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.goods_box {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.goods_text h2 {
    margin-bottom: 10px;
    font-size: 24px;
}

.goods_text h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.goods_text p {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.goods_box .page_landing_btn {
    display: inline-block;
    padding: 10px 18px;
    background-color: #00a029;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 10px;
}

.goods_box .page_landing_btn:hover {
    background-color: #007a1f;
}

.goods_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.goods_item {
    width: 200px;
    height: 300px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    box-sizing: border-box;
}

.goods_item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.goods_item img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 6px;
}

.goods_item h4 {
    margin: 10px 0 5px 0;
    font-size: 16px;
}

.goods_price {
    font-weight: bold;
    font-size: 14px;
}