/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  background: #fff;
  color: #fff;
}

a {
  color: #cda45e;
  text-decoration: none;
}

a:hover {
  color: #d9ba85;
  text-decoration: none;
}

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

a img:hover {
  opacity: 0.8;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 2px solid #2782bd;
}

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

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

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

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

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



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(255, 255, 255, 0.65);

  transition: all 0.5s;
  z-index: 997;
  padding: 0 0;

}

#header_sub {
  background: rgba(255, 255, 255, 1);

  transition: all 0.5s;
  z-index: 997;
  padding: 0 0;

}


#header.header-scrolled,
#header_sub.header-scrolled {
  top: 0;
  background: rgba(255, 255, 255, 1);

}

#header .logo,
#header_sub .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#header .logo a,
#header_sub .logo a {
  color: #fff;
}

#header .logo img,
#header_sub .logo img {
  max-height: 50px;
  margin-left: 15%;
}

@media (max-width: 992px) {

  #header .logo img,
  #header_sub .logo img {
    max-height: 40px;
    margin-left: 5%;
  }
}

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  margin: 0 -15px 0 15px;
  color: #fff;
  padding: 20px 25px;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  background: #2782BD;
  display: block !important;
  text-align: center;
}

.book-a-table-btn span {
  font-size: 10px;
  display: block !important;
  font-weight: 500;
}

.book-a-table-btn:hover {
  background: #24211E;
  color: #fff;
}

@media (max-width: 992px) {
  .book-a-table-btn {
    display: none !important;
    margin: 0 -15px 0 5px;
    padding: 15px 20px;
  }

}

.sp {
  display: block !important;
}

.pc {
  display: none !important;
}

.sp_s {
  display: none !important;
}

.pc_s {
  display: block !important;
}

@media screen and (min-width:992px) {
  .pc {
    display: block !important;
  }

  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 767.8px) {
  .sp_s {
    display: block !important;
  }

  .pc_s {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0 2% 0 0 !important;
}

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

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  text-align: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  color: #24211E;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 1rem;
  display: block;
  font-weight: 500;
}

.navbar a span {
  font-size: 16px;
  display: block !important;
  font-weight: 600;
}

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

.navbar a:hover,
.navbar .active,
.navbar li:hover>a {
  color: #2782BD;
}

.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;
  border-radius: 4px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #444444;
}

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

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

.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%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #24211e;
  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(255, 255, 255, 1);
  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;
  border-radius: 6px;
  overflow-y: auto;
  transition: 0.3s;
  text-align: left !important;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #333;
  text-align: left !important;
}

.navbar-mobile a span {
  display: inline-block !important;
  width: 7em;
  margin-left: 1em;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #2782bd;
}

.navbar-mobile .getstarted {
  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;
}

.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 {
  color: #cda45e;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#box {
  width: 100%;
  height: 100vh;
  background-position: top center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden !important;
  position: relative;
  padding: 0;
}



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

#box .container {
  padding-top: 110px;
}

@media (max-width: 992px) {
  #box .container {
    padding-top: 98px;
  }
}

#box h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-indent: -0.5em;
  letter-spacing: 3px;
}

#box h1 span {
  color: #ff0000;
}

#box h2 {
  color: #fff;
  margin-top: 10px;
  font-size: 22px;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}

#box .btns {
  margin-top: 30px;
}

#box .btn-menu,
#box .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: white;
  border: 2px solid #cda45e;
}

#box .btn-menu:hover,
#box .btn-book:hover {
  background: #cda45e;
  color: #fff;
}

#box .btn-book {
  margin-left: 15px;
}

#box .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#cda45e 50%, rgba(205, 164, 94, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

#box .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#box .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(205, 164, 94, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#box .play-btn:hover::after {
  border-left: 15px solid #cda45e;
  transform: scale(20);
}

#box .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

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

@media (max-width: 992px) {
  #box .play-btn {
    margin-top: 30px;
  }
}

@media (max-height: 500px) {
  #box {
    height: auto;
  }

  #box .container {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  #box h1 {
    font-size: 32px;
    line-height: 36px;
  }

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

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
#sub_page {
  background: #24211e !important;
}

section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #1a1814;
}

.section-title {
  margin-top: 4%;
  padding-bottom: 30px;
}

.section-title h2 {
  font-weight: 600;
  font-size: 34px;
  padding-bottom: 5%;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  letter-spacing: 1px;
  color: #003366;
  text-align: center;
}

.section-title h2 span {
  font-size: 18px;
  display: block;
  padding-top: 0.2em;
  font-weight: 600;
  letter-spacing: 0px;
  color: #ff0000;
}

.section-title02 {
  margin-top: 4%;
  padding-bottom: 30px;
}

.section-title02 h2 {
  font-weight: 600;
  font-size: 34px;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  letter-spacing: 1px;
  color: #003366;
  text-align: center;
  position: relative;
}


.section-title02 h2::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  /* 位置調整 */
  transform: translate(-50%);
  /* 位置調整 */
  bottom: -10px;
  /* 下線の上下位置調整 */
  width: 40px;
  /* 下線の幅 */
  height: 5px;
  /* 下線の太さ */
  background-color: #ff0000;
  /* 下線の色 */
  border-radius: 5px;
}

.title-border h2 {
  font-size: 2.2rem;
}

.title-border_span {
  font-size: 1.2rem !important;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ＭＳ Ｐ明朝', 'MS PMincho', serif
}

.title-border {
  display: flex;
  justify-content: center;
  font-size: 2.6rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5%;
}

.title-border:before,
.title-border:after {
  border-top: 1px solid;
  content: "";
  width: 3em;
}

.title-border:before {
  margin-right: 1rem;
  margin-top: -.8rem;
}

