﻿@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  font-family: Microsoft JhengHei;
}
a {
  text-decoration: none;
  color: black;
}
a img {
  border: none;
}
a:hover,
a:focus {
  text-decoration: none;
}

:focus,
button:focus {
  outline: none;
}

ul,
ol {
  list-style: none;
  padding: 0;
}
html,
body {
  font-size: 20px;
  height: 100%;
}
body {
  overflow-x: hidden;
}
@media (max-width: 992px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  html {
    font-size: 12px;
  }
}
.clear {
  clear: both;
}
.row {
  margin: 0;
}
.main_content {
  position: relative;
	overflow-x: hidden;
	padding-top: 120px;
}<strong></strong>
@media(max-width: 484px){
	.main_content {
		padding-top: 80px;
	}
}

.container {
  max-width: 1200px; /*1140px*/
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
}
@media (max-width: 576px) {
  .container {
    width: 100%;
  }
}
/******************nav*/
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
.navbar {
  padding: 10px 0 0 0;
  width: 100%;
}
.navbar_bg {
  background-image: url(../img/navbar-bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  /* background-size: 100% 100%; */
  height: 213px;
  width: 100%;
}
.navbar_list a {
  display: block;
}
.navbar_list {
  display: flex;
  align-items: center;
}
.navbar_logo {
  flex-basis: 350px;
}
.navbar_logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.navbar_item {
  flex-grow: 1;
  text-align: center;
}
.navbar_item a {
  color: #ffda3e;
  letter-spacing: 2px;
  font-weight: 600;
}

.navbar_item a:hover{
	color: #d9ceaa;
}

.navbar_item.active a{
	color: #d9ceaa;
}

.navbar_item_line {
  position: relative;
}
.navbar_item_line::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 4px;
  background-color: #ffda3e;
}
.mobile_navbar {
  display: none;
}
#top_button {
  position: fixed;
  bottom: 150px;
  right: 20px;
  z-index: 99;
  border: none;
  background: none;
  cursor: pointer;
	transition: all 0.4s ease-in-out;
}

#top_button img{
	width: 30px;
}

#top_button:hover{
	opacity: 0.7;
}

#mobile_navbar_toggle_checkbox {
  display: none;
}
@media (max-width: 992px) {
  .navbar_logo {
    flex-basis: 290px;
  }
}
@media (max-width: 768px) {
  .main_navbar {
    display: none;
  }
  .mobile_navbar {
    padding: 5px 0 0 0;
    display: block;
  }
  .mobile_navbar_bg {
    background-image: url(../img/navbar-bg-767.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: 213px;
    width: 100%;
  }
  .mobile_navbar_toggle {
    position: absolute;
    top: 45%;
    bottom: 0;
    right: 30px;
    transform: translateY(-50%);
    color: white;
    display: flex;
    align-items: center;
    font-size: 35px;
  }
  .mobile_navbar_logo_wrap {
    position: relative;
    z-index: 300;
  }
  .mobile_navbar_logo_wrap > a {
    display: block;
    text-align: center;
  }
  .mobile_navbar_logo_wrap > a > img {
    max-width: 290px;
  }
  .mobile_navbar_toggle_times {
    display: none;
  }
  .mobile_navbar_list_wrap {
    display: none;
  }
  .mobile_navbar_list {
    position: fixed;
    background-color: #8e1d21;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
	  padding-top: 120px;
	  width: 100%;
  }
	@media(max-width:575px){
		.mobile_navbar_list {
			padding-top: 100px;
		}
	}
  .mobile_navbar_item {
    padding: 15px 0;
    background-color: #412210;
	  border-bottom: 2px solid #fff;
  }
  
  .mobile_navbar_item > a {
    color: #fff;
    letter-spacing: 2px;
    font-weight: 600;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .mobile_navbar_bg {
    background-image: url(../img/navbar-bg-484.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: 213px;
    width: 100%;
  }
	.mobile_navbar_logo_wrap > a > img{
		max-width: 200px;
	}
}

/******index.php首頁*/
/*********carousel*/
.index_carousel{
	position: relative;
	width: 100%;
}

.main_carousel {
  display: block !important ;
	width: 100%;
}
.main_carousel_item {
  height: 41.6667vw;
}
.main_carousel_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.mobile_carousel {
  display: none !important;
}
.mobile_carousel_item {
  height: 100.01vw;
}
.mobile_carousel_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

#main_carousel_dot{
	position: absolute;
	bottom: 14.7136vw;
	left: 10%;
	width: 80%;
	z-index: 9999;
}

#main_carousel_dot .slick-dots{
	text-align: right;
	padding-right: 10%;
}

#main_carousel_dot .slick-dots li button{
	width: 25px;
	height: 25px;
}

#main_carousel_dot .slick-dots li button:before{
	color: #fff;
	width: 25px;
	height: 25px;
	font-size: 16px;
}

#mobile_carousel_dot{
	position: absolute;
	bottom: 30vw;
	left: 10%;
	width: 80%;
	z-index: 9999;
	display: none;
}

#mobile_carousel_dot .slick-dots{
	text-align: right;
	padding-right: 10%;
}

