@charset "UTF-8";
/*16*1.75/2*/
/*======*/
/* 共通 */
/*======*/
/* PC/SP出し分け
------------------------------ */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* 共通アニメーション
-------------------------------------*/
@-webkit-keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
/*========*/
/* ヘッダ */
/*========*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  background-color: #FFF;
  box-shadow: 0px 7px 8px -8px #777777;
  z-index: 10;
}
header .h-logo {
  width: 220px;
}
@media (max-width: 767px) {
  header .h-logo {
    width: 120px;
  }
}
header .h-logo img {
  display: block;
}
header .h-txt {
  width: 280px;
}
@media (max-width: 767px) {
  header .h-txt {
    width: 140px;
  }
}
header .h-txt a {
  display: block;
  max-width: 200px;
  margin: 0 0 0 auto;
}
header .h-txt span {
  display: block;
  font-size: 12px;
  line-height: 1.3;
  text-align: right;
}
@media (max-width: 767px) {
  header .h-txt span {
    display: none;
  }
}

/*========*/
/* フッタ */
/*========*/
/* ページトップへ戻る
-----------------------------------*/
.ptop {
  position: fixed;
  bottom: 80px;
  right: 64px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #be2121;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 10;
}
@media (max-width: 767px) {
  .ptop {
    width: 40px;
    height: 40px;
    right: 8px;
    bottom: 32px;
  }
}
.ptop:hover {
  opacity: 0.7;
}
.ptop a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.ptop a::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 calc(24px / 2) 16px calc(24px / 2);
  border-color: transparent transparent #FFF transparent;
  margin: -8px auto 0;
}

/* フッタ
-----------------------------------*/
footer .copyright {
  padding: 24px 24px 16px;
  background-color: #be2121;
  font-size: 14px;
  color: #FFF;
  text-align: center;
  line-height: 1;
}
@media (max-width: 767px) {
  footer .copyright {
    font-size: 12px;
    padding: 16px 24px;
  }
}

/* レイアウト
-----------------------------------*/
body {
  height: 100%;
}

main {
  margin-top: 88px;
}
@media (max-width: 767px) {
  main {
    margin-top: 54px;
  }
}

section .contents {
  max-width: 1008px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 767px) {
  section .contents {
    padding: 0 24px;
  }
}

section .contents p,
section .contents ul,
section .contents ol {
  margin-bottom: 1em;
}
.logo-ftfy{
    font-family: system-ui !important;
    font-weight: bold;
}

/* フォーム
-----------------------------------*/
input[type=text],
input[type=email],
textarea {
  width: 100%;
  padding: 8px;
  font-size: 16px;
}

