@charset "UTF-8";

:root {
  --color-black: #000000;
  --color-white: #fff;
  --color-primary: #F8A32E;

  --color-d-blue: #293855;
  --color-blue: #08358B;

  --roboto: "Roboto", sans-serif;
  --m-plus: "Roboto", sans-serif;


  --header: 10rem;
  scroll-padding: var(--header);
}

@media screen and (max-width:768px) {
  :root {
    --header: 4rem;
    scroll-padding: var(--header);
  }
}

/*================================================
 *  一般・共通設定
 ================================================*/
html {
  font-size: 62.5%;
  box-sizing: border-box;
  font-family: YuGothic, 'Yu Gothic', '游ゴシック体', '游ゴシック', 'メイリオ', Meiryo, 'MS ゴシック', 'MS Gothic', sans-serif;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', YuGothic, 'Yu Gothic', '游ゴシック体', '游ゴシック', 'メイリオ', Meiryo, 'MS ゴシック', 'MS Gothic', sans-serif;

  font-size: 1.6rem;
  color: var(--color-black);
  font-weight: 400;
  line-height: 1.5;

}



a {
  text-decoration: none;
  transition: all .4s;
}

@media screen and (min-width:769px) {
    a:hover {
      opacity: .4;
    }

}


img {
  max-width: 100%;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}


@media screen and (max-width:768px) {
  html {}


}

/*================================================
 *  header
 ================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.4rem 2rem 3.1rem;
  background: var(--color-white);
}

/* header_left */
.header_left {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.header_left span {
  font-size: 1.4rem;
  color: var(--color-d-blue);
  font-weight: 500;
}

.header_logo {
  width: 20.4rem;
  position: relative;
  padding-right: 2rem;
}

.header_logo::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 5.1rem;
  background: var(--color-d-blue);
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.main_nav_body {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 1rem;

}

.main_nav_body a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--color-primary);
  color: var(--color-white);
  height: 6.5rem;

  width: clamp(18.3rem, 18.3vw, 22.3rem);
  border-radius: 0.5rem;
  font-size: 1.8rem;
  font-weight: 700;
}

@media screen and (max-width:1024px) {
  .header_inner {
    padding: 1.2rem 0 1.2rem 1.4rem;
    height: 58px;
  }

  .header_left {
    gap: 1.4rem;
  }

  .header_logo {
    width: 13.6rem;
    padding-right: 1.4rem;
  }

  .header_logo::before {
    height: 3.7rem;
  }


  .header_left span {
    font-size: 1.2rem;
  }

  #mainNav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6.5rem;
  }

  .main_nav_body {
    gap: 0;
  }

  .main_nav_body li {
    width: 33.333%;
    position: relative;
  }

  .main_nav_body li:not(:last-child)::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 4.7rem;
    background: var(--color-white);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .main_nav_body a {
    width: 100%;
    border-radius: 0;
    font-size: 1.2rem;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.8rem;
  }



}

@media screen and (max-width:768px) {}

/*================================================
 *  
 ================================================*/
.inner {
  max-width: 103rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

.icon {
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
}

.icon_car {
  background-image: url(../images/icon_car.png);
  width: 4.8rem;
  height: 1.99rem;
}

.icon_money {
  background-image: url(../images/icon_money.png);
  width: 1.7rem;
  height: 2.6rem;
}


.icon_shop {
  background-image: url(../images/icon_shop.png);
  width: 2.7rem;
  height: 2.45rem;
}

.icon_tel {
  background-image: url(../images/icon_tel.png);
  width: 2.151rem;
  height: 2.04rem;
}

.c_btn {
  background: var(--color-primary);
  text-align: center;
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 0.5rem;
  display: block;
  width: 100%;
  padding: 1.4rem 0;
}

@media screen and (max-width:768px) {
  .inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    max-width: 60rem;
  }

  .icon_tel {
    width: 2.303rem;
    height: 2.113rem;
  }

  .c_btn {
    font-size: 1.5rem;
  }

  .c_btn.lg {
    font-size: 1.6rem;
    padding: 0.7rem 0;
  }
}


/*================================================
 *  kv
 ================================================*/

.kv {
  background: url(../images/kv_bg.png) no-repeat center bottom/cover;

  padding-top: clamp(12rem, 13.7%, 17.5rem);
  margin-bottom: 6rem;
  position: relative;
}

.kv_contents_inner {
  width: calc(100% - 4.6rem);
  max-width: 123.4rem;
  margin: 0 auto;
  position: relative;
  padding-bottom: clamp(1rem, 15.7%, 20rem);
}

.kv_ill {
  position: absolute;

}

.kv_ill.left {
  width: 19.6%;
  left: 0;
  bottom: 43%;
}

.kv_ill.left p {
  width: 53.7%;
}