#mobile_carousel_dot .slick-dots li button{
	width: 25px;
	height: 25px;
}

#mobile_carousel_dot .slick-dots li button:before{
	color: #fff;
	width: 25px;
	height: 25px;
	font-size: 16px;
}

@media (max-width: 768px) {
  .main_carousel {
    display: none !important;
  }
  .mobile_carousel {
    display: block !important ;
  }
	#main_carousel_dot{
		display: none;
	}
	#mobile_carousel_dot{
		display: block;
	}
}
/********************carousel*/
/*********************index about*/

.index_about {
  background-image: url(../img/about-bg.png);
  background-size: contain;
  background-repeat: repeat;
  position: relative;
  margin: 0 0 14vw 0;
}

.index_about_before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-95%);
}
.index_about_before > img {
  max-width: 100%;
}
.index_about_after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(95%);
}
.index_about_after > img {
  max-width: 100%;
}

.index_about_content {
  padding: 15px 0;
}

.index_about_content_top{
	position: relative;
}

.about_content_top{
	position: relative;
}

.index_about_content_top > .container {
  display: flex;
}

.about_content_top > .container {
  display: flex;
	align-items: flex-end;
}
.index_about_content_img {
  padding: 50px 0 0 0;
  width: 50%; /* 695 x 600 */
	height: 499px;
}

@media(max-width: 1200px){
	.index_about_content_img{
		height: 395px;
	}
}

@media(max-width: 992px){
	.index_about_content_img{
		height: 291px;
	}
}

@media(max-width: 768px){
	.index_about_content_img{
		height: calc((100vw - 30px) / 695 * 600);
	}
}

.index_about_content_img > img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: center center;
}
.index_about_content_text {
  width: 50%;
  padding-left: 15px;
}

@media(max-width: 768px){
	.index_about_content_text {
		padding-left: 0;
	}
}

.index_about_content_text_title {
  font-size: 35px;
  font-weight: 600;
  margin: 0 0 30px 0;
  letter-spacing: 2px;
	text-align: center;
}
.index_about_content_text_title > span {
  position: relative;
}
#index_about_content_text_title_title_anim {
  position: absolute;
  width: 242px;
  bottom: -48px;
  right: -65px;
}
.index_about_content_text_title_mobile {
  display: none;
}
.index_about_content_text_title_mobile > span {
  position: relative;
}
#index_about_content_text_title_mobile_title_anim {
  position: absolute;
  width: 242px;
  bottom: -48px;
  right: -65px;
}

.index_about_content_text_content {
  font-size: 25px;
	margin-top: 120px;
}

@media(max-width: 991px){
	.index_about_content_text_content {
		margin-top: 60px;
		font-size: 16px;
	}
}

@media(max-width: 767px){
	.index_about_content_text_content {
		margin-top: 30px;
		font-size: 18px;
	}
}

.index_about_content_list{
	padding-top: 60px;
}

.index_about_content_list > .container {
  display: flex;
}
.index_about_content_list_item {
  width: 33.33%;
  text-align: center;
  padding: 30px;
  box-sizing: border-box;
	position: relative;
}

.aboutitem_num{
	position: absolute;
	top: 10px;
	right: 30px;
	width: 60px;
}

@media(max-width: 991px){
	.aboutitem_num{
		width: 40px;
		top: 0px;
	}
}

@media(max-width: 767px){
	.aboutitem_num{
		width: 60px;
		top: 10px;
	}
}

@media(max-width: 480px){
	.aboutitem_num{
		width: 40px;
		top: 0px;
	}
}

.index_about_content_list_item_img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.index_about_content_list_item_img_line {
  position: relative;
}
.index_about_content_list_item_img_line::after {
  content: "";
  position: absolute;
  top: 19%;
  bottom: 15%;
  right: -30px;
  background-color: #c2b8aa;
  width: 3px;
}
.index_about_content_list_item_title {
  font-weight: 600;
  color: #970000;
  font-size: 32px;
  letter-spacing: 2px;
  padding: 15px 0;
}
.index_about_content_list_item_content_highlight {
  font-weight: 600;
  border-bottom: 2px solid #f68337;
}
.index_about_content_list_item_content {
  padding: 0 20px;
}
.index_about_more {
  text-align: right;
  padding: 40px 0 0 0;
}
.index_about_more_button {
  position: relative;
  z-index: 30;
  display: inline-block;
  color: white;
  background-color: #1e0f6d;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 3px;
  padding: 5px 40px;
  box-sizing: border-box;
	transition: all 0.4s ease-in-out;
}

.index_about_more_button:hover{
	opacity: 0.7;
}

.index_about_bg_item1 {
  position: absolute;
  z-index: 2;
  bottom: -320px;
  left: -250px;
  width: 750px;
}

