@charset "UTF-8";

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}

* {
  box-sizing: border-box;
}

*, :after, :before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  -webkit-appearance: none;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 400;
  overflow-wrap: break-word;
  color: #63320A;
  margin: 0;
}
@media (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}

br {
  display: block;
  content: "";
  margin: 10px 0;
}

h1 {
  font-size: clamp(5rem, 6vw, 6rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(2.8rem, 5vw, 6rem);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

h3 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

h4 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.4;
  letter-spacing: 0.005em;
}

h5 {
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  line-height: 1.5;
  letter-spacing: 0.005em;
}

h6 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  line-height: 1.8;
  letter-spacing: normal;
}

p {
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  line-height: 1.8;
}

.wrapper .container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
}
@media (max-width: 768px) {
  .wrapper .container {
    padding: 60px 20px;
  }
}

.wrapper .kv__container {
  width: 100%;
  margin: 0 auto;
  background: #63320A;
  padding: 60px 0 80px;
}
@media (max-width: 768px) {
  .wrapper .kv__container {
    margin-top: 0px;
    padding: 30px 0 80px;
  }
}

.wrapper .common__container {
  width: 100%;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .wrapper .common__container {
    padding: 60px 20px 0px 20px;
  }
}

.wrapper .nav__container {
  width: 100%;
  margin: 100px auto;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .wrapper .nav__container {
    padding: 60px 20px 0px 20px;
  }
}

.wrapper .voice__container {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .wrapper .voice__container {
    padding: 60px 0px;
  }
}

.wrapper .partner__container {
  padding: 100px 0px;
}
@media (max-width: 768px) {
  .wrapper .partner__container {
    padding: 60px 0px;
  }
}

.wrapper .common__nav__container {
  padding: 60px 0px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .wrapper .common__nav__container {
    padding: 30px 20px;
    margin-top: 60px;
  }
}

.bg__light_brn {
  background: #63320a10;
}

.bg__brn {
  background: #63320a;
}

.bg__wht {
  background: #FFFFFF;
}

.txt__brn {
  color: #63320A;
}

a {
  color: inherit;
  text-decoration: none;
}

#header {
  display: flex;
  position: sticky;
  top: 0;
  width: 100%;
  height: 85px;
  background: #63320A;
  z-index: 999;
  text-align: center;
  align-items: center;
}

#header.scroll-nav {
  /* スクロールした時のスタイル */
  display: flex;
  position: sticky;
  top: 0;
  width: 100%;
  height: 85px;
  background: #63320A;
  margin: 0 auto;
  z-index: 999;
  text-align: center;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}


nav {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: space-evenly;
  align-items: center;
  z-index: 999;
}

@media(max-width: 768px) {
  #header {
    display: none;
  }

  #header.scroll-nav  {
    display: none;
  }

  .nav__header__logo_sp {
    display: flex;
    align-items:start;
    list-style: none;
    margin-left: 20px;
    margin-top: 5px;
  }

  #header__sp {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 0 2%;
    height: 70px;
    align-items: center;
    background-color: #63320A;
  }

  #header__sp.scroll-nav__sp {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 0 2%;
    height: 70px;
    align-items: center;
    background-color: #63320A;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
  
  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* ハンバーガーボタンのデザイン */
  .drawer__button {
    position: relative;
    width: 4rem;
    height: 4rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-right: 10px;
    margin-top: 8px;
    z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
  }
  /* ハンバーガーボタン内の線 */
  .drawer__button > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3rem;
    height: 2px;
    background-color: rgb(255, 255, 255);
    transform: translateX(-50%);
  }
  .drawer__button > span:first-child {
    transform: translate(-50%, calc(-50% - 0.8rem));
    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% + 0.8rem));
    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: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }
  .drawer__nav.active {
    opacity: 1;
    visibility: visible;
  }
  .drawer__nav__inner {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #63320A;
    padding: 7rem 1.5rem 1rem;
    margin: 0 0 0 auto;
    overflow: scroll;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .drawer__nav.active .drawer__nav__inner {
    transform: translateX(0);
  }
  .drawer__nav__menu {
    list-style: none;
    padding-left: 0;
  }

  .drawer__nav__item {
    font-weight: 600;
  }

  .drawer__nav__link {
    display: block;
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 1.6rem 1rem;
    border-bottom: solid 1px rgb(211, 211, 211, 0.200);
  }

  .drawer__nav__menu > li:first-child {
    border-top: solid 1px rgba(211, 211, 211, 0.200);
  }
  
  /* ハンバーガーメニュー展開時、背景を固定 */
  body.active {
    height: 100%;
    overflow: hidden;
  }
  
}

@media screen and (min-width: 960px) {
  #header__sp,
  #header__sp.scroll-nav__sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  header nav {
    display: none;
  }
}

.header__nav__logo {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-top: 5px;
}

.header__nav__logo img {
  width: 120px;
}

.footer__logo {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.footer__logo img {
  width: 140px;
}
@media (max-width: 768px) {
  .footer__logo img {
    width: 100px;
  }
}

.f__logo {
  text-align: center;
  margin-top: 50px;
}


.main__logo {
  font-size: 18px;
  margin-top: 30px;
  text-align: center;
}

.common__logo-title_sp {
  margin-top: 15px;
  margin-right: 20px;
}

.common__logo-title--center {
  padding: 20;
  font-size: 18px;
  text-align: center;
}

.header__nav__links {
  display: flex;
  align-items: center;
  list-style: none;
}

.header__nav__links li {
  color: #fff;
  margin: 0 15px;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: .2rem;
}

.header__nav__translate__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}

.header__nav__translate {
  font-size: 1rem;
  letter-spacing: .1rem;
  color: #fff;
  opacity: .7;
  align-items: center;
}


a:hover{
  opacity: .5;
}

.logo-subject--center {
  font-size: 11px;
  line-height: 12px;
  text-align: center;
}

.nav-box01 p {
  margin:0;
  padding:0;
}

.nav-box02 {
  background:#000000; /*背景色の指定*/
  padding: 5px 5px 5px 5px;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 10px;
}

.nav-box02 p {
  margin:0;
  padding:0;
}


#slider {
  width: 100%;
  height: 100vh;
  position: relative;
}
@media (max-width: 768px) {
  #slider {
    display: none;
  }
}

.top_pc01 {
  position:  absolute;  /* 要素の配置方法を指定 */
  width:  1000px;              /* 幅指定 */
  height: 200px;               /* 高さ指定 */
  font-size: 60px;
  line-height: 90px;
  text-align:  center;        /* 文字を中央揃えに */
  top:  0;              /* 上からの位置指定 */
  bottom:  0;           /* 下からの位置指定 */
  left:  0;             /* 左からの位置指定 */
  right:  0;            /* 右からの位置指定 */
  margin:  auto;        /* 位置調整と組み合わせて上下中央に */
}

@media (max-width: 768px) {
  .top_pc01 {
    display: none;
  }
}

.top_sp01 {
  width: 77%;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  margin: 0;
}
@media (min-width: 960px) {
  .top_sp01 {
    display: none;
  }
}

.top_sp02 {
  width: 100%;
  position: absolute;
  top: 87%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  margin: 0;
}
@media (min-width: 960px) {
  .top_sp02 {
    display: none;
  }
}


/* ボタンのスタイル */

.btn__car_price__reserve a {
  position: relative;
  display: block;
  justify-content: center;
  align-items: center;
  background: #63320A;
  width: 400px;
  border-radius: 60px;
  padding: 15px;
  background: 63320A;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ffffff;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .btn__car_price__reserve a {
    display: flex;
    background: #63320A;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    height: 45px;
    margin: 0 auto;
    padding: .2em .4em;
    border-radius: 30px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-left: 5px;
    margin-top: 15px;
    transition: 0.3s;/*マウスオンした時の変化のスピード*/
      /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
  }
  
}

.btn_apply a {
  position: relative;
  display: block;
  justify-content: center;
  align-items: center;
  width: 220px;
  border-radius: 60px;
  padding: 3px;
  background: rgb(152,119,38);
  background: linear-gradient(90deg, rgba(152,119,38,1) 0%, rgba(196,157,45,1) 18%, rgba(237,199,65,1) 35%, rgba(246,221,114,1) 50%, rgba(237,199,65,1) 65%, rgba(196,157,45,1) 82%, rgba(152,119,38,1) 100%);
  font-size: 1.4rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000;
}

.btn_contact a {
  position: relative;
  display: block;
  justify-content: center;
  align-items: center;
  width: 180px;
  border-radius: 60px;
  padding: 3px;
  background: rgb(152,119,38);
  background: linear-gradient(90deg, rgba(152,119,38,1) 0%, rgba(196,157,45,1) 18%, rgba(237,199,65,1) 35%, rgba(246,221,114,1) 50%, rgba(237,199,65,1) 65%, rgba(196,157,45,1) 82%, rgba(152,119,38,1) 100%);
  font-size: 1.5rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000;
}