input[type=date],
select {
  max-width: 100%;
  padding: 8px;
  font-size: 16px;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* 共通
-----------------------------------*/
.bg01 {
  margin-top: 128px;
  background-color: #F9F8F8;
  overflow: hidden;
}
@media (max-width: 767px) {
  .bg01 {
    margin-top: 64px;
  }
}

.note {
  font-size: 18px;
  text-align: center;
  line-height: 2;
}
@media (max-width: 767px) {
  .note {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* タイトル
-----------------------------------*/
.heading01 {
  margin: 128px 0 64px;
  font-size: 32px;
  font-family: "Mochiy Pop One", sans-serif;
  line-height: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .heading01 {
    margin: 80px 0 40px;
    font-size: 24px;
  }
}
.heading01 span {
  display: block;
  margin-bottom: -0.2em;
  font-size: 72px;
  color: #be2121;
  opacity: 0.3;
}
@media (max-width: 767px) {
  .heading01 span {
    font-size: 40px;
  }
}

.heading02 {
  margin: 64px 0 24px;
  font-size: 24px;
  font-family: "Mochiy Pop One", sans-serif;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .heading02 {
    margin: 32px 0 16px;
    font-size: 18px;
  }
}

/*.heading03 {
	margin: 48px 0 16px;
	font-size: 20px;
	font-family: $base_font_bold;
	line-height: 1.3;

	@include mq(max, tb) {
		margin: 24px 0 16px;
		font-size: 18px;
	}
}

.heading04 {
	margin: 32px 0 16px;
	font-size: 18px;
	font-family: $base_font_bold;
	line-height: 1.3;

	@include mq(max, tb) {
		margin: 24px 0 16px;
		font-size: 16px;
	}
}*/
/* リンクテキスト（リンク共通の記載があれば）
-----------------------------------*/
.link-txt {
  text-decoration: underline;
}

/* リンクボタン
-----------------------------------*/
.com-bt {
  display: inline-block;
  padding: 16px 48px;
  border-radius: 4px;
  background-color: #be2121;
  box-shadow: 0px 7px 8px -8px #777;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: 18px;
  line-height: 1;
  color: #FFF;
  text-align: center;
  vertical-align: top;
  transition: 0.5s all;
}
.com-bt:hover {
  box-shadow: none;
  background-color: #CCC;
  text-decoration: none;
  color: #333;
}
@media (max-width: 767px) {
  .com-bt {
    display: block;
    width: 100%;
    padding: 16px;
  }
}
.com-bt.next {
  position: relative;
}
.com-bt.next::after {
  content: "";
  position: absolute;
  display: block;
  right: 16px;
  top: 50%;
  margin-top: -4px;
  border-color: #FFF;
  border-style: solid;
  border-width: 0 3px 3px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(-45deg);
}
.com-bt.next:hover::after {
  border-color: #333;
  border-style: solid;
  border-width: 0 3px 3px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(-45deg);
}
.com-bt.prev {
  position: relative;
}
.com-bt.prev::before {
  content: "";
  position: absolute;
  display: block;
  left: 8px;
  top: 50%;
  margin-top: -4px;
  border-color: #333;
  border-style: solid;
  border-width: 0 3px 3px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(135deg);
}
.com-bt.prev:hover::after {
  border-color: #333;
  border-style: solid;
  border-width: 0 3px 3px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(135deg);
}

input[type=submit].com-bt,
input[type=button].com-bt,
button.com-bt {
  border: 1px solid #CCC;
  background-color: #FFF;
  line-height: 1;
  cursor: pointer;
}
input[type=submit].com-bt:hover,
input[type=button].com-bt:hover,
button.com-bt:hover {
  background-color: #EEE;
  color: #333;
}
@media (max-width: 767px) {
  input[type=submit].com-bt,
input[type=button].com-bt,
button.com-bt {
    font-size: 14px;
  }
}

/*============*/
/* 共通・汎用 */
/*============*/
/* 段落
-----------------------------------*/
/* ぶら下げインデント */
.indent {
  margin-left: 1em;
  text-indent: -1em;
}

/* リスト
-----------------------------------*/
.list-col2 {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  flex-wrap: wrap;
}
.list-col2 > li {
  width: 46%;
  margin-bottom: 16px;
}

.list-col3 {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .list-col3 {
    display: block;
  }
}
.list-col3 > li {
  width: 32%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .list-col3 > li {
    width: 100%;
    margin-bottom: 8px;
  }
}

.list-col4 {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  flex-wrap: wrap;
}
.list-col4 > li {
  width: 23%;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .list-col4 > li {
    width: 49%;
    margin-bottom: 4px;
  }
}

.car-img {
  display: flex;
  margin: 0;
}
@media (max-width: 767px) {
  .car-img {
    flex-wrap: wrap;
    margin-top: 10%;
  }
  .car-img li {
    width: 33.3333%;
    margin-top: -10%;
  }
}

/* 汎用カラム
-----------------------------------*/
.row:after {
  content: "";
  clear: both;
  display: block;
}

.multicolumn,
.multilist {
  overflow: hidden !important;
}

.multicolumn-left {
  float: left;
}

.multicolumn-right {
  float: right;
}

.multilist li {
  float: left;
}

/* カラム幅
-----------------------------------*/
.w1000 {
  width: 1000px;
}

/* リスト、アイコン
-----------------------------------*/
/* リスト（デフォルト） */
.list-df {
  margin-left: 23px;
  list-style: disc;
}

/* リスト（ドット） */
.list-dot li {
  padding-left: 1em;
}

.list-dot li:before {
  content: "・";
  margin-left: -1em;
}

/* リスト（数字） */
.list-num li {
  margin-left: 30px;
}

/* テーブル
-----------------------------------*/
/* 幅 */
col.colw05 {
  width: 5%;
}

col.colw10 {
  width: 10%;
}

col.colw15 {
  width: 15%;
}

col.colw20 {
  width: 20%;
}

col.colw25 {
  width: 25%;
}

col.colw30 {
  width: 30%;
}

col.colw35 {
  width: 35%;
}

col.colw40 {
  width: 40%;
}

col.colw45 {
  width: 45%;
}

col.colw50 {
  width: 50%;
}

/* テーブル */
.table {
  width: 100%;
  margin-bottom: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
.table th {
  padding: 16px;
  border: solid 1px #333;
  font-family: "Mochiy Pop One", sans-serif;
  text-align: center;
}
@media (max-width: 767px) {
  .table th {
    padding: 8px 4px;
  }
}
.table td {
  padding: 16px;
  border: solid 1px #333;
}
@media (max-width: 767px) {
  .table td {
    padding: 8px 4px;
  }
}

/*=======*/
/* index */
/*=======*/
.index {
  /* メイン
  -----------------------------------*/
  /* introduction
  -----------------------------------*/
  /* about
  -----------------------------------*/
  /* appeal
  -----------------------------------*/
  /* merit
  -----------------------------------*/
  /* qa
  -----------------------------------*/
  /* service
  -----------------------------------*/
  /* access
  -----------------------------------*/
}
.index .main-sec {
  background-color: #be2121;
  overflow: hidden;
}
.index .main-sec .main-wrap {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}
.index .main-sec .main-wrap .main-img {
  text-align: center;
}
.index .main-sec .main-wrap .main-tx {
  position: absolute;
  top: 5%;
  left: 10%;
  width: 50%;
}
@media (max-width: 767px) {
  .index .main-sec .main-wrap .main-tx {
    width: 70%;
    left: 16px;
  }
}
.index .main-sec .main-wrap .main-bt {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  right: 5%;
  bottom: 10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #be2121;
  box-shadow: 0px 7px 8px -8px #777;
  -webkit-animation-name: updown1;
          animation-name: updown1;
  /* アニメーション名の指定 */
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  /* アニメーションの開始時間指定 */
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  /* アニメーション動作時間の指定 */
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  /* アニメーションの動き指定（徐々に早く）*/
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@media (max-width: 767px) {
  .index .main-sec .main-wrap .main-bt {
    right: 16px;
    bottom: 0;
    width: 140px;
    height: 140px;
    border: 2px solid #FFF;
  }
}
.index .main-sec .main-wrap .main-bt a {
  color: #FFF;
  text-align: center;
  line-height: 1.3;
  font-size: 12px;
  font-family: "Mochiy Pop One", sans-serif;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .index .main-sec .main-wrap .main-bt a {
    font-size: 10px;
  }
}
.index .main-sec .main-wrap .main-bt a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.index .main-sec .main-wrap .main-bt span {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .index .main-sec .main-wrap .main-bt span {
    font-size: 14px;
  }
}
.index .main-sec .white-box {
  margin: 64px 0;
  padding: 48px 24px 32px;
  border-radius: 24px;
  background-color: #FFF;
  box-shadow: 0px 7px 8px -8px #777;
}
@media (max-width: 767px) {
  .index .main-sec .white-box {
    margin: 40px 0 64px;
    padding: 16px;
    border-radius: 16px;
  }
}
.index .main-sec .note {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 2;
}
@media (max-width: 767px) {
  .index .main-sec .note {
    font-size: 14px;
    line-height: 1.66;
  }
}
.index .main-sec .note .reds {
  font-size: 24px;
  font-weight: normal;
}
@media (max-width: 767px) {
  .index .main-sec .note .reds {
    font-size: 16px;
  }
}
.index .introduction-sec .list-col2 {
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .index .introduction-sec .list-col2 {
    display: block;
  }
  .index .introduction-sec .list-col2 li {
    width: 100%;
    margin-bottom: 16px;
  }
}
.index .introduction-sec .car-info li {
  margin-top: 8px;
  line-height: 1.3;
}
.index .introduction-sec .car-info .maker {
  font-size: 14px;
}
.index .introduction-sec .car-info .name {
  font-weight: bold;
}
.index .introduction-sec .car-info .price {
  font-weight: bold;
}
.index .introduction-sec .car-info .price span {
  font-size: 32px;
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: normal;
  color: #be2121;
  letter-spacing: -0.05em;
}
.index .introduction-sec .red-box {
  padding: 16px;
  border: 4px solid #be2121;
  box-shadow: 0px 7px 8px -8px #777;
}
.index .about-sec .note {
  font-weight: bold;
  font-size: 18px;
}
@media (max-width: 767px) {
  .index .about-sec .note {
    font-size: 14px;
  }
}
.index .about-sec .note .reds {
  font-weight: normal;
  font-size: 32px;
}
@media (max-width: 767px) {
  .index .about-sec .note .reds {
    font-size: 20px;
  }
}
.index .about-sec .btn {
  margin: 64px 0 128px;
  text-align: center;
}
@media (max-width: 767px) {
  .index .about-sec .btn {
    margin: 32px 0 64px;
  }
}
.index .appeal-sec .catch-copy {
  margin-top: 88px;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .index .appeal-sec .catch-copy {
    margin-top: 40px;
    font-size: 20px;
  }
}
.index .appeal-sec .catch-copy span {
  font-size: 56px;
  color: #be2121;
}
@media (max-width: 767px) {
  .index .appeal-sec .catch-copy span {
    font-size: 32px;
  }
}
.index .merit-sec .list-col2 {
  margin: 64px 0 128px;
}
@media (max-width: 767px) {
  .index .merit-sec .list-col2 {
    margin: 24px 0 64px;
  }
}
.index .merit-sec .list-col2 li {
  background-color: #FFF;
  border: 3px solid #CCC;
}
@media (max-width: 767px) {
  .index .merit-sec .list-col2 li {
    border-width: 2px;
  }
}
.index .merit-sec .list-col2 li p {
  padding: 0 16px;
}
@media (max-width: 767px) {
  .index .merit-sec .list-col2 li p {
    padding: 0 8px;
    font-size: 14px;
  }
}
.index .merit-sec .list-col2 .heading02 {
  padding: 8px;
  margin-top: 0;
  text-align: center;
  background-color: #CCC;
}
.index .merit-sec .list-col2 .heading02 span {
  margin-left: 8px;
  letter-spacing: -0.08em;
  color: #be2121;
}
.index .qa-sec .data-qa {
  margin-bottom: 128px;
}
@media (max-width: 767px) {
  .index .qa-sec .data-qa {
    margin-bottom: 64px;
  }
}
.index .qa-sec .data-qa dt {
  position: relative;
  padding: 16px 16px 16px 48px;
  background-color: #CCC;
  font-weight: bold;
}
@media (max-width: 767px) {
  .index .qa-sec .data-qa dt {
    padding: 8px 16px 8px 32px;
    margin-bottom: 8px;
  }
}
.index .qa-sec .data-qa dt::before {
  content: "Q";
  position: absolute;
  left: 16px;
  top: 16px;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: 24px;
  line-height: 1;
}
@media (max-width: 767px) {
  .index .qa-sec .data-qa dt::before {
    top: 8px;
    left: 8px;
    font-size: 20px;
  }
}
.index .qa-sec .data-qa dd {
  position: relative;
  border: 1px solid #CCC;
  padding: 16px 16px 16px 48px;
  background-color: #FFF;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .index .qa-sec .data-qa dd {
    padding: 8px 16px 8px 32px;
    margin-bottom: 8px;
  }
}
.index .qa-sec .data-qa dd::before {
  content: "A";
  position: absolute;
  left: 16px;
  top: 16px;
  font-family: "Mochiy Pop One", sans-serif;
  font-size: 24px;
  color: #be2121;
  line-height: 1;
}
@media (max-width: 767px) {
  .index .qa-sec .data-qa dd::before {
    top: 8px;
    left: 8px;
    font-size: 20px;
  }
}
.index .service-sec {
  padding-bottom: 128px;
}
@media (max-width: 767px) {
  .index .service-sec {
    padding-bottom: 64px;
  }
}
.index .service-sec .list-col3 li {
  padding: 24px 16px;
  background-color: #FFF;
  box-shadow: 0px 5px 10px -6px #777;
}
.index .service-sec .list-col3 .heading02 {
  margin-top: 0;
  text-align: center;
}
.index .access-sec .wrap {
  display: flex;
  justify-content: space-between;
  margin: 64px 0;
}
@media (max-width: 767px) {
  .index .access-sec .wrap {
    display: block;
    margin: 32px 0 48px;
  }
}
.index .access-sec .map-area {
  width: 48%;
}
@media (max-width: 767px) {
  .index .access-sec .map-area {
    width: 100%;
  }
}
.index .access-sec .map-area iframe {
  width: 100% !important;
  height: 520px !important;
}
@media (max-width: 767px) {
  .index .access-sec .map-area iframe {
    height: 200px !important;
  }
}
.index .access-sec .info-area {
  width: 48%;
  text-align: right;
}
@media (max-width: 767px) {
  .index .access-sec .info-area {
    width: 100%;
    margin-top: 16px;
  }
}
.index .access-sec .info-area .heading02 {
  margin-top: 16px;
}

  /* コミコミオプション
  -----------------------------------*/
.option-wrap{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  margin: 10px auto;
}
.option-wrap li{
  max-width: 130px;
  margin: 5px
}
.option-wrap li p{
  margin-bottom: 5px;
  line-height: 1.2;
}

/* ユーチューブ
  -----------------------------------*/
.ytb-wrap{
    max-width: 600px;
    width: 100%;
    margin: 100px auto;
}
.ytb-wrap p{
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    font-family: "Mochiy Pop One", sans-serif;
}
.ytb-item {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.ytb-item iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
@media (max-width: 767px) {
    .ytb-wrap{
        margin: 80px auto;
    }
    .ytb-wrap p{
        font-size: 16px;
    }
}

.exhibitcar-wrap li{
    display: flex;
    align-items: center;
    justify-content: center;
}
.exhibitcar-wrap li:last-of-type{
    margin-bottom: 30px;
}
.exhibitcar-wrap .exhibitcar-img{
    max-width: 350px;
}
.exhibitcar-wrap .exhibitcar-img .car-img{
    margin-bottom: 0;
}
.exhibitcar-wrap .exhibitcar-img .maker{
    margin-bottom: 0;
    font-size: 18px;
    font-weight: bold;
}
.exhibitcar-wrap .exhibitcar-img .name{
    line-height: 1.2
}
.exhibitcar-wrap .exhibitcar-txt{
    margin: 10px 20px;
    width: 50%;
}
.exhibitcar-wrap .exhibitcar-txt .ehbttl{
    background: #ae332b;
    padding: 5px 15px;
    color: #fff;
    font-weight: bold;
}
.exhibitcar-wrap .exhibitcar-txt .ehbttl span{
    padding-left: 10px;
    font-size: 15px;
}
.exhibitcar-wrap .exhibitcar-txt .ehbttl .font-bg{
    font-size: 26px;
    padding-right: 5px;
}
.exhibitcar-wrap .exhibitcar-txt .car-info > div{
    display: flex;
    width: 100%;
    padding: 5px 10px;
}
.exhibitcar-wrap .exhibitcar-txt .car-info > div:nth-child(even){
    background: #f0f0f0;
}
.exhibitcar-wrap .exhibitcar-txt .car-info > div dt{
    width: 50%
}
.exhibitcar-wrap .exhibitcar-txt .car-info > div dd{
    width: 50%
}
@media (max-width: 767px) {
    .exhibitcar-wrap li{
        flex-direction: column;
    }
    .exhibitcar-wrap .exhibitcar-img{
        max-width: unset;
    }
    .exhibitcar-wrap .exhibitcar-txt{
        width: 100%;
    }
    .exhibitcar-wrap .exhibitcar-txt .car-info > div dt{
        width: 30%
    }
    .exhibitcar-wrap .exhibitcar-txt .car-info > div dd{
        width: 70%
    }
    .exhibitcar-wrap li:last-of-type{
        margin-bottom: 50px;
    }
}

/*# sourceMappingURL=style.css.map */