.index_about_bg_item2 {
  position: relative;
  z-index: 2;
}
.index_about_bg_item2 > div {
  position: absolute;
  bottom: 3vw;
  transform: translateY(50%);
  right: 0;
  width: 32vw;
}
.index_about_bg_item2 > div > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.index_about_bg_item3 {
  position: relative;
  z-index: 2;
}
.index_about_bg_item3 > div {
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
  height: 42.6258vw;
  right: 0;
  width: 34vw;
  overflow: hidden;
}
.index_about_bg_item3 > div > img {
  position: absolute;
  right: -9vw;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.index_about_before_img2 {
  display: none;
}

@media (max-width: 992px) {
  .index_about_content_list_item {
    padding: 20px;
  }
  .index_about_content_list_item_img_line::after {
    right: -20px;
  }
}
@media (max-width: 768px) {
  .index_about_bg_item1 {
    display: none;
  }
  .index_about_bg_item3 > div {
    width: 46vw;
  }

  .index_about {
    background-image: url(../img/about-bg-mobile.png);
  }
  .index_about_content_text_title_mobile {
    display: block;
    font-size: 35px;
    font-weight: 600;
    margin: 0 0 30px 0;
    letter-spacing: 2px;
    text-align: center;
	  width: 100%;
  }
  .index_about_content_text_title {
    display: none;
  }
  .index_about_content_top > .container {
    flex-direction: column;
  }
	.about_content_top > .container {
    flex-direction: column;
  }
  .index_about_content_img {
    width: 100%;
  }
  .index_about_content_text {
    width: 100%;
  }
  .index_about_content_list > .container {
    flex-direction: column;
    align-items: center;
  }
  .index_about_content_list_item {
    width: 80%;
  }
  .index_about_content_list_item_img_line {
    position: relative;
  }
  .index_about_content_list_item_img_line::after {
    background: none;
  }
  .index_about_more {
    text-align: center;
  }
  .index_about_before_img1 {
    display: none;
  }
  .index_about_before_img2 {
    display: block;
  }
}
@media (max-width: 576px) {
}
/*********************index about */
/***********************index news******/
.index_news {
  background-image: linear-gradient(135deg, white, transparent),
    url(../img/bg2.png);
  background-position: center;
  padding: 30px 0 80px 0;
  z-index: 0;
}
.index_news_title {
  text-align: center;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 50px 0;
}
.index_news_title > span {
  position: relative;
}
#index_news_title_title_anim {
  position: absolute;
  width: 242px;
  bottom: -48px;
  right: -65px;
}
.index_news_list {
  display: flex;
}
.index_news_item {
  width: 33.33%;
  padding: 10px;
}
.index_news_item_img {
  position: relative;
}
.index_news_item_img > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.index_news_item_img_hover {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  color: white;
  font-size: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  font-weight: 600;
  cursor: pointer;
}
.index_news_item_img_hover:hover {
  opacity: 1;
}
.index_news_more {
  text-align: center;
  padding: 40px 0 0 0;
}
.index_news_more_button {
  display: inline-block;
  color: black;
  border: 1px solid black;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 3px;
  padding: 5px 40px;
  box-sizing: border-box;
	transition: all 0.4s ease-in-out;
}

.index_news_more_button:hover{
	background: #1e0f6d;
	border-color: #1e0f6d;
	color: #fff;
}

.index_news_item_date {
  padding: 5px 0;
}
.index_news_item_title {
  border-top: #970000 2px solid;
  color: #970000;
  font-size: 25px;
  font-weight: 600;
}
/***********************index news end******/
/***********************index product**/
.index_product {
  background: url(../img/index_product_bg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 80px 0;
  position: relative;
}
.index_product_bunchs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: right;
}
.index_product_bunchs > div {
  display: inline-flex;
  width: 50%;
	position: relative;
	z-index: 2;
}
.index_product_bunchs > div > img {
  width: 12.5%;
  object-fit: contain;
  object-position: top center;
}

.index_product_bunchs > div > img:hover {
  animation-name: shake;
  animation-duration: 1s;
  transform-origin: top center;
  transition-timing-function: ease;
}
@keyframes shake {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(12deg);
  }
  40% {
    transform: rotate(-12deg);
  }
  60% {
    transform: rotate(7deg);
  }
  80% {
    transform: rotate(-4deg);
  }
  100% {
    transform: rotate(0turn);
  }
}

.index_product_title {
  text-align: left;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 2px;
	margin-bottom: 80px;
}
.index_product_title > span {
  position: relative;
}
#index_product_title_title_anim {
  position: absolute;
  width: 242px;
  bottom: -48px;
  right: -65px;
}
.index_product_description {
  font-size: 25px;
  font-weight: 600;
}

.index_product_list{
	margin-top: 80px;
}

.index_product_item {
  margin: 35px 0;
  display: flex;
  flex-direction: column;
}
.index_product_item:hover .index_product_item_img_stick {
  opacity: 1;
  transform: translateX(0);
}
.index_product_item_img {
  display: flex;
  position: relative;
}
.index_product_item_img_sausage_spacing {
  width: 300px;
  flex-shrink: 0;
}
.index_product_item_img_sausage {
  position: relative;
  z-index: 2;
}
.index_product_item_img_sausage > img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: left center;
}
.index_product_item_img_stick {
  opacity: 0;
  transform: translateX(-50%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
}
.index_product_item_img_stick img {
  position: relative;
  z-index: 1;
}
.index_product_item_content {
  display: flex;
}
.index_product_item_content_left {
  color: #970000;
  font-size: 32px;
  font-weight: 600;
  padding: 0 20px;
  display: flex;
  align-items: center;
  width: 300px;
  flex-shrink: 0;
  box-sizing: border-box;
}
.index_product_item_content_left .bluebottom {
  color: #1e0f6d;
  border-bottom: #1e0f6d 2px solid;
}
.index_product_item_content_right {
  flex-grow: 1;
}
.index_product_item_content_right > img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: left center;
}
.index_product_title_wrap {
  display: flex;
}

