@charset "utf-8";
/* CSS Document */

html {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #333333;
}
@media screen and (min-width:768px){
  body {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.6;
  }
}


/*------------------
ナビメニュー
------------------*/

.header {
  position: sticky; /* headerを追従にする */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 68px;
  background-color: #ffffff;
  z-index: 9999;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  position: relative;
}
.logo_wrap {
  
}
.logo {
  width: 146px;
  z-index: 9999;
  margin-left: 20px;
}
.logo h1 {
  width: 100%;
}
.logo h1 img {
  width: 100%;
  height: auto;
  display: block;
}

.head_cta_wrap {
  position: absolute;
  top: 0;
  right: 68px;
}
.btn_line_head {
  width: 120px;
  height: 68px;
  background-color: #06C755;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  /*display: flex;*/
  display: none;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
  text-decoration: none;
}
.btn_line_head::before {
  content: "";
  width: 31px;
  height: 31px;
  background-image: url("../images/ico_line_baloon.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.btn_line_head:hover {
  
}

.btn_examination_head,
.btn_request_head {
  display: none;
}

@media screen and (min-width:961px){
  .header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
  }
  .header__inner {
    display: block;
    padding: 0;
    width: 100%;
    margin: 0 auto;
  }
  .logo_wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .logo {
    width: 240px;
    margin-top: 8px;
  }
  .logo h1 img {
    width: 140px;
    height: auto;
    display: block;
  }
  .head_cta_wrap {
    position: relative;
    top: 0;
    right: 68px;
    display: flex;
    gap:10px;
  }
  .btn_line_head,
  .btn_examination_head,
  .btn_request_head {
  display: flex;
  width: 180px;
  height: 60px;
  top: 0;
  right: 0;
  font-size: 16px;
  line-height: 1.2;
  gap: 15px;
  border-radius: 10px;
  }
  .btn_examination_head,
  .btn_request_head {
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }
  .btn_examination_head {
    background-color: #049DFF;
  }
  .btn_request_head {
    background-color: #004484;
  }
  .btn_line_head::before,
  .btn_examination_head::before,
  .btn_request_head::before{
    content: "";
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .btn_examination_head::before {
    background-image: url("../images/ico_examination.png");
  }
  .btn_request_head::before {
    background-image: url("../images/ico_request.png");
  }
  .btn_line_head br {
    display: none;
  }
}


/* ハンバーガーボタンのデザイン */
.drawer__button {
  position: relative;
  width: 60px;
  height: 68px;
  padding-left: 20px;
  background-color: #004484;
  border: none;
  cursor: pointer;
  z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
  clip-path: polygon(20% 0%, 100% 1%, 100% 100%, 0% 100%);
}
.drawer__button::after {
  content: "メニュー";
  position: absolute;
  top: 5px;
  right: 0;
  left: 0;
  margin: 0 auto;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding-left: 10px;
}

@media screen and (min-width:961px){
  .drawer__button {
    display: none;

  }
}



/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 60%;
  left: 55%;
  width: 40px;
  height: 2px;
  background-color: #ffffff;
  transform: translateX(-50%);
}
.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 10px));
  transition: transform 0.3s ease;
}
.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 10px));
  transition: transform 0.3s ease;
}
/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}


/* メニューのデザイン */
.drawer__nav {
  position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #F8F8F8;
  transition: opacity 0.5s ease;
  opacity: 0;
  visibility: hidden;
}
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease;
}
.drawer__nav__inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  padding: 68px 0 0 0;
  margin: 0 0 0 auto;
  overflow: scroll;
  transition: transform 0.5s ease;
}
.drawer__nav.active .drawer__nav__inner {
  transition: opacity 0.5s ease;
}
.drawer__nav__menu {
  width: 90%;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
}
.drawer__nav__link,.nav-open {
  display: flex;
  align-content: center;
  text-decoration: none;
  border-bottom: solid 1px #004484;
  position: relative;
  color: #333333;
  font-size: 16px;
  font-weight: 700;
}

.nav-open {
  height: 70px;
}

.drawer__nav__link {
  padding-top: 25px;
  height: 50px;
}

.drawer__nav__item {
  position: relative;
}
.drawer__nav__item::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 15px;
  top: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/arrow_nav.png);
}
.drawer__nav__item:has(span.active)::after {
  background-image: url(../images/arrow_nav.png);
  transform: rotate(90deg);/* 回転 */
}
 

@media screen and (min-width:961px){
  .drawer__nav {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: none;
    transition: opacity 0.5s ease;
    opacity: 1;
    visibility:visible;
  }
  .drawer__nav.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease;
  }
  .drawer__nav__inner {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: auto;
  height: auto;
  background-image: none;
  padding: 0;
  margin: 0 0 0 auto;
  overflow: visible;
  transition: transform 0.5s ease;
  background-color: #F4F4F4;
  }
  .drawer__nav.active .drawer__nav__inner {
    transition: opacity 0.5s ease;
  }
  .drawer__nav__menu {
    list-style: none;
    display: flex;
    justify-content: center;
  }
  .drawer__nav__item {
    
  }
  .drawer__nav__link,.nav-open {
    display: block;
    text-align: center;
    line-height: 1.2;
    text-decoration: none;
    padding: 10px;
    border-bottom: none;
    height: auto;
  }
  .drawer__nav__item::after {
    background: none;
  }

}



.nav-open{
  width: auto;
  display: block;
}

@media screen and (min-width:961px){

  .nav-open{
    position: relative;
    width: auto;
  }

}


nav .sub-menu {
  display: none;
}
nav .sub-menu a {
  color: #333333;
  font-size: 16px;
  font-weight: 700;
  padding: 20px;
  display: block;
  background-color: #feefdc;
  text-decoration: none;
  background-image: url(../images/arrow_nav_sub.png);
  background-repeat: no-repeat;
  background-position: right 20px center;
  border-bottom: 1px solid #FA9616;
  background-size: 18px 18px;
  line-height: 1.4;
}

