@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Noto+Serif+JP:wght@300;400;500;600;700;900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");

/* .common_support_link{
  pointer-events: none;
} */

* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  text-decoration: none;
  background-size: cover;
  background-position: center;
}

*::before,
*::after {
  background-size: cover;
  background-position: center;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
}

html {
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

body {
  font-size: 16px;
  font-weight: 400;
  /* font-family: 'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif; */
  font-family: "Noto Serif JP", serif;
  color: #002949;
  overflow-x: hidden;
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  letter-spacing: 0.1em;
  position: relative;
}

body::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #d8ecf6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -20;
}

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

img {
  display: block;
}

main {
  overflow: hidden;
}

/*
------------------------------------------------------------------------
以下、共通部分
------------------------------------------------------------------------
*/

/* .zenkaku {
  font-family: 'Zen Kaku Gothic New', sans-serif;
} */

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hide {
  display: none !important;
}

.print_off {
  display: none !important;
}

/*以下、共通パーツ*/
.common_title_flex {
  margin-bottom: 48px;
  display: flex;
  align-items: flex-end;
}

.common_title_flex .title {
  height: 64px;
  width: auto;
}
.common_title_flex .slash {
  width: 31px;
  margin: 0 9px 0 36px;
}

.common_title_flex h2,
.common_title_flex .title_text {
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #880a23;
}

.common_title_flex h2.know_title{
  font-size: 36px;
  font-weight: 900;
  white-space: nowrap;
}

.common_bg_img {
  position: absolute;
  width: 1920px;
  min-width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

/*以下、共通パーツ*/

/*以下、共通アニメーション*/
.common_hover_opa {
  transition-duration: 0.4s;
}

.common_hover_opa:hover {
  opacity: 0.6;
}

.common_scale_radi {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #ada589;
  transition: 0.4s;
}

.common_scale_radi .arrow {
  width: 23px;
  height: 15px;
  background-image: url("../img/common/link_right_off.png");
  transition: 0.4s;
}

.common_scale_radi_parent:hover .common_scale_radi {
  transform: scale(0.8);
  background-color: #91b9ce;
}

.common_scale_radi_parent:hover .common_scale_radi .arrow {
  background-image: url("../img/common/link_right_on.png");
}

.common_gray_blur {
  transition: 0.4s;
  filter: grayscale(100%);
}

.common_gray_blur_parent:hover .common_gray_blur {
  filter: none;
}

.common_scroll_left_show {
  transition: 0.8s;
  opacity: 0;
  transform: translateX(-100vw);
}

.common_scroll_left_show.show {
  opacity: 1;
  transform: translateX(0);
}

.common_scroll_right_show {
  transition: 0.8s;
  opacity: 0;
  transform: translateX(100vw);
}

.common_scroll_right_show.show {
  opacity: 1;
  transform: translateX(0);
}
/*以下、共通アニメーション*/

#loading_section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* カスタムプロパティ未対応ブラウザ用のフォールバック */
  /* height: calc(var(--vh, 1vh) * 100); */
  z-index: 200;
  /* background-color: #d8ecf6; */
  background-color: #fff;
  padding-bottom: 120px;
  transition: 1s;
}

#loading_section.loading_complete {
  opacity: 0;
  pointer-events: none;
}

#loading_section .loading_relative {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

#loading_section .loading_relative img.title {
  /* width: 300px; */
  width: 430px;
  max-width: 90%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  /* opacity:0;
  transition: 1s; */
}

#loading_section .loading_relative img.title.show {
  opacity: 1;
}

#loading_section .loading_frame {
  position: relative;
  width: 800px;
  max-width: 90%;
}

#loading_section .loading_bar {
  border-top: 5px solid #003965;
  width: 0%;
}

#loading_section .loading_text {
  /* font-size: 16px; */
  margin-top: 12px;
  font-weight: bold;
  color: #003965;
  text-align: center;
  width: 100%;
}

header {
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: rgba(255,255,255,0.8);
}

header .header_container {
  /* padding-top: 4px;
  padding-bottom: 4px; */
  padding-left: 36px;
  padding-right: 120px;
  height: 80px;
}

header .header_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

header .header_logo {
  width: 350px;
  display: block;
}

header .header_logo img {
  width: 100%;
}

header .header_right {
  display: flex;
  height: 100%;
}

header .header_right nav {
  height: 100%;
}

header .header_right nav ul.parent_menu {
  display: flex;
  height: 100%;
}

header .header_right nav ul.parent_menu li.parent {
  margin-left: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

header .header_right nav .header_nav_link {
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  color: #002f54;
  transition-duration: 0.4s;

  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* header .header_right nav .has_child:hover .header_nav_link{
  color:#880a23;
} */

header .header_right nav .header_nav_link:hover {
  color: #880a23;
}

header .header_right .child_menu {
  position: absolute;
  width: 210px;
  left: -16px;
  top: 90%;
  background-color: #747260;
  transition: 0.4s;
  opacity: 0;
  pointer-events: none;
}

header .header_right .child_menu.company{
  width:auto;
}

header .header_right .child_menu.show {
  opacity: 1;
  pointer-events: auto;
}

header .header_right .child_menu li {
  border-bottom: 1px dotted #fff;
}

header .header_right .child_menu li:last-child {
  border-bottom: none;
}

header .header_right .child_menu li a {
  display: block;
  padding: 12px 16px;
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
  transition: 0.4s;
  white-space: nowrap;
}

header .header_right .child_menu li a:hover {
  color: #880a23;
}

@media (max-width: 1500px) {
  header .header_container {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  header .header_logo {
    width: 316px;
    display: block;
  }

  header .header_right nav ul.parent_menu li.parent {
    margin-left: 24px;
  }

  header .header_right nav .header_nav_link {
    font-size: 16px;
  }
} /*@media(max-width:767px){*/

#fix_menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
  width: 80px;
}

#fix_menu .drawer_menu_block {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition-duration: 0.4s;
  background-color: #747260;
}

#fix_menu .drawer_menu_block:hover {
  background-color: #003965;
}

#fix_menu .drawer_menu_block .flex {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  width: 40px;
  height: 20px;
}

#fix_menu .drawer_menu_block .bar {
  height: 1px;
  width: 100%;
  background-color: #fff;
  transition-duration: 0.4s;
}

#fix_menu .drawer_menu_block.active .bar1 {
  transform: translateY(9.3px) rotate(-45deg);
}
#fix_menu .drawer_menu_block.active .bar2 {
  display: none;
}
#fix_menu .drawer_menu_block.active .bar3 {
  transform: translateY(-9.3px) rotate(45deg);
}

#fix_menu .reserve_link {
  display: block;
  height: 80px;
  transition-duration: 0.4s;
  background-color: #003965;
  padding-top: 19px;
}

#fix_menu .reserve_link:hover {
  background-color: #880a23;
}

#fix_menu .reserve_link img {
  width: 54px;
  margin: 0 auto 8px;
}

#fix_menu .reserve_link p {
  text-align: center;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  font-size: 13px;
}

#fix_menu .contact_link {
  display: block;
  height: 80px;
  transition-duration: 0.4s;
  background-color: #880a23;
  padding-top: 12px;
}

#fix_menu .contact_link:hover {
  background-color: #747260;
}

#fix_menu .contact_link img {
  width: 36px;
  margin: 0 auto 8px;
}

#fix_menu .contact_link p {
  text-align: center;
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  font-size: 12px;
  white-space: nowrap;
}

#drawer_menu {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 105;
  background-color: #e5f4fc;
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
  padding: 96px 40px 24px;
}

#drawer_menu.show {
  pointer-events: auto;
  opacity: 1;
}

#drawer_menu .logo {
  display: block;
  position: absolute;
  top: 6px;
  left: 36px;
  width: 350px;
  margin-bottom: 24px;
}

#drawer_menu .logo img {
  width: 100%;
}

#drawer_menu .drawer_menu_scroll {
  height: 100%;
  overflow-y: scroll;
}

#drawer_menu .drawer_menu_frame {
  padding: 0 80px;
  min-height: 100%;
  /* display:flex;
  justify-content: center;
  align-items: center; */
}

#drawer_menu .drawer_menu_frame .drawer_menu_contents {
  width: 1376px;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  padding-top: 15vh;
  /* padding-top: 160px; */
}

#drawer_menu .flex {
  display: flex;
  justify-content: space-between;
}

#drawer_menu .flex .block {
  width: 22.5%;
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
}

#drawer_menu .flex a {
  transition: 0.4s;
}

#drawer_menu .flex a:hover {
  color: #6e9db5;
}

#drawer_menu .red_title {
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.08em;
  color: #c2102a;
  margin-bottom: 12px;
}

#drawer_menu .border_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #003965;
  margin-bottom: 12px;
}

#drawer_menu .block04 .border_title {
  margin-bottom: 30px;
}

#drawer_menu .block04 .border_title.mb50 {
  margin-bottom: 50px;
}

#drawer_menu .border_title .parent_title {
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  color: #003965;
}

#drawer_menu .flex .submenu_switch {
  width: 16px;
  height: 16px;
  cursor: pointer;
  position: relative;
	display: none;
}

#drawer_menu .submenu_switch .bar {
  position: absolute;
  background-color: #003965;
}

#drawer_menu .submenu_switch .bar1 {
  width: 100%;
  height: 2px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

#drawer_menu .submenu_switch .bar2 {
  width: 2px;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  margin: auto;
}

#drawer_menu .submenu_switch.active .bar2 {
  display: none;
}

#drawer_menu .block ul a {
  color: #003965;
}

#drawer_menu .block ul.mb0 {
  margin-bottom: 0;
}

#drawer_menu .block ul li {
  margin-bottom: 24px;
}

#drawer_menu .block ul li:last-child {
  margin-bottom: 0;
}

#drawer_menu .block ul li.child {
  margin-left: 8px;
  position: relative;
}

#drawer_menu .block ul li.child .link {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
}

#drawer_menu .block ul li.dia {
  padding-left: 16px;
  position: relative;
}

#drawer_menu .block ul li.dia::before {
  content: "";
  width: 7px;
  height: 7px;
  background-image: url("../img/common/dia.png");
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

#drawer_menu .block ul li.dia .link {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

#drawer_menu .block .border_link {
  display: block;
  color: #003965;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #003965;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

#drawer_menu .block .stock_area {
  margin-top: 72px;
}

#drawer_menu .sns_flex {
  display: flex;
  align-items: center;
  margin-top: 50px;
	margin-bottom: 30px;
}

#drawer_menu .sns_flex a {
  width: 40px;
  margin-right: 20px;
}

#drawer_menu .sns_flex a img {
  width: 100%;
}

#drawer_menu .youtube_bnr img{
		width: 100%;
		max-width: 270px;
	}

/*#drawer_menu .submenu {
  display: none;
}*/

.common_contact_section {
  position: relative;
  padding-bottom: 260px;
}

.common_contact_section .title_flex {
  margin-bottom: 48px;
  display: flex;
  align-items: flex-end;
}

.common_contact_section .title_flex .title {
  width: 523px;
}
.common_contact_section .title_flex .slash {
  width: 31px;
  margin: 0 9px 0 36px;
}

.common_contact_section .title_flex h2,
.common_contact_section .title_flex .title_text {
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #880a23;
}

.common_contact_section .p1 {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.27;
  color: #003965;
  margin-bottom: 80px;
}

.common_contact_section .flex {
  display: flex;
  justify-content: center;
}

.common_contact_section .flex a {
  width: 500px;
  height: 260px;
  position: relative;
  margin: 0 20px;
  transition-duration: 0.4s;
}

.common_contact_section .flex a:hover {
  transform: scale(0.9);
}

.common_contact_section .flex a.tel {
  background-image: url("../img/common/contact_tel_btn.png");
  pointer-events: none;
}

.common_contact_section .flex a.mail {
  background-image: url("../img/common/contact_mail_btn.png");
}

.common_contact_section .flex a .text {
  position: absolute;
  color: #fff;
  left: 32px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.common_contact_section .flex a.tel .text {
  bottom: 32px;
}

.common_contact_section .flex a.tel .tel1 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 16px;
}

.common_contact_section .flex a.tel .tel2 {
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
}

.common_contact_section .flex a.mail .text {
  bottom: 56px;
}

.common_contact_section .flex a.mail .mail1 {
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
}

#pagetop {
  cursor: pointer;
  position: fixed;
  z-index: 10;
  bottom: 32px;
  right: 32px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  transition: 0.4s;
  border: 1px solid #003965;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
}

#pagetop.show {
  opacity: 1;
  pointer-events: auto;
}

#pagetop:hover {
  transform: scale(0.67);
}

#pagetop img {
  width: 15px;
}

footer {
  /* padding-top: 130px; */
  padding-bottom: 48px;
  overflow: hidden;
  position: relative;
}

