/**
* Template Name: Gp
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
## 文字色
--------------------------------------------------------------*/
body {
	/* ----- */
	font-family: "Open Sans", sans-serif;
	color: #444444;
}

a {
	/* ----- */
	color: #ffc451;
	text-decoration: none;
}

a:hover {
	/* ----- */
  color: #ffd584;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #660000;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #ffffff;
  line-height: 0;
}

.back-to-top:hover {
  background: #330000;
}

.back-to-top:hover i {
  color: #ffc451;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #ffc451;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}


/*--------------------------------------------------------------
# Header Color
## 文字色
--------------------------------------------------------------*/
#header.header-scrolled,
#header.header-inner-pages {

	/* background Color */
	background: rgba(0, 0, 0, 0.8);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
	/* LOGO Color */
	color: #ffffff;
}

#header .logo a span {
  color: #ffc451;
}

#header .logo img {
  max-height: 40px;
}


/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #ffc451;
}

.get-started-btn:hover {
  background: #ffbb38;
  color: #343a40;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
## Navigation Menu Color
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 10px 30px;
	font-size: 15px;
	font-weight: 100;
	
	/* Menu Text Color */
	color: #ffffff;
	white-space: nowrap;
	transition: 0.3s;
}


.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
	/* Menu Text Hover Color */
	color: #ffc451;
}


.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #151515;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background-color: #ffc451;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}


/*--------------------------------------------------------------
# Movile
--------------------------------------------------------------*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
	/*--- 重要 ---*/
   	display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
	/*--- 重要 ---*/
  	display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
//  background-color  //
  background-color: #454545;
  overflow-y: auto;
  transition: 0.9s;
}


/*-------- ---*/
/*--- 重要 ---*/
.navbar-mobile {

	.mobile_li{
		/*--- 重要 ---*/
		display: block;
		text-align: right;
	}
}


/*-------- ---*/
/*--- 重要 ---*/
.mobile_menu_top {
	text-align: center;
}
.mobile_menu_top h4 {
	display:inline-block;
	color: #ffffff;
	font-size: 32px;
  	font-weight: 900;
	text-align: center;
	border-bottom:solid;
	border-width:1px;
	line-height: 32px
}

/*-------- ---*/
/*--- 重要 ---*/
@media (min-width: 991px) {

	.mobile_menu_top {
		display: none;
	}
}




.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 28px;
//     font-color    //
  color: #ffffff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #151515;
  background-color: #ffc451;
		display: block;
		text-align: right;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  background-color: #ffc451;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/





/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  //padding-top: 74px;
  padding-top: 0px;
  text-align: center;
}

#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #ffc451;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #ffc451;
}

#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#hero .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#hero .icon-box h3 a:hover {
  color: #ffc451;
}

#hero .icon-box:hover {
  border-color: #ffc451;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {

  #hero  {

    background-position: -240px 0px;

  }
	
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 32px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ffde9e;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 0px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #ffc451;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 20px;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
  border-radius: 50%;
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 0px;
    padding: 0px 0;
}

.features .icon-box {
  padding-left: 15px;
}

.features h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #ffc451;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  //min-height: 400px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/
.services .icon-box .icon {
  margin: 0 auto;
  width: 240px;
  height: 240px;
  background: #ffc451;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 a:hover {
  color: #ffc451;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  	background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta-bg.jpg") fixed center center;
  	//background-size: cover;
  	//padding: 60px 0;
  	margin-bottom:0px
    	background-size: auto;
    	height: 600px;
  
}

.cta h3 {
  color: #fff;
  font-size: 46px;
  font-weight: 900;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #ffc451;
  border-color: #ffc451;
  color: #151515;
}


/*--------------------------------------------------------------
# Cta-02
--------------------------------------------------------------*/
.cta02 {
  	background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta-bg02.jpg") fixed center center;
  	//background-size: cover;
  	//padding: 60px 0;
  	margin-bottom:0px
    	background-size: auto;
    	height: 500px;
  
}

.cta02 h3 {
  color: #fff;
  font-size: 46px;
  font-weight: 900;
}

.cta02 p {
  color: #fff;
}

.cta02 .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta02 .cta-btn:hover {
  background: #ffc451;
  border-color: #ffc451;
  color: #151515;
}



/*--------------------------------------------------------------
# Cta-03
--------------------------------------------------------------*/
.cta03 {
  	//background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta-bg03.jpg") fixed center center;
  	//background-size: cover;
  	//padding: 60px 0;
  	margin-bottom:0px
    	background-size: auto;
    	height: 500px;
	//background-position: -400px 0px; 
  
}

.cta03 h3 {
  color: #fff;
  font-size: 46px;
  font-weight: 900;
}

.cta03 p {
  color: #fff;
}

.cta03 .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta03 .cta-btn:hover {
  background: #ffc451;
  border-color: #ffc451;
  color: #151515;
  
}



/*--------------------------------------------------------------
# Cta-04
--------------------------------------------------------------*/
.cta04 {
  	background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta-bg04.jpg") fixed center center;
  	//background-size: cover;
  	//padding: 60px 0;
  	margin-bottom:0px
    	background-size: auto;
    	height: 500px;
	//background-position: -400px 0px; 
  
}

.cta04 h3 {
  color: #fff;
  font-size: 46px;
  font-weight: 900;
}

.cta04 p {
  color: #fff;
}

.cta04 .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta04 .cta-btn:hover {
  background: #ffc451;
  border-color: #ffc451;
  color: #151515;
}



/*--------------------------------------------------------------
# Cta-05
--------------------------------------------------------------*/
.cta05 {
  	background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta-bg05.jpg") fixed center center;
  	//background-size: cover;
  	//padding: 60px 0;
  	margin-bottom:0px
    	background-size: auto;
    	height: 500px;
	//background-position: -400px 0px; 
  
}

.cta05 h3 {
  color: #fff;
  font-size: 46px;
  font-weight: 900;
}

.cta05 p {
  color: #fff;
}

.cta05 .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta02 .cta-btn:hover {
  background: #ffc451;
  border-color: #ffc451;
  color: #151515;
}


/*--------------------------------------------------------------
# Cta-06
--------------------------------------------------------------*/
.cta06 {
  	background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta-bg06.jpg") fixed center center;
  	//background-size: cover;
  	//padding: 60px 0;
  	margin-bottom:0px
    	background-size: auto;
    	height: 500px;
	//background-position: -400px 0px; 
  
}

.cta06 h3 {
  color: #fff;
  font-size: 46px;
  font-weight: 900;
}

.cta06 p {
  color: #fff;
}

.cta06 .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta02 .cta-btn:hover {
  background: #ffc451;
  border-color: #ffc451;
  color: #151515;
}



/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
  background: #454545;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  //color: #151515;
  background: #770000;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
  border-radius: 16px;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #ffc451;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 20px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 8px;
  //padding-bottom: 40px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #770000;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #770000;
}

.portfolio-details .portfolio-info {
  //padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .content {
  padding: 30px 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #151515;
}

.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #ffc451;
  float: left;
}

.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #151515;
  margin-left: 50px;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #3b3b3b;
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #3b3b3b;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #626262;
}

.counts .image {
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .counts .image {
    text-align: center;
  }

  .counts .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
	padding-left: 100px;
	padding-right: 100px;
  
}


.testimonials .testimonial-item .testimonial-img {
  width: 50%;
  border-radius: 8%;
  border: 6px solid rgba(0, 0, 0, 0.15);
  margin: 0 auto;
}

.testimonial-item img {
  //width: 600px;

}



.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
  opacity: 1;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding-top: 32px;
   padding-bottom: 0px;
}

.team .member {
  margin-bottom: 0px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #151515;
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  transition: ease-in-out 0.3s;
  color: #484848;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a:hover {
  color: #151515;
  background: #ffc451;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #151515;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  background: #ffc451;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ffc451;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #ffc451;
  border: 0;
  padding: 10px 24px;
  color: #151515;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ffcd6b;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer Color
## Footer Color
--------------------------------------------------------------*/
#footer {
	/* --- Background Color --- */
	  background: black;
	  padding: 0 0 30px 0;
	  color: #fff;
	  font-size: 14px;
}

#footer .footer-top {
	
	/* --- Background Color --- */
	background: #151515;
	border-bottom: 1px solid #222222;
	padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: #ffc451;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}


#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #660000;
  color: #ffffff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}