.btn_menu_l a {
  position: relative;
  display: block;
  justify-content: center;
  align-items: center;
  width: 200px;
  border-radius: 60px;
  padding: 20px;
  background: rgb(152,119,38);
  background: linear-gradient(90deg, rgba(152,119,38,1) 0%, rgba(196,157,45,1) 18%, rgba(237,199,65,1) 35%, rgba(246,221,114,1) 50%, rgba(237,199,65,1) 65%, rgba(196,157,45,1) 82%, rgba(152,119,38,1) 100%);
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  color: #000000;
  letter-spacing: 1px;
  margin-top: 5px;
}

.btn_apply_l a {
  position: relative;
  display: block;
  justify-content: center;
  align-items: center;
  width: 300px;
  border-radius: 60px;
  padding: 20px;
  background: rgb(152,119,38);
  background: linear-gradient(90deg, rgba(152,119,38,1) 0%, rgba(196,157,45,1) 18%, rgba(237,199,65,1) 35%, rgba(246,221,114,1) 50%, rgba(237,199,65,1) 65%, rgba(196,157,45,1) 82%, rgba(152,119,38,1) 100%);
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  color: #000000;
  letter-spacing: 1px;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .btn_apply_l a {
    width: 300px;
    border-radius: 60px;
    padding: 10px;
    font-size: 15px;
  }
}

.btn_contact_l a {
  position: relative;
  display: block;
  width: 300px;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  padding: 20px;
  background: rgb(152,119,38);
  background: linear-gradient(90deg, rgba(152,119,38,1) 0%, rgba(196,157,45,1) 18%, rgba(237,199,65,1) 35%, rgba(246,221,114,1) 50%, rgba(237,199,65,1) 65%, rgba(196,157,45,1) 82%, rgba(152,119,38,1) 100%);
  font-size: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  color: #000000;
  letter-spacing: 1px;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .btn_contact_l a {
    width: 300px;
    border-radius: 60px;
    padding: 10px;
    font-size: 15px;
  }
}

.btn_apply_sp a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 40px;
  border-radius: 0px;
  background-color: #000000;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  padding: 5px;
  margin-top: 5px;
  margin-right: 10px;
}

.btn_contact_sp a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 40px;
  border-radius: 0px;
  background-color: #333333;
  font-size: 10px;
  color: #fff;
  margin-top: 5px;
  margin-right: 40px;
}

/* アイコンのスタイル */
.btn-arrow-right a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1.5px solid #ffffff;
  border-right: 1.5px solid #ffffff;
  transform: rotate(45deg);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .btn-arrow-right a::after {
    right: 17px;
    width: 7px;
    height: 7px;
    margin: auto;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
  }
}


.btn-arrow-right_l a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  width: 20px;
  height: 20px;
  margin: auto;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: rotate(45deg);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .btn-arrow-right_l a::after {
    width: 10px;
    height: 10px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
  }
}

.btn-arrow-menu_l a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: rotate(45deg);
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

.common__sub_title {
  font-size: 15px;
  margin-top: 5px;
  text-align: center;
}

.common__header {
  text-align: center;
}

.common__box {
  margin-top: 30px;
}

.logo__txt_--s_center {
  font-size: 10px;
  text-align: center;
}

.logo_header__txt--center {
  font-size: 12px;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  margin-top: 5px;
}

.logo_header__sp__txt {
  font-size: 10px;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  margin-top: 5px;
}

.fv__main h2 {
  color: #fff;
  text-align: center;
  margin-top: 40px;
  letter-spacing: .2rem;
}
@media (max-width: 768px) {
  .fv__main h2 {
    margin-top: 20px;
    letter-spacing: 0rem;
  }
}

.fv__main p {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 10px;
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 768px) {
    .fv__main p{
      font-size: 24px;
      letter-spacing: 1px;
    }
}

.fv__main_02 {
  font-weight: 600;
  margin-top: 20px;
  text-align: center;
}

.fv__logo_img {
  display: flex;
  text-align: center;
  list-style: none;
  justify-content: space-around;
  align-items: center;
}

.fv__logo_img--logo img {
  width: 200px;
}
@media (max-width: 768px) {
  .fv__logo_img--logo img {
    width: 180px;
  }
}

.fv__logo_img--li {
  margin: 0 80px;
}
@media (max-width: 768px) {
  .fv__logo_img--li {
    display: none;
  }
}


.wheel img {
  width: 250px;
  opacity: .2;
  animation: rotation 30s linear infinite;
}
/* アニメーション */
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.fv__logo_txt {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 10px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .fv__logo_txt {
    font-size: 24px;
    letter-spacing: 1px;
    margin-top: 0px;
  }
}

.fv__catch {
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .fv__catch {
    margin-top: 0px;
  }
}

.fv__catch_txt {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 5px;
  color: #fff;
}
@media (max-width: 768px) {
  .fv__catch_txt {
    font-size: 18px;
    letter-spacing: 2px;
  }
}


.fv__price_txt {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  color: #fff;
}
@media (max-width: 768px) {
  .fv__price_txt {
    font-size: 40px;
  }
}

.fv__price_txt--small {
  font-size: 4.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: center;
}
@media (max-width: 768px) {
  .fv__price_txt--small {
    font-size: 3rem;
  }
}

.fv__tax_txt--small {
  font-size: 1.6rem;
  letter-spacing: 2px;
  text-align: center;
  color: #fff;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .fv__tax_txt--small {
    font-size: 1rem;
  }
}


.fv__sub_txt {
  text-align: center;
  margin-top: 20px;
}

.fv__sub_txt--normal {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  color: #fff;
}
@media (max-width: 768px) {
  .fv__sub_txt--normal {
    font-size: 16px;
    line-height: 30px;
    text-align: center;
  }
}

.rt {
  font-size: 10px;
  position: relative;
  top: -0.3em;
  transform: translateY(-0.3em);
}


.partner__wanted {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-top: 100px;
}

.partner__wanted h3 {
  line-height: 1;
}

.partner__wanted p {
  font-weight: 400;
  margin-top: 20px;
}

.reasons__item__inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 3%;
  justify-content: space-between;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .reasons__item__inner {
    gap: 30px 0;
    margin-top: 50px;
  }
}

.reasons__item {
  width: 47%;
  margin: 0 auto;
  text-align: center;
  background: #63320a10;
  border-radius: 20px;
  padding: 40px;
  color: #63320A;
  align-items: center;
}
@media (max-width: 768px) {
  .reasons__item {
    padding: 40px 30px;
    width: 100%;
  }
}

.reasons__item h3 {
  padding: 10px;
  letter-spacing: 1px;
  border-bottom: 1px solid #63320A50;
}
@media (max-width: 768px) {
  .reasons__item h3 {
    text-align: center;
  }
}

.reasons__item p {
  text-align: left;
  margin-top: 20px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .reasons__item p {
    text-align: left;
  }
}

.reasons__icon {
  font-size: 8rem;
  color: #63320A;
  vertical-align: -4px;
  line-height: 1;
}

.guide__contents {
  background: #fff;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto;
  max-width: 1400px;
  padding-top: 0px;
}
@media (max-width: 768px) {
  .guide__contents {
    gap: 5px;
    margin-top: 0px;
  }
}

.guide__list_left {
  width: 100%;
  background: #f2f2f2;
  border-radius: 0px;
  text-align: left;
  padding: 10px 20px;
}

.guide__list_right {
  width: 100%;
  padding: 10px 20px;
}

.guide__step {
  font-size: 40px;
  font-weight: 600;
  margin: 0 auto;
}

.guide__title > span {
  font-size: 12px;
  font-weight: 400;
}

.guide__title {
  font-weight: 600;
}

.guide__title__text {
  color: #63320A;
  margin-top: 10px;
}

.guide__price {
  font-weight: 700;
  color: #63320A;
  max-width: 100%;
  margin: 0 auto;
}

.guide__list__text {
  padding: 0px 30px;
}
@media (max-width: 768px) {
  .guide__list__text {
    padding: 20px 0px;
  }
}


@media (max-width: 768px) {
  .guide__list li {
    width: 100%;
  }
}

.guide__number {
  font-size: 5.0rem;
}
@media (max-width: 768px) {
  .guide__number {
    font-size: 2.0rem;
  }
}

.guide__item__txt {
  font-size: 20px;
  letter-spacing: 1px;
  color: #63320A;
  margin-top: 10px;
  text-align: left;
}

/* common__title */

.common__title__inner {
  width: 100%;
  background: #ffffff;
  border-radius: 0px;
  padding: 80px 0px;
}