.title-border:after {
  margin-left: 1rem;
  margin-top: -.8rem;
}

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

  .title-border:before,
  .title-border:after {
    width: 2em;
  }
}

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

  .title-border:before,
  .title-border:after {
    width: 1.2em;
  }
}



.section-title03 {
  margin-top: 13%;
  padding-bottom: 30px;
}

.section-title03 h2 {
  font-weight: 600;
  font-size: 26px;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  letter-spacing: 1px;
  color: #003366;
  text-align: center;
  position: relative;
}


.section-title04 {
  margin-top: 13%;
}

.section-title04 h2 {
  font-weight: 600;
  font-size: 18px;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  letter-spacing: 1px;
  color: #003366;
  text-align: left;

}


@media (min-width: 1024px) {
  .section-title h2 {
    font-size: 42px;
  }

  .section-title h2 span {
    font-size: 22px;
  }

  .section-title02 h2 {
    font-size: 42px;
  }

  .section-title03 {
    margin-top: 8%;
  }

  .section-title03 h2 {
    font-size: 30px;
  }

  .section-title04 {
    margin-top: 8%;
  }

  .section-title04 h2 {
    font-size: 22px;
  }
}


.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: #cda45e;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  height: 400px;
}



#company {
  background: url("../img/COMPANY_back.jpg") center center;
  background-size: cover;
  padding: 0;
  max-height: 400px;
}

#info {
  background: url("../img/INFO_back.jpg") center center;
  background-size: cover;
  padding: 0;
  max-height: 400px;
}


@media (max-width: 992px) {
  .breadcrumbs {
    height: 300px;
  }

  .breadcrumbs h2 {
    font-size: 2.5rem !important;
    margin-top: 20% !important;
  }

  .breadcrumbs h2 span {
    font-size: 1.5rem !important;
  }
}


@media (max-width:768px) {
  .breadcrumbs h2 {
    margin-top: 26% !important;
  }
}

.breadcrumbs h2 {
  font-weight: 600;
  font-size: 2.8rem;
  letter-spacing: 1px;
  margin-top: 15%;
}


.breadcrumbs h2 span {
  font-size: 1.6rem;
  display: block;
  padding-top: 0.5em;
  font-weight: 600;
  letter-spacing: 0px;
}


@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: #24211e;
  padding: 0;
}



.about .about-img {
  position: relative;
  transition: .5s;
}

.about .about-img img {
  max-width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.about .about-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: '';
  border-left: 5px solid #cda45e;
  border-top: 5px solid #cda45e;
  transition: .5s;
}

.about .about-img::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: '';
  border-right: 5px solid #cda45e;
  border-bottom: 5px solid #cda45e;
  transition: .5s;
}

.about .about-img:hover {
  transform: scale(1.03);
}

.about .about-img:hover::before {
  left: 10px;
  top: 10px;
}

.about .about-img:hover::after {
  right: 10px;
  bottom: 10px;
}

.about .content h3 {
  font-weight: 600;
  font-size: 34px;
  padding-bottom: 5%;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  letter-spacing: 2px;
}

.about .content h3 span {
  font-size: 18px;
  display: block;
  padding-top: 0.2em;
  font-weight: 400;
}

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

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #cda45e;
}

.about .content p {
  line-height: 1.8em;
}

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

  .about .content h3 {
    font-size: 42px;
  }

  .about .content h3 span {
    font-size: 22px;
  }
}



/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  background: #1a1814;
}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #cda45e;
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.8);
}

.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: #cda45e;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.works #works-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.works #works-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px 10px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
  font-family: "Playfair Display", serif;
}

.works #works-flters li:hover,
.works #works-flters li.filter-active {
  color: #cda45e;
}

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

.works .works-item {
  margin-top: 50px;
}

.works .works-img {
  width: 70px;
  border-radius: 50%;
  float: left;
  border: 5px solid rgba(255, 255, 255, 0.2);
}

.works .works-content {
  margin-left: 85px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.works .works-content::after {
  content: "......................................................................"
    "...................................................................."
    "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: #bab3a6;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.works .works-content a {
  padding-right: 10px;
  background: #1a1814;
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: white;
  transition: 0.3s;
}

.works .works-content a:hover {
  color: #cda45e;
}

.works .works-content span {
  background: #1a1814;
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
  color: #cda45e;
}

.works .works-ingredients {
  margin-left: 85px;
  font-style: italic;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.5);
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}

.specials .nav-tabs {
  border: 0;
}

.specials .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: #fff;
  border-radius: 0;
  border-right: 2px solid #cda45e;
  font-weight: 600;
  font-size: 1.2rem;
}

.specials .nav-link:hover {
  color: #cda45e;
}

.specials .nav-link.active {
  color: #1a1814;
  background: #cda45e;
  border-color: #cda45e;
}

.specials .nav-link:hover {
  border-color: #cda45e;
}

.specials .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.specials .details p {
  color: #aaaaaa;
}

.specials .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
  background: url(../img/events-bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}

.events::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.events .section-title h2 {
  color: #fff;
}

.events .container {
  position: relative;
}

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

.events .events-carousel {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.events .event-item {
  color: #fff;
}

.events .event-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #cda45e;
}

.events .event-item .price {
  font-size: 26px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.events .event-item .price span {
  border-bottom: 2px solid #cda45e;
}

.events .event-item ul {
  list-style: none;
  padding: 0;
}

.events .event-item ul li {
  padding-bottom: 10px;
}

.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #cda45e;
}

.events .event-item p:last-child {
  margin-bottom: 0;
}

.events .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

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

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #cda45e;
}

/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
  width: 100%;
}

.book-a-table .php-email-form .form-group {
  padding-bottom: 8px;
}

.book-a-table .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

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

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

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

.book-a-table .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}

.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #2b3990;
  border-top-color: #003366;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: #0c0b09;
  border-color: #625b4b;
  color: white;
}