/*--------------------------------------------------------------
# Footer Company Rect
--------------------------------------------------------------*/
#footer .footer-top .social-links a:hover {
  background: #ffc451;
  color: #151515;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ffc451;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 0px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  padding-top: 8px;
  padding-bottom: 8px;
}

#footer .footer-top .footer-links ul li a:hover {
  color: #ffc451;
}


/*------------------------------
# Rect. Under Menu ↓
## Rect. Under Menu
------------------------------*/
.footer-links li a {
	display: block;
	height: 100%;
	width: 100%
}

.footer-links li:hover {

	border-radius: 3px;
	background: #808080;
}

.footer-links li:active {

	border-radius: 3px;
	background: #770000;
}

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

	.footer-links li {

		font-size: 20px;
	}
}
/*------------------------------
# ↑
------------------------------*/



.footer-newsletter {
  border-radius: 10px;
  //margin-left: 4px;
  //margin-right: 4px;
  background: #a0a0a0;
  padding-left: 6px;
  padding-right: 8px;
  position: relative;
  border-radius: 4px;
}


#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ffc451;
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ffcd6b;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}


.title-rect {
	color: #fff;
	font-size: 28px;
	font-weight: bold;
	background: #770000;
	margin-bottom: 12px;
	text-align: center;

}



.title-red-top {
	border-radius: 10px;  
  	text-align: center;
	width: 100%;
  	background: #ff0000;
	padding-top: 16px;
	padding-bottom: 16px;
	padding-left: 8px;
	padding-right: 8px;
	margin-bottom: 12px;
	margin-top: 12px;
}


.title-red {
	border-radius: 10px;  
  	text-align: center;
	width: 100%;
  	background: #ffffff;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 8px;
	padding-right: 8px;
	margin-bottom: 12px;
	margin-top: 12px;
}


.title-white {
	border-radius: 10px;  
  	text-align: center;
	width: 100%;
  	background: #ffffff;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 8px;
	padding-right: 8px;
	margin-bottom: 12px;
	margin-top: 12px;
}

.title-white-msg {
	color: #676767;
	font-size: 16px;
}



.title-red-top h10 {
  font-weight: 900;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 32px;
  //line-height: 26px;
}



/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	
	.testimonials .testimonial-item {
	padding-left: 0px;
	padding-right: 0px;
	}
}


.text-a {
	color: #ff0000;
	width: 100%;
  	padding-left:25%;
  	padding-right:25%;
  	padding-top: 14%;
  	padding-bottom: 20%;
}


.text-b {
	text-align: center;
	color: #ff0000;
	width: 100%;
	padding-left:25%;
	padding-right:25%;
	padding-top: 7%;
	//padding-bottom: 10%;
}


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

	.text-a {
	  	padding-left:10%;
	  	padding-right:10%;
  	}

	.text-b {
	  	padding-left:10%;
	  	padding-right:10%;
  	}

}




/*--------------------------------------------------------------
# Video
--------------------------------------------------------------*/
.video_wrapper {
    margin-top: 73px;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;
}


.video_wrapper > video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
    //margin-top: -200px;
}

.video_wrapper img {
    position: absolute;
    margin-top: -100px;
}

.video_wrapper p {
	position: absolute;
	margin-top: -100px;
	top:50%;
	left: 20%;
	color: #ffffff;
	font-size: 66px;
	font-weight: 900;
	line-height: 58px
}


@media screen and (max-width: 768px) {
	
	.video_wrapper {
	    margin-top: 0px;
	}
	
	.video_wrapper img {
	margin-top: -10px;
	    width: 68%;
	}
	
}

/*--------------------------------------------------------------
# Append Button
--------------------------------------------------------------*/
.button_yellow {
	color: #ffffff;
	background: #770000;
	padding: 6px 12px 6px 12px;
	margin-left: 20px;
	margin-right: 12px;
	border: 1;
	border-radius: 20px;
	border: 1px solid #770000;
	font-size: 16px;
	outline: none;
	cursor: pointer;
}

.button_yellow:active {
	background: #000080;
	border: 1px solid #000080;
}


.button_black {
	color: #ffffff;
	background: #770000;
	padding: 6px 12px 6px 12px;
	margin-left: 20px;
	margin-right: 12px;
	border: 1;
	border-radius: 20px;
	border: 1px solid #770000;
	font-size: 16px;
	outline: none;
	cursor: pointer;
}

.button_black:active {
	background: #000033;
	border: 1px solid #000033;
}


.button_white {
	color: #787878;
	background: #ffffff;
	padding: 6px 12px 6px 12px;
	margin-left: 20px;
	margin-right: 12px;
	border: 1;
	border-radius: 4px;
	border: 1px solid #787878;
	font-size: 18px;
	outline: none;
	cursor: pointer;

}


.button_white:active {
	color: white;
	background: #FF8C00;
	border: 1px solid #FF8C00;
}


.h3_rect {
	color: #ffffff;
	font-size: 24px;
  	font-weight: 700;
	border-radius: 6px;  
  	text-align: center;
	width: 100%;
  	background: #333333;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 8px;
	padding-right: 8px;
	margin-bottom: 12px;
	margin-top: 0px;
	
}


.footer_comp {
	
  	background: #770000;
  	padding-top:12px;
  	padding-bottom:12px;
  	padding-left:12px;
  	padding-right:12px;
  	border-radius: 16px;
  	
}



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

	.testimonial-item {
  		width: 100%;
  	}
	
	.testimonial-item img {
  		width: 100%;
  	}
}


.f_back {
	
	color: #000000;
	padding-top: 12px;
	padding-bottom: 12px;
	padding-left: 24px;
	padding-right: 24px;
	
}



.gt-top {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}


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

	.gt-top {
  		font-size: 56px;
	}
}


/*--------------------------------------------------------------
# SPAN Lsbels
--------------------------------------------------------------*/
.label_style {
	font-size: 16px;
  	font-weight: 700;
	color: #ffffff;
	width: 120px;
	display: inline-block;
	background: #770000;
  	text-align: center;
  	margin-right: 6px;
}


.put_at_right {
	
	text-align: right;
}


/*--------------------------------------------------------------
# Space
--------------------------------------------------------------*/
.space_area {
	padding-top: 73px;
}



/*--------------------------------------------------------------
# Black Area
--------------------------------------------------------------*/
.black_area {

	color: #ffffff;
	font-size: 18px;
	background: #000000;
}


.black_area .swiper-wrapper img {
	
	width: 100%;
}


/*--------------------------------------------------------------
# White Area
--------------------------------------------------------------*/
.white_area {

	color: #454545;
	font-size: 18px;
	background: #ffffff;
}


.white_area .swiper-wrapper img {
	
	width: 100%;
}


.swiper-slide img {
  border-radius: 10px;
}

.swiper-slide {
  heifgt: 500px;
}


/*--------------------------------------------------------------
# White Area 02
--------------------------------------------------------------*/
.white_area02 {

	color: #454545;
	font-size: 18px;
	background: #ffffff;
}


.white_area02 .swiper-wrapper img {
	border-radius: 50%;
	width: 100%;
}




/*--------------------------------------------------------------
# White Area 03 Default Ver!!
--------------------------------------------------------------*/
.white_area03 {

	color: #454545;
	font-size: 18px;
	background: #ffffff;
	margin-top: 42px;
}


.white_area03 .swiper-wrapper img {
	
	width: 100%;
}




/*--------------------------------------------------------------
# Delete li marks
--------------------------------------------------------------*/
yellow
ul {
	list-style: none;
}

/*--------------------------------------------------------------
# Hover.-- Logo
--------------------------------------------------------------*/
#header .logo a:hover {
  	color: #aa0000;
}



#portfolio {
	
	margin-top:-40px;
}


/*--------------------------------------------------------------
# Black Ver. swiper-pagination-bullet
--------------------------------------------------------------*/
.black_area .swiper-pagination .swiper-pagination-bullet {
	
	width: 24px;
	height: 24px;
	background-color: #66CCFF;
	opacity: 1;
}


.black_area .swiper-pagination .swiper-pagination-bullet-active {

  	background-color: #770000;
}



/*--------------------------------------------------------------
# White Ver. swiper-pagination-bullet
--------------------------------------------------------------*/
.white_area .swiper-pagination .swiper-pagination-bullet {
	
	width: 24px;
	height: 24px;
	background-color: #66CCFF;
	opacity: 1;
}


.white_area .swiper-pagination .swiper-pagination-bullet-active {

  	background-color: #770000;
}


