@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 900px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 901px) {
  .is-sp {
    display: none !important;
  }
}
body,
html {
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
}

body {
  font-size: 16px;
  color: #222020;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  background: #fff;
  max-width: 1750px;
  margin: 0 auto;
  padding-top: 85px;
}
@media screen and (max-width: 900px) {
  body {
    font-size: 14px;
    padding-top: 53px;
  }
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 900px) {
  .inner {
    padding: 0 20px;
    max-width: 500px;
    margin: 0 auto;
  }
}

.header {
  background: -webkit-gradient(linear, left top, left bottom, from(#434343), to(#060606));
  background: linear-gradient(to bottom, #434343 0%, #060606 100%);
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 900px) {
  .header {
    padding: 10px 0;
  }
}
.header .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .flex .logo {
  max-width: 240px;
  margin-right: 30px;
}
@media screen and (max-width: 1200px) {
  .header .flex .logo {
    max-width: 120px;
  }
}
.header .flex .logo a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .flex .logo a:hover {
  opacity: 0.6;
}
.header .flex .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .flex .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.4;
}
.header .flex .right ul li {
  margin-right: 40px;
}
@media screen and (max-width: 1200px) {
  .header .flex .right ul li {
    margin-right: 15px;
  }
}
.header .flex .right ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: block;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
}
.header .flex .right ul li a:hover {
  color: #D60A0D;
}
.header .flex .right ul li a span {
  font-size: 13px;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .header .flex .right ul li a {
    font-size: 13px;
  }
}

.header-btn a {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#E2191C), to(#9F1113));
  background: linear-gradient(to bottom, #E2191C 0%, #9F1113 100%);
  border-radius: 50px;
  padding: 12px 30px 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
  display: inline-block;
}
@media screen and (max-width: 1200px) {
  .header-btn a {
    font-size: 15px;
  }
}
@media screen and (max-width: 900px) {
  .header-btn a {
    font-size: 15px;
    padding: 10px 15px;
    margin-right: 50px;
    line-height: 1;
  }
}
@media screen and (max-width: 374px) {
  .header-btn a {
    font-size: 13px;
  }
}
.header-btn a:hover {
  opacity: 0.6;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 900px) {
  .header-inner {
    padding: 0 20px;
  }
}

.drawer-icon {
  position: fixed;
  top: 17px;
  right: 20px;
  z-index: 300;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
@media screen and (min-width: 901px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-active .drawer-icon-bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  opacity: 0;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bars {
  width: 25px;
  height: 16px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 25px;
  height: 2px;
  background: #fff;
  top: 0;
  left: 0;
}

.drawer-icon-bar1 {
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bar2 {
  top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bar3 {
  top: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#E2191C), to(#9F1113));
  background: linear-gradient(to bottom, #E2191C 0%, #9F1113 100%);
  z-index: 250;
  display: none;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.drawer-content.is-active {
  display: block;
}

.drawer-icon-nav {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.drawer-icon-nav ul li {
  margin-bottom: 20px;
}
.drawer-icon-nav ul li a {
  display: block;
  color: #ffffff;
}

.drawer-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 220;
  display: none;
}
.drawer-mask.is-active {
  display: block;
}

.red {
  color: #D60A0D;
}

.big120 {
  font-size: 120%;
}

.section {
  padding: 80px 0 90px;
}
@media screen and (max-width: 900px) {
  .section {
    padding: 40px 0 40px;
  }
}

.mv {
  background: #EDEDED;
}
.mv .text1 {
  max-width: 510px;
  margin-left: auto;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #666666;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .mv .text1 {
    font-size: 11px;
    margin-bottom: 20px;
    margin-left: initial;
  }
}
.mv .mv-img {
  width: 92%;
  margin-left: auto;
  margin-bottom: 80px;
}
@media screen and (max-width: 900px) {
  .mv .mv-img {
    margin-bottom: 30px;
  }
}
.mv .main-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 3px;
  font-style: italic;
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  .mv .main-title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.mv .main-title .wrap {
  display: inline-block;
  position: relative;
}
.mv .main-title .wrap::before {
  position: absolute;
  content: "";
  height: 240px;
  width: 5px;
  background: #D60A0D;
  left: -40px;
  top: 0;
}
@media screen and (max-width: 900px) {
  .mv .main-title .wrap::before {
    left: -10px;
    width: 3px;
    height: 100px;
  }
}
.mv .main-title .big {
  font-size: 72px;
}
@media screen and (max-width: 900px) {
  .mv .main-title .big {
    font-size: 30px;
  }
}
.mv .main-title .small {
  font-size: 90%;
}
.mv .main-title .txt {
  font-family: "Licorice", cursive;
  color: #D60A0D;
  font-size: 120px;
  font-weight: 400;
  position: absolute;
  left: 95%;
  top: 57%;
  white-space: nowrap;
  -webkit-transform: rotate(-6deg);
          transform: rotate(-6deg);
}
@media screen and (max-width: 900px) {
  .mv .main-title .txt {
    top: 87%;
    left: initial;
    right: -30%;
    font-size: 40px;
  }
}
@media screen and (max-width: 374px) {
  .mv .main-title .txt {
    font-size: 40px;
    right: -10%;
  }
}
.mv .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .mv .flex {
    display: block;
  }
}
.mv .flex .left {
  width: 47%;
}
@media screen and (max-width: 900px) {
  .mv .flex .left {
    width: 100%;
    margin-bottom: 20px;
  }
}
.mv .flex .right {
  width: 47%;
  position: relative;
}
.mv .flex .right .text-bg {
  color: #D60A0D;
  font-family: "Licorice", cursive;
  font-size: 70px;
  position: absolute;
  top: 20px;
  left: -80px;
  -webkit-transform: rotate(-12deg);
          transform: rotate(-12deg);
}
@media screen and (max-width: 900px) {
  .mv .flex .right .text-bg {
    font-size: 40px;
    left: -10px;
    top: -20px;
  }
}
@media screen and (min-width: 901px) {
  .mv .flex .right {
    padding-top: 30px;
  }
}
@media screen and (max-width: 900px) {
  .mv .flex .right {
    width: 100%;
  }
}
.mv .btn {
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  .mv .btn {
    margin-top: 20px;
    text-align: center;
  }
}

.section-btn .section-btn-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-btn a {
  color: #fff;
  font-weight: 700;
  display: inline-block;
  padding: 20px 40px;
  background: -webkit-gradient(linear, left top, left bottom, from(#E2191C), to(#9F1113));
  background: linear-gradient(to bottom, #E2191C 0%, #9F1113 100%);
  border-radius: 50px;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
}
.section-btn a:hover {
  opacity: 0.6;
}
.section-btn a:hover .sec-arrow {
  -webkit-transform: translateX(7px);
          transform: translateX(7px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 900px) {
  .section-btn a {
    font-size: 14px;
    padding: 15px 30px;
  }
}
.section-btn a .sec-arrow {
  margin-left: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  width: 20px;
}

.top-bg {
  background: #EDEDED;
}

.section-title1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .section-title1 {
    margin-bottom: 20px;
    font-size: 22px;
    text-align: center;
  }
}

.section-title2 {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .section-title2 {
    margin-bottom: 20px;
    font-size: 22px;
    text-align: center;
  }
}
@media screen and (max-width: 374px) {
  .section-title2 {
    font-size: 20px;
  }
}

.top1 {
  background: #fff;
  border-radius: 50px 50px 0 0;
}

.slider a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.slider a:hover {
  opacity: 0.6;
}
.slider .item {
  padding: 0 15px;
}
.slider .item .img {
  margin-bottom: 20px;
}
.slider .item .contents {
  padding: 0px 20px 0;
  color: #222020;
  border-left: 0.5px solid #fff;
}
.slider .item .contents .cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}
.slider .item .contents .cats .cat {
  font-size: 13px;
}
.slider .item .contents .title {
  font-size: 18px;
  margin-bottom: 10px;
}
.slider .item .contents .time {
  font-size: 16px;
}
.slider .slick-dots {
  bottom: -70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slider .slick-dots li button:before {
  opacity: 0.2;
  color: #fff;
  content: "";
  width: 30px;
  height: 2px;
  background: #fff;
  margin: 0 2px;
}
.slider .slick-dots li {
  width: 23px;
}
.slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fff;
}
.slider .slick-prev:before {
  opacity: 1;
  content: "";
}
.slider .slick-next:before {
  opacity: 1;
  content: "";
}
.slider .slick-prev {
  width: 40px;
  height: 40px;
  background: #DADADA;
  border-radius: 50%;
  color: #081217;
  z-index: 10;
}
@media screen and (min-width: 901px) {
  .slider .slick-prev {
    left: initial;
    right: 50px;
    top: 120%;
  }
}
@media screen and (max-width: 900px) {
  .slider .slick-prev {
    width: 30px;
    height: 30px;
    left: -10px;
  }
}
.slider .slick-prev::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-left: 1.5px solid #000;
  border-bottom: 1.5px solid #000;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) !important;
          transform: translate(-50%, -50%) rotate(45deg) !important;
  position: absolute;
  left: 55%;
  top: 50%;
}
.slider .slick-next {
  width: 40px;
  height: 40px;
  background: #DADADA;
  border-radius: 50%;
  color: #081217;
  z-index: 10;
}
@media screen and (max-width: 900px) {
  .slider .slick-next {
    width: 30px;
    height: 30px;
    right: -10px;
  }
}
@media screen and (min-width: 901px) {
  .slider .slick-next {
    right: 0;
    top: 120%;
  }
}
.slider .slick-next::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #000;
  border-top: 1.5px solid #000;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) !important;
          transform: translate(-50%, -50%) rotate(45deg) !important;
  position: absolute;
  left: 45%;
  top: 50%;
}

.top1 .age {
  font-size: 16px;
  color: #222020;
}
.top1 .price {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.top1 .price .text {
  font-size: 15px;
  color: #222020;
}
.top1 .price .text span {
  font-size: 28px;
  color: #D60A0D;
  font-weight: 700;
  line-height: 1.3;
}
.top1 .price .left {
  background: #DADADA;
  line-height: 1.1;
  color: #222020;
  font-size: 13px;
  padding: 5px 5px;
  margin-right: 10px;
}
.top1 .slider .item .contents {
  border-left: 3px solid #D60A0D;
}
.top1 .slider .slick-dots li.slick-active button:before {
  color: #081217;
  background: #081217;
}
.top1 .slider .slick-dots li button:before {
  background: #292929;
}
.top1 .btn {
  margin-top: 130px;
  text-align: right;
}
@media screen and (max-width: 900px) {
  .top1 .btn {
    text-align: center;
    margin-top: 90px;
  }
}

.top2 {
  background: -webkit-gradient(linear, left top, left bottom, from(#434343), to(#060606));
  background: linear-gradient(to bottom, #434343 0%, #060606 100%);
}
.top2 .section-title2 {
  text-align: center;
  color: #fff;
}
.top2 .white-box {
  background: #fff;
  padding: 60px;
  border-radius: 20px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .top2 .white-box {
    padding: 20px;
  }
}
.top2 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .top2 .flex {
    display: block;
    margin-bottom: 40px;
  }
}
.top2 .flex:last-child {
  margin-bottom: 0;
}
.top2 .flex:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.top2 .flex .img {
  width: 45%;
}
@media screen and (max-width: 900px) {
  .top2 .flex .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.top2 .flex .contents {
  width: 50%;
}
@media screen and (max-width: 900px) {
  .top2 .flex .contents {
    width: 100%;
  }
}
.top2 .flex .contents h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  background: #EDEDED;
  padding: 5px;
}
@media screen and (max-width: 900px) {
  .top2 .flex .contents h3 {
    font-size: 18px;
  }
}
.top2 .flex .contents p {
  font-size: 16px;
  padding-left: 10px;
  border-left: 2px solid #D60A0D;
}
@media screen and (max-width: 900px) {
  .top2 .flex .contents p {
    font-size: 14px;
  }
}
.top2 .text-bg {
  color: #D60A0D;
  font-family: "Licorice", cursive;
  font-size: 70px;
  position: absolute;
  top: -50px;
  left: 40px;
  -webkit-transform: rotate(-6deg);
          transform: rotate(-6deg);
}
@media screen and (max-width: 900px) {
  .top2 .text-bg {
    font-size: 40px;
    left: 10px;
    top: -40px;
  }
}

.top3 {
  color: #fff;
  background: url(../img/top2-bg.jpg) no-repeat center center/cover;
  padding-bottom: 130px;
}
@media screen and (max-width: 900px) {
  .top3 {
    padding-bottom: 100px;
  }
}
.top3 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .top3 .flex {
    display: block;
  }
}
.top3 .flex .left {
  width: 47%;
}
@media screen and (max-width: 900px) {
  .top3 .flex .left {
    width: 100%;
  }
}
.top3 .flex .left p {
  line-height: 1.6;
}
.top3 .flex .right {
  width: 47%;
  position: relative;
}
.top3 .flex .right .text-bg {
  color: #D60A0D;
  font-family: "Licorice", cursive;
  font-size: 70px;
  position: absolute;
  bottom: 10px;
  left: 0px;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
}
@media screen and (max-width: 900px) {
  .top3 .flex .right .text-bg {
    font-size: 40px;
    left: -10px;
    top: -20px;
  }
}
@media screen and (min-width: 901px) {
  .top3 .flex .right {
    padding-top: 30px;
  }
}
@media screen and (max-width: 900px) {
  .top3 .flex .right {
    width: 100%;
    margin-bottom: 20px;
  }
}
.top3 .btn {
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  .top3 .btn {
    margin-top: 20px;
    text-align: center;
  }
}

.top2 .flex .img img {
  border-radius: 20px;
}

.bg2 {
  background: #121212;
}

.top4 {
  background: #EDEDED;
  border-radius: 50px 50px 0 0;
}
.top4 .flex1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 901px) {
  .top4 .flex1 {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 900px) {
  .top4 .flex1 {
    display: block;
    margin-bottom: 40px;
  }
}
.top4 .flex1 .section-title2 {
  white-space: nowrap;
}
@media screen and (min-width: 901px) {
  .top4 .flex1 .section-title2 {
    margin-bottom: 0;
    margin-right: 100px;
  }
}
.top4 .flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.top4 .flex2 .text-bg {
  color: #D60A0D;
  font-family: "Licorice", cursive;
  font-size: 70px;
  position: absolute;
  top: -60px;
  left: -10px;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
}
@media screen and (max-width: 900px) {
  .top4 .flex2 .text-bg {
    font-size: 40px;
    left: -10px;
    top: -40px;
  }
}
@media screen and (max-width: 900px) {
  .top4 .flex2 {
    display: block;
  }
}
.top4 .flex2 li {
  width: 31%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .top4 .flex2 li {
    width: 100%;
    margin-bottom: 20px;
  }
  .top4 .flex2 li:last-child {
    margin-bottom: 0;
  }
}
.top4 .flex2 li p {
  text-align: center;
  padding: 10px;
  font-weight: 700;
}
.top4 .btn {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .top4 .btn {
    margin-top: 30px;
  }
}

.top5 {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#E2191C), to(#9F1113));
  background: linear-gradient(to bottom, #E2191C 0%, #9F1113 100%);
  color: #fff;
}
@media screen and (max-width: 900px) {
  .top5 {
    padding: 40px 0;
  }
}
.top5 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 縦位置そろえたいなら */
}
.top5 .flex .contents {
  /* 左側を伸ばす */
}
.top5 .flex .img {
  margin-left: auto;
  /* ★これで右端へ */
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  /* 画像側は縮みにくく */
}
.top5 .flex .img img {
  display: block;
  max-width: 100%;
  height: auto;
}
.top5 .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top5 .flex .contents {
  width: 50%;
}
@media screen and (max-width: 900px) {
  .top5 .flex .contents {
    width: 100%;
  }
}
.top5 .flex .img {
  margin-right: calc(50% - 50vw);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 5%;
}
@media screen and (max-width: 900px) {
  .top5 .flex .img {
    margin-right: initial;
    margin-left: 0;
    margin-top: 20px;
  }
}
@media screen and (max-width: 900px) {
  .top5 .flex {
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.top5 .btn {
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  .top5 .btn {
    margin-top: 30px;
    text-align: center;
  }
}
.top5 .section-btn a {
  background: -webkit-gradient(linear, left top, left bottom, from(#434343), to(#060606));
  background: linear-gradient(to bottom, #434343 0%, #060606 100%);
}
.top5 .lead {
  max-width: 380px;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .top5 .lead {
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
.top5 h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}
.top5 h2 .wrap {
  display: inline-block;
  position: relative;
}
.top5 h2 .wrap .text-bg {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Licorice", cursive;
  font-weight: 400;
  font-size: 72px;
  position: absolute;
  left: 120%;
  top: -40%;
  white-space: nowrap;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
}
@media screen and (max-width: 900px) {
  .top5 h2 .wrap .text-bg {
    font-size: 36px;
    left: 110%;
  }
}
@media screen and (max-width: 900px) {
  .top5 h2 {
    font-size: 24px;
  }
}

.access {
  background: #EDEDED;
}
.access .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 900px) {
  .access .flex {
    display: block;
  }
}
.access .flex .contents {
  width: 60%;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .access .flex .contents {
    padding: 20px;
    width: 100%;
  }
}
.access .flex .contents .address {
  font-weight: 500;
  font-size: 18px;
}
@media screen and (max-width: 900px) {
  .access .flex .contents .address {
    font-size: 16px;
  }
}
.access .flex .contents .address span {
  font-size: 16px;
}
@media screen and (max-width: 900px) {
  .access .flex .contents .address span {
    font-size: 14px;
  }
}
.access .flex .contents .tel {
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .access .flex .contents .tel {
    margin-bottom: 15px;
  }
}
.access .flex .contents .tel a {
  font-weight: 500;
  font-size: 20px;
  color: #222020;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.access .flex .contents .tel a:hover {
  opacity: 0.6;
}
.access .flex .contents .row {
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .access .flex .contents .row {
    margin-bottom: 10px;
  }
}
.access .flex .contents .row:last-child {
  margin-bottom: 0;
}
.access .flex .contents .row .dt {
  font-weight: 600;
  font-size: 20px;
}
@media screen and (max-width: 900px) {
  .access .flex .contents .row .dt {
    font-size: 16px;
  }
}
.access .map {
  position: absolute;
  right: 0;
  width: 48%;
  z-index: 2;
}
@media screen and (max-width: 900px) {
  .access .map {
    position: initial;
    width: 100%;
    margin-top: 20px;
  }
}
.access .map .wrap {
  position: relative;
  padding-top: 70%;
}
.access .map .wrap iframe {
  border-radius: 20px;
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .access .map .wrap iframe {
    top: 0;
  }
}
.access .text-bg {
  color: #D60A0D;
  font-family: "Licorice", cursive;
  font-weight: 400;
  font-size: 72px;
  position: absolute;
  right: 20%;
  top: -10%;
  white-space: nowrap;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
}
@media screen and (max-width: 900px) {
  .access .text-bg {
    font-size: 36px;
    top: -5%;
    right: 0;
  }
}

.footer-top-bg {
  background: #EDEDED;
}

.footer-top-bg2 {
  background: #222020;
}

.footer {
  background: -webkit-gradient(linear, left top, left bottom, from(#434343), to(#060606));
  background: linear-gradient(to bottom, #434343 0%, #060606 100%);
  border-radius: 50px 50px 0 0;
  padding-top: 80px;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .footer {
    padding-top: 40px;
  }
}
.footer .logo {
  max-width: 240px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
  .footer .logo {
    max-width: 120px;
    margin-bottom: 20px;
  }
}
.footer .logo a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .logo a:hover {
  opacity: 0.6;
}
.footer .heading {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 40px;
}
.footer .heading .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .footer .heading .flex {
    display: block;
  }
}
.footer .heading .left {
  width: calc(100% - 400px);
}
@media screen and (max-width: 900px) {
  .footer .heading .left {
    width: 100%;
    margin-bottom: 20px;
  }
}
.footer .heading .right {
  width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (max-width: 900px) {
  .footer .heading .right {
    display: block;
    width: 100%;
  }
}
.footer .heading .right ul {
  padding-left: 30px;
  border-left: 3px solid #D60A0D;
}
@media screen and (max-width: 900px) {
  .footer .heading .right ul {
    padding-left: 10px;
    margin-bottom: 20px;
  }
}
.footer .heading .right ul li {
  margin-bottom: 15px;
}
.footer .heading .right ul li:last-child {
  margin-bottom: 0;
}
.footer .heading .right ul li a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
}
.footer .heading .right ul li a span {
  font-size: 80%;
}
.footer .heading .right ul li a:hover {
  color: #D60A0D;
}
.footer .bottom {
  padding: 15px 0;
}
.footer .bottom .flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .footer .bottom .flex2 {
    display: block;
  }
}
@media screen and (max-width: 900px) {
  .footer .bottom .flex2 .item {
    margin-bottom: 10px;
    text-align: right;
  }
}
.footer .bottom .flex2 .item a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
}
.footer .bottom .flex2 .item a:hover {
  color: #D60A0D;
}
.footer .bottom .flex2 .copyright {
  font-size: 13px;
}
@media screen and (max-width: 900px) {
  .footer .bottom .flex2 .copyright {
    font-size: 10px;
    text-align: center;
  }
}
@media screen and (max-width: 900px) {
  .footer .header-btn {
    text-align: center;
  }
}
@media screen and (max-width: 900px) {
  .footer .header-btn a {
    margin: 0;
  }
}

.common-heading-bg {
  position: relative;
}
.common-heading-bg .m-title {
  font-size: 36px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .common-heading-bg .m-title {
    font-size: 22px;
  }
}
.common-heading-bg::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.common-heading-bg .bg11 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
}
.common-heading-bg .bg22 {
  position: absolute;
  right: 0;
  top: -50px;
  width: 60%;
}
.common-heading-bg .inner {
  position: relative;
  z-index: 6;
}
.common-heading-bg .mv-img {
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 901px) {
  .common-heading-bg .main-title {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 901px) {
  .common-heading-bg .main-title .txt {
    font-size: 70px;
    right: 0;
    left: initial;
    z-index: 5;
  }
}
.common-heading-bg .wrap {
  display: block !important;
}
.common-heading-bg h1 {
  font-style: normal;
  display: block;
}
@media screen and (min-width: 901px) {
  .common-heading-bg h1 {
    font-size: 45px;
  }
}
@media screen and (max-width: 900px) {
  .common-heading-bg h1 {
    font-size: 26px;
  }
}
@media screen and (min-width: 901px) {
  .common-heading-bg .main-title .wrap::before {
    height: 140px;
  }
}
@media screen and (max-width: 900px) {
  .common-heading-bg .main-title .wrap::before {
    height: 70px;
  }
}
.common-heading-bg .lead {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 900px) {
  .common-heading-bg .lead {
    font-size: 14px;
    text-align: left;
  }
}

.refine1 {
  background: #EDEDED;
}
.refine1 .flex1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 901px) {
  .refine1 .flex1 {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 900px) {
  .refine1 .flex1 {
    display: block;
    margin-bottom: 40px;
  }
}
.refine1 .flex1 .section-title2 {
  white-space: nowrap;
}
@media screen and (min-width: 901px) {
  .refine1 .flex1 .section-title2 {
    margin-bottom: 0;
    margin-right: 100px;
  }
}
.refine1 .img1 {
  overflow: visible;
}
@media screen and (max-width: 900px) {
  .refine1 .img1 img {
    display: block;
    width: 900px;
    max-width: none;
  }
}
.refine1 .img1 .wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .refine1 .inner-r-o {
    padding-right: 0;
  }
}
.refine1 .img1 {
  margin-bottom: 80px;
}
@media screen and (max-width: 900px) {
  .refine1 .img1 {
    margin-bottom: 40px;
  }
}
.refine1 .flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 900px) {
  .refine1 .flex2 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 900px) {
  .refine1 .flex2 {
    display: block;
  }
}
.refine1 .flex2 .right {
  margin-right: calc(50% - 50vw);
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 5%;
  position: relative;
}
@media screen and (max-width: 900px) {
  .refine1 .flex2 .right {
    margin-right: 0;
    margin-top: 20px;
    width: 100%;
  }
}
.refine1 .flex2 .right .text-bg {
  color: #D60A0D;
  font-family: "Licorice", cursive;
  font-size: 70px;
  position: absolute;
  top: 120px;
  left: -80px;
  -webkit-transform: rotate(-12deg);
          transform: rotate(-12deg);
}
@media screen and (max-width: 900px) {
  .refine1 .flex2 .right .text-bg {
    font-size: 40px;
    left: -10px;
    top: -20px;
  }
}
.refine1 .flex2 .left {
  width: 50%;
}
@media screen and (max-width: 900px) {
  .refine1 .flex2 .left {
    width: 100%;
  }
}
.refine1 .flex3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.refine1 .flex3 li {
  width: 22%;
}
@media screen and (max-width: 900px) {
  .refine1 .flex3 li {
    width: 50%;
  }
  .refine1 .flex3 li:nth-child(n+3) {
    margin-top: 20px;
  }
}

p {
  font-weight: 500;
}

.gray-bg {
  background: #EDEDED;
}

@media screen and (max-width: 900px) {
  .mv .main-title .txt {
    font-size: 40px;
    right: 5px;
  }
}
.refine2 {
  background: -webkit-gradient(linear, left top, left bottom, from(#E2191C), to(#9F1113));
  background: linear-gradient(to bottom, #E2191C 0%, #9F1113 100%);
  border-radius: 50px 50px 0 0;
  position: relative;
  color: #fff;
}
.refine2::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.refine2 .inner {
  position: relative;
  z-index: 2;
}
.refine2 .section-title2 {
  color: #fff;
  position: relative;
}
.refine2 .section-title2 .text-bg {
  color: #fff;
  font-family: "Licorice", cursive;
  font-size: 70px;
  position: absolute;
  top: -10px;
  right: 0;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  .refine2 .section-title2 .text-bg {
    font-size: 40px;
    right: 0;
    top: -50px;
  }
}
.refine2 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .refine2 .flex {
    display: block;
  }
}
.refine2 .flex .item {
  width: 47%;
}
@media screen and (max-width: 900px) {
  .refine2 .flex .item {
    width: 100%;
    margin-bottom: 30px;
  }
  .refine2 .flex .item:last-child {
    margin-bottom: 0;
  }
}
.refine2 .contents {
  color: #222020;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  position: relative;
  left: 20px;
  margin-top: -20px;
}
@media screen and (max-width: 900px) {
  .refine2 .contents {
    left: 0;
  }
}
.refine2 h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  background: #EDEDED;
  padding: 5px;
}
@media screen and (max-width: 900px) {
  .refine2 h3 {
    font-size: 18px;
  }
}
.refine2 p {
  font-size: 16px;
  padding-left: 20px;
  border-left: 2px solid #D60A0D;
}
@media screen and (max-width: 900px) {
  .refine2 p {
    font-size: 14px;
    padding-left: 10px;
  }
}
.refine2 .img img {
  border-radius: 20px;
}

.cta-sec {
  background: #EDEDED;
}
.cta-sec ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .cta-sec ul {
    display: block;
  }
}
.cta-sec ul li {
  width: 32%;
  position: relative;
}
@media screen and (max-width: 900px) {
  .cta-sec ul li {
    width: 100%;
    margin-bottom: 15px;
  }
  .cta-sec ul li:last-child {
    margin-bottom: 0;
  }
}
.cta-sec ul li a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cta-sec ul li a:hover {
  opacity: 0.6;
}
.cta-sec ul li a:hover .arrow {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cta-sec ul li a:hover .arrow img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
}
.cta-sec ul li .text1 {
  font-weight: 500;
  font-size: 15px;
  position: absolute;
  top: 10px;
  left: 10px;
}
@media screen and (max-width: 900px) {
  .cta-sec ul li .text1 {
    font-size: 15px;
  }
}
.cta-sec ul li .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 10px;
  right: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .cta-sec ul li .btn {
    right: 2%;
  }
}
.cta-sec ul li .btn .arrow {
  width: 18px;
  margin-left: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cta-sec ul li .btn .arrow img {
  position: relative;
  top: -2px;
  display: block;
}
.cta-sec ul li .text2 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.common-heading-bg {
  background: #fff;
}

@media screen and (min-width: 901px) {
  .common-heading-bg .bg22 {
    top: -60px;
  }
}
.bread {
  padding: 20px 0;
}
@media screen and (max-width: 900px) {
  .bread {
    padding: 10px 0;
  }
}
.bread a,
.bread span {
  display: inline-block;
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  .bread a,
  .bread span {
    font-size: 11px;
  }
}
.bread a {
  color: #909090;
}
.bread .arrow {
  width: 7px;
  position: relative;
  top: -3px;
}

.footer {
  position: relative;
  z-index: 6;
}

.footer-top-sec {
  background: #222020;
  color: #fff;
  position: relative;
}
.footer-top-sec .inner {
  position: relative;
  z-index: 7;
}
.footer-top-sec .bg {
  position: absolute;
  right: 0;
  bottom: -30px;
  width: 50%;
}
@media screen and (max-width: 900px) {
  .footer-top-sec .bg {
    bottom: -30px;
    width: 70%;
  }
}
.footer-top-sec h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .footer-top-sec h2 {
    font-size: 22px;
  }
}
.footer-top-sec .btn {
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  .footer-top-sec .btn {
    margin-top: 20px;
  }
}

.factory1 {
  background: -webkit-gradient(linear, left top, left bottom, from(#E2191C), to(#9F1113));
  background: linear-gradient(to bottom, #E2191C 0%, #9F1113 100%);
  position: relative;
  margin-bottom: 80px;
}
@media screen and (max-width: 900px) {
  .factory1 {
    margin-bottom: 40px;
    padding-bottom: 25px;
  }
}
.factory1:last-child {
  margin-bottom: 0;
}
.factory1 .white-box {
  padding: 60px;
  background: #fff;
  border-radius: 20px;
}
.factory1 .inner {
  position: absolute;
  top: 0%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 900px) {
  .factory1 .inner {
    -webkit-transform: initial;
            transform: initial;
    position: initial;
    width: initial;
  }
}
.factory1 .inner .white-box {
  position: absolute;
  right: 0;
  top: -30px;
  width: 60%;
}
@media screen and (max-width: 900px) {
  .factory1 .inner .white-box {
    top: 0;
    width: 100%;
    position: initial;
    margin-top: 10px;
    padding: 20px;
  }
}
.factory1 .inner .white-box.white-box2 {
  right: initial;
  left: 0;
}
.factory1 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  min-height: 420px;
}
@media screen and (max-width: 900px) {
  .factory1 .flex {
    min-height: initial;
  }
}
.factory1 .flex.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.factory1 .flex .img {
  width: 55%;
}
@media screen and (max-width: 900px) {
  .factory1 .flex .img {
    width: 100%;
    margin-bottom: 15px;
  }
}
.factory1 .flex .img img {
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 900px) {
  .factory1 .flex .img img {
    height: auto !important;
  }
}
.factory1 h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .factory1 h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.factory1 h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  background: #EDEDED;
  padding: 5px;
}
@media screen and (max-width: 900px) {
  .factory1 h3 {
    font-size: 18px;
  }
}
.factory1 p {
  font-size: 16px;
  padding-left: 20px;
  border-left: 2px solid #D60A0D;
}
@media screen and (max-width: 900px) {
  .factory1 p {
    font-size: 14px;
    padding-left: 10px;
  }
}

.factory1,
.cta-sec {
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 374px) {
  .common-heading-bg .m-title {
    font-size: 20px;
  }
}
.support {
  background: -webkit-gradient(linear, left top, left bottom, from(#E2191C), to(#9F1113));
  background: linear-gradient(to bottom, #E2191C 0%, #9F1113 100%);
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 3;
}
.support .section-title2 {
  color: #fff;
}
.support ul li {
  background: #fff;
  margin-bottom: 80px;
  padding: 20px 40px;
}
@media screen and (max-width: 900px) {
  .support ul li {
    margin-bottom: 40px;
    padding: 20px;
  }
}
.support ul li:last-child {
  margin-bottom: 0;
}
.support ul li .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .support ul li .flex {
    display: block;
  }
}
.support ul li .flex .contents {
  width: 55%;
}
@media screen and (max-width: 900px) {
  .support ul li .flex .contents {
    width: 100%;
    margin-bottom: 15px;
  }
}
.support ul li .flex .img {
  width: 40%;
  position: relative;
  top: 40px;
}
@media screen and (max-width: 900px) {
  .support ul li .flex .img {
    width: 100%;
    top: 0;
  }
}
.support ul li .flex .img img {
  border-radius: 20px;
}
@media screen and (min-width: 901px) {
  .support ul li .flex .img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.support h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  background: #EDEDED;
  padding: 5px;
  display: inline-block;
}
@media screen and (max-width: 900px) {
  .support h3 {
    font-size: 18px;
  }
}
.support p {
  font-size: 16px;
  padding-left: 20px;
  border-left: 2px solid #D60A0D;
}
@media screen and (max-width: 900px) {
  .support p {
    font-size: 14px;
    padding-left: 10px;
  }
}

.club1 {
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 2;
  background: #fff;
}
.club1 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .club1 ul {
    display: block;
  }
}
.club1 ul li {
  width: 31.5%;
  position: relative;
}
.club1 ul li .num {
  font-family: "Licorice", cursive;
  color: #D60A0D;
  font-size: 70px;
  font-weight: 400;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
  line-height: 1;
  position: absolute;
  top: -20px;
  left: 10px;
  z-index: 2;
}
@media screen and (max-width: 900px) {
  .club1 ul li .num {
    font-size: 50px;
  }
}
@media screen and (max-width: 900px) {
  .club1 ul li {
    width: 100%;
    margin-bottom: 30px;
  }
  .club1 ul li:last-child {
    margin-bottom: 0;
  }
}
.club1 ul li .img .wrap1 {
  position: relative;
  padding-top: 65%;
}
.club1 ul li .img .wrap1 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 20px 0 0;
}
.club1 ul li .contents {
  background: #EDEDED;
  padding: 20px;
}
.club1 ul li .contents h3 {
  text-align: center;
  margin-bottom: 10px;
}
.club1 ul li .contents h3 .wrap {
  text-align: center;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 30px;
  background: #fff;
  font-weight: 700;
  font-size: 16px;
}

.common-heading-bg .bg111 {
  bottom: -40px;
}

.club2 {
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#E2191C), to(#9F1113));
  background: linear-gradient(to bottom, #E2191C 0%, #9F1113 100%);
}
.club2 .section-title1 {
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
}
@media screen and (max-width: 900px) {
  .club2 .section-title1 {
    margin-bottom: 30px;
  }
}
.club2 ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.club2 ul li .num {
  font-size: 120px;
  font-style: italic;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  line-height: 1;
}
@media screen and (max-width: 900px) {
  .club2 ul li .num {
    font-size: 50px;
  }
}
.club2 ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 900px) {
  .club2 ul li {
    margin-bottom: 40px;
    display: block;
  }
}
.club2 ul li:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.club2 ul li .img {
  width: 47%;
}
@media screen and (max-width: 900px) {
  .club2 ul li .img {
    width: 100%;
    margin-bottom: 15px;
  }
}
.club2 ul li .contents {
  position: relative;
  width: 47%;
}
@media screen and (max-width: 900px) {
  .club2 ul li .contents {
    width: 100%;
  }
}
.club2 h3 {
  margin-bottom: 15px;
}
.club2 h3 span {
  font-weight: 700;
  font-size: 20px;
  background: #EDEDED;
  padding: 5px;
  display: inline-block;
  color: #222020;
  margin-bottom: 5px;
}
@media screen and (max-width: 900px) {
  .club2 h3 span {
    font-size: 18px;
  }
}
.club2 p {
  font-size: 18px;
  padding-left: 20px;
  border-left: 2px solid #fff;
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .club2 p {
    margin-bottom: 10px;
  }
}
.club2 p span {
  font-size: 16px;
}
@media screen and (max-width: 900px) {
  .club2 p span {
    font-size: 13px;
  }
}
@media screen and (max-width: 900px) {
  .club2 p {
    font-size: 14px;
    padding-left: 10px;
  }
}

.flow-bg {
  background: #9F1113;
}

.flow {
  background: #EDEDED;
  border-radius: 50px 50px 0 0;
  overflow: hidden;
}

.flow {
  background: #EDEDED;
  position: relative;
}
.flow .bg {
  position: absolute;
  right: 0;
  width: 60%;
  top: 0;
  bottom: -2px;
}
@media screen and (max-width: 900px) {
  .flow .bg {
    display: none;
  }
}
.flow .bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flow ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flow ul li {
  width: 22%;
  background: #fff;
  padding: 30px 20px;
  position: relative;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 900px) {
  .flow ul li {
    padding: 20px 10px;
    width: 48%;
  }
  .flow ul li:nth-child(n+3) {
    margin-top: 20px;
  }
}
.flow ul li .tri {
  position: absolute;
  left: 100%;
  top: 0;
  width: 20px;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .flow ul li .tri {
    top: 100%;
    left: 0;
    display: none;
  }
}
.flow ul li .tri img {
  height: 100%;
}
.flow ul li .icon {
  width: 50px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 900px) {
  .flow ul li .icon {
    width: 40px;
    margin-bottom: 10px;
  }
}
.flow ul li p {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 900px) {
  .flow ul li p {
    font-size: 14px;
  }
}

.qa .section-title2 {
  text-align: center;
}
.qa .row {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .qa .row {
    margin-bottom: 20px;
    padding: 20px 10px;
  }
}
.qa .row:last-child {
  margin-bottom: 0;
}
.qa .row .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.qa .row .flex .icon {
  width: 48px;
}
@media screen and (max-width: 900px) {
  .qa .row .flex .icon {
    width: 35px;
  }
}
.qa .row .flex .text {
  width: calc(100% - 60px);
}
@media screen and (max-width: 900px) {
  .qa .row .flex .text {
    width: calc(100% - 45px);
  }
}
.qa .row .dt {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  cursor: pointer;
}
.qa .row .dt.active .p-icon {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.qa .row .dt.active .p-icon::after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 0 !important;
}
.qa .row .dt .p-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  width: 30px;
}
@media screen and (max-width: 900px) {
  .qa .row .dt .p-icon {
    right: 0px;
  }
}
.qa .row .dt .p-icon::before {
  position: absolute;
  width: 25px;
  height: 3px;
  background: #D60A0D;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
  .qa .row .dt .p-icon::before {
    width: 20px;
  }
}
.qa .row .dt .p-icon::after {
  position: absolute;
  width: 3px;
  height: 25px;
  background: #D60A0D;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  left: 11px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 900px) {
  .qa .row .dt .p-icon::after {
    height: 20px;
    left: 8px;
  }
}
@media screen and (max-width: 900px) {
  .qa .row .dt {
    font-size: 15px;
  }
}
.qa .row .dt .text1 {
  padding-right: 60px;
}
@media screen {
  .qa .row .dt .text1 {
    padding-right: 35px;
  }
}
.qa .row .dd {
  font-size: 16px;
  font-weight: 500;
  padding-top: 20px;
  display: none;
}
@media screen and (max-width: 900px) {
  .qa .row .dd {
    font-size: 14px;
    padding-top: 10px;
  }
}
.qa .row .dd .text {
  padding-top: 20px;
}
.qa .row .dd .text2 {
  border-top: 1px solid #CBCBCB;
  margin-right: 60px !important;
  padding-right: 0;
}
@media screen and (max-width: 900px) {
  .qa .row .dd .text2 {
    margin-right: 30px !important;
  }
}

.stock1 {
  padding-top: 0;
}
.stock1 .section-title2 {
  text-align: center;
}

.bread a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bread a:hover {
  opacity: 0.6;
}

.stock-ul li {
  margin-bottom: 70px;
}
@media screen and (max-width: 900px) {
  .stock-ul li {
    margin-bottom: 50px;
  }
}
.stock-ul li:last-child {
  margin-bottom: 0;
}
.stock-ul li .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .stock-ul li .flex {
    display: block;
  }
}
.stock-ul li .flex .img {
  width: 40%;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  position: relative;
  z-index: 6;
}
@media screen and (max-width: 900px) {
  .stock-ul li .flex .img {
    width: 100%;
    margin-bottom: 15px;
    -webkit-transform: initial;
            transform: initial;
  }
}
.stock-ul li .flex .img a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.stock-ul li .flex .img a:hover {
  opacity: 0.6;
}
.stock-ul li .flex .img .wrap {
  position: relative;
  padding-top: 65%;
}
.stock-ul li .flex .img .wrap img {
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.stock-ul li .flex .contents {
  width: 60%;
  padding: 40px 40px 60px 80px;
  background: #EDEDED;
  border-radius: 20px;
}
@media screen and (max-width: 900px) {
  .stock-ul li .flex .contents {
    width: 100%;
    padding: 20px 20px 40px;
  }
}
.stock-ul li .flex .contents .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .stock-ul li .flex .contents .heading {
    display: block;
  }
}
.stock-ul li .flex .contents .heading h2 {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .stock-ul li .flex .contents .heading h2 {
    font-size: 18px;
  }
}
.stock-ul li .flex .contents .heading .en {
  font-size: 18px;
  font-weight: 500;
}
@media screen {
  .stock-ul li .flex .contents .heading .en {
    font-size: 14px;
  }
}
.stock-ul li .flex .contents .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid #222020;
}
.stock-ul li .flex .contents .right .p-text {
  background: #DADADA;
  padding: 6px;
  line-height: 1;
  font-size: 18px;
  font-weight: 500;
  margin-right: 6px;
}
@media screen and (max-width: 900px) {
  .stock-ul li .flex .contents .right .p-text {
    font-size: 14px;
  }
}
.stock-ul li .flex .contents .right .price {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .stock-ul li .flex .contents .right .price {
    font-size: 14px;
  }
}
.stock-ul li .flex .contents .right .price span {
  font-size: 36px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .stock-ul li .flex .contents .right .price span {
    font-size: 28px;
  }
}
.stock-ul .bottom {
  background: #fff;
  padding: 15px 20px;
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  .stock-ul .bottom {
    font-size: 13px;
  }
}
@media screen and (max-width: 374px) {
  .stock-ul .bottom {
    font-size: 12px;
  }
}
.stock-ul .bottom .row {
  border-bottom: 1px solid #E4E4E4;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.stock-ul .bottom .row:last-child {
  border-bottom: none;
}
.stock-ul .bottom .row .dt {
  margin-right: 10px;
}
.stock-ul .btn {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -20px;
}
.stock-ul .btn a {
  white-space: nowrap;
}
.stock-ul .contents {
  position: relative;
}

.other {
  background: #fff;
  position: relative;
  z-index: 5;
  padding-top: 30px;
}
.other .section-title2 {
  text-align: center;
}

.bread {
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 900px) {
  .bread .arrow {
    width: 5px;
    position: relative;
    top: -3px;
  }
  .bread .arrow a {
    white-space: nowrap;
  }
}
.single {
  position: relative;
}
.single .bg22 {
  position: absolute;
  right: 0;
  top: -60px;
  width: 60%;
}
.single .btn3 a {
  text-decoration: underline;
  color: #222020;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single .btn3 a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 900px) {
  .single .btn3 {
    margin-top: 30px;
  }
}
.single h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  padding-left: 90px;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .single h1 {
    font-size: 22px;
    margin-bottom: 20px;
    padding-left: 30px;
  }
}
.single h1::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0px;
  height: 5px;
  width: 80px;
  background: #D60A0D;
}
@media screen and (max-width: 900px) {
  .single h1::before {
    height: 3px;
    width: 25px;
  }
}

.single-rental1 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 80px;
}

@media screen and (max-width: 900px) {
  .single-rental1 .flex {
    margin-bottom: 40px;
    display: block;
  }
}
.single-rental1 .flex .car-gallery {
  width: 55%;
  display: block;
}

@media screen and (max-width: 900px) {
  .single-rental1 .flex .car-gallery {
    width: 100%;
    margin-bottom: 20px;
  }
}
.single-rental1 .flex .main-slider {
  width: 100%;
}

.single-rental1 .flex .contents {
  width: 40%;
}

@media screen and (max-width: 900px) {
  .single-rental1 .flex .contents {
    width: 100%;
  }
}
.single-rental1 .img2 {
  width: 20%;
}

.single-rental1 .thumb-slider2 {
  width: 100%;
  margin-top: 7px;
}

.single-rental1 .img2 {
  margin: 0 5px;
}

.common-hyou2 {
  margin-bottom: 60px;
}

.single-rental1 .img2.slick-current img {
  border: 3px solid #D60A0D;
}

.single-rental1 .img2 img {
  border: 3px solid transparent;
}

@media screen and (max-width: 900px) {
  .single-rental1 .img2 {
    margin: 0px;
  }
}
.single .inner {
  position: relative;
  z-index: 5;
}
.single .inner .name {
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .single .inner .name {
    font-size: 20px;
  }
}
.single .inner .en {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .single .inner .en {
    margin-bottom: 15px;
    font-size: 16px;
  }
}
.single .right {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid #222020;
  margin-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .single .right {
    margin-bottom: 20px;
  }
}
.single .right .flex-right {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single .right .p-text {
  background: #DADADA;
  padding: 6px;
  line-height: 1;
  font-size: 18px;
  font-weight: 500;
  margin-right: 6px;
}
@media screen and (max-width: 900px) {
  .single .right .p-text {
    font-size: 14px;
  }
}
.single .right .price {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .single .right .price {
    font-size: 14px;
  }
}
.single .right .price span {
  font-size: 36px;
  font-weight: 700;
}
@media screen and (max-width: 900px) {
  .single .right .price span {
    font-size: 28px;
  }
}
.single .info-lists {
  background: #EDEDED;
  padding: 15px 20px;
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  .single .info-lists {
    font-size: 13px;
  }
}
@media screen and (max-width: 374px) {
  .single .info-lists {
    font-size: 12px;
  }
}
.single .info-lists .row {
  border-bottom: 1px solid #E4E4E4;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single .info-lists .row:last-child {
  border-bottom: none;
}
.single .info-lists .row .dt {
  margin-right: 10px;
}
.single .btn {
  margin-top: 20px;
}
@media screen and (max-width: 900px) {
  .single .btn {
    text-align: center;
  }
}
.single .bottom-area {
  margin-top: 80px;
  background: #EDEDED;
  padding: 40px;
  border-radius: 40px;
}
@media screen and (max-width: 900px) {
  .single .bottom-area {
    padding: 20px;
    margin-top: 30px;
    border-radius: 10px;
  }
}
.single .area1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 900px) {
  .single .area1 {
    display: block;
    padding-bottom: 20px;
  }
}
.single .area1 .ttl {
  font-size: 28px;
  font-weight: 700;
  white-space: nowrap;
  margin-right: 50px;
}
@media screen and (max-width: 900px) {
  .single .area1 .ttl {
    font-size: 20px;
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.single .area1 ul {
  background: #fff;
  padding: 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .single .area1 ul {
    padding: 20px 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.single .area1 ul li {
  width: 15%;
}
@media screen and (max-width: 900px) {
  .single .area1 ul li {
    width: 28%;
    margin: 2%;
  }
}
.single .area2 {
  padding-top: 40px;
  border-bottom: none !important;
  display: block;
}
@media screen and (max-width: 900px) {
  .single .area2 {
    padding-top: 20px;
  }
}
.single .area2 .ttl {
  margin-bottom: 40px;
}
@media screen {
  .single .area2 .ttl {
    margin-bottom: 10px;
  }
}
.single .btn2 {
  text-align: center;
}

.table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .table {
    display: block;
  }
}
.table .row {
  width: 50%;
  font-size: 15px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 900px) {
  .table .row {
    font-size: 12px;
    width: 100%;
  }
}
.table .row .dt {
  background: #666666;
  color: #fff;
  width: 35%;
  padding: 10px 10px;
  text-align: center;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
}
@media screen and (max-width: 900px) {
  .table .row .dt {
    width: 120px;
  }
}
.table .row .dd {
  width: 65%;
  padding: 10px 20px;
  border-right: 1px solid #DADADA;
  border-bottom: 1px solid #DADADA;
  border-left: 1px solid #DADADA;
  background: #fff;
}
@media screen and (max-width: 900px) {
  .table .row .dd {
    padding: 10px;
    width: calc(100% - 120px);
  }
}

.contact {
  position: relative;
  z-index: 5;
}
.contact .inner {
  position: relative;
  z-index: 6;
}
.contact .bg22 {
  position: absolute;
  right: 0;
  top: -60px;
  width: 60%;
}
.contact h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  padding-left: 90px;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .contact h1 {
    font-size: 22px;
    margin-bottom: 20px;
    padding-left: 30px;
  }
}
.contact h1::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0px;
  height: 5px;
  width: 80px;
  background: #D60A0D;
}
@media screen and (max-width: 900px) {
  .contact h1::before {
    height: 3px;
    width: 25px;
  }
}
.contact .lead {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 60px;
  padding-left: 90px;
}
@media screen and (max-width: 900px) {
  .contact .lead {
    font-size: 14px;
    margin-bottom: 30px;
    padding-left: 0px;
  }
}
.contact .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 700;
}
.contact .row .required {
  color: #fff;
  background: #D60A0D;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 11px;
  position: relative;
  top: -2px;
  margin-left: 10px;
}
@media screen and (max-width: 900px) {
  .contact .row {
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
  }
}
.contact .row .dt {
  width: 320px;
  text-align: right;
}
@media screen and (max-width: 900px) {
  .contact .row .dt {
    text-align: left;
    margin-bottom: 10px;
    width: 100%;
  }
}
.contact .row .dd {
  width: calc(100% - 360px);
}
@media screen and (max-width: 900px) {
  .contact .row .dd {
    width: 100%;
  }
}

input[type=text],
input[type=email],
input[type=submit],
select,
textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #DADADA;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 10px;
  border-radius: 15px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  margin: 0;
  outline: none;
}

textarea {
  height: 150px;
  resize: none;
}

.contact .textarea-row {
  -webkit-box-align: initial !important;
      -ms-flex-align: initial !important;
          align-items: initial !important;
}
.contact .textarea-row .dt {
  padding-top: 10px;
}
@media screen and (max-width: 900px) {
  .contact .textarea-row .dt {
    padding-top: 0;
  }
}
.contact .section-btn a {
  padding: 20px 80px;
}

.submit {
  text-align: center;
}

input[type=submit] {
  position: absolute;
  left: -1000%;
  opacity: 0;
}

.btn443 {
  text-align: center;
}

.contact {
  position: relative;
  z-index: 5;
  background: #fff;
}

.white-bg {
  background: #fff !important;
}

.small80 {
  font-size: 80%;
  display: inline-block;
  margin-left: 5px;
}

.pagination {
  margin-top: 100px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .pagination {
    margin-top: 50px;
  }
}
.pagination .prev, .pagination .next {
  display: none;
}
.pagination a, .pagination span {
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  padding: 12px 20px;
  border-radius: 50%;
}
.pagination span {
  background: #D60A0D;
  color: #fff;
}
.pagination a {
  color: #222020;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination a:hover {
  opacity: 0.6;
}

@media screen and (min-width: 901px) {
  .single .bottom-area .btn3 {
    margin-top: -39px;
  }
}

@media screen and (min-width: 901px) {
  .single .bottom-area {
    padding-bottom: 60px;
  }
}
.single-rental1 .img2 {
  cursor: pointer;
}

.single-rental1 .img2 {
  margin-left: 2px;
  margin-right: 2px;
}

.single-rental1 .img2 img {
  border: none;
}

.main-slider2 .wrap img {
  border: 1.5px solid transparent;
}

.single-rental1 .thumb-slider2 {
  margin-top: 2px;
}
@media screen and (max-width: 900px) {
  .single-rental1 .thumb-slider2 {
    margin-top: 3px;
  }
}

.header.is-hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.header {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon.is-hidden {
  -webkit-transform: translateY(-53px);
          transform: translateY(-53px);
}

.drawer-icon {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}