.book-a-table .php-email-form input::-webkit-input-placeholder,
.book-a-table .php-email-form textarea::-webkit-input-placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input::-moz-placeholder,
.book-a-table .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input::placeholder,
.book-a-table .php-email-form textarea::placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: #cda45e;
}

.book-a-table .php-email-form input {
  height: 44px;
}

.book-a-table .php-email-form textarea {
  padding: 10px 12px;
}

.book-a-table .php-email-form button[type="submit"] {
  background: #cda45e;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type="submit"]:hover {
  background: #d3af71;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonial-item {
  box-sizing: content-box;
  max-height: 450px;
}

.testimonial-item img {
  height: 100%
}

.slide_back {
  margin-top: 4%;
  padding: 0 !important;
}

.swiper-slide {
  padding: 0 !important;
}



.testimonial-item h3 {

  font-size: 1.7rem !important;
  color: #fff;
  position: absolute;
  top: 40%;
  font-weight: 600;
  margin: 10px 0 5px 1rem;
}

.testimonial-item h3 span {
  display: block;
  font-weight: 600;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 1.1rem !important;
  padding-top: 1.2rem !important;
}

.swiper-button-prev {
  display: none;
}

.swiper-button-next {
  display: none;
}


@media screen and (max-width: 767.8px) {
  .testimonial-item h3 {
    font-size: 1.5rem !important;
  }

  .testimonial-item h3 span {
    font-size: 1rem !important;
    padding-top: 1.5rem !important;
  }
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #26231d;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #cda45e;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.chefs .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.chefs .member .member-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}

.chefs .member .member-info-content h4 {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: 700;
  margin-bottom: 3%;
  font-size: 18px;
  color: #fff;
}

.chefs .member .member-info-content span {
  display: block;
  font-size: 13px;
  color: #fff;
}

.chefs .member .social {
  position: absolute;
  left: 0;
  bottom: -38px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
}

.chefs .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
}

.chefs .member .social a:hover {
  color: #cda45e;
}

.chefs .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.chefs .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.chefs .member:hover .member-info-content {
  bottom: 60px;
  transition: bottom 0.4s;
}

.chefs .member:hover .social {
  bottom: 0;
  transition: bottom ease-in-out 0.4s;
}

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

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

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
}

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

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

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

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

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

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

.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;
  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 #cda45e;
  border-top-color: #1a1814;
  -webkit-animation: animate-loading 1s linear infinite;
  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;
  background: #0c0b09;
  border-color: #625b4b;
  color: white;
}

.contact .php-email-form input::-webkit-input-placeholder,
.contact .php-email-form textarea::-webkit-input-placeholder {
  color: #a49b89;
}

.contact .php-email-form input::-moz-placeholder,
.contact .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
  color: #a49b89;
}

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

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

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

.contact .php-email-form button[type="submit"] {
  background: #cda45e;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 2% 0 4%;
}

.footer-container {
  padding: 2% 6%;
}

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

#footer .footer-top .footer-info h3 a span {
  color: #24211e;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif !important;
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: -20%;
  text-decoration: none;
}

#footer .footer-top .footer-info h3 img {
  width: 20%;
  margin-right: 3%;
}

#footer .footer-top .footer-info p {
  font-size: 0.9rem;
  line-height: 1.5em;
  margin-bottom: 0;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  color: #24211e;
  margin-top: 2em;
}

@media (max-width:991.8px) {
  #footer .footer-top .footer-info h3 img {
    width: 30%;
  }

  #footer .footer-top .footer-info h3 a span {
    font-size: 1.4rem;
  }

  #footer {
    padding: 5% 0 7%;
  }
}

@media (max-width:767.8px) {
  .footer-container {
    padding: 4% 8%;
  }
}


.footer_video video {
  border-radius: 10px;
}



.footer-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

.between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.content {
  padding: 1em 0;
  margin: 0;
}

#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;
}

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



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

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


.flowing {
  width: 0;
  margin: 0;
  letter-spacing: 0.05em;
  font-size: 3.4rem;
  font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  animation: flowing-anim 3s forwards linear;
}

.flowing:nth-child(2) {
  animation-delay: 2.5s;
}

.flowing:nth-child(3) {
  animation-delay: 5s;
}

.top_text {
  font-size: 1.7rem;
  padding-top: 1rem;
}



@keyframes flowing-anim {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@media (max-width:768px) {
  .flowing {
    font-size: 2.5rem;
  }

  .top_text {
    font-size: 1.3rem;
  }
}

.container02 {
  width: 100%;
}

.about-back-in {
  width: 100%;
  margin: auto;
}

.about-back2-in {
  width: 100%;
  margin: auto;
  padding-top: 50px;
}

.about-back {
  background: rgba(0, 51, 102, 0.6);
  padding: 120px 60px 120px 0;
}

.about-back2 {
  background: rgba(255, 0, 0, 0.6);
  padding: 120px 160px 120px 100px !important;
}

.view a {
  font-size: 20px;
  font-weight: 600;
  color: #ff0000;
  background-color: #fff;
  padding: 10px 20px;
  display: inline-block;
  text-align: right !important;
  margin-top: 2%;
}

.view a:hover {
  background-color: #003366;
}


@media (max-width:1400px) {
  .about-back2-in {
    padding-top: 0px;
  }
}

@media (max-width:1200px) {
  .about-back2 {
    padding: 120px 130px 120px 80px !important;
  }

}

@media (max-width:1099px) {
  .about-back {
    padding: 100px 60px 100px 0;
  }

  .about-back2 {
    padding: 100px 90px 100px 60px !important;
  }
}

@media (max-width:991px) {
  .about-back {
    padding: 80px 40px;
  }

  .about-back-in {
    width: 90%;
  }

  .about-back2 {
    padding: 100px 10px !important;
  }

  .about-back2-in {
    width: 85%;
  }

  .view a {
    font-size: 18px;
  }
}

@media (max-width:768px) {
  #footer .footer-top .footer-info h3 img {
    width: 30%;
  }

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

@media (max-width:575px) {
  .about-back {
    padding: 60px;
  }

  .about-back2 {
    padding: 80px 60px !important;
  }

}


.vechicles_text {
  background-color: #003366;
  z-index: -3;
  margin-top: -5%;
  padding: 55px 20px 20px !important;
}

.vechicles_text h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  padding-top: 15px;
  padding-bottom: 10px;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}