/*--------------------------------------------------------------
# White Ver. swiper-pagination-bullet 02
--------------------------------------------------------------*/
.white_area02 .swiper-pagination .swiper-pagination-bullet {
	
	width: 24px;
	height: 24px;
	background-color: #66CCFF;
	opacity: 1;
}


.white_area02 .swiper-pagination .swiper-pagination-bullet-active {

  	background-color: #770000;
}



/*--------------------------------------------------------------
# White Ver. swiper-pagination-bullet 03
--------------------------------------------------------------*/
.white_area03 .swiper-pagination .swiper-pagination-bullet {
	
	width: 24px;
	height: 24px;
	background-color: #FF9900;
	opacity: 1;
}


.white_area03 .swiper-pagination .swiper-pagination-bullet-active {

  	background-color: #770000;
}





.description_head {
	
	padding-left:24px;
	padding-right:24px;
	
}



/*--------------------------------------------------------------
# White Ver. swiper-pagination-bullet 02
--------------------------------------------------------------*/
#no_margin_01 {
	
	//width:600px;

}



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

	#no_margin_01 {
		margin-left:0px;
		margin-right:0px;
		padding-left:0px;
		padding-right:0px;
	}
}




/*--------------------------------------------------------------
# Swiper BG IMG領域
--------------------------------------------------------------*/
.swiper_background {

	font-size: 60px;
	color: #0000ff;
	width:100%;
	height: 600px;
	//min-height: 100vh;

	margin-top: 0px;
	//background: url("../img/hero01_bg.jpg");
	background-position: center center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;

	position: relative;
	display: inline;
}


.swiper_background::before{
	/* 透過した黒を重ねる */
	background-color: rgba(0,0,0,0.3);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: ' ';
}



.swiper_background_item {

	font-size: 60px;
	color: #0000ff;
	width:100%;
	height: 450px;
	//min-height: 100vh;

	margin-top: 0px;
	//background: url("../img/hero01_bg.jpg");
	background-position: center center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;

	position: relative;
	display: inline;
	
	a {
		position:absolute;
		top:0;
		left:0;
		width:100%;
		height:100%;
		font-size: 100px;
		color: #ff0000;
	}
}


.swiper_background_item::before{
	/* 透過した黒を重ねる */
	background-color: rgba(0,0,0,0);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: ' ';
}



/*--------------------------------------------------------------
# Section Top Margin を 0に ＋ + Mask(文字領域)
--------------------------------------------------------------*/
.default_section {

	margin: 0px;
	padding: 0px;


	.swiper_background_pos {
		position: absolute;
		top:50%;
		left: 50%;
		transform: translate(-50%,-50%);
		color: #ffffff;
		font-size: 66px;
		font-weight: 900;
		//background-color: black;
	}

	.swiper_background_pos p {
		line-height:0.9;
		text-align: center;
		//text-decoration: solid underline #ff0000 8px;
	}
	
	.swiper_background_pos02 {
		position: absolute;
		top:50%;
		left: 50%;
		transform: translate(-50%,-50%);
		color: #ffffff;
		font-size: 66px;
		font-weight: 300;
		//background-color: black;
	}

	.swiper_background_pos02 p {
		line-height:1.0;
		text-align: center;
	}
}


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


	.swiper_background_pos p {
		//display: block;
		//line-height:1;
		font-size: 44px;
	}
	
}


/*--------------------------------------------------------------
# Section Top Margin を 0に ＋ + Mask(文字領域)
--------------------------------------------------------------*/
.default_section {

	margin: 0px;
	padding: 0px;

	.swiper_background_pos02 {
		position: absolute;
		top:50%;
		left: 50%;
		transform: translate(-50%,-50%);
		color: #ffffff;
		font-size: 66px;
		font-weight: 900;
		background-color: rgba(255,0,0,0.5);
		width: 38%;
		border-radius: 8px;
	}

	.inn_red {
		background-color: rgba(255,0,0,0.5);
	}

	.inn_green {
		background-color: rgba(14,96,15,0.5);
	}

	.inn_blue {
		background-color: rgba(3,0,120,0.5);
	}

	.inn_yellow {
		background-color: rgba(247,194,122,0.5);
	}


	.swiper_background_pos02 p {
		line-height:0.9;
		text-align: center;
		//text-decoration: solid underline #ff0000 8px;
		padding-top: 46px;
		line-height: 46px
	}

	.swiper_background_pos02 span {

		display:inline-block;
		padding-top: 18px;
		padding-left: 18px;
		padding-right: 18px;
		padding-bottom: 48px;

		text-align: left;
		color: #ffffff;
		font-size: 20px;
		font-weight: 300;
		line-height: 24px
	}

	.swiper_background_pos02 .font_times {
		font-family: "Times New Roman";
	}
	
	.swiper_background_pos02 .font_times_small {
		font-family: "Times New Roman";
		font-size: 46px;
	}

}


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

	.default_section {
		.swiper_background_pos02 {
			width: 86%;
			border-radius: 8px;
		}

		.swiper_background_pos02 p {
			//display: block;
			//line-height:1;
			font-size: 48px;
		}

	}


}



/*--------------------------------------------------------------
# 右 左 配置
--------------------------------------------------------------*/
.sec_wrapp {
	display: flex;
	align-items: stretch;
}


.sec_wrapp_wine {
	display: flex;
	align-items: stretch;
	background-color: #880000;
}





.sec_image_left {
	background-color: #D9E5FF;
	width:70%;
	height: 500px;

  	//background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta-bg03.jpg") fixed center center;
  	//background-size: cover;
  	//padding: 60px 0;
  	margin-bottom:0px
    	background-size: auto;
    	background-repeat: no-repeat;
    	background-position: center;
	background-size: cover;
	background-attachment: scroll;

 	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 78px;
  	font-weight: 300;
	color: #ffffff;

}


.sec_image_left02 {
	background-color: #D9E5FF;
	width:70%;

  	//background: linear-gradient(rgba(2, 2, 2, 0), rgba(0, 0, 0, 0)), url("../img/tc02.jpg") fixed center center;
  	//background-size: cover;
  	//padding: 60px 0;
  	margin-bottom:0px
    	background-size: auto;
    	background-repeat: no-repeat;
    	background-position: center;
	background-size: cover;
    	
    	height: 500px;
  
 	display: flex;
	align-items: center;
	justify-content: center;


	font-size: 78px;
  	font-weight: 300;
	color: #ffffff;

}


.sec_text_right {
	
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ff0000;
	width: 30%;
	background-color: #9a9a9a;

	font-size: 78px;
  	font-weight: 300;
	color: #ffffff;
}


.sec_text_right_green {
	
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ff0000;
	width: 30%;
	background-color: #8FBC8F;

	font-size: 78px;
  	font-weight: 300;
	color: #ffffff;
}


.sec_text_midd {
	
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ff0000;
	width: 100%;
	background-color: #9a9a9a;

	font-size: 78px;
  	font-weight: 300;
	color: #ffffff;
}


.sec_text_midd02 {
	
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ff0000;
	width: 100%;
	background-color: #770000;

	font-size: 78px;
  	font-weight: 300;
	color: #ffffff;
}


.sec_text_midd_half {

	background-color: #D9E5FF;
	width:50%;
    	height: 500px;

  	//background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/und_01.jpg") fixed center center;
  	//background-size: cover;
  	//padding: 60px 0;
  	//margin-top:40px;
  	//margin-left:40px;

    	background-size: auto;
    	background-repeat: no-repeat;
    	background-position: center;
	background-size: cover;
	background-attachment: scroll;

 	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 48px;
  	font-weight: 300;
	color: #ffffff;

}

/*--------------------------------------------------------------
#
--------------------------------------------------------------*/
.left_empty_a01 {

	background-color: #880000;
	width:5%;
    	height: 500px;
}


.sec_text_midd_half_a01 {

	background-color: #00ff00;
	width:45%;
    	height: 500px;

  	//background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/und_01.jpg") fixed center center;
  	//background-size: cover;
  	//padding: 60px 0;
  	//margin-top:40px;
  	//margin-left:40px;

    	background-size: auto;
    	background-repeat: no-repeat;
    	background-position: center;
	background-size: cover;
	background-attachment: scroll;

 	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 48px;
  	font-weight: 300;
	color: #ffffff;
  	border-radius: 12px;
  	border: 3px solid #9a9a9a;
  	
  	margin-top: 24px;
  	margin-bottom: 24px;
}







.sec_text_midd_half:hover {
  opacity: .7;
  transform: scale(1);
}



.sec_text_midd_half:active {
  opacity: .7;
  transform: scale(1);

}


