@charset "UTF-8";
/*===============================

    Reset

================================*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  background-repeat: no-repeat;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/*===============================

    Base

================================*/
html {
  color: #333333;
  font-size: 16px;
}
@media screen and (max-width: 320px) {
  html {
    font-size: 14px;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
}

p {
  line-height: 1.5;
}

a {
  color: #333333;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

.img {
  text-align: center;
}

.inner {
  max-width: 1128px;
  margin: auto;
  padding: 0 14px;
}

/*===============================

    Utility

================================*/
.fixedBgImg {
  position: relative;
}
.fixedBgImg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  background: url(../images/bg.jpg);
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.huti {
  text-shadow: #fff 1px 1px 0, #fff -1px -1px 0, #fff -1px 1px 0, #fff 1px -1px 0, #fff 0px 1px 0, #fff 0 -1px 0, #fff -1px 0 0, #fff 1px 0 0 !important;
}

.txt-center {
  text-align: center;
}

.txt-bold {
  font-weight: bold;
}

.txt-primary-loan {
  color: #2272AB;
}

.hukidashi {
  display: flex;
  justify-content: center;
  font-weight: bold;
  text-align: center;
}
.hukidashi::before, .hukidashi::after {
  content: "";
  display: block;
  width: 0.125rem;
  background-color: #333333;
}
.hukidashi::before {
  transform: rotate(-10deg);
  margin-right: 0.5em;
}
.hukidashi::after {
  transform: rotate(10deg);
  margin-left: 0.5em;
}

.iframeWrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.iframeWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.lock {
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .flexbox-pc {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .tablet {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
/*===============================

    animation

================================*/
.effectFadeIn {
  opacity: 0;
  transition: all 3s;
}
.effectFadeIn.effectScroll {
  opacity: 1;
}

.effectFadeUp {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 1s;
}
.effectFadeUp.effectScroll {
  opacity: 1;
  transform: translate(0, 0);
}

.effectFadeRight {
  opacity: 0;
  transform: translate(45px, 0);
  transition: all 1s;
}
.effectFadeRight.effectScroll {
  opacity: 1;
  transform: translate(0, 0);
}

.effectFadeLeft {
  opacity: 0;
  transform: translate(-45px, 0);
  transition: all 1s;
}
.effectFadeLeft.effectScroll {
  opacity: 1;
  transform: translate(0, 0);
}

.effectZoom {
  transition: all 6s;
}
.effectZoom.effectScroll {
  transform: scale(1.1);
}

.effectMaker {
  font-weight: bold;
  background: linear-gradient(transparent 64%, #ffdc82 50%);
  background-repeat: no-repeat;
  background-size: 200% 100%;
  background-position: 200% 0;
  transition: 2.5s;
}
.effectMaker.effectScroll {
  background-position: 100% 0;
}

.floatingEffect {
  animation: fuwafuwa 3s infinite;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
/*===============================

    Layout

================================*/
/*
    メインコンテンツ上下余白
================================*/
/*
    カラムレイアウト
================================*/
@media screen and (min-width: 769px) {
  .column-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.column-2_main {
  flex: 1;
}
.column-2_side {
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .column-2_side {
    flex: 0 0 250px;
    padding: 0 50px 0 0;
    margin-top: 0;
    padding: 0 0 0 50px;
  }
}

/*
    余白
================================*/
.sc {
  padding: 32px 0;
}
.sc_content {
  margin-top: 2.5rem;
}
@media screen and (min-width: 769px) {
  .sc {
    padding: 60px 0;
  }
}
@media screen and (min-width: 769px) {
  .sc_content {
    margin-top: 6.25rem;
  }
}

/*
    小見出し
================================*/
/*===============================

    Component

================================*/
/*
    サイトヘッダー
================================*/
#siteHeader {
  background-color: #000;
  padding: 0 0 0 14px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
#siteHeader > .flexbox {
  align-items: center;
  justify-content: flex-start;
  align-items: center;
}
#siteHeader > .flexbox .siteName {
  margin-right: auto;
}
#siteHeader .sitelogo {
  width: 70px;
}
#siteHeader .siteName {
  font-size: 24px;
}
@media screen and (min-width: 769px) {
  #siteHeader {
    padding: 4px 14px;
  }
  #siteHeader .sitelogo {
    width: 110px;
  }
}

.gNavi_menu.flexbox {
  align-items: center;
}
.gNavi_menu_item {
  font-size: clamp(12px, 1.12vw, 14px);
  font-weight: bold;
}
.gNavi_menu_item a {
  display: block;
  padding: 1.1428571429em;
  color: #fff;
}
.gNavi_menu_item-tel {
  font-size: 1.2857142857em;
  text-align: center;
}
.gNavi_menu_item-tel a {
  display: block;
  padding: 0 1.1428571429em;
}
.gNavi_menu_item-tel_time {
  font-size: 0.5714285714em;
  font-weight: normal;
}
.gNavi_menu_item-tel_icon::before {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.9em;
  background-image: url(../images/icon_phone.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.2em;
  transform: translateY(1px);
}

.siteHeader_telBtn {
  background-color: #710000;
  border-radius: 100px;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.6666666667em 1em;
  display: flex;
  align-items: center;
  margin-right: 0.6666666667em;
}
.siteHeader_telBtn::before {
  content: "";
  display: block;
  width: 1.6666666667em;
  height: 1.6666666667em;
  background-image: url(../images/icon_phone.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.3333333333em;
}

#siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

#wrap {
  padding-top: 54px;
}
@media screen and (min-width: 769px) {
  #wrap {
    padding-top: 87px;
  }
}

/*
    ドロワーメニュー（sp）
================================*/
#spDrawerToggle {
  width: 54px;
  height: 54px;
  padding: 14px;
}

#spDrawerToggleIcon {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
#spDrawerToggleIcon::before, #spDrawerToggleIcon::after, #spDrawerToggleIcon span {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #FFF;
  position: absolute;
  left: 0;
}
#spDrawerToggleIcon::before {
  top: 0;
}
#spDrawerToggleIcon span {
  top: 50%;
  transform: translateY(-50%);
}
#spDrawerToggleIcon::after {
  bottom: 0;
}
#spDrawerToggleIcon.active::before, #spDrawerToggleIcon.active::after {
  background-color: #FFFFFF;
}
#spDrawerToggleIcon.active::before {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
#spDrawerToggleIcon.active span {
  display: none;
}
#spDrawerToggleIcon.active::after {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(45deg);
}