#index_product_block{
	position: relative;
}

#index_product_bg_item_1 {
  position: absolute;
  width: 450px;
	right: 0;
	bottom: -150px;
}

@media(max-width: 1430px){
	#index_product_bg_item_1{
		display: none;
	}
}

.index_product_slogan {
  position: relative;
  z-index: 2;
  padding: 40px 0;
}
.index_product_slogan_top {
  color: #7b0000;
  font-size: 45px;
  font-weight: 600;
  text-align: right;
  border-bottom: #7b0000 5px solid;
  padding: 10px;
}
@media(max-width: 575px){
	.index_product_slogan_top{
		font-size: 28px;
	}
}
.index_product_slogan_bottom {
  text-align: right;
  padding: 10px;
}
@media(max-width: 575px){
	.index_product_slogan_bottom{
		font-size: 13px;
		padding: 10px 0;
	}
}
.index_product_bg_item_2 {
  position: relative;
}
.index_product_bg_item_2 > div {
  position: absolute;
  bottom: -10vw;
  transform: translateY(50%);
  left: -15vw;
  width: 47vw;
}
.index_product_bg_item_2 > div > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.index_product_diagram_wrap {
  padding: 60px 0 0 0;
}
.index_product_diagram_bgitem {
  position: relative;
}
.index_product_diagram_bgitem1 {
  position: absolute;
  right: 6vw;
  width: 15vw;
}
.index_product_diagram_bgitem2 {
  position: absolute;
  right: 150px;
  top: 40px;
  width: 200px;
}

@media(max-width: 1199px){
	.index_product_diagram_bgitem2 {
		top: -40px;
		width: 150px;
		right: 60px;
	}
}

@media(max-width: 991px){
	.index_product_diagram_bgitem2 {
		display: none;
	}
}

.index_product_diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.index_product_diagram_item {
	width: 260px;
}
.index_product_diagram_item img {
  width: 100%;
  display: block;
}
.index_product_diagram_top {
  position: relative;
	padding-bottom: 120px;
}
.index_product_diagram_bottom_wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.index_product_diagram_bottom_right {
  position: relative;
  box-sizing: border-box;
  display: flex;
  padding-left: 180px;
}
.index_product_diagram_bottom_left {
  position: relative;
  box-sizing: border-box;
  display: flex;
  padding-right: 180px;
}
.index_product_diagram_center_wrap {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}
.index_product_diagram_center {
  position: relative;
	width: 240px;
	height: 240px;
  border-radius: 50%;
  overflow: hidden;
}
.index_product_diagram_center img {
  width: 100%;
  display: block;
  height: 100%;
}
.index_product_diagram_center_hoverimg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.index_product_diagram_center_hoverimg img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: translateY(50%);
  opacity: 0;
  transition: 0.3s;
}
.index_product_diagram_active {
  transform: translateY(0) !important;
  opacity: 1 !important;
}
.index_product_diagram_dash_wrap {
  position: absolute;
	width: 100%;
}

#index_product_diagram_dash_left {
  position: absolute;
  width: 2px;
	height: 330px;
	border-left: 5px dashed #6d4826;
  top: -150px;
  left: -100px;
	transform: rotate(35deg);
	transform-origin: left;
}

#index_product_diagram_dash_right {
  position: absolute;
  width: 2px;
	height: 320px;
	border-left: 5px dashed #6d4826;
  top: -140px;
  right: -80px;
	transform: rotate(-35deg);
	transform-origin: left;
}

#index_product_dash_bottom {
  position: absolute;
  width: 365px;
	height: 2px;
	border-bottom: 5px dashed #6d4826;
  top: 280px;
  left: -60px;
}

.index_product_diagram_top_text {
  position: absolute;
  top: -56px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  font-weight: 600;
  font-size: 55px;
  color: #970000;
}

.index_product_more {
  text-align: center;
  padding: 0px 0 40px 0;
	position: relative;
	z-index: 2;
}
.index_product_more_button {
  display: inline-block;
  color: black;
  border: 1px solid black;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 3px;
  padding: 5px 40px;
  box-sizing: border-box;
	transition: all 0.4s ease-in-out;
}

.index_product_more_button:hover{
	background: #1e0f6d;
	border-color: #1e0f6d;
	color: #fff;
}