.sec_text_midd_half a {

	height: 100%;
	width: 100%;
	padding-top:200px;

}


.sec_text_midd_half04_70 {

	background-color: #D9E5FF;
	width:70%;

  	//background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/und_01.jpg") fixed center center;
  	//background-size: cover;
  	//padding: 60px 0;
  	margin-bottom:0px
    	background-size: auto;
    	background-repeat: no-repeat;
    	background-position: center;
	background-size: cover;
	background-attachment: scroll;

    	height: 500px;

 	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 48px;
  	font-weight: 300;
	color: #ffffff;
}


.sec_text_midd_half04_40 {

	background-color: #D9E5FF;
	width:40%;

  	//background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/und_01.jpg") fixed center center;
  	//background-size: cover;
  	//padding: 60px 0;
  	margin-bottom:0px
    	background-size: auto;
    	background-repeat: no-repeat;
    	background-position: center;
	background-size: cover;
	background-attachment: scroll;

    	height: 500px;

 	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 48px;
  	font-weight: 300;
	color: #ffffff;
}




.sec_text_midd_half02 {

	background-color: #D9E5FF;
	width:50%;

  	//background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/und_01.jpg") fixed center center;
  	//background-size: cover;
  	//padding: 60px 0;
  	margin-bottom:0px
    	background-size: auto;
    	background-repeat: no-repeat;
    	background-position: center;
	background-size: cover;
	background-attachment: scroll;

    	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 48px;
  	font-weight: 300;
	color: #787878;

}


.sec_text_midd_half03 {

	background-color: #ffffff;
	width:50%;

  	margin-bottom:0px
    	background-size: auto;
    	background-repeat: no-repeat;
    	background-position: center;
	background-size: cover;
	background-attachment: scroll;

    	height: 500px;

 	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 48px;
  	font-weight: 300;
	color: #565656;

}



.sec_text_midd_half030 {

	background-color: #880000;
	width:50%;

  	margin-bottom:0px
    	background-size: auto;
    	background-repeat: no-repeat;
    	background-position: center;
	background-size: cover;
	background-attachment: scroll;

    	height: 500px;

 	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 48px;
  	font-weight: 300;
	color: #565656;

}




.sec_text_midd_half04 {

	background-color: #800000;
	width:30%;

  	margin-bottom:0px
    	background-size: auto;
    	background-repeat: no-repeat;
    	background-position: center;
	background-size: cover;
	background-attachment: scroll;

    	height: 500px;

 	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 48px;
  	font-weight: 300;
	color: #ffffff;
}


.sec_text_midd_half04 span {
	color: #ffffff;
	font-size: 18px;
}

.sec_text_midd_half04_yellow {

	background-color: #FF9900;
	width:30%;

  	margin-bottom:0px
    	background-size: auto;
    	background-repeat: no-repeat;
    	background-position: center;
	background-size: cover;
	background-attachment: scroll;

    	height: 500px;

 	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 48px;
  	font-weight: 300;
	color: #ffffff;
}

.sec_text_midd_half04_yellow span {
	color: #ffffff;
	font-size: 18px;
}



.sec_text_midd_half04_navy {
	
	background-color: #000033;
	width:30%;

  	margin-bottom:0px
    	background-size: auto;
    	background-repeat: no-repeat;
    	background-position: center;
	background-size: cover;
	background-attachment: scroll;

    	height: 500px;

 	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 48px;
  	font-weight: 300;
	color: #ffffff;
}


.sec_text_midd_half04_navy span {
	color: #ffffff;
	font-size: 18px;
}


.sec_text_midd_half04_blue {
	
	background-color: #0000ff;
	width:30%;

  	margin-bottom:0px
    	background-size: auto;
    	background-repeat: no-repeat;
    	background-position: center;
	background-size: cover;
	background-attachment: scroll;

    	height: 500px;

 	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 48px;
  	font-weight: 300;
	color: #ffffff;
}

.sec_text_midd_half04_blue span {
	color: #ffffff;
	font-size: 18px;
}




.middle_center {
	text-align: center;
	
	h3 {
		font-size: 60px;
	}
}


.middle_center span {
	
	display:inline-block;
	color: #ffffff;
	font-size: 56px;
  	font-weight: 200;
	text-align: center;
	border-bottom:solid;
	border-width:1px;
	line-height: 56px
	
	
}





.middle_center_itm01 {

	padding-top: 0px;
}


.middle_center_itm02 {
	
	font-size: 24px;
	margin-top: 10px;
	margin-bottom: 30px;
	
	h4 {
		font-size: 28px;
		margin-top: 24px;
	}
}


.middle_center_itm03 {
	
	font-size: 64px;
}



.middle_center_itm04 {

	color: #000;
	font-size: 64px;
  	font-weight: 900;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: white;

}


.sec_33 {
	width:35%;
}


.sec_33 img {
	border-radius: 0px;
}


.sec_34 {
	width:35%;
}


.sec_34 img {
	border-radius: 0px;
}


/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/

.inn_sec00 {
	
	color: #ffffff;
	font-size: 20px;
	padding-left:12%;
	padding-right:12%;
	text-align: center;

}


.inn_sec00 p {
	margin-top: -8px;
	color: #ffffff;
	font-size: 22px;
	text-align: left;
}

.inn_sec00 h1 {
	display:inline-block;
	color: #ffffff;
	font-size: 64px;
  	font-weight: 900;
	text-align: center;
	border-bottom:solid;
	border-width:1px;
	line-height: 56px
}




.inn_sec01 {
	
	color: #ffffff;
	font-size: 20px;
	padding-left:12%;
	padding-right:12%;
	text-align: center;

}


.inn_sec01 p {
	margin-top: -8px;
	color: #565656;
	font-size: 18px;
	text-align: left;
}

.inn_sec01 h1 {
	display:inline-block;
	color: #565656;
	font-size: 38px;
  	font-weight: 900;
	text-align: center;
	border-bottom:solid;
	border-width:1px;
	line-height: 38px
}

.inn_sec01 h3 {
	display:inline-block;
	color: #565656;
	font-size: 32px;
  	font-weight: 900;
	text-align: center;
	border-bottom:solid;
	border-width:1px;
	line-height: 26px
}


.inn_sec01 h5 {
  	margin-top: 32px;
}


.inn_sec01 img {
	padding-top: 10px;
	
}



/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/
.inn_sec010 {
	
	color: #ffffff;
	font-size: 20px;
	padding-left:12%;
	padding-right:12%;
	text-align: center;

}


.inn_sec010 p {
	margin-top: -8px;
	color: #ffffff;
	font-size: 18px;
	text-align: left;
}

.inn_sec010 h1 {
	display:inline-block;
	color: #ffffff;
	font-size: 38px;
  	font-weight: 900;
	text-align: center;
	border-bottom:solid;
	border-width:1px;
	line-height: 38px
}

.inn_sec010 h3 {
	display:inline-block;
	color: #ffffff;
	font-size: 32px;
  	font-weight: 900;
	text-align: center;
	border-bottom:solid;
	border-width:1px;
	line-height: 26px
}


.inn_sec010 h5 {
  	margin-top: 32px;
}


.inn_sec010 img {
	padding-top: 10px;
	
}






.inn_sec01_white {
	
	color: #ffffff;
	font-size: 20px;
	padding-left:12%;
	padding-right:12%;
	text-align: center;

}

.inn_sec01_white h1 {
	color: #ffffff;
	font-size: 64px;
  	font-weight: 900;
	text-align: center;
	border-bottom:solid;
	border-width:1px;
	line-height: 56px
}


.inn_sec01_white h4 {
	color: #ffffff;
	font-size: 38px;
  	font-weight: 200;
	text-align: center;
	border-bottom:solid;
	border-width:1px;
	line-height: 56px
}


.inn_sec01_white h5 {
	color: #ffffff;
	font-size: 33px;
  	font-weight: 900;
	text-align: center;
	border-bottom:solid;
	border-width:1px;
	line-height: 35px
}


