@charset "UTF-8";
/* ====== PCコンテンツサイズ ====== */
/* ====== TOPタブレットサイズ ====== */
/* ====== 横並び要素切り替えサイズ ====== */
/* ============================== */
/* 共通 */
/* ============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Noto Sans JP" , "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Meiryo" , sans-serif;
  font-size: 16px;
  color: #30303d;
}

.chatbot > :nth-child(2) {
  display: none;
}

@media screen and (max-width: 640px) {
  .chatbot > :nth-child(1) {
    display: none;
  }

  .chatbot > :nth-child(2) {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  html {
    font-size: 14px;
  }
}

.notosansjp {
  font-family: "Noto Sans JP" , sans-serif;
}

.yantramanav {
  font-family: 'Yantramanav', sans-serif;
}

.bodoni {
  font-family: 'Bodoni Moda', serif;
}

main {
  overflow: hidden;
}

/* ====== コンテンツサイズ ====== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

@media screen and (max-width: 1320px) {
  .container {
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* ====== デバイス切り替え表示 ====== */
@media screen and (max-width: 600px) {
  .min601 {
    display: none;
  }
}

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

@media screen and (max-width: 767px) {
  .min768 {
    display: none;
  }
}

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

@media screen and (max-width: 1000px) {
  .min1001 {
    display: none;
  }
}

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

@media screen and (max-width: 1280px) {
  .min1281 {
    display: none;
  }
}

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

@media screen and (min-width: 1001px) and (max-width: 1200px) {
  .tab_only {
    display: none;
  }
}

/* ====== 文字設定 ====== */
ol, ul {
  padding-left: 1.3em;
}

ol {
  list-style: decimal;
}

ul {
  list-style: disc;
}

ol:not(:last-child), ul:not(:last-child) {
  margin-bottom: 1em;
}

ol li, ul li, th, td, p {
  line-height: 2;
}

h2, h3, h4 {
  line-height: 1.5;
}

.home ul, header ul, footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: .5em auto 1em;
}