.kv_ill.left span {
  width: 60%;
  display: block;
  margin-left: auto;
  margin-top: -7%;
}

.kv_ill.right {
  width: 19.2%;
  right: 0.3rem;
  bottom: 44%;
}

.kv_ill.right p {
  width: 51.1%;
  margin-left: auto;
}

.kv_ill.right span {
  width: 75%;
  display: block;
  margin-top: -2%;
}





.kv_catch {
  max-width: 75rem;
  width: 61.6%;
  margin: 0 auto;
  min-width: 57rem;
}

.kv_catch-txt {
  text-align: center;
  font-size: 2.5rem;
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.6;
  margin: 2rem 0;
}

.kv_subcatch {
  width: 60%;
  margin: 0 auto;
}


.kv_car {
  position: absolute;
  display: block;
  width: 95.23%;
  bottom: -8%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 121.9rem;
}

@media screen and (max-width:1024px) {
  .kv_ill.left {
    bottom: 32%;
  }

  .kv_ill.right {
    bottom: 32%;
  }
}

@media screen and (max-width:768px) {
  .kv {
    background: url(../images/kv_bg_sp.png) no-repeat center bottom/cover;
    padding-top: 9rem;
    margin-bottom: 3rem;
  }

  .kv_contents_inner {
    width: 100%;

    padding-bottom: clamp(15rem, 42.7%, 27.6rem);
  }

  .kv_catch {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    min-width: unset;
  }

  .kv_catch h2 {
    width: 70%;
    margin: 0 auto;
    min-width: 27.4rem;
  }

  .kv_catch-txt {
    font-size: 1.4rem;
    margin: 1.6rem 0;
  }

  .kv_subcatch {
    width: 50.5%;
    min-width: 19.7rem;
  }

  .kv_car {
    width: 94.1%;
    bottom: 20%;
  }



  .kv_ill.left {
    max-width: 20rem;
    width: 37.4%;
    left: 5%;
    bottom: -2.8%;
  }

  .kv_ill.left p {
    width: 41.7%;
  }

  .kv_ill.left span {
    width: 52.3%;
    margin-top: -37%;
  }

  .kv_ill.right {
    width: 38%;
    right: 4%;
    max-width: 20rem;
    bottom: -3%;
  }

  .kv_ill.right p {
    width: 38.1%;
  }

  .kv_ill.right span {
    width: 62%;
    margin-top: -26%;
  }
}


/*================================================
 *  
 ================================================*/
.home_section_ttl {
  text-align: center;
  font-weight: 700;
}

.home_section_ttl .txt_jp {
  font-size: 3rem;
  line-height: 1.33;
}

.home_section_ttl .txt_en {
  display: block;
  font-size: 1.8rem;
  font-family: var(--roboto);
  color: var(--color-blue);
  margin-top: 0.6rem;
}


.home_section_ttl i {
  display: block;
  margin: 0 auto 1rem;
}



@media screen and (max-width:768px) {
  .home_section_ttl .txt_jp {
    font-size: 1.8rem;
  }

  .home_section_ttl .txt_en {
    font-size: 1.4rem;
    margin-top: 0.8rem;
  }

  .home_section_ttl i {
    margin-bottom: 1rem;
  }


}

/*================================================
 *  shop
 ================================================*/
.icon_shop-or {
  background-image: url(../images/icon_shop_or.png);
  width: 3rem;
  height: 3rem;
}

.shop_list {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.4rem;
  gap: 2.4rem;
}

.shop_item {
  width: 18%;
  min-width: 18rem;
}

