@font-face {
  font-family: "Motoya_r";
  src: url("../font/MotoyaAporoStd-W3.otf") format("truetype");
}
@font-face {
  font-family: "Motoya_b";
  src: url("../font/MotoyaAporoStd-W4.otf") format("truetype");
}
@font-face {
  font-family: "MINI-Serif_r";
  src: url("../font/MINI-Serif-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "MINI-Serif_b";
  src: url("../font/MINI-Serif-Bold.ttf") format("truetype");
}
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  font-family: "MINI-Serif_r", "Motoya_r", Arial, sans-serif;
}

.pc {
  display: none;
}
@media screen and (min-width: 751px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 751px) {
  .sp {
    display: none;
  }
}

.mv {
  position: relative;
  margin: 0 auto;
  max-width: 1680px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.mv__track {
  margin: 0 auto;
  max-width: 1680px;
  width: 100%;
  height: auto;
}

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

.button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 50px;
  transition: 0.2s;
  width: 30px;
  position: absolute;
}

.button::before {
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 50px;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
}

.mv__splide--prev {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  width: 8px;
  height: 20px;
  margin: auto;
  background-image: url("../img/mv_arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}
@media screen and (min-width: 751px) {
  .mv__splide--prev {
    width: 14px;
    height: 36px;
    left: 10px;
    bottom: 20px;
  }
}

.mv__splide--next {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  width: 8px;
  height: 20px;
  margin: auto;
  background-image: url("../img/mv_arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 751px) {
  .mv__splide--next {
    width: 14px;
    height: 36px;
    right: 10px;
    bottom: 20px;
  }
}

.p-mv__splide--pagination {
  position: absolute;
  right: 10px;
  bottom: 30px;
  width: 110px;
  height: 10px;
}
@media screen and (min-width: 751px) {
  .p-mv__splide--pagination {
    right: 50px;
    bottom: 20px;
  }
}

.splide__pagination__page {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 10px;
  height: 10px;
  transition: 0.2s;
}

.p-mv__splide--page {
  background-color: none;
  border: solid #fff 1px;
  width: 8px;
  height: 8px;
  transition: 0.5s all;
  border-radius: 50%;
}
@media screen and (min-width: 751px) {
  .p-mv__splide--page {
    width: 10px;
    height: 10px;
  }
}

.p-mv__splide--page.is-active {
  background-color: #fff;
  opacity: 1;
}

.p-mv__splide--pagination {
  bottom: 1.5em;
}

.p-mv__splide--pagination li {
  margin-left: 15px;
}

.p-mv__splide--pagination li:first-of-type {
  margin-left: 0;
}

.mv-under__btn {
  display: block;
  margin: 0 auto 30px;
  width: 280px;
  height: 50px;
  background-color: #ED5700;
  color: #fff;
  text-align: center;
  border-radius: 25px;
  padding: 10px 2px 5px 0;
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  position: relative;
  transition: opacity 0.4s;
}
@media screen and (min-width: 751px) {
  .mv-under__btn {
    width: 350px;
    height: 60px;
    border-radius: 30px;
    font-size: 1.4375rem;
    padding: 10px 2px 2px 0;
    margin: 0 auto 60px;
  }
}
.mv-under__btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 13px;
  height: 50px;
  background-image: url("../img/btn_arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 751px) {
  .mv-under__btn::after {
    width: 17px;
    height: 60px;
  }
}
.mv-under__btn:hover {
  opacity: 0.8;
}

.mv-under__small {
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  font-size: 0.625rem;
  position: relative;
  margin-bottom: -10px;
}
@media screen and (min-width: 751px) {
  .mv-under__small {
    font-size: 0.875rem;
    margin-bottom: -14px;
  }
}
.mv-under__small::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px;
  left: -9px;
  width: 5px;
  height: 15px;
  background-image: url("../img/btn_line.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 751px) {
  .mv-under__small::before {
    top: 6px;
    left: -14px;
    width: 7px;
    height: 20px;
  }
}
.mv-under__small::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px;
  right: -9px;
  width: 5px;
  height: 15px;
  background-image: url("../img/btn_line.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(-1, 1);
}
@media screen and (min-width: 751px) {
  .mv-under__small::after {
    top: 6px;
    right: -14px;
    width: 7px;
    height: 20px;
  }
}

.floating {
  display: block;
}

.floating.fixed {
  width: 100%;
  position: fixed;
  bottom: 0px;
  left: auto;
  z-index: 1;
  background: #123F94;
}
.floating.fixed .mv-under__btn {
  margin: 10px auto 10px;
}

.floating.fixed.none {
  opacity: 0;
  z-index: -1;
}
.mv-under__btn span.present {
    position: absolute;
    width: 56%;
    color: #cc0000;
    font-size: 10px;
    text-align: center;
    background: #fff;
    border: 1px solid #cc0000;
    border-radius: 10px;
    top: -10px;
}
@media screen and (min-width: 751px) {
	.mv-under__btn span.present {
		position: absolute;
		width: 55%;
		color: #cc0000;
		font-size: 13px;
		text-align: center;
		background: #fff;
		border: 1px solid #cc0000;
		border-radius: 10px;
		top: -13px;
	}
}
.top {
  padding: 0 20px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 751px) {
  .top {
    max-width: 1110px;
    margin: 0 auto 60px;
  }
}

.top__ttl {
  margin-bottom: 35px;
  letter-spacing: 0.03em;
}

.underline::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #cc0000;
  margin: 20px auto;
}
@media screen and (min-width: 751px) {
  .underline::after {
    margin: 30px auto 60px;
    width: 150px;
  }
}

.top__ttl--sub {
  font-family: "Motoya_b";
  font-size: 1rem;
  margin-bottom: 10px;
  padding-left: 20px;
}
@media screen and (min-width: 751px) {
  .top__ttl--sub {
    font-size: 1.4375rem;
  }
}

.top__ttl--main {
  font-family: "MINI-Serif_b";
  font-size: 1.375rem;
  line-height: 1.25;
}
@media screen and (min-width: 751px) {
  .top__ttl--main {
    font-size: 2.5rem;
  }
}

.top__text {
  font-size: 0.875rem;
  line-height: 2;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 751px) {
  .top__text {
    font-size: 1.25rem;
    margin-bottom: 60px;
  }
}

.top__text--big {
  font-family: "Motoya_b";
  font-size: 1.125rem;
  display: block;
  margin-bottom: 10px;
}
@media screen and (min-width: 751px) {
  .top__text--big {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
}

.top__img--item {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.top__note {
  font-size: 0.625rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #4D4D4D;
  text-align: left;
}
.top__note span {
  font-size: 0.6875rem;
}
@media screen and (min-width: 751px) {
  .top__note {
    font-size: 0.75rem;
  }
  .top__note span {
    font-size: 0.9375rem;
  }
}

.feature {
  padding: 0 20px;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 751px) {
  .feature {
    max-width: 1110px;
    margin: 0 auto 60px;
  }
}

.feature__box {
  margin-bottom: 40px;
}
@media screen and (min-width: 751px) {
  .feature__box {
    display: flex;
  }
}
@media screen and (min-width: 751px) {
  .feature__box:nth-of-type(2) {
    flex-direction: row-reverse;
  }
  .feature__box:nth-of-type(2) .feature__img {
    padding-left: 0;
/*    padding-right: 40px;*/
  }
}

@media screen and (min-width: 751px) {
  .feature__box--text {
    width: 50%;
  }
}

.feature__ttl {
  font-family: "Motoya_b";
  font-size: 1.125rem;
  color: #ED5700;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 751px) {
  .feature__ttl {
    font-size: 1.875rem;
    margin-bottom: 25px;
  }
}

.feature__text {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
@media screen and (min-width: 751px) {
  .feature__text {
    font-size: 1rem;
  }
}

.feature__img {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 751px) {
  .feature__img {
/*    padding-left: 40px;*/
    width: 70%;
	  margin: 0 auto;
  }
}
.feature__img picture {
  width: calc((100% - 11px) / 2);
  height: auto;
  margin-bottom: 11px;
}
@media screen and (min-width: 751px) {
  .feature__img picture {
    width: calc((100% - 20px) / 2);
	  margin-bottom: 11px;
  }
}
/*
@media screen and (min-width: 751px) {
  .feature__img picture:nth-of-type(even) {
    margin-top: 20px;
  }
}
*/

.feature__img--item {
  width: 100%;
  height: auto;
  display: block;
}

.feature__video {
  background: #123F94;
  padding: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 751px) {
  .feature__video {
    padding: 40px;
    margin-bottom: 80px;
  }
}

.feature__video--ttl {
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 auto 10px;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
@media screen and (min-width: 751px) {
  .feature__video--ttl {
    font-size: 1.875rem;
    margin: 0 auto 30px;
  }
}
.feature__video--ttl::before {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 1px;
  top: -10px;
  left: -60px;
  background-color: #fff;
  margin: 20px auto;
}
@media screen and (min-width: 751px) {
  .feature__video--ttl::before {
    width: 70px;
    top: -2px;
    left: -90px;
  }
}
.feature__video--ttl::after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 1px;
  top: -10px;
  right: -60px;
  background-color: #fff;
  margin: 20px auto;
}
@media screen and (min-width: 751px) {
  .feature__video--ttl::after {
    width: 70px;
    top: -2px;
    right: -90px;
  }
}

.feature__video--item {
  width: 100%;
  border-radius: 4px;
  display: block;
  margin: 0 auto 20px;
}
@media screen and (min-width: 751px) {
  .feature__video--item {
    border-radius: 8px;
  }
}

.pickup {
  padding: 0 20px;
  margin-bottom: 60px;
}
@media screen and (min-width: 751px) {
  .pickup {
    max-width: 1110px;
    margin: 0 auto 100px;
  }
}

.pickup__ttl {
  text-align: center;
  font-size: 1.125rem;
  font-family: "Motoya_b";
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 751px) {
  .pickup__ttl {
    font-size: 1.875rem;
  }
}
.pickup__ttl span {
  font-family: "MINI-Serif_b";
}

.pickup__link {
  text-align: center;
  font-family: "MINI-Serif_b";
  margin-bottom: 20px;
}

@media screen and (min-width: 751px) {
  .pickup__link--inr {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.pickup__link--ttl {
  font-family: "Motoya_b";
  font-size: 1.25rem;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 751px) {
  .pickup__link--ttl {
    font-size: 1.5625rem;
    margin-bottom: 30px;
  }
}
.pickup__link--ttl span {
  font-family: "MINI-Serif_b";
}

.pickup__link--item {
  display: block;
  padding-right: 20px;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 10px;
  position: relative;
  transition: 0.3s;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 751px) {
  .pickup__link--item {
    font-size: clamp(0.75rem, -0.075rem + 1.76vw, 1.25rem);
    margin: 0 20px 30px 20px;
  }
}
@media screen and (min-width: 751px) {
  .pickup__link--item:nth-of-type(3n) {
    margin: 0 0 30px 20px;
  }
  .pickup__link--item:nth-of-type(3n) ::before {
    display: none;
  }
}
@media screen and (min-width: 751px) {
  .pickup__link--item::before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 40px;
    top: -30px;
    right: -20px;
    background-color: #E6E6E6;
    margin: 20px auto;
  }
}
.pickup__link--item:hover {
  color: #24508D;
}
.pickup__link--item:hover::after {
  background-image: url("../img/pickup_arrow-b.png");
}
.pickup__link--item::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  right: 0;
  width: 12px;
  height: 7px;
  background-image: url("../img/pickup_arrow-g.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
}
@media screen and (min-width: 751px) {
  .pickup__link--item::after {
    font-size: 1.25rem;
  }
}

.pickup__link--item:nth-of-type(3n)::before {
  display: none;
}

.accordion__block {
  display: flex;
  flex-direction: column;
}

.accordion__item {
  display: inline-block;
}
.accordion__item:nth-of-type(odd) .accordion__head {
  background: #24508D;
  color: #fff;
}
.accordion__item:nth-of-type(even) .accordion__head {
  background: #fff;
  color: #4D4D4D;
}

.accordion__head {
  position: relative;
  text-align: left;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.4s;
}
@media screen and (min-width: 751px) {
  .accordion__head {
    font-size: 1.4375rem;
    padding: 16px 30px;
  }
}
.accordion__head:hover {
  opacity: 0.8;
}

.accordion__head:after {
  content: "+";
  font-weight: bold;
  font-size: 1.25rem;
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  top: 13px;
  right: 10px;
  transition: transform 0.4s;
}
@media screen and (min-width: 751px) {
  .accordion__head:after {
    font-size: 1.5625rem;
    top: 11px;
    right: 30px;
  }
}

.accordion__head.is-open::after {
  content: "-";
}

.accordion__head--open:hover {
  opacity: 1;
}

.accordion__head--open::after {
  content: none;
}

.accordion__head--open.is-open::after {
  content: none;
}

.accordion__body {
  position: relative;
  border-radius: 0 0 8px 8px;
  background: #fff;
  color: black;
  border: transparent;
  padding: 0;
  line-height: 0;
  opacity: 0;
  transition: line-height 0.4s, padding 0.4s, opacity 0.4s;
  height: 0;
  visibility: hidden;
}
@media screen and (min-width: 751px) {
  .accordion__body {
    justify-content: space-between;
  }
}

.accordion__body--open {
  padding: 20px 11px;
  line-height: 1.5;
  opacity: 1;
  height: auto;
  visibility: visible;
}
@media screen and (min-width: 751px) {
  .accordion__body--open {
    padding: 35px 25px;
    display: flex;
    flex-wrap: wrap;
  }
}

.accordion__body.is-open {
  padding: 20px 11px;
  line-height: 1.5;
  opacity: 1;
  height: auto;
  visibility: visible;
}
@media screen and (min-width: 751px) {
  .accordion__body.is-open {
    padding: 35px 25px;
    display: flex;
    flex-wrap: wrap;
  }
}

.accordion__inr {
  margin-bottom: 30px;
}
@media screen and (min-width: 751px) {
  .accordion__inr {
    width: calc((100% - 40px) / 2);
  }
}

.accordion__inr:last-child {
  margin-bottom: 0;
}

.main__slide {
  border-radius: 4px;
  margin-bottom: 6px;
	width: 100%;
}
@media screen and (min-width: 751px) {
  .main__slide {
    margin-bottom: 10px;
	  width: 100%;
  }
}

.thumbnail__list {
  justify-content: space-between;
}

.thumbnail__slide {
  width: calc((100% - 20px) / 3) !important;
  height: auto !important;
  margin-right: 0 !important;
}
.thumbnail__slide img {
  border-radius: 4px;
}

.accordion__box {
  margin-top: 10px;
}
@media screen and (min-width: 751px) {
  .accordion__box {
    margin-top: 20px;
	  height: 110px;
  }
}

.accordion__box--big {
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-family: "MINI-Serif_b";
  margin-bottom: 5px;
}

.accordion__box--mid {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-family: "Motoya_b";
  margin-bottom: 5px;
}
.accordion__box--mid span {
  font-family: "MINI-Serif_b";
}

.accordion__box--small {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}

.loan {
  padding: 0 20px;
  margin-bottom: 60px;
}
@media screen and (min-width: 751px) {
  .loan {
    max-width: 1110px;
    margin: 0 auto 100px;
  }
}

.loan__ttl {
  padding-left: 15px;
  position: relative;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
@media screen and (min-width: 751px) {
  .loan__ttl {
    font-size: 1.875rem;
  }
}
.loan__ttl::before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 20px;
  top: -5px;
  left: 0;
  background-color: #123F94;
  margin: 20px auto;
}
@media screen and (min-width: 751px) {
  .loan__ttl::before {
    width: 3px;
    height: 30px;
  }
}

.loan__car {
  font-size: 1rem;
  letter-spacing: 0.04em;
  font-family: "MINI-Serif_b";
  color: #123F94;
  margin-bottom: 10px;
}
@media screen and (min-width: 751px) {
  .loan__car {
    font-size: 1.75rem;
    padding-left: 30px;
    margin-bottom: 20px;
  }
}

.loan__car-g {
  color: #006F2B;
}

.loan__car-b {
  color: #582216;
}

.loan__box {
  margin-bottom: 20px;
}
@media screen and (min-width: 751px) {
  .loan__box {
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    margin-bottom: 30px;
  }
}

.loan__img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
@media screen and (min-width: 751px) {
  .loan__img {
    width: 537px;
  }
}

.loan__contents {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 751px) {
  .loan__contents {
    padding-left: 20px;
  }
}

.loan__note {
  font-size: 0.625rem;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #4d4d4d;
}
@media screen and (min-width: 751px) {
  .loan__note {
    padding: 0 30px;
  }
}

.flow {
  padding: 0 20px;
  margin-bottom: 60px;
}
@media screen and (min-width: 751px) {
  .flow {
    max-width: 1110px;
    margin: 0 auto 100px;
  }
}

@media screen and (min-width: 751px) {
  .flow__box {
    padding: 0 70px;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 751px) {
  .flow__box picture {
    width: calc((100% - 50px) / 3);
    margin-top: 20px;
  }
}

.flow__img {
  padding: 5px 32.5px 5px;
  width: 65%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 751px) {
  .flow__img {
    width: 100%;
    padding: 0;
  }
}

.shop {
  padding: 0 20px;
}
@media screen and (min-width: 751px) {
  .shop {
    max-width: 1206px;
    margin: 0 auto 100px;
  }
}

@media screen and (min-width: 751px) {
  .shop__block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: unset;
    margin-top: 30px;
  }
}

.shop__item {
  margin-bottom: 5px;
}
@media screen and (min-width: 751px) {
  .shop__item {
    width: 100%;
    margin-bottom: 5px;
  }
}
.shop__item:nth-of-type(odd) .shop__head {
  background: #123F94;
  color: #fff;
  border: solid 1px #123F94;
}
.shop__item:nth-of-type(even) .shop__head {
  background: #123F94;
  color: #fff;
  border: solid 1px #123F94;
}

.shop__head {
  font-size: 25px;
  letter-spacing: 0.04em;
  padding: 0 10px;
  border-radius: 4px;
}
@media screen and (min-width: 751px) {
  .shop__head {
    font-size: 25px;
    padding: 2px 30px;
  }
}

.shop__head.is-open {
  border-radius: 4px 4px 0 0;
}

.shop__img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 4px;
}

.shop__body {
  border: solid 1px #123F94;
}

@media screen and (min-width: 751px) {
  .shop__body.is-open {
    font-size: 1.4375rem;
    padding: 20px 25px;
  }
}

@media screen and (min-width: 751px) {
  .shop__inr {
    display: flex;
    justify-content: space-between;
  }
}

.shop__text {
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
@media screen and (min-width: 751px) {
  .shop__text {
    width: calc((100% - 20px) / 2);
  }
}

.shop__map {
  border-radius: 4px;
  width: 100%;
}
@media screen and (min-width: 751px) {
  .shop__map {
    width: calc((100% - 20px) / 2);
  }
}

.fare_top {
  padding: 0 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 751px) {
  .fare_top {
    max-width: 1110px;
    margin: 0 auto 60px;
  }
}

.fare_ttl {
  font-size: 1.25rem;
  font-family: "Motoya_b";
  color: #123F94;
  text-align: center;
  margin-top: 40px;
}
@media screen and (min-width: 751px) {
  .fare_ttl {
    font-size: 2.5rem;
  }
}

.fare_ttl-sub {
  font-size: 1.25rem;
  color: #123F94;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin: -10px auto 30px;
  font-family: "MINI-Serif_b";
}
@media screen and (min-width: 751px) {
  .fare_ttl-sub {
    font-size: 1.875rem;
  }
}
.fare_ttl-sub::before {
  content: "";
  display: block;
  width: 88px;
  height: 2px;
  background-color: #123F94;
  position: absolute;
  left: -97px;
  top: 15px;
}
@media screen and (min-width: 751px) {
  .fare_ttl-sub::before {
    top: 22px;
    width: 170px;
    left: -188px;
  }
}
.fare_ttl-sub::after {
  content: "";
  display: block;
  width: 88px;
  height: 2px;
  background-color: #123F94;
  position: absolute;
  right: -97px;
  top: 15px;
}
@media screen and (min-width: 751px) {
  .fare_ttl-sub::after {
    top: 22px;
    width: 170px;
    right: -188px;
  }
}

.fare_text {
  font-size: 0.9375rem;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-bottom: 30px;
  font-family: "Motoya_b";
}
.fare_text span {
  font-family: "MINI-Serif_b";
}
@media screen and (min-width: 751px) {
  .fare_text {
    font-size: 1.125rem;
    margin-bottom: 40px;
  }
}

.fare_period {
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 15px 0;
  font-size: 1rem;
}
@media screen and (min-width: 751px) {
  .fare_period {
    padding: 15px;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    font-size: 1.375rem;
  }
}

.fare_inr {
  background-color: #F2F2F2;
  padding: 30px 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 751px) {
  .fare_inr {
    max-width: 1110px;
    margin: 0 auto 60px;
    padding: 40px 30px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
}

.fare_box {
  margin-bottom: 10px;
}
@media screen and (min-width: 751px) {
  .fare_box {
    width: calc((100% - 20px) / 3);
    display: flex;
    flex-direction: column;
  }
}

@media screen and (min-width: 751px) {
  .fare_box:nth-child(2) .fare_box-item {
    padding-top: 10px;
  }
}

.fare_box-ttl {
  background-color: #000;
  color: #fff;
  font-size: 1.125rem;
  padding: 12px;
  text-align: center;
  letter-spacing: 0.04em;
}

.fare_box-inr {
  background-color: #fff;
  padding: 20px 10px;
}
@media screen and (min-width: 751px) {
  .fare_box-inr {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
}

.fare_box-img {
  width: 66.67vw;
  display: block;
  margin: 0 auto 10px;
}

.fare_box-item {
  text-align: center;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-family: "Motoya_b";
  margin-bottom: 10px;
}
@media screen and (min-width: 751px) {
  .fare_box-item {
    flex-grow: 1;
  }
}
.fare_box-item span {
  font-family: "MINI-Serif_b";
}

.fare_box-note {
  color: #4d4d4d;
  font-size: 0.625rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.contents_ttl {
  font-size: 1.25rem;
  background-color: #123F94;
  color: #fff;
  padding: 10px;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 751px) {
  .contents_ttl {
    font-size: 2.5rem;
    padding: 20px;
    margin-bottom: 60px;
  }
}/*# sourceMappingURL=style.css.map */


/*
button.accordion__head.js-ac {
    margin: 50px 0 0;
}
*/

.testcar-choice {
    background: #ff6600;
    padding: 20px 10px;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    margin: 10px 0 0;
    border-radius: 3px;
    line-height: 1.4;
}
@media screen and (min-width: 751px) {
	.testcar-choice {
		background: #ff6600;
		padding: 20px 10px;
		font-size: 1.1rem;
		color: #fff;
		cursor: pointer;
		margin: 10px 0 0;
		border-radius: 3px;
		line-height: 1.4;
	}
}

.jcw-bg-red {
	background: #cc0000 !important;
	color: #fff !important;
}
.countryman-bg-cyan {
	background: #69c9f1 !important;
	color: #fff !important;
}
.aceman-bg-red {
	background: #e7004a !important;
	color: #fff !important;
}


textarea.request {
    width: 100%;
    height: 200px;
    padding: 20px;
     border: 1px solid #ccc; 
    border-radius: 10px;
    background: #fff;
}
section.support {
	padding: 0 20px;
}
@media screen and (min-width: 751px) {
	section.support {
		text-align: center;
	}
}


.flow__box {
	display: flex;
    justify-content: space-between;
}
.flow__img {
	height: 30vw;
	padding: 0 5px;
	width: 100%;
}
@media screen and (min-width: 751px) {
	.flow__img {
		height: auto;
	}
}

.mv-under__btn {
    display: block;
    margin: 0 auto 30px;
    width: 320px;
    height: 100px;
    background-color: #ED5700;
    color: #fff;
    text-align: center;
    border-radius: 50px;
    padding: 25px 2px 5px 0;
    font-size: 1.725rem;
    letter-spacing: 0.06em;
    position: relative;
    transition: opacity 0.4s;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, .5);
    border: 3px solid #fff;
}

.mv-under__btn span.present {
    position: absolute;
    width: 75%;
    color: #cc0000;
    font-size: 14px;
    text-align: center;
    background: #fff;
    border: 1px solid #cc0000;
    border-radius: 15px;
    top: -9px;
}

.mv-under__btn::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 13px;
    height: 100px;
    background-image: url(../img/btn_arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media screen and (min-width: 751px) {
    .mv-under__btn {
        width: 390px;
        height: 100px;
        border-radius: 50px;
        font-size: 2.1375rem;
        padding: 15px 2px 2px 0;
        margin: 0 auto 60px;
    }
}
@media screen and (min-width: 751px) {
    .mv-under__btn span.present {
        position: absolute;
        width: 75%;
        color: #cc0000;
        font-size: 14px;
        text-align: center;
        background: #fff;
        border: 1px solid #cc0000;
        border-radius: 15px;
        top: -13px;
    }
}

@media screen and (min-width: 751px) {
    .mv-under__btn::after {
        width: 17px;
        height: 100px;
    }
}