@charset "utf-8";

/* カスタムプロパティ
--------------------- */
:root {
  --primary-color: #FF1210;
  --accent-color: #EDEDED;
  --background-color: #FFF;
  --text-color: #333;
}

/* リセット
--------------------- */
html{
  scroll-behavior: smooth;
}
body {
  color: var(--text-color);
  font-size: 12px;
  font-family: "Zen Kaku Gothic New", "Noto Sans CJK JP", HiraKakuProN, "游ゴシック", "Yu Gothic", メイリオ, Meiryo, Helvetica, Arial, sans-serif;

  -webkit-tap-highlight-color: transparent;
}
ul,
li {
  list-style: none;
}
body,
div,
p,
ul,
li {
  padding: 0;
  margin: 0;
}
a {
  color: var(--text-color);
  text-decoration: none;
}

/* 共通
--------------------- */
/* ヘッダー */
.ready_cont .header_logo {
  padding: 16px;
  height: 56px;
  background-color: var(--background-color);
  box-sizing: border-box;
}
.ready_cont .header_logo .img {
  width: 110px;
}
/* フッター */
.o-footer__logo {
  padding: 18px 0;
  background: var(--background-color);
  text-align: center;
  border-top: 1px solid #D9D9D9;
}
.o-footer__logo img {
  width: 238px;
  margin: 0 auto;
}
/* コンテンツ */
.ready_cont img {
  display: block;
  width: 100%;
}
.ready_cont .container {
  margin: 0 auto;
  box-sizing: border-box;
}
.page_inner {
  padding: 16px 0 48px;
}
.page_inner .container {
  width: 100%;
  padding: 0 16px;
}
/* ダウンロードボタン */
.btn_box {
  padding: 0 12px;
}
.btn_box .dl_btn {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  color: var(--background-color);
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  line-height: 18px;
  font-weight: bold;
  border: 3px solid var(--primary-color);
  border-radius: 6px;
  background: var(--primary-color);
  padding: 13px 0;
  margin: 0 auto;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.24);
}
.btn_box .dl_btn::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../img/icon_download.png?202507);
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
}
/* 一覧遷移ボタン */
.btn_box .cv_btn {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  color: var(--primary-color);
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 18px;
  font-weight: bold;
  border: 3px solid var(--primary-color);
  border-radius: 6px;
  background: var(--background-color);
  padding: 13px 0;
  margin: 0 auto;
}
.cv_btn::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  border-left: 5.5px solid transparent;
  border-right: 5.5px solid transparent;
  border-top: 8px solid  var(--primary-color);
}

@media screen and (max-width: 360px) {
  .btn_box .cv_btn {font-size: 13px;}
}

/* ダウンロードコンテンツ
--------------------------*/
h1.page_title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  color: #FFF;
  font-size: 24px;
  font-weight: bold;
  background: #FF1400;
  background: linear-gradient(90deg,rgba(255, 20, 0, 1) 0%, rgba(255, 102, 0, 1) 100%);
  margin: 0;
}
.heading {
  font-size: 22px;
  font-weight: bold;
}
.img_wrap {
  margin-bottom: 16px;
}
.img_wrap .img_june {
  max-width: 250px;
  margin: 0 auto;
}
.text_area {
  margin: 32px 0;
}
.text_area .introduction .car_select .car_maker {
  font-size: 14px;
  font-weight: bold;
}
.text_area .goo_comment .sab_head {
  font-size: 14px;
  margin-bottom: 8px;
}
.text_link {
  margin: 8px 0;
}
.text_link a {
  color:#0099E5;
  font-weight: bold;
  font-size: 14px;
}
.comment {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Utility
------------- */
.mb0 {
  margin-bottom: 0;
}