@media screen and (min-width:961px){
  /* 子メニュー - .sub-menu PCだけで機能*/
  /* PCだけhoverで開閉、スマホはjsで開閉*/
  nav .sub-menu {
    position: absolute;
    width: auto;
    background: #ffffff;
    top: 80px;
    white-space: nowrap;
    opacity: 0;
    display: block;
    visibility: hidden;
    transition: 0.5s;
  }
  nav .sub-menu a {
  color: #333333;
  padding: 10px 60px 10px 15px;
  display: block;
  background-color: #feefdc;
  border-bottom: 1px solid #FA9616;
  background-image: url(../images/arrow_nav_sub.png);
  background-repeat: no-repeat;
  background-position: right 20px center;
  }
  nav .sub-menu a:hover {
    
  }

  /* ホバーで子メニュー表示 */
  nav .menu-item-has-children:hover {
    border-bottom: 2px solid #FA9616;
  }
  nav .menu-item-has-children:hover ul {
    opacity: 1;
    visibility: visible;
  }
  nav .menu-item-has-children:hover .nav-open {
    color: #333333;  
  }
  nav li.menu-item-has-children li a:hover {
  background-color: #F9D3A3;
  }
  
  
}




/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}



/*------------------
フッター
------------------*/

.footer {
  background-color: #333333;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
}

.footer a {
  color: #FFFFFF;
  display: block;
  font-size: 12px;
}
.footer_copy {
  font-size: 12px;
  text-align: center;
  color: #FFFFFF;
  padding: 0;
}

@media screen and (min-width:768px){
  .footer {
    margin-bottom: 0;
  }
 
  .footer_copy {

  }
}


/*------------------
スマホ用フッタのCTA
------------------*/

.cta_sp_wrap {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 80px;
  background-color: #DEDEDE;
  display: flex;
  justify-content: center;
  align-items: center;
  gap:2%;
}
.btn_cta_sp_tel,
.btn_cta_sp_reserve {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 47%;
  height: 60px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  -webkit-box-shadow: 0px 3px #828282;
  box-shadow: 0px 3px #828282;
}
.btn_cta_sp_tel {
  background-color: #F50000;
}
.btn_cta_sp_reserve {
  background-color: #F57800;
}
.btn_cta_sp_tel::before,
.btn_cta_sp_reserve::before {
  content: "";
  width: 38px;
  height: 38px;
  background-repeat: no-repeat;
  background-size: cover;
}
.btn_cta_sp_tel::before {
  background-image: url(../images/ico_tel.png);
}
.btn_cta_sp_reserve::before {
  background-image: url(../images/ico_reserve.png);
}

@media screen and (min-width:768px){
  .cta_sp_wrap {
    display: none;
  }
}




/*------------------
コンテンツ
------------------*/


/*コンテンツ共通*/

.sp {
  display: block;
}
.pc {
  display: none;
}
.section {
  padding: 50px 0;
}
.inner_section {
  padding: 0;
}

main {
  padding: 0;
  margin: 0;
}

.wrapper {
  width: 100%;
  padding: 0;
  overflow-x: hidden;
}

 
@media screen and (min-width:768px){
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }
  .section {
    padding: 80px 0 50px;
  }
  main {

  }
  .inner_section {
    max-width: 1000px;
    margin: 0 auto;
  }
  .wrapper {
  }
}