.index_product_diagram_mobile_wrap {
  display: none;
}
.index_product_item_mobile {
  display: none;
}
@media (max-width: 992px) {
  .index_product_bunchs > div {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .index_product_bunchs > div > img {
    width: 20%;
    object-fit: contain;
    object-position: top center;
  }
  .index_product_bunchs > div > img:nth-child(6) {
    display: none;
  }
  .index_product_bunchs > div > img:nth-child(7) {
    display: none;
  }
  .index_product_bunchs > div > img:nth-child(8) {
    display: none;
  }

  .index_product_item {
    flex-direction: column-reverse;
  }
  .index_product_item_content {
    flex-direction: column;
  }
  .index_product_item_content_right {
    padding: 10px 0 0 0;
  }
  .index_product_item_mobile {
    display: block;
  }
  .index_product_item_img {
    display: none;
  }
  .index_product_diagram_wrap {
    display: none;
  }
  .index_product_diagram_mobile_wrap {
    display: block;
  }
  .index_product_diagram_mobile_item {
    display: flex;
	  margin-bottom: 152px;
	  align-items: center;
  }
  .index_product_diagram_mobile_item_img {
    position: relative;
    width: 200px;
    flex-shrink: 0;
  }
  .index_product_diagram_mobile_item_img
    .index_product_diagram_mobile_item_img_top {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center center;
  }
  .index_product_diagram_mobile_item_img
    .index_product_diagram_mobile_item_img_dash {
    position: absolute;
    top: 100%;
    width: 100%;
    height: 188px;
    display: block;
    object-fit: contain;
    object-position: center center;
  }
  .index_product_diagram_mobile_item_content {
    flex-grow: 1;
  }
  .index_product_diagram_mobile_item_text {
    color: #6e4726;
  }
  .index_product_bg_item_1 {
    display: none;
  }
  .index_product_bg_item_2 {
    display: none;
  }
  .index_product_more {
    padding: 0px 0 40px 0;
    position: relative;
    z-index: 313;
  }
}
/***********************index product end**/
/***************index contact**/
.index_contact {
  padding: 50px 0 200px 0;
}
.index_contact_wrap {
  display: flex;
	align-items: center;
	position: relative;
}
.index_contact_title {
  text-align: left;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 2px;
}
.index_contact_title > span {
  position: relative;
}
#index_contact_title_title_anim {
  position: absolute;
  width: 242px;
  bottom: -48px;
  right: -65px;
}

.index_contact_title_mobile {
  display: none;
}
.index_contact_title_mobile > span {
  position: relative;
}
#index_contact_title_mobile_title_anim {
  position: absolute;
  width: 242px;
  bottom: -48px;
  right: -65px;
}

.contact_img {
  width: 40%; /* 570 * 700 */
	height: 567px;
}

@media(max-width: 1200px){
	.contact_img{
		height: 449px;
	}
}

@media(max-width: 992px){
	.contact_img{
		height: 332px;
	}
}

@media(max-width: 768px){
	.contact_img{
		height: calc((100vw - 30px) / 570 * 700);
	}
}

.index_contact_img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.contact_img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.index_contact_content {
  width: 50%;
	padding-left: 15px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	height: 38.5417vw;
}
.index_contact_text {
  padding: 50px;
}
@media (max-width: 768px) {
  .index_contact_wrap {
    flex-direction: column-reverse;
  }
  .index_contact_content {
    width: 100%;
	  padding-left: 0;
	  height: auto;
  }
  .index_contact_img {
    width: 100%;
  }
  .contact_img {
    width: 100%;
  }
  .index_contact_title {
    display: none;
  }
  .index_contact_title_mobile {
    display: block;
    text-align: center;
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 2px;
  }
}
/***************index contact end**/
/*******************footer*/
.footer_button {
  position: absolute;
  width: 100%;
  bottom: 10px;
}

.footer_button > .container {
  display: flex;
}

#footer_button_block{
	width: 100%;
	display: flex;
	justify-content: center;
}
.footer_button_link {
  display: inline-block;
  margin: 0 10px;
  box-sizing: border-box;
	transition: all 0.4s ease-in-out;
  max-width: 100%;
}

@media(max-width: 767px){
	.footer_button_link{
		width: 50%;
	}
}

.footer_button_link:hover{
	opacity: 0.7;
}

.footer_button_link > img {
  max-width: 100%;
}