.inn_sec01_white .font_small{
	font-size: 16px;
}



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

	.custom-shape-divider-bottom-1731665165 {
		display: none;
	}
	
	
	.custom-shape-divider-top-1731665320 {
		display: none;
	}


	.sec_left_right .sec_wrapp {
		display: block;

		.sec_text_midd_half {
			width:100%;
		}


		.sec_text_midd_half_a01 {
			width:100%;
		  	border-radius: 0px;
		  	border: 0px;
		}


		.left_empty_a01 {
			display: none;
		}



		.sec_text_midd_half03 {
			width:100%;
		}
		
		.sec_text_midd_half03 h1 {
			font-size: 36px;
		}
		
		.sec_text_midd_half030 {
			width:100%;
		}
		
		.sec_text_midd_half030 h1 {
			font-size: 36px;
		}

	}



	.sec_left_right .sec_wrapp_wine {
		display: block;
		background-color: #ffffff;

		.sec_text_midd_half {
			width:100%;
		}


		.sec_text_midd_half_a01 {
			width:100%;
		  	border-radius: 0px;
		  	border: 0px;
		}


		.left_empty_a01 {
			display: none;
		}



		.sec_text_midd_half03 {
			width:100%;
		}
		
		.sec_text_midd_half03 h1 {
			font-size: 36px;
		}
		
		.sec_text_midd_half030 {
			width:100%;
		}
		
		.sec_text_midd_half030 h1 {
			font-size: 36px;
		}

	}



	.sec_left_right02 .sec_wrapp {
		//display: block;

		.sec_text_midd_half {
			width:100%;
		}

		.sec_text_midd_half03 {
			width:100%;
			background-color: #ffffff;
		}

		.sec_text_midd_half03 h1 {
			font-size: 22px;
			line-height: 22px
		}
		
		.sec_text_midd_half03 p {
			font-size: 15px;
		}
	}

	.middle_center_itm03 {
		font-size: 30px;
	}

	.default_section .sec_wrapp {
		.sec_text_right {
			.middle_center span {
				margin-left: -200px;
				//padding-left:-200px;
			}
			
			.middle_center .middle_center_itm02 {
				margin-left: -150px;
			}

			.middle_center .middle_center_itm01 {
				margin-left: -130px;
			}

			.middle_center .middle_center_itm01 img {
				width: 50%;
			}

		}
	}

	.sec_no2 .sec_wrapp {
		display: block;
		
		.sec_text_midd_half {
			width: 100%;
		}
	}

	.sec_no3 .sec_wrapp {

		.sec_text_right_green {
			width: 65%;
		}
		
		.sec_image_left02 {
			width: 35%;
		}

	}
	
	.sec_text_midd_half04 h1 {
		margin-left: -200px;
	}
	.sec_text_midd_half04 span {
		margin-left: -200px;
		font-weight: 900;
	}
	.inn_sec01_img img {
		margin-left: -200px;
		//width: 48%;
	}


	.sec_text_midd_half04_navy h1 {
		margin-left: -200px;
	}
	.sec_text_midd_half04_navy span {
		margin-left: -200px;
		font-weight: 900;
	}
	.sec_text_midd_half04_yellow h1 {
		margin-left: -200px;
	}
	.sec_text_midd_half04_yellow span {
		margin-left: -200px;
		font-weight: 900;
	}



	.dummy04_30 {
		width: 50%;
		
		.inn_sec01 h1 {
			font-size: 48px;
			margin-left: 0px;
		}
		.inn_sec01 span {
			margin-left: 0px;
		}
		
		.inn_sec01_white h1 {
			font-size: 48px;
			margin-left: 0px;
		}
		.inn_sec01_white span {
			margin-left: 0px;
		}
		
	}
	.dummy04_70 {
		width: 50%;
	}


}




/*--------------------------------------------------------------
# Active
--------------------------------------------------------------*/
.active_sec01:active {

	.sec_text_midd02 {
		background-color: #550000;
	}
}


.active_sec01:hover {

	.sec_text_midd02 {
		background-color: #550000;
	}
	
	.custom-shape-divider-bottom-1731411698 .shape-fill {
    		fill: #550000;
	}
}


.active_sec02:active {

	.sec_text_midd02 {
		background-color: #343434;
	}
}


.active_sec02:hover {

	.sec_text_right {
		background-color: #343434;
	}
	
	.sec_image_left {
		/*
		opacity: .7;
		transform: scale(1);
		*/
	}
}

.active_sec02:active {

	.sec_text_right {
		background-color: #343434;
	}
	
	.sec_image_left {
		/*
		opacity: .7;
		transform: scale(1);
		*/
	}
}


.active_sec03:hover {

	.sec_text_right_green {
		background-color: #669999;
	}
	
	.sec_image_left02 {
		/*
		opacity: .7;
		transform: scale(1);
		*/
	}
}


.active_sec03:active {

	.sec_text_right_green {
		background-color: #669999;
	}
	
	.sec_image_left02 {
		/*
		opacity: .7;
		transform: scale(1);
		*/
	}
}


.active_sec04:hover {

	.sec_text_midd {
		background-color: #343434;
	}
}





.sec02_inn {
	display: block;
	text-align: center;
	margin-bottom: 0px;
	margin-top: 0px;
}


.sec02_inn h3 {
	color: #ffffff;
	font-size: 38px;
	font-weight: 900;
	margin-top: 0px;
	margin-bottom: 0px;
	text-decoration: solid underline #ffffff 1px;

}


.sec02_inn h4 {
	color: #ffffff;
	font-size: 22px;
	font-weight: 200;
	margin-top: 0px;
	margin-bottom: 0px;

}


.sec02_inn p {
	text-align: center;
	color: #ffffff;
	font-size: 18px;
	font-weight: 200;
	margin-top: 12px;
	margin-bottom: 12px;
}


.sec02_inn button {
	margin-top: 0px;
}


.sec02_inn_text {
		//display: block;
		background-color: rgba(0,0,0,.7);
		text-align: left;
		font-size: 15px;
		color: #ffffff;
		margin-top: 28px;
		margin-left: 12%;
		margin-right: 12%;
		padding-left: 24px;
		padding-right: 24px;
		padding-top: 20px;
		padding-bottom: 20px;
		height: 170px;


}



.text-b:hover {

	h3 {
	color: #FFFF99;
	}
}


/*--------------------------------------------------------------
# Set Horizontal.
--------------------------------------------------------------*/
.horizontal_wrapp {
	display: flex;
	align-items: stretch;
	padding-left:0px;
	padding-right:0px;
}


.horizontal_left {
	
	width:20%;
	background-color: #669999;
	
	.swiper-slide img {
 		 border-radius: 0px;
 	}
}

.horizontal_left_50 {
	
	width:40%;
	background-color: #8FBC8F;
	
	.swiper-slide img {
 		 border-radius: 0px;
 	}

}

.horizontal_right {
	
	font-size: 28px;
	width:30%;
	color: #676767;
	//background-color: #669999;
	background-color: #ffffff;

	
 	display: flex;
	align-items: center;
	justify-content: center;
	
	padding-left:0px;

}

.horizontal_right_50 {
	
	font-size: 28px;
	width:60%;
	color: #565656;
	background-color: #EEEEEE;

	
 	display: flex;
	align-items: center;
	justify-content: center;
	
	padding-left:0px;
}

.horizontal_right h1 {
	color: #770000;
	font-size: 28px;
	font-weight: 900;
	margin-top: 0px;
	margin-bottom: 8px;
	text-align: center;
	text-decoration: solid underline #770000 3px;
}


.horizontal_right_50 h1 {
	color: #770000;
	font-size: 48px;
	font-weight: 900;
	margin-top: 0px;
	margin-bottom: 8px;
	text-align: center;
	text-decoration: solid underline #770000 1px;
}


.horizontal_right {
	
	.horizontal_inn p {
		font-size: 12px;
		padding-left:8%;
		padding-right:8%;
	}
}

.horizontal_right_50 {
	
	.horizontal_inn p {
		font-size: 24px;
		padding-left:12%;
		padding-right:12%;
	}
}


.horizontal_right_50_white {
	
	font-size: 28px;
	width:60%;
	color: #565656;
	background-color: #ffffff;

	
 	display: flex;
	align-items: center;
	justify-content: center;
	
	padding-left:0px;
}


.horizontal_right_50_white h1 {
	color: #770000;
	font-size: 48px;
	font-weight: 900;
	margin-top: 0px;
	margin-bottom: 8px;
	text-align: center;
	text-decoration: solid underline #770000 1px;
}


.horizontal_right_50_white {
	
	.horizontal_inn p {
		font-size: 24px;
		padding-left:12%;
		padding-right:12%;
	}
}