.common__title {
  text-align: center;
}

.common__title p,
.common__title__brn p {
  font-size: 1.6rem;
  margin-top: 5px;
  text-align: center;
}
@media (max-width: 768px) {
  .common__title p,
  .common__title__brn p {
    font-size: 1rem;
    margin-top: 2px;
  }
}

.common__title__brn {
  text-align: center;
  color: #63320A;
}

.common__title img,
.common__title__brn img {
  width: 80px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .common__title img,
  .common__title__brn img {
    width: 45px;
  }
}

.common__title h2,
.common__title__brn h2 {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .common__title h2,
  .common__title__brn h2 {
    margin-top: 10px;
  }
}

.logo__txt_sp--center {
  font-size: 12px;
  text-align: center;
  margin-top: 2px;
}

.common__txt--left {
  font-size: 17px;
  line-height: 30px;
  text-align: left;
}

.common__txt--center {
  font-size: 17px;
  line-height: 30px;
  text-align: center;
}

.bg-img__wrapper {
  width: 100%;
  vertical-align:top;
}

.item_left {
  text-align: left;
}

.item_center {
  text-align: center;
}

.item_right {
  text-align: right;
}

.certification__content {
  text-align: center;
}

.partner__list__inner {
  width: 100%;
  background: #fff;
  padding: 80px 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  text-align: center;
  gap: 60px 0;
}
@media (max-width: 768px) {
  .partner__list__inner {
    flex-direction: column;
    padding: 60px 40px;
    text-align: center;
  }
}

.partner__name {
  font-size: 12px;
  font-weight: 300;
  margin-top: 10px;
  text-align: center;
}

.partner__prefecture {
  font-size: 12px;
  margin-top: 0px;
}

.partner__list {
  text-align: center;
  padding: 20px;
  list-style: none;
}
@media (max-width: 768px) {
  .partner__list {
    padding: 0px 0px;
  }
}

.partner__list img {
  width: 200px;
}

.partner__list a:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}



.title__text--center {
  text-align: center;
  font-size: 26px;
}

.title__text--underline {
  text-align: center;
  font-size: 26px;
  border-bottom: 1px solid #333;
  padding: 10px;
}

.container__f {
  background: #63320A;
  padding: 30px
}

.f__nav {
  position: relative;
  align-items: center;
  list-style: none;
  margin: 0 auto;
  text-align: center;
}

.f__nav a {
  margin: 20px 20px;
  text-align: left;
}

.f__nav a:hover {
  opacity: .5;
}

.f__nav .f__btn_sns img {
  width: 25px;
}

.f__logo {
  margin-bottom: 8px;
}

.f__logo_goemon_txt {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1.5px;
  margin-top: 10px;
}

.f__logo_txt {
  font-size: 10px;
  color: #333;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.f__btn_sns {
  margin-top: 30px;
}

.f__nav__item--normal {
  font-size: 1.4rem;
  color: #ffffff;
}

.f__nav__company {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: .1rem;
  color: #ffffff;
  margin-top: 20px;
}

.f__nav__pp {
  font-size: 1.2rem;
  color: #ffffff;
  margin-top: 20px;
}



/*========= UP ===============*/
/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	transition:all 0.3s;
}

#page-top a:hover{
}

/*リンクを右下に固定*/
#page-top {
  width: 45px;
	position: fixed;
	right: 5%;
	bottom: 30px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}
@media (max-width: 768px) {
  #page-top {
    width: 35px;
    right: 3%;
    bottom: 10px;
  }
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

.pc_br {
  display: none;
}
@media (min-width: 960px) {
  .pc_br {
    display: block;
  }
}

.sp_br {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_br {
    display: block;
  }
}

.common03 {
  position: relative;
  background-color: #ffffff;
  text-align: center;
  padding-top: 105px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .common01 {
    padding-top: 80px;
  }
}

.common04 {
  position: relative;
  background-color: #F2F2F2;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .common04 {
    padding-top: 90px;
  }
}

.common05 {
  position: relative;
  background-color: #ffffff;
  text-align: center;
  margin-top: 150px;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .common05 {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

.box01 {
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .box01 {
    max-width: 100%;
    margin: 0 auto;
    margin-left: 50px;
    margin-right: 50px;

  }
}

.box02 {
  text-align: center;
  justify-content: center;
  margin-top: 80px;
  max-width: 575px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 60px;
  justify-content: center;
}

@media (max-width: 768px) {
  .box02 {
    display: block;
  }
}

.box_item01 {
  flex: 1 90px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .box_item01 {
    display: block;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 20px;
  }
}

.box_item02 {
  flex: 1 90px;
  margin-bottom: 20px;
}

.box_item03 {
  flex: 1 90px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .box_item03 {
    margin-top: 60px;
  }
}

.arrow {
  position: relative;
  margin-top: 30px;
  margin-bottom: 60px;
}
.arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top: 10px solid #63320A;
  border-bottom-width: 0;
  opacity: .2;
}

@media (max-width: 768px) {
  .box_item04 {
    width: 100%;
  }
}

.item_list {
  width: 100%;
  max-width: 894px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 20px;
}
@media (max-width: 768px) {
  .item_list {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-left: 50px;
    padding-right: 50px;
  }
}

.item {
  margin-top: 20px;
  text-align: center;
}

/* form */


form {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
}

label {
  margin-bottom: 3px;
  text-align: left;
  display: block;
}

label span {
  padding-left: 5px;
  color: red;
}

select,
option,
input[type=text],
input[type=tel],
input[type=url],
input[type=email] {
  width: 100%;
  height: 50px;
  background: #F0F0F0;
  margin-top: 5px;
  margin-bottom: 40px;
  padding: 7px 7px;
  text-align: left;
  display: block;
  box-sizing: none;
}

/* iOSフォーム対策 */
@media (max-width: 768px) {
  input, textarea, select {
    font-size: 16px;
  }
}

textarea {
  width: 100%;
  height: 120px;
  background: #F0F0F0;
  margin-top: 5px;
  margin-bottom: 40px;
  padding: 7px 7px;
  text-align: left;
  display: block;
}

input[type="radio"] {
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  border: 1px solid #3f3f3f;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3f3f3f;
  content: '';
}

.radio__content {
  padding: 10px;
  margin-bottom: 40px;
  background: #F0F0F0;
}

.radio__item {
  margin: 5px;
}

input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  width: 255px;
  height: 60px;
  background: #63320A;
  border-radius: 5px;
  margin: 10px;
  align-items: center;
  display: inline-block;
  color: #ffffff;
}
@media (max-width: 768px) {
  input[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
    width: 180px;
    height: 55px;
    border-radius: 5px;
  }
}

.click__down {
  transition: 0.2s;
}

.click__down a:hover{
  transform: translateY(4px);
}

.click__down:active {
  transform: translateY(4px);
}

input[type="button"] {
  appearance: none;
  -webkit-appearance: none;
  width: 255px;
  height: 60px;
  border: 1px solid #3f3f3f;
  border-radius: 5px;
  opacity: 1;
  margin: 10px;
  align-items: center;
  display: inline-block;
  color: #3f3f3f;
}
@media (max-width: 768px) {
  input[type="button"] {
    appearance: none;
    -webkit-appearance: none;
    font-size: 17px;
    width: 180px;
    height: 55px;
    border: 1px solid #3f3f3f;
  }
}

form span {
  font-size: .6rem;
  color: red;
}

#formWrap {
	max-width: 1000px;
	margin: 0 auto;
}

table.formTable{
	width:100%;
	margin:0 auto;
}
table.formTable td,table.formTable th{
	text-align:left;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}
@media (max-width: 768px) {
  table.formTable td,table.formTable th {
    padding: .5rem 0;
  }
}
table.formTable th{
	width:30%;
  font-weight: 400;
	margin-top:50px;
	text-align:left;
}
@media (max-width: 768px) {
  table.formTable th {
    border-top: 0px solid #eeeeee;
  }
}
table.formTable td{
	margin-top:5px;
  font-weight: 600;
}

table.formTable td:nth-child(1) {
  border-top: 1px solid #eeeeee;
}

p.error_messe{
  text-align: left;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-right: 0;
	margin-left: 0;
	color:red;
}
/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:768px) {
#formWrap {
	width:100%;
	margin:0 auto;
  padding: 0 20px;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:20px;
	border-bottom:0;
}
}