#spDrawer {
  overflow: auto;
  position: fixed;
  top: 54px;
  left: 0;
  width: 100%;
  height: calc(100% - 54px);
  padding: 1rem 1rem;
  opacity: 0;
  z-index: -99;
  background-color: #EBEBEB;
}
#spDrawer.active {
  opacity: 1;
  z-index: 99;
}

.spDrawer_menu_item a {
  display: block;
  padding: 1em 1em 1em 0;
  font-weight: bold;
  color: #333333;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.spDrawer_menu_item a::after {
  display: block;
  content: "";
  width: 0.4666666667em;
  height: 0.4666666667em;
  transform: rotate(45deg);
  border-right: solid 2px #710000;
  border-top: solid 2px #710000;
}
.spDrawer_menu_item + .spDrawer_menu_item {
  border-top: solid 1px #767676;
}

/*
    バナー
================================*/
.bnr {
  background-color: #F5EDE1;
  padding: 32px 0;
}
@media screen and (min-width: 769px) {
  .bnr {
    padding: 60px 0;
  }
}
.bnr_link {
  text-align: center;
}
.bnr_link img {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  transition: all 0.3s;
}
.bnr_link img:hover {
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.3);
  transform: scale(104%);
}

/*
    オーバレイボタン
================================*/
.overlayBtn {
  background-color: #54a7c8;
  padding: 0.5rem 0.625rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
.overlayBtn > .flexbox {
  justify-content: space-between;
}
.overlayBtn > .flexbox .overlayBtn_item {
  flex: 1;
}
.overlayBtn_item a {
  text-align: center;
  font-weight: bold;
  font-size: 0.625rem;
  color: #181818;
  display: block;
}
.overlayBtn_item a::before {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.4em;
}
.overlayBtn_item-line a::before {
  background-image: url(../images/icon_hukidashi.svg);
}
.overlayBtn_item-search a::before {
  background-image: url(../images/icon_search.svg);
}
.overlayBtn_item-inst a::before {
  background-image: url(../images/icon_inst.svg);
}
.overlayBtn_item + .overlayBtn_item {
  position: relative;
}
.overlayBtn_item + .overlayBtn_item::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #181818;
  position: absolute;
  top: 0;
  left: 0;
}

#wrap {
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  #wrap {
    margin-bottom: 0;
  }
}