#copyright {
  background-color: #79382d;
  text-align: center;
  color: white;
  padding: 5px 0;
	font-size: 16px;
}
@media (max-width: 768px) {
  .footer_button {
    z-index: 313;
    position: fixed;
    bottom: 45px;
    left: 0;
    right: 0;
  }
  #copyright {
    font-size: 10px;
  }
}
/***********************product_list.php***/
.product_list_head_img {
  position: relative;
  height: 40vw;
}
.product_list_head_img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: blur(5px);
}
.product_list_head_img_title {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product_list_head_img_title > img {
  width: 27vw;
  height: 100%;
  object-fit: scale-down;
  object-position: center center;
}
.product_list_breadcrumbs {
  font-weight: 600;
  color: #707070;
}
.product_list_breadcrumbs_active {
  color: #970000;
}
.product_list_item {
  padding: 30px 0;
  cursor: pointer;
}
.product_list_item_title {
  font-weight: 600;
  letter-spacing: 2px;
  color: #970000;
  font-size: 35px;
}
.product_list_content {
  position: relative;
  padding: 200px 0 180px 0;
  background: url(../img/index_product_bg.png);
  background-repeat: repeat;
  background-size: contain;
}

@media(max-width: 768px){
	.product_list_content {
		padding: 200px 0 100px 0;
	}
}

.product_list_bg_before {
  position: relative;
}
.product_list_bg_before > div {
  position: absolute;
  width: 100%;
  bottom: 0;
}
.product_list_bg_before > div > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}
.product_list_item_img {
  height: 370px;
  position: relative;
}
.product_list_item_img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 10px;
}
.product_list_item_img_hover {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 45px;
  font-weight: 600;
  border-radius: 10px;
  opacity: 0;
  transition: 0.3s opacity;
}
.product_list_item_img_hover:hover {
  opacity: 1;
}
.product_bunchs {
  position: relative;
  z-index: 1;
}
.product_bunchs > div {
  position: absolute;
  top: 0;
  display: inline-flex;
  width: 100%;
  left: 0;
  right: 0;
  text-align: right;
}
.product_bunchs > div > div {
  width: 6.25%;
  position: relative;
}
.product_bunchs > div > div:nth-child(1) {
  top: -7vw;
}
.product_bunchs > div > div:nth-child(2) {
  top: -6.2vw;
}
.product_bunchs > div > div:nth-child(3) {
  top: -5.2vw;
}
.product_bunchs > div > div:nth-child(4) {
  top: -5vw;
}
.product_bunchs > div > div:nth-child(5) {
  top: -4.8vw;
}
.product_bunchs > div > div:nth-child(6) {
  top: -5.2vw;
}
.product_bunchs > div > div:nth-child(7) {
  top: -6.3vw;
}
.product_bunchs > div > div:nth-child(8) {
  top: -7.35vw;
}
.product_bunchs > div > div:nth-child(9) {
  top: -9.1vw;
}
.product_bunchs > div > div:nth-child(10) {
  top: -11vw;
}
.product_bunchs > div > div:nth-child(11) {
  top: -12.3vw;
}
.product_bunchs > div > div:nth-child(12) {
  top: -13.3vw;
}
.product_bunchs > div > div:nth-child(13) {
  top: -13.7vw;
}
.product_bunchs > div > div:nth-child(14) {
  top: -13.9vw;
}
.product_bunchs > div > div:nth-child(15) {
  top: -13.6vw;
}
.product_bunchs > div > div:nth-child(16) {
  top: -13vw;
}

.product_bunchs > div > div > img {
  position: absolute;
  object-fit: contain;
  object-position: top center;
  left: 0;
  right: 0;

  width: 100%;
}

.product_bunchs > div > div > img:hover {
  animation-name: shake;
  animation-duration: 1s;
  transform-origin: top center;
  transition-timing-function: ease;
}
.product_list_bgitem_1 {
  position: relative;
  z-index: 2;
}
.product_list_bgitem_1 > div {
  position: absolute;
  bottom: -12vw;
  transform: translateY(50%);
  right: 3vw;
  width: 40vw;
}
.product_list_bgitem_1 > div > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.product_list_pagination {
  text-align: center;
  color: #970000;
  font-weight: 600;
}
.product_list_pagination > div {
  display: inline-block;
}
.product_list_pagination > div > span {
  display: inline-flex;

  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 10px;
  width: 35px;
  height: 35px;
	transition: all 0.4s ease-in-out;
  border-radius: 50%;
}

.product_list_pagination > div > span:hover {
	color: white;
  background-color: #970000;
}
.product_list_pagination > div > span a{
  transition: all 0.4s ease-in-out;
}

.product_list_pagination > div > span:hover a{
	color: white;
}

.pagination_current {
  color: white;
  background-color: #970000;
  border-radius: 50%;
}
.pagination_current > a {
  color: white;
}
@media (max-width: 992px) {
  .product_list_head_img {
    height: 70.01vw;
  }
  .product_list_head_img_title > img {
    width: 47vw;
  }
}
/***********************product_page.php***/
.product_page_head_img {
  position: relative;
  height: 40vw;
}
.product_page_head_img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: blur(5px);
}
.product_page_head_img_title {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product_page_head_img_title > img {
  width: 27vw;
  height: 100%;
  object-fit: scale-down;
  object-position: center center;
}
.product_page_bg_before {
  position: relative;
}
.product_page_bg_before > div {
  position: absolute;
  bottom: 0;
}
.product_page_bg_before > div > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}
.product_page_bgitem_1 {
  position: relative;
  z-index: 2;
}
.product_page_bgitem_1 > div {
  position: absolute;
  bottom: -12vw;
  transform: translateY(50%);
  right: 3vw;
  width: 40vw;
}
.product_page_bgitem_1 > div > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.product_page_content {
  position: relative;
  padding: 200px 0 180px 0;
  background: url(../img/index_product_bg.png);
  background-repeat: repeat;
  background-size: contain;
}

@media(max-width: 768px){
	.product_page_content {
		padding: 200px 0 100px 0;
	}
}

