@charset "utf-8";
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* * Basic information:
* * - CSS guideline : FLOCSS
* *
* * Order of discription:
* * - Foundation [ reset / base ]
* * - Layout [ header / main / side / footer ]
* * - Object [ component / project / utility ]
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /

/****************************
  base
*****************************/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
  font-family: fot-cezanne-pron, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #000;
  min-width: 1200px;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

select {
  font-size: 14px;
  background-color: #fff;
  height: 26px;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

a img:hover {
  opacity: 0.75;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a:hover,
a:active,
a:focus {
  text-decoration: inherit;
}

a:hover {
  opacity: 1;
}

a[href]:hover {
  opacity: 0.8;
}

a {
  text-decoration: inherit;
  color: inherit;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: middle;
}

.flex {
  display: flex;
}

/* ==========================================================================
Layout [ header / main / side / footer... ]
========================================================================== */

/* Header
---------------------------------------------------------------*/
.l-header {
  background-color: #a40005;
  padding-top: 20px;
}

.l-header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.l-header-logo img {
  width: 250px;
  height: auto;
}
.l-header-logo h1 a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.l-header-logo h1 a span {
  font-size: 12px;
  margin-left: 12px;
}
.l-header-splink {
  display: none;
}

.l-header-inf {
  margin-left: auto;
}

.l-header-inf ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.l-header-inf ul li + li {
  margin-left: 10px;
}

.l-header-inf ul li:nth-child(1) img {
  width: 55px;
  height: auto;
}

.l-header-inf ul li:nth-child(2) img {
  width: 52px;
  height: auto;
}

.l-header-inf ul li:nth-child(3) img {
  width: 51px;
  height: auto;
}

.l-header-inf ul li:nth-child(4) img {
  width: 113px;
  height: auto;
  margin-top: 5px;
}
.l-header-inf ul li:nth-child(4) .purchase_appraisal {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  background: #4a9137;
  padding: 9px 10px 9px 17px;
  border-radius: 15px;
  display: inline-block;
}

.l-header-nav {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  z-index: 9999;
  position: relative;
}

.l-header-nav .l-header-nav_list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.l-header-nav .l-header-nav_list li.l-header-nav_list__item {
  width: 16.666%;
  position: relative;
}

.l-header-nav .l-header-nav_list li.l-header-nav_list__item:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 2px;
  height: 100%;
  background: #fff;
}

.l-header-nav .l-header-nav_list li.l-header-nav_list__item:nth-child(1):after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2px;
  height: 100%;
  background: #fff;
}

.l-header-nav .l-header-nav_list li.l-header-nav_list__item a,
.l-header-nav .l-header-nav_list li.l-header-nav_list__item p {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
  cursor: pointer;
}

.l-header_sub {
  position: absolute;
  left: 0;
  padding-top: 1px;
  width: 100%;
  background-color: rgba(144, 0, 0, 0.6);
  display: none;
}