/*
    セクション
================================*/
.sc_header {
  text-align: center;
  line-height: 1.5;
  font-weight: bold;
}
.sc_header_ttl {
  font-size: 1.3125rem;
  margin-top: 0.1818181818em;
  color: #000;
}
.sc_header_subtxt {
  font-size: 0.875rem;
}
.sc_header_subtxt::before {
  content: "";
  display: block;
  width: 4.5555555556em;
  height: 3em;
  margin-left: auto;
  margin-right: auto;
  background-image: url(../images/sc_header_subtxt_bg.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.sc_header_read {
  font-size: 1rem;
  font-weight: normal;
  margin-top: 0.8em;
  line-height: 1.9;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .sc_header_read {
    text-align: center;
  }
}
@media screen and (min-width: 481px) {
  .sc_header_ttl {
    font-size: 2.75rem;
  }
  .sc_header_subtxt {
    font-size: 1.125rem;
  }
  .sc_header_read {
    font-size: 1.25rem;
  }
}

.sc_content_read {
  font-size: 1rem;
  line-height: 1.9;
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (min-width: 769px) {
  .sc_content_read {
    font-size: 1.25rem;
  }
}

/*
    カード
================================*/
.cardWraper .flexbox {
  flex-wrap: wrap;
  justify-content: flex-start;
}
.cardWraper .flexbox .card {
  width: 23.749975%;
  margin: 1.25% 0;
}

.card {
  background-color: #FFFFFF;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  text-align: center;
}
.card div + div {
  margin-top: 20px;
}
.card_header {
  font-size: 0.9375rem;
}
.card_body {
  font-size: 0.875rem;
}

/*
    リスト
================================*/
.list {
  line-height: 1.8;
}

.list-gd ul li {
  position: relative;
  padding-left: 1.5em;
}
.list-gd ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f00c";
  display: block;
}

/*
    データリスト
================================*/
.dataList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 1.5;
}
.dataList > .flexbox {
  flex-wrap: wrap;
}
.dataList > .flexbox dt, .dataList > .flexbox dd {
  width: 100%;
  padding: 1em 1em;
}
@media screen and (min-width: 769px) {
  .dataList > .flexbox dt {
    width: 20%;
  }
}
@media screen and (min-width: 769px) {
  .dataList > .flexbox dd {
    width: 80%;
  }
}
.dataList dt, .dataList dd {
  width: 100%;
  padding: 1em 0;
  border-bottom: solid 1px #767676;
}
.dataList dt {
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .dataList dt {
    width: 24%;
    padding-right: 1em;
  }
}
@media screen and (min-width: 769px) {
  .dataList dd {
    width: 76%;
  }
}
.dataList dl {
  border-top: solid 1px #710000;
}
.dataList dl:last-child {
  border-bottom: solid 1px #710000;
}
/*
    ボタン
================================*/
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 320px;
  padding: 1em 0.5em;
  border: solid 1px #A0A0A0;
  text-align: center;
  line-height: 1.5;
  font-weight: bold;
  transition: all 0.2s ease;
}
.btn-bnr {
  font-size: 1.25rem;
  padding: 0.8em 0.7em 0.8em 0.8em;
  max-width: 320px;
  justify-content: space-between;
  box-shadow: 4px 4px 0px #710000;
  background-color: #FFFFFF;
}
.btn-bnr::before, .btn-bnr::after {
  content: "";
  display: block;
}
.btn-bnr::before {
  width: 2.4em;
  height: 2.4em;
  background-image: url(../images/icon_inst.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.btn-bnr::after {
  width: 0.4666666667em;
  height: 0.4666666667em;
  transform: rotate(45deg);
  border-right: solid 3px #710000;
  border-top: solid 3px #710000;
}
.btn-bnr_txt_small {
  display: block;
  font-size: 0.75rem;
  font-weight: normal;
  color: #525252;
}
@media screen and (min-width: 769px) {
  .btn-bnr {
    font-size: calc(1.625rem + (1vw - 7.68px) * 1.2048);
    min-height: 0vw;
    padding: 0.6666666667em;
    max-width: 380px;
  }
}
@media screen and (min-width: 769px) and (min-width: 1100px) {
  .btn-bnr {
    font-size: 1.875rem;
  }
}
.btn-bnr-inst::before {
  background-image: url(../images/icon_inst.png);
}
.btn-bnr-carsensor::before {
  background-image: url(../images/icon_carsensor.png);
}
.btn-bnr-carlist::before {
  background-image: url(../images/icon_carlist.svg);
}
.btn-bnr-pickup::before {
  background-image: url(../images/icon_pickup.svg);
}
.btn-bnr-line::before {
  background-image: url(../images/icon_line.png);
}
.btn-bnr-tel::before {
  background-image: url(../images/icon_tel.png);
}

.btnArea .btn {
  margin-top: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .btnArea {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 0 0 -2.5rem;
  }
  .btnArea .btn {
    margin-left: 0;
    margin-right: 0;
    margin: 2.5rem 0 0 2.5rem;
  }
}

.btnArea .hukidashi {
  color: #00B900;
}
.btnArea .hukidashi::before, .btnArea .hukidashi::after {
  background-color: #00B900;
}

.flexbox-btn {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 750px;
  margin: auto;
}
.flexbox-btn .btn {
  flex: 1 1 320px;
}

.btn-arrow {
  color: #FFFFFF;
  background-color: #00B900;
  box-shadow: 0px 4px 0px #079D45;
  border-radius: 4px;
  border: none;
}
.btn-arrow::after {
  content: "";
  display: block;
  width: 0.625em;
  height: 0.625em;
  border-right: solid 2px #FFFFFF;
  border-top: solid 2px #FFFFFF;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%) rotate(45deg);
}

.btn-back {
  color: #FFFFFF;
  background-color: #707070;
  border: solid 1px #707070;
}
.btn-back::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-left: solid 1px #FFFFFF;
  border-bottom: solid 1px #FFFFFF;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%) rotate(45deg);
}

.btn-shine {
  background: linear-gradient(#00ec00, #00B900);
  border: 1px solid #00B900;
  color: #fff !important;
  text-decoration: none !important;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border-radius: 3rem;
}
.btn-shine:hover {
  opacity: 0.8;
}
.btn-shine::before {
  display: block;
  position: absolute;
  z-index: 1;
  left: -100%;
  top: -50vh;
  content: "";
  width: 3rem;
  height: 100vh;
  transform: rotate(5deg);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
  animation: highLight 3s ease-in-out 0s infinite;
}
@keyframes highLight {
  from {
    left: -5%;
  }
  15%, 100% {
    left: 105%;
  }
}

.btn-float {
  animation: 2s float ease-in-out infinite;
}
@keyframes float {
  50% {
    transform: translateY(10px);
  }
}

.btn-icon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f1c1";
  display: block;
  margin-right: 0.5em;
  margin-top: -4px;
}
.btn-icon-home::before {
  content: "\f015";
}
.btn-icon-pdf::before {
  content: "\f1c1";
}
.btn-icon-tel::before {
  content: "\f095";
}

.btn a:hover {
  border-bottom: none;
}

.btn > img {
  float: left;
}

.btn::after {
  content: "";
  clear: both;
}

/*
    サムネ付きスライダー
================================*/
.slider_main .slick-slide img {
  width: 100%;
}

.slider_thumb {
  margin-top: 1rem;
}
.slider_thumb li {
  margin: 0 0.5rem 0;
}
.slider_thumb .slick-prev, .slider_thumb .slick-next {
  z-index: 2;
  width: 1.5rem;
  height: 1.5rem;
}
.slider_thumb .slick-prev {
  left: 0.5rem;
}
.slider_thumb .slick-next {
  right: 0.5rem;
}
.slider_thumb .slick-prev:before, .slider_thumb .slick-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  color: #710000;
  opacity: 1;
}
.slider_thumb .slick-prev:before {
  content: "\f137";
}
.slider_thumb .slick-next:before {
  content: "\f138";
}

/*
    ページトップへ
================================*/
#siteFooter {
  position: relative;
}

#pageTop {
  position: absolute;
  right: 0;
  bottom: 0;
}
#pageTop_btn {
  display: block;
  width: 50px;
  height: 50px;
  background-color: #000000;
}
@media screen and (max-width: 320px) {
  #pageTop_btn {
    width: 43px;
    height: 43px;
  }
}
#pageTop_btn::before {
  content: "";
  display: block;
  width: 19%;
  height: 19%;
  border-top: 2px solid #FFFFFF;
  border-left: 2px solid #FFFFFF;
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