.product_page_breadcrumbs {
  font-weight: 600;
  color: #707070;
}
.product_page_breadcrumbs_active {
  color: #970000;
}
.product_page_top {
  display: flex;
  padding: 0 0 30px 0;
  border-bottom: 3px solid #970000;
}
.product_page_left {
  width: 40%;
}
.product_page_right {
  width: 60%;
}
.product_page_right_title {
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #970000;
  padding: 0 20px 20px 20px;
  border-bottom: #970000 3px solid;
}
.product_page_item_bottom {
  padding: 20px;
}
.product_page_item_bottom_titile {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #970000;
  padding: 20px 0;
}
.product_page_back {
  text-align: center;
  padding: 40px 0 0 0;
}
.product_page_back_button {
  display: inline-block;
  color: black;
  border: 1px solid black;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 3px;
  padding: 5px 40px;
  box-sizing: border-box;
	transition: all 0.4s ease-out;
}

.product_page_back_button:hover{
	background: #1e0f6d;
	border-color: #1e0f6d;
	color: #fff;
}

.product_page_right_content {
  padding: 20px;
}

.product-item-display-carousel {
  width: 55%;
  position: relative;
}
/*move*/
.product_item_display_carousel_for_item {
  padding: 20px;
  box-sizing: border-box;
  width: 31.25vw;
}
.product_item_display_carousel_for_item img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 10px;
}
.product_item_display_carousel_nav {
  
}
.product_item_display_carousel_nav_item {
	padding: 0 10px;
	width: 100%;
	box-sizing: border-box;
}
.product_item_display_carousel_nav_item img {
  display: block;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center center;
	transition: all 0.4s ease-in-out;
	cursor: pointer;
}

.product_item_display_carousel_nav_item img:hover{
	opacity: 0.7;
}

/*move*/
@media (max-width: 768px) {
  .product_page_top {
    flex-direction: column;
  }
  .product_page_left {
    width: 100%;
  }
  .product_page_right {
    width: 100%;
  }
}
/************about.php****/
.about_head_img {
  position: relative;
  height: 40vw;
}
.about_head_img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: blur(5px);
}
.about_head_img_title {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about_head_img_title > img {
  width: 27vw;
  height: 100%;
  object-fit: scale-down;
  object-position: center center;
}
.about_content {
  background-image: url(../img/about-bg.png);
  background-size: 100% auto;
  padding: 20px 0 120px 0;
}

@media(max-width: 767px){
	.about_content{
		padding-bottom: 60px;
	}
}

.about_breadcrumbs {
  font-weight: 600;
  color: #707070;
}
.breadcrumbs_index {
  color: #707070;
}
.about_breadcrumbs_active {
  color: #970000;
}
.about_bg_before {
  position: relative;
}
.about_bg_before > div {
  position: absolute;
  bottom: -10px;
}
.about_bg_before > div > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

@media (max-width: 992px) {
  .about_head_img {
    height: 70.01vw;
  }
  .about_head_img_title > img {
    width: 47vw;
  }
}
#about_bg_item2 {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 400px;
  transform: translateY(50%);
}

@media(max-width: 1500px){
	#about_bg_item2 {
		right: -150px;
	}
}

/**********************news_list.php***/
.news_list_head_img {
  position: relative;
  height: 40vw;
}
.news_list_head_img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: blur(5px);
}
.news_list_head_img_title {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news_list_head_img_title > img {
  width: 27vw;
  height: 100%;
  object-fit: scale-down;
  object-position: center center;
}
.news_list_breadcrumbs {
  font-weight: 600;
  color: #707070;
}
.news_list_breadcrumbs_active,
.news_list_breadcrumbs_active a {
  color: #970000;
}
.news_list_bg_before {
  position: relative;
}
.news_list_bg_before > div {
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
}
.news_list_bg_before > div > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}
.news_list_content {
  padding: 30px 0 120px 0;
  background: linear-gradient(135deg, white, transparent), url(../img/bg2.png);
  background-size: cover;
  background-position: center top;
}

@media(max-width: 768px){
	.news_list_content{
		padding: 30px 0 80px 0;
	}
}

.news_list_breadcrumbs {
  font-weight: 600;
  color: #707070;
}
.news_list_breadcrumbs_active {
  color: #970000;
}
.news_list_wrap {
  padding: 30px 0;
}
.news_list_item {
  padding: 40px;
  display: flex;
  border-bottom: #970000 3px solid;
}
.news_list_item_img_wrap {
  width: 30%;
  display: flex;
  align-items: center;
}
.news_list_item_img {
  margin: 0 auto;
  width: 80%;
  position: relative;
}
.news_list_item_img > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.news_list_item_text {
  width: 70%;
  cursor: pointer;
	transition: all 0.4s ease-in-out;
}
.news_list_item:hover .news_list_item_text{
  opacity: 0.5;
}
.news_list_item_title {
  font-size: 35px;
  color: #970000;
  font-weight: 600;
}
.news_list_item_date {
  font-size: 25px;
}
.news_list_item_content {
  padding: 20px 0 0 0;
  color: #970000;
}
.news_list_item_img_hover {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  color: white;
  font-size: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
	transition: all 0.4s ease-in-out;
}
.news_list_item:hover .news_list_item_img_hover{
  opacity: 1;
}
.news_list_bg_item3 {
  position: relative;
  z-index: 2;
}
.news_list_bg_item3 > div {
  position: absolute;
  bottom: 5vw;
  transform: translateY(50%);
  right: -9vw;
  width: 34vw;
}
.news_list_bg_item3 > div > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