.wrap {
  position: relative;
  display: flex;
  align-items: center;
}

figure {
  width: 40%;
  height: 250px;
  margin: 0;
  display: grid;
  place-items: center center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.txt {
  color: #fff;
  background: #003366;
  padding: 50px 50px 50px 15%;
  flex-basis: 60%;
  box-sizing: border-box;
  z-index: 2;
  margin-left: 30%;
  min-height: 400px;
  margin-top: 5%;
}

.txt h1 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 3px;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}

.txt p {
  padding-top: 20px;
  line-height: 1.8em;
  padding-right: 10px;
}

.view02 a {
  font-size: 20px;
  font-weight: 600;
  color: #003366;
  background-color: #fff;
  padding: 10px 20px;
  display: inline-block;
  text-align: right !important;
  margin-top: 2%;
}

.view02 a:hover {
  background-color: #ff0000;
}


.view03 a {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  background-color: #003366;
  padding: 10px 20px;
  display: inline-block;
  text-align: right !important;
  margin-top: 2%;
}

.view03 a:hover {
  background-color: #ff0000;
}


@media (max-width:1200px) {
  .txt {
    minheight: 350px !important;
  }
}



.news_area {
  width: 100%;
  padding: 6% 3em !important;
}

.news_area_in {
  max-width: 1280px !important;
  margin: auto !important;
  padding: 5% 3em 8% !important;
  background: rgba(0, 0, 0, .6);
}

.info_area {
  padding: 0 !important;
}

.info_list {
  padding: 0 !important;
}

.info_list ul {
  pmargin: 0 !important;
  color: #fff;
}

.info_list li {
  border-bottom: 1px solid #fff;
  padding: 1.17em 0 !important;
  display: block;
  font-size: 1rem;
}

.info_list li a {
  color: #fff;
}

.info_list li a:hover {
  color: #2782bd;
}

.info_list li span.date {
  padding-top: 2%;
  padding-bottom: 1.5rem;
  display: block;
  font-size: 0.9rem;
  display: inline-block;
}


.label1:after {
  content: "新着情報";
  font-size: 0.9rem;
  display: inline-block;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  border-radius: 20px;
  padding: 0.2em 1em 0.25em;
  margin-left: 0.6rem;
}

.label2:after {
  content: "お知らせ";
  display: inline-block;
  font-size: 0.9rem;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  border-radius: 20px;
  padding: 0.2em 1em 0.25em;
  margin-left: 0.6rem;
}

@media (max-width:991px) {
  .news_area {
    padding: 10% 0 !important;
  }
}

@media (max-width:767.8px) {
  .news_area {
    padding: 13% 0 !important;
  }
}

@media (max-width:799.8px) {
  .info_list li a {
    display: block !important;
  }
}

@media screen and (min-width:800px) {
  .info_list li span.date {
    padding: 0 1em;
    display: block;
    margin-bottom: 0.5rem;
  }

  .info_list {
    padding-top: 3%;
  }

  .info_list ul {
    padding: 0.5% 0 1.5% !important;
  }

  .info_list li a {
    margin-left: 1rem;
  }

}

@media screen and (min-width:1025px) {
  .info_list {
    padding: 0;
  }
}

@media (max-width:991px) {
  .wrap {
    display: none;
  }

  .course_title h3 a {
    font-size: 17px !important;
  }

  .view03 a {
    font-size: 18px;
    margin-top: 5%;
    margin-bottom: 5%;
  }

  .view02 a {
    font-size: 18px;
    margin-top: 5%;
    margin-bottom: 5%;
  }

  .view01 a {
    font-size: 18px;
    margin-top: 5%;
    margin-bottom: 5%;
  }
}


/*テーブル全体*/
table {
  margin: 5% auto 15% 1% !important;
  width: 100%;
  font-size: 1.1rem;
  text-align: left;
  border-collapse: collapse;
  border: 1px solid #fff;
  color: #fff;

}

.table-head {
  border-bottom: 1px solid #a7a9ac;
  background-color: rgba(255, 255, 255, .7);
  border-right: 1px solid #000;
  text-align: center;
  color: #000;
}

.table-head:last-child {
  border-right: none;
}