/*
    サイトフッター
================================*/
#siteFooter {
  color: #FFFFFF;
  background-color: #333333;
  padding: 1rem;
}
#siteFooter .copyright {
  font-size: 0.75rem;
  text-align: center;
}

/*
    背景オーバーレイ
================================*/
.overlay {
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.4s;
}
.overlay.active {
  width: 100vw;
  height: 100vh;
  opacity: 1;
}

/*===============================

    Page

================================*/
/*
    トップビジュアル
================================*/
.topVisual {
  position: relative;
}
.topVisual_img {
  height: 434px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/topvisual_img_03_sp.jpg);
}
@media screen and (min-width: 769px) {
  .topVisual_img {
    height: 519px;
    background-image: url(../images/topvisual_img_03.jpg);
    background-position: 70% center;
  }
}
.topVisual_inner {
  padding: 0 14px;
  width: 100%;
  position: absolute;
  top: 30px;
  left: 0;
}
@media screen and (min-width: 481px) {
  .topVisual_inner {
    top: 54px;
  }
}
@media (min-width: 320px) {
  .topVisual_inner {
    font-size: calc(1.0625rem + (1vw - 3.2px) * 5.5128);
    min-height: 0vw;
  }
}
@media (min-width: 1100px) {
  .topVisual_inner {
    font-size: 3.75rem;
  }
}
.topVisual_title {
  color: #FFFFFF;
  font-weight: bold;
  line-height: 1.5;
  font-size: 1em;
}
.topVisual_title .marker {
  background: linear-gradient(transparent 75%, #710000 75%);
}
.topVisual_subtitle {
  color: #fff;
  font-weight: normal;
  line-height: 1.8;
  font-size: 14px;
  margin-top: 1rem;
  text-shadow: 0px 0px 2px #000000;
}
@media screen and (min-width: 481px) {
  .topVisual_subtitle {
    font-size: 0.3666666667em;
  }
}
@media screen and (max-width: 320px) {
  .topVisual_subtitle {
    font-size: 14px;
  }
}

/*
    ハイビークルってどんなお店？
================================*/
#about {
  padding-bottom: 0;
}