@media screen and (max-width: 768px) {
	
	.horizontal_wrapp {
		display: block;
	}

	.horizontal_wrapp .horizontal_left {
		width:100%;
	}

	.horizontal_wrapp .horizontal_right {
		padding-top: 32px;
		padding-bottom: 32px;
		width:100%;
	}

	.horizontal_wrapp .horizontal_left_50 {
		width:100%;
	}
	
	.horizontal_wrapp .horizontal_right_50 {
		padding-top: 32px;
		padding-bottom: 32px;
		width:100%;
	}
	
	.horizontal_wrapp .horizontal_right_50_white {
		padding-top: 32px;
		padding-bottom: 32px;
		width:100%;
	}
	
	.middle_empty {
		
		//margin-bottom: 68px;
	}
}


.middle_center_itm01_img img {
	
	width: 20%;
}


.blank_empty {
	
	background-color: #ffffff;
	height: 12px;
	margin-top: 62px;
	padding: 0px;
}

@media (max-width: 992px) {
	.blank_empty {
	margin-top: 61px;
	}
}



.blank_wine {
	
	background-color: #800000;
	height: 24px;
	margin:0px;
	padding: 0px;
}


.blank_navy {
	
	background-color: #000033;
	height: 24px;
	margin:0px;
	padding: 0px;
}
.blank_yellow {
	
	background-color: #FF9900;
	height: 24px;
	margin:0px;
	padding: 0px;
}
.blank_blue {
	
	background-color: #0000ff;
	height: 24px;
	margin:0px;
	padding: 0px;
}


.blank_green {
	
	background-color: #8FBC8F;
	height: 24px;
	margin:0px;
	padding: 0px;
}


.no_margin {
	
	margin-top: 0px;
	padding-top: 0px;
	margin-bottom: 0px;
	padding-bottom: 0px;
	
	
}



.staff{
	margin-top: 0px;
	padding-top: 0px;
	margin-bottom: 0px;
	padding-bottom: 0px;
	
}



/*--------------------------------------------------------------
# 右 左 配置
--------------------------------------------------------------*/
.section_three_parts {
	background-color: #FFCC66;
	margin-top:0px;
	margin-bottom:0px;
	padding-top:30px;
	padding-bottom:30px;
}


.three_parts_wrapp {
	height: 400px;
	//background-color: #FF1100;
	display: flex;
	align-items: center;
	justify-content: center;
}


.three_parts_left {
	
	//background-color: #FF9900;
	width: 70%;
	height: 100%;
	display: flex;

}


.three_parts_right {
	
	padding-right: 32px;
	padding-left: 32px;

	//background-color: #FF9900;
	width: 30%;
	text-align: center;
}


.three_parts_right h1 {
	display:inline-block;
	color: #000000;
	font-size: 40px;
  	font-weight: 300;
	text-align: center;
	border-bottom:solid;
	border-width:1px;
	line-height: 40px
}


.three_parts_right h4 {
	color: #000000;
	font-size: 38px;
  	font-weight: 200;
	text-align: center;
	border-bottom:solid;
	border-width:1px;
	line-height: 56px
}

.three_parts_right span{
	color: #000000;
	//display:inline-block;
	font-size: 15px;
}


.three_parts_right p {
	color: #000000;
	display:inline-block;
	font-size: 15px;
	padding-top:16px;
}


.three_parts_01 {
	
	//background-color: #FF9900;
	width: 43%;
	height: 100%;
    	display: flex;
	align-items: center;
	justify-content: center;
	
}


.three_parts_01 h1 {
	display:inline-block;
	color: #000000;
	font-size: 64px;
  	font-weight: 900;
	text-align: center;
	border-bottom:solid;
	border-width:1px;
	line-height: 56px
}

.three_parts_01 span{
	color: #000000;
	font-size: 15px;
	text-align: center;
}


.part_00 {
	display:block;
	color: #000000;
	text-align: center;
	padding-left: 24px;
	padding-right: 24px;
}


.font32 {
	font-size: 32px;
	color: #000000;
}

.font32 a {
	color: #000000;
}

.font32 a:hover {
	color: #FF99FF;
}

.font32 a:active {
	color: #FF99FF;
}


.three_parts_02 {
	
	background-color: #0000ff;
	width: 57%;

}


@media screen and (max-width: 768px) {
	
	.three_parts_wrapp {
		display: block;
		height: 650px;
	}

	.three_parts_left {
		width: 100%;
		height: 400px;
	
	}
	.three_parts_01 {
		width: 50%;
	}
	.three_parts_02 {
		width: 50%;
	}
	
	.three_parts_right {
		
		display:inline-block;
		color: #000000;
		//background-color: #ffffff;
		background-color: rgba(255,255,255,0.7);
		width: 100%;
		height: 300px;
		margin-top: -50px;
		margin-left: 32px;
		padding-top: 8px;
		padding-right: 64px;
		text-align: center;
	}
	
	.three_parts_right h1 {
		font-size: 28px;
		padding-top: 20px;
		color: #000000;
		line-height: 28px
	}
	
	.three_parts_right span {
		color: #000000;
	}
	
	.three_parts_right p {
		color: #000000;
	}
	
	.part_00 h1 {
		font-size: 36px;
		line-height: 36px
	}
	
	.font32 {
		font-size: 24px;
	}
}



/*--------------------------------------------------------------
# 右 左 配置
--------------------------------------------------------------*/
.section_two_parts_white {
	background-color: #ffffff;
	margin-top:0px;
	margin-bottom:0px;
	padding-top:30px;
	padding-bottom:30px;
}


.section_two_parts_yellow {
	background-color: #FFCC66;
	margin-top:0px;
	margin-bottom:0px;
	padding-top:30px;
	padding-bottom:30px;
}


.section_two_parts_gray {
	background-color: #565656;
	margin-top:0px;
	margin-bottom:0px;
	padding-top:30px;
	padding-bottom:30px;
}


.two_parts_wrapp {
	height: 400px;
	background-color: #565656;
	//display: flex;
	//align-items: center;
	//justify-content: center;
	position: relative;
}


.two_parts_wrapp_yellow {
	height: 400px;
	background-color: #FFCC66;
	//display: flex;
	//align-items: center;
	//justify-content: center;
	position: relative;
}


.two_top {
	width: 100%;
	height: 400px;
	background-color: #565656;
    	display: flex;
	align-items: center;
	justify-content: center;
}


.two_top_white {
	width: 100%;
	height: 400px;
	background-color: #ffffff;
    	display: flex;
	align-items: center;
	justify-content: center;
}


.two_top_yellow {
	width: 100%;
	height: 400px;
	background-color: #FFCC66;
    	display: flex;
	align-items: center;
	justify-content: center;
}


.two_parts_left {

	width: 50%;
	height: 400px;
	display: flex;

}


.two_parts_right {
	
	width: 50%;
	background-color: #FF9900;
	padding-right: 32px;
	padding-left: 32px;
	text-align: center;

	.part_00 {
		color: #000000;
		text-align: right;
	}

	.part_00 h1 {
		color: #000000;
		display:inline-block;
		font-size: 64px;
		font-weight: 900;
		text-align: center;
		border-bottom:solid;
		border-width:1px;
		line-height: 56px
	}
	
	.part_00 a {
		color: #000000;
	}

	.part_00 a:hover {
		color: #ffffff;
	}
	.part_00 a:active {
		color: #ffffff;
	}
}

.two_parts_right_gray {
	
	width: 50%;
	background-color: #565656;
	padding-right: 32px;
	padding-left: 32px;
	text-align: center;

	.part_00 {
		color: #ffffff;
		text-align: right;
	}

	.part_00 h1 {
		color: #ffffff;
		display:inline-block;
		font-size: 64px;
		font-weight: 200;
		text-align: center;
		border-bottom:solid;
		border-width:1px;
		line-height: 56px
	}

	.part_00 h4 {
		color: #ffffff;
		display:inline-block;
		font-size: 36px;
		font-weight: 200;
		text-align: center;
		border-bottom:solid;
		border-width:1px;
		line-height: 36px
	}


	.part_00 a {
		color: #ffffff;
	}

	.part_00 a:hover {
		color: #330000;
	}
	.part_00 a:active {
		color: #330000;
	}
}


.two_parts_right_white {
	
	width: 50%;
	background-color: #FFCC66;
	padding-right: 32px;
	padding-left: 32px;
	text-align: center;

	.part_00 {
		color: #000000;
		text-align: right;
	}

	.part_00 h1 {
		color: #000000;
		display:inline-block;
		font-size: 64px;
		font-weight: 500;
		text-align: center;
		border-bottom:solid;
		border-width:1px;
		line-height: 56px
	}
	
	.part_00 a {
		color: #000000;
	}

	.part_00 a:hover {
		color: #330000;
	}
	.part_00 a:active {
		color: #330000;
	}
}