.shop_item h3 {
  font-size: 2.1rem;
  margin: 0.6rem 0 1.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.shop_item.item02 h3 {
  margin-bottom: 1.3rem;
}

.shop_item .shop_address {
  font-size: 1.8rem;
  min-height: 3em;
  line-height: 1.35;
}

.shop_item.item02 .shop_address {
  min-height: unset;
}

.shop_item .shop_tel {
  color: var(--color-blue);
  font-family: var(--roboto);
  font-size: 2.2rem;
  font-weight: 700;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 0.2rem;
  margin-bottom: 4rem;
}

.shop_item .shop_tel i {
  margin-top: 0.4rem;
}

.shop_item.item01 .shop_tel {
  margin-bottom: 0.3rem;
}

.shop_item.item02 .shop_tel {
  margin-top: 0.8rem;
  margin-bottom: 3.8rem;
}


.shop_item .shop_online {
  background: var(--color-blue);
  color: var(--color-white);
  display: block;
  text-align: center;
  font-size: 1.5rem;
  border-radius: 10rem;
  padding: 0.2rem 0 0.1rem;
  margin-bottom: 0.6rem;
}

.shop_item .shop_zaiko .c_btn {
  padding: 1.4rem 0;
}


.shop_under {
  text-align: center;
  font-size: 2rem;
  margin-top: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.shop_under .c_btn {
  padding: 2.3rem 0;
  width: 24.9rem;
  margin: 2rem auto 0;
}

@media screen and (max-width:768px) {
  .icon_shop-or {
    width: 2.514rem;
    height: 2.36rem;
  }

  .shop_list {
    justify-content: space-between;
    margin-top: 1.6rem;
    gap: 2.75rem 0;
  }

  .shop_list::after {
    width: 47%;
    min-width: unset;
  }

  .shop_item {
    min-width: unset;
    width: 47.8%;
  }

  .shop_item h3,
  .shop_item.item02 h3 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
  }

  .shop_item.item01 h3 {
    margin-bottom: 0;
  }

  .shop_item .shop_address {
    font-size: 1.6rem;
    min-height: unset;
  }

  .shop_item.item01 .shop_address {
    margin-bottom: 1.6rem;
    min-height: 4.4rem;
  }

  .shop_item .shop_tel {
    font-size: 1.8rem;
    gap: 0.2rem;
    margin-bottom: 1rem;
  }



  .shop_item.item02 .shop_tel {
    margin-bottom: 3.5rem;
  }

  .shop_item .shop_online {
    font-size: 1.1rem;
  }

  .shop_item .shop_zaiko .c_btn {
    padding: 0.8rem 0;
  }

  .shop_under {
    font-size: 1.8rem;
  }

  .shop_under .c_btn {
    padding: 1.9rem 0;
    width: 24.2rem;
    margin: 1.7rem auto 0;
  }
}


/*================================================
 *  QUESTION
 ================================================*/

.home_question_contents {
  margin-top: 3rem;
}

.question_bg {
  padding: 3.7rem 0 0;
  margin-bottom: 9.75%;
  position: relative;

}

.question_bg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 3vw);
  background: #FCF8F2;
  top: 0;
  left: 0;
  z-index: -1;
}

.question_bg::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/question_bg.png);
  width: 100%;
  height: auto;
  padding-bottom: 8.75%;
  bottom: calc(-5.75vw + 2px);
  left: 50%;
  transform: translateX(-50%);
}


.question_bg .inner {
  padding-left: 4.5rem;
  max-width: 106rem;
  position: relative;
  z-index: 1;
}

.icon_question {
  background-image: url(../images/icon_question.png);
  width: 3.915rem;
  height: 4.95rem;
}

.icon_light {
  background-image: url(../images/icon_light.png);
  width: 3.5rem;
  height: 5.4rem;
}


.ques_box {
  position: relative;
  padding-top: 17.3%;
}

.ques_fuki {
  width: 22.6%;
  position: absolute;
  top: 0;
  left: 0;
}

.ques_fuki.fuki01 {
  margin-top: 11%;
}

.ques_fuki.fuki02 {
  margin-left: 8%;
}

.ques_fuki.fuki03 {
  margin-top: 4%;
  margin-left: 31.6%;
}

.ques_fuki.fuki04 {
  margin-top: 12.5%;
  margin-left: 50%;
}

.ques_fuki.fuki05 {
  margin-top: 1.8%;
  margin-left: 61.9%;
  width: 24.5%;
}

.ques_fuki.fuki06 {
  margin-top: 16.4%;
  margin-left: 77.3%;
}

.ques_ill {
  width: 66.7%;
  margin: 0 auto 0 13%;
}



@media screen and (max-width:768px) {
  .question_bg::before {
    height: 100%;
  }

  .question_bg::after {
    bottom: calc(-8.75vw + 2px);
  }

  .question_bg .inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 60rem;
  }

  .icon_question {
    width: 2.388rem;
    height: 3.017rem;
  }

  .ques_box {
    padding-top: 44.3%;
  }

  .ques_fuki {
    width: 31.6%;
  }

  .ques_fuki.fuki01 {
    margin-top: 25.5%;
  }

  .ques_fuki.fuki02 {
    margin-left: 6.388%;
    margin-top: 6.66%;
  }

  .ques_fuki.fuki02 {
    margin-left: 6.388%;
    margin-top: 6.66%;
  }

  .ques_fuki.fuki03 {
    margin-top: 16.11%;
    margin-left: 41%;
  }

  .ques_fuki.fuki04 {
    margin-top: 36.11%;
    margin-left: 34.722%;
  }

  .ques_fuki.fuki05 {
    margin-top: 2.361%;
    margin-left: 65.833%;
    width: 31.6%;
  }

  .ques_fuki.fuki06 {
    margin-top: 31.388%;
    margin-left: 68.611%;

  }

  .ques_ill {
    width: 100%;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}


/*================================================
 *  solution
 ================================================*/