.feature_item {
  position: relative;
  padding-top: 2rem;
  background-color: #F5EDE1;
}
@media screen and (min-width: 769px) {
  .feature_item {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.feature_item_ttl {
  font-size: 1.125rem;
  font-weight: bold;
  width: 100%;
  padding: 0 2rem;
  text-align: center;
  margin-bottom: 2rem;
}
.feature_item_ttl::before {
  content: "";
  display: block;
  width: 100%;
  height: 40px;
  background-image: url(../images/feature_item_ttl_en_repaired.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 769px) {
  .feature_item_ttl::before {
    height: 56px;
  }
}
@media screen and (min-width: 769px) {
  .feature_item_ttl {
    position: absolute;
    top: -2rem;
    left: 0;
    text-align: left;
    margin-bottom: 0;
  }
  .feature_item_ttl::before {
    background-position: left;
  }
}
.feature_item_header {
  background-color: #F5EDE1;
  position: relative;
}
.feature_item_header .feature_item_img {
  width: 100%;
  height: 280px;
  background-image: url(../images/feature_img_02.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  .feature_item_header .feature_item_img {
    width: 53.47%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
  }
  .feature_item_header .feature_item_img_overlay {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .feature_item_header .feature_item_img_overlay::after {
    content: "";
    display: block;
    width: 200px;
    height: 1000px;
    transform: rotate(-15deg) translate(-60px, -24%);
    background-color: #F5EDE1;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.feature_item_content {
  position: relative;
  margin-top: -1.25rem;
}
@media screen and (min-width: 769px) {
  .feature_item_content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.feature_item_content_header {
  font-weight: bold;
}
.feature_item_content_header_subtxt {
  color: #710000;
  font-size: 1rem;
}
.feature_item_content_header_ttl {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #FFFFFF;
}
.feature_item_content_header_ttl .marker {
  background: linear-gradient(transparent 10%, #710000 10%);
}
@media screen and (min-width: 481px) {
  .feature_item_content_header {
    margin-top: 0;
  }
  .feature_item_content_header_subtxt {
    font-size: 1.625rem;
  }
  .feature_item_content_header_ttl {
    font-size: 2.75rem;
  }
}
.feature_item_content_body {
  font-size: 1rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 769px) {
  .feature_item_content_body {
    padding-right: 48.55%;
  }
}
.feature_item_content_body p {
  line-height: 1.9;
}
.feature_item_content_body_bold {
  font-weight: bold;
}
@media screen and (min-width: 481px) {
  .feature_item_content_body {
    margin-top: 2.5rem;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 769px) {
  .feature_item:nth-of-type(even) .feature_item_ttl {
    left: auto;
    right: 0;
    text-align: right;
  }
  .feature_item:nth-of-type(even) .feature_item_ttl::before {
    background-position: right;
  }
}
.feature_item:nth-of-type(even) .feature_item_img {
  right: auto;
  left: 0;
}
.feature_item:nth-of-type(even) .feature_item_img_overlay::after {
  transform: rotate(15deg) translate(60px, -24%);
  left: auto;
  right: 0;
}
@media screen and (min-width: 769px) {
  .feature_item:nth-of-type(even) .feature_item_content_header {
    padding-left: 42.55%;
  }
}
@media screen and (min-width: 769px) {
  .feature_item:nth-of-type(even) .feature_item_content_body {
    padding-left: 50.55%;
    padding-right: 0;
  }
}
.feature_item-sales .feature_item_ttl::before {
  background-image: url(../images/feature_item_ttl_en_sales.svg);
}
.feature_item-sales .feature_item_img {
  background-image: url(../images/feature_item_bg_04.jpg);
}
.feature_item-repaired .feature_item_ttl::before {
  background-image: url(../images/feature_item_ttl_en_repaired.svg);
}
.feature_item-repaired .feature_item_img {
  background-image: url(../images/feature_item_bg_01.jpg?202208301043);
}
.feature_item-coating .feature_item_ttl::before {
  background-image: url(../images/feature_item_ttl_en_coating.svg);
}
.feature_item-coating .feature_item_img {
  background-image: url(../images/feature_item_bg_02.jpg);
}
.feature_item-support .feature_item_ttl::before {
  background-image: url(../images/feature_item_ttl_en_support.svg);
}
.feature_item-support .feature_item_img {
  background-image: url(../images/feature_item_bg_03.jpg);
}
.feature_item_body {
  background-color: #F3F3F3;
  padding-top: 2.5rem;
  padding-bottom: 5rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 769px) {
  .feature_item_body {
    margin-top: 0;
    padding-top: 5rem;
    padding-bottom: 10rem;
  }
}

.beforAfter_before, .beforAfter_after {
  position: relative;
}
.beforAfter_before img, .beforAfter_after img {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.19);
}
@media screen and (min-width: 769px) {
  .beforAfter {
    display: flex;
    justify-content: space-between;
  }
  .beforAfter_before, .beforAfter_after {
    width: 47%;
  }
}
.beforAfter + .beforAfter {
  margin-top: 5rem;
}
.beforAfter_before {
  margin-bottom: 45px;
}
@media screen and (min-width: 769px) {
  .beforAfter_before {
    margin-bottom: 0;
  }
}
.beforAfter_before::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  height: 0;
  width: 0;
  border-top: 1em solid #939393;
  border-bottom: 0px solid transparent;
  border-left: 1em solid transparent;
  border-right: 1em solid transparent;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .beforAfter_before::after {
    top: 50%;
    left: 107%;
    transform: translate(-50%, -50%);
    border-top: 1em solid transparent;
    border-bottom: 1em solid transparent;
    border-left: 1em solid #939393;
    border-right: 0px solid transparent;
  }
}

.gallery > .flexbox {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: -4rem 0 0 0;
}
.gallery > .flexbox .gallery_item {
  width: 100%;
  margin: 4rem 0 0 0;
}
@media screen and (min-width: 769px) {
  .gallery > .flexbox {
    margin: -4.55% 0 0 -4.55%;
  }
  .gallery > .flexbox .gallery_item {
    width: 45.45%;
    margin: 4.55% 0 0 4.55%;
  }
}
@media screen and (min-width: 769px) {
  .gallery-3col > .flexbox {
    margin: -2.73% 0 0 -2.73%;
  }
  .gallery-3col > .flexbox .gallery_item {
    width: 30.603%;
    margin: 2.73% 0 0 2.73%;
  }
}
.gallery_item img {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.19);
}
.gallery_item_ttl {
  font-size: 1rem;
  text-align: center;
  font-weight: bold;
  margin-top: 0.5rem;
}
@media screen and (min-width: 769px) {
  .gallery_item_ttl {
    font-size: 1.25rem;
  }
}

.stock {
  margin-top: 4rem;
}
.stock_images {
  width: 100%;
  height: 320px;
  background: url(../images/stock_img.jpg) repeat-x;
  background-position: 0 0;
  -webkit-animation: bgroop 20s linear infinite;
  animation: bgroop 20s linear infinite;
}
@-webkit-keyframes bgroop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -2000px 0;
  }
}
@keyframes bgroop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -2000px 0;
  }
}
@media screen and (min-width: 769px) {
  .stock_images {
    height: 400px;
  }
}
.stock_ttl {
  font-size: 1rem;
  color: #710000;
  text-align: center;
  line-height: 2;
  margin-bottom: 1.25rem;
}
.stock_ttl.hukidashi::before, .stock_ttl.hukidashi::after {
  width: 0.1785714286em;
  background-color: #710000;
  border-radius: 0.1785714286em;
}
.stock_ttl.hukidashi::before {
  transform: rotate(-10deg);
  margin-right: 1em;
}
.stock_ttl.hukidashi::after {
  transform: rotate(10deg);
  margin-left: 1em;
}
@media screen and (min-width: 769px) {
  .stock_ttl {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }
}

/*
    スタッフ紹介
================================*/
#staffIntro {
  margin-top: 6.25rem;
}

.staff_box {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .staff_box {
    max-width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .staff_box.flexbox-pc {
    align-items: center;
  }
  .staff_box.flexbox-pc .staff_box_img {
    width: 36.36%;
  }
  .staff_box.flexbox-pc .staff_box_body {
    width: 60.27%;
  }
}
@media screen and (min-width: 769px) {
  .staff_box:nth-child(even).flexbox-pc {
    flex-direction: row-reverse;
  }
  .staff_box:nth-child(even) .staff_box_quote::before {
    right: auto;
  }
}
.staff_box + .staff_box {
  margin-top: 4rem;
}
@media screen and (min-width: 769px) {
  .staff_box + .staff_box {
    margin-top: 6.25rem;
  }
}
.staff_box_position {
  display: inline-block;
  font-size: 0.75rem;
  background-color: #710000;
  color: #FFFFFF;
  padding: 0.3333333333em 0.8333333333em 0.4166666667em 0.8333333333em;
  line-height: 1;
  margin-top: 1rem;
}
.staff_box_name {
  font-size: 1.5rem;
  line-height: 1.9;
}
@media screen and (min-width: 769px) {
  .staff_box_name {
    font-size: 1.875rem;
  }
}
.staff_box_license {
  font-size: 0.875rem;
  color: #767676;
}
.staff_box_quote {
  font-size: 1rem;
  font-weight: bold;
  padding: 1em;
  margin-top: 1rem;
  line-height: 1.9;
  border-radius: 4px;
  background-color: #F3F3F3;
  position: relative;
}
.staff_box_quote::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-top: 0 solid transparent;
  border-bottom: 0.6666666667em solid #F3F3F3;
  border-left: 0.5em solid transparent;
  border-right: 0.5em solid transparent;
  position: absolute;
  right: 1em;
  top: -0.6666666667em;
}
@media screen and (min-width: 769px) {
  .staff_box_quote::before {
    border-top: 0.5em solid transparent;
    border-bottom: 0.5em solid transparent;
    border-left: 0 solid transparent;
    border-right: 0.6666666667em solid #F3F3F3;
    right: 100%;
    top: 1.6666666667em;
  }
}
@media screen and (min-width: 769px) {
  .staff_box_quote {
    font-size: 1.5rem;
    padding: 1.6666666667em;
  }
}
@media screen and (min-width: 769px) {
  .staff_box:nth-child(even) .staff_box_quote::before {
    right: auto;
    left: 100%;
    transform: rotate(180deg);
  }
}

/*
    ハイビークルの独自ローン
================================*/
#originalLoan {
  background-color: #F5EDE1;
}
#originalLoan .btn-arrow {
  max-width: 460px;
}
@media screen and (min-width: 769px) {
  #originalLoan .btn-arrow {
    font-size: 1.125rem;
    max-width: 460px;
  }
}