td,
th {
  padding: 1em;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.table-dat {
  width: 52%;
}

.daisu {
  width: 13%;
}


@media (max-width:991px) {
  table {
    font-size: .9rem;
    margin: 3% 1% 10% !important;
  }

  td,
  th {
    padding: 1em 1em;
  }

  .syaryou_back h3 {
    font-size: 24px !important;
  }

  .ichiran {
    width: 100%;
  }

  .recycle03 {
    width: 100% !important;
  }
}


.syaryou_back {
  background-color: #d1d3d4;
  color: #000;
  padding: 1.3em 2em 1em;
  height: 150px;
}

.syaryou_back h3 {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 26px !important;
  font-weight: 600;
  padding-bottom: .3em;
}

.ichiran {
  width: 70%;
  margin: auto auto 5%;
  text-align: left;
  color: #000;
  padding: 2em;
  border: 1px solid #a7a9ac;
  vertical-align: middle !important;
}

.ichiran h3 {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 26px !important;
  font-weight: 600;
  padding-bottom: .3em;
  vertical-align: middle !important;
}

.ichiran a p {
  color: #000;
}

.ichiran a p:hover {
  color: #ff0000;
}

.recycle_p {
  color: #000;
  text-align: center;
  margin-top: 1%;
  margin-bottom: -1%;
}

.vehicles_p {
  color: #000;
  text-align: left;
  line-height: 1.8em;
  padding: 1em 1em 0;
}

.vehicles_img {
  margin: 5% auto 0;
  text-align: center !important;
  width: 85%;
}

.kyoka {
  margin: 5% auto 8%;
  text-align: left;
  color: #000;
  padding: 2em;
  border: 1px solid #a7a9ac;
  vertical-align: middle !important;
  margin-bottom: 5%;
}

.kyoka h3 {
  color: #003366;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 20px !important;
  font-weight: 600;
  padding-bottom: .3em;
  vertical-align: middle !important;
}

.kyoka h3 span {
  color: #000;
  font-weight: 400;
  font-size: 16px;
  padding-left: 1em;
}

.kyoka_dwn {
  background-color: #003366;
  padding: 1em;
  text-align: center;
  color: #fff;
  font-weight: 600;
  margin-bottom: 3%;
  width: 49%;
}

.kyoka_dwn:hover {
  background-color: #ff0000;
}

.kyoka_dwn02 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  padding-top: 1em;
  margin-bottom: 5% !important;
}

.kyoka_dwn_disp {
  background-color: #003366;
  padding: 1em;
  text-align: center;
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.3%;
  width: 49%;
  display: inline-block !important;
}

.kyoka_dwn_disp:hover {
  background-color: #ff0000;
}

.disp_left {
  margin-right: 1.3%;
}

@media (max-width:1020px) {
  .kyoka_dwn {
    width: 100%;
  }
}

@media (max-width:767px) {
  .kyoka_dwn_disp {
    width: 100%;
  }

  .kyoka h3 {
    margin-top: 5%;
  }

  .kyoka_dwn02 {
    font-size: 20px !important;
    margin-top: -5% !important;
    margin-bottom: 8% !important;
  }

  .disp_left {
    margin-right: 0;
  }

  .vehicles_img {
    margin: 8% auto -5% !important;
    width: 100%;
  }
}


table.vehicles {
  border-collapse: collapse;
  width: 100%;
}

table.vehicles th,
table.vehicles td {
  padding: 1em 0.3em !important;
  border-bottom: 1px solid #ddd;
}

table.vehicles th {
  font-weight: 600;
  color: #000;
  background: #eee;
  position: sticky;
  top: 0;
  text-align: center;
}

table.vehicles td {
  text-align: left;
}

@media(max-width:767px) {
  .heading {
    display: none;
  }

  table.vehicles td {
    display: block;
    text-align: center;
  }

  table.vehicles td::before {
    content: attr(data-label);

    font-size: .875rem;
    color: #666;
    display: block;
    margin-bottom: 0.25rem;
  }

  .car-name {
    background: #eee;
  }
}



table.company_01 {
  width: 100%;

  border-collapse: collapse;
  margin: 5% auto 10%;
}

table.company_01 tr {
  border-bottom: solid 2px white;
}

table.company_01 tr:last-child {
  border-bottom: none;
}

table.company_01 th {
  position: relative;
  text-align: left;
  width: 30%;
  background-color: #003366;
  color: white;
  padding: 1em 1.5em;
}

table.company_01 th:after {
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top: calc(50% - 10px);
  right: -10px;
  border-left: 10px solid #003366;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

table.company_01 td {
  text-align: left;
  width: 70%;
  background-color: #eee;
  padding: 1em 1.5em;
}



table.company_02 {
  width: 100%;
  border-collapse: collapse;
  margin: 5% auto 10%;
}

table.company_02 tr {
  border-bottom: 1px solid #a7a9ac;
}

table.company_02 tr:last-child {
  border-bottom: none;
}

table.company_02 th {
  position: relative;
  text-align: left;
  width: 20%;
  background-color: #d1d3d4;
  color: #000;
  padding: 1em 1.5em;
}


table.company_02 td {
  text-align: left;
  width: 80%;
  padding: 1em 1.5em;
}



table.recycle_02 {
  width: 100%;
  border-collapse: collapse;
  margin: -1% auto 15% !important;
}



table.recycle_02 th {
  position: relative;
  text-align: center;
  width: 50%;
  background-color: #ff0000;
  color: #fff;
  padding: 1em 1.5em;
}


table.recycle_02 td {
  text-align: center;
  width: 50%;
  padding: 1em 1.5em;
  font-weight: 600;
}

.recycle03 {
  width: 70%;
  margin: -3% auto 6%;
  text-align: left;
}

.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 66%;
  position: relative;
}

.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}


@media (max-width:767px) {
  table.company_01 {
    font-size: 14px;
  }

  table.company_01 th {
    padding: 1em 0.8em;
  }

  table.company_02 {
    font-size: 14px;
  }

  table.company_02 th {
    padding: 1em 0.8em;
    width: 25%;
  }

  table.company_02 td {
    width: 75%;
  }

  .kyoka_dwn {
    margin-left: 0em;
  }

  .kyoka_dwn02 {
    padding-left: 0em;
    padding-top: 10% !important;
  }

  .kyoka p {
    padding-right: 0;
  }
}



.card h2 {
  padding-top: .6em;
  font-size: 18px;
  font-weight: 600;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  color: #000;
}

.card p {
  color: #000;
  padding-bottom: 1em;
}

.card-body {
  min-height: 150px;
}




.services {
  background: #003366;
  padding: 3em !important;
  position: relative;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services h3 {
  color: #ff0000 !important;
  font-size: 24px !important;
  font-weight: 600;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}

.services h2 {
  color: #ff0000;
  font-size: 32px !important;
  font-weight: 600;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  padding-bottom: 0.4em;
}

.services:hover h3,
.services:hover h2 {
  color: #fff !important;
}

.services .line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
}