.h-adr {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.form__submit__heading {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #63320A;
  border-bottom: 1px solid #63320A;
  margin-top: 40px;
}

.form__submit__lead {
  max-width: 100%;
  margin: 40px auto;
  text-align: center;
}
@media (max-width: 768px) {
  .form__submit__lead {
    text-align: left;
  }
}

.form__submit__return {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 80px;
}

.form__submit__button {
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 80px;
}


.form__lead {
  text-align: left;
}

.form__inner__text {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .form__inner__text {
    text-align: left;
  }
}

.form__required {
  margin-top: 40px;
}

.form__required span {
  font-size: 1rem;
  color: red;
}

.hr {
  width: 100%;
  border-top: 1px solid #63320A;
  margin: 40px 0;
}

.car__list__inner {
  margin-top: 0px;
}

.car__list__heading {
  display: block;
  width: 300px;
  margin: 0 auto;
  position: relative;
  padding: 1rem 0;
  text-align: center;
  background: #63320A;
  color: #fff;
  border-radius: 15px;
}

.car__list__item {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  max-width: 1400px;
  padding: 60px;
  background: #fff;
  border-radius: 15px;
  margin-top: -2rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .car__list__item {
    gap: 0px;
    padding: 0px;
  }
}

.car__list__price {
  font-size: 20px;
  font-weight: 500;
  color: #63320A;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 10px;
  text-align: justify;
}

.car__list__text {
  color: #63320A;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 10px;
  text-align: justify;
}

.car__list__step {
  font-size: 40px;
  color: #63320A;
  margin: 0 auto;
}

.car__list__step > span {
  font-size: 15px;
}

.car__list__title {
  font-size: 20px;
  color: #63320A;
  max-width: 100%;
  margin: 0 auto;
}

.car__list__price {
  font-weight: 700;
  color: #63320A;
  max-width: 100%;
  margin: 0 auto;
}

.car__list__list {
  max-width: 1400px;
  display: flex;
  justify-content: center;
  gap: 0 80px;
  align-items: flex-start;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .car__list__list {
    flex-direction: column;
    margin-top: 20px;
    padding: 0 0px;
  }
}

.car__list__list__text {
  padding: 0px 30px;
}
@media (max-width: 768px) {
  .car__list__list__text {
    padding: 20px 0px;
  }
}

.car__image {
  max-width: 500px;
  text-align: center;
}

.car__image img {
  border-radius: 20px;
}

.car__list__list_right {
  width: 100%;
  max-width: 500px;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  order: 2;
}
@media (max-width: 768px) {
  .car__list__list_right {
    margin-top: 20px;
    padding: 0 0;
  }
}

.car__list__list_right__inner {
  width: 100%;
  border-radius: 20px;
  padding: 0px;
  max-width: 500px;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .car__list__list_right__inner {
  }
}

@media (max-width: 768px) {
  .car__list__list li {
    width: 100%;
  }
}

.car__list__number {
  font-size: 5.0rem;
}
@media (max-width: 768px) {
  .car__list__number {
    font-size: 2.0rem;
  }
}

.car_price__title {
  width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .car_price__title {
  }
}

.car_price__title__logo {
  flex-basis: 10%;
  text-align: left;
}
@media (max-width: 768px) {
  .car_price__title__logo {
    display: none;
  }
}

.car_price__title__logo img {
  width: 30px;
}

.car__name {
}

.car__name p {
  font-size: 1.4rem;
  letter-spacing: .1rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .car__name p {
    font-size: 1.2rem;
  }
}

.car__name h4 {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: .2rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .car__name h4 {
    font-size: 2rem;
  }
}

.car__type {
  flex-basis: 20%;
  text-align: right;
}
@media (max-width: 768px) {
  .car__type {
    display: none;
  }
}

.car__type p {
  display: inline-block;
  padding: 5px 20px;
  letter-spacing: .2rem;
  border-radius: 60px;
  border: 1px solid #63320a5a;
}

.car__icon__inner {
  display: flex;
  max-width: 500px;
  width: 100%;
  align-items: center;
  gap: 6px;
  overflow: visible;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .car__icon__inner {
    padding: 10px;
  }
}

.car__icon {
  display: inline-block;
  border: 1px solid #63320a5a;
  padding: 2px 12px;
  border-radius: 5px;
}

.car__icon p {
  font-size: 1.4rem;
  text-align: center;
}
@media (max-width: 768px) {
  .car__icon p {
    font-size: 1.2rem;
  }
}

.car_price__data {
  align-items: center;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .car_price__data {
    margin-top: 10px;
  }
}

.car_price__data dl {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}
.car_price__data dt {
  font-size: 2rem;
  text-align: left;
  flex-basis: 30%;
  font-weight: 600;
  letter-spacing: .1rem;
  padding: 10px 20px;
  border-bottom: #63320a10 solid 1px;
}
.car_price__data dd {
  font-size: 2rem;
  text-align: right;
  flex-basis: 70%;
  font-weight: 600;
  padding: 10px 20px;
  border-bottom: #63320a10 solid 1px;
}
@media (max-width: 768px) {
	.car_price__data dt {
    font-size: 1.6rem;
    padding: 5px 15px;
    flex-basis: 50%;
	}
  .car_price__data dd {
    font-size: 1.6rem;
    padding: 5px 15px;
    flex-basis: 50%;
	}
}

.car_price__data dt:first-child {
  border-top: #63320a10 solid 1px;
}

.car_price__data dd:nth-child(2) {
  border-top: #63320a10 solid 1px;
}


.car_price__insurance__label {
  font-size: 14px;
}

.car_price__insurance {
  font-size: 20px;
  font-weight: 400;
}

.car_price__insurance__yen {
  font-size: 16px;
  margin-left: 5px;
  margin-right: 5px;
}

.car_price__insurance__tax {
  font-size: 10px;
}

.car_price__label {
  font-size: 14px;
}

.car_price__yen {
  text-decoration: none;
  margin-right: 2px;
}

.car_price__tax {
  font-size: 10px;
  font-weight: 400;
}

.car_price__etc {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 600;
  text-align: left;
}
@media (max-width: 768px) {
	.car_price__etc {
    font-size: 1.6rem;
	}
}

.car_price__lead {
  margin-top: 20px;
  font-size: 14px;
  text-align: left;
}
@media (max-width: 768px) {
	.car_price__lead {
    font-size: 12px;
	}
}


.car_price__attention {
  text-align: left;
  margin-top: 10px;
}

.car_price__note {
  display: block;
  text-align: left;
  margin-top: 20px;
}


.guide__information {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  margin-top: 80px;
  padding: 15px;
  /* border: #63320a3e 1px solid; */
  background: #63320a12;
}
@media (max-width: 768px) {
  .guide__information {
    margin-top: 40px;
    line-height: 1.5;
    text-align: left;
  }
}

.guide__information__text {
  font-size: 18px;
  color: #63320A;
}
@media (max-width: 768px) {
  .guide__information__text {
    font-size: 14px;
  }
}

.guide__nav__title {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .guide__nav__title {
    margin-top: 40px;
  }
}

.guide__nav__lead {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .guide__nav__lead {
    text-align: left;
    font-size: 1.4rem;
  }
}

/* common　nav */

.common__nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .common__nav__inner {
    margin-top: 40px;
  }
}

.common__nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px 30px;
  align-items: center;
  list-style: none;
}
@media (max-width: 768px) {
  .common__nav__list {
    flex-wrap: wrap;
    gap: 20px 0px;
  }
}

.common__nav__links {
  width: 20%;
}
@media (max-width: 768px) {
  .common__nav__links {
    width: 100%;
  }
}

.car_price__nav__links {
  width: 30%;
  margin: 0 0px;
  padding: 0px 0px;
}
@media (max-width: 768px) {
  .car_price__nav__links {
    width: 100%;
  }
}

.common__nav__button {
  width: 100%;
  height: 60px;
  margin: 0 auto;
  padding: 0 0;
  background: #63320A10;
  border: 1px solid #63320A50;
  color: #63320A;
  border-radius: 60px;
  font-weight: 600;
  line-height: 1;
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
  transition: 0.3s;/*マウスオンした時の変化のスピード*/
  position: relative;/*矢印アイコン位置の基点になる要素として指定*/
}
@media (max-width: 768px) {
  .common__nav__button {
    height: 50px;
    border-radius: 60px;
  }
}

.common__nav__button::before {
  position: absolute;/*矢印アイコンを基点の要素に対して自由に配置できるようにする*/
  top: 40%;
  left: 1.5em;/*矢印を基点の要素の右から1文字文内側に動かす*/
  content: '';
  transform: rotate(135deg);
  width: 10px;
  height: 10px;
  margin: 0;
  padding: 0;
  border-top: 2px solid #63320A;
  border-right: 2px solid #63320A;
}
@media (max-width: 768px) {
  .common__nav__button::before {
    width: 8px;
    height: 8px;
  }
}
.common__nav__button:hover {
  opacity: 0.8;/*マウスオンしたときに８０％まで要素を薄くする*/
}