.comparison .flexbox {
  flex-wrap: wrap;
  justify-content: center;
}
.comparison .flexbox .comparison_box {
  max-width: 520px;
}
.comparison .flexbox .comparison_box + .comparison_box {
  margin-top: 1.875rem;
}
@media screen and (min-width: 769px) {
  .comparison .flexbox {
    justify-content: space-between;
  }
  .comparison .flexbox .comparison_box {
    width: 47.27%;
  }
  .comparison .flexbox .comparison_box + .comparison_box {
    margin-top: 0;
  }
}
.comparison_box {
  background-color: #FFFFFF;
  border-radius: 4px;
  overflow: hidden;
}
.comparison_box_inner {
  padding: 1.875rem 1.25rem;
}
.comparison_box_ttl {
  font-size: 1rem;
  text-align: center;
  color: #FFFFFF;
  line-height: 1.5;
  padding: 0.6em;
}
.comparison_box_txt {
  font-size: 1rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 481px) {
  .comparison_box_ttl {
    font-size: 1.25rem;
  }
  .comparison_box_txt {
    font-size: 1.25rem;
  }
}
.comparison_box-ippan .comparison_box_ttl {
  background-color: #8A8A8A;
}
.comparison_box-highbcrew .comparison_box_ttl {
  background-color: #710000;
}
.comparison_box-highbcrew .comparison_box_txt {
  font-weight: bold;
}

.merit {
  margin-top: 6.25rem;
}
.merit_ttl {
  color: #710000;
  font-size: 1.3125rem;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.merit_ttl::before, .merit_ttl::after {
  content: "";
  display: block;
  height: 2px;
  background-color: #710000;
  flex: 1;
}
.merit_ttl::before {
  margin-right: 1em;
}
.merit_ttl::after {
  margin-left: 1em;
}
@media screen and (min-width: 481px) {
  .merit_ttl {
    font-size: 1.875rem;
  }
}
.merit_card {
  margin-top: 4rem;
  counter-reset: number;
}
.merit_card > .flexbox {
  justify-content: center;
  flex-wrap: wrap;
}
.merit_card > .flexbox .merit_card_item {
  width: 100%;
  max-width: 520px;
}
.merit_card > .flexbox .merit_card_item + .merit_card_item {
  margin-top: 1.875rem;
}
@media screen and (min-width: 769px) {
  .merit_card > .flexbox {
    justify-content: space-between;
  }
  .merit_card > .flexbox .merit_card_item {
    width: 30.91%;
  }
  .merit_card > .flexbox .merit_card_item + .merit_card_item {
    margin-top: 0;
  }
}
.merit_card_item {
  background-color: #FFFFFF;
  padding: 1.25rem;
  border-radius: 4px;
  position: relative;
}
.merit_card_item::before {
  counter-increment: number;
  content: counter(number);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  width: 2.0666666667em;
  height: 2.0666666667em;
  background-color: #710000;
  border-radius: 50%;
  color: #FFFFFF;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-20%, -20%);
}
.merit_card_item_icon {
  text-align: center;
}
.merit_card_item_ttl {
  font-size: 1.25rem;
  color: #710000;
  line-height: 1.8;
  text-align: center;
}
.merit_card_item_body {
  line-height: 1.8;
  margin-top: 1.25rem;
}
@media screen and (min-width: 481px) {
  .merit_card_item::before {
    font-size: 1.875rem;
  }
}

/*
    CTA
================================*/
.cta {
  background-image: url(../images/cta_bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 4rem 0;
}
.cta_ttl {
  font-size: 1.3125rem;
  text-align: center;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1.5;
}
.cta .btnArea {
  margin-top: 2.5rem;
}
@media screen and (min-width: 769px) {
  .cta {
    padding: 9.625rem 0;
    background-attachment: fixed;
  }
  .cta_ttl {
    font-size: 2.5rem;
  }
}

/*
    お客さまの声
================================*/
#customersVoice {
  background-color: #F5EDE1;
}

.voice_card {
  border-radius: 4px;
  background-color: #FFFFFF;
  padding: 1.25rem 1.25rem;
}
.voice_card + .voice_card {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 481px) {
  .voice_card {
    padding: 2rem 2.5rem;
  }
}
.voice_card.flexbox {
  flex-wrap: wrap;
}
.voice_card.flexbox .voice_card_user, .voice_card.flexbox .voice_card_body {
  width: 100%;
}
@media screen and (min-width: 481px) {
  .voice_card.flexbox {
    flex-direction: row-reverse;
  }
  .voice_card.flexbox .voice_card_user {
    width: 120px;
  }
  .voice_card.flexbox .voice_card_body {
    flex: 1;
    margin-left: 2.5rem;
  }
}
.voice_card_user {
  text-align: center;
  margin-top: 0.5rem;
}
.voice_card_user.flexbox {
  justify-content: flex-end;
}
.voice_card_user.flexbox .voice_card_user_icon {
  width: 1.5rem;
}
.voice_card_user.flexbox .voice_card_user_name {
  margin-left: 0.5em;
}
@media screen and (min-width: 481px) {
  .voice_card_user {
    margin-top: 0;
  }
  .voice_card_user.flexbox {
    display: block;
  }
  .voice_card_user.flexbox .voice_card_user_icon {
    width: 100%;
    margin-left: 0;
  }
  .voice_card_user.flexbox .voice_card_user_name {
    margin-left: 0;
  }
}
.voice_card_user_name {
  font-weight: bold;
  line-height: 1.5;
  margin-top: 0.375rem;
}
.voice_card_user_name-men {
  color: #3F8EFC;
}
.voice_card_user_name-women {
  color: #F7717D;
}
.voice_card_body_ttl {
  font-size: 1.25rem;
  font-weight: bold;
  color: #710000;
  line-height: 1.5;
}
.voice_card_body_txt {
  margin-top: 0.75em;
  line-height: 1.8;
}

/*
    お客さまの声
================================*/
#access {
  background-color: #EBEBEB;
}
#access .companyMap .iframeWrap {
  padding-top: 340px;
}
@media screen and (min-width: 769px) {
  #access .companyMap .iframeWrap {
    padding-top: 520px;
  }
}
#access .company {
  margin-top: 1.25rem;
}
@media screen and (min-width: 769px) {
  #access .company {
    margin-top: 3.5rem;
  }
}