.l-header_sub li a {
  border-bottom: 1px solid #fff;
  text-align: center;
  padding: 20px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.l-header_sub li a span {
  display: block;
  line-height: 1.3;
  font-size: 14px;
}
.header-telbox div {
  display: flex;
  align-items: center;
}
.header-telbox {
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.header-telbox div {
  display: flex;
  align-items: center;
}
.header-telbox div span {
  font-size: 40px;
  margin-left: 10px;
  line-height: 1;
}
.header-phone-number {
  font-size: 30px !important;
}
.header-telbox p {
  font-size: 12px;
  text-align: left;
}
/* Main
---------------------------------------------------------------*/
.l-wrapper {
  overflow: hidden;
  width: 100%;
}

#main {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.wp-block-columns {
  align-items: normal;
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 1.75em;
}
.wp-block-column {
  flex-basis: 0;
  flex-grow: 1;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Footer
---------------------------------------------------------------*/
.l-footer {
  background-color: #a40005;
  padding: 30px;
}

.l-footer {
  background-color: #b20005;
  padding: 30px;
  color: #fff;
  text-align: center;
}
.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  font-size: 18px;
}
.l-footer img {
  width: 100%;
  max-width: 335px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/*pagetop*/
.l-footer-top {
  position: fixed;
  z-index: 300;
  right: 230px;
  bottom: 340px;
  width: 74px;
  height: 74px;
}

.l-footer-top__link {
  display: none;
}

.l-footer-top__link.totop img {
  width: 94px;
  height: 94px;
}

.l-floating-top {
  position: fixed;
  z-index: 100;
  right: 0px;
  bottom: 0px;
  width: 305px;
  height: 87px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.l-floating-top.active {
  height: auto;
}

.floating__link {
  position: relative;
}

.floating__link:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 63px;
  width: 22px;
  height: 22px;
  background: url(../images/floatin_open.png);
  display: block;
}

.floating__link.active:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 63px;
  width: 22px;
  height: 22px;
  background: url(../images/floatin_close.png);
  display: block;
}

.floating__link .close_img {
  display: none;
}

.floating_inner {
  background: rgba(250, 250, 250, 0.4);
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.floating_inner a {
  display: block;
  margin-bottom: 10px;
}

.sp-header-inf,
.sp-tell_info,
.sp-fixed {
  display: none;
}

.pc-side-fixed {
  position: fixed;
  z-index: 200;
  top: 120px;
  left: 0;
  width: 381px;
  height: 338px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.pc-side-fixed.active {
  right: -12px;
}

.pc-side-fixed__inner {
  background: rgba(250, 250, 250, 0.4);
  padding: 10px;
  width: 330px;
  display: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0 20px 0 0;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.3);
}

.pc-side-fixed.active .pc-side-fixed__inner {
  display: block;
}

.pc-side-fixed__inner a {
  display: block;
}

.side_open_btn {
  width: 51px;
  position: absolute;
  bottom: -17px;
  left: 0;
}

.side_open_btn:before {
  content: "";
  position: absolute;
  left: 23px;
  top: 21px;
  width: 22px;
  height: 22px;
  background: url(../images/floatin_open.png);
  display: block;
}

.side_open_btn.active:before {
  content: "";
  position: absolute;
  left: 23px;
  top: 21px;
  width: 22px;
  height: 22px;
  background: url(../images/floatin_close.png);
  display: block;
}

/* ==========================================================================
Project [ articles / ranking / promo... ]
========================================================================== */
.mv {
  height: 488px;
  background: url(../images/mv.png) no-repeat top center;
  background-size: cover;
  max-width: 1920px;
  margin: 0 auto 20px;
}
.reason_block {
  padding-bottom: 10px;
}

.ta-img {
  display: block;
  margin: 0 auto;
}

.u-mb-20 {
  margin-bottom: 20px;
}
.align-center {
  align-items: center;
}
.flex-center {
  justify-content: center;
}
.lp-reasons {
  padding: 0 20px 20px;
  background: #efe2dc;
}
.lp-reasons__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 20px;
}
.lp-reasons__item {
  width: 19%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#0f1330),
    to(#040001)
  );
  background: -webkit-linear-gradient(left, #0f1330 0%, #040001 100%);
  background: linear-gradient(90deg, #0f1330 0%, #040001 100%);
  text-align: center;
  font-weight: bold;
  border-radius: 4px;
}
.lp-reasons__item .u-pc.reason-pc {
  padding: 0 5px 5px 5px;
  height: 100%;
}
.lp-reasons__item .u-pc.reason-pc .reason_number {
  color: #fff;
  font-size: 27px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}
.lp-reasons__item .u-pc.reason-pc .reason_number span {
  background: linear-gradient(
    153deg,
    rgba(239, 203, 41, 1) 0%,
    rgba(247, 244, 202, 1) 30%,
    rgba(214, 139, 17, 1) 70%,
    rgba(227, 170, 23, 1) 73%,
    rgba(187, 146, 40, 1) 100%
  );
  padding: 0 10px;
  border-radius: 100%;
  color: #090814;
  line-height: 1.3em;
  margin-left: 7px;
}
.lp-reasons__item .u-pc.reason-pc .reason_body {
  background: #fffafa;
  height: 73%;
}
.lp-reasons__item .u-pc.reason-pc .reason_body .reason_ttl {
  color: #b40005;
  font-size: 30px;
  font-weight: bold;
}
.lp-reasons__item .u-pc.reason-pc .reason_body .reason_txt {
  line-height: 1.6;
  font-size: 22px;
  margin-bottom: 5px;
}
.lp-reasons__item .u-pc.reason-pc .reason_body .reason_txt.small {
  font-size: 18px;
  line-height: 1.2em;
}
#section_reason_ttl {
  font-size: 35px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.kaitori_section1 {
  font-weight: bold;
}
.kaitori_section1 .title-02,
.achievement-body-title {
  background: linear-gradient(
    180deg,
    rgba(75, 16, 22, 1) 0%,
    rgba(189, 6, 32, 1) 40%,
    rgba(101, 0, 15, 1) 67%,
    rgba(157, 1, 22, 1) 85%,
    rgba(111, 0, 18, 1) 100%
  );
  color: #fff;
  border: none;
  font-size: 40px;
  line-height: 1.5em;
  text-align: center;
  max-width: 80%;
  margin: 0 auto 20px;
  padding: 10px 0;
}
.kaitori_section1 .wp-block-columns {
  margin-bottom: 13px;
}
.kaitori_section1 .wp-block-columns .kaitori_section1_item_body {
  background: linear-gradient(
    180deg,
    rgba(93, 89, 90, 1) 0%,
    rgba(225, 223, 224, 1) 64%,
    rgba(208, 194, 193, 1) 90%
  );
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 190px;
}
.kaitori_section1 .wp-block-columns .kaitori_section1_item:not(:first-child) {
  margin-left: 28px;
}
.kaitori_section1 .wp-block-columns .kaitori_section1_item_body p {
  font-size: 35px;
  line-height: 1em;
}
.kaitori_section1 .wp-block-columns .kaitori_section1_item_body p span {
  font-size: 25px;
}
.kaitori_section1 .wp-block-columns .kaitori_section1_item_body img {
  max-width: 140px;
}
.kaitori_section1_bottom {
  background-size: 100% 100%;
  text-align: center;
  font-weight: 700;
  padding: 7px 0;
  background: linear-gradient(
    90deg,
    rgba(141, 110, 55, 1) 0%,
    rgba(255, 228, 164, 1) 50%,
    rgba(141, 110, 55, 1) 100%
  );
  margin-bottom: 50px;
}
.kaitori_section1_bottom p {
  font-size: 35px;
}
.kaitori_section1_bottom h3 {
  color: #fff;
  background: #008086;
  font-size: 50px;
  margin: 0 1px;
}
.kaitori_section1_bottom h3 span {
  font-size: 35px;
}
.kaitori_section1 .wp-block-columns .kaitori_section1_item_title {
  background: linear-gradient(
    180deg,
    rgba(111, 7, 30, 1) 0%,
    rgba(176, 12, 34, 1) 60%,
    rgba(114, 7, 23, 1) 100%
  );
  background-size: 100% 100%;
  color: #fff;
  text-align: center;
  font-size: 22px;
  padding: 5px 0;
}
.lp-point .title-01 {
  padding: 1px 0;
  background: #000;
  font-size: 30px;
}
.lp-pickup {
  margin-top: 5%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.lp-point .lp-pickup__photoBox {
  text-align: center;
  width: 45%;
}
.lp-point .lp-pickup__photoBox img {
  max-width: 450px;
}
.lp-point .lp-pickup__textBox {
  width: 55%;
}
.lp-pickup__product-info {
  font-weight: 700;
  border-bottom: 2px dashed #231815;
  letter-spacing: -0.02em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: end;
}
.lp-point .lp-pickup__textBox .lp-pickup__product-info {
  display: block;
}
.lp-point
  .lp-pickup__textBox
  .lp-pickup__product-info
  .lp-pickup__product-title {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
}
.lp-point
  .lp-pickup__textBox
  .lp-pickup__product-info
  .lp-pickup__product-title
  span {
  font-size: 1.8rem;
}
.lp-pickup__other-co {
  margin-top: 5%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.lp-pickup__co-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.lp-pickup__co-name,
.lp-pickup__co-name--blue {
  padding: 1% 5%;
  margin-right: 2%;
  font-size: 3rem;
  color: #fff;
  line-height: 1.2;
  background-color: #61b458;
  border-radius: 25px;
  text-align: center;
  white-space: nowrap;
}
.lp-pickup__co-name--blue {
  background-color: #25509e;
}
.lp-point
  .lp-pickup__textBox
  .lp-pickup__other-co
  .lp-pickup__co-item
  .lp-pickup__co-name,
.lp-point
  .lp-pickup__textBox
  .lp-pickup__other-co
  .lp-pickup__co-item
  .lp-pickup__co-name--blue {
  font-size: 2rem;
  margin-right: 10px;
}
.lp-pickup__co-price {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.lp-point .lp-pickup__textBox .lp-pickup__manekiya-price {
  color: #a50005;
  font-size: 2rem;
  font-weight: 700;
  padding: 30px 0 10px;
  text-align: center;
}
.lp-point
  .lp-pickup__textBox
  .lp-pickup__manekiya-price
  .lp-pickup__manekiya-label {
  font-size: 35px;
}
.lp-point .lp-pickup__textBox .lp-pickup__manekiya-price .purchase_mark {
  background: #a50005;
  color: #fff;
  font-size: 2.5rem;
  border-radius: 6px;
  padding: 0 4px;
  height: 55px;
  width: 55px;
  display: inline-block;
  line-height: 1.5;
}
.lp-point .lp-pickup__textBox .lp-pickup__manekiya-price .price_value {
  font-size: 3.5rem;
}
.lp-point .lp-pickup__price_dff {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
.lp-point .lp-pickup__price {
  color: #000;
  font-size: 2.7rem;
  font-weight: 700;
  padding: 0 10%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(85%, transparent),
    color-stop(85%, #d8af25)
  );
  background: -webkit-linear-gradient(transparent 85%, #d8af25 85%);
  background: linear-gradient(transparent 85%, #d8af25 85%);
}
.lp-table {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 5% auto 0;
  width: 100%;
  border-collapse: collapse;
  border: 2px dotted #231815;
}
.lp-table__head {
  border: 2px solid #231815;
}
.lp-point .lp-table__head .lp-table_row th {
  font-size: 1.3rem;
  font-weight: 700;
  padding: 7px 0;
}
.lp-point .lp-table__th--compare,
.lp-point .lp-table__th--model {
  background: #ffeed9;
}
.lp-table__th--compare:not(:first-of-type),
.lp-table__th--diff:not(:first-of-type),
.lp-table__th--model:not(:first-of-type),
.lp-table__th--purchase:not(:first-of-type),
.lp-table__th:not(:first-of-type) {
  border-left: 2px dotted #231815;
}
.lp-table__th,
.lp-table__th--compare,
.lp-table__th--diff,
.lp-table__th--model,
.lp-table__th--purchase {
  padding: 0 0.5em;
  font-size: 2em;
  text-align: center;
  vertical-align: middle;
  background-color: #d8d9d9;
}
.lp-point .lp-table__th--model {
  width: 30%;
  min-width: 200px;
}
.lp-point .lp-table__th--compare {
  width: 22%;
  min-width: 140px;
}
.lp-table__th--purchase {
  color: #fff;
  background-color: #a50005;
  width: 23%;
  min-width: 150px;
}
.lp-point .lp-table__th--diff {
  width: 23%;
  min-width: 150px;
  color: #fff;
  background-color: #a50005;
}
.lp-table__body {
  border: 2px solid #231815;
}
.lp-table__td,
.lp-table__td--compare,
.lp-table__td--diff,
.lp-table__td--model,
.lp-table__td--purchase {
  padding: 2%;
  height: 120px;
  line-height: 1.3;
  vertical-align: middle;
  border: 2px dotted #231815;
}
.lp-point .lp-table__body .lp-table__row td {
  padding: 1%;
}
.lp-table__td--model {
  text-align: center;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: -0.1rem;
}
.lp-point .lp-table__body .lp-table__row td.lp-table__td--compare {
  font-weight: 700;
  font-size: 18px;
  text-align: left;
  padding-left: 5.5%;
}
.lp-table__model-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.lp-point .lp-table__body .lp-table__row td .lp-table__model-inner {
  -webkit-box-orient: initial;
  -webkit-box-direction: initial;
  -webkit-flex-direction: initial;
  -ms-flex-direction: initial;
  flex-direction: initial;
}
.lp-point
  .lp-table__body
  .lp-table__row
  td
  .lp-table__model-inner
  .lp-table__photo-box {
  width: 40%;
}
.lp-point
  .lp-table__body
  .lp-table__row
  td
  .lp-table__model-inner
  .lp-table__photo-box
  img {
  max-width: 120px;
  max-height: 100px;
  width: auto;
}
.lp-point
  .lp-table__body
  .lp-table__row
  td
  .lp-table__model-inner
  .lp-table__text-box {
  width: 60%;
  font-size: 18px;
  text-align: left;
  padding-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-point .lp-table__body .lp-table__row td.lp-table__td--compare .u-blue {
  color: #25508f !important;
}
.lp-point
  .lp-table__body
  .lp-table__row
  td.lp-table__td--compare
  .other_company_mark {
  font-weight: 700;
  color: #fff;
  border-radius: 12px;
  padding: 0 5px;
}
.lp-point .lp-table__body .lp-table__row td.lp-table__td--compare .u-green {
  color: #237b3a;
}
.lp-point
  .lp-table__body
  .lp-table__row
  td.lp-table__td--purchase
  .kaitori_example_price {
  font-weight: 900;
  font-size: 28px;
}
.lp-table__td--diff {
  font-size: 28px;
  font-weight: 900;
  text-align: right;
  color: #a50005;
  background-color: #f9eae1;
  letter-spacing: -0.03em;
}
.lp-point .lp-table__body .lp-table__row td.lp-table__td--diff {
  text-align: center;
}
.lp-point .lp-table__body .lp-table__row td.lp-table__td--purchase {
  color: #a40005;
  text-align: center;
  font-size: 2.3rem;
}
.c-right-text {
  text-align: right;
}
.case_overflow {
  margin-bottom: 20px;
}
.lp-how2buy {
  padding: 20px;
  background-color: #eae9ea;
  max-width: 1130px;
  margin: 0 auto;
  box-sizing: border-box;
}
.lp-how2buy__h2-area {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lp-how2buy__h2-img {
  flex-basis: 24%;
}
.lp-how2buy__h2 {
  font-size: 70px;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.lp-how2buy__icons-area {
  display: none;
}
.lp-how2buy__icon {
  margin-top: 10px;
  border: 2px solid #231815;
  border-radius: 10px;
  padding: 2%;
  max-width: 30%;
  height: auto;
}
.lp-how2buy__h3-area {
  padding: 10px 30px;
  border: 3px solid #231815;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
}
.lp-how2buy__h3-icon {
  flex-basis: 9%;
}
.lp-how2buy__h3 {
  margin-left: 5%;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
}
.lp-how2buy__toggle {
  position: absolute;
  height: 70%;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/open-white.svg) no-repeat center bottom 0/55%;
}
.lp-how2buy__toggle--open {
  background-image: url(../images/close-white.svg);
}
.lp-how2buy__toggle-inner {
  color: #848585;
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-weight: 400;
  vertical-align: top;
}
.lp-how2buy__content {
  display: none;
  margin: 0 20px;
}
.lp-how2buy__h4 {
  margin: 2% auto;
  background-color: #231815;
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 1.1rem);
  padding: 6px 0;
}
.lp-shuccho-buy-flow ol {
  padding: 0 30px;
}
.lp-how2buy__point-list {
  padding: 0 50px;
}
.p-shop-map {
  position: relative;
  margin-bottom: 50px;
}
.map_store_name {
  position: absolute;
  font-size: 20px;
  font-weight: 800;
  color: #231815;
}
.p-shop-map__umeda {
  top: 4%;
  right: 46%;
}
.p-shop-map__shinsaibashi {
  top: 7%;
  right: 46%;
}
.p-shop-map__hankyu {
  top: 10%;
  right: 46%;
}
.p-shop-map__abeno {
  top: 13%;
  right: 46%;
}
.p-shop-map__ueno {
  top: 32%;
  right: 0;
}
.p-shop-map__tsukuba {
  top: 50.5%;
  right: 0;
}
.p-shop-map__seiyu {
  top: 53.5%;
  right: 0;
}
.p-shop-map__sakae {
  top: 81%;
  right: 40%;
}
.p-shop-map__shizuoka {
  bottom: 5%;
  right: 40%;
  pointer-events: none;
}
.p-shop-map__kobe {
  top: 34%;
  right: 47%;
  left: auto;
  pointer-events: none;
}
.p-shop-map__okayama {
  top: 36.5%;
  left: 10px;
  text-align: left !important;
  pointer-events: none;
}
.p-shop-map__okayama .shop_label_desc {
  margin-left: 20px;
}
.p-shop-map__hiroshima {
  top: 47.5%;
  left: 10px;
  text-align: left !important;
  pointer-events: none;
}
.p-shop-map__ginza {
  top: 35%;
  right: 0;
}
.p-shop-map__tokyoeki {
  top: 23.5%;
  right: 47%;
  pointer-events: none;
}
.p-shop-map__yokohama {
  top: 84%;
  right: 0;
}
.p-shop-map__shinjuku {
  top: 38.5%;
  right: 0;
  pointer-events: none;
}
.p-shop-map__omiya {
  top: 62%;
  right: 0;
  pointer-events: none;
}
.p-shop-map__matsudo {
  top: 72%;
  right: 0;
  pointer-events: none;
}
.p-shop-map__desc {
  font-size: 0.6em;
}
.p-shop-map .area {
  font-weight: 700;
  background: #b60005;
  color: #fff;
  position: absolute;
  padding: 0 40px;
  border-radius: 15px;
  letter-spacing: 0.2em;
  font-size: 20px;
}
.p-shop-map .area.kansai {
  left: 34%;
  top: -3%;
}
.p-shop-map .area.chukoku {
  top: 28%;
}

.p-shop-map .area.tokai {
  top: 96%;
  left: 38%;
}
#moyoriTtl01 .p-shop-map .area.tokai {
  left: 43%;
}
.p-shop-map .area.kanto {
  top: 90%;
  right: 0;
}
.p-shop-map__hiroshima:before,
.p-shop-map__okayama:before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  line-height: 1em;
  background: #b60005;
  color: #fff;
  padding: 2.5px 6px;
  border-radius: 100%;
  margin-right: 5px;
}
.lp-shop-list .p-shop-map__shizuoka {
  bottom: 6%;
}
.shop_pref {
  position: absolute;
  font-size: 15px;
  color: #b60005;
  font-weight: 700;
}
.shop_pref.osaka {
  top: 1%;
  right: 48%;
  left: auto;
}

.shop_pref.tokyofu {
  top: 20%;
  right: 48%;
  left: auto;
}
.shop_pref.ibaragi {
  top: 48%;
  right: 2%;
}

.shop_pref.saitama {
  top: 59%;
  right: 2%;
}

.shop_pref.chiba {
  top: 69%;
  right: 2%;
}
.shop_pref.aichi {
  top: 78%;
  right: 42%;
  left: auto;
}
.shop_pref.shizuoka {
  top: 86%;
  right: 42%;
  left: auto;
}
#moyoriTtl01 .shop_pref.shizuoka {
  left: 53%;
  right: auto;
}
.shop_pref.okayama {
  top: 34%;
  left: 4%;
}
.shop_pref.hyogo {
  top: 31%;
  right: 48%;
  left: auto;
}
.shop_pref.tokyodo {
  top: 28%;
  right: 2%;
}
.shop_pref.kanagawa {
  top: 81%;
  right: 2%;
}
.shop_pref.hiroshima {
  top: 44%;
  left: 4%;
}
.tabContent_inner_ttl {
  background: #b00005;
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  padding: 10px 0;
  margin: 0 auto 10px;
  max-width: 1112px;
}
.c-red-balloon {
  position: relative;
  margin: 1.5em 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  font-size: 16px;
  background: #b00005;
  border-radius: 30px;
}
.c-red-balloon:before {
  content: "";
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translateX(-50%);
  border: 16px solid transparent;
  border-top: 16px solid #b00005;
}
.lp-how2buy__h5 {
  color: #fff;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
}
.lp-how2buy__shop-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-shop-card {
  width: 48%;
}
.p-shop-card__img-area {
  border: 3px solid #b00005;
}
.p-shop-card__name-area {
  padding: 10px;
  font-size: 20px;
  position: relative;
  background-color: #b00005;
  color: #fff;
}
.p-shop-card__name {
  text-align: center;
}
.p-shop-card__more-link {
  position: absolute;
  color: #fff;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.p-shop-card__more-link:after {
  content: ">";
}
.p-shop-card__map-link {
  color: #b00005;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin-top: 10px;
}
.p-shop-card__map-link:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/map-pin.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.p-shop-card__phone-area {
  text-align: center;
  padding-bottom: 4vw;
}
.p-shop-card__phone-number {
  display: block;
  color: #000;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.5;
}
.p-shop-card__phone-number:before {
  content: "";
  margin-right: 0.2em;
  display: inline-block;
  width: 1.2em;
  height: 1em;
  background-image: url(../images/phone-icon.svg);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
}
.p-shop-card__phone-reception {
  font-size: 25px;
  line-height: 1;
}
.p-flex-card__img-area {
  width: 47%;
}
.p-flex-card__text-area {
  width: 53%;
  padding: 0 2%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.p-flex-card__title {
  color: #b00005;
  font-size: 25px;
  font-weight: 800;
  padding-left: clamp(1.5rem, 2vw, 2.5rem);
}
.p-flex-card__description {
  font-size: 18px;
  padding-left: clamp(1.5rem, 2vw, 2.5rem);
}
.p-flex-card--reverse {
  flex-direction: row-reverse;
  display: flex;
}
.p-flex-card--reverse .p-flex-card__text-area,
.p-flex-card--reverse .p-flex-card__title,
.p-flex-card--reverse .p-flex-card__description {
  padding-left: 0;
}
.lp-how2buy__shop-area,
.lp-how2buy__feature-area,
.lp-how2buy__flow-area {
  padding: 0 50px;
}
.lp-how2buy__flow-area .p-flex-card__img-area,
.lp-how2buy__flow-list .p-flex-card__img-area {
  width: 35%;
}
.lp-how2buy__flow-area .p-flex-card__text-area,
.p-flex-card__img-area .p-flex-card__text-area {
  width: 65%;
}
.lp-how2buy__shop-link-area {
  margin: 50px auto;
  text-align: center;
}
.lp-how2buy__feature-list li:not(:first-child) {
  margin-top: 20px;
}
.c-red-round-btn {
  min-width: 350px;
  cursor: pointer;
  background-color: #ad0005;
  border-radius: 50px;
  color: #fff;
  transition: all 0.3s;
  padding: 5px 0 10px;
  box-shadow: 3px 3px 6px 0px #565656;
  display: inline-block;
  font-size: 25px;
}
.c-bule-round-btn {
  min-width: 350px;
  cursor: pointer;
  background-color: #4040ff;
  border-radius: 50px;
  color: #fff;
  transition: all 0.3s;
  padding: 5px 0 10px;
  box-shadow: 3px 3px 6px 0px #565656;
  display: inline-block;
  font-size: 25px;
}

.p-buy-flow__step-title {
  display: flex;
  flex-wrap: nowrap;
  border: 2px solid #b00005;
  border-radius: 15px;
  background-color: #fff;
  overflow: hidden;
  align-items: center;
}
.p-buy-flow__step {
  padding: 0.5rem 1rem;
  background-color: #b00005;
  color: #fff;
  font-size: 25px;
  font-weight: 800;
}
.p-buy-flow__step-num {
  display: inline-block;
  width: 25px;
  height: 25px;
  text-align: center;
  font-size: 25px;
  line-height: 1;
  color: #b00005;
  background-color: #fff;
  border-radius: 50%;
}
.p-buy-flow__title-text {
  flex-grow: 1;
  font-size: 25px;
  color: #b00005;
  text-align: center;
  line-height: 1.5;
  font-weight: 800;
}
.lp-how2buy__item:not(:first-of-type) {
  margin-top: 20px;
}
.lp-advantage {
  background-color: #fff;
  padding: 1rem 0;
}
.lp-advantage__inner {
  position: relative;
  width: 92%;
  margin: 0 auto;
  background: url(../images/car-icon.svg) no-repeat right bottom/45%;
  background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: lighten;
  padding-bottom: 40px;
}
.lp-advantage__badge-area {
  position: absolute;
  top: 13%;
  right: 0;
  display: flex;
  justify-content: space-between;
  width: 190px;
  column-gap: 10px;
}
.p-icon-badge {
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90px;
  border: 1px solid #b00005;
  border-radius: 15px;
}
.p-icon-badge__text-area {
  border-bottom: 3px solid #eec760;
  font-size: 1.8rem;
  font-weight: 600;
  color: #b00005;
  text-align: center;
}
.p-icon-badge__small-text {
  font-size: 0.5em;
  line-height: 1.2;
}
.p-icon-badge__img-area img {
  height: 45px;
}
.c-green-title {
  display: block;
  border: 2px solid #008086;
  color: #008086;
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  padding: 5px 0;
}
.red {
  color: #b10005;
}
.lp-advantage__item {
  margin-top: 20px;
  padding-left: 30px;
  border-left: 20px solid #df0012;
}
.lp-advantage__text {
  font-size: 25px;
  font-weight: 800;
}
.lp-advantage__text.red {
  font-size: 18px;
}
.p-buy-flow2 {
  position: relative;
}
.p-buy-flow2:not(:last-of-type) {
  margin-bottom: 45px;
}
.p-buy-flow2__inner {
  margin-top: 2rem;
  padding: 40px 40px 30px;
  border: 1px solid #b00005;
  border-radius: 15px;
  background-color: #ecf0f2;
  position: relative;
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  column-gap: 30px;
}
.p-buy-flow2__step {
  display: inline-block;
  padding: 0 2em;
  min-width: 50px;
  position: absolute;
  top: 0;
  left: 3.5%;
  transform: translateY(-50%);
  background-color: #b00005;
  border-radius: 20px;
  color: #fff;
  font-size: 25px;
}
.p-buy-flow2__img {
  grid-row: 1/3;
  grid-column: 1;
}
.p-buy-flow2__title {
  grid-row: 1;
  grid-column: 2;
  color: #b00005;
  font-size: 22px;
  font-weight: 800;
}
.p-buy-flow2__description {
  grid-row: 2;
  grid-column: 2;
  font-size: 1rem;
  line-height: 2;
  font-size: 18px;
}
.lp-tel-link-area {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-tel-link-area__text-area {
  display: flex;
  flex-direction: column;
  width: 44%;
}
.lp-tel-link-area__text {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}
.lp-tel-link-area__text.red {
  font-size: 30px;
}
.lp-tel-link-area__phone-number {
  display: block;
  color: #fff !important;
  font-size: clamp(1.5rem, 2.5vw, 35px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.05rem;
  text-align: center;
}
.lp-tel-link-area__phone-number:before {
  content: "";
  margin-right: 0.2em;
  display: inline-block;
  width: 1.2em;
  height: 1em;
  background-image: url(../images/phone-icon-white.svg);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
}
.lp-tel-link-area__reception {
  font-size: clamp(1rem, 2vw, 16px);
  text-align: center;
  line-height: 1;
}
.lp-how2buy__point-list li {
  margin-top: 30px;
}
.lp-how2buy__point-list li:first-child {
  margin-top: 70px;
}
.p-point-box {
  border: 3px solid #b00005;
  border-radius: 30px;
  overflow: hidden;
}
.p-point-box__title-area {
  padding: 10px 5px;
  background-color: #b00005;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-point-box__point {
  padding: 0 1rem;
  background-color: #fff;
  color: #b00005;
  border-radius: 20px;
  font-size: 25px;
  text-align: center;
  font-weight: bold;
}
.p-point-box__point-number {
  display: inline-block;
  width: 25px;
  height: 25px;
  text-align: center;
  font-size: 22px;
  line-height: 1;
  color: #fff;
  background-color: #b00005;
  border-radius: 100%;
}
.p-point-box__title {
  margin-left: 2rem;
  font-size: 28px;
}
.p-point-box__title-area .point01_period {
  text-align: right;
  font-size: 10px;
  float: right;
  color: #fff;
  margin-left: 15px;
}
.p-point-box__content-area {
  padding: 5px;
  background-color: #fff;
}
.p-point-box__content-area .point01_period {
  text-align: right;
  padding-right: 20px;
}
.p-point-box__point-text {
  color: #b00005;
  text-align: center;
  font-size: 20px;
  margin: 0 0 10px;
  text-decoration: underline;
  text-decoration-color: #d8af25;
  text-underline-offset: 5px;
  text-decoration-thickness: 3px;
  font-weight: bold;
}
.lp-how2buy__point-list
  .p-point-box:not(:first-child)
  .p-point-box__point-text {
  margin-top: 40px;
}
.p-point-box__point-subtext {
  text-align: center;
  font-size: 16px;
}
.p-point-box__img {
  max-width: 22%;
  margin: 20px auto;
}
.p-point-box__attention {
  padding: 5px;
  max-width: 90%;
  margin: 0 auto 10px;
  text-align: left;
}
.p-point-box__point2-wrap {
  max-width: 95%;
  margin: 0 auto;
}
.p-point-box__point2-wrap .p-point-box__text {
  color: rgb(165, 0, 5);
  text-align: center;
  font-size: 20px;
  position: relative;
  margin: auto;
  max-width: 60%;
  padding: 1rem;
}
.p-point-box__point2-wrap .p-point-box__text:before {
  content: "";
  background-image: url(../images/checkbox.svg);
  width: 45px;
  height: 45px;
  position: absolute;
  left: 0;
  top: 20%;
  background-repeat: no-repeat;
}
.p-point-box__point3-wrap {
  max-width: 820px;
  margin: auto;
}
.p-point-box__point3-wrap .point3_method {
  display: flex;
  margin-bottom: 20px;
}
.p-point-box__point3-wrap .point3_method_title {
  background: #b40005;
  color: #fff;
  writing-mode: vertical-rl;
  font-size: 26px;
  padding: 25px 5px;
  letter-spacing: 0.2em;
  margin-right: 10px;
  text-align: center;
}
.p-point-box__point3-wrap .point3_method_content {
  border: 1px solid #b40005;
  padding: 30px 0;
  width: 100%;
}
.p-point-box__point3-wrap .point3_method_content > div {
  max-width: 620px;
  margin: auto;
}
.p-point-box__point3-wrap .point3_method_content .point3_method_workday {
  color: #b40005;
  font-weight: 700;
  font-size: 20px;
}
.c-red-line-balloon {
  position: relative;
  margin: 1.5em auto;
  padding: 15px 10px;
  min-width: 120px;
  background: #fff;
  border: 4px solid #b00005;
  border-radius: 20px;
  max-width: 620px;
}
.c-red-line-balloon:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 16px solid transparent;
  border-top: 16px solid #b00005;
}
.c-red-line-balloon:after {
  content: "";
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  transform: translateX(-50%);
  border: 16px solid transparent;
  border-top: 16px solid #fff;
}
.lp-how2buy__balloon-text {
  text-align: center;
  color: #b00005;
  font-size: 22px;
  font-weight: 800;
}
.lp-how2buy__red-large-text {
  text-align: center;
  font-size: 45px;
  font-weight: 800;
  color: #b00005;
}
.lp-how2buy__points-area {
  display: flex;
  justify-content: space-around;
  row-gap: 1rem;
}
.p-point-icon {
  padding: 0 1rem;
  border-radius: 15px;
  background-color: #fff;
  width: 225px;
  height: 140px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.p-point-icon__img-area {
  width: 30%;
}
.p-point-icon__text-area {
  max-width: 60%;
  color: #b00005;
  font-weight: bold;
  text-align: center;
}
.p-point-icon__small-text {
  font-size: 20px;
  white-space: nowrap;
}
.p-point-icon__large-text {
  font-size: 35px;
  padding-bottom: 0.1rem;
  line-height: 1.2;
}
.p-contact-btn,
.p-contact-btn--arrow {
  max-width: 45%;
  background-color: #b00005;
  color: white;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 10px 10px #eec760;
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}
.p-contact-btn--arrow {
  position: relative;
}
.lp-how2buy__contact-btn-area {
  margin: 30px 0;
  display: flex;
  column-gap: 30px;
  justify-content: center;
  color: white;
}
.p-contact-btn__img-area {
  width: 13%;
  margin-bottom: 10px;
}
.p-contact-btn__text {
  width: 90%;
  font-size: 23px;
  color: white;
}
.c-phone-with-icon {
  display: block;
  color: #fff;
  line-height: 1.5;
  letter-spacing: -0.05rem;
  font-size: 25px;
}
#delivery_flow_ttl {
  margin: 50px 0;
}
.c-phone-with-icon:before {
  content: "";
  margin-right: 0.2em;
  display: inline-block;
  width: 1.2em;
  height: 1em;
  background-image: url(../images/phone-icon-white.svg);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
}
.p-buy-flow.shuka_method {
  border: 2px solid #b40005;
  padding: 10px 25px 25px;
  margin-top: 80px;
  position: relative;
}
.p-buy-flow.shuka_method .shuka_method_ttl {
  padding: 2px 30px 0;
  border-radius: 19px;
  border: 2px solid #b40005;
  font-size: 18px;
  position: absolute;
  top: 0;
  left: 20px;
  transform: translate(0, -50%);
  background: #eae9ea;
  color: #b40005;
}
.p-buy-flow.shuka_method .shuka_method_case_ttl {
  margin-top: 30px;
  color: #b40005;
  font-size: 18px;
}
.p-buy-flow.shuka_method .shuka_method_case_content {
  padding-left: 20px;
  font-size: 18px;
}
.lp-how2buy__flow-list li:not(:first-child) {
  margin-top: 30px;
}
.lp-tel-banner__link {
  display: block;
  text-align: center;
  border: 6px solid #b00005;
  max-width: 1130px;
  margin: 30px auto;
  padding: 10px 0;
  box-sizing: border-box;
}
.lp-tel-banner__number {
  display: block;
  font-weight: 800;
  text-decoration: none;
  color: #b00005;
  font-size: 90px;
  line-height: 1.2;
}
.lp-tel-banner__number span {
  background: linear-gradient(
    153deg,
    rgba(239, 203, 41, 1) 0%,
    rgba(247, 244, 202, 1) 30%,
    rgba(214, 139, 17, 1) 70%,
    rgba(227, 170, 23, 1) 73%,
    rgba(187, 146, 40, 1) 100%
  );
  display: inline-block;
  font-size: 35px;
  line-height: 1;
  padding: 12px;
  border-radius: 15px;
  margin-right: 20px;
}
.lp-tel-banner__time {
  font-size: 25px;
  font-weight: 900;
  color: #b00005;
}
.lp-tel-banner__time small {
  font-size: 20px;
}
.section_point .point_ttl {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/point_ttl_bg.png);
  background-size: 100% 100%;
  height: 280px;
  text-align: center;
}
.section_point .point_ttl .point_num {
  text-align: center;
  font-size: clamp(2rem, 6vw, 6rem);
  font-weight: bold;
  background-size: 100% 100%;
  color: #b00005;
  height: 160px;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 60px;
  background: linear-gradient(
    90deg,
    rgba(198, 154, 2, 1) 0%,
    rgba(254, 239, 188, 1) 52%,
    rgba(198, 154, 2, 1) 100%
  );
  border-radius: 15px;
}
.section_point .point_ttl .point_num_inner .point_label:after {
  position: absolute;
  height: 1px;
  width: 80%;
  left: 10%;
  bottom: 0;
  border-bottom: 1px solid #b00005;
  content: "";
  display: block;
}
.section_point .point_ttl .point_num_inner {
  line-height: 1em;
}
.section_point .point_ttl .point_num_inner .point_label {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  line-height: 1.5em;
  position: relative;
}
.section_point .point_ttl h1 {
  color: white;
  font-size: clamp(1.6rem, 4.5vw, 4rem);
  font-weight: bold;
  line-height: 1.2em;
}
.kaitori-section2_body {
  margin-top: 40px;
  font-weight: 700;
  padding: 30px;
  background: linear-gradient(
    90deg,
    rgba(73, 30, 31, 1) 0%,
    rgba(224, 208, 175, 1) 50%,
    rgba(129, 81, 50, 1) 100%
  );
}
.kaitori-section2_body h2 {
  font-size: 55px;
  color: #fff;
  line-height: 1em;
}
.kaitori-section2_body h2 span {
  font-size: 35px;
}
.kaitori-section2_body_desc {
  background: #fffffff0;
  font-size: 18px;
  padding: 14px;
  margin-bottom: 17px;
}
.kaitori-section2_body_top {
  border: 2px solid #fff;
  padding: 6px;
}
.kaitori-section2_body_top .inner {
  background: #000;
  padding: 43px 0 10px;
}
.kaitori-section2_body_top .inner .img_wrapper {
  position: relative;
  text-align: center;
}
.kaitori-section2_body_top .inner .img_wrapper {
  position: relative;
  text-align: center;
}
.kaitori-section2_body_top .inner .img_wrapper .part {
  background: #fff;
  font-size: 30px;
  padding: 12px 9px;
  position: absolute;
  line-height: 1em;
  text-align: left;
  border: 3px solid #033f8b;
}
.kaitori-section2_body_top .inner .img_wrapper .part#part1 {
  left: 6%;
  top: 11%;
}
.kaitori-section2_body_top .inner .img_wrapper .part#part2 {
  top: 74%;
  left: 4.5%;
}
.kaitori-section2_body_top .inner .img_wrapper .part#part3 {
  right: 3%;
  top: -3%;
}
.kaitori-section2_body_top .inner .img_wrapper .part#part4 {
  top: 61%;
  right: 7%;
}
.kaitori-section2_body_top .inner .img_wrapper .part#part5 {
  bottom: -12%;
  right: 3%;
}
.kaitori-section2_body_top .inner p {
  font-size: 30px;
  color: #fff;
  line-height: 1.4em;
  margin: 15px 0 0 15px;
}
.kaitori-section2_body_points {
  margin: 17px 0;
}
.kaitori-section2_body_points
  .point
  .wp-block-columns
  .wp-block-column:first-child {
  max-width: 220px;
}
.kaitori-section2_body_points .point .wp-block-columns .wp-block-column img {
  border: 4px solid #00988c;
}
.kaitori-section2_body_points
  .point
  .wp-block-columns
  .wp-block-column
  .point_ttl {
  background: #00988c;
  margin-bottom: 10px;
  color: #fff;
  font-size: 35px;
  text-align: center;
  line-height: 1.7em;
  display: block;
  height: auto;
}
.kaitori-section2_body_points
  .point
  .wp-block-columns
  .wp-block-column
  .point_ttl
  span {
  font-size: 33px;
  margin-left: 15px;
}
.kaitori-section2_body_points
  .point
  .wp-block-columns
  .wp-block-column
  .point_desc {
  font-size: 18px;
  margin-left: 12px;
  line-height: 1.8em;
}
.kaitori-section2_body_points .point:not(:first-child) {
  margin-left: 25px;
}
.kaitori-section2_body .satei_compare {
  padding: 0 23px;
}
.kaitori-section2_body .satei_compare .satei_store {
  color: #fff;
  font-size: 24px;
}
.kaitori-section2_body .satei_compare .wp-block-columns {
  background: #fff;
  padding: 30px 20px;
  margin-bottom: 0;
}
.kaitori-section2_body
  .satei_compare
  .wp-block-columns
  .wp-block-column:first-child {
  max-width: 280px;
}
.kaitori-section2_body .satei_compare .wp-block-columns .wp-block-column dl {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 22px;
}
.kaitori-section2_body .satei_compare .wp-block-columns .wp-block-column dl dt {
  background: #fff;
  z-index: 9;
}
.kaitori-section2_body .satei_compare .wp-block-columns .wp-block-column dl dd {
  background: #fff;
  z-index: 9;
}
.kaitori-section2_body
  .satei_compare
  .wp-block-columns
  .wp-block-column
  dl:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(60%, #000),
    color-stop(0, rgba(255, 255, 255, 0))
  );
  background-image: -webkit-linear-gradient(
    left,
    #000 60%,
    rgba(255, 255, 255, 0) 0
  );
  background-image: linear-gradient(
    to right,
    #000 60%,
    rgba(255, 255, 255, 0) 0
  );
  background-position: bottom;
  background-size: 8px 1px;
  background-repeat: repeat-x;
  height: 2px;
}
.kaitori-section2_body
  .satei_compare
  .wp-block-columns
  .wp-block-column:not(:first-child) {
  margin-left: 25px;
}
.kaitori-section2_body
  .satei_compare
  .wp-block-columns
  .wp-block-column:nth-child(2)
  dl:last-child {
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: end;
  margin-top: 10px;
}
.kaitori-section2_body
  .satei_compare
  .wp-block-columns
  .wp-block-column:nth-child(2)
  dl:last-child:after {
  top: 70%;
}
.kaitori-section2_body
  .satei_compare
  .wp-block-columns
  .wp-block-column.manekiya-total {
  color: #a50005;
  position: relative;
  background-image: url(../images/total_bg.png);
  background-size: 100% 100%;
  text-align: center;
  padding-top: 1em;
}
.kaitori-section2_body
  .satei_compare
  .wp-block-columns
  .wp-block-column.manekiya-total:before {
  content: "";
  background-image: url(../images/bracket.png);
  display: block;
  width: 20px;
  height: 90%;
  background-size: 100% 100%;
  position: absolute;
  left: -20px;
  top: 5%;
}
.kaitori-section2_body
  .satei_compare
  .wp-block-columns
  .wp-block-column.manekiya-total
  .total_label {
  font-size: 19px;
  margin-top: 5px;
}
.kaitori-section2_body
  .satei_compare
  .wp-block-columns
  .wp-block-column.manekiya-total
  .total_price {
  font-size: 45px;
  line-height: 1em;
}
.kaitori-section2_body
  .satei_compare
  .wp-block-columns
  .wp-block-column.manekiya-total
  .total_price
  span {
  font-size: 24px;
}
.kaitori-section2_body .satei_compare {
  padding: 0 30px;
}
.kaitori-section2_body .satei_compare .satei_store {
  color: #fff;
  font-size: 30px;
}
.kaitori-section2_body .satei_compare_inner {
  background: #fff;
  padding: 20px 0 10px;
}
.kaitori-section2_body .satei_compare_inner .other-company {
  background: #fff;
  text-align: center;
}
.kaitori-section2_body .satei_compare_inner .other-company-content {
  font-size: 28px;
  display: inline-block;
}
.kaitori-section2_body
  .satei_compare_inner
  .other-company-content
  .company_name {
  color: #fff;
}
.kaitori-section2_body .satei_compare_inner .other-company-content .company_a {
  background: #4360af;
  padding: 0 6px;
}
.kaitori-section2_body .satei_compare_inner .other-company-content .company_b {
  background: #009eda;
  padding: 0 6px;
}
.kaitori-section2_body .satei_compare_inner .other-company-content .company_c {
  background: #807611;
  padding: 0 6px;
}
.kaitori-section2_body .satei_compare_inner .arrow {
  display: none;
}
.kaitori-section2_body .satei_compare_inner .diff {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 10px;
}
.kaitori-section2_body .satei_compare_inner .diff_label {
  font-size: 20px;
  color: #fff;
  margin-right: 5px;
  padding: 5px 25px 3px 15px;
  clip-path: polygon(92% 0%, 100% 50%, 92% 100%, 0% 100%, 0 50%, 0% 0%);
  background: #a50005;
}
.kaitori-section2_body .satei_compare_inner .diff_price {
  font-size: 45px;
  color: #a50005;
  margin-right: 20px;
}
.kaitori-section2_body .satei_compare_inner .diff_price span {
  font-size: 25px;
}
.kaitori-section2_body .satei_compare_inner .diff_manekiya {
  font-size: 20px;
  color: #a50005;
  border: 2px solid;
  padding: 0 7px;
  border-radius: 18px;
}
.kaitori-section2_body .satei_compare_inner .diff_manekiya span {
  font-size: 13px;
}
.satei_inner {
  border: 3px solid #a50005;
  border-radius: 30px;
  max-width: 1135px;
  margin: 0 auto 40px;
}
.satei_our .satei_inner h2 {
  color: #aa0005;
  font-size: 60px;
  font-weight: bold;
  background: white;
  width: 90%;
  margin: auto;
  line-height: 1.2;
  position: relative;
  margin-top: -70px;
}
.satei_our .satei_inner h2:before,
.satei_our .satei_inner h2:after {
  content: "";
  background: url(../images/pin_double.png) no-repeat center/100% 100%;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0%;
}
.satei_our .satei_inner h2:before {
  left: -5%;
}
.satei_our .satei_inner h2:after {
  right: -2%;
  transform: rotateZ(70deg);
}
.satei_our {
  text-align: center;
  margin-top: 150px;
}
.lp-how2buy__content_style2 {
  display: block;
  background: #dbdbdb;
  padding: 40px 20px 30px;
  font-weight: bold;
  margin-bottom: 50px;
}
.lp-how2buy_ttl2 {
  font-size: 40px;
  border-top: 3px solid;
  border-bottom: 3px solid;
  padding: 20px 0;
  position: relative;
  font-weight: 700;
  color: #a50005;
  text-align: center;
}
.lp-how2buy_ttl2 img {
  position: absolute;
  left: 5%;
  bottom: 0;
  width: 200px;
}
.lp-how2buy__content_style2_top {
  color: #a50005;
  text-align: center;
  margin-top: 30px;
}
.lp-how2buy__content_style2_top .m_wrapper {
  height: 60px;
  position: relative;
  font-weight: 700;
  text-align: center;
  font-size: 30px;
}
.m_numb {
  position: absolute;
  left: 8%;
  font-size: 25px;
  line-height: 1.2;
  padding: 0 6px;
  border-radius: 100%;
  border: 2px solid;
}
.m_ttl {
  font-size: 25px;
}
.m_ttl_img_wrapper {
  width: 17%;
  margin-left: 10%;
}
.m_ttl img {
  width: 60px;
  margin-bottom: 10px;
}
.section_point.point02 .point_ttl {
  background-image: url(../images/point02_ttl_bg.png);
  padding-right: 10%;
}
.section_point.point02 .point_ttl h1 {
  font-size: 55px;
}
.section_point.point02 .point_ttl .point_num {
  margin-right: 20px;
}
.lp-how2buy_style2_ttl {
  font-size: 40px;
  text-align: center;
  margin-bottom: 50px;
}
.lp-how2buy_style2_ttl span {
  font-size: 50px;
}
.lp-how2buy__content_style2_top .wp-block-column {
  background: #fff;
  border-radius: 20px;
  border: 3px solid #a50005;
  overflow: hidden;
  padding-top: 10px;
}
.lp-how2buy__content_style2_top .wp-block-column:not(:first-child) {
  margin-left: 15px;
}
.lp-how2buy__content_style2_top.lp-how2buy__content_style2_house
  .wp-block-column {
  padding-top: 0;
}
.lp-how2buy__content_style2_top.lp-how2buy__content_style2_house .m_wrapper {
  height: 170px;
}
.lp-how2buy__content_style2_top.lp-how2buy__content_style2_house
  .m_ttl_img_wrapper {
  width: 100%;
  margin-left: 0;
}
.lp-how2buy_style2_ttl1 {
  font-size: 22px;
}
.lp-how2buy_style2_ttl2 {
  margin-top: 10px;
  font-size: 22px;
  color: white;
  background: #a50005;
  padding: 5px 0;
}
.achievement .title-02 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.2em;
}
.achievement-title {
  font-size: 50px;
  color: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgba(2, 0, 60, 1) 0%,
    rgba(0, 61, 128, 1) 50%,
    rgba(2, 0, 60, 1) 100%
  );
  text-align: center;
}
.contract-rate {
  color: red;
  text-align: center;
  font-size: 60px;
  margin: 20px 0px 18px;
}
.achievement-desc {
  font-size: 35px;
  text-align: center;
  margin-bottom: 10px;
  color: rgb(51, 51, 51);
  font-weight: bold;
}
.achievement-body {
  background: linear-gradient(
    90deg,
    rgba(113, 6, 22, 1) 0%,
    rgba(176, 11, 33, 1) 50%,
    rgba(113, 6, 22, 1) 100%
  );
  padding: 20px 15px 0px;
}
.achievement-body .details {
  flex-wrap: wrap !important;
}
.achievement-body .details .detail {
  box-shadow: rgba(0, 0, 0, 0.5) 5px 5px 3px 0px;
  width: calc(50% - 5px);
  margin-bottom: 10px;
  flex-basis: auto !important;
  background: rgb(255, 255, 255);
  padding: 8px 8px 15px;
}
.achievement-body .details .detail-title {
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 5px;
  margin-bottom: 25px;
}
.achievement-body .details .detail-title:after,
.cases .case .detail-title:after {
  content: "";
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    rgba(115, 6, 21, 1) 0%,
    rgba(177, 13, 37, 1) 50%,
    rgba(115, 6, 21, 1) 100%
  );
  display: block;
}
.achievement-body .details .detail-inner {
  margin-bottom: 0px;
}
.achievement-body .details .detail-inner .wp-block-column:first-child {
  padding-left: 18px;
}
.achievement-body .details .detail-inner .wp-block-column .other-company {
  font-size: 25px;
  font-weight: 700;
  padding-left: 14px;
}
.achievement-body
  .details
  .detail-inner
  .wp-block-column
  .other-company
  .company_a {
  color: rgb(255, 255, 255);
  margin-right: 5px;
  background: rgb(67, 96, 175);
  padding: 0px 7px;
}
.achievement-body
  .details
  .detail-inner
  .wp-block-column
  .other-company
  .company_b {
  color: rgb(255, 255, 255);
  margin-right: 5px;
  background: rgb(0, 158, 218);
  padding: 0px 7px;
}
.achievement-body .details .detail-inner .wp-block-column .our-company {
  margin-top: 25px;
}
.achievement-body .details .detail-inner .wp-block-column .our-company-price {
  font-size: 35px;
}
.achievement-body .details .detail-inner .wp-block-column .our-company-price p {
  display: inline-block;
  color: red;
  font-weight: 700;
}
.achievement-body
  .details
  .detail-inner
  .wp-block-column
  .our-company-price
  span {
  font-size: 18px;
}
.achievement-body .details .detail-inner .wp-block-column .max-diff {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(
    180deg,
    rgba(186, 209, 215, 1) 0%,
    rgba(210, 223, 226, 1) 50%,
    rgba(139, 185, 207, 1) 100%
  );
  text-align: center;
  margin-top: 10px;
  padding: 0px 2px;
  border-radius: 8px;
}
.achievement-body .details .detail-inner .wp-block-column:last-child {
  text-align: center;
}
.achievement-body .details .detail:nth-child(2n) {
  margin-left: 10px;
}
.upchance {
  margin-top: 60px;
  padding: 0 35px;
}
.upchance-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 100px;
  position: relative;
}
.upchance-top .cash-img {
  width: 25%;
  padding-right: 15px;
  margin-left: -40px;
}
.upchance-top .cash-img img {
  max-width: 100%;
}
.upchance-top-content {
  font-weight: 700;
  width: 50%;
}
.upchance-top-content .upchance-top-title {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: -15px;
}
.upchance_mark {
  font-size: 18px;
  color: #bf9c46;
  text-align: right;
  font-weight: 700;
  margin-right: 14%;
  line-height: 1;
}
.upchance-top-content .upchance-top-desc {
  font-size: 21px;
  font-weight: 700;
  margin-top: -15px;
}
.upchance-top-content .upchance-label {
  font-size: 50px;
  line-height: 1.2em;
}
.upchance-top-content .upchance-label .up_mark {
  color: #a50005;
}
.upchance-top-content .upchance-label small {
  font-size: 28px;
}
.upchance-top .up-chance-woman {
  width: 14.5%;
  margin-top: -67px;
}
.upchance-top:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-top: 1px solid;
  position: absolute;
  bottom: -1%;
}
.upchance-bottom {
  padding: 0 7%;
  margin: 20px 0;
}
.upchance-bottom-content {
  max-width: 750px;
  margin: auto;
}
.upchance-bottom-content .upchance-desc {
  font-size: 25px;
  font-weight: 700;
  line-height: 3em;
  position: relative;
}
.upchance-bottom-content .upchance-desc:before {
  content: "";
  background-image: url(../images/check.png);
  width: 51px;
  height: 46px;
  display: inline-block;
  position: absolute;
  top: 22%;
}
.upchance-bottom-content .upchance-desc .talkmark {
  background: #bf9c46;
  color: #fff;
  margin: 0 30px 0 80px;
  padding: 5px 15px;
  border-radius: 24px;
}
.upchance .service-desc {
  font-size: 30px;
  color: #bf9c46;
  font-weight: 700;
  border: 2px solid #bf9c46;
  margin: 30px auto;
  text-align: center;
  max-width: 660px;
}
.text-center {
  text-align: center;
}
.upchance-top-img {
  width: 90% !important;
}
.upchance .secret {
  clip-path: polygon(100% 0, 100% 46%, 49% 100%, 0% 50%, 0 0);
  background: linear-gradient(
    180deg,
    #fff 0,
    #e0cfa6 25%,
    #c6a75d 55%,
    #be9b49 100%
  );
  background-size: 100% 100%;
  font-weight: 700;
  text-align: center;
  padding: 20px 0 50px;
  margin-top: 30px;
}
.upchance .secret_title {
  font-size: 26px;
  color: #303636;
}
.upchance .secret_desc {
  font-size: 50px;
  line-height: 1.2;
}
.upchance .secret .our_secret {
  font-size: 30px;
  color: #333;
}
.upchance .secret .our_secret span {
  color: #b60005;
}
.cases {
  margin-top: 70px;
}
.cases .case {
  margin-bottom: 40px;
}
.cases .case-title {
  font-size: 45px;
  background: url(../images/case_ttl_bg.png);
  color: #fff;
  background-size: 100% 100%;
  padding: 20px;
  font-weight: 700;
}
.cases .case-title img {
  margin-right: 35px;
}
.cases .case .detail-title-sp {
  display: none;
  font-size: 6.9vw;
  margin: 2.6vw auto 0;
  max-width: 95%;
}
.cases .case .detail-title {
  text-align: center;
}
.cases .case-body {
  margin: 35px 0 10px;
}
.cases .case-body .wp-block-column:first-child {
  max-width: 45%;
  text-align: center;
}
.cases .case-body .wp-block-column:first-child .case_img {
  min-height: 270px;
  margin-bottom: 40px;
}
.cases .case-body .wp-block-column:first-child .case_img img {
  max-width: 100%;
}
.cases .case-body .wp-block-column:first-child p {
  font-size: 30px;
}
.cases .case .price .our_price {
  color: red;
}
.cases .case .detail-title-pc {
  font-size: 50px;
  margin-bottom: 25px;
}
.cases .case-body .wp-block-column:last-child dl dt {
  background: #fff;
  z-index: 9;
}
.cases .case-body .wp-block-column:last-child dl dd {
  background: #fff;
  z-index: 9;
}
.cases .case-body .wp-block-column:last-child dl:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(50%, #000),
    color-stop(0, rgba(255, 255, 255, 0))
  );
  background-image: -webkit-linear-gradient(
    left,
    #000 50%,
    rgba(255, 255, 255, 0) 0
  );
  background-image: linear-gradient(
    to right,
    #000 50%,
    rgba(255, 255, 255, 0) 0
  );
  background-position: bottom;
  background-size: 6px 1px;
  background-repeat: repeat-x;
  height: 2px;
}
.cases .case-body .wp-block-column:last-child dl.last {
  margin-top: 10px;
}
.cases .case-body .wp-block-column:last-child dl {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 25px;
  margin: 0 auto;
  max-width: 500px;
  align-items: center;
}
.cases .case-body .wp-block-column:last-child dl.last dt {
  background: linear-gradient(
    180deg,
    rgba(186, 209, 215, 1) 0%,
    rgba(210, 223, 226, 1) 50%,
    rgba(139, 185, 207, 1) 100%
  );
  padding: 0 5px;
}
.cases .case-body .wp-block-column:last-child dl.last dd,
.cases .case .case-total-pc-label {
  font-size: 35px;
}
.cases .case .case-total-pc {
  margin-top: 25px;
  padding: 10px 0;
}
.cases .case .case-total {
  color: #fff;
  background: #b60005;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.cases .case .case-total-pc img {
  margin: 0 20px;
}
.cases .case .case-total-pc-price {
  font-size: 55px;
}
.cases .case .case-total-pc-price small {
  font-size: 26px;
}
.cases .case .case-total-sp {
  display: none;
  max-width: 80%;
  margin: 0 auto 10px;
}
.cases .case .case-total-sp .manekiya-price {
  width: 19.2vw;
}
.cases .case .case-total-sp .kai-mark {
  width: 5.9vw;
  margin: 0 1vw 0 4.6vw;
}
.cases .case .case-total-sp-price {
  font-size: 8.4vw;
}
.cases .case .case-total-sp-price small {
  font-size: 5vw;
}
.cases .case .price-sp {
  display: none;
  max-width: 80%;
  margin: 0 auto 10px;
  line-height: 1.3;
}
.cases .case-bottom {
  background-image: url(../images/case_ttl_bg3.png);
  background-size: 100% 100%;
  padding: 10px;
  font-weight: 700;
  align-items: center;
}
.cases .case-bottom .wp-block-column:first-child {
  color: #fff;
  max-width: 33%;
  text-align: center;
}
.cases .case-bottom .wp-block-column:first-child .our-sight {
  font-size: 36px;
}
.cases .case-bottom .wp-block-column:first-child img {
  width: 70%;
}
.cases .case-bottom .wp-block-column:first-child .look-here {
  font-size: 22px;
}
.cases .case-bottom .wp-block-column:last-child {
  background: #fff;
  padding: 15px 0 15px 25px;
}
.cases .case-bottom .wp-block-column:last-child .our-point {
  font-size: 20px;
  line-height: 1.4em;
  color: #d4338e;
}
.lp-contact3 {
  margin-top: 50px;
}
.btn_contact {
  min-width: 430px;
  border-radius: 45px;
  line-height: 1;
  position: relative;
  margin: 0 1%;
}
.btn_contact .c-red-round-btn .c-bule-round-btn {
  width: 100%;
}
.lp-tel-link-area__phone-number {
  display: block;
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 35px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.05rem;
  text-align: center;
}
.btn_contact .lp-tel-link-area__phone-number,
.ft_btn .btn_contact_line .quick-assetment {
  font-size: 40px;
}
.c-phone-with-icon:before,
.lp-tel-link-area__phone-number:before {
  content: "";
  margin-right: 0.2em;
  display: inline-block;
  width: 1.2em;
  height: 1em;
  background-image: url(../images/phone-icon-white.svg);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
}
.btn_contact .lp-tel-link-area__phone-number:before {
  width: 1.4em;
  height: 1em;
}
.pos-absolute-link {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.btn_contact_line {
  background: #44a735;
  color: #fff;
  font-weight: 700;
  text-align: center;
  box-shadow: 3px 3px 6px 0 #565656;
  position: relative;
  display: flex;
  justify-content: center;
}
.btn_contact_line .line-ttl,
.contact_line_button_wrapper h2 .large {
  font-size: 60px;
}
.btn_contact_line .quick-assetment {
  font-size: 35px;
}
.btn_contact_line .bg-gold {
  color: #000;
  background: linear-gradient(
    135deg,
    #efd522 0,
    #f7f4cc 30%,
    #eec51c 40%,
    #eec51c 100%
  );
  border-radius: 7px;
  margin: 5px auto 0;
  font-size: 12px;
  width: fit-content;
  padding: 0 15px;
  line-height: 1.2;
}
.btn_contact_line img {
  width: 85px;
}
.lp-tel-link-area__reception {
  text-align: center;
  line-height: 1;
  font-size: 20px;
  font-weight: bold;
}
.lp-three-reason {
  margin-top: 150px;
}
.lp-three-reason_header,
.section_kaitori_top {
  padding: 20px 0;
  margin-bottom: 40px;
  background: url(../images/three_reason_ttl_bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
}
.lp-three-reason_header .reason_header_text {
  width: 80%;
  text-align: center;
}
.lp-three-reason_header .reason_header_text .title-02 {
  color: #a50005;
  border: none;
  font-size: 27px;
  margin-bottom: 0;
  font-weight: bold;
}
.lp-three-reason_header .reason_header_text .title-02:after,
.lp-three-reason_header .reason_header_text .title-02:before {
  content: "";
  display: inline-block;
  width: 15px;
  background-repeat: no-repeat;
  background-size: 100%;
  height: 20px;
}
.lp-three-reason_header .reason_header_text .title-02:after {
  background-image: url(../images/three_reason_ttl_right.svg);
}
.lp-three-reason_header .reason_header_text .title-02:before {
  background-image: url(../images/three_reason_ttl_left.svg);
  bottom: 0;
}
.lp-three-reason_title {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.5em;
}
.lp-three-reason_title .large {
  font-size: 4rem;
}
.lp-three-reason_title .extra {
  font-size: 6rem;
  color: #a50005;
}
.lp-three-reason_header .reason_header_dewi {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 13%;
}
.lp-three-reason_content {
  overflow: auto;
  margin-bottom: 80px;
}
.lp-three-reason_content .reason_title {
  color: #a50005;
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  position: relative;
  margin-bottom: 2rem;
}
.lp-three-reason_content .reason_title .reason_num {
  background: #a50005;
  color: #fff;
  padding: 0;
  border-radius: 100%;
  font-size: 20px;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  line-height: 1.7em;
  display: inline-block;
}
.lp-three-reason_content .reason_img {
  width: 60%;
  float: left;
}
.lp-three-reason_content .reason_textbox {
  width: 45%;
  display: inline-block;
  margin-left: -5%;
}
.lp-three-reason_content#reason2_content .reason_textbox {
  margin-left: 0;
  margin-right: -5%;
}
.lp-three-reason_content .reason_title:after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: -10px;
  border-top: 3px solid #b89448;
  border-bottom: 2px solid #b89448;
}
.lp-three-reason_content .reason_textbox .reason_text {
  padding: 0 10%;
  font-size: 18px;
  font-weight: bold;
  line-height: 2em;
}
.lp-three-reason_content#reason2_content .reason_img {
  float: right;
  text-align: right;
}
.point03_bottom .wp-block-columns {
  max-width: 93%;
  margin: auto;
}
.point03_bottom .wp-block-columns .wp-block-column {
  text-align: center;
}
.point03_bottom .wp-block-columns .wp-block-column p {
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  position: relative;
  margin-top: 20px;
}
.point03_bottom .wp-block-columns .wp-block-column p:after {
  content: "";
  display: block;
  height: 6px;
  width: 50%;
  position: absolute;
  bottom: -3px;
  border-top: 2px solid #ff7e81;
  border-bottom: 2px solid #ff7e81;
  left: 25%;
}
.other_kaitori_desc {
  text-align: center;
  background: #ff0000;
  color: white;
  font-size: 20px;
  width: fit-content;
  margin: 30px auto 0;
  padding: 0 20px;
}
.appraisal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #dfdfdf;
  margin-top: 50px;
  padding: 20px 20px 20px 100px;
}
.appraisal_img {
  padding: 15px;
  background: white;
}
.appraisal_ttl {
  font-size: 40px;
  font-weight: bold;
  position: relative;
  line-height: 1;
}
.appraisal_ttl:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 18px;
  height: 100px;
  background-color: black;
  transform: translateX(-180%);
}
.appraisal_txt p {
  font-size: 20px;
  margin-top: 40px;
  line-height: 2;
}
.kaitori_up_brand_list {
  margin-bottom: 80px;
}
.kaitori_up_brand_list .kaitori_up_brand_content {
  background: linear-gradient(
    90deg,
    rgba(119, 15, 30, 1) 0%,
    rgba(179, 13, 35, 1) 50%,
    rgba(119, 15, 30, 1) 100%
  );
  padding: 10px 10px 20px;
}
.kaitori_up_brand_list .kaitori_up_brand_ttl {
  font-size: 4.4rem;
  text-align: center;
  font-weight: 700;
  color: #fff;
  background-image: url(../images/ttl_border.png);
  background-size: 100% 100%;
  padding: 20px 0 40px;
  line-height: 1em;
}
.kaitori_up_brand_list .kaitori_up_brand_ttl span {
  font-size: 35px;
}
.kaitori_up_brand_list .kaitori_up_brand_ttl p {
  display: flex;
  align-items: center;
  justify-content: center;
}
.kaitori_up_brand_list .kaitori_up_brand_ttl p span {
  font-size: 26px;
  line-height: 1.6;
  margin-left: 30px;
}
.ttl_seperator {
  line-height: 0;
}
.kaitori_up_brand_list .wp-block-columns {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 23px;
  -webkit-flex-wrap: wrap !important;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
  margin-bottom: 0;
}
.kaitori_up_brand_list .wp-block-columns .wp-block-column {
  margin: 22px 0 0 31px;
  -webkit-flex-basis: calc(20% - 25px);
  -ms-flex-preferred-size: calc(20% - 25px);
  flex-basis: calc(20% - 25px);
}
.kaitori_up_brand_list .wp-block-columns .wp-block-column:nth-child(5n + 1) {
  margin-left: 0;
}
.kaitori_up_brand_list
  .wp-block-columns
  .wp-block-column
  .kaitori_up_brand_img {
  text-align: center;
  padding: 10px;
  background: #fff;
}
.kaitori_up_brand_list
  .wp-block-columns
  .wp-block-column
  .kaitori_up_brand_img
  img {
  width: 100%;
}
.kaitori_up_brand_list
  .wp-block-columns
  .wp-block-column
  .kaitori_up_brand_subname {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  font-weight: 700;
  margin-top: 15px;
  color: #fff;
  letter-spacing: -0.1em;
}
.kaitori_up_brand_list
  .wp-block-columns
  .wp-block-column
  .kaitori_up_brand_subname:after,