.common__lead {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-top: 60px;
  padding: 15px 30px;
  /* border: #63320a3e 1px solid; */
  background: #63320A;
  border-radius: 60px;
}
@media (max-width: 768px) {
  .common__lead {
    margin-top: 60px;
    line-height: 1.5;
    text-align: left;
  }
}

.common__lead h3 {
  color: #ffffff;
}

.contact__information__text {
  font-size: 18px;
  color: #63320A;
}
@media (max-width: 768px) {
  .contact__information__text {
    font-size: 14px;
  }
}

.contact__nav__title {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .contact__nav__title {
    margin-top: 40px;
  }
}

.contact__nav__lead {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .contact__nav__lead {
    text-align: left;
    font-size: 1.4rem;
  }
}

.contact__nav__inner {
  max-width: 100%;
  margin: 0 auto;
  margin-top: 60px;
}

.contact__nav__container {
  display: flex;
  justify-content: space-around;
  gap: 0px 30px;
  align-items: center;
  list-style: none;
}
@media (max-width: 768px) {
  .contact__nav__container {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 30px 0px;
  }
}

.contact__nav__item {
  width: 100%;
  margin: 0 0px;
  padding: 0px 0px;
}
@media (max-width: 768px) {
  .contact__nav__item {
    padding: 0px 0px;
  }
}


.contact__nav__button {
  width: 100%;
  height: 80px;
  margin: 0 auto;
  padding: .2em 0em;
  background: #63320A;;
  border: #ffffff solid 1px;
  border-radius: 5px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
  transition: 0.3s;/*マウスオンした時の変化のスピード*/
  position: relative;/*矢印アイコン位置の基点になる要素として指定*/
}
@media (max-width: 768px) {
  .contact__nav__button {
    font-size: 16px;
    height: 50px;
    border-radius: 60px;
  }
}

.contact__nav__button::before {
  position: absolute;/*矢印アイコンを基点の要素に対して自由に配置できるようにする*/
  top: 40%;
  left: 2em;/*矢印を基点の要素の右から1文字文内側に動かす*/
  content: '';
  transform: rotate(135deg);
  width: 10px;
  height: 10px;
  margin: 0;
  padding: 0;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
@media (max-width: 768px) {
  .contact__nav__button::before {
    width: 8px;
    height: 8px;
  }
}
.contact__nav__button:hover {
  opacity: 0.8;/*マウスオンしたときに８０％まで要素を薄くする*/
}

.guidance__inner {
  max-width: 1400px;
  margin: auto;
  padding: 80px;
  background: #fff;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .guidance__inner {
    margin-top: 20px;
    padding: 10px 20px;
  }
}


.guidance__item {
  width: 100%;
  border-left: #63320A solid 4px;
  background: #63320a12;
  padding: 10px 10px;
  margin-top: 0px;
}
@media (max-width: 768px) {
  .guidance__item {
    margin-top: 10px;
  }
}

.guidance__item__heading {
  color: #63320A;
  margin: 0px 5px;
}

.agreement__list {
  text-align: left;
}

.agreement__company {
  text-align: right;
  font-weight: 600;
  margin-top: 30px;
}

.guidance__item__text2 {
  line-height: 30px;
  color: #63320A;
  padding: 1em 5px;
  margin-top: 0px;
}


.insurance__at {
  max-width: 400px;
  margin: 0 auto;
  border: 1px solid #63320A;
  text-align: center;
  padding: 30px;
  margin-top: 60px;
}

.insurance__at__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #63320A;
}
@media (max-width: 768px) {
  .insurance__at__title {
    font-size: 18px;
  }
}

.insurance__exception {
  display: block;
}

.insurance__at__list {
  color: #63320A;
}

.insurance__at__list li {
  line-height: 25px;
  margin-left: 20px;
}


.insurance__at__etc {
  margin-top: 5px;
}

.insurance__at__etc p {
  font-size: 12px;
}
@media (max-width: 768px) {
  .insurance__at__etc p {
    font-size: 10px;
  }
}

.guide__item__heading {
  padding: 15px 20px;
  /* background: #63320A; */
  border: 1px solid #63320A;
  background: #63320A;
  color: #fff;
  border-radius: 10px;
}

.guide__item__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  color: #63320A;
  gap: 40px 2%;
}
@media (max-width: 768px) {
  .guide__item__inner {
    flex-direction: column;
    gap: 20px 0;
  }
}

.guide__agreement__inner {
  width: 100%;
  border-radius: 20px;
  color: #63320A;
  padding: 40px;
}
@media (max-width: 768px) {
  .guide__item__inner {
    flex-direction: column;
  }
}

.guide__item__title {
  margin-top: 40px;
}

.guide__item {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  background: #63320A10;
  color: #63320A;
  border-radius: 10px;
  padding: 20px 20px;
  margin-top: 60px;
}

.add__icon {
  font-size: 3rem;
  margin: 20px 0;
}


.checklist__item__list {
  width: 100%;
  padding: 10px 0px 5px 5px;
  border-bottom: 1px solid #63320A;
  color: #63320A;
}
@media (max-width: 768px) {
  .checklist__item__list {
    width: 100%;
  }
}

.checklist__summary__inner {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

.checklist__content__inner {
  display: block;
  padding: 10px 10px;
}

.checklist__item__data {
  text-align: left;
  margin-top: 20px;
}

.checklist__summary__icon {
  vertical-align: -3px;
  color: #63320A;
  margin-right: 5px;
}

.checklist__item__image {
  display: flex;
  flex-direction: column;
  gap: 20px 0px;
  margin: 20px 0;
  align-items: first baseline;
}

.checklist__item__img {
  display: flex;
}

.checklist__inner {
  padding: 20px 0;
  background: #63320A;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .checklist__inner {
    margin-top: 40px;
  }
}

.flow__inner {
  padding: 20px 0;
  text-align: center;
  background: #63320A;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .flow__inner {
    margin-top: 40px;
  }
}

.agreement__inner {
  padding: 20px 0;
  text-align: center;
  background: #63320A;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .agreement__inner {
    margin-top: 40px;
  }
}

.documents__heading__item {
  color: #ffffff;
  margin-top: 0px;
}
@media (max-width: 768px) {
  .documents__heading__item {
    margin-top: 0px;
  }
}

.flow__heading__item {
  color: #63320A;
  margin-top: 0px;
}
@media (max-width: 768px) {
  .flow__heading__item {
    margin-top: 0px;
  }
}

.kiyaku {
  margin-top: 30px;
  padding: 0 20px;
}

.kiyaku ul {
  list-style: none;
}

.kiyaku li {
  line-height: 1.8;
  margin-top: 10px;
}

.guide__list {
  width: 100%;
  border-radius: 5px;
  display: block;
  align-items: center;
  list-style: none;
  padding: 30px;
  border: #63320A solid 0px;
  gap: 30px 0px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .guide__list {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0px 0px;
    padding: 20px;
  }
}

.insurance__item {
  color: #63320A;
  margin-top: 60px;
  text-align: left;
}
@media (max-width: 768px) {
  .insurance__item {
    margin-top: 30px;
  }
}

.insurance__item dl {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin-top: 0px;
}
.insurance__item dt {
  display: block;
  flex-basis: 30%;
  font-weight: 700;
  padding: 30px;
  border-bottom: #63320a20 solid 1px;
}
.insurance__item dd {
  display: block;
  flex-basis: 70%;
  padding: 30px;
  border-bottom: #63320a20 solid 1px;
}
@media (max-width: 768px) {
  .insurance__item dl {
    flex-flow: column;
    flex-basis: 15%;
  }
	.insurance__item dt {
    padding: 10px 0;
    flex-basis: 40%;
    border-bottom: #63320a20 solid 1px;
	}
  .insurance__item dd {
    padding: 10px 0 25px 0;
    flex-basis: 60%;
    border-bottom: #63320a20 solid 0px;
	}
}

.insurance__item dt:first-child {
  border-top: 1px solid #63320a20;
}
@media (max-width: 768px) {
  .insurance__item dt:first-child {
    border-top: none;
	}
}

.insurance__item dd:nth-child(2) {
  border-top: 1px solid #63320a20;
}
@media (max-width: 768px) {
  .insurance__item dd:nth-child(2) {
    border-top: none;
	}
}


/* footer nav */

.footer__nav__wrapper {
  background-color: #ffffff;
}

.footer__nav__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 0;
}
@media (max-width: 768px) {
  .footer__nav__inner {
    padding: 30px 30px;
  }
}

.footer__nav__list {
  display: flex;
  justify-content: space-around;
  list-style: none;
  text-align: center;
}

@media (max-width: 768px) {
  .footer__nav__list {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px 0px;
  }
}