.company .inner {
  max-width: 988px;
}
.company > .flexbox {
  flex-wrap: wrap;
}
.company > .flexbox .company_data, .company > .flexbox .company_btn {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .company > .flexbox .company_data {
    width: 46.88%;
  }
  .company > .flexbox .company_btn {
    width: 44.79%;
  }
}
.company .company_data .dataList {
  margin-top: 1rem;
}
.company .company_btn {
  margin-top: 1.25rem;
}
.company .company_btn .btn {
  margin-left: auto;
  margin-right: auto;
}
.company .company_btn .btn + .btn {
  margin-top: 1.25rem;
}
@media screen and (min-width: 769px) {
  .company .company_btn {
    margin-top: 0;
  }
  .company .company_btn .btn + .btn {
    margin-top: 1.875rem;
  }
}

/*
    在庫一覧
================================*/
.page-stock #siteHeader {
  background-color: #54a7c8;
}
.page-stock #siteHeader .siteHeader_telBtn {
  background-color: #181818;
}
.page-stock #spDrawerToggleIcon::before, .page-stock #spDrawerToggleIcon::after, .page-stock #spDrawerToggleIcon span {
  background-color: #181818;
}
.page-stock .sc_header_read {
  text-align: center;
}
.page-stock .company .hukidashi {
  font-size: 1rem;
  color: #710000;
  text-align: center;
  line-height: 2;
  margin-bottom: 1.25rem;
}
.page-stock .company .hukidashi.hukidashi::before, .page-stock .company .hukidashi.hukidashi::after {
  width: 0.1785714286em;
  background-color: #710000;
  border-radius: 0.1785714286em;
}
.page-stock .company .hukidashi.hukidashi::before {
  transform: rotate(-10deg);
  margin-right: 1em;
}
.page-stock .company .hukidashi.hukidashi::after {
  transform: rotate(10deg);
  margin-left: 1em;
}
@media screen and (min-width: 769px) {
  .page-stock .company .hukidashi {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }
}

/*
    自社ローンLP
================================*/
.page-loan #siteHeader {
  height: 54px;
  background-color: #54a7c8;
}
@media screen and (min-width: 769px) {
  .page-loan #siteHeader {
    height: auto;
  }
}
.page-loan #siteHeader .siteHeader_telBtn {
  background-color: #181818;
}
.page-loan #spDrawerToggleIcon::before, .page-loan #spDrawerToggleIcon::after, .page-loan #spDrawerToggleIcon span {
  background-color: #181818;
}
.page-loan .comparison {
  margin-top: 5rem;
}
.page-loan .comparison_box {
  box-shadow: 0px 0px 15px rgba(34, 114, 171, 0.25);
}
.page-loan .comparison_box_inner {
  padding: 1.875rem 0.625rem;
}
.page-loan .comparison_box_txt {
  margin-top: 1rem;
}
.page-loan .comparison_box_bold {
  margin-top: 1rem;
  font-weight: bold;
  text-align: center;
  padding: 0.7em;
  background-color: #E7E7E7;
  border-radius: 5em;
}
.page-loan .comparison_box-highbcrew .comparison_box_ttl {
  background-color: #2272AB;
}
.page-loan .comparison_box-highbcrew .comparison_box_bold {
  background-color: rgba(34, 114, 171, 0.25);
}
@media screen and (min-width: 769px) {
  .page-loan .comparison_box_inner {
    padding: 1.875rem 1.25rem;
  }
  .page-loan .comparison_box_txt {
    margin-top: 1.875rem;
  }
  .page-loan .comparison_box_bold {
    margin-top: 1.875rem;
    font-size: 1.25rem;
  }
}

.loan_topVisual {
  height: 440px;
  background-image: url(../images/loan/topvisual_bg_pc.jpg);
  background-position: 56% center;
  background-size: cover;
  background-repeat: no-repeat;
}
.loan_topVisual_inner {
  text-align: center;
  padding: 20px 10px 0;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .loan_topVisual {
    height: 740px;
    background-position: center center;
  }
  .loan_topVisual_inner {
    max-width: 100%;
  }
}