.services .line:before,
.services .line:after {
  position: absolute;
  content: '';
  width: 10px;
  height: 4px;
  background: #fff;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services .line:before {
  top: 0;
  right: 0;
}

.services .line:after {
  bottom: 0;
  left: 0;
}

.services:before,
.services:after {
  position: absolute;
  content: '';
  width: 4px;
  height: 10px;
  background: #fff;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services:before {
  top: 0;
  right: 0;
}

.services:after {
  bottom: 0;
  left: 0;
}

.services .icon {
  line-height: 1.3;
  position: relative;
}

.services .icon span {
  font-size: 60px;
  color: #fff;
}

.services .media-body {
  color: #fff;
}

.services .media-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.services:hover {
  background: #ff0000;
}

.services:hover:before,
.services:hover:after {
  height: 30px;
}

.services:hover .line:before,
.services:hover .line:after {
  width: 30px;
}

.services-2 {
  padding: 20px;
}

@media (min-width: 768px) {
  .services-2 {
    margin-top: 30px;
  }
}

.services-2 .icon {
  position: relative;
  z-index: 0;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.services-2 .icon:after,
.services-2 .icon:before {
  position: absolute;
  content: '';
  z-index: -1;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
}

.services-2 .icon:after {
  bottom: 0;
  left: 5px;
  width: 40px;
  height: 40px;
}

.services-2 .icon:before {
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
}

.services-2 .icon span {
  line-height: 0;
  font-size: 60px;
  color: #323edd;
}

.services-2 .text h3 {
  font-size: 20px;
  font-weight: 600;
}


.block-6 {
  margin-bottom: 20px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}


.bg-gray {
  background-color: #d1d3d4;
}

.contact_btn {
  background-color: #2782bd;
  color: #fff;
}

.contact_btn:hover {
  background-color: #eed87c;
  color: #595757;
}

.work-text {
  font-size: 1.1rem;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif !important;
  line-height: 1.8em;
  background-color: #fff;
  padding: 1.5em 2em;
}

.video-wrap {
  width: 100%;
  height: 100vh;
  position: absolute;
  overflow: hidden !important;
  z-index: -1;
  top: 0%;
  left: 0%;
}

.video-wrap::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #10394b;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .3;
}

.video-wrap video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}



.mv__sub__catch02 {
  font-size: 1.1rem !important;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif !important;
  color: #fff;
  background: rgba(0, 0, 0, .3);
  margin: 8% auto auto;
  letter-spacing: 0.1em;
  border: 3px solid rgba(0, 0, 0, .4);
  position: relative;
  z-index: 1;
  border-radius: 30px;
  transition: .3s;
  display: inline-block;
  padding: 8px 20px;
  text-align: center;
}

.mv__sub__catch02::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  border-radius: 30px;
  left: 0;
  z-index: -1;
  background: rgba(39, 130, 189, .55);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}

.mv__sub__catch02:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}





.mv__sub__catch03 {
  font-size: 1.1rem !important;
  color: #fff;
  background: rgba(77, 77, 77, .3);
  margin: 8% auto auto;
  letter-spacing: 0.1em;
  border: 3px solid rgba(77, 77, 77, .6);
  position: relative;
  z-index: 1;
  border-radius: 30px;
  transition: .3s;
  display: inline-block;
  padding: 8px 20px;
  text-align: center;
}

.mv__sub__catch03::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  border-radius: 30px;
  left: 0;
  z-index: -1;
  background: rgba(39, 130, 189, .55);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}

.mv__sub__catch03:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}



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

  .mv__sub__catch02,
  .mv__sub__catch03 {
    font-size: 1rem;
  }
}

.concept_area {
  max-width: 1280px !important;
  margin: 7% auto;
  padding: 3em !important;
}

.concept_area h3 {
  font-weight: 600;
  font-size: 2.8rem;
  padding-bottom: 5%;
  letter-spacing: 2px;
}

.concept_area h3 span {
  font-size: 1.2rem;
  display: block;
  padding-top: 0.4rem;
  font-weight: 400;
}

.concept_area h4 {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2.5rem;
  padding-bottom: 7% !important;
  letter-spacing: 2px;
}

.concept_area h4 span {
  display: inline-block !important;
}



.concept_area p {
  font-size: 1rem;
  font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  line-height: 1.8rem;
}

.concept_img {
  text-align: center !important;
  margin: auto;
  vertical-align: top !important;
}

.concept_img img {
  width: 120%;
  margin-top: -30%;
  margin-left: -18%;
  margin-bottom: -5%;
}

@media (max-width:991px) {
  .concept_img img {
    width: 115%;
    margin-left: -10%;
  }
}

@media (max-width:900px) {
  .concept_img img {
    margin-top: -23%;
  }
}

@media screen and (max-width: 767.8px) {
  .concept_img img {
    width: 100% !important;
    margin: 0 auto 0;
  }

  .concept_area h4 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
}

.main_area {
  text-align: right !important;
  margin: 7% 0 auto 7% !important;
  padding: 3em 0 3em 6% !important;
}

#works {
  padding: 0 !important;
  background: #000;
}

.main_area h3 {
  font-weight: 600;
  text-align: left !important;
  font-size: 2.8rem;
  padding-bottom: 5%;
  letter-spacing: 2px;
}

.main_area h3 span {
  font-size: 1.2rem;
  text-align: left !important;
  display: block;
  padding-top: 0.4rem;
  font-weight: 400;
}

@media (max-width:1450px) {
  .main_area {
    margin: 7% 0 auto 4% !important;
  }
}

@media (max-width:1300px) {
  .main_area {
    margin: 7% 0 auto 0 !important;
  }
}

@media screen and (max-width:800px) {
  .main_area {
    padding: 3em 0 3em 3em !important;
  }
}