.kaitori_up_brand_list
  .wp-block-columns
  .wp-block-column
  .kaitori_up_brand_subname:before {
  content: "";
  display: block;
  background: linear-gradient(
    90deg,
    rgba(123, 75, 47, 1) 0%,
    rgba(206, 189, 155, 1) 50%,
    rgba(123, 75, 47, 1) 100%
  );
  height: 3px;
}
.kaitori_points {
  background-color: #e0dfe0;
  font-weight: bold;
  padding-bottom: 50px;
}
.kaitori_points_ttl {
  background: url(../images/kaitori_point_ttl.png) no-repeat center/100% 100%;
  text-align: center;
  color: white;
  font-size: 35px;
  font-weight: bold;
  text-shadow: 2px 2px 4px #000000d6;
  padding: 45px 0;
}
.kaitori_point {
  width: 82%;
  margin: auto;
  background: white;
  margin-top: 50px;
  position: relative;
  padding: 30px;
}
.kaitori_point_ttl {
  font-size: 40px;
  font-weight: bold;
  margin-left: 22%;
}
.kaitori_point_num {
  position: absolute;
  font-size: 30px;
  clip-path: polygon(100% 0%, 85% 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
  color: white;
  border: 2px solid #71502e;
  background: linear-gradient(
    90deg,
    rgba(166, 130, 62, 1) 0%,
    rgba(255, 228, 163, 1) 50%,
    rgba(166, 130, 62, 1) 100%
  );
  padding: 5px 100px 5px 30px;
  text-shadow: 2px 2px 5px black;
  left: -30px;
}
.kaitori_point_num span {
  font-size: 40px;
  margin-left: 10px;
}
.kaitori_point_desc {
  font-size: 23px;
  margin-right: 15px;
}
.kaitori_point_body {
  margin-top: 40px;
}
.koukai_point {
  width: 80%;
  background: white;
  margin: 100px auto 0;
  border: 5px solid #b50005;
}
.koukai_point_ttl {
  text-align: center;
  transform: translateY(-50%);
}
.koukai_point_txt {
  padding-right: 3%;
}
.koukai_point_requires {
  color: #b50005;
  font-size: 30px;
  text-align: center;
}
.koukai_point_desc {
  font-size: 16px;
  line-height: 2;
  padding: 0 7% 0 5%;
}
.grad-item .wp-block-columns {
  column-gap: 30px;
}
.grad-item-wrapper {
  border: 2px solid;
  border-radius: 30px;
  padding: 20px 40px 40px 80px;
  margin-bottom: 40px;
}
.grad-item-top {
  align-items: flex-start;
  margin-bottom: 20px;
  justify-content: space-between;
}
.reviewer_initial {
  color: #fff !important;
  font-size: 35px;
  border-radius: 100%;
  line-height: 1.7;
  width: 62px;
  height: 62px;
  text-align: center;
}
.reviewer_initial.gray {
  background: #4d4543;
}

.reviewer_initial.brown {
  background: #a45645;
}

.reviewer_initial.green {
  background: #207717;
}

.reviewer_initial.purple {
  background: #992885;
}
.reviewer_initial.light-purple {
  background: #ae00a5;
}
.reviewer_initial.chocolate {
  background: #eb7e67;
}

.reviewer_initial.coral {
  background: #f50;
}

.reviewer_initial.darkgray {
  background: #32210b;
}

.reviewer_initial.pink {
  background: #f2a2ff;
}

.reviewer_initial.deepink {
  background: #ff6ebd;
}

.reviewer_initial.darkgreen {
  background: #33482f;
}

.reviewer_initial.orange {
  background: #d43d00;
}

.reviewer_initial.small {
  font-size: 20px;
  line-height: 3;
}
.reviewer-name,
.souba_ttl small {
  font-size: 25px;
}
.review-point .fa-star {
  font-size: 28px;
}
.review-point .fa-star.checked {
  color: #e4be28;
}
.review-store {
  font-size: 18px;
  background: #9b9c9c;
  min-width: 130px;
  text-align: center;
}
.grad-item-bottom {
  font-size: 22px;
}
.lp-verification {
  padding: 40px 40px 0;
  background-color: #ebeaeb;
  border-radius: 30px;
  position: relative;
  max-width: 1100px;
  margin: auto;
  box-sizing: border-box;
}
.lp-verification .character-container {
  position: absolute;
  right: 2%;
  top: 10px;
  max-width: 12%;
  min-width: 60px;
}

.lp-verification .decoration-image {
  width: 100%;
  height: auto;
}

.lp-verification .character-caption {
  position: relative;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.3;
  margin-top: 5px;
}
.lp-verification__h2 {
  position: absolute;
  left: -2.5%;
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  white-space: nowrap;
  background: url(../images/point_bg04.png) no-repeat center/contain;
  background-size: 100% 100%;
  padding: 15px 20% 35px 10%;
}
.lp-verification__docs-area {
  margin-top: 10%;
}
.lp-verification__h3 {
  margin-left: 5%;
  font-size: 3rem;
  font-weight: 800;
  color: black;
  margin-bottom: 20px;
}
.lp-verification__h3::before {
  content: "";
  background: url(../images/check-icon.svg) no-repeat center/contain;
  display: inline-block;
  vertical-align: middle;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1rem;
}
.lp-verification__docs-box {
  padding: 2% 5%;
  background-color: #f9eae1;
  border-radius: 20px;
  margin-bottom: 30px;
}
.lp-verification__dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.lp-verification__dt {
  font-size: 2rem;
  color: #a50005;
  font-weight: bold;
}
.lp-verification__dd {
  padding-left: 3rem;
  font-size: 1.4rem;
  flex: 1;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.lp-verification__h3 {
  margin-left: 5%;
  font-size: 1.8rem;
  font-weight: 800;
  color: black;
}
.lp-verification__note {
  padding: 1rem 2rem;
  text-indent: -1em;
  font-size: 1.1rem;
  color: #040000;
  line-height: 1.8;
}
.lp-verification__note-area {
  padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
.lp-verification__note-photo {
  width: 18%;
  position: absolute;
  bottom: 0;
}
.lp-verification__note-list {
  box-sizing: border-box;
  padding-right: 3rem;
}
.lp-verification__note-item {
  font-size: 1rem;
  line-height: 1.8;
  color: #040000;
  text-indent: -1em;
  padding-left: 1em;
  font-weight: bold;
}
.merit {
  background: #a30005;
  padding: 40px 35px 5px;
  margin-bottom: 30px;
}
.merit_wrapper {
  column-gap: 25px;
}
.merit_ttl {
  color: white;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
}
.merit_detail {
  background: white;
  border-radius: 30px;
  padding: 30px;
  font-weight: bold;
}
.merit_top {
  display: flex;
  font-size: 22px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.merit_num {
  font-size: 120px;
  line-height: 0.8;
  font-style: italic;
  font-family: fangsong;
}
.merit_detail_title {
  line-height: 1.5;
  border-bottom: 6px solid #bda500;
  padding: 0 10px 5px;
  width: 80%;
}
.merit_desc {
  font-size: 16px;
  width: 50%;
}
.merit_image {
  width: 50%;
  text-align: right;
}
.merit_award {
  background: white;
  padding: 30px 50px;
  margin-bottom: 30px;
}
.merit_award_ttl {
  text-align: center;
  color: #a50005;
  font-size: 28px;
  font-weight: bold;
}
.merit_award_inner {
  font-size: 18px;
  margin-top: 10px;
}
.merit_award_img {
  font-size: 14px;
  text-align: center;
}
.merit_award_inner p {
  width: 80%;
}
.nearest_shop_ttl {
  background: black;
  color: white;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  padding: 15px 0;
}
.table-01 {
  margin: auto;
  text-align: left;
  font-size: 16px;
  max-width: 962px;
}
.table-01 th {
  background: #e9e9e9;
  width: 30%;
}
.table-01 th,
.table-01 td {
  border: 1px solid;
  padding: 25px 40px;
}
/*無料査定01*/

.free_satei01 {
  margin-bottom: 20px;
  position: relative;
}

.free_satei02 {
  margin-bottom: 60px;
  position: relative;
}

.free_satei03 {
  margin-bottom: 60px;
  position: relative;
}

.free_satei04 {
  margin-bottom: 60px;
  position: relative;
}

.free_satei05 {
  margin-bottom: 60px;
  position: relative;
}

.free_satei06 {
  margin-bottom: 60px;
  position: relative;
}

.free_satei01 .free_btn_tell {
  display: block;
  position: absolute;
  left: 355px;
  bottom: 198px;
  width: 513px;
  height: 148px;
  border-radius: 30px;
}

.free_satei01 .free_btn_line {
  display: block;
  position: absolute;
  left: 354px;
  bottom: 36px;
  width: 513px;
  height: 148px;
  border-radius: 30px;
}

.free_satei02 .free_btn_tell {
  display: block;
  position: absolute;
  left: 357px;
  bottom: 191px;
  width: 510px;
  height: 159px;
  border-radius: 30px;
}

.free_satei02 .free_btn_line {
  display: block;
  position: absolute;
  left: 356px;
  bottom: 25px;
  width: 514px;
  height: 159px;
  border-radius: 30px;
}

.free_satei03 .free_btn_tell {
  display: block;
  position: absolute;
  left: 356px;
  bottom: 194px;
  width: 517px;
  height: 152px;
  border-radius: 26px;
}

.free_satei03 .free_btn_line {
  display: block;
  position: absolute;
  bottom: 35px;
  width: 513px;
  height: 149px;
  border-radius: 26px;
  left: 356px;
}

.free_satei04 .free_btn_tell {
  display: block;
  position: absolute;
  left: 356px;
  bottom: 197px;
  width: 515px;
  height: 151px;
  border-radius: 32px;
}

.free_satei04 .free_btn_line {
  display: block;
  position: absolute;
  left: 354px;
  bottom: 25px;
  width: 518px;
  height: 160px;
  border-radius: 32px;
}

.free_satei05 .free_btn_tell {
  display: block;
  position: absolute;
  left: 123px;
  bottom: 205px;
  width: 482px;
  height: 139px;
  border-radius: 28px;
}

.free_satei05 .free_btn_line {
  display: block;
  position: absolute;
  left: 121px;
  bottom: 36px;
  width: 957px;
  height: 153px;
  border-radius: 28px;
}

.free_satei06 .free_btn_tell {
  display: block;
  position: absolute;
  left: 123px;
  bottom: 205px;
  width: 482px;
  height: 139px;
  border-radius: 28px;
}

.free_satei06 .free_btn_line {
  display: block;
  position: absolute;
  left: 121px;
  bottom: 36px;
  width: 957px;
  height: 153px;
  border-radius: 28px;
}

.free_satei01 a:hover,
.free_satei02 a:hover,
.free_satei03 a:hover,
.free_satei04 a:hover,
.free_satei05 a:hover,
.free_satei06 a:hover {
  opacity: 0.3;
  background: #fff;
}

.case_btn {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.grad-item {
  position: relative;
  overflow: hidden;
  width: 1160px;
  margin: 20px auto;
}

.grad-item.is-hide {
  height: 880px;
}

.grad-item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 40px; /*グラデーションで隠す高さ*/
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.9) 50%,
    #fff 100%
  );
  background: linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.9) 50%,
    #fff 100%
  );
}