@media (max-width: 992px) {
  .news_list_head_img {
    height: 70.01vw;
  }
  .news_list_head_img_title > img {
    width: 47vw;
  }
  .news_list_item_img_wrap {
    width: 50%;
  }
  .news_list_item_text {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .news_list_item {
    flex-direction: column;
  }
  .news_list_item_img_wrap {
    width: 100%;
  }
  .news_list_item_text {
    padding: 20px 0 0 0;
    width: 100%;
  }
  .news_list_item_img {
    width: 100%;
  }
}
/*********news_page.php***/
.news_page_head_img {
  position: relative;
  height: 40vw;
}
.news_page_head_img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: blur(5px);
}
.news_page_head_img_title {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news_page_head_img_title > img {
  width: 27vw;
  height: 100%;
  object-fit: scale-down;
  object-position: center center;
}
.news_page_breadcrumbs {
  font-weight: 600;
  color: #707070;
}
.news_page_breadcrumbs_active,
.news_page_breadcrumbs_active a {
  color: #970000;
}
.news_page_bg_before {
  position: relative;
}
.news_page_bg_before > div {
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
}
.news_page_bg_before > div > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}
.news_page_wrap {
  padding: 30px 0 180px 0;
  background: linear-gradient(135deg, white, transparent), url(../img/bg2.png);
  background-size: cover;
  background-position: center top;
}

@media(max-width: 768px){
	.news_page_wrap{
		padding: 30px 0 100px 0;
	}
}

.news_page_title_wrap {
  color: #970000;
  border-bottom: 3px solid #970000;
  padding: 0 0 5px 0;
}
.news_page_title {
  font-size: 35px;
  font-weight: 600;
  text-align: center;
}
.news_page_title_date {
  text-align: right;
}
.news_page_back {
  text-align: center;
  padding: 40px 0 0 0;
}
.news_page_back_button {
  display: inline-block;
  color: black;
  border: 1px solid black;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 3px;
  padding: 5px 40px;
  box-sizing: border-box;
}

.news_page_back_button:hover{
	background: #1e0f6d;
	border-color: #1e0f6d;
	color: #fff;
}

.news_page_img {
  height: 450px;
  width: 70%;
  margin: 20px auto;
}
.news_page_img > img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: center center;
}
.news_page_content {
  color: #970000;
}
.news_page_bg_item3 {
  position: relative;
  z-index: 2;
}
.news_page_bg_item3 > div {
  position: absolute;
  bottom: 5vw;
  transform: translateY(50%);
  right: -9vw;
  width: 34vw;
}
.news_page_bg_item3 > div > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
@media (max-width: 992px) {
  .news_page_head_img {
    height: 70.01vw;
  }
  .news_page_head_img_title > img {
    width: 47vw;
  }
}
@media (max-width: 768px) {
  .news_page_img {
    width: 90%;
  }
}
/****************************contact*/
.contact_head_img {
  position: relative;
  height: 40vw;
}
.contact_head_img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: blur(5px);
}
.contact_head_img_title {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_head_img_title > img {
  width: 27vw;
  height: 100%;
  object-fit: scale-down;
  object-position: center center;
}
.contact_breadcrumbs {
  font-weight: 600;
  color: #707070;
	margin-bottom: 30px;
}
.contact_breadcrumbs_active {
  color: #970000;
}
.contact_bg_before {
  position: relative;
}
.contact_bg_before > div {
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
}
.contact_bg_before > div > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}
.contact_bg_item3 {
  position: relative;
  z-index: 2;
}
.contact_bg_item3 > div {
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
  right: -9vw;
  width: 34vw;
}
.contact_bg_item3 > div > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.contact_wrap {
  padding: 30px 0 180px 0;
}

@media(max-width:768px){
	.contact_wrap{
		padding: 30px 0 100px 0;
	}
}

.contact_bg_item_1 {
  position: relative;
}
.contact_bg_item_1 > div {
  position: absolute;
  bottom: -4vw;
  transform: translateY(50%);
  right: -1vw;
  width: 28vw;
}
.contact_bg_item_1 > div > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.contact_content{
	display: flex;
	align-items: center;
}

@media(max-width: 768px){
	.contact_content{
		flex-wrap: wrap;
	}
}

.index_contact_img {
  width: 50%; /* 960 * 740 */
	height: 38.5417vw;
}

@media(max-width: 768px){
	.index_contact_img{
		width: 100%; /* 960 * 740 */
		height: 74.0723vw;
		margin-bottom: 20px;
	}
	.index_contact_img {
		padding-left: 0;
	}
}

.contact_content_block {
	width: 60%;
  padding-left: 15px;
}

@media(max-width: 768px){
	.contact_content_block {
		width: 100%;
	}
}

@media (max-width: 992px) {
  .contact_head_img {
    height: 70.01vw;
  }
  .contact_head_img_title > img {
    width: 47vw;
  }
}
