@charset "UTF-8";

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

* {
  box-sizing: border-box;
}

*, :after, :before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  -webkit-appearance: none;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  overflow-wrap: break-word;
  color: #63320A;
  margin: 0;
  padding-top: 150px;
}
@media (max-width: 768px) {
  body {
    padding-top: 30px;
    font-size: 1.4rem;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover{
  opacity: .7;
}


*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}

p {
  margin: 0;
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}




h1 {
  text-decoration: none;
}

h2 {
  text-decoration: none;
}

.container-fuild {
  overflow: hidden;
}


a img:hover {
  opacity: 0.7;
}

ul {
  list-style-type: none;
}

li a {
  text-decoration: underline;
}

ol {
  padding-inline-start: 20px;
}

.card-text a {
  text-decoration: underline;
}


.form-check-inline .form-check-input {
  margin-top: 5px;
}

.form-check-label {
  margin-left: 5px;
}

.form-check {
  margin-bottom: 10px;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 20.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}

/* table */

tr:nth-child(1) th {
  border-top: none;
}

.table {
  color: #63320A;
}

.table td, .table th {
  padding: 20px;
}


/* animationa */

.img-animation {
  animation: img-opacity 3s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
  position: relative;
}

.img-animation:before {
  animation: img-animation 2s cubic-bezier(.4, 0, .2, 1) forwards;
  background: #fff;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes img-opacity {
  0% {
    opacity: 0;
  }
}

@keyframes img-animation {
  100% {
    transform: translateX(100%);
  }
}


/* nav指定 */

.navbar-expand-lg .navbar-nav .nav-link {
  margin-left: 20px;
  margin-right: 20px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  text-decoration: none;
}

.navbar-light .navbar-nav .nav-link {
  font-weight: 500;
  color: #63320A;
  letter-spacing: 0.5px;
  font-size: 18px;
}

@media screen and (max-width: 570px) {
/* 480pxまでの幅の場合に適応される */
.navbar-light .navbar-nav .nav-link {
  color: #ffffff;
  letter-spacing: 1px;
  font-size: 16px;
}
}

.navbar-light .navbar-toggler {
  border-color: rgba(0,0,0,0);
  outline: none;
}

.navbar-light .navbar-toggler-icon {
  background-image: none;
}

.navbar-toggler-icon {
  position: relative;
  width: 40px;
  height: 40px;
  background: none;
  appearance: none;
  cursor: pointer;
}
.navbar-toggler-icon,
.navbar-toggler-icon span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
.navbar-toggler-icon span {
  position: absolute;
  right: 5px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  border-radius: 1px;
}
.navbar-toggler-icon span:nth-of-type(1) {
  top: 8px;
}
.navbar-toggler-icon span:nth-of-type(2) {
  top: 20px;
}
.navbar-toggler-icon span:nth-of-type(3) {
  top: 32px;
}

.navbar-toggler[aria-expanded=true] span.navbar-toggler-icon span:nth-of-type(1) {
  transform: translateY(12px) rotate(-315deg);
}
.navbar-toggler[aria-expanded=true] span.navbar-toggler-icon span:nth-of-type(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded=true] span.navbar-toggler-icon span:nth-of-type(3) {
  transform: translateY(-12px) rotate(315deg);
}

.navbar {
  flex-wrap: nowrap;
}

/* 背景指定 */

.bg01 {
  background: #ffffff;
}

.bg02 {
  background-color: #63320A;
}

.bg03 {
  height: 140px;
  background-color: #63320A;
}

.bg03a {
  background-color: #63320A;
}

.bg05 {
    background: #f9f4ef;
}


.btn{
  border:1px solid #000;
  display:inline-block;
  padding:10px 14px;
}	
.btn:hover{
  cursor:pointer;
}
.ritch{
  position:relative;
}
.ritch::after {
  content: '';
  position: absolute;
  bottom:-2px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #000;
  transition: all .3s;
}
.btn:hover .ritch::after {
  width: 100%;
}

/* dropshadow指定 */

.dropshadow {
  -webkit-filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.4));
  -moz-filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.4));
  -ms-filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.4));
  filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.4));
}

/* 囲み文字 */
.box1 {
  font-size: 30px;
  text-align: center;
}

.box2 {
  font-size: 24px;
  border: 2px #63320A solid;
  padding: 15px; /* 枠と文字の空間 */
	margin: 0px; /* 枠の外の空間 */
	border-radius: 8px; /* 枠の角を丸くする */
  margin: 5px;
  display: inline-block;
}

.a_small {
  font-size: 12px;
}

.normal {
  font-size: 16px;
}

.normalm {
  font-size: 14px;
  text-align: left;
}