.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  height: 52px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.btn_red {
  background-color: #D32D25;  
  width: 100%;
  color: #FFFFFF;
}
.btn_red::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background-image: url(../images/arrow_btn_w.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.btn_beige {
  background-color: #BA9E5C;  
  width: 100%;
  color: #FFFFFF;
}
.btn_beige::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background-image: url(../images/arrow_btn_w.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.btn_green {
  background-color: #729140;  
  width: 100%;
  color: #FFFFFF;
}
.btn_green::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background-image: url(../images/arrow_btn_w.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width:768px){
  .btn {
    column-gap: 20px;
    height: 70px;
    font-size: 16px;
    margin: 0 auto;
  }

  .btn_red {
    background: none; 
    color: #D32D25;
    border-bottom: 2px solid #D32D25;
    width: 230px;
  }
  .btn_red::after {
    width: 44px;
    height: 44px;
    background-image: url(../images/arrow_red.png);
  }
  .btn_beige {
    background: none; 
    color: #BA9E5C;
    border-bottom: 2px solid #BA9E5C;
    width: 230px;
  }
  .btn_beige::after {
    width: 44px;
    height: 44px;
    background-image: url("../images/arrow_beige.png");
  }
  .btn_green {
    background: none; 
    color: #729140;
    border-bottom: 2px solid #729140;
    width: 230px;
  }
  .btn_green::after {
    width: 44px;
    height: 44px;
    background-image: url("../images/arrow_green.png");
  }
}



/*------------------
TOPページ
------------------*/

/* メインビジュアル */

.mv {
  width: 100%;
  margin:0 auto 50px;
}

.mv_img {
  width: 100%;
}
.mv_img img {
  width: 100%;
  display: block;
}

@media screen and (min-width:768px){
  .mv {
    margin:0 auto;
    position: relative;
  }
  .mv_img img {
    aspect-ratio: 140 / 85;
  }

}


/* 中古車と費用を比較 */

.compare {
  margin-bottom: 60px;
}
.compare_wrap {
  margin-bottom: 60px;
}
.compare_wrap .lineup_block {
  margin: 0 auto 120px;
}
.h2_compare {
  border-top: 3px solid #333333;
  border-bottom: 3px solid #333333;
  position: relative;
  text-align: center;
  color: #F50000;
  font-weight: 900;
  font-size: 30px;
  padding: 10px;
  margin: 0 20px 55px;
}
.h2_compare::before {
  content: "";
  width: 127px;
  height: 88px;
  position: absolute;
  background-image: url(../images/h2_compare.png);
  background-repeat: no-repeat;
  background-size: cover;
  top: -91px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.compare_block_wrap {
  margin-bottom: 80px;
}
.compare_block {
  border-radius: 10px;
  padding: 0 10px;
}
.compare_old {
  border: 3px solid #747474;
  background-color: #F5F5F5;
  margin-bottom: 60px;
}
.compare_new {
  border: 3px solid #F50000;
  background-color: #FFF5F5;
}

.compare_block_head {
  position: relative;
  display: block;
  width: 280px;
  margin: -25px auto 30px;
  padding: 10px;
  border-radius: 25px;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
}
.compare_block_head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  translate: -50% 100%;
}

.compare_old .compare_block_head {
  border: 2px solid #747474;
  background-color: #747474;
  font-size: 20px;
}
.compare_old .compare_block_head::after {
  border-color: #747474 transparent transparent;
}

.compare_new .compare_block_head {
  border: 2px solid #F50000;
  background-color: #F50000;
  font-size: 20px;
}
.compare_new .compare_block_head::after {
  border-color: #F50000 transparent transparent;
}

.compare_block img {
  width: 100%;
}
.compare_block p {
  padding: 20px 10px;
}
.compare_block p span {
  color: #F50000;
  font-size: 20px;
  font-weight: 700;
}
.compare_block p.caution {
  font-size: 14px;
}


@media screen and (min-width:768px){
  .compare {

  }
  .compare_wrap {
    margin-bottom: 60px;
  }
  .compare_wrap .lineup_block {
    margin: 0 auto 185px;
  }
  .h2_compare {
    font-size: 48px;
    padding: 40px;
    margin: 0 auto 80px;
    max-width: 660px;
  }
  .h2_compare::before {
    width: 220px;
    height: 152px;
    top: -155px;
  }
  .compare_block_wrap {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 80px;
  }
  .compare_block {
    width: 45%;
    border-radius: 10px;
    padding: 0 10px;
  }
  .compare_old {
    border: 3px solid #747474;
    background-color: #F5F5F5;
    margin-bottom: 0;
  }
  .compare_new {
    border: 3px solid #F50000;
    background-color: #FFF5F5;
  }

  .compare_block_head {
    position: relative;
    display: block;
    width: 280px;
    margin: -25px auto 30px;
    padding: 10px;
    border-radius: 25px;
    text-align: center;
    font-weight: 700;
    line-height: 1.5;
    color: #ffffff;
  }
  .compare_block_head::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 20px 10px 0 10px;
    translate: -50% 100%;
  }

  .compare_old .compare_block_head {
    border: 2px solid #747474;
    background-color: #747474;
    font-size: 20px;
  }
  .compare_old .compare_block_head::after {
    border-color: #747474 transparent transparent;
  }

  .compare_new .compare_block_head {
    border: 2px solid #F50000;
    background-color: #F50000;
    font-size: 20px;
  }
  .compare_new .compare_block_head::after {
    border-color: #F50000 transparent transparent;
  }

  .compare_block img {
    width: 100%;
  }
  .compare_block p {
    padding: 20px 10px;
  }
  .compare_block p span {
    color: #F50000;
    font-size: 20px;
    font-weight: 700;
  }
  .compare_block p.caution {
    font-size: 14px;
  }
}

.same {
  background-image: url(../images/bg_radiation_sp.png);
  background-repeat: no-repeat;
  background-position: center top 20px;
  background-size: cover;
}

.same_head {
  position: relative;
  display: block;
  width: 180px;
  margin: 0 auto 30px;
  padding: 10px;
  border: 2px solid #333333;
  border-radius: 25px;
  background-color: #ffffff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #000000;
}

.same_head::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #333333 transparent transparent;
  translate: -50% 100%;
}

.same_head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15.5px 7.8px 0 7.8px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}
.same img {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}
.same_p1 {
  font-size: 20px;
  font-weight: 700;
  padding: 0 20px;
}
.same_p2 {
  font-size: 30px;
  font-weight: 900;
  padding: 0 20px 200px;
  position: relative;
}
.same_p2 span {
  border-bottom: 3px solid #F50000;
}
.same_p2::before {
  content: "";
  position: absolute;
  width: 133px;
  height: 162px;
  background-image: url(../images/same_01.png);
  background-size: cover;
  bottom: 0;
  left: 20px;
}
.same_p2::after {
  content: "";
  position: absolute;
  width: 157px;
  height: 145px;
  background-image: url(../images/same_02.png);
  background-size: cover;
  bottom: 0;
  right: 20px;
}