.footer__nav__links {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 5px;
  text-align: left;
  color: #63320A;
}


/* footer */

.footer__wrapper {
  background-color:#ffffff;
}

.footer__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer__list {
  position: relative;
  align-items: center;
  list-style: none;
  margin: 0 auto;
  text-align: center;
}

.footer__list a {
  margin: 20px 20px;
  text-align: left;
}

.footer__list a:hover {
  opacity: .5;
}

.footer__list__company {
  margin-bottom: 8px;
}

.footer__list__logo_subject {
  font-size: 12px;
  font-weight: 700;
  padding-top: 8px;
  padding-left: 20px;
}

.footer__list__logo {
  padding: 20;
  margin-top: 5px;
}

.footer__list__logo_text {
  font-size: 1.0rem;
  line-height: 25px;
  text-align: center;
}

.footer__list__pp {
  font-size: 1.2rem;
  margin-top: 20px;
}

.footer__list__sns {
  margin-top: 50px;
}

.footer__list__sns img {
  width: 30px;
}

.footer__copyright {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .footer__copyright {
    font-size: .9rem;
  }
}

#copyright-year {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  #copyright-year {
    font-size: .9rem;
  }
}

.common__contact__lead {
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .common__contact__lead {
    text-align: left;
  }
}

.tel__inner {
  padding: 40px 0;
  text-align: center;
  background: #ffffff;
  border: #ffffff solid 1px;
  margin-top: 60px;
  color: #63320A;
}
@media (max-width: 768px) {
  .tel__inner {
    padding: 30px 20px;
  }
}

.tel__title {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 700;
}


.tel__lead {
  font-weight: 700;
  margin-top: 20px;
}

.tel__informaton {
  font-weight: 600;
  letter-spacing: 0.1rem;
  margin-top: 30px;
}


.tel__icon {
  margin-top: 0px;
}

.tel__icon span {
  font-size: 8rem;
  line-height: 1;
}

.tel__number {
  padding: 0 30px;
  letter-spacing: .2rem;
}

.tel__number img {
  width: 300px;
}

.tel__number p {
  font-size: 1.8rem;
  letter-spacing: 1px;
}

.tel__number span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.tel__call {
  width: 50%;
  height: 60px;
  margin: 0 auto;
  padding: .2em 0em;
  background: #63320A;
  border: #194C9A solid 0px;
  border-radius: 60px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .2rem;
  margin-top: 30px;
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
  transition: 0.3s;/*マウスオンした時の変化のスピード*/
  position: relative;/*矢印アイコン位置の基点になる要素として指定*/
}
@media (max-width: 768px) {
  .tel__call {
    font-size: 16px;
    height: 50px;
    border-radius: 60px;
  }
}

.tel__call:hover {
  opacity: 0.8;/*マウスオンしたときに８０％まで要素を薄くする*/
}

.line__title {
  text-align: center;
  /* padding: 10px 10px;
  border: 1px solid #eeeeee; */
  margin-top: 40px;
}

.line__lead {
  font-weight: 700;
  display: inline-block;
  margin-top: 20px;
  border: #63320A 0px solid;
}
@media (max-width: 768px) {
  .line__lead {
    text-align: left;
    margin-top: 40px;
  }
}

.line__icon {
  text-align: center;
}

.line__icon img {
  width: 65px;
}

.line__account {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}

.line__btn {
  text-align: center;
  margin-top: 10px;
}

.line__qr {
  margin-top: 40px;
  text-align: center;
}

.kakao__inner {
  padding: 40px 0;
  text-align: center;
  background: #ffffff;
  border: #ffffff solid 1px;
  margin-top: 60px;
  color: #63320A;
}
@media (max-width: 768px) {
  .kakao__inner {
    padding: 30px 20px;
  }
}

.kakao__title {
  margin-top: 30px;
  font-size: 16px;
}

.kakao__lead {
  font-weight: 700;
  display: inline-block;
  margin-top: 40px;
  border: #63320A 0px solid;
}
@media (max-width: 768px) {
  .kakao__lead {
    text-align: left;
    margin-top: 40px;
  }
}

.kakao__icon {
  text-align: center;
  margin-top: 30px;
}

.kakao__icon img {
  height: 65px;
}

.kakao__account {
  width: 100%;
  display: flex;
  margin-top: 30px;
}

.kako__title {
  text-align: center;
  margin-top: 40px;
}

.kakao__ban {
  width: 200px;
  height: 60px;
  margin: 0 auto;
  padding: .2em 0em;
  background: #fae100;
  border-radius: 60px;
  color: #63320A;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .2rem;
  margin-top: 10px;
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
  transition: 0.3s;/*マウスオンした時の変化のスピード*/
  position: relative;/*矢印アイコン位置の基点になる要素として指定*/
}
@media (max-width: 768px) {
  .kakao__ban {
    font-size: 16px;
    height: 50px;
    border-radius: 60px;
  }
}

.tel__call:hover {
  opacity: 0.8;/*マウスオンしたときに８０％まで要素を薄くする*/
}


.kakao__account__id {
  margin-top: 30px;
  font-weight: 600;
}

.kakao__item {
  max-width: 400px;
  margin: 0 auto;
  justify-content: space-around;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

.kakao__item img {
  height: 200px;
}

.kakao__qr {
  margin-top: 40px;
  text-align: center;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 200,
  'GRAD' 0,
  'opsz' 24
}

.line__attention {
  text-align: left;
  margin-top: 30px;
}

.kakao__attention {
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .kakao__attention {
    text-align: left;
  }
}

.tel__attention {
  margin-top: 30px;
}

.contact__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  text-align: center;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px 20px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .contact__inner {
    flex-direction: column;
    gap: 30px 0px;
    padding: 0px;
  }
}

.car_list__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 40px;
  text-align: center;
  gap: 40px 40px;
  background: #fff;
  border-radius: 15px;
  margin-top: 60px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .car_list__inner {
    padding: 30px;
  }
}

.shop_company__content {
  max-width: 1400px;
  margin: 0 auto;
  background: #ffffff;
  padding: 80px 60px;
  text-align: center;
  gap: 40px 40px;
  border-radius: 20px;
  margin-top: 80px;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .shop_company__content {
    padding: 20px 30px;
    margin-bottom: 30px;
    margin-top: 40px;
  }
}


.common__header__content {
  max-width: 1400px;
  margin: 0 auto;
  background: #ffffff;
  padding: 80px 60px;
  text-align: center;
  gap: 40px 40px;
  border-radius: 20px;
  margin-bottom: 100px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .common__header__content {
    padding: 40px 30px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.privacy__header__content {
  max-width: 1400px;
  margin: 0 auto;
  background: #ffffff;
  padding: 80px 60px;
  text-align: left;
  gap: 40px 40px;
  border-radius: 20px;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .privacy__header__content {
    padding: 40px 30px;
    margin-bottom: 30px;
  }
}

.guide__icon {
  font-size: 8rem;
  color: #63320A;
  margin-top: 20px;
  margin-bottom: 40px;
}

.car_price__item {
  max-width: 1400px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  gap: 40px 40px;
  margin-top: 60px;
  /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15); */
}
@media (max-width: 768px) {
  .car_price__item {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px 0px;
  }
}

.insurance__inner {
  max-width: 1400px;
  padding: 40px;
  text-align: center;
  gap: 40px 40px;
  background: #fff;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .insurance__inner {
    padding: 30px;
  }
}

.contacts__item__inner {
  width: 46%;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .contacts__item__inner {
    width: 100%;
  }
}

.webform__item__inner {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: 20px;
}

.kakao__item__inner {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.car__price__inner {
  max-width: 1400px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 80px;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .car__price__inner {
    padding: 40px 30px;
  }
}

.car__price__heading {
  text-align: center;
}

.common__heading {
  text-align: center;
}

.car_price__reserve {
  display: flex;
  width: 100%;
  border-radius: 60px;
  justify-content: space-around;
  text-align: center;
  align-items: center;
  margin-top: 30px;
  gap: 8px;
}

.contact__item {
  background: #fff;
  padding: 60px 40px;
  border-radius: 20px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .contact__item {
    padding: 40px 20px;
  }
}

.contact__lead {
  margin-top: 10px;
}

.guide__item__text {
  background: #fff;
  color: #63320a;
  padding: 2rem 2rem;
}


.documents__item p {
  margin-top: 10px;
}

.checklist__item {
  background: #fff;
  color: #63320A;
  padding: 2rem 2rem;
}

.checklist__item h4 {
  border-left: 8px #63320a solid;
  border-bottom: 1px #eeeeee solid;
  padding: 8px 20px;
  padding-left: 10px;
}

.checklist__item p {
  margin-top: 10px;
  margin-bottom: 40px;
}

.guide__item__list > li {
  padding: 5px;
}

.insurance__heading__item {
  padding: 15px 20px;
  /* background: #63320A; */
  border: 1px solid #63320A;
  background: #63320A;
  color: #fff;
  text-align: center;
  border-radius: 10px;
}

.shop__heading {
  text-align: center;
}

.shop__heading__item {
  padding: 15px;
  background: #63320a12;
  border-radius: 10px;
  text-align: center;
  margin-top: 40px
}
@media (max-width: 768px) {
  .shop__heading__item {
    margin-top: 20px
  }
}


.shop__heading__item span {
  letter-spacing: 0;
  line-height: 1;
}
@media (max-width: 768px) {
  .shop__heading__item span {
  }
}

.shop__information {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  margin-top: 80px;
  padding: 15px;
  /* border: #63320a3e 1px solid; */
  background: #63320a12;
  color: #63320A;
}
@media (max-width: 768px) {
  .shop__information {
    margin-top: 40px;
    line-height: 1.5;
    text-align: left;
  }
}

.shop__image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 0 40px;
  list-style: none;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .shop__image {
    gap: 0 20px;
    padding: 20px 0;
    margin-top: 20px;
  }
}