.grad-item.none::before {
  display: none;
}

.c-btn-arw {
  display: block;
  text-align: center;
}

.kuchikomi_inner_close {
  margin-bottom: 50px;
}

/*FAQ*/
.faq_ttl {
  margin-bottom: 35px;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 47% 80%, 50% 100%, 53% 80%, 0 80%);
  background: linear-gradient(
    180deg,
    rgba(144, 0, 0, 1) 0%,
    rgba(177, 0, 4, 1) 47%,
    rgba(144, 0, 0, 1) 100%
  );
  font-size: 50px;
  color: white;
  text-align: center;
  padding: 10px 0 50px;
}

.faq dl {
  margin-bottom: 40px;
  width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.faq dl dt {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  background: url(../images/faq_open.png) no-repeat 100% 50%;
  background-size: 37px;
  border-top: 4px solid #a70005;
  border-bottom: 8px solid #a70005;
  cursor: pointer;
}

.faq dl dt.active {
  background: url(../images/faq_close.png) no-repeat 100% 50%;
  background-size: 37px;
}

.faq dl dt span {
  width: 95px;
  height: 95px;
  line-height: 95px;
  background-color: #a70005;
  color: #fff;
  font-size: 34px;
  font-weight: bold;
  display: block;
  border-radius: 190px;
  text-align: center;
  position: absolute;
  left: -45px;
  top: -20px;
}

.faq dl dt p {
  font-size: 26px;
  font-weight: bold;
  color: #a70005;
  margin-left: 90px;
  padding: 8px 0;
  word-break: break-all;
}

.faq_comment {
  display: block;
  font-size: clamp(12px, 2vw, 20px) !important;
}

.faq h3 {
  margin-bottom: 30px;
  margin-top: 50px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}

.faq dl dd {
  background-color: #ecebec;
  padding: 30px;
  z-index: 1;
  position: relative;
  display: none;
}

.dd_inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  position: relative;
}