.large {
  font-size: 30px;
}

.large02 {
  font-size: 20px;
  margin-top: 20px;
}

.largemn {
  font-size: 36px;
}

.largem {
  font-size: 21px;
}

.large2 {
  font-size: 60px;
}

.small {
  font-size: 14px;
}


/* コンテンツ指定 */

.header_title {
  font-size: 30px;
  letter-spacing: 1.0;
  color: #fff;
}

.footer_title {
  font-size: 20px;
  letter-spacing: 1.0;
  color: #fff;
}

.corporate_logo {
  width: 150px;
  margin-left: 20px;
}

.f_corporate_logo {
  width: 150px;
  margin-right: 20px;
}

.sp_f_corporate_logo {
  width: 150px;
  margin-right: 20px;
}

.header_logo {
  width: 500px;
  margin-top: 5px;
}

.sp_header_logo {
  width: 160px;
  margin-top: 2px;
  margin-left: 10px;
}

.footer_logo {
  width: 500px;
}

.sp_footer_logo {
  width: 300px;
  margin-top: 4px;
  margin-left: 4px;
}


.sec01 {
  font-size: 14px;
  text-align: right;
  line-height: 1.2;
  color: #fff;
  margin-right:20px;
}

.sec01a {
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 2px;
}

.sec02 {
  font-size: 70px;
  text-align: center;
  color: #63320a46;
}

.sec02a {
  font-size: 25px;
  line-height: 1.2;
}

.sec02b {
  font-size: 16px;
  margin-top: 10px;
}

.sec02_sp {
  font-size: 40px;
  text-align: center;
  color: #63320a46;
}

.sec02a_sp {
  font-size: 20px;
  font-weight: 500;
}

.sec02b_sp {
  font-size: 12px;
  margin-top: 5px;
}

.sec03 {
  color: #fff;
}

.sec03a {
  color: #fff;
}

.sec04 {
  font-size: 22px;
  text-align: center;
  background: #63320A;
  color: #fff;
  padding: 10px 10px 10px 10px;
}

.sec05 {
  margin-top: -24px;
  padding-top: 50px;
}

.sec06 {
  border-bottom: 1px solid #ddb739;
  display: inline-block;
}

.sec07 {
  font-size: 16px;
  line-height: 1.6;
  padding-top: 10px;
  padding-bottom: 10px;
}

.sec08 {
  height: 200px;
  overflow: auto;
  padding: 10px;
}

.sec09 {
  font-size: 14px;
}

.sec10 {
  font-size: 14px;
}

.sec11 {
  border-right: 2px solid #ccc;
}

.sec12 {
  text-align: center;
}

.sec12sp {
  text-align: center;
  font-size: 16px;
  line-height: 2;
}

.sec12a {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  border-bottom: 1px solid #63320A;
}

.sec13 {
  font-size: 30px;
  font-weight: 600;
  border-bottom: 0px solid #ffffff;
  display: inline-block;
}

.sec14 {
  text-align: center;
}

.sec15 {
  text-align: center;
  font-size: 18px;
}

.sec16 {
  text-align: center;
  margin-top: 0px;
}

.sec17 {
  background: #fff;
  padding: 40px;
}

.sec18 {
  background: #fff;
  padding: 30px;
}

.sec19 {
  background: #fff;
  padding: 40px;
}

.sec20 {
  border-radius: 10px;
}

.sec22 {
  text-align: center;
  margin-top: 20px;
}

.sec22s {
  font-size: 18px;
  text-align: center;
}

.sec23 {
  font-size: 24px;
  text-align: center;
}


.sec24 {
  font-size: 32px;
}

.sec25 {
  height: 300px;
  overflow: auto;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.sec26 {
  text-align: left;
}

.sec27 {
  line-height: 1.8;
}

.sec28 {
  background: #fff;
  padding: 40px;
}

.sec28s {
  max-width: 600px;
  margin: 0 auto;
}

.sec29 {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.sec30 {
  font-size: 36px;
  text-align: center;
}

.sec31 {
  background: #fff;
  padding: 0px;
}




.col-form-label-lg {
  padding-top: 0px;
  font-size: 1.8rem;
}

ul,li{
    margin: 0;
    padding: 0;
}

[id^="menu"] li{
    padding: 10px 10px 10px 20px;
}

label {
  font-size: 18px;
}

.form-check-inline {
  margin-right: 20px;
}

.form-group {
  margin-bottom: 20px;
}

button {
  padding: 10px 40px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: ;
}

button:hover {
  opacity: .7;
}

.active {
  font-weight: ;
}


/* pagetop */

#page_top {
    position: fixed;
    bottom: 35px;
    right: 10px;
}
#page_top a {
    background-color: #786951;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 15px 10px;
		border-radius: 50%;
    font-size: 12px;
}
#page_top a:hover {
    background-color: #666;
    text-decoration: none;
}