.shop__image img {
  width: 100%;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .shop__image img {
    border-radius: 10px;
  }
}

.shop__information__text {
  font-size: 18px;
  color: #63320A;
}
@media (max-width: 768px) {
  .shop__information__text {
    font-size: 14px;
  }
}

.map {
  position: relative;
  width: 100%;
  height: 400px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .map {
    height: 200px;
  }
}

.map iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.insurance__lead {
  border: #63320A 0px solid;
  text-align: left;
}

.shop__lead {
  font-weight: 600;
  border: #63320A 0px solid;
}
@media (max-width: 768px) {
  .shop__lead {
    text-align: center;
  }
}



.shop_company__item {
  color: #63320A;
  margin-top: 30px;
  text-align: left;
}
@media (max-width: 768px) {
  .shop_company__item {
    font-size: 14px;
    letter-spacing: 0px;
    margin-top: 20px;
  }
}

.shop__item {
  text-align: left;
  margin-top: 20px;
}

.shop__item h4 {
  text-align: center;
}
@media (max-width: 768px) {
  .shop__item h4 {
    text-align: left;
  }
}

.shop__item__opentime {
  margin-bottom: 20px;
  text-align: left;
}

.shop__item__access {
  margin-bottom: 20px;
}

.shop__item__annotation {
  font-size: 1.2rem;
  margin-top: 10px;
}

.shop__item__tel {
  letter-spacing: 1px;
}


.shop__item li {
  vertical-align: -em;
}


.shop__item li::marker {
  font-weight: 300;
}

.shop__item dl {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin-top: 40px;
}
.shop__item dt {
  display: block;
  flex-basis: 15%;
  font-weight: 700;
  padding: 30px;
  border-bottom: #63320a20 solid 1px;
}
.shop__item dd {
  display: block;
  flex-basis: 85%;
  padding: 30px;
  border-bottom: #63320a20 solid 1px;
}
@media (max-width: 768px) {
  .shop__item dl {
    flex-flow: column;
    flex-basis: 15%;
  }
	.shop__item dt {
    padding: 10px 0;
    flex-basis: 40%;
	}
  .shop__item dd {
    padding: 10px 0 25px 0;
    flex-basis: 60%;
    border-bottom: #63320a20 solid 0px;
	}
}

.shop__item dt:first-child {
  border-top: 1px solid #63320a20;
}
@media (max-width: 768px) {
  .shop__item dt:first-child {
    border-top: none;
	}
}

.shop__item dd:nth-child(2) {
  border-top: 1px solid #63320a20;
}
@media (max-width: 768px) {
  .shop__item dd:nth-child(2) {
    border-top: none;
	}
}



.shop__tel__lead {
  font-size: 12px;
}

.company__lead {
  font-weight: 600;
  margin-top: 0px;
  text-align: center;
  border: #63320A 0px solid;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .company__lead {
    text-align: center;
    margin-top: 30px;
  }
}



.company__item {
  margin-top: 20px;
  text-align: left;
}
@media (max-width: 768px) {
  .company__item {
    margin-top: 30px;
  }
}

.company__item__name {
  line-height: 30px;
}

.company__item__address {
  margin-top: 20px;
}

.company__item dl {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin-top: 40px;
}
.company__item dt {
  display: block;
  flex-basis: 15%;
  font-weight: 700;
  padding: 30px;
  border-bottom: #63320a20 solid 1px;
}
.company__item dd {
  display: block;
  flex-basis: 85%;
  padding: 30px;
  border-bottom: #63320a20 solid 1px;
}
@media (max-width: 768px) {
  .company__item dl {
    flex-flow: column;
    flex-basis: 15%;
  }
	.company__item dt {
    padding: 10px 0;
    flex-basis: 40%;
    border-bottom: #63320a20 solid 1px;
	}
  .company__item dd {
    padding: 10px 0 25px 0;
    flex-basis: 60%;
    border-bottom: #63320a20 solid 0px;
	}
}

.company__item dt:first-child {
  border-top: 1px solid #63320a20;
}
@media (max-width: 768px) {
  .company__item dt:first-child {
    border-top: none;
	}
}

.company__item dd:nth-child(2) {
  border-top: 1px solid #63320a20;
}

/* privacy policy */

.privacy__title {
  text-align: center;
  margin-top: 0px;
}
@media (max-width: 768px) {
  .privacy__title {
    margin-top: 0px;
  }
}

.privacy__lead {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .privacy__lead {
    margin-top: 20px;
  }
}

.privacy__inner {
  margin-top: 80px;
  padding-bottom: 30px;
  color: #63320A;
}
@media (max-width: 768px) {
  .privacy__inner {
    margin-top: 40px;
  }
}

.privacy__content h4 {
  margin-top: 40px;
}

.privacy__content p {
  margin-top: 10px;
}

.pprivacy__content ol {
  padding-left: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.privacy__content li {
  padding-top: 10px;
  list-style-position: inside;
  padding-left: 10px;
}


.privacy__end__text {
  text-align: right;
}



.title__text--center {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
}

.title__text--underline {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid #333;
  padding: 10px;
}

.drawer__nav__translate__inner {
  display: flex;
  margin-top: 20px;
  justify-content: center;
  list-style: none;
}

.drawer__nav__translate {
  font-size: 1rem;
  letter-spacing: .1rem;
  text-align: center;
  color: #fff;
  opacity: .8;
}

.drawer__nav__logo {
  font-size: 18px;
  font-weight: 600;
  margin-top: 30px;
  text-align: center;
}

.drawer__nav__logo img {
  width: 90px;
}

.header__sp__title {
  margin-top: 8px;
  margin-right: 15px;
  text-align: center;
}

.header__sp__nav {
  padding-top: 8px;
}

.header__sp__logo {
  display: flex;
  align-items:start;
  list-style: none;
  margin-left: 15px;
  margin-top: 2px;
}

/* sp button */

.sp__button__apply {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 35px;
  margin: 0 auto;
  padding: .2em .4em;
  background: rgb(152,119,38);
  background: linear-gradient(90deg, rgba(152,119,38,1) 0%, rgba(196,157,45,1) 18%, rgba(237,199,65,1) 35%, rgba(246,221,114,1) 50%, rgba(237,199,65,1) 65%, rgba(196,157,45,1) 82%, rgba(152,119,38,1) 100%);
  border-radius: 30px;
  color: #ffffff;
  border: 0px solid #ffffff;
  font-size: 1rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  color: #000000;
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin-left: 10px;
  margin-top: 6px;
  transition: 0.3s;/*マウスオンした時の変化のスピード*/
    /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
}

.sp__button__apply::before {
  position: absolute;/*矢印アイコンを基点の要素に対して自由に配置できるようにする*/
  top: 40%;
  right: 1.5em;/*矢印を基点の要素の右から1文字文内側に動かす*/
  content: '';
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
  margin: 0;
  padding: 0;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

.sp__button__apply:hover {
  opacity: 0.8;/*マウスオンしたときに８０％まで要素を薄くする*/
}

.sp__button__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 35px;
  margin: 0 auto;
  padding: .2em .4em;
  background: rgb(152,119,38);
  background: linear-gradient(90deg, rgba(152,119,38,1) 0%, rgba(196,157,45,1) 18%, rgba(237,199,65,1) 35%, rgba(246,221,114,1) 50%, rgba(237,199,65,1) 65%, rgba(196,157,45,1) 82%, rgba(152,119,38,1) 100%);
  border-radius: 30px;
  color: #ffffff;
  border: 0px solid #ffffff;
  font-size: 9px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  color: #000000;
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin-left: 10px;
  margin-top: 8px;
  transition: 0.3s;/*マウスオンした時の変化のスピード*/
    /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
}

.sp__button__contact:hover {
  opacity: 0.8;/*マウスオンしたときに８０％まで要素を薄くする*/
}


.guide__flow__inner {
  border-radius: 20px;
  margin-bottom: 0px;
}

.guide__flow__item {
  width: 100%;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 7px;
  border: 1px solid #63320A;
  border-radius: 10px;
  color: #63320A;
  margin-top: 40px;
}

.guide__flow__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 1.5em;
  font-weight: 600;
  cursor: pointer;
}