.sol_bg {
  position: relative;
  padding: 0 0 7.5rem;
}

.sol_bg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% + 13.3vw);
  background: url(../images/sol_bg.jpg) no-repeat center top/cover;
  top: -13.3vw;
  left: 0;
  z-index: -2;
}

.home_solution_contents .home_section_ttl {

  margin-bottom: 4.8rem;
}

.home_solution_contents .home_section_ttl span {
  color: var(--color-white);
}

.home_solution_contents .home_section_ttl .txt_jp {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

.home_solution_contents .home_section_ttl .txt_jp::before,
.home_solution_contents .home_section_ttl .txt_jp::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/sol_ttl.png);
  width: 6.1rem;
  height: 5.8rem;
  bottom: 0;
  left: -6.6rem;

}

.sol_bg .home_section_ttl .txt_jp::after {
  left: auto;
  right: -6.6rem;
  background-image: url(../images/sol_ttl02.png);
}


.sol_outer {
  max-width: 152rem;
  margin: 0 auto;
}

.sol_item {
  width: 89.8%;
  min-width: 74rem;
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 4.4rem;
  margin-bottom: 5.5rem;
}

.sol_img {
  width: 66.34%;
}

.sol_img img {
  min-height: 36rem;
  max-height: 60rem;
  overflow: hidden;
  object-fit: cover;
}

.sol_txt {
  background: var(--color-white);
  width: calc(44.4% - 1rem);
  padding: 3rem 3rem;
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 45rem;
}


.sol_txt::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #2A315C;
  bottom: -1rem;
  right: -1rem;
  z-index: -1;
}

.sol_ill {
  display: block;
  width: 41.1%;
  position: absolute;
  top: -10.1rem;
  left: 13.6rem;
  max-width: 20.9rem;
}

.sol_txt h3 {
  font-size: 2.8rem;
  line-height: 1.43;
  font-weight: 700;
}

.sol_txt h3 span img {
  display: block;
  width: auto;
  max-width: unset;
  height: 6.8rem;
  margin-bottom: 0.8rem;
  margin-left: 0.4rem;
}

.sol_txt p {
  font-size: 1.8rem;
  line-height: 1.77;
  margin-top: 1.4rem;
  margin-left: 0.4rem;
}

/* sol_item02 */
.sol_item02 {
  flex-direction: row-reverse;
  margin-left: auto;
}

.sol_item02 .sol_txt {
  right: auto;
  left: 0;
}

/* sol_item03 */
.sol_item03 .sol_ill {
  width: 32.2%;
  max-width: 16.1rem;
}

@media screen and (max-width:768px) {
  .sol_bg {
    padding: 3rem 0 0.2rem;
  }

  .sol_bg::before {
    background: url(../images/sol_bg_sp.jpg) no-repeat center top/cover;
  }

  .home_solution_contents .home_section_ttl {
    margin-bottom: 3rem;
  }

  .home_solution_contents .home_section_ttl .txt_jp::before,
  .home_solution_contents .home_section_ttl .txt_jp::after {

    width: 3.618rem;
    height: 3.44rem;
    left: -4rem;
  }

  .sol_bg .home_section_ttl .txt_jp::after {
    left: auto;
    right: -4rem;
  }

  .sol_outer {
    max-width: 65rem;
  }

  .sol_item {
    flex-wrap: wrap;
    min-width: unset;
    width: 100%;
    padding: 0 2.5rem 0;
    margin-bottom: 3rem;
  }

  .sol_txt {
    width: 100%;
    padding: 1.4rem 2.2rem 2.4rem;
    position: relative;
    right: auto;
    bottom: auto;
    min-width: unset;
  }

  .sol_img {
    width: 100%;
  }

  .sol_img img {
    min-height: unset;
    max-height: unset;
  }

  .sol_txt::before {
    content: none;
  }

  .sol_txt h3 span img {
    height: 5.1rem;
    margin-left: 0;
  }

  .sol_txt h3 {
    font-size: 1.8rem;
    max-width: unset;
    width: 100%;
  }

  .sol_txt p {
    font-size: 1.6rem;
    line-height: 1.375;
    margin-left: 0;
  }

  .sol_ill {
    width: 36.3%;
    top: -5rem;
    left: auto;
    right: 0;
    max-width: 17rem;
  }

  .sol_item03 .sol_ill {
    width: 29.8%;
    max-width: 14rem;
    right: 2rem;
  }
}

/*================================================
 *  carmodel
 ================================================*/

.home_search_contents {
  padding: 5.5rem 0;
}

.icon_car-or {
  background-image: url(../images/icon_car-or.png);
  width: 7.887rem;
  height: 3.237rem;
}

.search_box {
  border: 0.3rem solid var(--color-primary);
  padding: 7.4rem 5.3% 7rem;
}