.faq dl dd:before {
  content: "";
  position: absolute;
  left: 104px;
  top: 0px;
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 13px solid transparent;
  border-left: 24px solid #b30005;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.faq dl dd span {
  font-size: 27px;
  font-weight: bold;
}

.faq dl dd p {
  margin-left: 30px;
  font-size: 27px;
  font-weight: bold;
  width: calc(100% - 40px);
  word-break: break-all;
}

/*最寄駅から探す*/
ul.tab {
  margin-top: 20px;
  list-style: none;
  position: relative;
  overflow: hidden;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
}

ul.tab li {
  float: left;
  margin: 0 10px;
  width: 560px;
  text-align: center;
  font-size: 100%;
  height: 81px;
  position: relative;
  border-radius: 21px;
  background-color: rgba(158, 34, 36, 0.1);
  cursor: pointer;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

ul.tab li:hover,
ul.tab li.active {
  background: #aa0005;
}

ul.tab li img {
  width: 89px;
}

div.tabContent {
  clear: both;
  padding: 20px 0;
  width: 100%;
  display: none;
}

div.tabContent.active {
  display: block;
}

.tabContent_inner_ttl img {
  width: 100%;
  max-width: 1112px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  display: block;
}

.tabContent_inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-bottom: 73px;
  width: 100%;
  max-width: 1112px;
  margin-left: auto;
  margin-right: auto;
}