p:first-child {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

h2 {
  color: #30303d;
  font-size: 32px;
  margin: 0 auto .9em;
}

h2 .sub {
  display: block;
  font-size: 12px;
  letter-spacing: .04em;
  padding: 0 0 .5em .5em;
}

@media screen and (max-width: 600px) {
  h2 {
    font-size: 20px;
    margin-bottom: 1.3em;
  }
  h2 .sub {
    font-size: 10px;
  }
}

h3 {
  color: #30303d;
  font-size: 26px;
  margin: 0 auto .9em;
}

h3 .sub {
  display: block;
  letter-spacing: .04em;
  font-size: 12px;
  padding: 0 0 .5em .5em;
}

@media screen and (max-width: 600px) {
  h3 {
    font-size: 18px;
    margin-bottom: 1.3em;
  }
  h3 .sub {
    font-size: 10px;
  }
}

h4 {
  font-size: 16px;
  margin-bottom: 1.5em;
}

@media screen and (max-width: 600px) {
  h4 {
    font-size: 14px;
    margin-bottom: 1em;
  }
}

/* ====== リンク ====== */
.home a, header a, footer a {
  text-decoration: none;
}

.home a {
  color: #30303d;
}

@media screen and (min-width: 768px) {
  footer a:hover {
    text-decoration: underline;
  }
}

/* ====== メインボタン ====== */
.btn {
  text-align: center;
  margin: calc(1.875em + 8px) auto 8px;
}

.btn a {
  background: #f0f1f2;
  border-radius: 5px;
  box-shadow: 0 8px 0 0 #d5d8da;
  color: #30303d;
  font-size: 16px;
  display: inline-block;
  max-width: 240px;
  width: 100%;
  height: 100%;
  text-align: center;
  text-decoration: none;
  padding: .7em .3em;
  transition: .3s;
  position: relative;
}

.btn a:before, .btn a:after {
  content: '';
  display: block;
  position: absolute;
}

.btn a:after {
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-right: none;
  border-left: 8px solid #30303d;
  transition: .3s;
}

.btn a:hover {
  box-shadow: 0 1px 0 0 #d5d8da;
  transform: translateY(7px);
}

@media screen and (max-width: 600px) {
  .btn a {
    font-size: 14px;
  }
}

/* TOPに戻るボタン */
.btn.back a:after {
  left: 15px;
  right: auto;
  border-left: none;
  border-right: 8px solid #30303d;
}

/* ====== 横並び要素 ====== */
@media screen and (min-width: 601px) {
  .float {
    float: left;
  }
  .float:not(:first-child) {
    margin-left: 2%;
  }
  .float.span10 {
    width: 83%;
  }
  .float.span9 {
    width: 74.5%;
  }
  .float.span8 {
    width: 66%;
  }
  .float.span7 {
    width: 58%;
  }
  .float.span6 {
    width: 49%;
  }
  .float.span5 {
    width: 40%;
  }
  .float.span4 {
    width: 32%;
  }
  .float.span3 {
    width: 23.5%;
  }
  .float.span2 {
    width: 15%;
  }
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.float.break + .float {
  clear: left;
  margin-left: 0;
}

@media screen and (min-width: 601px) {
  .float.break ~ .float {
    margin-top: 2.5%;
  }
}

@media screen and (max-width: 600px) {
  .float:not(:last-child) {
    margin-bottom: 8%;
  }
}

/* ====== ブロックの高さ設定 ====== */
.row:not(:last-child) {
  margin-bottom: 5%;
}

@media screen and (max-width: 600px) {
  .row:not(:last-child) {
    margin-bottom: 10%;
  }
}

/* ====== 幅寄せ指定 ====== */
.center {
  text-align: center;
}

.right {
  text-align: right;
}

/* ====== 画像要素 ====== */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ============================== */
/* ヘッダー */
/* ============================== */
/* ====== ヘッダー追従 ====== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  padding: 0;
  transition: .3s;
  width: 100%;
  z-index: 999;
}

#header .container {
  position: relative;
  overflow: visible;
  margin: 0 auto;
  max-width: 1280px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media screen and (max-width: 1320px) {
  #header .container {
    margin: 0 0 0 20px;
  }
}

@media screen and (max-width: 1000px) {
  #header .container {
    margin: 0 20px;
  }
}

/* ====== ヘッダーロゴ ====== */
#header .logo {
  padding: 22px 0;
}

#header .logo img {
  width: 208px;
  height: 46px;
}

@media screen and (max-width: 1000px) {
  #header .logo {
    padding: 7px 0;
  }
  #header .logo img {
    width: 170px;
    height: 36px;
  }
}

/* ====== Gナビ ====== */
#global_nav ul {
  display: table;
  text-align: center;
  margin: 50px auto 0;
}

#global_nav a {
  font-weight: bold;
  text-decoration: none;
  transition: .3s;
  /* sp仕様 */
  display: block;
  color: #30303d;
  font-size: 14px;
  line-height: 1.5;
  padding: 5px 0;
}

/* Gナビ レスポンシブ */
@media screen and (min-width: 1001px) {
  .nav_box {
    /* ロゴとインフォバナーを引いた数 */
    /* 208px + 390px + 余白12px */
    max-width: calc(100% - 610px);
    width: 100%;
  }
  #global_nav ul {
    margin-top: 0;
    margin-right: 0;
    text-align: right;
  }
  #global_nav li {
    float: left;
    padding: 0 16px;
  }
  #global_nav li:last-child {
    padding-right: 0;
  }
  #global_nav a {
    color: #30303d;
    font-size: 14px;
    padding: 0 0 .2em;
    position: relative;
  }
  #global_nav a:after {
    position: absolute;
    display: block;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: transparent;
    transition: .3s;
    z-index: 1;
  }
  #global_nav a:hover {
    color: #f0f1f2;
  }
  #global_nav a:hover:after {
    background: #f0f1f2;
  }
}

/* ヘッダーインフォ */
.h_info_box {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
  display: block;
  height: 90px;
  overflow: hidden;
  /* ヘッダーボタン共通装飾 */
  /* スマホヘッダーインフォ レスポンシブ調整 */
}

.h_info_box:after {
  clear: both;
  content: '';
  display: block;
}