.search_link-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 5.3rem;
}

.search_link-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  background: var(--color-primary);
  color: var(--color-white);
  height: 10rem;
  border-radius: 0.5rem;
  font-size: 2.3rem;
  font-weight: 700;
}

.search_link-list .icon_car {
  width: 6.785rem;
  height: 2.785rem;
}

.search_link-list .icon_money {
  width: 2.386rem;
  height: 3.536rem;
}

.search_link-list .icon_shop {
  width: 3.714rem;
  height: 3.437rem;
}

@media screen and (max-width:768px) {
  .home_search_contents {
    padding: 3rem 20;
  }

  .icon_car-or {
    width: 4.777rem;
    height: 1.961rem;
  }

  .search_box {
    padding: 3.4rem 4.8% 3rem;
  }

  .search_link-list {
    gap: 0;
    margin-top: 5.3rem;
    margin-top: 1.6rem;
  }

  .search_link-list a {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.7rem 0;
    height: 7.3rem;
    border-radius: 0;
    font-size: 1.2rem;
  }

  .search_link-list li {
    position: relative;
  }

  .search_link-list li:not(:last-child)::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 4.7rem;
    background: var(--color-white);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .search_link-list .icon_car {
    width: 4.838rem;
    height: 2rem;
    margin-top: 0.6rem;
  }

  .search_link-list .icon_money {
    width: 1.701rem;
    height: 2.521rem;
  }

  .search_link-list .icon_shop {
    width: 2.648rem;
    height: 2.451rem;
  }
}

/*================================================
 *  point
 ================================================*/
.home_point_contents {
  background: #F2F5FC;
  padding: 10rem 0 20rem;
}

.point_hd-ttl {
  overflow: hidden;
  margin-bottom: 8rem;
}

.point_hd-ttl span {
  max-width: 102.6rem;
  margin: 0 auto;
  display: block;
}

.point_hd-ttl img {
  left: 1.3rem;
  position: relative;
}

/* point_item */
.point_item {
  padding: 4.4rem 4.5% 4rem;
  background: var(--color-white);
  border: 0.2rem solid #08358B;
  margin-top: 6rem;
  position: relative;
}

.point_item-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.point_item:has(.point_item-under) .point_item-top {
  padding-bottom: 4.5rem;
  margin-bottom: 4.5rem;
  border-bottom: 0.2rem solid #08358B;
}

.point_top-txt {
  width: 53%;
  min-width: 430px;
  padding-right: 1.6rem;
  padding-top: 1.4rem;
}

.point_top-txt h3 {
  font-size: 4rem;
  color: var(--color-primary);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.point_top-txt h3 span {
  display: block;
  font-size: 2.1rem;
  color: var(--color-black);
  margin-bottom: 0.5rem;
  line-height: 1.71;
  font-weight: 700;
}

.point_item p {
  font-size: 1.8rem;
  line-height: 1.777;
}

.point_top-txt p {
  margin-top: 1rem;
}

.point_top-img {
  width: 47%;
}

.point_num {
  display: block;
  position: absolute;
  width: 11rem;
  top: -5.5rem;
  left: -3.3rem;
}

/* point_item01 */
.point_item01 .point_item-under {
  display: flex;
  justify-content: space-between;
}

.point_item01 .point_under-box {
  width: 47.5%;
}

.point_item01 .point_under-box h4 {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2.4rem;
  line-height: 1.3;
}

.point_item01 .point_under-box h4 .point_ttl-img {
  width: 11.2rem;
  min-width: 11.2rem;
}

.point_item01 .point_under-box h4 .point_ttl-txt {
  color: var(--color-primary);
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 0.7rem;
}

.point_item01 .point_under-box h4 .point_ttl-txt span {
  font-size: 4rem;
}

.point_item01 .point_under-box p small {
  font-size: 1.2rem;
}

/* point_item02 */
.point_item02 .point_under-box:first-of-type {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
}

.point_item02 .point_item-under h4 {
  font-size: 2.1rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.point_item02 .point_item-under p {
  font-size: 1.8rem;
  line-height: 1.77;
}

.point_item02 .point_under-imglist {
  display: grid;
  gap: 4.4%;
  grid-template-columns: repeat(3, 1fr);
  margin: 2rem 0 0;
}

.point_item02 .point_under-img span {
  font-size: 1.8rem;
  display: inline-block;
  margin-top: 1.2rem;
}

/* point_under */
.point_under {
  margin-top: 10.6rem;
}

.point_under .home_section_ttl .txt_jp {
  position: relative;
}

.point_under .home_section_ttl .txt_jp::before,
.point_under .home_section_ttl .txt_jp::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/point_under-ttl.png);
  width: 6.1rem;
  height: 5.8rem;
  bottom: -1rem;
  left: -7.8rem;
}