.point {
  background: radial-gradient(70.34% 70.34% at 49.48% 14.71%, #E1EEF5 0%, #ADDBF5 100%);
}
.point_hukidashi {
  font-size: 1rem;
  text-align: center;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .point_hukidashi {
    font-size: 1.75rem;
  }
}
.point_read_btn {
  font-size: 1rem;
}
@media screen and (min-width: 769px) {
  .point_read_btn {
    font-size: 1.25rem;
  }
}
.point_ttl {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
.point_ttl_bold {
  display: block;
  line-height: 1.2;
}
.point_ttl_bold span {
  font-size: 2.5rem;
  color: #2272AB;
}
@media screen and (min-width: 769px) {
  .point_ttl {
    font-size: 2.5rem;
  }
  .point_ttl_bold span {
    font-size: 4.375rem;
  }
}
.point_toc {
  padding: 0 14px;
}
.point_toc > .flexbox {
  margin: -30px 0 0 -30px;
  justify-content: center;
  flex-wrap: wrap;
}
.point_toc > .flexbox .point_toc_item {
  width: 250px;
  margin: 30px 0 0 30px;
}
.point_toc_item {
  text-align: center;
  background-color: #FFFFFF;
  padding: 16px 24px 24px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(34, 114, 171, 0.25);
  transition: all 0.3s;
}
.point_toc_item::before {
  content: attr(data-num);
  display: block;
  font-size: 0.875rem;
  color: #2272AB;
}
.point_toc_item_ttl {
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: bold;
  margin-top: 0.375rem;
}
.point_toc_item::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../images/icon_arrow_circle.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 0.75rem;
}
.point_toc_item:hover {
  transform: translateY(-8px);
}

.psc {
  background-color: #ECF8FF;
}
.psc_header {
  background-color: #2272AB;
  padding: 1.8125rem 0.875rem 1.3125rem;
}
@media screen and (min-width: 769px) {
  .psc_header {
    padding: 1.8125rem 0.875rem 1.3125rem;
  }
}
.psc_header_ttl {
  font-size: 1.625rem;
  font-weight: bold;
  text-align: center;
  color: white;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.5;
}
.psc_header_ttl::before {
  content: attr(data-num);
  display: block;
  max-width: 90px;
  font-size: 0.75rem;
  line-height: 1;
  color: #2272AB;
  background-color: #FFFFFF;
  border-radius: 3em;
  padding: 4px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.4444444444em;
  text-shadow: none;
}
@media screen and (min-width: 769px) {
  .psc_header_ttl {
    font-size: 3.125rem;
  }
  .psc_header_ttl::before {
    font-size: 1.125rem;
    max-width: 127px;
    padding: 6px;
  }
}
.psc_content {
  padding: 2.5rem 0 3.75rem;
}
@media screen and (min-width: 769px) {
  .psc_content {
    padding: 5rem 0 7.5rem;
  }
}
.psc_content > .flexbox {
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column-reverse;
}
.psc_content > .flexbox .psc_content_body {
  width: 100%;
  margin-top: 2rem;
}
.psc_content > .flexbox .psc_content_img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .psc_content > .flexbox {
    flex-direction: row;
  }
  .psc_content > .flexbox .psc_content_body {
    width: 44%;
    margin-top: 0;
  }
  .psc_content > .flexbox .psc_content_img {
    width: 51%;
  }
}
.psc_content_body_ttl {
  font-size: 1.25rem;
  color: #2272AB;
  font-weight: bold;
}
.psc_content_body_txt {
  line-height: 1.8;
  margin-top: 1rem;
}
@media screen and (min-width: 769px) {
  .psc_content_body_ttl {
    font-size: 2rem;
  }
  .psc_content_body_txt {
    font-size: 1.125rem;
    margin-top: 2rem;
  }
}
.psc_content_img {
  background-color: #FFFFFF;
  padding: 1.25rem 0.625rem;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(34, 114, 171, 0.25);
}
@media screen and (min-width: 769px) {
  .psc_content_img {
    padding: 2.5rem 2rem;
    border-radius: 10px;
  }
}

.cta-loan-1 {
  background-image: url(../images/loan/cta_bg_01.jpg);
  background-position: 31% center;
}
.cta-loan-2 {
  background-image: url(../images/loan/cta_bg_02_sp.jpg);
}
.cta-loan-3 {
  background-image: url(../images/loan/cta_bg_03.jpg);
  background-position: center bottom;
}
@media screen and (min-width: 769px) {
  .cta-loan {
    padding: 7.875rem 0;
    background-attachment: initial;
    background-position: center top;
  }
  .cta-loan-1 {
    background-position: center;
  }
  .cta-loan-2 {
    background-image: url(../images/loan/cta_bg_02.jpg);
  }
}
.cta-loan .btn {
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 0.6666666667em;
  text-align: center;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.06em;
  transition: all 0.2s ease;
  border-radius: 4px;
  border: none;
  color: #FFFFFF;
  background-color: #00B900;
  box-shadow: 0px 4px 0px #079D45;
}
.cta-loan .btn-line {
  background-color: #00B900;
  box-shadow: 0px 4px 0px #079D45;
}
.cta-loan .btn-line::before {
  content: "";
  display: block;
  width: 1.3333333333em;
  height: 1.3333333333em;
  background-image: url(../images/loan/icon_btn_line.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.4166666667em;
}
.cta-loan .btn-tel {
  background-color: #F46036;
  box-shadow: 0px 4px 0px #C54D2B;
}
.cta-loan .btn-tel::before {
  content: "";
  display: block;
  width: 1.3333333333em;
  height: 1.3333333333em;
  background-image: url(../images/loan/icon_btn_tel.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.4166666667em;
}/*# sourceMappingURL=style.css.map */