.h_info_box a {
  display: block;
  width: 100%;
  height: 100%;
}

.h_info_box .tel_info .yantramanav {
  position: relative;
}

.h_info_box .tel_info .yantramanav:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: .83em;
  height: .83em;
  background: url(../img/header/tel_icon.svg) no-repeat center/contain;
}

@media screen and (min-width: 1001px) {
  .h_info_box {
    /* PC WEB査定ボタン */
    /* PC TELボタン */
  }
  .h_info_box div a p {
    color: #fff;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    margin: 0;
  }
  .h_info_box .tel_info, .h_info_box .mail_info {
    float: left;
    transition: .3s;
  }
  .h_info_box .tel_info:hover, .h_info_box .mail_info:hover {
    padding-top: 6px;
  }
  .h_info_box.sp_h_info {
    display: none;
  }
  .h_info_box .mail_info {
    background: #1496b4;
    width: 190px;
  }
  .h_info_box .mail_info a {
    background: #1496b4;
    border-bottom: 6px solid #006a7c;
    text-decoration: none;
  }
  .h_info_box .mail_info a p {
    display: table;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.25;
    text-align: left;
    margin: auto;
    padding: 22px 0 22px 2.625em;
    position: relative;
  }
  .h_info_box .mail_info a p:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: url(../img/header/web_icon.svg) no-repeat center/contain;
  }
  .h_info_box .tel_info {
    background: #fff;
    width: 300px;
  }
  .h_info_box .tel_info a {
    background: -moz-linear-gradient(left, #f38f1e, #f37b1e, #f3691e);
    background: -webkit-linear-gradient(left, #f38f1e, #f37b1e, #f3691e);
    background: linear-gradient(to right, #f38f1e, #f37b1e, #f3691e);
    border-bottom: 6px solid #9a3f00;
    text-decoration: none;
  }
  .h_info_box .tel_info a .comments {
    background: #fff;
    color: #f3681e;
    font-weight: bold;
    letter-spacing: -.02em;
    padding: 5px 0;
  }
  .h_info_box .tel_info a .yantramanav {
    display: table;
    font-size: 36px;
    font-weight: 700;
    margin-left: .6em;
    padding: 4px 0 2px 1em;
    white-space: nowrap;
  }
  .h_info_box .tel_info a .reception_time {
    letter-spacing: .02em;
    padding: 0 0 8px;
  }
}

@media screen and (max-width: 1000px) {
  .h_info_box .consultation {
    background: #fff;
    padding: 3%;
  }
  .h_info_box.pc_h_info {
    display: none;
  }
  .h_info_box.sp_h_info {
    display: block;
    position: static;
    width: 100%;
    height: auto;
    /* ハンバーガー内ボタン 共通装飾 */
    /* ハンバーガー内 TELエリア */
    /* ハンバーガー内 WEB査定エリア */
  }
  .h_info_box.sp_h_info .tel_info, .h_info_box.sp_h_info .reception_info {
    display: block;
    margin: auto;
    background: #eee;
    text-align: center;
    float: none;
    padding: 0;
  }
  .h_info_box.sp_h_info .text_box {
    padding: 0 3% 3%;
  }
  .h_info_box.sp_h_info p {
    margin: 0;
  }
  .h_info_box.sp_h_info p.title {
    color: #fff;
    font-weight: bold;
    margin-bottom: 3%;
  }
  .h_info_box.sp_h_info p.title span {
    font-size: 16px;
  }
  .h_info_box.sp_h_info .tel_info .yantramanav:before, .h_info_box.sp_h_info .reception_info a p:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(45deg);
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  .h_info_box.sp_h_info .tel_info {
    /* TELボタン */
  }
  .h_info_box.sp_h_info .tel_info p.title {
    background: -moz-linear-gradient(left, #f38f1e, #f37b1e, #f3691e);
    background: -webkit-linear-gradient(left, #f38f1e, #f37b1e, #f3691e);
    background: linear-gradient(to right, #f38f1e, #f37b1e, #f3691e);
  }
  .h_info_box.sp_h_info .tel_info a {
    background: -moz-linear-gradient(left, #f38f1e, #f37b1e, #f3691e);
    background: -webkit-linear-gradient(left, #f38f1e, #f37b1e, #f3691e);
    background: linear-gradient(to right, #f38f1e, #f37b1e, #f3691e);
    border-bottom: 4px solid #9a3f00;
    border-radius: 5px;
    text-decoration: none;
    margin: auto;
    max-width: 268px;
  }
  .h_info_box.sp_h_info .tel_info .text_box .yantramanav {
    display: table;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    margin: 0 auto;
    padding: 14px .65em 12px 1em;
    white-space: nowrap;
  }
  .h_info_box.sp_h_info .tel_info .text_box .yantramanav:after {
    width: 20px;
    height: 20px;
  }
  .h_info_box.sp_h_info .tel_info .text_box .comments {
    color: #f3681e;
  }
  .h_info_box.sp_h_info .tel_info .text_box .reception_time {
    color: #666;
  }
  .h_info_box.sp_h_info .reception_info {
    /* 査定ボタン */
  }
  .h_info_box.sp_h_info .reception_info p.title {
    background: #1496b4;
  }
  .h_info_box.sp_h_info .reception_info a {
    background: #1496b4;
    border-bottom: 4px solid #006a7c;
    border-radius: 5px;
    text-decoration: none;
    margin: auto;
    max-width: 268px;
  }
  .h_info_box.sp_h_info .reception_info a p {
    display: table;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin: auto;
    padding: 12px 1.1em 13px 1.65em;
    white-space: nowrap;
    position: relative;
  }
  .h_info_box.sp_h_info .reception_info a p:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url(../img/header/web_icon.svg) no-repeat center/contain;
  }
  .h_info_box.sp_h_info .reception_info .reception_time span {
    color: #1496b4;
  }
}

.h_info_box.sp_h_info {
  /* 折れ曲がり防止調整 */
}

@media screen and (max-width: 480px) {
  .h_info_box.sp_h_info .text_box p {
    font-size: 3vw;
  }
}

@media screen and (min-width: 375px) {
  .h_info_box.sp_h_info .tel_info .text_box .yantramanav {
    display: block;
    width: 228px;
  }
}

@media screen and (max-width: 374px) {
  .h_info_box.sp_h_info .tel_info .text_box .yantramanav {
    font-size: 8vw;
  }
}

@media screen and (min-width: 375px) {
  .h_info_box.sp_h_info .reception_info a p {
    display: block;
    width: 232px;
  }
}

@media screen and (max-width: 374px) {
  .h_info_box.sp_h_info .reception_info a p {
    font-size: 4.8vw;
  }
}

/* ====== SPハンバーガーメニュー ====== */
#mobile-head {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 18px;
  height: 14px;
  z-index: 999;
}

#nav-toggle {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 18px;
  padding-top: 14px;
  cursor: pointer;
  z-index: 9999;
}

#nav-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #000;
  color: #000;
  left: 0;
  transition: .3s;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}

#nav-toggle span:nth-child(2) {
  top: 6px;
}

#nav-toggle span:nth-child(3) {
  top: 12px;
}

/* ====== SPメニュー挙動 ====== */
/* bodyをスクロールさせない */
.no-scroll {
  overflow: hidden;
}

/* #nav-toggle 切り替えアニメーション */
.open #nav-toggle span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(315deg);
}

.open #nav-toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}

.open #nav-toggle span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-315deg);
}