#top_ph_area {
  margin: 0;
  padding: 0;
}

.top_ph {
  background: url("../img/top_company_back.jpg") center center;
  padding: 0;
  min-height: 400px;
}


#particles-js {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}


.news_area_in h3 {
  font-weight: 600;
  font-size: 2.8rem;
  padding-bottom: 5%;
  letter-spacing: 2px;
}

.news_area_in h3 span {
  font-size: 1.2rem;
  display: block;
  padding-top: 0.4rem;
  font-weight: 400;
}


.toiawase {
  background: #000;
  padding: 0;
}

.contact_left {
  display: inline-block;
  margin-right: 5%;
  vertical-align: middle;
  margin-left: 2%;
}

.contact_right {
  display: inline-block;
  vertical-align: middle;
  margin-left: 3%;
}

.toiawase h1 {
  padding-top: 3%;
  font-size: 2.4rem !important;
  font-weight: 600;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif !important;
}

.toiawase h1 a {
  color: #fff;
}

.toiawase h1 span {
  font-weight: 500;
  display: block;
  text-align: right;
  font-size: 0.8rem !important;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif !important;
  padding-top: .5rem;
}

.contact_mail {
  margin-top: 5%;
  background: #fff;
  padding: .9rem 1.7rem;
  font-size: 1.3rem !important;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif !important;
  font-weight: 500;
  border-radius: 10px;
}

.contact_mail a {
  color: #24211e;
}

.contact_mail:hover {
  background: #2782bd;
}

.contact_mail:hover a {
  color: #fff;
}


@media screen and (max-width:1150px) {
  .contact_left {
    margin-right: 3%;
  }

  .contact_right {
    margin-left: 1%;
  }
}

@media screen and (max-width:1035px) {
  .toiawase h1 {
    padding-top: 1.5%;
  }

  .toiawase h1 span {
    text-align: left;
  }

  .contact_left {
    margin-right: 0;
    display: block;
    margin-left: 10%;
  }

  .contact_right {
    margin-left: 10%;
    margin-top: 1.5%;
  }
}

@media screen and (max-width:900px) {
  .contact_left {
    margin-left: 20%;
  }

  .contact_right {
    margin-left: 20%;
  }
}

@media screen and (max-width: 767.8px) {
  .contact_left {
    margin-left: 0%;
    margin-top: 2%;
  }

  .contact_right {
    margin-left: 0%;
  }
}


.news {
  background: #24211e;
  padding: 0;
}



img.grayscale {
  filter: none;
  -webkit-filter: grayscale(40%);
}

img.grayscale:hover {
  filter: none;
  -webkit-filter: grayscale(0%);

}


.ftco-footer-social li {
  list-style: none;
  margin: 0 10px 0 0;
  display: inline-block;
}

.ftco-footer-social li a {
  height: 50px;
  width: 50px;
  display: block;
  float: left;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  position: relative;
}

.ftco-footer-social li a span {
  position: absolute;
  font-size: 26px;
  top: 50%;
  color: #24211e;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.ftco-footer-social li a:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
}

.ftco-footer-social li:hover a span {
  color: #fff;
}




.company_left {
  padding-right: 2rem;
  margin: 4% auto !important;
}

.company_right {
  padding-left: 2rem;
  margin: 4% auto !important;
}

.company_in dl {
  display: table;
  width: 100%;
  border-bottom: solid 1px rgb(195, 195, 195);
}

.company_in dl.first {
  border-top: solid 1px rgb(195, 195, 195);
  padding-top: 1rem;
}

.company_in dl.first02 {
  border-top: solid 1px rgb(195, 195, 195);
  padding-top: 1rem;
}

.company_in dt {
  display: table-cell;
  vertical-align: middle;
  width: 30%;
  padding: 1.4rem 1rem 1.7rem;
  line-height: 2.2rem;
  text-align: left;
}

.company_in dd {

  padding-left: 8%;
  display: table-cell;
  padding: 1.4rem 1rem 1.7rem;
  vertical-align: middle;
  width: 65%;
  line-height: 2.2rem;
  font-size: 14px;
}


@media screen and (max-width:991.8px) {
  .company_left {
    padding-right: 0;
  }

  .company_right {
    padding-left: 0;
    margin-top: 0 !important;
  }

  .company_in dl.first02 {
    border-top: none;
    padding-top: 0;
  }
}

#googlemap {
  position: relative;
  margin: 7% auto 0;
  padding: 0 0 40%;
  height: 0;
  overflow: hidden;

}

#googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  min-height: 100% !important;

}

@media screen and (max-width:991.8px) {
  #googlemap {
    margin: 10% auto 0;
    padding: 0 0 60%;
  }
}



.sub_ttl {
  max-width: 1280px;
  padding: 0 3em !important;
}

.sub_midashi {
  margin-top: -2%;
  font-size: 1.8rem !important;
  line-height: 3rem;
  margin-bottom: 13%;
  font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
}

.list_area {
  padding-right: 2%;
}

.list_area02 {
  padding-left: 2%;
}

.list_ttl {
  font-size: 1.9rem !important;
  color: rgba(255, 255, 255, 0.6);
  border-top: 2px solid rgba(255, 255, 255, 0.6);
  padding-left: 3em;
  text-indent: -1.5em;
  font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
}

.list_ttl span {
  display: inline-block !important;
  font-size: 1.9rem !important;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 1em;
  font-weight: 600 !important;
  text-indent: -1em;
}

.list_ttl .my-parts {
  display: inline-block !important;
  font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
  font-size: 2.2rem;
  margin-right: 4%;
  padding: .4em .1em .2em 0.6em;
  position: relative;
  color: #000000;
  z-index: 1;
}

.list_ttl .my-parts::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -1em;
  z-index: -1;
  background: rgba(255, 255, 255, 0.6);
  display: inline-block;
  transform: scaleY(.7) perspective(.6em) rotateX(-4deg);
  transform-origin: bottom left;
}