@media screen and (min-width:768px){
  .same {
  background-image: url(../images/bg_radiation_pc.png);
  position: relative;
  background-size: 100% auto;
  }
  .same_head {
    width: 210px;
    margin: 0 auto 50px;
    padding: 10px;
    font-size: 20px;
    line-height: 1.5;
  }
  .same_head::before {
    border-width: 20px 10px 0 10px;
    translate: -50% 100%;
  }
  .same_head::after {
    border-width: 15.5px 7.8px 0 7.8px;
    translate: -50% 100%;
  }
  .same img {
    max-width: 700px;
    margin: 0 auto 50px;
  }
  .same_p1 {
  font-size: 24px;
  padding: 0;
  text-align: center;
  }
  .same_p2 {
  font-size: 42px;
  padding: 0 0 50px;
  text-align: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .same_p2 span {
    border-bottom: 3px solid #F50000;
  }
  .same_p2::before {
    width: 230px;
    height: 280px;
    bottom: 0;
    left: 20px;
  }
  .same_p2::after {
    width: 210px;
    height: 194px;
    bottom: 0;
    right: 20px;
  }
}


/* コンテンツH2 共通 */

.h2_contents {
  border-top: 3px solid #333333;
  border-bottom: 3px solid #333333;
  padding: 20px;
  position: relative;
  margin-bottom: 40px;
}
.campaign .h2_contents {
  background-color: #F50000;
}
.reason .h2_contents {
  background-color: #00CB2F;
}
.guarantee .h2_contents {
  background-color: #00B585;
}
.popular .h2_contents {
  background-color: #FF6200;
}
.newcar5 .h2_contents {
  background-color: #00B6CE;
}
.reason_onix .h2_contents {
  background-color: #FF5395;
}
.voice .h2_contents {
  background-color: #E8E8E8;
}
.flow .h2_contents {
  background-color: #E8E8E8;
}
.faq .h2_contents {
  background-color: #E8E8E8;
}
.info .h2_contents {
  background-color: #E8E8E8;
}
.value .h2_contents {
  background-color: #FFE400;
}

.h2_contents::before {
  content: "";
  width: 149px;
  height: 98px;
  position: absolute;
  top: -80px;
  right: 0;
  left: 0;
  margin: 0 auto;
  background-image: url(../images/h2_contents.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.h2_sub {
  display: block;
  color: #FFFFFF;
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 500;
  text-align: center;
}
.h2_sub span {
  font-weight: 900;
}

.h2_contents_inner {
  font-weight: 900;
  font-size: 36px;
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.h2_contents_inner span {

  color: #F50000;
}

@media screen and (min-width:768px){
  .h2_contents {
    padding: 30px;
    margin-bottom: 60px;
  }
  .h2_contents::before {
    width: 220px;
    height: 145px;
    top: -120px;
  }
  .h2_contents_inner {
    font-size: 62px;
    padding: 40px;
    display: block;
    line-height: 1.2;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
  }
  .h2_contents_inner span {
    display: initial;
  }
}







/* 今月のお得なキャンペーン */

.campaign {
  margin-bottom: 150px;
}
.campaign_inner {
  padding: 0 20px;
}
.campaign_inner img {
  width: 100%;
}
@media screen and (min-width:768px){
  .campaign {
    margin-bottom: 220px;
  }
  .campaign_inner {
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
  }
  .campaign_inner img {
    width: 100%;
  }
}


/* 中古車の予算で新車に乗れる理由! */

.reason {
  margin-bottom: 150px;
}
.reason_inner {
  padding: 0 20px;
}

.h3_reason {
  position: relative;
  display: inline-block;
  width: 96%;
  margin: 0 auto 30px;
  padding: 10px;
  border: 3px solid #f50000;
  border-radius: 10px;
  background-color: #ffebde;
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.5;
  color: #f50000;
}
.h3_reason::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #f50000 transparent transparent;
  translate: -50% 100%;
}
.h3_reason::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 13.3px 6.6px 0 6.6px;
  border-color: #ffebde transparent transparent;
  translate: -50% 100%;
}
.reason_difference {
  margin-bottom: 50px;
}
.reason_difference img {
  width: 100%;
  margin-bottom: 20px;
}
.reason_desc {
  
}
.reason_desc span {
  color: #F50000;
  font-weight: 700;
}
.reason_inner .caution {
  font-size: 14px;
  margin-bottom: 50px;
}
.difference {
  
}
.difference_block {
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
}
.difference_block::before {
  width: 32px;
  color: #FFFFFF;
  font-size: 30px;
  text-align: center;
  font-family: "Anton", sans-serif;
}
.difference_01 {
  background: linear-gradient(90deg, #F50000 32px, #F50000 32px, #FFF7D6 32px, #FFF7D6 100%);
  border: 3px solid #F50000;
}
.difference_02 {
  background: linear-gradient(90deg, #00B6CE 32px, #00B6CE 32px, #ffffff 32px, #ffffff 100%);
  border: 3px solid #00B6CE;
}
.difference_03 {
  background: linear-gradient(90deg, #00CB2F 32px, #00CB2F 32px, #ffffff 32px, #ffffff 100%);
  border: 3px solid #00CB2F;
}
.difference_01::before {
  content: "1";
}
.difference_02::before {
  content: "2";
}
.difference_03::before {
  content: "3";
}
.difference_01::after {
  content: "";
  width: 157px;
  height: 58px;
  background-image: url(../images/osusume.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 5px;
  top: -40px;
}

.difference_txt {
  background-repeat: no-repeat;
  background-position: left top 5px;
  background-size: 124px auto;
}
.difference_01 .difference_txt {
  background-image: url(../images/choices_01.png);
}
.difference_02 .difference_txt {
  background-image: url(../images/choices_02.png);
}
.difference_03 .difference_txt {
  background-image: url(../images/choices_03.png);
}

.difference_head {
  font-weight: 900;
  font-size: 30px;
  line-height: 1.2;
  padding: 10px 20px 10px 130px;
  white-space: nowrap;
}
.difference_desc {
  padding: 10px;
}

@media screen and (min-width:768px){
  .reason {
    margin-bottom: 200px;
  }
  .reason_inner {
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .h3_reason {
    display: block;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 20px;
    font-size: 42px;
    line-height: 1;
  }
  .h3_reason::before {
    bottom: 0;
    left: 50%;
    border-width: 20px 10px 0 10px;
    translate: -50% 100%;
  }

  .h3_reason::after {
    bottom: 0;
    left: 50%;
    border-width: 13.3px 6.6px 0 6.6px;
    translate: -50% 100%;
  }
  .reason_difference {
    margin-bottom: 100px;
    display: flex;
    flex-direction: column-reverse;
  }
  .reason_difference img {
    max-width: 700px;
    display: block;
    margin: 20px auto 40px;
  }
  .reason_desc {
  text-align: center;
  }
  .reason_desc span {
    color: #F50000;
    font-weight: 700;
  }
  .reason_inner .caution {
    font-size: 14px;
    margin-bottom: 50px;
    text-align: center;
  }
  .difference {

  }
  .difference_block {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    padding: 20px 0;
  }
  .difference_block::before {
    width: 40px;
    font-size: 42px;
  }
  .difference_01 {
    background: linear-gradient(90deg, #F50000 40px, #F50000 40px, #FFF7D6 40px, #FFF7D6 100%);
  }
  .difference_02 {
    background: linear-gradient(90deg, #00B6CE 40px, #00B6CE 40px, #ffffff 40px, #ffffff 100%);
  }
  .difference_03 {
    background: linear-gradient(90deg, #00CB2F 40px, #00CB2F 40px, #ffffff 40px, #ffffff 100%);
  }
  .difference_01::after {
    width: 193px;
    height: 71px;
    right: 100px;
    top: -30px;
  }

  .difference_txt {
    background-repeat: no-repeat;
    background-position: left 50px center;
    background-size: 168px auto;
    padding-left: 248px;
  }

  .difference_head {
    font-size: 30px;
    line-height: 1.2;
    padding: 5px;
    white-space: nowrap;
  }
  .difference_desc {
    padding: 5px;
  }

}



/* ２大保証で万が一のときも安心！ */

.guarantee {
  margin-bottom: 80px;
}
.guarantee_inner {
  padding: 0 20px;
}

.guarantee_block {
  margin-bottom: 50px;
}
.guarantee_block img {
  width: 100%;
}
.guarantee_txt {
  
}
.h3_guarantee {
  font-weight: 900;
  font-size: 30px;
  border-bottom: 3px solid #F50000;
  display: flex;
  align-items: center;
  gap:20px;
  line-height: 1.2;
  padding: 10px;
  margin-bottom: 10px;
}
.h3_guarantee span {
  font-weight: normal;
  font-size: 52px;
  font-family: "Anton", sans-serif;
  color: #F50000;
}
.guarantee_txt p {
  padding: 20px;
}
@media screen and (min-width:768px){
  .guarantee {
    margin-bottom: 120px;
  }
  .guarantee_inner {
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .guarantee_block {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .guarantee_img {
    width: 49%;
  }
  .guarantee_txt {
    width: 49%;
  }
  .h3_guarantee {
    font-size: 42px;
    display: flex;
    align-items:flex-start;
    gap:20px;
    line-height: 1.2;
    padding: 20px;
    margin-bottom: 30px;
  }
  .h3_guarantee span {
    font-size: 42px;
  }
}



/* 人気車種カーラインナップ */

.popular {
  margin-bottom: 150px;
  background-image: url(../images/bg_popular_top_sp.png);
  background-size: auto 150px;
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 150px;
}
.popular .lineup_wrap {
  margin-bottom: 80px;
}

.h3_popular_wrap {
  padding: 0 20px;
  margin: 0 20px 20px 0;
}
.h3_popular {
  color: #FFFFFF;
  padding: 20px;
  border-left: 6px solid #FFFFFF;
  font-size: 24px;
  font-weight: 900;
}
.h3_popular span {
  font-size: 30px;
}
.light {
  background-color: #FF6200;
}
.welfare {
  background-color: #00CB2F;
}
.popular_caution {
  padding: 20px;
  margin: -40px 0 30px;
}

.timing {
  background-image: url(../images/bg_radiation_sp.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 45px;
}
.timing_p1 {
  font-weight: 700;
  font-size: 20px;
  padding: 0 40px;
  margin-bottom: 5px;
}
.timing_p2 {
  color: #F50000;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.6;
  padding: 0 40px;
  margin-bottom: 10px;
}
.timing_p2 span {
  border-bottom: 3px solid #F50000;
}
.timing_img {
  padding-top: 20px;
}
.timing_img img {
  width: 100%;
}

@media screen and (min-width:768px){
  .popular {
    margin-bottom: 200px;
    background-image: url(../images/bg_popular_top_pc.png);
    background-size: auto 236px;
    padding-top: 236px;
  }
  .h3_popular_wrap {
    padding: 0 20px;
    margin: 0 20px 20px 0;
  }
  .h3_popular {
    max-width: 1040px;
    margin: 0 auto;
    padding: 25px;
    font-size: 36px;
  }
  .h3_popular span {
    font-size: 42px;
  }
  .light {
    background: linear-gradient(90deg, #FF6200 0%, #FF6200 50%, #ffffff 50%, #ffffff 100%);
  }
  .welfare {
    background: linear-gradient(90deg, #00CB2F 0%, #00CB2F 50%, #ffffff 50%, #ffffff 100%);
  }
  .popular_caution {
    max-width: 1100px;
    padding: 0;
    text-align: center;
    margin: -60px auto 50px;
  }
  .timing {
    background-image: url(../images/bg_radiation_pc.png);
    padding-top: 70px;
    margin-bottom: 60px;
  }
  .timing_p1 {
  font-size: 24px;
  padding: 0;
  margin-bottom: 5px;
  text-align: center;
  }
  .timing_p2 {
  font-size: 42px;
  line-height: 1.4;
  padding: 0;
  margin-bottom: 15px;
  text-align: center;
  }
  .timing_p2 span {
    border-bottom: 3px solid #F50000;
  }
  .timing_img {
    padding-top: 0;
    max-width: 700px;
    margin: -5px auto 0;
  }
  .timing_img img {
    width: 100%;
  }
}



/* 中古車より新車の方がいい5つの理由 */

.newcar5 {
  
}
.newcar5 {
  margin-bottom: 60px;
}
.newcar5_inner {
  padding: 0 20px;
}

.newcar5_block {
  margin-bottom: 50px;
}
.newcar5_block img {
  width: 100%;
}
.newcar5_txt {
  
}
.h3_newcar5 {
  font-weight: 900;
  font-size: 30px;
  background: linear-gradient(90deg, #F50000 0%, #F50000 32px, #ffffff 32px, #ffffff 100%);
  border-bottom: 3px solid #F50000;
  display: flex;
  align-items: center;
  gap:20px;
  line-height: 1.2;
  padding: 10px;
  margin-bottom: 10px;
}
.h3_newcar5 span {
  font-weight: normal;
  font-size: 30px;
  font-family: "Anton", sans-serif;
  color: #FFFFFF;
}
.newcar5_txt p {
  padding: 20px;
}
@media screen and (min-width:768px){
  .newcar5 {
    margin-bottom: 150px;
  }
  .newcar5_inner {
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
  }

  .newcar5_block {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .newcar5_img {
    width: 49%;
  }
  .newcar5_txt {
    width: 49%;
  }
  .h3_newcar5 {
    background: linear-gradient(90deg, #F50000 0%, #F50000 42px, #ffffff 42px, #ffffff 100%);
    font-size: 42px;
    display: flex;
    gap:40px;
    line-height: 1.2;
    padding: 20px 10px;
    margin-bottom: 30px;
  }
  .h3_newcar5 span {
    font-size: 42px;
  }
}


/* 新車購入でオニキス神戸が選ばれる理由 */

.reason_onix {
  margin: 70px 0 80px;
  background-image: url(../images/bg_reason_onix_top_sp.png);
  background-size: auto 157px;
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 157px;
}
.reason_onix_inner {
  padding: 0 20px;
  margin-bottom: 20px;
}
.reason_onix_inner img {
  width: 100%;
}
.reason_onix p {
  text-align: center;
}

@media screen and (min-width:768px){
  .reason_onix {
    margin-bottom: 150px;
    background-image: url(../images/bg_reason_onix_top_pc.png);
    background-size: auto 280px;
    padding-top: 276px;
  }
  .reason_onix_inner {
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
  }
}



/* お客様の声 */

.voice {
  padding: 150px 0 30px;
}
.voice_inner {
  padding: 0 20px;
}
.voice_block {
  
}
.voice_txt {
  
}
.h3_voice {
  color: #F50000;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}
.voice_customer {
  font-size: 14px;
  margin-bottom: 10px;
}
.voice_img {
  margin-bottom: 20px;
}
.voice_img img {
  width: 100%;
}

.readmore {
  
}
.readmore-content {
  
}

.readmore {
  position: relative;
  margin: 50px auto 0;
  padding: 20px 20px 75px;
  border: 1px solid #333333;
  border-radius: 10px;
  transition: 0.5s;
}

.readmore label {
  position: absolute;
  display: table;
  left: 50%;
  bottom: 0;
  margin: 0 auto;
  width: 100%;
  padding: 10px 0;
  color: #fff;
  text-align: center;
  background-color: #FFE400;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 1;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.readmore label::before{
  content: '';
  width: 28px;
  height: 28px;
  display: block;
  background-image: url(../images/arrow_detail.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
}

.readmore input[type="checkbox"]:checked ~ label::before {
  transform: rotate(180deg);
}

.readmore input[type="checkbox"]{
  display: none;
}

.readmore-content {
  position: relative;
  height: 400px;
  overflow: hidden;
  transition: 0.5s;
}

.readmore input[type="checkbox"]:checked ~ .readmore-content {
  height: auto;
}
.readmore-content::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: linear-gradient( rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, #fff 100%);
}

.readmore input[type="checkbox"]:checked ~ .readmore-content::before {
  display: none;
}

@media screen and (min-width:768px){
  .voice {
    padding: 220px 0 100px;
  }
  .voice_inner {
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
  }
  .voice_block {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    padding: 30px 0;
    margin: 0 auto;
  }
  .voice_txt {
    width: 49%;
  }
  .h3_voice {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .voice_customer {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .voice_img {
    width: 49%;
  }

  .readmore {

  }
  .readmore-content {

  }

  .readmore label::before{
    width: 32px;
    height: 32px;
    margin: 0 auto;
  }

  .readmore input[type="checkbox"]:checked ~ label::before {
    transform: rotate(180deg);
  }

  .readmore input[type="checkbox"]{
    display: none;
  }

  .readmore-content {
    position: relative;
    height: 400px;
    overflow: hidden;
  }

  .readmore input[type="checkbox"]:checked ~ .readmore-content {
    height: auto;
  }
  .readmore-content::before {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background: linear-gradient( rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, #fff 100%);
  }

  .readmore input[type="checkbox"]:checked ~ .readmore-content::before {
    display: none;
  }
}



/* 納車までの流れ */

.flow {
  padding: 150px 0 20px;
}
.flow_inner {
  padding: 0 20px;
}
.flow_block {
  position: relative;
  margin-bottom: 50px;
}
.h3_flow {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 20px;
  font-weight: 900;
  background-color: #FFE400;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 0 0;
  width: 50px;
  height: 100%
}
.flow_block:nth-child(1) .h3_flow,
.flow_block:nth-child(2) .h3_flow {
  background-image: url(../images/arrow_flow_sp.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}

.h3_flow span {
  font-size: 32px;
  color: #F50000;
}
.flow_cont {
  padding: 0;
}
.flow_img {
  
}
.flow_img img {
  width: 100%;
}
.flow_p1 {
  color: #F50000;
  font-size: 18px;
  font-weight: 900;
  padding: 10px 10px 10px 60px;
}
.flow_p2 {
  font-size: 14px;
  padding: 0 10px 10px 60px;
}

@media screen and (min-width:768px){
   .flow {
    padding: 180px 0 80px;
  }
  .flow_inner {
    padding: 0 20px;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap:2%;
  }
  .flow_block {
    position: relative;
    margin-bottom: 50px;
    width: 32%;
  }
  .h3_flow {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: 28px;
    background-color: #FFE400;
    position: relative;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: 66px;
  }
  .flow_block:nth-child(1) .h3_flow,
  .flow_block:nth-child(2) .h3_flow {
    background-image: none;
    width: 80%;
  }
  .flow_block:nth-child(1) .h3_flow::after,
  .flow_block:nth-child(2) .h3_flow::after {
    content: "";
    width: 20px;
    height: 100%;
    background-image: url(../images/arrow_flow_pc.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    right: -20px;
  }
  .flow_block:nth-child(3) .h3_flow {
    width: 100%;
  }
  .h3_flow span {
    font-size: 42px;
  }
  .flow_cont {
    padding: 0;
    margin-top: -33px;
  }
  .flow_img {
    margin-bottom: 5px;
  }
  .flow_img img {
    width: 100%;
  }
  .flow_p1 {
    font-size: 20px;
    padding: 5px 0;
  }
  .flow_p2 {
    font-size: 16px;
    padding: 0;
  } 
}



/* Q＆A */

.faq {
  padding: 150px 0 20px;
}

@media screen and (min-width:768px){
   .faq {
    padding: 150px 0;
  }
}


/* 店舗情報 */

.info {
  padding: 150px 0 20px;
}
.info_inner {
  padding: 0 20px;
}
.shop_block {
  
}
.shop_block h3 {
  color: #F50000;
  font-weight: 700;
  font-size: 26px;
}
.shop_tel {
  font-family: "Anton", sans-serif;
  font-size: 26px;
}
.shop_info {
  font-size: 14px;
}
.shopimg_wrap {
  
}
.shopimg_main {
  
}
.shopimg_main img {
  width: 100%;
}
.shopimg_detail {
  
}
.shopimg_detail img {
  width: 100%;
}
.shop_map {
  aspect-ratio: 1 / 1;
}
.shop_map iframe {
  width: 100%;
  aspect-ratio: 1 / 1;
}


@media screen and (min-width:768px){
  .info {
    padding: 150px 0 80px;
  }
  .info_inner {
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
  }
  .shop_block {
    margin-bottom: 50px;
  }
  .shop_block_head {
    display: flex;
    align-items: flex-end;
    margin-bottom: 30px;
  }
  .shop_name {
    width: 30rem;
  }
  .shop_block h3 {
    font-size: 28px;
  }
  .shop_tel {
    font-size: 26px;
    line-height: 1;
  }
  .shop_info {
    font-size: 16px;
  }
  .shopimg_wrap {
    display: flex;
    justify-content: space-between;
  }
  .shopimg_main {
   width: 50%;
  }
  .shopimg_main img {
    width: 100%;
  }
  .shopimg_detail {
    width: 49.5%;
  }
  .shopimg_detail img {
    width: 100%;
  }
  .shop_map {
    aspect-ratio: 100 / 28;
  }
  .shop_map iframe {
    width: 100%;
    aspect-ratio: 100 / 28;
  }
}



/* お得な乗り方ご紹介 */

.value {
  padding: 150px 0 80px;
}

.value .h2_sub {
  display: block;
  color: #333333;
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 500;
  text-align: center;
}
.value .h2_sub span {
  font-weight: 900;
}

.value .h2_contents_inner {
  font-weight: 900;
  font-size: 36px;
  background-color: #06328B;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  line-height: 1.4;
}
.value .h2_contents_inner span {
  display: inline;
  color: #FFFFFF;
  font-size: 30px;
}

.value_inner {
  padding: 0 20px;
}

.value_inner p {
  padding: 0 20px;
  margin-bottom: 40px;
}
.bnr_plan {
  display: block;
}
.bnr_plan img {
  width: 100%;
}
.bnr_plan img:hover {
  opacity: 0.7;
}

@media screen and (min-width:768px){
  .value {
    padding: 150px 0;
  }
  .value .h2_sub {
    font-size: 40px;
    margin-bottom: 10px;
   }
  .value .h2_sub span {
  }

  .value .h2_contents_inner {
    font-size: 62px;
    padding: 20px;
    line-height: 1.4;
  }
  .value .h2_contents_inner span {
    font-size: 42px;
  }

  .value_inner {
    padding: 0;
  }

  .value_inner p {
  padding: 0;
  margin-bottom: 60px;
  text-align: center;
  }
  .bnr_plan {
    max-width: 500px;
    margin: 0 auto;
  }
  .bnr_plan img {
    width: 100%;
  }
}




/* アコーディオン開閉共通　カーラインナップとQ＆A */


details {
  transition: 0.5s;
}

summary {
  list-style-type: none;
}
summary::marker {
  content: "";
}
summary::-webkit-details-marker {
  display: none;
}


@keyframes fadeIn {
  0% {
    opacity: 0; 
    transform: translateY(-10px); 
  }
  100% {
    opacity: 1;
    transform: none;
  }
}



/* カーラインナップのアコーディオンスタイル */

details.lineup_accordion {
  background-color: #F5F5F5;
  border: 1px solid #747474;
  border-radius: 10px;
  margin: 0 20px;
}
summary.price_details_title {
  display: flex;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
  grid-template-columns: 1fr 24px;
  gap: 6px;
  align-items: center;
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
}

.price_icon {
  display: block;
  width: 28px;
  height: 28px;
  background-image: url(../images/arrow_detail.png);
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.4s;
}

details[open] .price_icon {  /* アコーディオンが開いた時のスタイル */
  transform: rotate(180deg);
}

.price_details {
  animation: fadeIn 1s ease;
  padding: 20px;
}
.price_detail_list {
  display: flex;
  flex-wrap: wrap;
}
.price_detail_list dt {
  width: 50%;
}
.price_detail_list dd {
  width: 50%;
  text-align: right;
}
.price_detail_list p {
  
}

@media screen and (min-width:768px){
  details.lineup_accordion {
    margin: 00;
  }
}


/* カーラインナップ */

.lineup {
  
}
.lineup_wrap {
  padding: 0 20px;
}
.lineup_block {
  margin-bottom: 40px;
}
.lineup_block img {
  width: 100%;
}

@media screen and (min-width:768px){
  .lineup {

  }
  .lineup_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
  }
  .lineup_block {
    width: 48%;
  }
  .lineup_block img {
    width: 100%;
  }
}



/* FAQのアコーディオンスタイル */

details.faq_accordion {
  margin-bottom: 20px;
}
summary.faq_q {
  display: flex;
  border: 1px solid #747474;
  background: linear-gradient(-90deg, #FFE400 0%, #FFE400 50px, #ffffff 50px, #ffffff 100%);
  border-radius: 10px;
  width: auto;
  margin: 0 auto;
  gap: 6px;
  padding: 10px 45px 10px 10px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
.faq_no {
  display: inline-block;
  width: 3em;
}

.faq_icon {
  display: block;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 28px;
  height: 28px;
  background-image: url(../images/arrow_detail.png);
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.4s;
}

details[open] .faq_icon {  /* アコーディオンが開いた時のスタイル */
  transform: rotate(180deg);
}

.faq_a {
  padding: 20px 20px 20px 50px;
  animation: fadeIn 1s ease;
  position: relative;
  line-height: 1.6;
}
.faq_a::before {
  content: "A.";
  position: absolute;
  left: 30px;
}

/* 最初から表示されるコンテンツ */
.visible-content {
  margin-bottom: 15px;
}

/* 隠れているコンテンツ（初期状態） */
.hidden-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  opacity: 0;
}

/* 表示状態のクラス */
.hidden-content.show {
  max-height: 2000px; /* コンテンツに合わせて調整 */
  opacity: 1;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}

/* もっと見るボタンのスタイル */
.more-button,
.more-button.open-button {
  display: block;
  background-color: #06328B;
  color: #ffffff;
  border: none;
  padding: 10px 15px;
  border-radius: 24px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s;
  margin: 10px auto;
  text-align: center;
  width: 300px;
  position: relative;
}
.more-button::after,
.more-button.open-button::after {
  content: "";
  width: 28px;
  height: 28px;
  background-image: url(../images/arrow_more.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.more-button.close-button::after {
  content: "";
  width: 28px;
  height: 28px;
  background-image: url(../images/arrow_more.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transform: rotate(180deg);
}

.more-button:hover {
  background-color: #13419E;
}




/* お問い合わせ */

.contact {
  background-image: url(../images/bg_contact_sp.jpg);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
.contact_h2 {
  color: #ffffff;
  font-size: 26px;
  font-weight: 700; 
  margin-bottom: 30px;
  line-height: 1;
  text-align: center;
}
.contact_h2 span {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  display: block;

}

.contact_btn_wrap {
  
}
.btn_contact {
  display: block;
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px 30px 30px 110px;
  text-decoration: none;
  line-height: 1.6;
  background-repeat: no-repeat;
  background-size: 72px 72px;
  background-position: left 20px center;
  color: #333333;
}
.btn_contact span {
  font-size: 20px;
  font-weight: 700;
  color: #660000;
  width: 12em;
}

.btn_contact_mail {
  background-image: url(../images/ico_btn_contact_mail.png);
  margin-bottom: 20px;
}
.btn_contact_tel {
  background-image: url(../images/ico_btn_contact_tel.png);
}


@media screen and (min-width:768px){
  .contact {
    background-image: url(../images/bg_contact_pc.jpg);
  }
  .contact_h2 {
    font-size: 36px;
    margin-bottom: 70px;
  }
  .contact_h2 span {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .contact_btn_wrap {
    display: flex;
   column-gap: 4%;
    justify-content: space-between;
  }
  .btn_contact {
    width: 48%;
    display: block;
    padding: 45px 45px 45px 160px;
    background-size: 96px 96px;
    background-position: left 35px center;
    color: #333333;
    line-height: 1.1;
  }
  .btn_contact span {
    font-size: 24px;
    font-weight: 700;
    color: #660000;
    width: 12em;
    display: block;
  }

  .btn_contact_mail {
    background-image: url(../images/ico_btn_contact_mail.png);
    margin-bottom: 0;
  }
  .btn_contact_tel {
    background-image: url(../images/ico_btn_contact_tel.png);
  }
}



/* 来店予約 */

.btn_area {
  padding: 0 20px;
}
.btn_area p {
  text-align: center;  
}
.btn_area a {
  display: block;
}
.btn_area a img {
  width: 100%;
}

@media screen and (min-width:768px){
  .btn_area {
    padding: 0;
  }
  .btn_area p {

  }
  .btn_area a {
    max-width: 500px;
    margin: 0 auto;
  }

}








/*------------------
プライバシーポリシー
------------------*/

.privacy {
  background-color: #F8F8F8;  
}
.privacy_h1 {
  font-weight: 700;
  font-size: 26px;
  padding: 0 20px;
  margin-bottom: 60px;
}
.privacy_h1 span {
  font-weight: 400;
  font-size: 18px;
  color: #959595;
  display: block;
}
.privacy_wrap {
  padding: 0 20px;
}
.privacy_h2 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}
.privacy_wrap p {
  margin-bottom: 40px;
}

@media screen and (min-width:768px){
  .privacy {
    
  }
  .privacy_h1 {
    font-size: 40px;
    padding: 0;
    margin: 0 auto 70px auto;
    max-width: 1000px;
  }
  .privacy_h1 span {
    font-size: 32px;
  }
  .privacy_wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
  }
  .privacy_h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .privacy_wrap p {
    margin-bottom: 60px;
  }
}






.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 2s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}






@media screen and (min-width:768px){
  /*タブレット以上　画面幅を768pxまでに設定*/
}