.two_under {
	//height: 160px;
	//background-color: #454545;
	background-color: rgba(32,32,32,0.8);
	width: 30%;
	//margin-top: -30px;
	
	position: absolute;
	top: 100px;
	left: 40%;
	
	display: flex;
	align-items: center;
	justify-content: center;
	
	padding-left: 32px;
	padding-right: 32px;


	.two_under_inn {
		color: #ffffff;
		font-size: 12px;
		padding-top: 16px;
		padding-bottom: 16px;
		text-align: center;
		width: 100%;
		word-break: break-all;
		//background-color: #454545;
	}
	.two_under_inn h3 {
		color: #FFffff;
		display:inline-block;
		font-size: 26px;
		font-weight: 600;
		text-align: center;
		border-bottom:solid;
		border-width:1px;
		line-height: 32px
	}

}


@media screen and (max-width: 768px) {
	
	.two_parts_wrapp {
		height: 600px;
	}

	.two_parts_wrapp_yellow {
		height: 600px;
	}

	.two_under {
		width: 88%;
		height: 280px;
		top: 320px;
		left: 10%;
	}

	.two_parts_right {
		text-align: center;
		padding-left: 4px;
		padding-right: 8px;
	}


	.two_parts_right .part_00 h1 {
		font-size: 48px;
		line-height: 48px
	}

	.two_parts_right_gray {
		text-align: center;
		padding-left: 4px;
		padding-right: 8px;
	}

	/*------------------------------------
	# Apend
	-------------------------------------*/
	.two_parts_right_gray .part_00 {
		display:inline-block;
		margin-left: -100px;
	}
	/*------------------------------------
	-------------------------------------*/

	.two_parts_right_gray .part_00 h1 {
		font-size: 48px;
		line-height: 48px
	}

	.two_parts_right_gray .part_00 h4 {
		font-size: 22px;
		line-height: 18px
	}

	.two_parts_right_white {
		text-align: center;
		padding-left: 4px;
		padding-right: 8px;
	}


	.two_parts_right_white .part_00 h1 {
		font-size: 32px;
		line-height: 32px
	}


}


.middle_center p {
	color: #ff0000;
	font-size: 52px;
  	font-weight: 100;
	color: #ffffff;
}



/*--------------------------------------------------------------
#
--------------------------------------------------------------*/
.part_01 a {
	color: #800000;
}

.part_01 a:hover {
	color: #3366FF;
}

.part_01 a:active {
	color: #3366FF;
}


.frame_gray {
	
	background-color: #565656;
	padding-left:16px;
	padding-right:16px;
	//padding-top:10px;
	padding-bottom:32px;
}


.frame_white {
	
	background-color: #ffffff;
	padding-left:16px;
	padding-right:16px;
	//padding-top:10px;
	padding-bottom:32px;
}


.frame_yellow {
	
	background-color: #FFCC66;
	padding-left:16px;
	padding-right:16px;
	//padding-top:10px;
	padding-bottom:32px;
}


/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/
.sec_text_midd_half04_wine {

	background-color: #800000;
	width:30%;

  	margin-bottom:0px
    	background-size: auto;
    	background-repeat: no-repeat;
    	background-position: center;
	background-size: cover;
	background-attachment: scroll;

    	height: 500px;

 	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 48px;
  	font-weight: 300;
	color: #ffffff;
}


.sec_text_midd_half04_wine span {
	color: #ffffff;
	font-size: 18px;
}


.sec_text_midd_half04_wine h1 {
	display:inline-block;
	color: #ffffff;
	font-size: 64px;
  	font-weight: 900;
	text-align: center;
	border-bottom:solid;
	border-width:1px;
	line-height: 56px
}

.sec_text_midd_half04_wine span {
	color: #ffffff;
	font-size: 22px;

}

@media screen and (max-width: 768px) {
	.sec_text_midd_half04_wine h1 {
		color: #ffffff;
		font-size: 64px;
	  	font-weight: 900;
		text-align: center;
		border-bottom:solid;
		border-width:1px;
		line-height: 24px
		display: inline-block;
		transform: rotate(90deg);
	}
	
	.sec_text_midd_half04_wine span {
		font-size: 16px;
	}
}


/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/
.sec_text_midd_half04_green {

	background-color: #8FBC8F;
	width:30%;

  	margin-bottom:0px
    	background-size: auto;
    	background-repeat: no-repeat;
    	background-position: center;
	background-size: cover;
	background-attachment: scroll;

    	height: 500px;

 	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 48px;
  	font-weight: 300;
	color: #ffffff;
}


.sec_text_midd_half04_green span {
	color: #ffffff;
	font-size: 18px;
}


.sec_text_midd_half04_green h1 {
	color: #ffffff;
	font-size: 48px;
  	font-weight: 100;
	text-align: center;
	display:inline-block;
	border-bottom:solid;
	border-width:0px;
	line-height: 56px
}

.sec_text_midd_half04_green span {
	color: #ffffff;
	font-size: 22px;

}

@media screen and (max-width: 768px) {
	.sec_text_midd_half04_green h1 {
		color: #ffffff;
		font-size: 64px;
	  	font-weight: 100;
		text-align: center;
		border-bottom:solid;
		border-width:0px;
		line-height: 24px
		display: inline-block;
		transform: rotate(90deg);
	}
	
	.sec_text_midd_half04_green span {
		font-size: 16px;
	}
}



/*--------------------------------------------------------------
# GoogleMap
--------------------------------------------------------------*/
.googlemap {
	
	background-color: #8FBC8F;
 	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0px;
	padding-bottom: 0px;


	.map_left_70 {
		width: 70%;
	}
	
	.map_left_30 {
		width: 30%;
		color: #ffffff;
		text-align: center;
		padding-left: 20px;
		padding-right: 20px;
		
	}
	
	h1 {
		display:inline-block;
		color: #ffffff;
		font-size: 48px;
	  	font-weight: 200;
		text-align: center;
		border-bottom:solid;
		border-width:0px;
		line-height: 48px
	}
}


@media screen and (max-width: 768px) {
	
	.googlemap h1 {
		font-size: 48px;
	  	font-weight: 700;
		line-height: 0px
		display: inline-block;
		transform: rotate(90deg);
		
		padding-top:64px;
		padding-right:24px;
		padding-left:0px;
		margin-left: -70%;
	}
}


iframe {
  display: block;
}


/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/
.three_part_white {
	
	background-color: #ffffff;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 16px;
  	font-weight: 100;
	color: #000000;

	.three_inn_left {
		width: 5%;
		height: 250px;
		background-color: #ffffff;
	}
	
	.three_inn_middle {
		text-align: center;
		width: 90%;
		background-color: #ffffff;
	}
	
	.three_inn_middle h1 {
		display:inline-block;
		color: #565656;
		font-size: 48px;
	  	font-weight: 900;
		text-align: center;
		border-bottom:solid;
		border-width:1px;
		line-height: 48px
	}
	
	
	.three_inn_right {
		width: 5%;
		height: 250px;
		background-color: #ffffff;
	}
}



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

	.team_under_right {
		margin-top: -72px;
		margin-left: 56px;
		padding-right: 38px;
		background-color: rgba(32,32,32,0.8);

		p, h1 {
			color: #ffffff;
		}
	}

	.team_under_left {
		margin-top: -72px;
		margin-left: -56px;
		padding-left: 55px;
		background-color: rgba(32,32,32,0.8);

		p, h1 {
			color: #ffffff;
		}
	}
}



/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	
	.section_news {
		background-color: #dedede;
		
	}

	.news_under_white {
		
		//display:inline-block;
		color: #ffffff;
		margin-top: -64px;
		margin-left: 38px;
		//margin-bottom: 38px;
		padding-left: 0px;
		padding-right: 28px;
		background-color: rgba(32,32,32,0.8);
		height: 100$;
		
		h3 {
			color: #ffffff;
			font-size: 28px;
		}

		p {
			color: #ffffff;
			font-size: 18px;
		}


	}
}




.rect_blue {
	background-color: #880000;
	width: 100%;
	padding-top: 26px;
	padding-bottom: 18px;
	
	h3 {
		font-size: 32px;
	  	font-weight: 900;
		color: #ffffff;
		border-width:0px;
	}
}

@media screen and (max-width: 768px) {
	
	.rect_blue {
		//background-color: #FF9900;
		width: 100%;
		padding-top: 26px;
		padding-bottom: 18px;
		
		h3 {
			font-size: 20px;
		  	font-weight: 600;
			color: #ffffff;
			border-width:0px;
		}
	}
}