.tabContent_inner_thum {
  width: 700px;
}

.tabContent_inner_table {
  border: 1px solid #ccc;
  width: 380px;
  margin-left: auto;
}

.tabContent_inner_table dl {
  display: table;
  width: 100%;
  border: 1px solid #040000;
  border-bottom: none;
}

.tabContent_inner_table dl:last-of-type {
  border-bottom: 1px solid #040000;
}

.tabContent_inner_table dl dt,
.tabContent_inner_table dl dd {
  display: table-cell;
  vertical-align: middle;
  padding: 28px 10px;
  font-size: 25px;
}

.tabContent_inner_table.first dl dt,
.tabContent_inner_table.first dl dd {
  padding: 31px 10px;
}

.tabContent_inner_table dl dt {
  border-right: 1px solid #040000;
  width: 153px;
  background-color: #ebebeb;
  text-align: center;
  font-weight: bold;
}

.info_title {
  font-size: 26px;
  text-align: center;
  background: #e5e5e5;
  padding: 5px 0;
}

.info_content {
  font-size: 22px;
  text-align: center;
  margin: 10px 0;
}
.info_content .info_content_inner {
  display: flex;
  justify-content: center;
}
.info_content .access_addr {
  font-size: 22px;
  text-align: left;
}

.info_tel {
  font-size: 36px;
  font-weight: bold;
}

.info_gmap_view {
  color: #b60005;
  font-size: 24px;
}

.info_gmap_view:before {
  content: url(../images/map_pin.svg);
  width: 15px;
  margin-right: 4px;
  display: inline-block;
}
.lp-tel-banner__link {
  display: block;
  text-align: center;
  border: 6px solid #b00005;
  max-width: 1130px;
  margin: 30px auto;
  padding: 10px 0;
  box-sizing: border-box;
}
.lp-tel-banner__time {
  font-size: 25px;
  font-weight: 900;
  color: #b00005;
}
.lp-tel-banner__time small {
  font-size: 20px;
}
.grad-item.grad-item-type02.is-hide {
  height: 1400px;
}

/*私たち査定します*/
.we_can {
  width: 1136px;
  margin-left: auto;
  margin-right: auto;
}
.btn_open_inner img {
  width: 42%;
}
.btn_open_inner {
  border: 3px solid;
  border-radius: 30px;
  padding: 20px 20px 0 40px;
}
.btn_open_inner h3 {
  font-size: 45px;
  font-weight: bold;
  line-height: 1.2;
}
.btn_open_inner span {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  color: #848585;
}
.btn_open_inner span:after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  display: block;
  line-height: 1em;
  color: white;
  background: #848585;
  width: 30px;
  margin: auto;
  font-size: 30px;
  border-radius: 100%;
  padding: 2px;
}
.btn_open.is-open .btn_open_inner span:after {
  content: "\f068";
}
.lp-appreciate__inner {
  padding: 0 2%;
}
.lp-appreciate__sub-box {
  margin-top: 5%;
  padding: 4% 2% 3% 3%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  line-height: 1.5;
  border: 3px solid #a81e24;
  border-radius: 15px;
}
.lp-appreciate__text-box {
  width: 78%;
}
.lp-appreciate__h3 {
  padding-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 900;
  color: #b00005;
  line-height: 1.2;
  border-bottom: 2px solid #595757;
}
.lp-appreciate__dl {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-weight: bold;
  margin-top: 2%;
}
.lp-appreciate__dt {
  padding: 5px;
  width: 20%;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  box-sizing: border-box;
  background-color: #b00005;
  border-radius: 10px;
}
.lp-appreciate__dd {
  width: 78%;
  font-size: 18px;
  line-height: 1.8;
}
.lp-appreciate__dd.red {
  color: #b00005;
}
.lp-appreciate__photo-box {
  width: 22%;
}
.open_area {
  width: 1050px;
  margin: 30px auto 0;
}

.open_area,
.btn_open_img02 {
  display: none;
}

.open_area {
  width: 1050px;
  margin: 30px auto 0;
}

.btn_open.is-open .btn_open_img01 {
  display: none;
}

.btn_open.is-open .btn_open_img02 {
  display: block;
}

.btn_open_img01_sp,
.btn_open_img02_sp {
  display: none;
}

.btn_open .btn_open_img01.btn_open_img01_sp,
.btn_open .btn_open_img02.btn_open_img02_sp {
  display: none;
}

.all_open_area .btn_open_img02 {
  display: none;
}

.all_open_area.is-open .btn_open_img02 {
  display: block;
}

.all_open_area.is-open .btn_open_img01 {
  display: none;
}

.eraberu_kaitori {
  padding: 20px;
  background-color: #eae9ea;
  width: 1130px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.all_close_area {
  position: relative;
}

.eraberu_kaitori .all_close_area a.all_close_area_btn {
  position: absolute;
  right: 122px;
  bottom: 15px;
  width: 455px;
  height: 90px;
  border-radius: 90px;
  display: block;
}

.eraberu_kaitori .all_close_area a:hover {
  opacity: 0.3;
  background: #fff;
}

.btn_list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  clear: both;
}

.pt-md {
  padding-top: 20px;
}

.btn_list li {
  margin: 0 10px;
}

.ft_contact {
  margin: 30px 0;
}

.ft_contact img {
  display: block;
  max-width: 1127px;
}

.ft_btn .btn_contact_tel {
  text-align: center;
}
.ft_btn .btn_contact,
.ft_btn .c-red-round-btn .c-bule-round-btn {
  border-radius: 30px;
  width: 49%;
  padding: 35px;
  box-sizing: border-box;
}
.ft_btn .btn_contact_tel img {
  width: 50px;
  margin-bottom: 20px;
}
.lp-tel-link-area__reception {
  font-size: clamp(1rem, 2vw, 16px);
  text-align: center;
  line-height: 1;
}
.btn_contact_tel .lp-tel-link-area__reception {
  font-size: 15px;
  font-weight: 700;
}
.ft_btn .lp-tel-link-area__reception {
  line-height: 1.5;
}
.btn_contact_line {
  background: #44a735;
  color: #fff;
  font-weight: 700;
  text-align: center;
  box-shadow: 3px 3px 6px 0 #565656;
  position: relative;
}
.line-content_inner {
  column-gap: 10px;
  margin-top: 5px;
}
.btn_contact_line .line-ttl,
.contact_line_button_wrapper h2 .large {
  font-size: 60px;
}
.contact .free_line_label span,
.ft_btn .btn_contact_line .line-ttl {
  font-size: 80px;
}
.btn_contact_line .quick-assetment,
.btn_contact .lp-tel-link-area__phone-number,
.ft_btn .btn_contact_line .quick-assetment {
  font-size: 35px;
}
.btn_contact_line .bg-gold {
  color: #000;
  background: linear-gradient(
    135deg,
    #efd522 0,
    #f7f4cc 30%,
    #eec51c 40%,
    #eec51c 100%
  );
  border-radius: 7px;
  margin: 5px auto 0;
  font-size: 12px;
  width: fit-content;
  padding: 0 15px;
  line-height: 1.2;
}
.ft_btn .btn_contact_line .bg-gold {
  font-size: 14px;
}
.btn_contact_line img {
  width: 85px;
}
.ft_btn .btn_contact_line img {
  width: 132px;
  margin-bottom: -36px;
}
.ft_btn ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.ft_btn li:nth-child(1) {
  margin-right: 10px;
}