.guide__flow__item summary::-webkit-details-marker {
  display: none;
}

.guide__flow__item summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-bottom: 2px solid #63320A;
  border-right: 2px solid #63320A;
  content: '';
  transition: transform .3s;
}

.guide__flow__item[open] summary::after {
  transform: rotate(225deg);
}

.guide__flow__item p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 2em 1.5em;
  transition: transform .5s, opacity .5s;
}

.guide__flow__item[open] p {
  transform: none;
  opacity: 1;
}

.guide__flow__item span {
  font-weight: 400;
}


/* cta */

.cta__wrapper {
  background-color: #63320a;
}

.cta__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
  color: #63320A;
}
@media (max-width: 768px) {
  .cta__inner {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.cta__list {
  display: flex;
  justify-content: space-around;
  list-style: none;
  text-align: center;
}

@media (max-width: 768px) {
  .cta__list {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 30px 0px;
  }
}

.cta__list__title {
  color: #fff;
  font-weight: 600;
  text-align: center;
}


/* cta button */



.cta__button__contact {
  width: 500px;
  height: 70px;
  margin: 0 auto;
  padding: .2em 0em;
  border-radius: 60px;
  background: rgb(152,119,38);
  background: linear-gradient(90deg, rgba(152,119,38,1) 0%, rgba(196,157,45,1) 18%, rgba(237,199,65,1) 35%, rgba(246,221,114,1) 50%, rgba(237,199,65,1) 65%, rgba(196,157,45,1) 82%, rgba(152,119,38,1) 100%);
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  letter-spacing: 1px;
  line-height: 1;
  margin-top: 5px;
  transition: 0.3s;/*マウスオンした時の変化のスピード*/
  position: relative;/*矢印アイコン位置の基点になる要素として指定*/
    /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
}
@media (max-width: 768px) {
  .cta__button__contact {
    width: 300px;
    height: 50px;
    border-radius: 60px;
  }
}

.cta__button__contact::before {
  position: absolute;/*矢印アイコンを基点の要素に対して自由に配置できるようにする*/
  top: 43%;
  right: 2em;/*矢印を基点の要素の右から1文字文内側に動かす*/
  content: '';
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin: 0;
  padding: 0;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
@media (max-width: 768px) {
  .cta__button__contact::before {
    width: 8px;
    height: 8px;
  }
}
.cta__button__contact:hover {
  opacity: 0.8;/*マウスオンしたときに８０％まで要素を薄くする*/
}


/* car */

.car__nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 60px;
}

.car__nav__container {
  display: flex;
  justify-content: space-around;
  gap: 0px 30px;
  align-items: center;
  list-style: none;
}
@media (max-width: 768px) {
  .car__nav__container {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 30px 0px;
  }
}

.car__nav__item {
  width: 100%;
  margin: 0 0px;
  padding: 20px 0px;
}
@media (max-width: 768px) {
  .car__nav__item {
    padding: 0px 0px;
  }
}


.car__nav__button {
  width: 100%;
  height: 80px;
  margin: 0 auto;
  padding: .2em 0em;
  background: #63320A;
  border: #194C9A solid 0px;
  border-radius: 5px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
  transition: 0.3s;/*マウスオンした時の変化のスピード*/
  position: relative;/*矢印アイコン位置の基点になる要素として指定*/
}
@media (max-width: 768px) {
  .car__nav__button {
    font-size: 16px;
    height: 50px;
    border-radius: 60px;
  }
}

.car__nav__button::before {
  position: absolute;/*矢印アイコンを基点の要素に対して自由に配置できるようにする*/
  top: 40%;
  left: 2em;/*矢印を基点の要素の右から1文字文内側に動かす*/
  content: '';
  transform: rotate(135deg);
  width: 10px;
  height: 10px;
  margin: 0;
  padding: 0;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
@media (max-width: 768px) {
  .car__nav__button::before {
    width: 8px;
    height: 8px;
  }
}
.car__nav__button:hover {
  opacity: 0.8;/*マウスオンしたときに８０％まで要素を薄くする*/
}

/* Google Review */

.list-review-output {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-top: 2em;
}
.list-review-output .ttl {
  width: 5em;
}
.list-review-output .data {
  width: calc(100% - 5em);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* レート */
.list-review-output::before {
  position: absolute;
  top: -1.4em;
  left: 0;
  color: gray;
}
.list-review-output[data-rate='1']::before {
  content: "★";
}
.list-review-output[data-rate='2']::before {
  content: "★★";
}
.list-review-output[data-rate='3']::before {
  content: "★★★";
}
.list-review-output[data-rate='4']::before {
  content: "★★★★";
}
.list-review-output[data-rate='5']::before {
  content: "★★★★★";
}


.splide__inner {
  padding-top: 60px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .splide__inner {
    padding-top: 30px;
    margin-bottom: 20px;
  }
}

.partner__inner {
  margin-top: 100px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .partner__inner {
    margin-top: 50px;
    margin-bottom: 20px;
  }
}

.car__inner {
  margin-top: 0px;
  margin-bottom: 0px;
}
@media (max-width: 768px) {
  .car__inner {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

.partner__slide img {
  width: 300px;
  height: auto;
  /* object-fit: cover; */
}
@media (max-width: 768px) {
  .partner__slide img {
    width: 200px;
    height: auto;
  }
}

/* スライドのサイズ調整 */
.car__slide img {
  height: auto;
  width: 100%;
}

.splide__pagination {
  bottom: auto;
  position: absolute;
  bottom: -2em;
}
@media (max-width: 768px) {
  .splide__pagination {
    bottom: -1em;
  }
}

.splide__pagination__page {
  background-color: #63320A;
  height: 8px;
  transition: .5s all;
  width: 8px;
}

.splide__arrow svg {
  fill: #63320A;
  height: 1.2em;
  width: 1.2em;
}

.voice__inner {
  display: block;
  width: 300px;
  height: 200px;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  padding: 30px;
  border-radius: 20px;
}

.voice__data {
  display: flex;
  align-items: center;
}

.voice__icon {
  display: flex;
}

.voice__star {
  font-size: 2rem;
  color: #fabb05;
  letter-spacing: -1rem;
  vertical-align: -4px;
}

.voice__nostar {
  font-size: 2rem;
  color: #e3e3e3;
  margin-left: 10px;
  letter-spacing: -1rem;
  vertical-align: -4px;
}

.voice__review {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  margin-top: 5px;
}

.voice__review p {
  font-size: 1.4rem;
  line-height: 19px;
  color: #1f1f1f;
}

.result{
  font-size: 1.4rem;
  color: #5e5e5e;
  margin-left: 20px;
}

/* アコーディオン */

summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
}

summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

.icon {
  display: flex;
  position: relative;
  width: 16px;
  margin-left: 6px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;
}

/* is-openedクラスが付与されたときのスタイル */
details.is-opened .icon {
  transform: rotate(180deg);
}

/* アイコンのバーのスタイル */
.icon::before,
.icon::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 2%;
  width: 10px;
  height: 2px;
  background-color: #63320A;
}

.icon::before {
  left: 0;
  transform: rotate(45deg);
}

.icon::after {
  right: 0;
  transform: rotate(-45deg);
}

/* --------アコーディオンの中身のスタイル-------- */
.open__content {
  overflow: hidden;
}
  /* details直下のタグにpaddingを設定すると挙動がおかしくなるので、ここには指定しない */



  .card {
    background-color: #eee;
    padding: 16px;
    display: flex;
    flex-direction: column;
  }
  
  .card__text-group {
    display: flex;
    max-width: 500px;
  }
  
  .card__title {
    margin: 0 0 1em;
  }
  
  .card__description {
    order: 1;
    margin: 0 0 1em;
  }
  
  .card__media {
    margin: 0;
  }
  
  .card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  @media (min-width: 768px) {
    .card {
      flex-direction: row;
      padding: 32px;
      column-gap: 16px;
    }
  
    .card__text-group {
      display: block;
      order: 1;
      flex: 1;
    }
  
    .card__description {
      order: 0;
    }
  
    .card__media {
      flex: 1;
    }
}