.keyframe1 {
  animation-name: anim_v;
}

@keyframes anim_v {
  0% {
    transform: translate(0, 0px);
  }
  100% {
    transform: translate(0, 60px);
  }
}

.car_price__innner {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1280px;
  padding-top: 30px; 
}
@media (max-width: 768px) {
  .car_price__innner {
    gap: 30px;
    padding: 0px;
    margin-top: 30px;
  }
}

.car_model__title {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin-top: 40px;
}

.car_price__title {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .car_price__title {
    font-size: 20px;
    text-align: center;
  }
}

.car_price__title__etc {
  font-size: 20px;
}
@media (max-width: 768px) {
  .car_price__title__etc {
  }
}

.car_price__subtitle {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
}

.car_price__title__text {
  max-width: 100%;
  margin: 0 auto;
  padding-top: 10px;
  text-align: justify;
}

.car_price__insurance__label {
  font-size: 14px;
}

.car_price__insurance {
  font-size: 20px;
  font-weight: 400;
}

.car_price__insurance__yen {
  font-size: 16px;
  margin-left: 5px;
  margin-right: 5px;
}

.car_price__insurance__tax {
  font-size: 10px;
}

.car_price__label {
  font-size: 14px;
}

.car_price__text {
  font-size: 30px;
  font-weight: 500;
}

.car_price__yen {
  font-size: 24px;
  margin-left: 5px;
  margin-right: 5px;
}

.car_price__tax {
  font-size: 14px;
}

.car_price__attention {
  text-align: left;
}

.car_price__list {
  display: flex;
  justify-content: space-around;
  list-style: none;
  justify-content: center;
  padding: 60px;
  background: #ffffff;
  border-radius: 20px;
  gap: 30px 50px;
}
@media (max-width: 768px) {
  .car_price__list {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0px 0px;
    padding: 40px;
  }
}

.car_price__list__text {
  padding: 0px 30px;
}
@media (max-width: 768px) {
  .car_price__list__text {
    padding: 20px 0px;
  }
}

.car_price__list_left {
  display: flex;
  width: 50%;
  padding: 0px;
}
@media (max-width: 768px) {
  .car_price__list_left {
    width: 100%;
  }
}

.car_price__list_right {
  width: 50%;
}
@media (max-width: 768px) {
  .car_price__list_right {
    width: 100%;
    margin-top: 30px;
  }
}


@media (max-width: 768px) {
  .car_pricee__list li {
    width: 100%;
    padding: 0 10px
  }
}

.car_price__data__taitle {
  font-weight: 600;
  margin-top: 40px;
}

.car_price__data {
  margin-top: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .car_price__data {
    font-size: 1.4rem;
    letter-spacing: 0px;
    margin-top: 20px;
  }
}

.car_price__data dl {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}
.car_price__data dt {
  display: flex;
  align-items: center;
  flex-basis: 20%;
  font-weight: 400;
  padding: 15px 0;
  border-bottom: #eeeeee solid 1px;
}
.car_price__data dd {
  display: flex;
  align-items: center;
  flex-basis: 80%;
  padding: 15px 0;
  margin-bottom: 0rem;
  border-bottom: #eeeeee solid 1px;
}
@media (max-width: 768px) {
	.car_price__data dt {
    column-width: 100%;
    padding: 30px 0px 30px 0px;
    flex-basis: 30%;
	}
  .car_price__data dd {
    padding: 30px 0px 30px 0px;
    flex-basis: 70%;
	}
}

.car_price__data dt:first-child {
  border-top: 1px solid #eeeeee;
}

.car_price__data dd:nth-child(2) {
  border-top: 1px solid #eeeeee;
}


.shop__title {
  text-align: center;
  margin-top: 40px;
}

/* table */

tr:nth-child(1) th {
  border-top: none;
}

.shop__table {
  width: 100%;
  color: #63320A;
  margin-top: 40px;
}

.shop__table td, .shop__table th {
  vertical-align: top;
  border-top: 1px solid #63320a23;
  padding: 20px 40px;
}
@media (max-width: 768px) {
	.shop__table td, .shop__table th {
    padding: 20px 0px;
	}
}


.company__logo {
  text-align: center;
}

.company__table {
  width: 100%;
  color: #63320A;
  margin-top: 40px;
}

.company__table td, .shop__table th {
  vertical-align: top;
  border-top: 1px solid #63320a23;
  padding: 20px 40px;
}
@media (max-width: 768px) {
	.company__table td, .shop__table th {
    padding: 20px 0px;
	}
}