.ft_btn li:nth-child(2) {
  margin-left: 10px;
}

.select_inner {
  padding: 30px 50px 10px;
  background-color: #eae9ea;
}

.c-btn {
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background-color: #b30005;
  border-radius: 120px;
  width: 334px;
  padding: 8px 0;
  box-shadow: 0px 0px 8px rgb(0 0 0 / 20%);
  display: block;
  margin: 50px auto 50px;
}

.event_click {
  position: relative;
}

.event_click a {
  position: absolute;
  left: 426px;
  top: 1341px;
  width: 346px;
  height: 54px;
  border-radius: 15px;
}

.event_click a:hover {
  background: #fff;
  opacity: 0.3;
}

/*追加変更11/19*/

.map {
  position: relative;
}

.map .map_href01 {
  position: absolute;
  right: 10px;
  top: 530px;
  width: 220px;
  height: 41px;
}

.map .map_href02 {
  position: absolute;
  right: 0px;
  top: 642px;
  width: 240px;
  height: 41px;
}

.map .map_href03 {
  position: absolute;
  right: 30px;
  top: 684px;
  width: 180px;
  height: 41px;
}

.map .map_href04 {
  position: absolute;
  left: 30px;
  top: 523px;
  width: 180px;
  height: 41px;
}

.map .map_href05 {
  position: absolute;
  left: 30px;
  top: 563px;
  width: 180px;
  height: 41px;
}

.map a:hover {
  opacity: 0 !important;
  cursor: pointer;
  background: none;
}

.map_store {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  margin-left: -24px;
  width: 1046px;
}

.map_store li {
  margin-bottom: 30px;
  margin-right: 26px;
  width: 510px;
}

.map_store li:nth-child(2n) {
  margin-right: 0;
}

.map_store li .inner {
  margin-bottom: 5px;
  border: 1px solid #aa0005;
}

.map_store li .map_store_tell {
  margin-top: 15px;
}

.map_store li a:hover {
  opacity: 1 !important;
  cursor: pointer;
  background: none !important;
}

.point01 {
  margin-top: 100px;
}

.store_map {
  position: relative;
}

.store_map .map_href01 {
  position: absolute;
  right: 60px;
  top: 600px;
  width: 220px;
  height: 41px;
}

.store_map .map_href02 {
  position: absolute;
  right: 50px;
  top: 722px;
  width: 250px;
  height: 41px;
}

.store_map .map_href03 {
  position: absolute;
  right: 80px;
  top: 764px;
  width: 190px;
  height: 41px;
}

.store_map .map_href04 {
  position: absolute;
  left: 160px;
  top: 593px;
  width: 140px;
  height: 41px;
}

.store_map .map_href05 {
  position: absolute;
  left: 160px;
  top: 633px;
  width: 140px;
  height: 37px;
}

.map_img_container {
  position: relative;
  margin: 50px 0 70px;
  max-width: 1112px;
  margin-left: auto;
  margin-right: auto;
}

.map_img_container a {
  position: absolute;
  font-size: 20px;
  font-weight: bold;
}

.map_img_container a:after,
.shop_preserve_name:after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  line-height: 1em;
  background: #b60005;
  color: white;
  padding: 2px 6px;
  border-radius: 100%;
  margin-left: 5px;
}
.map_label_shop1 {
  top: 12%;
  left: 43%;
}

.map_label_shop2 {
  top: 15%;
  left: 43%;
}

.map_label_shop3 {
  top: 30%;
  right: 10px;
}

.map_label_shop4 {
  top: 49%;
  right: 10px;
}

.map_label_shop5 {
  top: 53%;
  right: 10px;
}

.map_label_shop6 {
  top: 80%;
  right: 39%;
}

.map_label_shop7 {
  bottom: 5%;
  right: 39%;
}

.map_label_shop8 {
  top: 33.5%;
  left: 37%;
}

.map_label_shop9 {
  top: 36.5%;
  left: 10px;
}

.map_label_shop10 {
  top: 47%;
  left: 10px;
}

.map_label_shop11 {
  top: 34%;
  right: 10px;
}
.map_label_shop12 {
  top: 23%;
  left: 36.5%;
}
.map_label_shop13 {
  top: 83%;
  right: 10px;
}
.map_label_shop14 {
  top: 38%;
  right: 10px;
}
.map_label_shop15 {
  top: 61%;
  right: 1%;
}
.map_label_shop16 {
  top: 72%;
  right: 1%;
}

#shop .map_label_shop6,
#shop .map_label_shop7 {
  right: 40%;
}

.shop_pref {
  color: #b60005 !important;
  font-size: 16px;
  cursor: pointer;
}
.shop_pref:after {
  display: none;
}
.osaka {
  top: 9%;
  left: 45%;
}
.tokyodo {
  top: 27%;
  right: 4%;
}
.hyogo {
  top: 31%;
  left: 45%;
}
.kanagawa {
  top: 79.5%;
  right: 4%;
}
.hiroshima {
  top: 44%;
  left: 4%;
}
.tokyofu {
  top: 20%;
  left: 45%;
}
.ibaragi {
  top: 46%;
  right: 4%;
}
.saitama {
  top: 58%;
  right: 4%;
}
.chiba {
  top: 69%;
  right: 4%;
}
.aichi {
  top: 77%;
  left: 54%;
}
#shop .aichi {
  left: 51%;
}
.shizuoka {
  bottom: 11%;
  left: 54%;
}
.okayama {
  top: 34%;
  left: 4%;
}

#shop .okayama,
#shop .hiroshima {
  left: 3%;
}

#shop .shizuoka {
  bottom: 11%;
}

.shop_open_preserve {
  text-align: right;
}

.shop_open_preserve:after {
  display: none;
}

.map_label_shop9,
.map_label_shop10 {
  text-align: left;
}

.map_label_shop9:before,
.map_label_shop10:before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  line-height: 1em;
  background: #b60005;
  color: white;
  padding: 2px 6px;
  border-radius: 100%;
  margin-right: 5px;
}

.shop_label_desc {
  font-size: 14px;
  display: block;
  color: #b60005;
  font-weight: normal;
}

.shop_open_preserve .shop_label_desc {
  margin-right: 20px;
}

.map_label_shop9 .shop_label_desc,
.map_label_shop10 .shop_label_desc {
  margin-left: 20px;
}

#moyoriTtl01 .map_label_shop8 {
  left: 38.5%;
}

#moyoriTtl01 .map_label_shop12 {
  left: 38.5%;
}

#moyoriTtl01 .map_img_container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.store_table {
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1112px;
}

.store_table .inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.store_table_thum {
  width: 744px;
}

.store_table_thum img {
  margin-bottom: 10px;
}

.store_table_txt {
  text-align: center;
  margin-left: auto;
  width: 353px;
  border: 1px solid #040000;
}

.store_table_txt dl dt {
  background-color: #e5e5e5;
  padding: 10px 10px;
  font-size: 18px;
  font-weight: 500;
}

.store_table_txt dl dd {
  padding: 12px 10px;
  font-size: 18px;
  font-weight: 500;
}

.store_table_txt dl dd div a {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
}

/* ==========================================================================
Component [ button / form / grid... ]
========================================================================== */

/* grid */
.grid {
  clear: both;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.flex-top {
  align-items: flex-start;
}

.flex-middle {
  align-items: center;
}

.flex-bottom {
  align-items: flex-end;
}

.flex-between {
  justify-content: space-between;
}

.flex-around {
  justify-content: space-around;
}

.flex-left {
  justify-content: flex-start;
}

.flex-center {
  justify-content: center;
}

.flex-right {
  justify-content: flex-end;
}

/* column */
.col-1 {
  width: 8.33333333%;
}
.col-2 {
  width: 16.66666667%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.33333333%;
}
.col-5 {
  width: 41.66666667%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.33333333%;
}
.col-8 {
  width: 66.66666667%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.33333333%;
}
.col-11 {
  width: 91.66666667%;
}
.col-12 {
  width: 100%;
}

/* ==========================================================================
Utility [ display / margin / padding / device... ]
========================================================================== */

/* device - utility
--------------------------------------------------------- */
.u-pc {
  display: block !important;
}
.u-sp {
  display: none !important;
}

/* vertical-align - utility
--------------------------------------------------------- */
.u-va-t {
  vertical-align: top !important;
}
.u-va-m {
  vertical-align: middle !important;
}
.u-va-b {
  vertical-align: bottom !important;
}

/* border - utility
--------------------------------------------------------- */
/* border-radius */
.u-br-4 {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -ms-border-radius: 4px;
}
.u-br-8 {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -ms-border-radius: 8px;
}
.u-br-12 {
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -ms-border-radius: 12px;
}
.u-br-16 {
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  -ms-border-radius: 16px;
}

/* border-none */
.u-br-0 {
  border: none;
}
.u-br-t-0 {
  border-top: none;
}
.u-br-r-0 {
  border-right: none;
}
.u-br-b-0 {
  border-bottom: none;
}
.u-br-l-0 {
  border-left: none;
}

/* clearfix - utility
--------------------------------------------------------- */
.u-cf {
  *zoom: 1;
}
.u-cf:after {
  display: table;
  clear: both;
  content: "";
}

/* display - utility
--------------------------------------------------------- */
.u-d-tb {
  display: table !important;
}
.u-d-tbc {
  display: table-cell !important;
}
.u-d-b {
  display: block !important;
}
.u-d-ib {
  display: inline-block !important;
}
.u-d-n {
  display: none !important;
}

/* float - utility
--------------------------------------------------------- */
.u-fl-l {
  float: left !important;
}
.u-fl-r {
  float: right !important;
}

/* font-size - utility
--------------------------------------------------------- */
.u-fz-10 {
  font-size: 10px !important;
}
.u-fz-12 {
  font-size: 12px !important;
}
.u-fz-14 {
  font-size: 14px !important;
}
.u-fz-16 {
  font-size: 16px !important;
}
.u-fz-18 {
  font-size: 18px !important;
}
.u-fz-20 {
  font-size: 20px !important;
}
.u-fz-22 {
  font-size: 22px !important;
}
.u-fz-24 {
  font-size: 24px !important;
}
.u-fz-26 {
  font-size: 26px !important;
}
.u-mini {
  font-size: 80%;
}

/* line-clamp - utility
--------------------------------------------------------- */
.u-lc {
  display: box;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* margin - utility
--------------------------------------------------------- */
/* auto margin */
.u-m-c {
  margin-right: auto !important;
  margin-left: auto !important;
}

/* Top margin */
.u-mt-0 {
  margin-top: 0 !important;
}
.u-mt-8 {
  margin-top: 8px !important;
}
.u-mt-16 {
  margin-top: 16px !important;
}
.u-mt-24 {
  margin-top: 24px !important;
}
.u-mt-32 {
  margin-top: 32px !important;
}
.u-mt-40 {
  margin-top: 40px !important;
}
.u-mt-48 {
  margin-top: 48px !important;
}
.u-mt-56 {
  margin-top: 56px !important;
}
.u-mt-64 {
  margin-top: 64px !important;
}

/* Right margin */
.u-mr-0 {
  margin-right: 0 !important;
}
.u-mr-8 {
  margin-right: 8px !important;
}
.u-mr-16 {
  margin-right: 16px !important;
}
.u-mr-24 {
  margin-right: 24px !important;
}
.u-mr-32 {
  margin-right: 32px !important;
}
.u-mr-40 {
  margin-right: 40px !important;
}
.u-mr-48 {
  margin-right: 48px !important;
}
.u-mr-56 {
  margin-right: 56px !important;
}
.u-mr-64 {
  margin-right: 64px !important;
}

/* Bottom margin */
.u-mb-0 {
  margin-bottom: 0 !important;
}
.u-mb-8 {
  margin-bottom: 8px !important;
}
.u-mb-16 {
  margin-bottom: 16px !important;
}
.u-mb-24 {
  margin-bottom: 24px !important;
}
.u-mb-32 {
  margin-bottom: 32px !important;
}
.u-mb-40 {
  margin-bottom: 40px !important;
}
.u-mb-48 {
  margin-bottom: 48px !important;
}
.u-mb-56 {
  margin-bottom: 56px !important;
}
.u-mb-64 {
  margin-bottom: 64px !important;
}

/* Left margin */
.u-ml-0 {
  margin-left: 0 !important;
}
.u-ml-8 {
  margin-left: 8px !important;
}
.u-ml-16 {
  margin-left: 16px !important;
}
.u-ml-24 {
  margin-left: 24px !important;
}
.u-ml-32 {
  margin-left: 32px !important;
}
.u-ml-40 {
  margin-left: 40px !important;
}
.u-ml-48 {
  margin-left: 48px !important;
}
.u-ml-56 {
  margin-left: 56px !important;
}
.u-ml-64 {
  margin-left: 64px !important;
}

/* misc - utility
--------------------------------------------------------- */
.u-ws-nowrap {
  white-space: nowrap;
}
.u-mx-img {
  max-width: 100%;
}
.u-tx-inside {
  margin-left: 1em;
  text-indent: -1em;
}

/* padding - utility
--------------------------------------------------------- */
/* Top padding */
.u-pt-0 {
  margin-top: 0 !important;
}
.u-pt-8 {
  margin-top: 8px !important;
}
.u-pt-16 {
  margin-top: 16px !important;
}
.u-pt-24 {
  margin-top: 24px !important;
}
.u-pt-32 {
  margin-top: 32px !important;
}
.u-pt-40 {
  margin-top: 40px !important;
}
.u-pt-48 {
  margin-top: 48px !important;
}
.u-pt-56 {
  margin-top: 56px !important;
}
.u-pt-64 {
  margin-top: 64px !important;
}

/* Right padding */
.u-pr-0 {
  padding-right: 0 !important;
}
.u-pr-8 {
  padding-right: 8px !important;
}
.u-pr-16 {
  padding-right: 16px !important;
}
.u-pr-24 {
  padding-right: 24px !important;
}
.u-pr-32 {
  padding-right: 32px !important;
}
.u-pr-40 {
  padding-right: 40px !important;
}
.u-pr-48 {
  padding-right: 48px !important;
}
.u-pr-56 {
  padding-right: 56px !important;
}
.u-pr-64 {
  padding-right: 64px !important;
}

/* Bottom padding */
.u-pb-0 {
  padding-bottom: 0 !important;
}
.u-pb-8 {
  padding-bottom: 8px !important;
}
.u-pb-16 {
  padding-bottom: 16px !important;
}
.u-pb-24 {
  padding-bottom: 24px !important;
}
.u-pb-32 {
  padding-bottom: 32px !important;
}
.u-pb-40 {
  padding-bottom: 40px !important;
}
.u-pb-48 {
  padding-bottom: 48px !important;
}
.u-pb-56 {
  padding-bottom: 56px !important;
}
.u-pb-64 {
  padding-bottom: 64px !important;
}

/* Left padding */
.u-pl-0 {
  padding-left: 0 !important;
}
.u-pl-8 {
  padding-left: 8px !important;
}
.u-pl-16 {
  padding-left: 16px !important;
}
.u-pl-24 {
  padding-left: 24px !important;
}
.u-pl-32 {
  padding-left: 32px !important;
}
.u-pl-40 {
  padding-left: 40px !important;
}
.u-pl-48 {
  padding-left: 48px !important;
}
.u-pl-56 {
  padding-left: 56px !important;
}
.u-pl-64 {
  padding-left: 64px !important;
}

/* position - utility
--------------------------------------------------------- */
.u-pos-a {
  position: absolute !important;
}
.u-pos-r {
  position: relative !important;
}

/* text-align - utility
--------------------------------------------------------- */
.u-ta-l {
  text-align: left !important;
}
.u-ta-c {
  text-align: center !important;
}
.u-ta-r {
  text-align: right !important;
}

/* text-decoration - utility
--------------------------------------------------------- */
.u-fw-n {
  font-weight: normal !important;
}
.u-fw-b {
  font-weight: bold !important;
}
.u-td-u {
  text-decoration: underline !important;
}

/* text-truncate - utility
--------------------------------------------------------- */
.u-tt {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  /* for IE 8/9 */
}

/* width - utility
--------------------------------------------------------- */
.u-w-auto {
  width: auto !important;
}
.u-maw-full {
  max-width: 100% !important;
}
.u-maw-half {
  max-width: 50% !important;
}

/*可変幅*/
@media screen and (max-width: 1200px) {
}

/*Morita 12/02/2021*/

.title-01 {
  margin-bottom: 3rem;
  background-color: #a50005;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  text-align: center;
  line-height: 2;
  font-weight: 700;
}

.mnkall-analysisfee__table table {
  width: 98%;
  text-align: center;
  border: 3px solid #d8af25;
  margin: auto;
}

.mnkall-analysisfee__table table th {
  padding: 2rem;
  background-color: #d8af25;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.1em;
}

.mnkall-analysisfee__table table td {
  padding: 2rem;
  font-size: 20px;
  font-size: 2rem;
}

.mnkall-analysisfee__btn {
  margin: 4rem auto;
}

.mnkall-analysisfee__btn a {
  display: block;
  width: 96%;
  max-width: 400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  background-color: #d8af25;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 6rem;
}

.mnkall-analysisfee__btn a span {
  display: block;
}

.mnkall-analysisfee__btn a p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
}

.mnkall-analysisfee__btn a svg {
  width: 31px;
  height: 23px;
  margin-right: 1rem;
}

.mnkall-analysisfee__table table tr + tr {
  border-top: 1px solid #d8af25;
}

.mnkall-analysisfee__table table tr:nth-of-type(odd) td {
  background-color: rgba(216, 175, 37, 0.05);
}

.mnkall-analysisfee__table table td + td {
  border-left: 1px dashed #d8af25;
}

.mnkall-analysisfee__table table + p {
  margin-top: 1rem;
  text-align: right;
  font-size: 14px;
  font-size: 1.4rem;
}

#btn-to-pma {
  position: absolute;
  left: 50%;
  bottom: 24.2%;
  width: 346px;
  height: 54px;
  border-radius: 15px;
  top: auto;
  cursor: pointer;
  transform: translateX(-50%);
}