/* #nav-box全体の開閉 */
@media screen and (max-width: 1000px) {
  .nav_box {
    position: absolute;
    /* ヘッダーを隠す場合は0 */
    top: 50px;
    width: calc(75% + 40px);
    height: 100vh;
    background: #fff;
    text-align: center;
    transition: .3s;
    overflow-y: auto;
    z-index: 99;
    /* 開いてないときは隠す */
    right: -100%;
  }
  .open .nav_box {
    right: -20px;
  }
  /* アニメーション */
  .drawer-overlay {
    position: fixed;
    z-index: 9;
    /* ヘッダーを隠す場合は0 */
    top: 50px;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  header.open .drawer-overlay {
    display: block;
    height: calc(100vh + 50px);
  }
}

/* ハンバーガーメニューの文字色 */
#header.open #global_nav a {
  color: #30303d;
}

#header.open #global_nav a:hover {
  color: #30303d;
}

/* PC時はテキストGナビ */
@media screen and (min-width: 1001px) {
  #mobile-head, #nav-toggle {
    display: none;
  }
}

/* ============================== */
/* フッター */
/* ============================== */
footer {
  background: #1a1a1a;
  z-index: 99;
  position: relative;
}

/* ====== フッターインフォ ====== */
#footer {
  /* ====== フッターコピーライト ====== */
}