footer .bg01 {
  position: absolute;
  z-index: -8;
  width: 1920px;
  min-width: 100%;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

footer .bg02 {
  position: absolute;
  z-index: -10;
  width: 1920px;
  min-width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

footer .footer_logo {
  display: block;
  width: 340px;
  margin:0 auto 64px;
}
footer .footer_logo img {
  width: 100%;
}

footer .flex {
  display: flex;
  position: relative;
  margin-bottom: 32px;
}

footer .menu01 {
  margin-right: 16px;
}

footer .menu01 .company_name {
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.1;
  color: #003965;
}

footer .menu01 .company_adress {
  margin-bottom: 40px;
  color: #003965;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
}

footer .menu01 .company_adress .tel {
  color: #003965;
  pointer-events: none;
}

footer .menu01 .sns_flex {
  display: flex;
	align-items: center;
}

footer .menu01 .sns_flex a {
  width: 40px;
}

footer .menu01 .sns_flex a img {
  width: 100%;
}

footer .menu01 .sns_flex .insta,footer .menu01 .sns_flex .facebook {
    margin-right: 20px;
  }
footer .menu01 .youtube_bnr{
		margin-top: 25px;
	}

/* footer .menu02,
footer .menu03 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
} */

footer .menu02 {
  margin-right: 24px;
}

footer .menu .red_title {
  font-weight: bold;
  line-height: 1;
  color: #c2102a;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

footer .menu .color_link {
  transition: 0.4s;
}

footer .menu .color_link:hover {
  color: #6e9db5;
}

footer .menu ul {
  margin-bottom: 48px;
  color: #003965;
}

footer .menu ul a {
  color: #003965;
}

footer .menu ul.mb0 {
  margin-bottom: 0;
}

footer .menu ul li {
  margin-bottom: 24px;
}

footer .menu ul li:last-child {
  margin-bottom: 0;
}

footer .menu ul li.parent .link {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

footer .menu ul li.child {
  margin-left: 8px;
  /* padding-left: 8px; */
  position: relative;
}

footer .menu ul li.child .link {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
}

footer .menu ul li.dia {
  padding-left: 16px;
  position: relative;
}

footer .menu ul li.dia::before {
  content: "";
  width: 7px;
  height: 7px;
  background-image: url("../img/common/dia.png");
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

footer .menu ul li.dia .link {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

footer .btn_links {
  position: absolute;
  right: 0;
  top: 0;
}

footer .btn_links .btn_link {
  width: 270px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 0.4s;
}

footer .btn_links .btn_link.btn_link01,footer .btn_links .btn_link.btn_link02{
		margin-bottom: 24px;
	}

footer .btn_links .btn_link p {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

footer .btn_links .btn_link p span {
  font-size: 14px;
}

footer .btn_links .tel {
  pointer-events: none;
}

footer .btn_links .btn_link01 {
  background-image: url("../img/common/footer_menu_01_01.png");
}
footer .btn_links .btn_link01:hover {
  background-image: url("../img/common/footer_menu_01_02.png");
}
footer .btn_links .btn_link02 {
  background-image: url("../img/common/footer_menu_02_01.png");
}
footer .btn_links .btn_link02:hover {
  background-image: url("../img/common/footer_menu_02_02.png");
}
footer .btn_links .btn_link03 {
  background-image: url("../img/common/footer_menu_03_01.png");
}
footer .btn_links .btn_link03:hover {
  background-image: url("../img/common/footer_menu_03_02.png");
}

footer .flex2 {
  display: flex;
  justify-content: space-between;
}

footer .flex2 nav {
  display: flex;
}

footer .flex2 nav a {
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  margin-right: 24px;
  color: #003965;
  font-weight: 500;
  line-height: 1;
}

footer .flex2 nav a:last-child {
  margin-right: 0;
}

footer .flex2 .copy {
  font-size: 14px;
  opacity: 0.6;
  color: #003965;
  font-weight: 500;
  line-height: 1;
}

.common_news_list .news_block {
  display: block;
  position: relative;
  padding: 32px 0;
  border-top: 1px solid #003965;
}

.common_news_list .news_block:last-child {
  border-bottom: 1px solid #003965;
}

.common_news_list .news_block .info_flex {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.common_news_list .news_block .info_flex .date {
  width: 120px;
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  padding-bottom: 3px;
  letter-spacing: 0.05em;
  transition-duration: 0.4s;
  color: #003965;
}

.common_news_list .news_block .info_flex .category_block {
  min-width: 100px;
  height: 30px;
  padding: 0 8px;
  border-radius: 15px;
  background-color: #003965;
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fefefe;
  transition-duration: 0.4s;
}

.common_news_list .news_block .news_title {
  font-size: 16px;
  padding-right: 140px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: left;
  color: #003965;
  transition-duration: 0.4s;
}

.common_news_list .news_block .radi {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  transition-duration: 0.4s;
  background-color: rgba(205, 230, 244, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.common_news_list .news_block .radi .arrow {
  transition-duration: 0.4s;
  width: 20px;
  height: 13px;
  background-image: url("../img/common/link_right_on.png");
}

.common_news_list .news_block:hover .info_flex .date {
  color: #880a23;
}

.common_news_list .news_block:hover .info_flex .category_block {
  background-color: #880a23;
}

.common_news_list .news_block:hover .news_title {
  color: #880a23;
}

.common_news_list .news_block:hover .radi {
  background-color: #880a23;
  transform: scale(0.75);
}

.common_news_list .news_block:hover .radi .arrow {
  background-image: url("../img/common/link_right_off.png");
}

.pagenation .wp-pagenavi {
  display: flex;
  justify-content: center;
  margin-top: 72px;
}

.pagenation .wp-pagenavi span.current {
  /*現在のページボタン*/
  font-size: 24px;
  color: #002949;
  line-height: 1;
  /* padding:0 2px 4px;
  border-bottom:1px solid #002949; */
  margin: 0 32px;
  font-weight: 500;
  position: relative;
}

.pagenation .wp-pagenavi span.current::after {
  content: "";
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #002949;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.pagenation .wp-pagenavi a.page-numbers {
  /*指定のページ移動ボタン*/
  font-size: 24px;
  color: #002949;
  line-height: 1;
  margin: 0 32px;
  font-weight: 500;
  position: relative;
}

.pagenation .wp-pagenavi a.page-numbers:hover::after {
  content: "";
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #002949;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.pagenation .wp-pagenavi a.page-numbers.next,
.pagenation .wp-pagenavi a.page-numbers.prev {
  /*next prevボタン*/
  font-weight: bold;
}

.pagenation .wp-pagenavi a.page-numbers.next:hover::after,
.pagenation .wp-pagenavi a.page-numbers.prev:hover::after {
  content: none;
}

.common_link_flex {
  display: flex;
  justify-content: center;
}

.common_link_flex a {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 50px;
  border-radius: 3px;
  font-weight: 500;
  font-size: 24px;
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  color: #002949;
  line-height: 1;
  margin: 0 12px;
  padding: 0 24px;

  position: relative;
}

.common_link_flex a::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 3px;
  border: 2px solid #002949;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s;
  opacity: 0;
}

.common_link_flex a:hover::before {
  opacity: 1;
}

/*
------------------------------------------------------------------------
以上、共通部分
------------------------------------------------------------------------
*/

/*
------------------------------------------------------------------------
以下、トップページ
------------------------------------------------------------------------
*/

body.top_body header {
  background-color: transparent;
}

body.top_body header.white {
  background-color: rgba(255,255,255,0.8);
}

main.top_main .top_fix_bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -15;
  top: 0;
  left: 0;
  transition: 1s;
  opacity: 0;
}

main.top_main .top_fix_bg .fix_frame {
  width: 100%;
  height: 100%;
  position: relative;
}

main.top_main .top_fix_bg.show {
  opacity: 1;
}

main.top_main .top_fix_bg .bg {
  position: absolute;
  z-index: -14;
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-width: 1400px;
  min-height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

main.top_main .top_fix_bg .bg02 {
  width: 80%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}

main.top_main .top_work_swiper_block {
  width: calc(50% + 550px);

  margin: 0 0 0 auto;
}

main.top_main .top_work_swiper_block .swiper-slide {
  width: 550px;
}

main.top_main .top_work_swiper_block .swiper-slide .card {
  display: block;
  width: 500px;
  color: #002949;
}

main.top_main .top_work_swiper_block .swiper-slide .card img {
  width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}

main.top_main .top_work_swiper_block .swiper-slide .card .car_name {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}

main.top_main .top_work_swiper_block .swiper-slide .car_info {
  line-height: 2;
  font-weight: bold;
}

main.top_main .roop_block {
  position: absolute;
  width: 100%;
  height: 260px;
  z-index: -3;
  left: 0;
}

main.top_main .roop_frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

main.top_main .roop_container {
  animation: roop_text 15s linear infinite;
  position: absolute;
  bottom: 50px;
  left: 50%;
  display: flex;
  white-space: nowrap;
}

main.top_main .roop_container .roop_text {
  font-size: 170px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #a5d5ed;
}

@keyframes roop_text {
  0% {
    transform: translate(-40%, 0%);
  }
  100% {
    transform: translate(-60%, 0%);
  }
}

/* .top_section01 .bg01{
  position: absolute;
  z-index:-10;
  width:1920px;
  min-width:100%;
  top:0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
} */

.top_section01 {
  /* padding-top: 8.333vw; */
  padding-top: 6.771vw;
  /* padding-bottom: 7.813vw; */
  padding-bottom: 12.5vw;
  position: relative;
}

.top_section01 .bg {
  position: absolute;
  z-index: -5;
  width: 1920px;
  min-width: 100%;
  min-height: calc(100% + 270px);
  bottom: -270px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  object-position: bottom;
  object-fit: cover;
}

.top_section01 .mv_set_block {
  width: 75.521vw;
  height: 44.531vw;
  position: relative;
  margin: 0 -2.292vw 0 auto;
}

.top_section01 .mv_img_block {
  position: absolute;
  transition: 0.6s;
  opacity: 0;
}

.top_section01 .mv_img_block01 {
  width: 29.948vw;
  height: 29.948vw;
  top: 0;
  right: 15.937vw;
  transform: translateY(-200px);
}

.top_section01 .mv_img_block02 {
  width: 43.646vw;
  height: 28.646vw;
  bottom: 0;
  left: 0;
  transform: translateX(-200px);
}

.top_section01 .mv_img_block03 {
  width: 43.646vw;
  height: 28.646vw;
  bottom: 0;
  right: 0;
  transform: translateX(200px);
}

.top_section01 .mv_img_block.show {
  opacity: 1;
}
.top_section01 .mv_img_block01.show {
  transform: translateY(0);
}
.top_section01 .mv_img_block02.show {
  transform: translateX(0);
}
.top_section01 .mv_img_block03.show {
  transform: translateX(0);
}

.top_section01 .mv_img_frame {
  width: 100%;
  height: 100%;
  position: relative;
}

.top_section01 .mv_img_frame .youtube_link{
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  clip-path: polygon(66% 1%, 100% 53%, 69% 100%, 0% 100%);
}

.top_section01 .mv_img_frame .youtube_link.show{
  pointer-events: auto;
}

.top_section01 .mv_img_frame img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 2s;
  opacity: 0;
}

.top_section01 .mv_img_frame img.show {
  opacity: 1;
}

.top_section01 .text {
  position: absolute;
  top: 21.354vw;
  left: 5.208vw;
  z-index: 10;
}

.top_section01 .text .mv_title01 {
  width: 40.417vw;
}

.top_section01 .text .p01 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.083vw;
  font-weight: bold;
  font-stretch: normal;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: left;
  color: #002f54;
  /* margin-top: -1vw; */
  margin-bottom: 2.5vw;
}

.top_section01 .text .mv_title02 {
  width: 23vw;
}

.top_section01 .text .p02 {
  font-size: 2.344vw;
  font-weight: 900;
  line-height: 1;
  
}



.top_section02 {
  padding-bottom: 180px;
  position: relative;
}

/* .top_section02::before{
  content:'';
  width:100%;
  height:100%;
  background-color:#d8ecf6;
  position: absolute;
  top:0;
  left:0;
  z-index:-7;
} */

.top_section02 .p1 {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
  color: #002949;
  margin-bottom: 48px;
}

.top_section02 .flex {
  display: flex;
  justify-content: space-between;
}

.top_section02 .card {
  width: 360px;
  color: #002949;
}

.top_section02 .card .thumb {
  margin-bottom: 16px;
  height: 440px;
  transition-duration: 0.4s;
  border-radius: 10px;
}

.top_section02 .card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.top_section02 .card:hover .thumb {
  transform: scale(0.9);
}

.top_section02 .card .card_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.top_section02 .card .card_flex h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  color: #002949;
  transition-duration: 0.4s;
}

.top_section02 .card .card_flex .radi {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ada589;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 0.4s;
}

.top_section02 .card .card_flex .radi img {
  width: 13px;
}

.top_section02 .card p {
  font-weight: 500;
  line-height: 1.6;
  color: #002949;
  transition-duration: 0.4s;
}

.top_section02 .card:hover h3,
.top_section02 .card:hover p {
  color: #880a23;
}

.top_section02 .card:hover .card_flex .radi {
  background-color: #880a23;
}

.top_section03 {
  display: flex;
  align-items: center;
  height: 100vh;
  min-height: 600px;
}

.top_section03 .frame {
  width: 100%;
}

.top_section03 .title {
  font-size: 46px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
}

.top_section04 {
  display: flex;
  align-items: center;
  height: 100vh;
  min-height: 600px;
  position: relative;
}

.top_section04 .frame {
  width: 100%;
}

.top_section04 p {
  font-size: 26px;
  font-weight: 500;
  line-height: 3.08;
  letter-spacing: 0.05em;
  color: #fff;
}

.top_section05 {
  display: flex;
  align-items: center;
  height: 100vh;
  min-height: 600px;
  position: relative;
}

.top_section05 .frame {
  width: 100%;
}

.top_section05 .text {
  font-size: 26px;
  font-weight: 500;
  line-height: 3.08;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 140px;
}

.top_section05 .link {
  display: flex;
  align-items: center;
  width: fit-content;
}

.top_section05 .link p {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  margin-right: 40px;
}

.top_section05 .link .radi {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  transition-duration: 0.4s;
  background-color: #ada589;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_section05 .link .radi .arrow {
  width: 31px;
  height: 21px;
  transition-duration: 0.4s;
  background-image: url("../img/common/link_right_off.png");
}

.top_section05 .link:hover .radi {
  transform: scale(0.67);
  background-color: #91b9ce;
}

.top_section05 .link:hover .radi .arrow {
  background-image: url("../img/common/link_right_on.png");
}

.top_common_section .link_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top_common_section .link_flex .ima_area {
  width: 600px;
  border-radius: 10px;
}

.top_common_section .link_flex .ima_area img {
  width: 100%;
  border-radius: 10px;
}

.top_common_section .link_flex .text_area {
  width: 512px;
  padding-top: 56px;
}

.top_common_section .link_flex .head_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.top_common_section .link_flex .head_flex h3 {
  display: flex;
  /* align-items: center; */
  font-size: 42px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: left;
  color: #002949;
  font-feature-settings: "palt";
  white-space: nowrap;
}

@media (min-width: 1201px) {
  .top_common_section .link_flex .head_flex h3.car_life_h3 {
    font-size: 36px;
  }
}

.top_common_section .link_flex .head_flex h3 span {
  margin-right: 28px;
  font-size: 64px;
  font-weight: bold;
  line-height: 42px;
  letter-spacing: 0.02em;
  color: #002949;
}

.top_common_section .link_flex .text_area p {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  color: #002949;
}

.top_common_section .work_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 50px;
}

.top_common_section .work_flex .more_flex {
  display: flex;
  align-items: center;
}

.top_common_section .work_flex .more_flex span {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  color: #002949;
}
.top_common_section .work_flex .more_flex .common_scale_radi {
  margin-left: 48px;
}

.top_common_section .work_flex h3 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: left;
}

.top_common_section .work_flex p {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.top_common_section .examination_area {
  position: relative;
}

.top_common_section .examination_area .container {
  /* padding-left: 70px; */
  
  
}

.top_common_section .examination_area .title {
  margin-bottom: 24px;
  font-size: 34px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: left;
  max-width: 1150px;
  margin:0 auto 24px;
  padding:0;
}

.top_common_section .examination_area .text {
  margin-bottom: 56px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.67;
  max-width: 1150px;
  margin:0 auto 56px;
}

.top_common_section .examination_area .examination_list {
  display: flex;
  justify-content: space-between;
  
  max-width: 1150px;
  margin:0 auto;
  padding:0;
}

.top_common_section .examination_list .card {
  width: 370px;
  height: 510px;
  position: relative;
  border-radius: 10px;
  transition: 0.4s;
}

.top_common_section .examination_list .card:hover {
  transform: scale(0.9);
}

.top_common_section .examination_list .card .text_block {
  position: absolute;
  left: 32px;
  bottom: 88px;
}

.top_common_section .examination_list .card .text_block p {
  color: #fff;
}

.top_common_section .examination_list .card .text_block p.text01 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.29;
}

.top_common_section .examination_list .card .text_block p.text02 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.29;
}

.top_common_section .examination_list .card .text_block p.text03 {
  font-size: 14px;
  font-weight: normal;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
}

.top_common_section .roop_block {
  bottom: 150px;
}

.top_section06 {
  scroll-snap-align: start;
}

.top_section06 .section_relative {
  position: relative;
  padding-top: 240px;
  padding-bottom: 180px;
}

.top_section06 .bg {
  position: absolute;
  z-index: -4;
  width: 1920px;
  min-width: 100vw;
  height: calc(100% - 80px);
  object-fit: cover;
  object-position: top;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.top_section06 .p1 {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #002949;
  margin-bottom: 110px;
}

.top_section06 .link_flex {
  margin-bottom: 120px;
}

.top_section06 .work_flex {
  margin-bottom: 56px;
}

.top_section06 .examination_area {
  margin-top: 120px;
}

.top_section06 .examination_area .examination_list {
  display: flex;
  justify-content: space-between;
}

.top_section06 .examination_list .card01 {
  background-image: url("../img/top/business_card01.png");
}
.top_section06 .examination_list .card02 {
  background-image: url("../img/top/business_card02.png");
}
.top_section06 .examination_list .card03 {
  background-image: url("../img/top/business_card03.png");
}

.top_section06 .examination_list .card.tel {
  pointer-events: none;
}

.top_section06 .examination_list .card02 .text_block {
  bottom: 56px;
}

.top_section07 {
  scroll-snap-align: start;
}

.top_section07 .section_relative {
  padding: 180px 0;
  position: relative;
}

.top_section07 .bg {
  position: absolute;
  z-index: -4;
  width: 1920px;
  min-width: 100vw;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.top_section07 .examination_area {
  margin-top: 120px;
}

.top_section07 .examination_area .examination_list {
  display: flex;
  justify-content: flex-end;
}

.top_section07 .examination_list .card01 {
  background-image: url("../img/top/business_card01.png");
}

main.top_main .top_section07 .roop_container .roop_text {
  color: #bddceb;
}

.top_section08 {
  scroll-snap-align: start;
}

.top_section08 .bg01 {
  position: absolute;
  z-index: -4;
  width: 1920px;
  min-width: 100vw;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.top_section08 .bg02 {
  position: absolute;
  z-index: -3;
  width: 824px;
  right: 0;
  top: 64px;
}

.top_section08 .section_relative {
  padding: 180px 0;
  position: relative;
}

.top_section08 .link_flex {
  margin-bottom: 120px;
}

.top_section08 .work_flex {
  margin-bottom: 56px;
}

.top_section09 {
  scroll-snap-align: start;
}

.top_section09 .section_relative {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_section09 .container {
  width: 1240px;
  max-width: 100%;
}

.top_section09 .bg {
  position: absolute;
  z-index: -4;
  width: 1920px;
  min-width: 100vw;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.top_section09 .link_flex .text_area {
  width: 550px;
}

.top_section10 {
  padding-top: 230px;
  padding-bottom: 280px;
}

.top_section10 .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top_section10 .flex .left .news_title {
  width: 300px;
  margin-bottom: 20px;
}

.top_section10 .flex .left h2 {
  margin-bottom: 60px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: left;
  color: #880a23;
}

.top_section10 .flex .left .radi {
  width: 90px;
  height: 90px;
  /* width:fit-content; */
  border-radius: 50%;
  transition-duration: 0.4s;
  background-color: #ada589;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_section10 .flex .left .radi .arrow {
  width: 23px;
  height: 15px;
  transition-duration: 0.4s;
  background-image: url("../img/common/link_right_off.png");
}

.top_section10 .flex .left .radi:hover {
  transform: scale(0.67);
  background-color: #91b9ce;
}

.top_section10 .flex .left .radi:hover .arrow {
  background-image: url("../img/common/link_right_on.png");
}

.top_section10 .flex .right {
  width: 67%;
}

/*
------------------------------------------------------------------------
以下、下層共通
------------------------------------------------------------------------
*/

/*mv部分*/
main.page_main {
  padding-top: 80px;
}

.common_page_mv_section {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.common_page_mv_section::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -5;
  position: absolute;
  top: 0;
  left: 0;
}

.common_page_mv_section .mv {
  height: auto;
  width: 78%;
  object-fit: cover;
}

.common_page_mv_section .bg {
  /* width:100%; */
  height: 33.333vw;
  bottom: 0;
  position: absolute;
  left: 0;
  z-index: -2;
}

.common_page_mv_section .title_block {
  position: absolute;
  left: 5.208vw;
  top: 21.875vw;
}

.common_page_mv_section .title_block .en_title {
  height: 4.167vw;
  width: auto;
  margin-bottom: 1.25vw;
}

.common_page_mv_section .title_block .page_title {
  font-size: 1.979vw;
  font-weight: bold;
  color: #003863;
  font-style: italic;
}

.common_page_mv_section .title_block .page_title_text {
  font-size: 5.729vw;
  color: #003863;
  font-weight: bold;
  font-style: italic;
}

.common_page_mv_section .title_block .page_title_img {
  height: 2.083vw;
  width: auto;
}

/*ぱんくず*/
.bread_section {
  padding-top: 56px;
}

.bread_section .bread_flex {
  display: flex;
  flex-wrap: wrap;
}

.bread_section .bread_flex a {
  color: #002949;
  font-weight: 500;
  line-height: 1.2;
  transition: 0.4s;
  margin-bottom: 8px;
}

.bread_section .bread_flex a:hover {
  opacity: 0.7;
}

.bread_section .bread_flex .arrow {
  width: 6px;
  margin: 0 20px 8px;
  padding-top: 6px;
}

.bread_section .bread_flex .arrow img {
  width: 100%;
}

.bread_section .bread_flex span {
  color: #6e9db5;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 8px;
}

/*見出しセット*/

.common_title_set .img_title {
  height: 16px;
  width: auto;
  margin: 0 auto 16px;
}

.common_title_set .title {
  position: relative;
  font-size: 38px;
  /* font-family: "Zen Kaku Gothic New"; */
  text-align: center;
  font-weight: bold;
  padding-bottom: 24px;
}

.common_title_set .title::after {
  content: "";
  width: 60px;
  height: 3px;
  background-color: #880a23;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.common_title_set .title .budget_text{
  width:295px;
  display: inline;
  vertical-align: baseline;
  margin-right: 4px;
}

/*選ばれる理由*/

.common_reason_list .reason_block {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
  min-height: 430px;
}

.common_reason_list .reason_block:last-child {
  margin-bottom: 0;
}

.common_reason_list .reason_block .thumb_block,
.common_reason_list .reason_block .reason_textarea {
  position: relative;
}

.common_reason_list .reason_block .thumb_block {
  width: 50%;
  min-height: 430px;
}

.common_reason_list .reason_block .reason_thumb {
  position: absolute;
  top: 0;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);

}

.common_reason_list .reason_block .thumb {
  position: relative;
  width: 33.594vw;
  max-width: 645px;
  min-width: 540px;
}

.common_reason_list .reason_block .thumb::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 3px solid rgba(185, 176, 146, 1);
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: -1;
}

.common_reason_list .reason_block .thumb img.pic {
  width: 100%;
  /* aspect-ratio: 1 / 0.67; */
  object-fit: cover;
  border-radius: 10px;
}

.common_reason_list .reason_block .reason_textarea {
  /* padding-top: 64px; */
  padding-right: 80px;
  width: 50%;
}

.common_reason_list .reason_block .title_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.common_reason_list .reason_block .title_flex .reason_title {
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  font-size: 32px;
  font-weight: bold;
  /* padding-top: 20px; */
  padding-right: 28px;
}

.common_reason_list .reason_block .title_flex .num {
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  font-size: 100px;
  line-height: 80px;
  font-weight: 900;
}

.common_reason_list .reason_block .reason_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.common_reason_list .reason_block:nth-child(2n) {
  flex-direction: row-reverse;
}

.common_reason_list .reason_block:nth-child(2n) .reason_thumb {
  right: auto;
  left: 60px;
}

.common_reason_list .reason_block:nth-child(2n) .reason_textarea {
  padding-left: 80px;
  padding-right: 0;
}

.common_reason_list .reason_block:nth-child(2n) .title_flex {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.common_reason_list .reason_block:nth-child(2n) .title_flex .reason_title {
  padding-right: 0;
  padding-left: 28px;
}

.common_reason_list .reason_block:nth-child(2n) .thumb::after {
  left: auto;
  right: -20px;
}

.common_reason_list .reason_block:nth-child(3n) .reason_thumb {
  right: 0;
}

.common_reason_list .reason_block:nth-child(3n) .reason_textarea {
  padding-left: 80px;
  padding-right: 0;
}

/*検討中のお客様へ*/
.common_examination_list {
  display: flex;
  max-width: 1150px;
  margin: 0 auto;
  justify-content: space-between;
}

.common_examination_list .card {
  width: 370px;
  height: 510px;
  position: relative;
  border-radius: 10px;
  transition: 0.4s;
}

.common_examination_list .card:hover {
  transform: scale(0.9);
}

.common_examination_list .card .text_block {
  position: absolute;
  left: 32px;
  bottom: 88px;
}

.common_examination_list .card .text_block p {
  color: #fff;
}

.common_examination_list .card .text_block p.text01 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.29;
}

.common_examination_list .card .text_block p.text02 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.29;
}

.common_examination_list .card .text_block p.text03 {
  font-size: 14px;
  font-weight: normal;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
}

.common_examination_list .card.tel {
  pointer-events: none;
}

.common_examination_list .card01 {
  background-image: url("../img/top/business_card01.png");
}
.common_examination_list .card02 {
  background-image: url("../img/top/business_card02.png");
}
.common_examination_list .card03 {
  background-image: url("../img/top/business_card03.png");
}

.common_examination_list .card02 .text_block {
  bottom: 56px;
}

/*実績のswiper*/
.common_swiper_block {
  width: calc(50% + 550px);

  margin: 0 0 0 auto;
}

.common_swiper_block .swiper-slide {
  width: 550px;
}

.common_swiper_block .swiper-slide .card {
  display: block;
  width: 500px;
  color: #002949;
}

.common_swiper_block .swiper-slide .card img {
  width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}

.common_swiper_block .swiper-slide .card .car_name {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}

.common_swiper_block .swiper-slide .car_info {
  line-height: 2;
  font-weight: bold;
}

/*子ページへのリンク*/
.common_child_link_flex {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.common_child_link_flex .link {
  transition: 0.4s;
  height: 160px;
  width: 560px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px 10px 0 0;
  border-bottom: 5px solid #002949;
  
}

@media(min-width:768px){
  .common_child_link_flex .link:hover {
    background-color: #c5e1f0;
  }
}


.common_child_link_flex .link span {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  color: #002949;
}

.common_child_link_flex .link .radi {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: solid 1px #002949;
  display: flex;
  align-items: center;
  justify-content: center;
}

.common_child_link_flex .link .radi img {
  width: 18px;
}

/*ページ下部のバナー型リンク*/
.common_link_banner_flex {
  display: flex;
  justify-content: space-between;
}

.common_link_banner_flex .link_banner {
  width: 33.3%;
  height: 15.6vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 16px;
}

.common_link_banner_flex .link_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.4s;
}

.common_link_banner_flex .link_banner:hover img {
  transform: scale(1.1);
}

.common_link_banner_flex .link_banner span {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  /* text-align: center; */
}

/*コツページのPOINTリスト*/

.common_point_list .point_block {
  position: relative;
  margin-bottom: 112px;
  height: 630px;
  padding-top: 12px;
}

.common_point_list .point_block .point_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.common_point_list .point_block:last-child {
  margin-bottom: 0;
}

.common_point_list .point_block .num {
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  font-size: 100px;
  font-weight: 900;
  line-height: 90px;
  letter-spacing: 0.02em;
  font-style: italic;
  text-align: right;
}

.common_point_list .point_block .num span {
  color: #880a23;
}

.common_point_list .point_block .white_block {
  position: relative;
  width: 640px;
  min-height: 350px;
  padding: 30px 40px;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
}

.common_point_list .point_block .white_block::after {
  content: "";
  width: 100%;
  height: 100%;
  border: 2px solid rgba(149, 141, 120, 1);
  position: absolute;
  right: -20px;
  bottom: -20px;
}

.common_point_list .point_block .text_contents {
  width: 100%;
}

.common_point_list .point_block .point_title {
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  font-size: 32px;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: right;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.common_point_list .point_block .point_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.common_point_list .point_block .bg {
  position: absolute;
  height: 580px;
  /* width:1190px;
  height:30.208vw; */
  width: 61.979vw;
  object-fit: cover;
}

.common_point_list .point_block .pic {
  z-index: -2;
  top: 0;
  left: 0;
}

.common_point_list .point_block .ila {
  z-index: -3;
  bottom: 0;
  right: 0;
}

.common_point_list .point_block:nth-child(even) .point_container {
  justify-content: flex-start;
}

.common_point_list .point_block:nth-child(even) .num {
  text-align: left;
}

.common_point_list .point_block:nth-child(even) .white_block::after {
  right: auto;
  left: -20px;
}

.common_point_list .point_block:nth-child(even) .point_title {
  text-align: left;
}

.common_point_list .point_block:nth-child(even) .pic {
  left: auto;
  right: 0;
}

.common_point_list .point_block:nth-child(even) .ila {
  right: auto;
  left: 0;
}

/*
------------------------------------------------------------------------
以下、事業内容
------------------------------------------------------------------------
*/

.business_section02 {
  padding-top: 124px;
  padding-bottom: 320px;
}

.business_section02 .msg {
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
}

.business_section02 .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.business_section02 .flex .link {
  position: relative;
  width: 586px;
  margin-bottom: 56px;
  
}

.business_section02 .flex .link .thumb{
  width: 586px;
  height: 380px;
  margin-bottom: 16px;
  border-radius: 10px;
  transition: 0.4s;
  position: relative;
}

.business_section02 .flex .link .pic {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -3;
  border-radius: 10px;
  transition: 0.4s;
}

.business_section02 .flex .link .pic.gray {
  filter: grayscale(100%);
}
.business_section02 .flex .link .pic.color {
  opacity: 0;
}

.business_section02 .flex .link .text_flex{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.business_section02 .flex .link .radi {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* border: 1px solid #002949; */
  background-color: #ada589;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
  margin-left: 32px;
}

.business_section02 .flex .link .radi img {
  width: 17px;
}

.business_section02 .flex .link .text {
  font-size: 32px;
  color: #002949;
  font-weight: 500;
  line-height: 1.2;
  transition: 0.4s;
}

/* .business_section02 .flex .link04 .text{
  bottom:16px;
} */

.business_section02 .flex .link:hover .thumb {
  transform: scale(0.9);
}

.business_section02 .flex .link:hover .pic.color {
  opacity: 1;
}

.business_section02 .flex .link:hover .pic.gray {
  opacity: 0;
}

.business_section02 .flex .link:hover .text {
  color: #880a23;
}

.business_section02 .flex .link:hover .radi {
  border: 1px solid #880a23;
  background-color: #880a23;
}

/*
------------------------------------------------------------------------
以下、車の買取
------------------------------------------------------------------------
*/

.sell_section02 {
  /* padding-top: ; */
  position: relative;
  /* padding-bottom: 96px; */
}

.sell_section02 .bg {
  position: absolute;
  z-index: -9;
  top: 0;
}

.sell_section02 .flex {
  display: flex;
  /* justify-content: flex-end; */
  margin-top: 96px;
}

.sell_section02 .flex .contents {
  max-width: 615px;
}

.sell_section02 .p1 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 40px;
  white-space: nowrap;
}

.sell_section02 .p2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.sell_section03 {
  /* padding-top: 360px;
  padding-bottom: 390px; */
  padding-top: 270px;
  padding-bottom: 200px;
  /* padding-bottom: 410px; */
  position: relative;
}

.sell_section03 .reason_bg {
  bottom: -140px;
  height: calc(100% + 900px);
  height:auto;
  z-index: -5;
  /* object-fit: contain; */
}

.sell_section03 .common_title_set {
  margin-bottom: 80px;
}

.sell_section04 {
  padding-top: 10px;
  padding-bottom: 72px;
}

.sell_section04 .common_title_set {
  margin-bottom: 40px;
}

.sell_section04 h3 {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 32px;
  margin-bottom: 32px;
  line-height: 1;
}

.sell_section04 h3::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #002949;
  position: absolute;
  left: 0;
  top: 6px;
}

.sell_section04 .flow_list {
  display: flex;
  justify-content: space-between;
}

.sell_section04 .flow_block {
  width: 320px;
}

.sell_section04 .flow_block .pic {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 16px;
}

.sell_section04 .flow_block .flow_text {
  font-weight: 500;
  line-height: 1.5;
}

.sell_section04 .flow_block .flow_text a {
  font-weight: 500;
  color: #002949;
}

.sell_section04 .flow_block .flow_text .tel {
  pointer-events: none;
}

.sell_section04 .flow_block .flow_text span {
  font-size: 14px;
  font-weight: 400;
}

.sell_section04 .flow_arrow {
  width: 43px;
  padding-top: 86px;
}

.sell_section04 .flow_arrow img {
  width: 100%;
}

.sell_section04 .flow_list01 {
  margin-bottom: 64px;
}

.sell_section05 {
  padding-top: 216px;
  padding-bottom: 140px;
  position: relative;
}

.sell_section05 .customer_bg {
  top: 0;
  z-index: -3;
}

.sell_section05 .common_title_set {
  margin-bottom: 28px;
}

.sell_section05 .customer_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.67;
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.sell_section06 {
  padding-top: 140px;
  padding-bottom: 290px;
}

.sell_section06 .common_title_set {
  margin-bottom: 32px;
}

.sell_section06 .achivement_text {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.sell_section06 .more_flex {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 80px;
}

.sell_section06 .more_flex span {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin-right: 48px;
  color: #002949;
}

.sell_section07 {
  padding-bottom: 180px;
}

.sell_section08 {
  padding-bottom: 180px;
}

/*
------------------------------------------------------------------------
高く売るためのコツ
------------------------------------------------------------------------
*/

.how_sell_section02 {
  padding-top: 140px;
}

.how_sell_section02 .p1 {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 120px;
}

.how_sell_section03 {
  padding-top: 280px;
}

.how_sell_section03 .common_title_set {
  margin-bottom: 40px;
}

.how_sell_section03 .customer_text {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  line-height: 1.6;
  margin-bottom: 64px;
}

.how_sell_section04 {
  padding-top: 180px;
}

.how_sell_section05 {
  padding-top: 180px;
  padding-bottom: 172px;
}

/*
------------------------------------------------------------------------
買取チェックシート
------------------------------------------------------------------------
*/

.checksheet_section02 {
  padding-top: 120px;
}

.checksheet_section02 .p01 {
  display: flex;
  justify-content: center;
  margin-bottom: 88px;
  font-size: 18px;
  font-weight: 500;
}

.checksheet_section02 .print_button {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 80px;
  margin: 0 auto 96px;
  background-color: #002949;
  border-radius: 10px;
  padding-left: 20px;
  transition: 0.4s;
}


@media(min-width:768px){
  .checksheet_section02 .print_button:hover{
    transform:scale(0.9);
  }
}


.checksheet_section02 .print_button span {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  position: relative;
}

.checksheet_section02 .print_button span::before {
  content: "";
  width: 39px;
  height: 32px;
  background-image: url("../img/checksheet/print_icon.png");
  position: absolute;
  top: 0;
  bottom: 0;
  left: -64px;
  margin: auto;
}

/* @page {
  margin: 10mm;
  size: 210mm 297mm;
} */
@media print {
  /* 全体設定 */
  body {
    -webkit-print-color-adjust: exact; /* 印刷時でも背景色や背景画像を表示 */
    width: 1280px; /* 印刷時の全ページ幅を統一（px数値はお好みで） */
    zoom: 0.8; /* なるべく多くのブラウザで切れないようにするため */
  }
}

.print_contents {
  max-width: 1200px;
  margin: 0 auto;
}

.print_contents .checksheet_kind {
  margin-bottom: 64px;
  padding: 24px 0;
  border-top: 3px solid #002949;
  border-bottom: 3px solid #002949;
  background-color: #c5e1f0;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
}

.print_contents .check_list {
  display: flex;
  margin-bottom: 88px;
}

.print_contents .check_block {
  cursor: pointer;
  width: 280px;
  margin-right: 26px;
}

.print_contents .check_block:nth-child(4n) {
  margin-right: 0;
}

.print_contents .check_block .check_flex {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.print_contents .check_block .checkbox {
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border: 2px solid #002949;
  border-radius: 2px;
}

.print_contents .check_block .checkbox img {
  width: 20px;
  position: absolute;
  top: -2px;
  left: 1px;
  opacity: 0;
  transition: 0.4s;
}

.print_contents .check_block.active .checkbox img {
  opacity: 1;
}

.print_contents .check_block .check_title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 3px;
}

.print_contents .check_block .thumb {
  width: 100%;
  height: 190px;
  position: relative;
  margin-bottom: 16px;
}

.print_contents .check_block .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  filter: grayscale(100%);
}

.print_contents .check_block.active .thumb img {
  filter: none;
}

.print_contents .check_block .check_text {
  font-weight: 500;
  line-height: 1.9;
}

.checksheet_section03 {
  padding-top: 216px;
  padding-bottom: 270px;
  position: relative;
}

.checksheet_section03 .customer_bg {
  top: 0;
  z-index: -3;
}

.checksheet_section03 .common_title_set {
  margin-bottom: 24px;
}

.checksheet_section03 .customer_text {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.67;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.checksheet_section04 {
  padding-bottom: 180px;
}

.checksheet_section05 {
  padding-bottom: 160px;
}

/*
------------------------------------------------------------------------
以下、車の販売
------------------------------------------------------------------------
*/

.sale_section02 {
  /* padding-top: ; */
  position: relative;
  padding-bottom: 130px;
}

.sale_section02 .bg {
  z-index: -11;
  position: absolute;
  width: 1082px;
  /* left:838px; */
  right: 0;
  top: -40px;
}

.sale_section02 .flex {
  display: flex;
  /* justify-content: flex-end; */
  margin-top: 88px;
}

.sale_section02 .p1 {
  margin-bottom: 40px;
  font-size: 34px;
  font-weight: bold;
  line-height: 1.24;
  letter-spacing: 0.05em;
}

.sale_section02 .p2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  color: #002949;
}

.sale_section03 {
  position: relative;
  padding-top: 260px;
  padding-bottom: 420px;
}

.sale_section03 .common_title_set {
  margin-bottom: 48px;
}

.sale_section03 .reason_bg {
  top: -600px;
  /* height:100%; */
  height: calc(100% + 740px);
  z-index: -4;
}

.sale_section04 {
  padding-bottom: 80px;
  margin-top: -160px;
}

.sale_section04 .common_title_set {
  margin-bottom: 72px;
}

.sale_section04 .flow_block {
  padding: 96px 96px 60px;
  border-radius: 10px;
  border: solid 3px #002949;
  position: relative;
}

.sale_section04 .flow_block .flow_title {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  color: #002949;
  width: 306px;
  height: 74px;
  position: absolute;
  top: -37px;
  left: 96px;
  background-image: url("../img/sale/sale_flow_title_frame.png");
}

.sale_section04 .flow_block .flow_step {
  display: flex;
  margin-bottom: 16px;
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
}

.sale_section04 .flow_block .flow_step .num {
  font-size: 50px;
  font-weight: 900;
  line-height: 0.4;
  margin-right: 24px;
  color: #002949;
}

.sale_section04 .flow_block .flow_step .step_text {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
}

.sale_section04 .flow_block .flow_text {
  margin-bottom: 48px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.33;
}

.sale_section04 .flow_block .flow_text a {
  color: #002949;
  font-weight: 500;
}

.sale_section04 .flow_block .flow_text a.tel {
  pointer-events: none;
}

.sale_section04 .flow_block .flow_text.mb0 {
  margin-bottom: 0;
}

.sale_section04 .flow_block .flow_text span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.sale_section04 .flow_block .how_link {
  transition: 0.4s;
  height: 90px;
  width: 510px;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px 10px 0 0;
  border-bottom: 5px solid #002949;
  margin: 60px auto 0;
  
}


@media(min-width:768px){
  .sale_section04 .flow_block .how_link:hover {
    background-color: #c5e1f0;
  }
}


.sale_section04 .flow_block .how_link span {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  color: #002949;
}

.sale_section04 .flow_block .how_link .radi {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  border: solid 1px #002949;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sale_section04 .flow_block .how_link .radi img {
  width: 14px;
}

.sale_section04 .flow_block .link_flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.sale_section04 .flow_block .link_flex .link {
  width: 310px;
  height: 70px;
  padding: 0 16px;
  border-radius: 10px;
  background-color: #002949;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.4s;
}

.sale_section04 .flow_block .link_flex .link:hover {
  transform: scale(0.9);
}

.sale_section04 .flow_block .link_flex .link span {
  font-weight: 500;
  line-height: 1;
  color: #fff;
}

.sale_section04 .flow_block .link_flex .link .radi {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #c5e1f0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sale_section04 .flow_block .link_flex .link .radi img {
  width: 11px;
}

.sale_section04 .flow_arrow {
  margin: 48px 0;
}

.sale_section04 .flow_arrow img {
  width: 190px;
  margin: 0 auto;
}

.sale_section04 .step_list {
  display: flex;
  justify-content: space-around;
}

.sale_section04 .step_block {
  width: 125px;
}

.sale_section04 .step_block .icon {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  position: relative;
  background-color: #c5e1ef;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6px;
}

.sale_section04 .step_block .icon .step01 {
  width: 36%;
}
.sale_section04 .step_block .icon .step02 {
  width: 38.4%;
}
.sale_section04 .step_block .icon .step03 {
  width: 60%;
}
.sale_section04 .step_block .icon .step04 {
  width: 47.2%;
}
.sale_section04 .step_block .icon .step05 {
  width: 45.6%;
}
.sale_section04 .step_block .icon .step06 {
  width: 36%;
}

.sale_section04 .step_block .step_title {
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  position: absolute;
  text-align: center;
  width: 100%;
  top: -14px;
  left: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}

.sale_section04 .step_block .step_title span {
  font-size: 24px;
}

.sale_section04 .step_block .step_text {
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
}

.sale_section04 .step_arrow {
  width: 12px;
  padding-top: 42px;
}

.sale_section04 .step_arrow img {
  width: 100%;
}

.sale_section05 {
  padding-top: 180px;
  padding-bottom: 340px;
  position: relative;
}

.sale_section05 .customer_bg {
  top: 0;
  max-height: 100%;
}

.sale_section05 .common_title_set {
  margin-bottom: 32px;
}

.sale_section05 .customer_text {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.67;
}

.sale_section05 .flex {
  max-width: 810px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 auto;
}

.sale_section05 .flex .left {
  width: 410px;
}

.sale_section05 .red_link {
  width: 410px;
  height: 153px;
  padding: 44px 21px 44px 20px;
  border-radius: 10px;
  /* border: solid 4px #d83f36; */
  
  background-color: #dbeffa;
  transition: 0.4s;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.sale_section05 .red_link p {
  transition: 0.4s;
  
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
}

.sale_section05 .red_link p span {
  font-weight: bold;
  font-size: 30px;
  line-height: 1;
}

.sale_section05 .red_link .radi {
  width: 64px;
  height: 64px;
  transition: 0.4s;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sale_section05 .red_link .radi img {
  width: 18px;
  position: absolute;
  left:0;
  top:0;
  bottom:0;
  right:0;
  margin:auto;
  transition: 0.4s;
}

.sale_section05 .red_link .radi img.on{
  opacity: 0;
}


.sale_section05 .red_link01{
  border: solid 4px #ff743c;
}
.sale_section05 .red_link01 p{
  color: #ff743c;
}
.sale_section05 .red_link01 .radi{
  background-color: #ff743c
}

.sale_section05 .red_link02{
  border: solid 4px #d83f36;
}
.sale_section05 .red_link02 p{
  color: #d83f36;
}
.sale_section05 .red_link02 .radi{
  background-color: #d83f36
}

.sale_section05 .red_link03{
  border: solid 4px #901106;
}
.sale_section05 .red_link03 p{
  color: #901106;
}
.sale_section05 .red_link03 .radi{
  background-color: #901106
}

@media(min-width:768px){
  .sale_section05 .red_link:hover .radi img.on{
    opacity: 1;
  }
  
  .sale_section05 .red_link:hover .radi img.off{
    opacity: 0;
  }
  
  .sale_section05 .red_link:hover p{
    color: #fff;
  }
  
  .sale_section05 .red_link:hover .radi {
    background-color: #91b9ce;
  } 
  
  .sale_section05 .red_link01:hover,
  .sale_section05 .red_link02:hover,
  .sale_section05 .red_link03:hover{
    border: solid 4px #003965;
    background-color: #003965;
  }
}




/* .sale_section05 .red_link:hover {
  border: solid 4px #d83f36;
}

.sale_section05 .red_link:hover p {
  color: #d83f36;
}

.sale_section05 .red_link:hover .radi {
  background-color: #d83f36;
} */

.sale_section05 .flex .right {
  width: 370px;
}

.sale_section05 .right .card {
  width: 370px;
  height: 510px;
  position: relative;
  border-radius: 10px;
  transition: 0.4s;
  display: block;
}

.sale_section05 .right .card:hover {
  transform: scale(0.9);
}

.sale_section05 .right .card .text_block {
  position: absolute;
  left: 32px;
  bottom: 88px;
}

.sale_section05 .right .card .text_block p.text01 {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.29;
}

.sale_section05 .right .card {
  background-image: url("../img/top/business_card01.png");
}

.sale_section06 {
  padding-bottom: 290px;
}

.sale_section06 .common_title_set {
  margin-bottom: 32px;
}

.sale_section06 .achivement_text {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.sale_section06 .more_flex {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 80px;
}

.sale_section06 .more_flex span {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin-right: 48px;
  color: #002949;
}

.sale_section07 {
  padding-bottom: 180px;
}

.sale_section08 {
  padding-bottom: 180px;
}

/*
------------------------------------------------------------------------
中古車を選ぶためのコツ
------------------------------------------------------------------------
*/

.how_sale_section02 {
  padding-top: 140px;
}

.how_sale_section02 .p1 {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 120px;
}

.how_sale_section03 {
  padding-top: 280px;
}

.how_sale_section03 .common_title_set {
  margin-bottom: 40px;
}

.how_sale_section03 .customer_text {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  line-height: 1.6;
  margin-bottom: 64px;
}

.how_sale_section03 .flex {
  max-width: 810px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 auto;
}

.how_sale_section03 .flex .left {
  width: 410px;
  height: 510px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

.how_sale_section03 .blue_link {
  width: 410px;
  height: 153px;
  padding: 44px 21px 44px 20px;
  border-radius: 10px;
  background-color: rgba(0, 57, 101, 1);
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.how_sale_section03 .blue_link p {
  transition: 0.4s;
  color: #fff;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
}

.how_sale_section03 .blue_link p span {
  font-weight: bold;
  font-size: 30px;
  line-height: 1;
}

.how_sale_section03 .blue_link .radi {
  width: 64px;
  height: 64px;
  transition: 0.4s;
  border-radius: 50%;
  background-color: rgba(145, 185, 206, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.how_sale_section03 .blue_link .radi img {
  width: 18px;
}

.how_sale_section03 .blue_link:hover {
  transform: scale(0.9);
}

.how_sale_section03 .red_link {
  width: 410px;
  height: 153px;
  padding: 44px 21px 44px 20px;
  border-radius: 10px;
  background-color: #dbeffa;
  transition: 0.4s;
  /* margin-top: 24px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.how_sale_section03 .red_link p {
  transition: 0.4s;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
}

.how_sale_section03 .red_link p span {
  font-weight: bold;
  font-size: 30px;
  line-height: 1;
}

.how_sale_section03 .red_link .radi {
  width: 64px;
  height: 64px;
  transition: 0.4s;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.how_sale_section03 .red_link .radi img {
  width: 18px;
  position: absolute;
  left:0;
  top:0;
  bottom:0;
  right:0;
  margin:auto;
  transition: 0.4s;
}

.how_sale_section03 .red_link .radi img.on{
  opacity: 0;
}

/* @media(min-width:768px){
  .how_sale_section03 .red_link:hover{
    transform: scale(0.9);
  }
} */

.how_sale_section03 .red_link01{
  border: solid 4px #ff743c;
}
.how_sale_section03 .red_link01 p{
  color: #ff743c;
}
.how_sale_section03 .red_link01 .radi{
  background-color: #ff743c
}

.how_sale_section03 .red_link02{
  border: solid 4px #d83f36;
}
.how_sale_section03 .red_link02 p{
  color: #d83f36;
}
.how_sale_section03 .red_link02 .radi{
  background-color: #d83f36
}

.how_sale_section03 .red_link03{
  border: solid 4px #901106;
}
.how_sale_section03 .red_link03 p{
  color: #901106;
}
.how_sale_section03 .red_link03 .radi{
  background-color: #901106
}


@media(min-width:768px){
  .how_sale_section03 .red_link:hover .radi img.on{
    opacity: 1;
  }
  
  .how_sale_section03 .red_link:hover .radi img.off{
    opacity: 0;
  }
  
  .how_sale_section03 .red_link:hover p{
    color: #fff;
  }
  
  .how_sale_section03 .red_link:hover .radi {
    background-color: #91b9ce;
  } 
  
  .how_sale_section03 .red_link01:hover,
  .how_sale_section03 .red_link02:hover,
  .how_sale_section03 .red_link03:hover{
    border: solid 4px #003965;
    background-color: #003965;
  }
}

/* .how_sale_section03 .red_link:hover {
  border: solid 4px #d83f36;
}

.how_sale_section03 .red_link:hover p {
  color: #d83f36;
}

.how_sale_section03 .red_link:hover .radi {
  background-color: #d83f36;
} */

.how_sale_section03 .flex .right {
  width: 370px;
}

.how_sale_section03 .right .card {
  width: 370px;
  height: 510px;
  position: relative;
  border-radius: 10px;
  transition: 0.4s;
  display: block;
}

.how_sale_section03 .right .card:hover {
  transform: scale(0.9);
}

.how_sale_section03 .right .card .text_block {
  position: absolute;
  left: 32px;
  bottom: 88px;
}

.how_sale_section03 .right .card .text_block p.text01 {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.29;
}

.how_sale_section03 .right .card {
  background-image: url("../img/top/business_card01.png");
}

.how_sale_section04 {
  padding-top: 180px;
}

.how_sale_section05 {
  padding-top: 180px;
  padding-bottom: 172px;
}

/*
------------------------------------------------------------------------
ショールーム
------------------------------------------------------------------------
*/

.showroom_section01.common_page_mv_section .title_block .page_title_text {
  font-size: 4.688vw;
  letter-spacing: -0.02em;
}

.showroom_section02 {
  padding-top: 140px;
  padding-bottom: 48px;
}

.showroom_section02 .showroom_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 108px;
  text-align: center;
}

.showroom_section02 .swiper-block {
  position: relative;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 90px;
}

.showroom_section02 .swiper-block .swiper-arrow {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #002949;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  margin: auto;
}

.showroom_section02 .swiper-block .swiper-prev {
  left: 0;
}

.showroom_section02 .swiper-block .swiper-next {
  right: 0;
}

.showroom_section02 .swiper-block .swiper-arrow img {
  width: 18px;
}

.showroom_section02 .swiper-slide {
  width: 770px;
  height: 530px;
  margin: 0 18px;
  filter: blur(6px);
}

.showroom_section02 .swiper-slide-active {
  filter: none;
}

.showroom_section02 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.showroom_section03 {
  position: relative;
  padding-top: 240px;
  padding-bottom: 360px;
}

.showroom_section03 .bg {
  top: 0;
  z-index: -4;
  height: 100%;
}

.showroom_section03 .common_title_set {
  margin-bottom: 80px;
}

.showroom_section03 .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.showroom_section03 .flex .left {
  width: 42.5%;
  padding-top: 40px;
}

.showroom_section03 .left .select_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 12px;
}

.showroom_section03 .left .more_flex {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.showroom_section03 .left .more_flex span {
  color: #002949;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin-right: 48px;
}

.showroom_section03 .flex .right {
  width: 54%;
}

.showroom_section03 .right .thumb {
  position: relative;
}

.showroom_section03 .right .thumb::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 3px solid rgba(185, 176, 146, 1);
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: -1;
}

.showroom_section03 .right .thumb img {
  width: 100%;
  border-radius: 10px;
}

.showroom_section04 {
  padding-bottom: 180px;
}

.showroom_section04 .common_title_set {
  margin-bottom: 72px;
}

.showroom_section04 .flex {
  display: flex;
  margin-bottom: 40px;
}

.showroom_section04 .flex .left,
.showroom_section04 .flex .right {
  width: 50%;
}

.showroom_section04 .left iframe {
  display: block;
  width: 100%;
  height: 380px;
  border-radius: 10px;
}

.showroom_section04 .flex .right {
  padding-left: 5%;
  padding-right: 3.3%;
  padding-top: 40px;
}

.showroom_section04 .right .p01 {
  padding-left: 20px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 6px;
  position: relative;
}

.showroom_section04 .right .p01::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../img/common/dia.png");
  position: absolute;
  top: 2px;
  left: 0;
}

.showroom_section04 .right .access_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.showroom_section04 .right .p02 {
  margin-bottom: 40px;
}

.showroom_section04 .right .access_block {
  margin-bottom: 16px;
}

.showroom_section04 .right .access_block .line {
  width: 100%;
  margin: 6px 0;
}

.showroom_section04 .right .access_block li {
  position: relative;
  padding-left: 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 4px;
}

.showroom_section04 .right .access_block li::before {
  content: "・";
  color: #002949;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  position: absolute;
  left: 0;
  top: 0;
}

.showroom_section04 .right .access_block li:last-child {
  margin-bottom: 0;
}

.showroom_section04 .flex02 {
  margin-bottom: 0;
}

.showroom_section05 {
  padding-bottom: 180px;
}

.showroom_section06 {
  padding-bottom: 170px;
}

/*
------------------------------------------------------------------------
海外輸出
------------------------------------------------------------------------
*/

.export_section02 {
  padding-top: 24px;
  padding-bottom: 140px;
}

.export_section02 h2 {
  text-align: center;
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 40px;
}

.export_section02 .export_text {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.export_section02 .white_box {
  padding: 48px 0 24px;
  position: relative;
  background-color: #f0faff;
}

.export_section02 .white_box .title_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  margin: auto;
}

.export_section02 .white_box .title_flex p {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  margin: 0 24px;
}

.export_section02 .white_box .title_flex .border {
  width: 2px;
  height: 24px;
  background-color: #002949;
  transform: rotate(30deg);
}

.export_section02 .white_box ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 124px;
}

.export_section02 .white_box ul li {
  width: 140px;
  margin: 12px 0;
}

.export_section02 .white_box ul li img {
  width: 100px;
  margin: 0 auto 12px;
}

.export_section02 .white_box ul li p {
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
  font-feature-settings: "palt";
}

.export_section02 .swiper_block {
  margin-top: 64px;
}

.export_section02 .swiper-slide {
  width: 340px;
  height: 210px;
  margin: 0 14px;
}

.export_section02 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.export_section03 {
  position: relative;
  padding-top: 130px;
  padding-bottom: 220px;
}

.export_section03 .reason_bg {
  height: 100%;
  top: 0;
  object-fit: cover;
}

.export_section03 .common_title_set {
  margin-bottom: 72px;
}

.export_section04 {
  padding-top: 140px;
  padding-bottom: 172px;
}

.export_section04 .common_title_set {
  margin-bottom: 56px;
}

.export_section04 .achivement_text {
  display: flex;
  justify-content: center;
  margin-bottom: 72px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.export_section04 .more_flex {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 80px;
}

.export_section04 .more_flex span {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin-right: 48px;
  color: #002949;
}

.export_section05 {
  padding-bottom: 170px;
}

.export_section05 .banner {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
}

.export_section05 .banner img {
  width: 100%;
}

.export_section06 {
  padding-bottom: 172px;
}

/*
------------------------------------------------------------------------
カーライフサービス
------------------------------------------------------------------------
*/

.support_section .support_h2 {
  margin-bottom: 64px;
  padding: 24px 0;
  border-top: 3px solid #002949;
  border-bottom: 3px solid #002949;
  background-color: #c5e1f0;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.support_section .support_contact_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 530px;
  height: 100px;
  margin: 80px auto 0;
  background-color: #002949;
  padding: 0 32px;
  border-radius: 10px;
  transition: 0.4s;
}

@media(min-width:768px){
  .support_section .support_contact_link:hover{
    transform: scale(0.9);
  }
}


.support_section .support_contact_link span {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  color: #feffff;
}

.support_section .support_contact_link .radi {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background-color: #c5e1f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support_section .support_contact_link .radi img {
  width: 14px;
}

.support_section .radi_title {
  margin-bottom: 40px;
  position: relative;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: left;
  padding-left: 30px;
  
}

.support_section .radi_title_flex{
  display: flex;
  align-items: center;
}

.support_section .radi_title .budget_text{
  height:28px;
  margin-right: 6px;
}

.support_section .radi_title::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: solid 2px #002949;
  position: absolute;
  left: 0;
  top: 7px;
}

.support_section .support_flex_block {
  margin-bottom: 80px;
  display: flex;
  align-items: center;
}

.support_section .support_flex_block .thumb {
  position: relative;
  width: 630px;
  height:410px;
}

.support_section .support_flex_block .thumb::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 3px solid rgba(185, 176, 146, 1);
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: -1;
}

.support_section .support_flex_block .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.support_section .support_flex_block .thumb .play{
  position: absolute;
  z-index: 3;
  top:0;
  left:0;
  width:100%;
  height:100%;
  /* pointer-events: none; */
  transition: 0.7s;
  cursor: pointer;
}

.support_section .support_flex_block .thumb .play.vanish{
  opacity: 0;
  pointer-events: none;
}

.support_section .support_flex_block .thumb .play_relative{
  width:100%;
  height:100%;
  position: relative;
}

.support_section .support_flex_block .thumb .play_relative{
  width:100%;
  height:100%;
  position: relative;
}

.support_section .support_flex_block .thumb .radi{
  position: absolute;
  width:104px;
  height:104px;
  border-radius: 50%;
  z-index: 7;
  background-color: rgba(0,0,0,0.7);
  top:0;
  left:0;
  right:0;
  bottom:0;
  margin:auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.support_section .support_flex_block .thumb .radi span{
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 0 24px 40px;
  border-color: transparent transparent transparent #fff;
  margin-left: 10px;
}

.support_section .support_flex_block .thumb iframe{
  width:100%;
  height:100%;
  display: block;
  border-radius: 10px;
}

.support_section .support_flex_block .text_area {
  width: calc(100% - 630px);
  padding-left: 48px;
}

.support_section .support_flex_block .support_contact_link{
  margin:24px auto 0;
}

.support_section .support_flex_block .support_contact_link span {
  font-size: 22px!important;
  font-weight: bold;
}

.support_section .support_flex_block .text_area .support_block_title {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: left;
}

.support_section .support_flex_block .text_area .support_block_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.support_section .support_flex_block .text_area .support_block_text span {
  font-size: 16px;
  letter-spacing: 0.06em;
}

.support_section .support_flex_block .text_area .support_block_text span.big {
  font-size: 28px;
  line-height: 1;
  display: inline-block;
}

.support_section .support_flex_block.reverse {
  flex-direction: row-reverse;
}

.support_section .support_flex_block.reverse .thumb::before {
  left: auto;
  right: -20px;
}

.support_section .support_flex_block.reverse .text_area {
  width: calc(100% - 630px);
  padding-right: 48px;
  padding-left: 0;
}

.support_section02 {
  padding-top: 112px;
  padding-bottom: 140px;
}

.support_section02 .common_title_set {
  margin-bottom: 64px;
}

.support_section02 .p01 {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  margin-bottom: 96px;
}

.support_section02 .tab_flex {
  display: flex;
  justify-content: space-between;
}

.support_section02 .tab_flex .tab {
  width: 230px;
  height: 70px;
  position: relative;
  border-radius: 10px;
  background-color: #002949;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  transition: 0.4s;
}

@media(min-width:768px){
  .support_section02 .tab_flex .tab:hover{
    transform: scale(0.9);
  }
}


.support_section02 .tab_flex .tab .radi {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c5e1f0;
  border-radius: 50%;
}

.support_section02 .tab_flex .tab .radi img {
  width: 7px;
}

.support_section03 {
  padding-bottom: 140px;
}

.support_section03 .mainte01 {
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.support_section03 ul {
  display: flex;
  flex-wrap: wrap;
}

.support_section03 ul li {
  width: 280px;
  margin-right: 26px;
  margin-bottom: 40px;
}

.support_section03 ul li:nth-child(4n) {
  margin-right: 0;
}

.support_section03 ul li img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 16px;
}

.support_section03 ul li .p01 {
  font-weight: bold;
  line-height: 1.5;
}

.support_section03 ul li .p02 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}

.support_section03 ul li .p03{
  font-size: 14px;
  font-weight: 500;
}

.support_section03 .p04{
  margin-top: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.support_section04 {
  position: relative;
  padding-bottom: 140px;
}

.support_section04 .bg {
  height: calc(100% + 370px);
  top: -200px;
  z-index: -10;
}

.support_section04 .warranty_text01 {
  display: flex;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 64px;
}

.support_section04 .color_box {
  padding: 64px 48px;
  border-radius: 3px;
  border: solid 2px #002949;
  background-color: #dbeffa;
}

.support_section04 .color_box .img_frame {
  margin-bottom: 56px;
}

.support_section04 .color_box .img_frame img {
  width: 100%;
}

.support_section04 .color_box table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 40px;
}

.support_section04 .color_box table th,
.support_section04 .color_box table td {
  border: 3px solid #002949;
}

.support_section04 .color_box table th {
  background-color: #c5e1f0;
  text-align: center;
}

.support_section04 .color_box table thead th {
  padding: 16px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.28;
}

.support_section04 .color_box table thead th:first-child {
  width: 22.5%;
}

.support_section04 .color_box table thead th:last-child {
  width: 77.5%;
}

.support_section04 .color_box table tbody th {
  padding: 16px;
  font-size: 18px;
}

.support_section04 .color_box table tbody td {
  padding: 16px 56px;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 500;
}

.support_section04 .color_box table tbody td span {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.75;
}

.support_section04 .color_box .warranty_text02 {
  font-weight: 500;
  line-height: 1.9;
  margin-bottom: 12px;
}

.support_section04 .color_box .warranty_text03 {
  font-weight: 500;
  line-height: 1.5;
}

.support_section05 {
  padding-bottom: 132px;
}

.support_section05 .test01 {
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.support_section05 table {
  /* table-layout: fixed; */
  border-collapse: collapse;
  width: 100%;
  
}

.support_section05 table th,
.support_section05 table td {
  border: 2px solid #002949;
  text-align: center;
}

.support_section05 table th {
  background-color: #c5e1f0;
}

.support_section05 table thead th {
  width: 155px;
  padding-top: 12px;
  height: 130px;
}

.support_section05 table thead th:first-child {
  width: calc(100% - 775px);
  position: relative;
  overflow: hidden;
}

.support_section05 table thead th:first-child::before {
  content: "";
  width: 200%;
  height: 2px;
  background-color: #002949;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(17.6deg);
  transform-origin: 0 0;
}

.support_section05 table thead th span {
  position: absolute;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
}

.support_section05 table thead th .span01 {
  top: 30px;
  right: 30px;
}

.support_section05 table thead th .span02 {
  bottom: 30px;
  left: 30px;
}

.support_section05 table tbody th {
  font-size: 20px;
  font-weight: bold;
  height: 64px;
}

.support_section05 table tbody th.verti{
  width:50px;
}

.support_section05 table tbody th.wide{
  width:340px
}

.support_section05 table tbody td {
  font-size: 22px;
  font-weight: bold;
}

.support_section05 table tbody td.td_left{
  padding:0 16px;
  text-align: left;
  font-size: 20px;
}

.support_section05 table .car_title {
  text-align: center;
  font-weight: bold;
  line-height: 1;
}

.support_section05 table .car {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.support_section05 table .car01 img {
  width: 86px;
}
.support_section05 table .car02 img {
  width: 133px;
}
.support_section05 table .car03 img {
  width: 123px;
}
.support_section05 table .car04 img {
  width: 106px;
}
.support_section05 table .car05 img {
  width: 121px;
}


.support_section05 .table_text{
  margin-top: 24px;
  margin-bottom: 88px;
  line-height: 1.8;
  font-weight: 500;
}


.support_section05 .docu_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 72px;
}

.support_section05 .docu_block {
  width: 560px;
  height: 313px;
  padding: 88px 54px 0 40px;
  position: relative;
  border-radius: 10px;
  border: solid 3px #002949;
  margin-bottom: 64px;
}

.support_section05 .docu_block .docu_title {
  position: absolute;
  width: 362px;
  height: 53px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  background-image: url("../img/support/test_title_bg.png");
  left: 0;
  right: 0;
  top: -20px;
  margin: auto;
}

.support_section05 .docu_block .docu_flex {
  display: flex;
}
.support_section05 .docu_block .docu_img {
  width: 230px;
}
.support_section05 .docu_block .docu_img img {
  width: 100%;
}

.support_section05 .docu_block .docu_text {
  width: calc(100% - 230px);
  padding-left: 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.44;
}

.support_section05 .test02 {
  display: flex;
  justify-content: center;
  margin-bottom: 88px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: -32px;
}

.support_section05 .flow_list {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.support_section05 .flow_list li {
  width: 205px;
}

.support_section05 .flow_list li .radi {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: #c5e1ef;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 8px;
}

.support_section05 .flow_list li .radi .step {
  position: absolute;
  width: 100%;
  left: 0;
  top: -20px;
  text-align: center;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
}

.support_section05 .flow_list li .radi .step span {
  font-size: 32px;
}

.support_section05 .flow_list li .radi .flow01 {
  width: 33.125%;
}
.support_section05 .flow_list li .radi .flow02 {
  width: 63.75%;
}
.support_section05 .flow_list li .radi .flow03 {
  width: 35.625%;
}
.support_section05 .flow_list li .radi .flow04 {
  width: 45%;
}
.support_section05 .flow_list li .radi .flow05 {
  width: 63.75%;
}

.support_section05 .flow_list li p {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
  white-space: nowrap;
}

.support_section05 .flow_list li.arrow {
  width: 20px;
  padding-top: 52px;
}
.support_section05 .flow_list li.arrow img {
  width: 100%;
}

.support_section06 {
  position: relative;
}

.support_section06 .bg {
  height: calc(100% + 550px);
  top: -280px;
  z-index: -10;
  object-fit: cover;
}

.support_section06 .repair01 {
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.support_section06 .repair_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
}

.support_section06 .repair_flex .repair_block {
  width: 240px;
  position: relative;
}

.support_section06 .repair_flex .repair_block img {
  width: 100%;
  border-radius: 10px;
}

.support_section06 .repair_flex .repair_block .before_text {
  position: absolute;
  left: 0;
  top: -18px;
  width: 108px;
  height: 36px;
  background-color: #002f54;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
}
.support_section06 .repair_flex .repair_block .after_text {
  position: absolute;
  left: 0;
  top: -18px;
  width: 108px;
  height: 36px;
  background-color: #880a23;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
}

.support_section06 .repair_flex .repair_arrow {
  width: 33px;
}

.support_section06 .repair_flex .repair_arrow img {
  width: 100%;
}

.support_section06 .repair_flex .repair_big_block {
  width: 500px;
  position: relative;
}

.support_section06 .repair_flex .repair_big_block img {
  width: 100%;
  border-radius: 20px;
}

.support_section06 .repair_flex .repair_big_block .before_text {
  position: absolute;
  left: 0;
  top: -21px;
  width: 140px;
  height: 42px;
  background-color: #002f54;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
}
.support_section06 .repair_flex .repair_big_block .after_text {
  position: absolute;
  left: 0;
  top: -21px;
  width: 140px;
  height: 42px;
  background-color: #880a23;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
}

.support_section06 .repair_flex .repair_big_arrow {
  width: 43px;
}

.support_section06 .repair_flex .repair_big_arrow img {
  width: 100%;
}

.support_section06 .flex01 {
  display: flex;
  justify-content: space-between;
  margin-top: 120px;
  margin-bottom: 88px;
}

.support_section06 .flex01 .left,
.support_section06 .flex01 .right {
  width: 550px;
}

.support_section06 .repair02 {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.support_section06 .flex02 {
  margin-bottom: 88px;
}

.support_section06 .repair03 {
  
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06em;
}

.support_section06 .flex03 {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
}

.support_section06 .flex03 .left,
.support_section06 .flex03 .right {
  width: 550px;
}

.support_section06 .dia_title {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: left;
  padding-left: 24px;
}

.support_section06 .dia_title::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #002f54;
  position: absolute;
  left: 0;
  top: 7px;
  transform: rotateZ(45deg);
  display: block;
}

.support_section07 {
  padding-top: 140px;
  padding-bottom: 140px;
}

.support_section07 .other01 {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
}

.support_section07 .other02 {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 40px;
}

.support_section07 .other_list {
  display: flex;
  justify-content: space-between;
  
}

.support_section07 .other_list li {
  width: 280px;
}

.support_section07 .other_list li img {
  width: 100%;
  margin-bottom: 16px;
}

.support_section07 .other_list li .p01 {
  font-weight: bold;
  line-height: 1.5;
}

.support_section07 .other_list li .p02 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}

.support_section07 .other_list li .p03{
  font-weight: 500;
  font-size: 12px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.support_section07 .p04{
  margin-top: 24px;
  margin-bottom: 72px;
  font-weight: 500;
  line-height: 1.5;
}

.support_section07 img.aioi {
  width: 226px;
  margin: 24px auto 0;
}
.support_section08 {
  padding-bottom: 140px;
}

/*
------------------------------------------------------------------------
会社情報
------------------------------------------------------------------------
*/

.company_section02 {
  padding-top: 140px;
  padding-bottom: 140px;
}

.company_section02 .common_title_set {
  margin-bottom: 48px;
}


.company_section02 .greeting_text02 {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.company_section02 .greeting_text03 {
  display: flex;
  justify-content: flex-end;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.company_section02 .greeting_text04 {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.company_section02 .greeting_text04 img {
  width: 104px;
  margin-left: 16px;
}

.company_section02 .vision_box{
  position: relative;
  padding:72px 48px;
  margin-top: 160px;
  overflow: hidden;
}

.company_section02 .vision_box::before{
  content:"";
  width:100%;
  height:100%;
  background-color: #fff;
  position: absolute;
  left:0;
  top:0;
  z-index:-4;
}

.company_section02 .vision_box .vision_bg{
  position: absolute;
  right:0;
  top:0;
  z-index:-2;
  height:100%;
}

.company_section02 .vision_block01{
  margin-bottom: 56px;
}

.company_section02 .vision_block .vision_title{
  padding-left: 48px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  position: relative;
  margin-bottom: 24px;
}

.company_section02 .vision_block .vision_title::before{
  content:"";
  width:30px;
  height:3px;
  background-color: #880a23;
  position: absolute;
  left:0;
  top:0;
  bottom:0;
  margin:auto;
}

.company_section02 .vision_block .vision_text{
  font-size: 18px;
  font-weight: bold;
  line-height:2;
}

.company_section03 .white_box {
  position: relative;
  padding: 48px 32px 56px;
}

.company_section03 .white_box::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}



.company_section03 .info_block {
  display: flex;
  padding: 16px 0;
}

.company_section03 .info_block:nth-child(odd) {
  background-color: #dbeffa;
}

.company_section03 .info_block .left {
  width: 280px;
  padding-left: 20px;
}

.company_section03 .info_block .left p {
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  font-size: 22px;
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.company_section03 .info_block .right {
  width: calc(100% - 280px);
}

.company_section03 .info_block .right p {
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  font-size: 22px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.company_section03 .info_block .right p a {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #002949;
}

.company_section03 .info_block .right p .tel {
  pointer-events: none;
}

.company_section03 .info_block .right p.fax a{
  color: #002949;
  pointer-events: none;
}

.company_section04 {
  padding-top: 160px;
  padding-bottom: 172px;
}

.company_section04 .common_title_set {
  margin-bottom: 56px;
}

.company_section04 .flex {
  display: flex;
  margin-bottom: 40px;
}

.company_section04 .flex .left,
.company_section04 .flex .right {
  width: 50%;
}

.company_section04 .left iframe {
  display: block;
  width: 100%;
  height: 380px;
  border-radius: 10px;
}

.company_section04 .flex .right {
  padding-left: 5%;
  padding-right: 3.3%;
  padding-top: 40px;
}

.company_section04 .right .p01 {
  padding-left: 20px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 6px;
  position: relative;
}

.company_section04 .right .p01::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../img/common/dia.png");
  position: absolute;
  top: 2px;
  left: 0;
}

.company_section04 .right .access_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.company_section04 .right .p02 {
  margin-bottom: 40px;
}

.company_section04 .right .access_block {
  margin-bottom: 16px;
}

.company_section04 .right .access_block .line {
  width: 100%;
  margin: 6px 0;
}

.company_section04 .right .access_block li {
  position: relative;
  padding-left: 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 4px;
}

.company_section04 .right .access_block li::before {
  content: "・";
  color: #002949;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  position: absolute;
  left: 0;
  top: 0;
}

.company_section04 .right .access_block li:last-child {
  margin-bottom: 0;
}

.company_section04 .access_other {
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.company_section05 {
  padding-bottom: 180px;
}
/*
------------------------------------------------------------------------
バジェットホールディングスの特徴
------------------------------------------------------------------------
*/

main.feature_main .common_page_mv_section .title_block .page_title_text {
  font-size: 4.16vw;
}

.feature_section02 {
  padding-top: 140px;
  padding-bottom: 172px;
}

.feature_section02 .p01 {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 88px;
}

.feature_section02 .common_title_set {
  margin-bottom: 56px;
}

.feature_section02 .reason_block {
  position: relative;

  margin-bottom: 56px;
}

.feature_section02 .reason_block:last-child {
  margin-bottom: 0;
}

.feature_section02 .reason_block .bg {
  position: absolute;
  width: 50%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.feature_section02 .reason_block .pic {
  left: 0;
}
.feature_section02 .reason_block .ila {
  right: 0;
}

.feature_section02 .reason_container {
  max-width: 1200px;
  height: 510px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.feature_section02 .reason_block .white_box {
  position: relative;
  width: 740px;
  min-height: 430px;
  background-color: #fff;
  padding: 24px 120px 24px 88px;
  display: flex;
  align-items: center;
}

.feature_section02 .reason_block .num {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 100px;
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  font-weight: 900;
  color: #880a23;
  line-height: 0.6;
}

.feature_section02 .reason_block .reason_title {
  margin-bottom: 24px;
  font-size: 32px;
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  font-weight: bold;
  line-height: 1.2;
}

.feature_section02 .reason_block .reason_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.feature_section02 .reason_block:nth-child(even) .pic {
  right: 0;
  left: auto;
}
.feature_section02 .reason_block:nth-child(even) .ila {
  left: 0;
  right: auto;
}

.feature_section02 .reason_block:nth-child(even) .reason_container {
  justify-content: flex-start;
}

.feature_section02 .reason_block:nth-child(even) .white_box {
  padding: 24px 88px 24px 120px;
}

.feature_section02 .reason_block:nth-child(even) .num {
  left: 0;
  right: auto;
}

.feature_section03 {
  padding-bottom: 172px;
}

/*
------------------------------------------------------------------------
CSR・SDGsの取り組み
------------------------------------------------------------------------
*/

.csr_section .csr_title_flex {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.csr_section .csr_title_flex .num {
  margin-right: 32px;
  font-size: 60px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #880a23;
}

.csr_section .csr_title_flex .title_text {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.02em;
}

.csr_section02 {
  padding: 160px 0;
}

.csr_section02 .common_title_set {
  margin-bottom: 48px;
}

.csr_section02 .csr01 {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  margin-bottom: 140px;
}

.csr_section02 .csr02 {
  margin-bottom: 56px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.csr_section02 .swiper_block {
  margin-bottom: 160px;
  position: relative;
}

.csr_section02 .swiper_block .swiper_prev,
.csr_section02 .swiper_block .swiper_next {
  position: absolute;
  width: 70px;
  height: 70px;
  z-index: 10;
  top: 0;
  bottom: 0;
  margin: auto;
}

.csr_section02 .swiper_block .swiper_prev {
  left: 72px;
}

.csr_section02 .swiper_block .swiper_next {
  right: 72px;
}

.csr_section02 .swiper-container {
  max-width: 830px;
  margin: 0 auto;
}

.csr_section02 .swiper-slide {
  width: 100%;
}

.csr_section02 .swiper-slide .card {
  width: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.csr_section02 .swiper-slide .card p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  background-color: #002949;
}

.csr_section02 .swiper-slide img {
  width: 100%;
  height: 570px;
  border-radius: 10px;
  object-fit: cover;
}

.csr_section02 .csr03 {
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.csr_section02 ul {
  display: flex;
  justify-content: space-between;
}

.csr_section02 ul li {
  width: 48.5%;
}

.csr_section02 ul li img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 16px;
}

.csr_section02 ul li p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44;
}

.csr_section03 {
  padding-bottom: 40px;
}

.csr_section03 .common_title_set {
  margin-bottom: 56px;
}

.csr_section03 .sdg01 {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  margin-bottom: 64px;
}

.csr_section03 .img_frame {
  margin-bottom: 120px;
}

.csr_section03 .img_frame img {
  width: 100%;
}

.csr_section03 .color_box {
  padding: 64px 100px;
  background-color: rgba(255, 255, 255, 0.5);
  margin-bottom: 140px;
}

.csr_section03 .bar_title {
  position: relative;
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  padding-left: 48px;
}

.csr_section03 .bar_title::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 0.5px;
  background-color: #880a23;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.csr_section03 .block_title {
  padding-left: 20px;
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  position: relative;
}

.csr_section03 .block_title::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 0.5px;
  background-color: #880a23;
  position: absolute;
  top: 7px;
  left: 0;
}

.csr_section03 .flex {
  display: flex;
  justify-content: space-between;
}

.csr_section03 .flex .left {
  width: calc(100% - 300px);
  padding-right: 40px;
}

.csr_section03 .flex .right {
  width: 300px;
}

.csr_section03 .flex .right img {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 10px;
}

.csr_section03 .check_list {
  margin-bottom: 32px;
}

.csr_section03 .check_list li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 16px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}

.csr_section03 .check_list li::before {
  content: "";
  width: 14px;
  height: 15px;
  background-image: url("../img/csr/check.png");
  position: absolute;
  left: 0;
  top: 6px;
}

.csr_section03 .check_list li:last-child {
  margin-bottom: 0;
}

.csr_section03 .img_list {
  display: flex;
}

.csr_section03 .img_list li {
  width: 140px;
  margin-right: 12px;
}
.csr_section03 .img_list li:last-child {
  margin-right: 0;
}

.csr_section03 .img_list li img {
  width: 100%;
}

.csr_section03 .p01 {
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.csr_section03 .border {
  height: 1px;
  border-radius: 0.5px;
  background-color: #002949;
  opacity: 0.2;
  margin: 56px 0;
}

.csr_section04 {
  padding-bottom: 140px;
}


/*
------------------------------------------------------------------------
バジェットホールディングスの歴史
------------------------------------------------------------------------
*/

.history_section02{
  padding-top: 170px;
  padding-bottom: 180px;
}

.history_section02 .history01{
  margin-bottom: 180px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  display: flex;
  justify-content: center;
}

.history_section02 .history_list{
  position: relative;
  
}

.history_section02 .history_list::before{
  content:"";
  width:3px;
  height:calc(100% - 8px);
  background-color:#003863;
  position: absolute;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  z-index:-3;
}

.history_section02 .history_list::after{
  content:"";
  width:0;
  height:64px;
  border-left: 3px dotted #003863;
  position: absolute;
  bottom:-64px;
  left:0;
  right:0;
  margin:auto;
}

.history_section02 .history_block{
  display: flex;
  justify-content: center;
  margin-bottom: 132px;
  position: relative;
  align-items: flex-start;
}

.history_section02 .history_block .center{
  position: absolute;
  width:28px;
  height:28px;
  border-radius: 50%;
  background-color: #fff;
  border:8px solid #003863;
  top:0;
  left:0;
  right:0;
  margin:auto;
}


.history_section02 .history_block .text_area{
  width:50%;
  padding-right: 80px;
}

.history_section02 .history_block .text_area .num{
  margin-bottom: 48px;
  font-size: 80px;
  font-weight: 900;
  line-height: 0.63;
  color: #003863;
  text-align: right;
  padding-right: 48px;
}

.history_section02 .history_block .text_area ul li{
  display: flex;
  font-size: 18px;
  font-weight: 600;
  line-height:1.6;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.history_section02 .history_block .text_area ul li:last-child{
  margin-bottom: 0;
}

.history_section02 .history_block .text_area ul li span{
  flex-shrink: 0;
  color:#880a23;
  width:90px;
}

.history_section02 .history_block .img_area{
  width:50%;
  display: flex;
  align-items: center;
}

.history_section02 .history_block .img_area .border{
  width:100%;
  height:3px;
  background-color: #003863;
}

.history_section02 .history_block .img_area .thumb{
  flex-shrink: 0;
  width: 428px;
  height: 280px;
  border-radius: 10px;
  position: relative;
}

.history_section02 .history_block .img_area .thumb::after{
  content:"";
  width:100%;
  height:100%;
  border-radius: 10px;
  border: 3px solid rgba(185, 176, 146, 1);
  position: absolute;
  bottom: -12px;
  right: -12px;
  z-index: -1;
}

.history_section02 .history_block .img_area .thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  border-radius: 10px;
}

.history_section02 .history_block:nth-child(even){
  flex-direction: row-reverse;
}

.history_section02 .history_block:nth-child(even) .text_area{
  padding-right: 0;
  padding-left: 80px;
}

.history_section02 .history_block:nth-child(even) .text_area .num{
  text-align: left;
  padding-right: 0;
}

.history_section02 .history_block:nth-child(even) .img_area{
  flex-direction: row-reverse;
}

.history_section02 .history_block:nth-child(even) .img_area .thumb::after{
  right: auto;
  left:-12px;
}


.history_section03{
  padding-bottom: 180px;
}
/*
------------------------------------------------------------------------
FAQ
------------------------------------------------------------------------
*/

main.faq_main .common_page_mv_section .title_block {
  left: 9.375vw;
}

main.faq_main .common_page_mv_section .title_block .en_title {
  height: 5.365vw;
  margin-bottom: 0;
}

.faq_section02 {
  padding-top: 120px;
  padding-bottom: 172px;
}

.faq_section02 .p01 {
  display: flex;
  justify-content: center;
  margin-bottom: 112px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06em;
}

.faq_section02 .anchor_list {
  display: flex;
  flex-wrap: wrap;
}

.faq_section02 .anchor_list .link {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 380px;
  height: 70px;
  margin-right: 30px;
  margin-bottom: 16px;
  position: relative;
  background-color: #002949;
  border-radius: 6px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  transition: 0.4s;
}

@media(min-width:768px){
  .faq_section02 .anchor_list .link:hover{
    transform: scale(0.9);
  }
}


.faq_section02 .anchor_list .link:nth-child(3n) {
  margin-right: 0;
}

.faq_section02 .anchor_list .link .radi {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #c5e1f0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.faq_section02 .anchor_list .link .radi img {
  width: 7px;
}

.faq_section02 .common_title_set {
  margin-bottom: 32px;
}

.faq_section02 .faq_area {
  margin-top: 140px;
}

.faq_section02 .faq_block .question_area {
  position: relative;
  padding: 24px 56px;
  border-bottom: 1px solid #002949;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  cursor: pointer;
  transition: 0.4s;
}

.faq_section02 .faq_block .question_area::before {
  content: "Q";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #c5e1f0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #002949;
  position: absolute;
  left: 8px;
  top: 22px;
}

.faq_section02 .faq_block .question_area::after {
  content: "";
  width: 18px;
  height: 10px;
  background-image: url("../img/faq/faq_arrow.png");
  position: absolute;
  right: 12px;
  top: 40px;
  transition: 0.4s;
}

.faq_section02 .faq_block .question_area.active {
  background-color: #c5e1f0;
}

.faq_section02 .faq_block .question_area:hover {
  background-color: #c5e1f0;
}

.faq_section02 .faq_block .question_area.active::after {
  transform: rotate(180deg);
}

.faq_section02 .faq_block .answer_area {
  position: relative;
  padding: 24px 56px;
  border-bottom: 1px solid #002949;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  display: none;
}

.faq_section02 .faq_block .answer_area a {
  color: #002949;
  text-decoration: underline;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

.faq_section02 .faq_block .answer_area::before {
  content: "A";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #c5e1f0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #880a23;
  position: absolute;
  left: 8px;
  top: 22px;
}

.faq_section02 .faq_block .img_flex {
  display: flex;
  margin-top: 16px;
}

.faq_section02 .faq_block .img_flex li {
  margin-right: 24px;
  width: 130px;
}

.faq_section02 .faq_block .img_flex li img {
  width: 120px;
  margin: 0 auto 12px;
}

.faq_section02 .faq_block .img_flex li p {
  font-size: 12px;
}

/*
------------------------------------------------------------------------
お問い合わせ
------------------------------------------------------------------------
*/

.contact_section02 {
  padding-top: 120px;
  padding-bottom: 172px;
}

.contact_section02 .contact_info {
  display: flex;
  justify-content: center;
  margin-bottom: 88px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.contact_section02 .step_list {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.contact_section02 .step_list .step {
  width: 33.3%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #002949;
}

.contact_section02 .step_list .step img {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
}

.contact_section02 .step_list .step .text01 {
  text-align: center;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}

.contact_section02 .step_list .step .text01 span {
  font-size: 18px;
}

.contact_section02 .white_box {
  position: relative;
  padding: 72px 80px 56px;
}

.contact_section02 .white_box::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}

.contact_section02 .contact_block .form_line {
  display: flex;
  padding: 20px 0;
  border-top: 1px solid #002949;
}

.contact_section02 .contact_block .left {
  width: 300px;
  padding-top: 10px;
}

.contact_section02 .contact_block .title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}

.contact_section02 .contact_block .title.must::before {
  content: "必須";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 22px;
  background-color: #880a23;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  position: absolute;
  right: -56px;
  top: 2px;
}

.contact_section02 .contact_block .title.free::before {
  content: "任意";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 22px;
  background-color: #898989;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  position: absolute;
  right: -56px;
  top: 2px;
}

.contact_section02 .contact_block .right {
  width: calc(100% - 300px);
}

.contact_section02 .contact_block .text_input {
  border: none;
  background: none;
  display: block;
  width: 100%;
  height: 45px;
  background-color: #eeeeee;
  border-radius: 3px;
  padding: 0 16px;
  color: #002949;
  font-size: 18px;
  font-weight: 500;
}

.contact_section02 .contact_block .calendar_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact_section02 .contact_block .calendar_flex01 {
  margin-bottom: 16px;
}

.contact_section02 .contact_block .calendar_flex .text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.contact_section02 .contact_block .calndar_box {
  width: 235px;
  position: relative;
}

.contact_section02 .contact_block .calndar_box::after {
  content: "";
  width: 21px;
  height: 18px;
  background-image: url("../img/contact/icon_calendar.png");
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
  pointer-events: none;
}

.contact_section02 .contact_block .calndar_box input {
  border: none;
  background: none;
  display: block;
  width: 100%;
  height: 45px;
  background-color: #eeeeee;
  border-radius: 3px;
  padding: 0 16px;
  color: #002949;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}

.contact_section02 .contact_block .time_box {
  width: 160px;
  position: relative;
}

.contact_section02 .contact_block .time_box::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 7px 0 7px;
  border-color: #002949 transparent transparent transparent;
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
  pointer-events: none;
}

.contact_section02 .contact_block .time_box select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: none;
  display: block;
  width: 100%;
  height: 45px;
  background-color: #eeeeee;
  border-radius: 3px;
  padding: 0 16px;
  color: #002949;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}

.contact_section02 .contact_block textarea {
  border: none;
  background: none;
  display: block;
  width: 100%;
  height: 300px;
  background-color: #eeeeee;
  border-radius: 3px;
  padding: 16px;
  color: #002949;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.contact_section02 .contact_block .radio_area {
  font-weight: 500;
}

.contact_section02 .contact_block .privacy_text {
  display: flex;
  justify-content: center;
  margin: 48px 0 12px;
}

.contact_section02 .contact_block .checkbox_area {
  margin-bottom: 36px;
}

.contact_section02 .contact_block .checkbox_area {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact_section02 .contact_block .checkbox_area label span {
  display: none;
}

.contact_section02 .contact_block .checkbox_area a {
  text-decoration: underline;
  color: #002949;
  font-weight: 500;
}

.contact_section02 .contact_block .submit_frame {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.contact_section02 .contact_block .submit_frame::after {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url("../img/contact/submit_arrow.png");
  position: absolute;
  right: 24px;
  top: 20px;
  pointer-events: none;
}

.contact_section02 .contact_block .submit_frame .submit {
  border: none;
  background: none;
  cursor: pointer;
  width: 400px;
  height: 80px;
  background: #002949;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  border-radius: 8px;
}

.contact_section02 .contact_block .finish_text {
  width: fit-content;
  margin: 0 auto;
}

.contact_section02 .contact_block .return {
  display: block;
  width: fit-content;
  margin: 16px auto;
  border: none;
  background: none;
  cursor: pointer;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #002949;
  padding: 0 4px 4px;
  border-bottom: 1px solid #002949;
}

.contact_section02 .contact_block .recaptcha_text{
  width:fit-content;
  margin:32px auto 0;
  line-height: 1.5;
}

.contact_section02 .contact_block .recaptcha_text a{
  color:#002949;
  text-decoration: underline;
}

.grecaptcha-badge{
  opacity: 0;
  pointer-events: none;
}

/*
------------------------------------------------------------------------
確認画面
------------------------------------------------------------------------
*/

.contact_section02 .contact_block .mw_wp_form_confirm .left {
  padding-top: 0;
}

.contact_section02 .contact_block .mw_wp_form_confirm .calndar_box::after {
  content: none;
}

.contact_section02 .contact_block .mw_wp_form_confirm .time_box::after {
  content: none;
}

.contact_section02 .contact_block .mw_wp_form_confirm .recaptcha_text{
  display: none;
}

/*
------------------------------------------------------------------------
新着情報一覧
------------------------------------------------------------------------
*/

.newslist_section02 {
  padding-top: 120px;
  padding-bottom: 172px;
}

/*
------------------------------------------------------------------------
新着情報詳細
------------------------------------------------------------------------
*/

.news_section02 {
  padding-top: 120px;
  padding-bottom: 172px;
}

.news_section02 .single_frame {
  max-width: 800px;
  margin: 0 auto;
}

.news_section02 .single_frame .category_block {
  min-width: 100px;
  width: fit-content;
  height: 30px;
  padding: 0 8px;
  border-radius: 15px;
  background-color: #003965;
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fefefe;
  margin-bottom: 24px;
}

.news_section02 .info_flex {
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #002949;
  margin-bottom: 32px;
}

.news_section02 .info_flex .news_title {
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  font-size: 20px;
  line-height: 1.3;
  padding-right: 24px;
}

.news_section02 .single_block {
  margin-bottom: 80px;
}

.news_section02 .single_block p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin: 24px 0;
}

.news_section02 .single_block p a {
  color: #002949;
  text-decoration: underline;
}

.news_section02 .single_block img.aligncenter {
  margin: 0 auto;
}

.news_section02 .single_block img.alignright {
  margin: 0 0 0 auto;
}

.news_section02 .link_flex {
  display: flex;
  justify-content: center;
}

.news_section02 .link_flex .link_home {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 240px;
  height: 60px;
  position: relative;
  background-color: #002949;
  border-radius: 6px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin: 0 24px;
}

.news_section02 .link_flex .link a {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 180px;
  height: 60px;
  position: relative;
  background-color: #002949;
  border-radius: 6px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

.news_section02 .link_flex .link a::after {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.news_section02 .link_flex .link_prev a::after {
  background-image: url("../img/news/news_prev.png");
  left: 16px;
}

.news_section02 .link_flex .link_next a::after {
  background-image: url("../img/news/news_next.png");
  right: 16px;
}

/*
------------------------------------------------------------------------
実績一覧
------------------------------------------------------------------------
*/

.common_page_mv_section .mv.sale{
  opacity:0.8;
}

.achievementlist_section02 {
  padding-top: 120px;
  padding-bottom: 172px;
}

.achievementlist_section02 .p01 {
  text-align: center;
  font-size: 54px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 72px;
}

.achievementlist_section02 .p01 span {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 8px;
  line-height: 1;
  color: #fff;

  transform: skewX(-13deg);
}

.achievementlist_section02 .p01 span.red {
  background-color: #880a23;
}

.achievementlist_section02 .p01 span.blue {
  background-color: rgba(0, 57, 101);
}

.achievementlist_section02 .search_flex {
  display: flex;
  justify-content: center;
  margin-bottom: 96px;
}

.achievementlist_section02 .search_flex .keyword {
  border: none;
  background: none;
  display: block;
  width: 700px;
  height: 80px;
  padding: 0 32px;
  border: 2px solid #003965;
  background-color: rgba(0, 57, 101, 0.05);
  border-radius: 4px 0 0 4px;
  font-size: 24px;
  font-weight: 500;
}

.achievementlist_section02 .search_flex button {
  border: none;
  background: none;
  cursor: pointer;
  width: 130px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #003965;
  border-left: none;
  background-color: rgba(0, 57, 101, 0.05);
  border-radius: 0 4px 4px 0;
}

.achievementlist_section02 .search_flex button img {
  width: 36px;
}

.achievementlist_section02 .work_list {
  display: flex;
  flex-wrap: wrap;
}

.achievementlist_section02 .work_list li {
  width: 280px;
  margin-right: 24px;
  margin-bottom: 64px;
}

.achievementlist_section02 .work_list li:nth-child(4n) {
  margin-right: 0;
}

.achievementlist_section02 .work_list li .link {
  display: block;
  color: #002949;
}

.achievementlist_section02 .work_list li .thumb {
  width: 100%;
  height: 190px;
  margin-bottom: 10px;
}

.achievementlist_section02 .work_list li .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.achievementlist_section02 .work_list li .car_name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.achievementlist_section02 .work_list li .info {
  margin-top: 6px;
  line-height: 1.2;
  font-weight: 700;
}

/*
------------------------------------------------------------------------
実績詳細
------------------------------------------------------------------------
*/

.achievement_section02 {
  padding-top: 120px;
  padding-bottom: 172px;
}

.achievement_section02 .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 160px;
}

.achievement_section02 .left {
  width: 580px;
}

.achievement_section02 .right {
  width: 580px;
}

.achievement_section02 .big_thumb {
  width: 100%;
  height: 390px;
  position: relative;
  margin-bottom: 10px;
}

.achievement_section02 .big_thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  transition: 0.4s;
  opacity: 0;
}

.achievement_section02 .big_thumb img.show {
  opacity: 1;
}

.achievement_section02 .img_flex {
  display: flex;
  justify-content: center;
}

.achievement_section02 .img_flex img {
  width: 130px;
  height: 80px;
  object-fit: cover;
  border-radius: 3px;
  margin: 0 3px;
}

.achievement_section02 .car_title {
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  font-size: 26px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.05em;
  border-bottom: 3px solid rgba(167, 158, 133);
  padding-bottom: 8px;
  margin-bottom: 32px;
}

.achievement_section02 .car_price01 {
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
}

.achievement_section02 .car_price_block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 3px solid rgba(167, 158, 133);
  padding-bottom: 8px;
  margin-bottom: 24px;
}

.achievement_section02 .car_price02 {
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  font-size: 50px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.05em;
  display: flex;
  align-items: flex-end;
  margin-right: 24px;
}

.achievement_section02 .car_price02 span {
  font-size: 40px;
  padding-bottom: 6px;
}

.achievement_section02 .car_price03 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 24px;
}

.achievement_section02 .car_price04 {
  font-size: 38px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.05em;
  display: flex;
  align-items: flex-end;
}

.achievement_section02 .car_price04 span {
  font-size: 30px;
  padding-bottom: 4px;
}

.achievement_section02 .car_price05 {
  padding: 6px 12px 8px;
  background-color: rgba(0, 41, 73);
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.05em;
}

.achievement_section02 .car_price05 span {
  font-size: 26px;
}

.achievement_section02 .car_info {
  line-height: 1.9;
  font-weight: 500;
  margin-bottom: 10px;
}

.achievement_section02 table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}

.achievement_section02 table th {
  width: 25%;
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
  background-color: rgba(0, 41, 73, 0.05);
  border: 1px solid #002949;
}

.achievement_section02 table td {
  width: 75%;
  padding: 0 24px;
  line-height: 1.5;
  border: 1px solid #002949;
}

.achievement_section02 .staff_area {
  margin-bottom: 140px;
}

.achievement_section02 .staff_area .staff_text01 {
  /* font-family: 'Zen Kaku Gothic New', sans-serif; */
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  border-bottom: 3px solid rgba(167, 158, 133);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.achievement_section02 .staff_area .staff_text02 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
}

.achievement_section03 {
  padding-bottom: 160px;
}

.achievement_section03 .banner {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
}

.achievement_section03 .banner img {
  width: 100%;
}

/*
------------------------------------------------------------------------
プライバシーポリシー
------------------------------------------------------------------------
*/

.privacy_section02 {
  padding-top: 120px;
  padding-bottom: 172px;
}

.privacy_section02 .privacy_title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 8px;
}

.privacy_section02 .privacy_text {
  line-height: 1.5;
  margin-bottom: 40px;
}

.privacy_section02 .privacy_text span {
  font-size: 13px;
}

/*
------------------------------------------------------------------------
古物業法に基づく表示
------------------------------------------------------------------------
*/

.antique_section02 {
  padding-top: 120px;
  padding-bottom: 172px;
}


/*
------------------------------------------------------------------------
404
------------------------------------------------------------------------
*/

.page404_section01{
  padding:80px 0 120px;
}

.page404_section01 .p01{
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.page404_section01 .p02{
  display: flex;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}