.french_cut {
	
	 h4  {
		display:inline-block;
		color: #ffffff;
		font-size: 28px;
	  	font-weight: 900;
		text-align: center;
		border-bottom:solid;
		border-width:1px;
		line-height: 24px
	}
	
	p {
		color: #ffffff;
		font-size: 16px;
		padding-top: 0px;
		margin-top: 0px;
		
	}
}


.change_color01 {
	
	height: 600px;
	
}


/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/
.text50_wrapper {

	display: flex;
	color: #ffffff;
	width:100%;
	background-color: #565656;

	.text_50 {
		//background-color: #ff0000;
		color: #ffffff;
		width:50%;
		padding-left: 48px;
		padding-right: 48px;
		padding-top: 0px;
		padding-bottom: 0px;
	}

	.text_50_02 {
		//background-color: #ff0000;
		color: #ffffff;
		width:50%;
		padding-left: 48px;
		padding-right: 48px;
		padding-top: 0px;
		padding-bottom: 0px;
	}


	h5 {
		display:inline-block;
		width: 80%;
		background-color: #880000;
		padding-top: 12px;
		padding-bottom: 12px;
		padding-left: 24px;
		padding-right: 24px;
		text-align: center;
		font-size: 24px;
		font-weight: 900;
		line-height: 48px
		font-color: #ffffff;
	}
}


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

	.text50_wrapper {
		display: block;
		padding-top: 0px;
		padding-bottom: 0px;


		.text_50 {
			width:100%;
			background-color: rgba(32,32,32,0.4);
			padding-bottom: 32px;
			padding-left: 22px;
			padding-right: 68px;
			margin-left: 48px;

			h5 {
				margin-top: 24px;
				width: 100%;
			}

			p {
				margin-top: 18px;
			}
		}

		.text_50_02 {
			width:100%;
			background-color: rgba(32,32,32,0.4);
			margin-top: -48px;
			margin-borrom: 0px;
			margin-left: -48px;
			padding-bottom: 24px;
			padding-left: 68px;
			padding-right: 18px;
			
			h5 {
				margin-top: 24px;
				width: 100%;
			}
			
			p {
				margin-top: 18px;
			}
		}


	}
}



.text50_wrapper_yellow {

	background-color: #FFCC66;
	
	.text_50 {
		color: #ffffff;
	}
	
	.text_50_02 {
		//background-color: #ff0000;
		color: #ffffff;
	}
	
	
	p {
		color: #000000;
	}
}


@media screen and (max-width: 768px) {
	
	.text50_wrapper_yellow {
	
		.text_50 {
			color: #ffffff;
		}
		.text_50_02 {
			//background-color: #ff0000;
			color: #ffffff;
		}
	}
}



/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/
.item_margin {
	align-items: center;
	justify-content: center;
	margin-left: 0px;
}

.li_nothing {
	
	//padding-left: 0px;
	//margin-left: 0px;
	
	
	ul {
		color: #000000;
		padding-left: 0px;
		margin-top: 0px;
		margin-bottom: 6px;
	}

	li {
		list-style:none;
		font-weight: 400;
		color: #565656;
	}
	
	.label_style {
		color: #ffffff;
		background-color: #FF9900;
		font-size: 16px;
		font-weight: 900;
	}
	
	.h3_rect {
		border-radius: 0px;
		font-size: 29px;
		font-weight: 900;
		color: #ffffff;
		background-color: #FF9900;
		margin-bottom: 6px;
	}
}

.item_text {
	
	h1 {
		font-size: 16px;
		font-weight: 600;
		color: #ffffff;
		background-color: #FF9900;
		//margin-left: 5%;
		//margin-right: 5%;
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 12px;
		padding-bottom: 12px;
	}

	p {
		font-size: 16px;
		padding-left: 32px;
		padding-right: 32px;
	}
	
	
	.button_yellow {
		color: #ffffff;
		background: #FF9900;
		padding: 6px 12px 6px 12px;
		margin-left: 20px;
		margin-right: 12px;
		border: 1;
		border-radius: 20px;
		border: 1px solid #FF9900;
		font-size: 16px;
		outline: none;
		cursor: pointer;
	}

	.button_yellow:active {
		background: #008080;
		border: 1px solid #FF9900;
	}
}


/*
@media screen and (min-width: 1158px) {
	
	.item_text p {
		font-size: 18px;
	}
}

@media screen and (min-width: 1280px) {
	
	.item_text p {
		font-size: 20px;
	}
}
*/



.inn_green {
	
	background-color: rgba(0,255,0,0.5);
}



.margin_empty {
	
	padding-top: 72px;
}


/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/
.content {
  overflow: hidden;
  background-color: #000000;  /* むらさき */ 
}


.content01{
	font-size: 38px;
	font-weight: 900;
	color: #ffffff;
	height: 300px;
	text-align: center;
	padding-top: 90px;
	width: 100%;
	background-color: #770000;  /* きみどり */
}


.content02{
	
	font-size: 22px;
	font-weight: 900;
	color: #ffffff;
	text-align: center;
	padding-top: 64px;

	width: 110%;
	height: 200px;
	background-color: #000000;  /* むらさき */ 
	transform-origin: left bottom;
	transform: rotate(-5deg);
}


.center_70 {
	width: 100%;
}



/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/
@keyframes sway {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-24px);
  }
  100% {
    transform: translateX(0);
  }
}

.text {
  animation: sway 2s infinite ease-in-out;
}




/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/
.section-one {
  background-color: #880000;
  position: relative;
  padding: 64px 0 240px;
  .section-one__title {
    color: #fff;
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 30px;
    text-align: center;
  }
  .section-one__descr {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
  }
}

.section-two {
  background-color: #000000;
  padding: 0px 0 100px;
  position: relative;
  z-index: 10;

  .section-two__title {
    color: #fff;
    font-weight: 900;
    font-size: 35px;
    margin-bottom: 30px;
    text-align: center;
  }

  .section-two__descr {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
  }
}

/* -------------------------------------------------------------------------
   begin Separator
 * ------------------------------------------------------------------------- */
.separator {
  bottom: -4px;
  left: 0;
  overflow: hidden;
  position: absolute;

  width: 100%;
}
/* -------------------------------------------------------------------------
   end Separator
 * ------------------------------------------------------------------------- */

/* begin Media Max-Width 767
============================================================================ */

@media screen and (max-width: 767px) {
  .section-one {
    padding: 130px 0 190px;
  }
  .separator {
    bottom: -110px;
    .separator__svg {
      left: -20%;
      position: relative;
      transform: rotate(15deg);
      width: 140%;
    }
  }
}

/* end Media Max-Width 767
============================================================================ */




.editorial {
  display: block;
  width: 100%;
  height: 200px;
  max-height: 200px;
  margin: 0;
  margin-top: -120px;
  z-index:5;
  bottom:0;
  position:relative;
  left:0px;
  float:left;
}

.parallax1 > use {
  animation: move-forever1 10s linear infinite;
  &:nth-child(1) {
    animation-delay: -2s;
  }
}
.parallax2 > use {
  animation: move-forever2 8s linear infinite;
  &:nth-child(1) {
    animation-delay: -2s;
  }
}
.parallax3 > use {
  animation: move-forever3 6s linear infinite;
  &:nth-child(1) {
    animation-delay: -2s;
  }
}
.parallax4 > use {
  animation: move-forever4 4s linear infinite;
  &:nth-child(1) {
    animation-delay: -2s;
  }
}
@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever3 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever4 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}





/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/
.custom-shape-divider-bottom-1731287926 .shape-fill {
    fill: #000000;
}


.custom-shape-divider-top-1731288475 .shape-fill {
    fill: #417505;
}




/*--------------------------------------------------------------
# Upper
--------------------------------------------------------------*/
.custom-shape-divider-bottom-1731411698 {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1731411698 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 155px;
}

.custom-shape-divider-bottom-1731411698 .shape-fill {
    fill: #770000;
}



/*--------------------------------------------------------------
# Tail
--------------------------------------------------------------*/
.custom-shape-divider-bottom-1731459615 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1731459615 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.custom-shape-divider-bottom-1731459615 .shape-fill {
    fill: #FFFFFFFF;
}






/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/
.custom-shape-divider-bottom-1731665165 {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1731665165 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.custom-shape-divider-bottom-1731665165 .shape-fill {
    fill: #880000;
}


/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/
.custom-shape-divider-top-1731665320 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1731665320 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.custom-shape-divider-top-1731665320 .shape-fill {
    fill: #880000;
}