@charset "UTF-8";
/** pxからvwへ変換関数 **/
html {
  font-size: 10px;
}

body {
  color: #444;
  font-size: 1.6rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

/*.fixed {
  position: fixed;
}*/
ul {
  list-style: none;
}

a {
  -webkit-transition: all .5s 0s ease;
  transition: all .5s 0s ease;
}

a:hover {
  color: #268460;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

h2 {
  font-size: 3rem;
  line-height: 1.5;
}

h3 {
  font-size: 2.2rem;
  line-height: 1.5;
}

table {
  width: 100%;
  text-align: left;
}

.w1000 {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.w800 {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.w600 {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.w100 {
	width: 100% !important;
	max-width: 100% !important;
}

.text-align-center {
  text-align: center;
}

.text-align-right {
  text-align: right;
}

.font-bold {
  font-weight: bold;
}

.mt-03 {
  margin-top: 3rem;
}

.mb-02 {
  margin-bottom: 2rem;
}

.pl-01 {
  padding-left: 1rem;
}

main {
  overflow: hidden;
}

.btn-a {
  max-width: 300px;
  margin: 4rem auto 0;
}

.btn-a a {
  font-size: 1.8rem;
  color: #fff;
  padding: .5rem;
  text-align: center;
  display: block;
  width: 100%;
  border-radius: 30px;
}

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

.bg-light-green {
  background-color: #F1F8F6;
}

.bg-light-green02 {
  background-color: #E2F0E9;
}

.bg-light-yellow {
  background-color: #FBF9DC;
}

.bg-grad-green {
  color: #fff;
  background: linear-gradient(140deg, #588c63 48%, #10511e 100%);
  -webkit-transition: background-position 0.5s ease-in-out;
  transition: background-position 0.5s ease-in-out;
  background-position: 0 0;
  background-size: 100% auto;
}

.bg-grad-green:hover {
  color: #fff;
  background-position: 100% 100%;
  background-size: 220% auto;
}

.Form-Btn {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.Form-Btn {
  cursor: pointer;
  border-radius: 10px;
  font-size: 1.8rem;
  color: #fff;
  background: linear-gradient(140deg, #588c63 48%, #10511e 100%);
  -webkit-transition: background-position 0.5s ease-in-out;
  transition: background-position 0.5s ease-in-out;
  background-position: 0 0;
  background-size: 100% auto;
  display: block;
  width: 300px;
  padding: 1rem 0;
  margin: 2rem auto 0;
}

.Form-Btn:hover {
  color: #fff;
  background-position: 100% 100%;
  background-size: 220% auto;
}

.bg-grad-green-title {
  color: #fff;
  background: linear-gradient(140deg, #588c63 48%, #10511e 100%);
}

.text-shadow {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
}

.box-shadow {
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.header .header-upper li.youtube-icon a,
.header .header-upper li.x-icon a
 {
  background: transparent !important;
  border-radius: 0;
}

.header .header-upper li.youtube-icon a svg
 {
  width: 35px;
  margin-right: 0;
}

.header .header-upper li.x-icon a img {
  width: 30px;
  margin-right: 0;
}

.header .header-upper li.youtube-icon a svg path {
  fill: #c4302b
}

.header .header-upper li.youtube-icon,
.header .header-upper li.x-icon {
  margin-left: 1rem;
}


/*===========
main contents
=============*/
.container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

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

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

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

.flex-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-direction-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.col-01 {
  width: 100%;
}

.col-02 {
  width: 48%;
  margin-bottom: 3rem;
}

.col-03 {
  width: 31%;
}

.col-04 {
  width: 23%;
}

/*===========
header
=============*/
.header {
  position: relative;
}

.header .header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header .header-container .logo {
  padding: 1rem 1rem 1rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .header-container .logo a img {
  max-width: 230px;
}

.header .header-container .pc-nav {
  padding-right: 3rem;
}

.header .header-container .pc-nav > .flex {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1rem 0 1.5rem;
}

.header .header-container .pc-nav > .flex li {
  margin-left: 2rem;
}

.header .header-container .pc-nav .menu_contents {
  background: #F2F5F5;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 3rem;
}

.header .header-container .pc-nav .menu_contents > .flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header .header-container .pc-nav .menu_contents li {
  width: calc(100% / 5);
  margin-left: 0;
}

.header .header-container .pc-nav .menu_contents li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2rem;
}

.header .header-container .pc-nav .menu_contents li a img {
  width: 50%;
}

.header .header-container .pc-nav .menu_contents li a p {
  width: 50%;
  padding-left: 1rem;
}

.header .header-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header .header-upper li {
  margin-left: 2rem;
}

.header .header-upper li a {
  color: #fff;
  padding: 1rem;
  border-radius: 0 0 6px 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: linear-gradient(140deg, #588c63 48%, #10511e 100%);
}

.header .header-upper li a svg {
  width: 20px;
  margin-right: .5rem;
}

.header .header-upper li a span {
  margin-left: 1.5rem;
}

.mv .breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main .loop-img {
  padding: 1.5rem 0;
}

main .loop-img .slide .inner {
  width: 95%;
  height: 160px;
  padding: 0 1rem;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .section {
  padding: 8rem 0;
}

main .title-h2 {
  position: relative;
  text-align: center;
  padding-bottom: 4rem;
}

main .title-h2:after {
  content: "";
  background-image: url(../img/common/h2-under.svg);
  width: 100%;
  height: 28px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2rem;
}

main .news-section h2 {
  margin-bottom: 2rem;
}

main .news-section .news li {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #707070;
}

main .news-section .news li .up {
  font-size: 1.4rem;
}

main .news-section .news li .up .tag {
  font-size: 1.2rem;
  display: inline-block;
  border-radius: 30px;
  padding: .2rem .5rem;
}

main .news-section .news li .up .date {
  margin-right: 1rem;
}

main .news-section .col-01 {
  height: 200px;
  background-size: cover;
  background-position: center;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .news-section .col-01 h4 {
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
}

main .news-section .col-01 p {
  color: #fff;
}

main .news-section .col-01:last-child {
  margin-bottom: 0;
}

.tag-carintro {
  color: #fff;
  background-color: #9f3513;
}

.tag-news {
  color: #fff;
  background-color: #E09A2F;
}

.main .mv {
  background-image: url("../img/common/bg.jpg");
  height: 350px;
  background-size: cover;
  background-position: center;
}

.main .mv .container {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main .mv .container h1 {
  font-size: 5rem;
  color: #fff;
}

.main .breadcrumb {
  position: absolute;
  left: 0;
  top: 2rem;
}

.main .breadcrumb ul {
  color: #fff;
  font-size: 1.4rem;
}

.main .breadcrumb ul li {
  display: inline-block;
}

.main .breadcrumb ul li a {
  color: #fff;
}

.main .breadcrumb ul li:after {
  content: ">";
  padding: 0 1rem;
}

.main .breadcrumb ul li:last-child:after {
  content: none;
}

/*===================
footer
===================*/
.cta-btn a {
  border: 1px solid #EDEDED;
  padding: .5rem;
  text-align: center;
  margin-top: 1.5rem;
  display: block;
}

.cta-btn a:hover {
  color: #336E40;
  background-color: #fff;
}

footer {
  background: linear-gradient(140deg, #0d1310 16%, #024b21 100%);
  padding: 7rem 0 2rem;
  color: #fff;
}

footer a {
  color: #fff;
}

footer .footer-nav ul:first-child {
  margin-right: 4rem;
}

footer .footer-nav ul li {
  padding: .5rem 0;
}

footer .footer-nav ul ol {
  list-style-type: none;
}

footer .footer-nav ul ol li:before {
  content: "ー";
  margin-right: .3rem;
}

footer .company h5 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

footer .copyright {
  padding-top: 2rem;
}

footer li.youtube-icon {
  display: flex;
  gap: 20px;
}

footer li.youtube-icon svg {
  width: 35px;
}

footer li.youtube-icon svg path {
  fill: #c4302b;
}

.footer-nav li.youtube-icon img {
  width: 30px;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  .sp-nav {
    display: none;
  }
  .fix-btn {
    display: none;
  }
  .fix-btn-pc {
    position: fixed;
    bottom: 30%;
    right: 0;
    z-index: 999;
  }
  .fix-btn-pc img {
    width: 60px;
  }
  .fix-btn-pc02 {
    bottom: 0;
  }
  .fix-btn-pc02 img {
    width: 280px;
  }
}

@media screen and (max-width: 767px) {
  .fix-btn-pc {
    display: none;
  }
  .pc {
    display: none !important;
  }
  body {
    font-size: 3.73333vw;
  }
  p {
    font-size: 3.73333vw;
  }
  .col-02 {
    width: 100%;
    margin-bottom: 4rem;
  }
  .header .header-container .pc-nav {
    display: none;
  }
  .header .header-container .logo {
    padding: 1rem;
  }
  .header .header-container .logo a img {
    max-width: 120px;
  }
  main .section {
    padding: 6rem 0;
  }
  main .section h2 {
    font-size: 6vw;
  }
  main .section h3 {
    font-size: 5.33333vw;
  }
  main .loop-img .slide .inner {
    height: 100px;
  }
  footer {
    padding: 5rem 5.33333vw 2rem;
  }
  footer .footer-nav ul:first-child {
    margin-right: 3rem;
  }
  footer .company {
    margin-top: 3rem;
    width: 100%;
  }
  footer .company .text {
    width: 100%;
  }
  footer .company h5 {
    font-size: 8vw;
  }
  footer .cta-btn {
    margin-top: 2rem;
  }
  footer .cta-btn a {
    font-size: 5.33333vw;
  }
  .main .mv .container h1 {
    font-size: 9.33333vw;
    padding: 0 2rem;
  }
}

/*===========
tabメニュー
=============*/
.tab {
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  width: 100%;
}

.tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tab-menu {
  font-size: 2rem;
  padding: 1.3rem 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #336E40;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: 1px solid #fff;
}

.tab-menu:last-child {
  border-right: 0;
}

.tab-menu span {
  font-size: 1.4rem;
}

.tab-menu.current {
  color: #444;
  background-color: #fff;
}

.content-box {
  background-color: #fff;
  display: none;
  width: 100%;
  padding: 4rem 6rem;
}

.content-box .flex:after {
	content: "";
	width: 31%;
	display: block;
}

.content-box .flex .col-03 {
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  padding: 2rem;
  border-radius: 10px;
}

.content-box .flex .col-03 .img {
  height: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content-box .flex .col-03 .content h3 {
  border: 3px solid #336E40;
  text-align: center;
  padding: .5rem;
  border-radius: 10px;
}

.content-box .flex .col-03 .content h3 span {
  display: block;
  font-size: 1.4rem;
}

.content-box .flex .col-03 .content h4 {
  text-align: center;
  padding: .3rem 0;
}

.content-box .flex .col-03 .content p {
  border: 3px solid #336E40;
  text-align: center;
  padding: .5rem;
  border-radius: 10px;
}

.content-box .flex .col-03 .content p span {
  font-size: 2.2rem;
  padding: 0 0.2rem;
}

.content-box .flex .col-03 .content a {
  display: block;
  padding: 1rem;
  margin-top: 1.4rem;
  text-align: center;
  border-radius: 20px;
}

.content-box img {
  display: block;
  height: auto;
  width: 100%;
}

.gnav {
  background: rgba(0, 0, 0, 0.4);
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 98;
  top: 0;
  left: 0;
}

.gnav__wrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  width: 100%;
}

.gnav__menu__item a {
  font-family: 'Noto Serif JP',"游明朝体","Yu Mincho",YuMincho,"ヒラギノ明朝 Pro","Hiragino Mincho Pro","MS P明朝","MS PMincho",serif;
  color: #fff;
  font-size: 5.33333vw;
  font-weight: 700;
  padding: 40px;
  text-decoration: none;
  -webkit-transition: .5s;
  transition: .5s;
}

.gnav__menu__item ol {
  list-style: none;
}

.gnav__menu__item ol li a {
  font-size: 4vw;
}

.gnav__menu__item a:hover {
  color: #666;
}

.hero {
  display: none;
  background: url(../img/common/bg-hum.jpg) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 97;
}

.menu {
  height: 20px;
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: 30px;
  z-index: 99;
}

.menu .menu__line {
  background: #444;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform .3s,-webkit-transform .3s;
  width: 100%;
}

.menu .menu__line--center {
  top: 9px;
}

.menu .menu__line--bottom {
  bottom: 0;
}

.menu .menu__line--top.active {
  background: #fff;
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.menu .menu__line--center.active {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.menu .menu__line--bottom.active {
  background: #fff;
  bottom: 10px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.bus-banner {
  width: 90%;
  margin: 5rem auto 0;
}

@media screen and (max-width: 767px) {
  .section .container {
    padding: 0 5.33333vw;
  }
  .tab-list {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .tab-list .tab-menu {
    width: 50%;
    font-size: 4vw;
    border-bottom: 1px solid #fff;
  }
  .tab-list .tab-menu span {
    font-size: 3.46667vw;
  }
  .content-box {
    padding: 4rem;
  }
  .content-box .flex .col-03 {
    width: 100%;
  }
  .gnav__menu__item a {
    display: block;
    padding: 0;
    margin-bottom: 1.5rem;
  }
  .gnav__menu__item ol {
    padding-left: 1rem;
  }
  .gnav__menu__item ol li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .gnav__menu__item ol li:before {
    content: "ー";
    margin-right: .5rem;
    color: #fff;
  }
  .fix-btn {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 95;
  }
  .fix-btn ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .fix-btn ul li {
    width: 50%;
  }
  .fix-btn ul li:first-child a {
    background-color: #56AFB5;
  }
  .fix-btn ul li:last-child a {
    background-color: #FFF6C7;
  }
  .fix-btn ul li a {
    font-size: 3.2vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    padding: .5rem 1rem;
    line-height: 1.5;
  }
  .fix-btn ul li a svg {
    width: 18px;
    margin-right: .5rem;
  }
  .fix-btn ul li a svg path {
    fill: #444;
  }
}
@media screen and (min-width:768px) and ( max-width:1024px) {
	.header .header-container .logo a img {
		max-width: 130px;
	}
	.header .header-container .pc-nav .header-upper li span {
		display: none !important;
	}
	.mv > .container {
		padding: 0 2rem;
	}
	main .about {
		padding: 6rem 2rem;
	}
	.about .flex .inner h3 {
		font-size: 1.6rem;
	}
	.about .flex .inner p {
		font-size: 1.4rem;
	}
	.equ {
		width: 18%;
	}
	main .car-archive {
		padding: 6rem 2rem;
	}
	.car-archive .content-box {
		padding: 4rem 2rem;
	}
	main .recommend {
		padding: 6rem 2rem;
	}
	main .news-section {
		padding: 6rem 2rem;
	}
	main .banner .container {
		padding: 0 2rem;
	}
	footer {
		padding: 7rem 2rem 2rem;
	}
	.main .breadcrumb {
		left: 2rem;
	}
	.main .car-archive-list {
		padding: 6rem 2rem;
	}
	.table .table-content tr th {
		width: 40%;
	}
	main .common {
		padding: 6rem 2rem;
	}
	.contact .content-box {
		padding: 4rem 2rem;
	}
	.contact .col-02 {
		width: 50%;
	}
	.contact > .container .content-box > .flex .box .flex .price dl {
		flex-direction: column;
		align-items: flex-start !important;
	}
	.contact .table .table-content tr th {
		width: 40%;
	}
}
/*# sourceMappingURL=style.css.map */