.js-fade {
  opacity: 0;
}

.mnk_concept_container {
  padding: 0 20px;
}

.mnk_concept {
  text-align: center;
  color: #b50005;
  font-size: 33px;
  padding: 118px 130px 30px;
  box-shadow: 3px 5px 10px 10px rgb(68 68 68 / 63%);
  border-radius: 93px;
  margin-bottom: 100px;
}

.mnk_concept img {
  max-width: 185px;
  margin-bottom: 100px;
}

.title-03 {
  color: white;
  color: white;
  background: #b50005;
  font-size: 53px;
  padding: 16px 0;
  text-align: center;
  margin-bottom: 50px;
}

.mnk_motto {
  font-size: 53px;
  margin-bottom: 100px;
}

.mnk_concept_desc {
  margin-bottom: 100px;
  line-height: 2em;
  font-size: 33px;
}

@media (max-width: 768px) {
  .hidden-sm {
    display: none;
  }
}

@media (min-width: 768px) {
  .mnk_concept {
    padding-left: 100px;
    padding-right: 100px;
  }
}

/* フローティングPC */
.floating-pc {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 150px;
  max-width: 335px;
}

.floating-pc__lp-area {
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 5%;
  border-radius: 0 20px 0 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.floating-pc__lp-title {
  border-bottom: 5px solid #b60005;
}

.floating-pc__link-lp {
  display: block;
  margin-top: 5%;
}

/*Morita 11/23/2021*/

.floating-pc__lp-area .floating-pc__link-lp:first-child {
  margin-top: 0;
}

.floating-pc-contact {
  position: fixed;
  z-index: 100;
  bottom: 0;
  right: 0;
  width: 25vw;
  max-width: 300px;
}

.floating-pc__link-top {
  background: #b70005;
  color: white !important;
  font-size: 16px;
  right: 0;
  position: absolute;
  padding: 12px 9px;
  text-align: center;
  position: fixed;
  z-index: 100;
  right: 0;
  top: 52vh;
}

.floating-pc__link-top:before {
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  display: block;
  line-height: 1em;
}

.floating-pc-inner {
  position: relative;
}
.floating-pc__lp-area .floating-pc__link-lp:first-child {
  margin-top: 0;
}
.floating-pc__link-lp {
  margin-top: 5%;
  display: block;
  background: linear-gradient(180deg, #b40005 0, #990003 50%, #7e0000 100%);
  color: #fff;
  font-size: 18px;
  border-radius: 14px;
  width: 246px;
  padding: 3px 0 3px 20px;
  margin-right: 30px;
}
.floating-pc__link-lp img {
  width: auto;
  max-height: 56px;
  margin-left: 15px;
}
#close-floating-wrapper {
  position: absolute;
  left: 100%;
  bottom: 0;
  border-radius: 0 1em 1em 0;
  background: #b70005;
  color: white;
  padding: 1em 0.2em;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
  cursor: pointer;
}

#close-contact-pc-wrapper {
  border-radius: 12px 12px 0 0;
  background: #b70005;
  color: white;
  padding: 0px 5px;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5%;
  position: relative;
}

.floating-contact-image {
  position: absolute;
  right: 0;
  bottom: 0;
}

#close-floating-label {
  writing-mode: vertical-rl;
  margin: auto;
  font-size: 18px;
}

#contact-pc-label {
  font-size: 16px;
  font-weight: bold;
}

#close-floating,
#close-contact-pc {
  font-size: 12px;
  font-weight: bold;
  word-break: keep-all;
}

#close-floating:after,
#close-contact-pc:after {
  content: "\f056";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  display: block;
  font-size: 16px;
  text-align: center;
  line-height: 1em;
  margin-bottom: 5px;
}

.js-inactive #close-floating:after,
.js-inactive #close-contact-pc:after {
  content: "\f055";
}

#close-floating-wrapper.inactive #close-floating:after,
#close-contact-pc-wrapper.inactive #close-contact-pc:after {
  content: "\f055";
}

.floating-pc__contact-area {
  position: relative;
  text-align: center;
  pointer-events: none;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 5%;
  margin-left: 5%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.floating-pc__link-tel {
  width: 100%;
  height: 28%;
  border-radius: 10px;
  pointer-events: auto;
  display: block;
  background: white;
  border: 6px solid #b00005;
  color: #b00005;
  font-weight: bold;
  padding-bottom: 6px;
  line-height: 1.3;
}

.floating-pc__link-tel .tel-num {
  font-size: 30px;
}
.floating-pc__link-tel .tel-num span {
  font-size: 25px;
}
.floating-pc__link-tel .free-tel {
  font-size: 12px;
}
.floating-pc__link-tel .free-tel .bg-gold {
  background-size: 100% 100%;
  padding: 2px 8px;
  background: -webkit-linear-gradient(
    315deg,
    #efd522 0%,
    #f7f4cc 30%,
    #eec51c 40%,
    #eec51c 100%
  );
  background: linear-gradient(
    135deg,
    #efd522 0%,
    #f7f4cc 30%,
    #eec51c 40%,
    #eec51c 100%
  );
  border-radius: 10px;
}
.floating-pc__link-tel .free-tel .bg-red {
  background: #b00005;
  color: white;
  padding: 0 8px;
}
.floating-pc__link-tel .tel-time {
  font-size: 8px;
  margin-top: 4px;
}
.floating-pc__link-tel .tel-time span {
  font-size: 10px;
}
.floating-pc__link-line {
  width: 100%;
  height: 20%;
  margin-top: 10px;
  border-radius: 10px;
  pointer-events: auto;
  display: block;
  position: relative;
}
.floating-pc__link-line .line-content {
  background: #44ab35;
  color: white;
  border-radius: 10px;
  font-weight: bold;
  line-height: 1;
  padding: 6px 10px;
}
.floating-pc__link-line .line-content_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 4px;
  justify-content: center;
}
.floating-pc__link-line .line-content_inner .line-ttl {
  font-size: 36px;
  margin-right: 5px;
}
.floating-pc__link-line .line-content_inner .line-assetment .quick-assetment {
  font-size: 20px;
}
.floating-pc__link-line .line-content_inner .line-assetment .bg-gold {
  font-size: 8px;
  color: black;
  background: -webkit-linear-gradient(
    315deg,
    #efd522 0%,
    #f7f4cc 30%,
    #eec51c 40%,
    #eec51c 100%
  );
  background: linear-gradient(
    135deg,
    #efd522 0%,
    #f7f4cc 30%,
    #eec51c 40%,
    #eec51c 100%
  );
  padding: 2px 0;
  border-radius: 6px;
  margin-top: 4px;
}
.floating-pc__link-line .line-content_inner .line-assetment .bg-gold small {
  font-size: 7px;
}
.floating-pc__link-line .line-content .photo-assetment {
  font-size: 8px;
  background: white;
  color: #44ab35;
  max-width: 70%;
  padding: 2px 0;
  letter-spacing: 0.1em;
  margin: auto;
}
.floating-contact-image2 {
  position: absolute;
  right: 0;
  bottom: 0;
}
.floating-pc__link-mail {
  width: 100%;
  height: 15%;
  margin-top: 10px;
  border-radius: 10px;
  pointer-events: auto;
  display: block;
}
.floating-pc__link-mail .mail_inner {
  background: #b70005;
  color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 6px 20px 6px 10px;
  border-radius: 10px;
}
.floating-pc__link-mail .mail_inner img {
  width: 45px;
  height: 35px;
}
.floating-pc__link-mail .mail_inner .mail_content .nearest_store {
  font-size: 10px;
}
.floating-pc__link-mail .mail_inner i {
  font-size: 22px;
}
/*Morita Work End*/

.floating-sp {
  display: none;
}

/* コンポーネント */
.c-img {
  width: 100%;
  height: auto;
}

.floating-sp {
  display: none;
}

.jutaku_kaitori_step {
  clear: both;
  padding-top: 20px;
}

.jutaku_kaitori_step_title,
.jutaku_kaitori_step_content {
  margin-top: 20px;
}

.jutaku_kaitori_step_content img {
  float: left;
  margin-right: 30px;
}

.jutaku_kaitori_step_desc {
  font-size: 18px;
  line-height: 1.8em;
}

.section_title {
  margin-bottom: 20px;
  background: black;
  color: white;
  text-align: center;
  font-size: 22px;
  padding: 6px 0;
}

.jutaku_kaitori_step.shuka_method {
  border: 2px solid #b40005;
  padding: 10px 25px 25px;
  margin-top: 80px;
  position: relative;
}

.shuka_method_ttl {
  padding: 2px 40px 5px 40px;
  border-radius: 22px;
  border: 2px solid #b40005;
  font-size: 22px;
  position: absolute;
  top: 0;
  left: 20px;
  transform: translate(0, -50%);
  background: #eae9ea;
  color: #b40005;
}

.shuka_method_case_content {
  padding-left: 20px;
  font-size: 18px;
}

.shuka_method_case_ttl {
  margin-top: 30px;
  color: #b40005;
  font-size: 18px;
}

.shop_ttl {
  background: #b50005;
  color: white;
  font-size: 25px;
  text-align: center;
  padding: 10px 0;
  max-width: 1112px;
  margin: 0 auto 10px;
}

@media all and (max-width: 767px) {
  .floating-sp {
    display: block; /*Moirta 11/23/2021*/
    width: 100%;
    z-index: 100;
    position: fixed;
    bottom: 0;
  }

  .floating-sp__container {
    position: relative;
    display: flex; /*Moirta 11/23/2021*/
    background: url(../img/index/sp-footer-bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 0 5px;
    height: 21vw;
  }

  .floating-sp__img {
    width: 100%;
    height: auto;
    -webkit-filter: drop-shadow(0 -5px 10px rgba(68, 29, 29, 0.6));
    -moz-filter: drop-shadow(0 -5px 10px rgba(68, 29, 29, 0.6));
    -ms-filter: drop-shadow(0 -5px 10px rgba(68, 29, 29, 0.6));
    filter: drop-shadow(0 -5px 10px rgba(68, 29, 29, 0.6));
  }

  .floating-sp__link-phone {
    /*Moirta 11/23/2021*/
    width: 15.6%;
    margin-top: 5.5vw;
    margin-right: 3%;
  }

  .floating-sp__link-line {
    /*Moirta 11/23/2021*/
    width: 15.6%;
    margin-top: 5.5vw;
  }

  .floating-sp__drawer {
    box-sizing: border-box;
    position: absolute;
    top: 9.5vw; /*Moirta 11/23/2021*/
    right: 0;
    width: 14vw;
    padding: 2vw 1vw 0;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
    transition: all 0.5s;
    text-align: center;
  }

  .floating-sp__drawer-link {
    display: block;
    margin-bottom: 5px; /*Morita 11/23/2021*/
    font-size: 9px;
    height: 12vw;
    text-align: center;
    position: relative;
  }

  .floating-sp__drawer-link span {
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    left: 50%;
    width: 100%;
    color: white;
  }

  .floating-sp__drawer-link:last-of-type {
    margin-top: 1vw;
  }

  .floating-sp__drawer-link img {
    width: 100%;
    height: auto;
  }

  .js-drawer-open {
    top: -40vw; /*Morita 11/23/2021*/
  }

  .js-drawer-link {
    pointer-events: auto;
  }

  /*Moirta 11/23/2021*/

  .floating-pc,
  .floating-pc__link-top,
  .floating-pc-contact {
    display: none !important;
  }

  #sp_tel_label {
    width: 28%;
    margin-top: 6vw;
    margin-right: 3%;
  }

  #sp_line_label {
    width: 18%;
    margin-top: 6vw;
    margin-right: 2%;
  }

  #sp_drawer_brand {
    background: url(../img/index/sp-footer-brand.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }

  #sp_drawer_rolex {
    background: url(../img/index/sp-footer-rolex.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }

  #sp_drawer_gold {
    background: url(../img/index/sp-footer-gold.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }

  #sp_drawer_diamond {
    background: url(../img/index/sp-footer-diamond.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }

  #sp_drawer_jewellery {
    background: url(../img/index/sp-footer-jewellery.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }

  #btn_sp_drawer {
    color: #b60106;
    font-weight: bold;
    letter-spacing: -1px;
    font-size: 11px;
    text-align: center;
  }

  #btn_sp_drawer:before {
    content: "\f0d8";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    display: block;
    font-size: 18px;
    text-align: center;
    line-height: 0;
  }

  .js-drawer-open #btn_sp_drawer:before {
    content: "\f0d7";
  }

  .js-drawer-link {
    pointer-events: auto;
  }
}

.phone-icon svg {
  fill: white;
    width: 16px;
    height: 10px;
    margin-right: 8px;
}