.point_under .home_section_ttl .txt_jp::after {
  background-image: url(../images/point_under-ttl02.png);
  left: auto;
  right: -7.8rem;
}

.point_under-col2,
.point_under-col3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.6rem 5.8%;
  margin-top: 6rem;
}

.point_under-col3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 3.5%;
  margin-top: 6rem;
}


.point_under-item h3 {
  font-size: 2.1rem;
  color: var(--color-primary);
  margin-top: 2.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.point_under-col3 .point_under-item h3 {
  margin-top: 0;
}

.point_under-item p {
  font-size: 1.8rem;
  line-height: 1.77;
}

.point_under-item p small {
  font-size: 1.4rem;
}

@media screen and (max-width:768px) {
  .home_point_contents {
    padding: 3.2rem 0;
  }


  .point_hd-ttl {
    margin-bottom: 4.8rem;
  }

  .point_hd-ttl span {
    width: 100%;
    padding: 0 2.5rem;
    max-width: 60rem;
  }

  .point_hd-ttl img {
    left: 0;
  }

  .point_item {
    padding: 5.8rem 1.4rem 4rem;
    margin-top: 4.8rem;
  }

  .point_item-top {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .point_item:has(.point_item-under) .point_item-top {
    padding-bottom: 0;
    margin-bottom: 2.5rem;
    border-bottom: none;
  }

  .point_top-txt {
    width: 100%;
    min-width: unset;
    padding-right: 0;
  }

  .point_top-txt h3 {
    font-size: 3rem;
    text-align: center;
  }

  .point_top-txt h3 span {
    font-size: 1.8rem;
  }

  .point_item p {
    font-size: 1.6rem;
    line-height: 1.375;
  }

  .point_top-img {
    width: 100%;
  }

  .point_num {
    width: 7.6rem;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .point_item01 .point_item-under {
    flex-wrap: wrap;
  }

  .point_item01 .point_under-box {
    width: 100%;
  }

  .point_item01 .point_under-box:first-of-type {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 0.2rem solid #08358B;
  }

  .point_item01 .point_under-box h4 .point_ttl-txt {
    font-size: 1.6rem;
  }

  .point_item01 .point_under-box h4 .point_ttl-txt span {
    font-size: 3rem;
  }

  .point_item01 .point_under-box h4 .point_ttl-img {
    width: 8.3rem;
    min-width: 8.3rem;
  }

  .point_item01 .point_under-box h4 {
    gap: 1.3rem;
  }

  /* point_item02 */

  .point_item02 .point_under-box:first-of-type {
    border-bottom: 0.2rem solid #08358B;
  }

  .point_item02 .point_item-under p {
    font-size: 1.6rem;
    line-height: 1.375;
  }

  .point_item02 .point_under-imglist {
    gap: 0.5rem 1.1rem;
    grid-template-columns: repeat(2, 1fr);
  }



  .point_item02 .point_under-img span {
    font-size: 1.6rem;
    line-height: 1.375;
    margin-top: 0.5rem;
  }


  /* point_under */
  .point_under {
    margin-top: 3rem;
  }

  .point_under .home_section_ttl .txt_jp::before,
  .point_under .home_section_ttl .txt_jp::after {
    width: 3rem;
    height: 2.8rem;
    left: -4.6rem;
    bottom: -0.5rem;
  }

  .point_under .home_section_ttl .txt_jp::after {
    left: auto;
    right: -4.6rem;
  }

  .point_under-col2 {
    gap: 3rem;
    margin-top: 3rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .point_under-col3 {
    margin-top: 3rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .point_under-item h3 {
    font-size: 1.8rem;
    margin-top: 1.5rem;
  }

  .point_under-item p {
    font-size: 1.6rem;
    line-height: 1.375;
  }

  .point_under-item p small {
    font-size: 1.2rem;
  }
}

/*================================================
 *  outlet
 ================================================*/
.home_outlet_contents {
  background: url(../images/outlet_bg.jpg) no-repeat center top/cover;
  padding: 9.6rem 0 8.5rem;
  color: var(--color-white);
}

.home_outlet_contents .inner {
  width: 91.25%;
  max-width: 119.8rem;
}

.outlet_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100rem;
  margin: 0 auto 5.6rem;
}

.outlet_img {
  width: 50%;
  position: relative;
}

.outlet_ill {
  position: absolute;
  width: 38.4%;
  left: -8.4rem;
  bottom: -12rem;
}

.outlet_txt {
  width: 45.5%;
}

.outlet_txt h2 {
  font-size: 3rem;
  font-weight: 700;
}

.outlet_txt p {
  font-size: 1.8rem;
  margin-top: 3rem;
  line-height: 1.777;
}

.outlet_btn a {
  display: block;
  width: 30rem;
  font-size: 1.8rem;
  color: var(--color-primary);
  font-weight: 700;
  background: var(--color-white);
  border-radius: 0.5rem;
  margin: 0 auto;
  padding: 1.8rem 0;
  text-align: center;
}

@media screen and (max-width:768px) {
  .home_outlet_contents {
    background: url(../images/outlet_bg_sp.jpg) no-repeat center top / cover;
    padding: 3rem 0;
  }


  .home_outlet_contents .inner {
    width: 100%;
    max-width: 60rem;
  }

  .outlet_box {
    margin: 0 auto 3rem;
    flex-wrap: wrap;
  }

  .outlet_img {
    width: 100%;
  }


  .outlet_ill {
    max-width: 17rem;
    width: 43.4%;
    left: -2rem;
    bottom: -3rem;
  }

  .outlet_txt {
    width: 100%;
    margin-top: 4.4rem;
  }

  .outlet_txt h2 {
    font-size: 1.8rem;
  }

  .outlet_txt p {
    font-size: 1.4rem;
    margin-top: 1rem;
    line-height: 1.571;
  }

  .outlet_btn a {
    width: 24.2rem;
    font-size: 1.5rem;
  }
}

/*================================================
 *  carmodel
 ================================================*/
.home_carmodel_contents {
  padding: 12.8rem 0 0;
}

.carmodel_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 2.1%;
  margin-top: 4rem;
}



.carmodel_item {
  border: 0.3rem solid #E8E8E8;
  border-radius: 0.5rem;
  text-align: center;
  padding: 3.85rem 5.6% 1.5rem;
  display: flex;
  flex-direction: column;
}

.carmodel_img {
  margin-bottom: 2rem;
  display: block;
}

.carmodel_item h3 img {
  width: auto;
  max-width: unset;
  height: 2.7rem;
  margin: 0 auto;
}

.carmodel_item p {
  font-size: 1.8rem;
  line-height: 1.55;
  margin: 1.7rem 0 2.6rem;
  height: 100%;
}

.carmodel_item .c_btn {
  flex-grow: 1;
}

@media screen and (max-width:768px) {
  .home_carmodel_contents {
    padding: 2.5rem 0 0;
  }

  .carmodel_box {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 4rem;
  }

  .carmodel_item {
    padding: 0.5rem 3% 1.5rem;
  }

  .carmodel_img {
    margin-bottom: 0.7rem;
  }

  .carmodel_item h3 img {
    height: 2.2rem;
  }

  .carmodel_item p {
    font-size: 1.4rem;
    line-height: 1.28;
    margin: 0.4rem 0 0.6rem;
  }
}

/*================================================
 *  pricerang
 ================================================*/
.home_pricerange_contents {
  padding-top: 10rem;
}

.icon_money-or {
  background-image: url(../images/icon_money-or.png);
  width: 2.774rem;
  height: 4.11rem;
}

.home_pricerange_contents .carmodel_item {
  border: none;
  padding: 0;
}

@media screen and (max-width:768px) {
  .home_pricerange_contents {
    padding-top: 3rem;
  }

  .icon_money-or {
    width: 1.7rem;
    height: 2.267rem;
  }
}

/*================================================
 *  shop
 ================================================*/
.home_shoparea_contents {
  padding-top: 10rem;
}

.home_shoparea_contents .icon_shop-or {
  width: 4.7rem;
  height: 4.455rem;
}

.shoparea_img {
  margin-top: 2.6rem;
  margin-bottom: 7.5rem;
}

.shoparea_list {
  display: grid;
  gap: 7.4rem 3.7%;
  grid-template-columns: repeat(3, 1fr);
}

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

.shoparea_item h3 {
  font-size: 2.1rem;
  margin: 1.3rem 0 0.6rem;
  font-weight: 700;
  line-height: 1.3;
}

.shoparea_item .address {
  font-size: 1.8rem;
  line-height: 1.35;
  margin-bottom: 0.8rem;
}

.shoparea_item .shop_tel {
  color: var(--color-blue);
  font-family: var(--roboto);
  font-size: 2.2rem;
  font-weight: 700;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 0.2rem;
  margin-bottom: 0.8rem;
  flex-grow: 1;
}

.shoparea_item .shop_tel i {
  margin-top: 0.7rem;
}

.shoparea_item .shop_online {
  background: var(--color-blue);
  color: var(--color-white);
  display: block;
  text-align: center;
  font-size: 1.5rem;
  border-radius: 10rem;
  padding: 0.2rem 0 0.1rem;
  margin-bottom: 0.6rem;
  width: 17.5rem;
}

@media screen and (max-width:768px) {
  .home_shoparea_contents {
    padding-top: 3rem;
  }


  .home_shoparea_contents .icon_shop-or {
    width: 2.514rem;
    height: 2.36rem;
  }

  .shoparea_img {
    margin-bottom: 3rem;
  }

  .shoparea_list {
    gap: 2rem 1.6rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .shoparea_item .shop_online {
    font-size: 1.1rem;
    width: 100%;
  }

  .shoparea_item h3 {
    font-size: 1.6rem;
    margin: 0.8rem 0 1rem;
  }

  .shoparea_item .address {
    font-size: 1.6rem;
  }

  .shoparea_item .shop_tel {
    font-size: 2.1rem;
    gap: 0;
    flex-grow: 0;
  }

  .shoparea_item .shop_tel i {
    margin-top: 0.3rem;
  }
}

/*================================================
 *  calendar
 ================================================*/

.home_calendar_contents {
  padding-top: 16rem;
  padding-bottom: 11.6rem;
}

.icon_calendar {
  background-image: url(../images/icon_calendar.png);
  width: 4.4rem;
  height: 4.5rem;
}
.calendar_item {
    padding: 40px 30px;
    border: solid 1px #999999;
}
@media screen and (max-width:768px) {
    .calendar_item {
        padding: 20px 15px;
    }
}


.calendar_label {
  background: var(--color-primary);
  color: var(--color-white);
  display: block;
  font-size: 1.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.4rem 2rem;
  border-radius: 0.9rem;
  margin: 4rem auto 1.5rem;
}

.calendar_lead {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.calendar_lead span {
  font-weight: 700;
  color: var(--color-blue);
}


.calendar_box {
  display: grid;
  gap: 2.3rem 7.6%;
  grid-template-columns: repeat(2, 1fr);
}

.calendar_note {
  font-size: 1.4rem;
  margin-top: 1.75rem;
  line-height: 1.85;
}

@media screen and (max-width:768px) {
  .home_calendar_contents {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  .calendar_label {
    font-size: 1.4rem;
    padding: 0.2rem 2rem;
    margin: 3rem auto 0.5rem;
  }

  .calendar_lead {
    font-size: 1.4rem;
  }

  .calendar_box {
    gap: 2.3rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .calendar_note {
    font-size: 1.2rem;
    margin-top: 2rem;
    line-height: 1.66;
  }
}


/*================================================
 *  footer
 ================================================*/
footer {
  background: #FCF8F2;
}

.footer_main_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9.5rem;
  padding-bottom: 8.3rem;
}

.ft_logo {
  width: 35.8rem;
}


.ft_social {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1.9rem;
}

.ft_social li {
  width: 4rem;
}

footer .copyright {
  background: #4E4E4E;
  color: var(--color-white);
  text-align: center;
  font-size: 1rem;
  padding: 3rem 0;
}

@media screen and (max-width:1024px) {
  footer {
    margin-bottom: 6.5rem;
  }
}

@media screen and (max-width:768px) {
  .footer_main_inner {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 9.5rem;
    padding-bottom: 2.3rem;
  }

  .ft_logo {
    width: 100%;
    padding-bottom: 9.4rem;
    max-width: 33.3rem;
  }


  .ft_social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.9rem;
    width: 100%;
  }

  footer .copyright {
    font-size: 0.8rem;
    padding: 2.5rem 0;
  }
}




/*================================ Modal Window ===============================*/
/*----- base -----*/
.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1005;
  padding: 0;
  box-sizing: border-box;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
}

.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}

.blocker.behind {
  background-color: transparent;
}

.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  max-width: 740px;
  box-sizing: border-box;
  width: 90%;
  background: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px #000;
  text-align: left;
}

.modal a.close-modal {
  display: block;
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../images/btn_close.svg");
}

.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px;
}

.modal-spinner > div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.modal-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.modal-spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.modal-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
  }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
  }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}


/*----- edit -----*/
.blocker {
  background-color: rgba(0, 0, 0, 0);
  height: calc(100% - 105px);
  top: 105px;
}
@media screen and (max-width:1024px) {
    .blocker {
        height: calc(100% - 58px - 65px);
        top: 58px;
    }
}

.modal {
  background-color: #fff;
  border: none;
  border-radius: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  box-shadow: none;
}
.modal_window {
    height: 100%;
}
.modal_contents {
    height: 100%;
}

.modal a.close-modal {
  width: 70px;
  height: 70px;
  top: 15px;
  right: 15px;
  border-radius: 100%;
}
@media screen and (max-width: 1000px) {
  .modal a.close-modal {
    width: 45px;
    height: 45px;
  }
}

.btn_modal_close {
  width: 100%;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.btn_modal_close a {
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55px;
  background-color: #fff;
  border: solid 1px #000;
  border-radius: 27.5px;
}

/*----- 基本 -----*/
.modal iframe {
  display: block;
  width: 100%;
  height: 100%;
}