@media screen and (min-width: 768px) {
  #footer .flexbox {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

#footer .flexbox .img_box {
  width: 50%;
  padding-top: 418px;
  position: relative;
}

@media screen and (max-width: 1280px) {
  #footer .flexbox .img_box {
    padding-top: 32.65625%;
  }
}

@media screen and (max-width: 767px) {
  #footer .flexbox .img_box {
    width: 100%;
    padding-top: 43.54167%;
  }
}

#footer .flexbox .img_box:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url(../img/footer/footer_bg.jpg) no-repeat center/cover;
  z-index: -1;
}

#footer .flexbox .img_box h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  z-index: 2;
}

#footer .flexbox .img_box h2 span {
  padding-left: 0;
}

#footer .flexbox .f_info_box {
  display: table;
  margin: auto;
  padding: 5% 2%;
}

#footer .flexbox .f_info_box h3, #footer .flexbox .f_info_box p, #footer .flexbox .f_info_box th, #footer .flexbox .f_info_box td {
  color: #fff;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  #footer .flexbox .f_info_box {
    width: 50%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  #footer .flexbox .f_info_box h3 {
    font-size: 20px;
  }
  #footer .flexbox .f_info_box th, #footer .flexbox .f_info_box td {
    line-height: 1.5;
  }
}

#footer .flexbox .f_info_table th {
  vertical-align: text-top;
}

#footer .flexbox .f_info_table td {
  padding-left: 1em;
}

#footer .flexbox .f_info_table a {
  color: #fff;
}

#footer .flexbox .f_info_table span {
  display: block;
}

@media screen and (min-width: 1001px) {
  #footer .flexbox .f_info_table span {
    margin-left: .5em;
    display: inline;
  }
}

#footer iframe {
  vertical-align: bottom;
  filter: grayscale(100%);
}

/* ====== フッターコピーライト ====== */
.footer_copyArea {
  padding-bottom: 1em;
}

.footer_copyright {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 12px;
  padding-top: .75em;
}
@media screen and (max-width:640px) {
  .footer_copyArea {
    padding-bottom: 80px;
  }
}
/* ====== フロートボタン ====== */
#page_top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  border: 2px solid #30303d;
  background: #fff;
  border-radius: 50%;
  z-index: 999;
  opacity: .9;
}

#page_top a {
  display: block;
  width: 100%;
  height: 100%;
}

#page_top a:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border: .45em solid transparent;
  border-top: none;
  border-bottom: 0.65em solid #30303d;
  z-index: 999;
}

@media screen and (min-width: 601px) {
  #page_top {
    width: 50px;
    height: 50px;
  }
}

/* ============================== */
/* 404 */
/* ============================== */
main:not(.home) h1 {
  font-size: 36px;
  padding: 1.8em 0;
  max-width: 1280px;
  margin: auto;
  margin-top: 90px;
  position: relative;
}

main:not(.home) h1:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100%;
  background: #f0f1f2;
  z-index: -1;
}

main:not(.home) h1 span {
  display: block;
  font-size: 16px;
}

@media screen and (max-width: 1320px) {
  main:not(.home) h1 {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 1000px) {
  main:not(.home) h1 {
    margin-top: 50px;
  }
}

@media screen and (max-width: 600px) {
  main:not(.home) h1 {
    font-size: 24px;
  }
  main:not(.home) h1 span {
    font-size: 14px;
  }
}

#not_found {
  padding: 10% 0;
}

@media screen and (max-width: 600px) {
  #not_found {
    padding: 16.71642% 0;
  }
}

#not_found p {
  text-align: center;
}