.list_area p,
.list_area02 p {
  padding-left: 2%;
  padding-right: 2%;
  margin-top: 4%;
  font-size: 1.1rem;
  line-height: 2.2rem;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}

.list_img {
  padding-left: 2%;
}

.list_img img,
.list_img02 img {
  width: 100%;
}

.list_img02 {
  padding-riht: 2%;
}

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

  .list_ttl .my-parts {
    margin-right: 6% !important;
  }
}



@media screen and (max-width:900px) {
  .sub_midashi {
    font-size: 1.6rem !important;
    line-height: 2.8rem;
    margin-bottom: 13%;
  }

  .list_ttl {
    font-size: 1.7rem !important;
  }

  .list_ttl .my-parts {
    font-size: 1.9rem;
    margin-right: 4% !important;
  }

  .list_area p,
  .list_area02 p {
    line-height: 2rem;
    font-size: 1rem;
  }

  .list_ttl span {
    margin-left: .1em;
  }
}

@media screen and (max-width: 767.8px) {
  .list_area {
    margin-top: 5%;
    padding-right: 0;
  }

  .list_area02 {
    margin-top: 5%;
    padding-left: 0;
  }

  .list_ttl {
    padding-left: 1.5em;
    text-indent: -.5em;
  }

  .list_area p,
  .list_area02 p {
    margin-top: 4%;
    margin-bottom: 8% !important;
  }

  .list_img {
    margin-left: 1% !important;
  }

  .list_img02 {
    margin-right: 1% !important;
  }
}




.video-btn {
  margin: 10% auto 5%;
}

.button_line004 {
  text-align: center;
}

.button_line004 a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 390px;
  color: #fff;
  font-size: 6rem;
  transition: 0.3s ease-in-out;
  font-weight: 600;
}



.button_line004 a:before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ff0000;
  /* 背景色を指定 */
  width: 80px;
  /* 横長にするために幅を変更 */
  height: 60px;
  border-radius: 15px;
  /* 角を丸くする */
}


.button_line004 a:after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 15px 0 15px 25px;
}




.machine-txt {
  margin-top: 2% !important;
  margin-bottom: 5%;
  font-size: 1.2rem;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif !important;
}

.machine-setumei {
  font-size: 1.1rem;
  line-height: 1.8rem !important;
  padding-left: 2.2em !important;
  text-indent: -.5em !important;
  padding-right: .5rem !important;
}

.machine_ichiran {
  position: relative;
  margin-top: 6%;
  margin-left: 1%;
  margin-bottom: 2%;
  height: 60px;
  font-size: 1.5rem !important;
  margin-right: 100px;
  padding: 1rem 1rem 1.6rem 1rem !important;
  color: #000;
  background: rgba(255, 255, 255, .7);
  display: inline-block;
}

.machine_ichiran:before {
  position: absolute;
  top: 0;
  right: -40px;
  width: 0;
  height: 0;
  content: '';
  border-width: 60px 40px 0 0;
  border-style: solid;
  border-color: rgba(255, 255, 255, .7) transparent transparent transparent;
}

@media screen and (max-width: 767.8px) {
  .machine_ichiran {
    margin-top: 15%;
    font-size: 1.2rem !important;
    height: 50px;
    padding: .7rem 1rem 1.4rem 1rem !important;
    margin-left: .0 !important;
    margin-bottom: 5%;
  }

  .machine_ichiran:before {
    right: -30px;
    border-width: 50px 30px 0 0;
  }
}


.tsuyomi_area {
  padding: 2% !important;
  vertical-align: middle !important;
  text-align: left !important;
}

.tsuyomi-setumei {
  font-size: 1.45rem !important;
  line-height: 2.2rem !important;
  padding-left: 1.2em !important;
  text-indent: -.5em !important;
  padding-right: 1.8rem !important;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif !important;
}

#tsuyomi_back {
  background: url("../img/tsuyomi_haikei.png");
  background-size: cover;
}

.border_right {
  padding: 1.5% !important;
  border-bottom: 2px solid rgba(255, 255, 255, .7);
  border-image: linear-gradient(to right, rgba(255, 255, 255, .6) 0%, rgba(36, 33, 30, .3) 100%);
  border-image-slice: 1;
}

.border_left {
  padding: 1.5% !important;
  border-bottom: 2px solid rgba(255, 255, 255, .7);
  border-image: linear-gradient(to right, rgba(36, 33, 30, .3) 0%, rgba(255, 255, 255, .6) 100%);
  border-image-slice: 1;
}

.tsuyomi-img-txt {
  font-size: .9rem !important;
  line-height: 1.4rem !important;
  padding-left: 1.2em !important;
  text-indent: -.5em !important;
  padding-right: 1.8rem !important;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif !important;
}

.tsuyomi_ttl {
  font-size: 1.9rem !important;
  color: rgba(255, 255, 255, 0.6);
  padding-left: .4em;
  padding-top: .5rem;
}


@media screen and (max-width: 767.8px) {
  .tsuyomi_area {
    padding: 2% 0 !important;
  }

  .tsuyomi_img {
    width: 50% !important;
    padding-bottom: 5% !important;
  }

  .tsuyomi-setumei {
    font-size: 1.25rem !important;
    line-height: 2rem !important;
  }
}

.contact_form {
  background: #fff;
}

.form-control {
  border: 2px solid #ced4da !important;
}


.info_ttl {
  text-align: center;
  margin: 7% auto 2%;
  font-size: 1.9rem !important;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
}

.info_ph {
  margin: 5% auto auto;
  text-align: center;
}

@media screen and (max-width:900px) {
  .info_ttl {
    font-size: 1.7rem !important;
  }
}

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

  .concept_area {
    padding: 0;
  }
}