@charset "UTF-8";
/******************************************************************
 * Reset CSS - CBT LINKs
******************************************************************/
/* reset margin
-----------------------------------------------------------------*/
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,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  zoom: 1;
  /* hasLayout in IE */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  -webkit-text-size-adjust: 100%;
}

/* reset font style
-----------------------------------------------------------------*/
html {
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: 62.5%;
}

html * {
  box-sizing: inherit;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  background: transparent;
  color: #231815;
  width: 100%;
}

ul,
ol {
  list-style-type: none;
}

a {
  margin: 0;
  padding: 0;
  color: inherit;
  text-decoration: none;
}

em,
strong {
  font-style: normal;
  font-weight: inherit;
}

/* reset table
-----------------------------------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

table,
th,
td {
  table-layout: fixed;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* reset form style
-----------------------------------------------------------------*/
input[type=text],
input[type=tel],
input[type=email],
input[type=number],
textarea,
select,
option {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

select {
  color: #231815;
}

button,
input[type=reset],
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  color: inherit;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  appearance: none;
  appearance: none;
  padding: 0;
  font: inherit;
}

select::-ms-expand {
  display: none;
}

button::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

button:focus,
input[type=reset]:focus,
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

textarea {
  resize: none;
  overflow: auto;
  font: inherit;
}

button {
  font: inherit;
}

*:focus {
  outline: none;
}

/* reset img
-----------------------------------------------------------------*/
img {
  font-size: 0;
  line-height: 0;
  vertical-align: bottom;
  height: auto;
  max-width: 100%;
}

@media screen and (min-width: 960px) {
  .pc-none {
    display: none !important;
  }
}

@media (max-width: 959px) and (min-width: 751px) {
  .tb-none {
    display: none !important;
  }
}

@media screen and (max-width: 750px) {
  .sp-none {
    display: none !important;
  }
}

@media (max-width: 750px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 751px) {
  .sp {
    display: none !important;
  }
}

.c-inner {
  max-width: 1240px;
  padding: 0 30px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .c-inner {
    padding: 0 17px;
  }
}

:root {
  --header-height: 160px;
  --bottom-bar-height: 0;
}
@media screen and (max-width: 959px) {
  :root {
    --header-height: 120px;
    --bottom-bar-height: 70px;
  }
}

body {
  padding-top: var(--header-height);
  padding-bottom: var(--bottom-bar-height);
  background: #fff;
}

.c-adjust-scroll-pos {
  margin-top: calc(var(--header-height) * -1);
  padding-bottom: var(--header-height);
}

/**
 * ヘッダー
 */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  z-index: 100;
}
.c-header__logo {
  height: calc(var(--header-height) * 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #100169;
  width: 100%;
}
.c-header__logo a {
  transition: opacity 0.1s ease;
}
.c-header__logo a:hover {
  opacity: 0.8;
}
.c-header__logo img {
  width: 334px;
  height: 44px;
}
@media screen and (max-width: 959px) {
  .c-header__logo img {
    width: 304px;
    height: 40px;
  }
}
.c-header__logo h1 {
  display: none;
}
.c-header__brand {
  height: calc(var(--header-height) * 0.5);
  display: flex;
  align-items: center;
  padding: 0 10px;
}
@media screen and (max-width: 959px) {
  .c-header__brand {
    width: 100%;
    justify-content: space-between;
    padding: 0 5px;
  }
}
.c-header__name {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2352941176;
  letter-spacing: 0.04em;
  color: #007bce;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1499px) {
  .c-header__name {
    font-size: 13px;
  }
}
@media screen and (max-width: 959px) {
  .c-header__name {
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 1.2916666667;
  }
}
@media screen and (max-width: 750px) {
  .c-header__name {
    letter-spacing: 0;
  }
}
.c-header__content {
  height: calc(var(--header-height) * 0.5);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1499px) {
  .c-header__content {
    width: 78%;
  }
}
@media screen and (max-width: 959px) {
  .c-header__content {
    width: auto;
  }
}
.c-header__menu {
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 959px) {
  .c-header__menu {
    display: none;
  }
}
.c-header__menu-list {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 4px 0 0 30px;
  color: #644229;
}
@media screen and (max-width: 1499px) {
  .c-header__menu-list {
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-left: 10px;
  }
}
.c-header__menu-item {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  font-feature-settings: "palt";
  padding: 0 17px;
  text-align: center;
}
.c-header__menu-item a {
  transition: opacity 0.1s ease;
}
.c-header__menu-item a:hover {
  opacity: 0.8;
}
.c-header__tel {
  display: none;
  border-radius: 4px;
  background: #ff9119;
}
@media screen and (max-width: 959px) {
  .c-header__tel {
    display: block;
  }
}
.c-header__tel a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 47px;
  height: 47px;
}
.c-header__tel img {
  width: 37px;
  height: 41px;
}
.c-header__line {
  display: none;
  margin-right: -2px;
}
@media screen and (max-width: 959px) {
  .c-header__line {
    display: block;
  }
}

/**
 * ハンバーガーボタン
 */
.c-hamburger-btn {
  display: none;
  justify-content: center;
  align-items: center;
  width: 47px;
  height: 47px;
  border-radius: 4px;
  margin-right: 5px;
  background: #100169;
}
@media screen and (max-width: 959px) {
  .c-hamburger-btn {
    display: flex;
  }
}
.c-hamburger-btn__inner {
  width: 23px;
  height: 22px;
  position: relative;
}
.c-hamburger-btn__inner::after {
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 22px;
  height: 6px;
  background: url(../img/header/menu.svg) center/contain no-repeat;
}
.c-hamburger-btn__inner span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  left: 0;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s;
}
.c-hamburger-btn__inner span:nth-child(1) {
  transform: translateY(0);
}
.c-hamburger-btn__inner span:nth-child(2) {
  transform: translateY(6px);
}
.c-hamburger-btn__inner span:nth-child(3) {
  transform: translateY(12px);
}
.c-hamburger-btn.is-open .c-hamburger-btn__inner span:nth-child(1) {
  transform: translateY(6px) rotate(30deg);
}
.c-hamburger-btn.is-open .c-hamburger-btn__inner span:nth-child(2) {
  opacity: 0;
}
.c-hamburger-btn.is-open .c-hamburger-btn__inner span:nth-child(3) {
  transform: translateY(6px) rotate(-30deg);
}

.c-hamburger-menu {
  display: none;
  opacity: 0;
  visibility: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  background: #fff;
  color: #231815;
  pointer-events: none;
  transition: opacity 0.1s ease, visibility 0.1s ease;
  z-index: 99;
}
@media screen and (max-width: 959px) {
  .c-hamburger-menu {
    display: block;
  }
}
.c-hamburger-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-hamburger-menu__list {
  padding: 25px 17px;
  font-size: 14px;
  font-weight: 700;
  color: #644229;
}
.c-hamburger-menu__item a {
  display: block;
  padding: 14px 0;
}
.c-hamburger-menu__item + .c-hamburger-menu__item {
  border-top: solid 1px rgba(100, 66, 41, 0.2);
}
.c-hamburger-menu__item:last-of-type {
  padding-bottom: 50px;
}

/**
 * フッター
 */
.c-footer {
  background: #100169;
  color: #fff;
}
.c-footer__logo {
  text-align: center;
  padding: 90px 0 70px;
}
@media screen and (max-width: 750px) {
  .c-footer__logo {
    padding: 45px 0 26px;
  }
}
.c-footer__logo img {
  width: 343px;
}
@media screen and (max-width: 750px) {
  .c-footer__logo img {
    width: 245px;
  }
}
.c-footer__shops {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #fff;
  padding: 30px 17px 11px;
}
.c-footer__map {
  position: relative;
  padding-top: 25%;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .c-footer__map {
    padding-top: 42.6666666667%;
  }
}
.c-footer__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-footer__content {
  background: #EEF8FF;
  padding: 0 30px;
}
.c-footer__menu {
  padding: 29px 0 13px;
}
.c-footer__menu-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 959px) {
  .c-footer__menu-list {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 750px) {
  .c-footer__menu-list {
    flex-direction: column;
    height: 130px;
  }
}
.c-footer__menu-item {
  position: relative;
  width: 18%;
  margin-bottom: 15px;
  padding-right: 20px;
}
@media screen and (max-width: 959px) {
  .c-footer__menu-item {
    width: 25%;
  }
}
@media screen and (max-width: 750px) {
  .c-footer__menu-item {
    width: auto;
    margin-bottom: 2.5px;
    padding-right: 49px;
  }
}
.c-footer__menu-item::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  background: url(../img/footer/arrow.svg) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .c-footer__menu-item::before {
    top: 8px;
    width: 12px;
    height: 12px;
  }
}
.c-footer__menu-item a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #007BCE;
  padding-left: 22px;
  transition: opacity 0.1s ease;
}
.c-footer__menu-item a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .c-footer__menu-item a {
    font-size: 11px;
    padding-left: 17px;
  }
}
.c-footer__copyright {
  text-align: center;
  font-size: 12px;
  color: #000;
  padding: 30px 0;
}
@media screen and (max-width: 750px) {
  .c-footer__copyright {
    text-align: left;
    font-size: 10px;
    padding: 21px 0 33px;
  }
}
.c-footer__to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}
@media screen and (max-width: 959px) {
  .c-footer__to-top {
    display: none;
  }
}
.c-footer__to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.c-footer__to-top a {
  display: block;
  width: 50px;
  height: 50px;
  font-size: 0;
  background: url(../img/footer/to-top.svg) center/contain no-repeat;
  transition: opacity 0.1s ease;
}

.c-footer-shop {
  margin-bottom: 19px;
}
.c-footer-shop__info {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0;
  color: #100169;
}
@media screen and (max-width: 750px) {
  .c-footer-shop__info {
    font-size: 12px;
    line-height: 1.75;
  }
}

/**
 * 右側追従
 */
.c-right-bnr {
  position: fixed;
  top: 171px;
  right: 15px;
  width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
  background: #ffc91b;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 959px) {
  .c-right-bnr {
    display: none;
  }
}
.c-right-bnr.is-show {
  opacity: 1;
  visibility: visible;
}
.c-right-bnr__top {
  padding: 9px 9px 7px;
  background: url("../img/parts/right-bnr/back.png") center/contain no-repeat;
  color: #644229;
}
.c-right-bnr__txt1 {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 1px;
}
.c-right-bnr__btn {
  margin-bottom: 6px;
}
.c-right-bnr__btn a {
  display: flex;
  align-items: center;
  color: #fff;
  background: #ff6f19;
  border-radius: 100px;
  font-weight: 900;
  padding: 6px;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.02em;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  transition: opacity 0.1s ease;
}
.c-right-bnr__btn a:hover {
  opacity: 0.8;
}
.c-right-bnr__btn a::before {
  content: "";
  flex: 0 0 23px;
  height: 16px;
  background: url("../img/parts/right-bnr/tel2.svg") center/contain no-repeat;
  margin: 0 5px 0 6px;
}
.c-right-bnr__open {
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
}
.c-right-bnr__bottom {
  display: flex;
}

.c-right-bnr-item {
  flex: 0 0 50%;
}
.c-right-bnr-item a {
  display: block;
  padding-top: 29px;
  padding-bottom: 6px;
}
.c-right-bnr-item__txt {
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}
.c-right-bnr-item--line a {
  background: url("../img/parts/right-bnr/line.svg") top 6px center/22px no-repeat #02be04;
  color: #fff;
  transition: opacity 0.1s ease;
}
.c-right-bnr-item--line a:hover {
  opacity: 0.8;
}
.c-right-bnr-item--mail a {
  background: url("../img/parts/right-bnr/mail.svg") top 9px center/21px no-repeat #ff6a6c;
  color: #fff;
  transition: opacity 0.1s ease;
}
.c-right-bnr-item--mail a:hover {
  opacity: 0.8;
}

/**
 * 下部追従
 */
.c-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--bottom-bar-height);
  background: #100169;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
  padding: 8px 160px 3px 17px;
}
@media screen and (max-width: 959px) {
  .c-bottom-bar {
    display: block;
  }
}
.c-bottom-bar::after {
  content: "";
  width: 155px;
  height: 95px;
  position: absolute;
  background: url("../img/parts/bottom-bar/character.png") center/contain no-repeat;
  right: 0;
  bottom: 0;
}
.c-bottom-bar.is-show {
  opacity: 1;
  visibility: visible;
}
.c-bottom-bar__txt {
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  margin-bottom: 3px;
}
.c-bottom-bar__btn a {
  display: flex;
  justify-content: center;
  border-radius: 100px;
  background: linear-gradient(180deg, rgb(252, 236, 180) 0%, rgb(255, 222, 25) 100%);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #100169;
  padding: 4px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
}
.c-bottom-bar__btn a::before {
  content: "";
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  background: url("../img/parts/bottom-bar/tel.svg") center/contain no-repeat;
  margin: 0 4px 0 -9px;
}

/**
 * ページネーション
 */
.c-pagination {
  display: flex;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto 54px;
}
.c-pagination__btn {
  flex: 1 0 0px;
  margin: 0 5px;
}
.c-pagination__btn.c-btn1 a {
  background: #F09B61;
  color: #fff;
}
.c-pagination__btn.c-btn1 a::before {
  background-image: url(../img/parts/btn1/arrow-white.svg);
}
.c-pagination__btn.c-btn--back a::before {
  transform: rotate(180deg);
}
.c-pagination__btn.c-btn--next a::before {
  order: 2;
  margin-left: 14px;
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .c-pagination {
    margin: 0 -5px 27px;
  }
  .c-pagination__btn a {
    max-width: 164px;
  }
}

/* ページネーション（コラム） */
.p-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 26px;
}
.p-pagination a.page-numbers {
  transition: opacity 0.1s ease;
}
.p-pagination a.page-numbers:hover {
  opacity: 0.8;
}
.p-pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 23px;
  height: 23px;
  margin: 0 3px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 3px;
  background-color: #d7d7d7;
}
.p-pagination .page-numbers.current {
  background-color: #007bce;
  color: #fff;
}
.p-pagination .page-numbers.next, .p-pagination .page-numbers.prev, .p-pagination .page-numbers.dots {
  width: auto;
  background-color: unset;
}
.p-pagination .page-numbers.next {
  margin: 0 0 0 10px;
}
.p-pagination .page-numbers.prev {
  margin: 0 10px 0 0;
}
.p-pagination .page-numbers.dots {
  margin: 0 6px;
}
@media screen and (min-width: 960px) {
  .p-pagination .page-numbers {
    width: 36px;
    height: 36px;
    margin: 0 7px;
    font-size: 16px;
    border-radius: 7px;
  }
  .p-pagination .page-numbers.next, .p-pagination .page-numbers.prev, .p-pagination .page-numbers.dots {
    width: auto;
  }
}

/**
 * 汎用タイトル
 */
.c-ttl1 {
  position: relative;
  color: #fff;
  background: url("../img/parts/ttl1/background.png") center/cover no-repeat;
  padding: 25px 30px 50px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .c-ttl1 {
    background-image: url("../img/parts/ttl1/background-sp.png");
    padding: 16px 17px 40px;
  }
}
.c-ttl1::before, .c-ttl1::after {
  position: absolute;
  content: "";
  border-bottom: 30px solid #fff;
  bottom: -1px;
  width: calc(50% - 25px);
}
@media screen and (max-width: 750px) {
  .c-ttl1::before, .c-ttl1::after {
    border-bottom-width: 25px;
    width: calc(50% - 20px);
  }
}
.c-ttl1::before {
  border-right: 25px solid transparent;
  left: 0;
}
@media screen and (max-width: 750px) {
  .c-ttl1::before {
    border-right-width: 20px;
  }
}
.c-ttl1::after {
  border-left: 25px solid transparent;
  right: 0;
}
@media screen and (max-width: 750px) {
  .c-ttl1::after {
    border-left-width: 20px;
  }
}
.c-ttl1__en {
  position: relative;
  display: inline-block;
  font-family: Century Gothic, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3125;
}
@media screen and (max-width: 750px) {
  .c-ttl1__en {
    font-size: 13px;
    line-height: 1.5;
  }
}
.c-ttl1__en::before, .c-ttl1__en::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 18px;
  top: 0;
  background: #fff;
}
@media screen and (max-width: 750px) {
  .c-ttl1__en::before, .c-ttl1__en::after {
    height: 16px;
  }
}
.c-ttl1__en::before {
  left: -16px;
  transform: rotate(-37deg);
}
.c-ttl1__en::after {
  right: -16px;
  transform: rotate(37deg);
}
.c-ttl1__ttl {
  position: relative;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.5;
  padding-top: 1px;
}
@media screen and (max-width: 750px) {
  .c-ttl1__ttl {
    font-size: 28px;
    padding-top: 0;
  }
}
.c-ttl1__lead {
  position: relative;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-top: 2px;
}
@media screen and (max-width: 750px) {
  .c-ttl1__lead {
    font-size: 12px;
    padding-top: 5px;
  }
}

/**
 * 汎用ボタン
 */
.c-btn1 a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 100px;
  background: #2EC35A;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 19px 0;
  max-width: 342px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15);
  transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
}
.c-btn1 a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .c-btn1 a {
    font-size: 14px;
    line-height: 1.7857142857;
    padding: 14px 0;
    max-width: 300px;
  }
}
.c-btn1 a::after {
  content: "";
  width: 6px;
  height: 10px;
  background: url("../img/parts/btn1/arrow.svg") center/contain no-repeat;
  margin-left: 11px;
}

/**
 * MV
 */
.lp-mv__main {
  position: relative;
}
.lp-mv__main .c-btn1 {
  position: absolute;
  bottom: calc(110px + 195 * (100vw - 750px) / 1170);
  left: calc(330px + 618 * (100vw - 750px) / 1170);
}
@media screen and (max-width: 750px) {
  .lp-mv__main .c-btn1 {
    bottom: 26.2%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.lp-mv__main .c-btn1 a {
  background: #E24F3E;
  width: calc(220px + 122 * (100vw - 750px) / 1170);
  padding: calc(10px + 9 * (100vw - 750px) / 1170) 0;
}
@media screen and (max-width: 750px) {
  .lp-mv__main .c-btn1 a {
    width: 210px;
    padding: 10px 0;
  }
}
.lp-mv__main .c-btn1 a::after {
  margin-left: 20px;
}
@media screen and (max-width: 750px) {
  .lp-mv__main .c-btn1 a::after {
    margin-left: 8px;
  }
}
.lp-mv__pic {
  position: relative;
  display: block;
}
.lp-mv__pic img {
  width: 100%;
  height: auto;
}
.lp-mv__pic::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.09) 8.96%, rgb(255, 255, 255) 100%);
}
@media screen and (max-width: 750px) {
  .lp-mv__pic::after {
    height: 100px;
  }
}
.lp-mv__jisseki {
  position: relative;
  margin-top: calc(-95px + -200 * (100vw - 750px) / 1170);
}
@media screen and (max-width: 750px) {
  .lp-mv__jisseki {
    margin-top: -120px;
  }
}
.lp-mv__jisseki .c-btn1 a::after {
  margin: 0 -10px 0 14px;
}
.lp-mv__jisseki-list {
  display: flex;
  justify-content: center;
  margin: 30px 0 41px;
  overflow: hidden;
  z-index: 5;
}
@media screen and (max-width: 750px) {
  .lp-mv__jisseki-list {
    margin: 15px 0 24px;
  }
}
.lp-mv__jisseki-list.slick-initialized {
  display: block;
}
.lp-mv__jisseki-list .slick-slide {
  width: 382px;
}
@media screen and (max-width: 750px) {
  .lp-mv__jisseki-list .slick-slide {
    width: 280px;
  }
}
.lp-mv__jisseki-list .slick-dots {
  display: flex;
  justify-content: center;
}
.lp-mv__jisseki-list .slick-dots li {
  font-size: 0;
}
.lp-mv__jisseki-list .slick-dots li button {
  font-size: 0;
  width: 8px;
  height: 8px;
  background: #d7d7d7;
  border-radius: 50%;
  margin: 0 5px;
  padding: 0;
}
.lp-mv__jisseki-list .slick-dots li.slick-active button {
  background: #100169;
}
.lp-mv__jisseki-list .slick-arrow {
  position: absolute;
  top: calc(50% - 13px);
  z-index: 10;
  width: 30px;
  height: 30px;
  font-size: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  .lp-mv__jisseki-list .slick-arrow {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.lp-mv__jisseki-list .slick-arrow.slick-next {
  left: calc(50% + 125px);
  transform: translate(-50%, -50%);
  background: url("../img/parts/lp-mv/right.svg") center/contain no-repeat;
}
.lp-mv__jisseki-list .slick-arrow.slick-prev {
  right: calc(50% + 125px);
  transform: translate(50%, -50%);
  background: url("../img/parts/lp-mv/left.svg") center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .lp-mv__jisseki-list .slick-slide {
    opacity: 0.3;
    transition: opacity 0.2s ease;
  }
}
@media screen and (max-width: 750px) {
  .lp-mv__jisseki-list .slick-slide.slick-current, .lp-mv__jisseki-list .slick-slide.active {
    opacity: 1;
  }
}
.lp-mv__jisseki-ttl {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  background: rgba(16, 1, 105, 0.9);
  text-align: center;
  padding: 5px 0px 7px 5px;
}
@media screen and (max-width: 750px) {
  .lp-mv__jisseki-ttl {
    font-size: 14px;
    padding: 4px 0px 5px;
  }
}
.lp-mv__jisseki-ttl span {
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .lp-mv__jisseki-ttl span {
    font-size: 10px;
  }
}
.lp-mv__jisseki-ttl::after {
  position: absolute;
  content: "";
  bottom: -21px;
  left: calc(50% + 2px);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 22px solid rgba(16, 1, 105, 0.9);
  border-right: 13px solid transparent;
  border-left: 13px solid transparent;
}
@media screen and (max-width: 750px) {
  .lp-mv__jisseki-ttl::after {
    bottom: -13px;
    left: 50%;
    border-top-width: 14px;
    border-right-width: 6px;
    border-left-width: 6px;
  }
}

.lp-mv-jisseki {
  flex: 0 0 382px;
  width: 382px;
  padding: 0 24px 40px;
}
@media screen and (max-width: 959px) {
  .lp-mv-jisseki {
    flex: 0 0 280px;
    width: 280px;
    padding: 0 15px 23px;
  }
}
.lp-mv-jisseki__inner {
  display: block;
  box-shadow: 2.66px 2.66px 4px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 750px) {
  .lp-mv-jisseki__inner {
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15);
  }
}
.lp-mv-jisseki__thumb {
  position: relative;
  background: #fff;
  padding: 14px 14px 0;
}
@media screen and (max-width: 959px) {
  .lp-mv-jisseki__thumb {
    padding: 10px 10px 0;
  }
}
.lp-mv-jisseki__thumb::before {
  content: "";
  display: block;
  padding-top: 75.8169934641%;
}
@media screen and (max-width: 959px) {
  .lp-mv-jisseki__thumb::before {
    padding-top: 76.0869565217%;
  }
}
.lp-mv-jisseki__pic {
  position: absolute;
  inset: 0;
  padding: 14px 14px 0;
}
@media screen and (max-width: 959px) {
  .lp-mv-jisseki__pic {
    padding: 10px 10px 0;
  }
}
.lp-mv-jisseki__pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}
.lp-mv-jisseki__tags {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-flow: column;
  padding: 14px 14px 0;
}
@media screen and (max-width: 959px) {
  .lp-mv-jisseki__tags {
    padding: 10px 10px 0;
  }
}
.lp-mv-jisseki__tag {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1875;
  letter-spacing: 0.2em;
  background: #F8B03D;
  color: #fff;
  padding: 6px 0 5px;
  width: 106px;
  margin-left: 5px;
  margin-bottom: 5px;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .lp-mv-jisseki__tag {
    font-size: 12px;
    line-height: 1.25;
    padding: 3px 0 5px;
    width: 80px;
  }
}
.lp-mv-jisseki__tag--shuccho {
  background-color: #F8B03D;
}
.lp-mv-jisseki__tag--takuhai {
  background: #49A0CE;
}
.lp-mv-jisseki__tag--tento {
  background: #EF5C5C;
}
.lp-mv-jisseki__tag--moving {
  background: #30A361;
}
.lp-mv-jisseki__body {
  background: #fff;
  color: #474747;
  text-align: center;
  padding: 10px 0 18px;
}
@media screen and (max-width: 959px) {
  .lp-mv-jisseki__body {
    padding: 7px 0 10px;
  }
}
.lp-mv-jisseki__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (max-width: 959px) {
  .lp-mv-jisseki__name {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
.lp-mv-jisseki__txt {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 959px) {
  .lp-mv-jisseki__txt {
    font-size: 14px;
  }
}
.lp-mv-jisseki__num {
  font-size: 26px;
  font-weight: 900;
  color: #E24F3E;
}
@media screen and (max-width: 959px) {
  .lp-mv-jisseki__num {
    font-size: 20px;
  }
}
.lp-mv-jisseki__unit {
  color: #E24F3E;
  padding-left: 4px;
}

/**
 * CPバナー
 */
.lp-cp {
  overflow: hidden;
  padding-top: 5.15625vw;
}
@media (max-width: 1920px) {
  .lp-cp {
    padding-top: 99px;
  }
}
@media screen and (max-width: 750px) {
  .lp-cp {
    padding-top: 7.5vw;
  }
}
.lp-cp__bg {
  background: #FAF5EB;
}
.lp-cp__inner {
  text-align: center;
}
.lp-cp__banner img {
  width: 680px;
}
@media screen and (max-width: 750px) {
  .lp-cp__banner img {
    width: 340px;
  }
}
.lp-cp__list {
  display: flex;
  padding: 30px 0;
}
@media screen and (max-width: 750px) {
  .lp-cp__list {
    padding: 16px 0 28px;
  }
}
.lp-cp__list.slick-initialized {
  display: block;
}
.lp-cp__list .slick-track {
  padding-bottom: 5px;
}
.lp-cp__list .slick-arrow {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  font-size: 0;
  z-index: 5;
}
@media screen and (max-width: 750px) {
  .lp-cp__list .slick-arrow {
    width: 34px;
    height: 34px;
  }
}
.lp-cp__list .slick-arrow.slick-prev {
  left: 50%;
  background: url("../img/parts/lp-cp/left.svg") center/contain no-repeat;
  transform: translateY(-50%) translateY(-5px) translateX(-450px);
}
@media screen and (max-width: 959px) {
  .lp-cp__list .slick-arrow.slick-prev {
    left: 10px;
    transform: translateY(-50%) translateY(-13px);
  }
}
.lp-cp__list .slick-arrow.slick-next {
  right: 50%;
  background: url("../img/parts/lp-cp/right.svg") center/contain no-repeat;
  transform: translateY(-50%) translateY(-5px) translateX(450px);
}
@media screen and (max-width: 959px) {
  .lp-cp__list .slick-arrow.slick-next {
    right: 10px;
    transform: translateY(-50%) translateY(-13px);
  }
}
.lp-cp__list .slick-dots {
  font-size: 0;
  padding: 3px 0 0;
  text-align: center;
  margin-bottom: 0px;
}
@media screen and (max-width: 750px) {
  .lp-cp__list .slick-dots {
    margin-bottom: -9px;
  }
}
.lp-cp__list .slick-dots li {
  font-size: 0;
  display: inline-block;
  margin: 0 6px;
}
@media screen and (max-width: 750px) {
  .lp-cp__list .slick-dots li {
    margin: 0 5px;
  }
}
.lp-cp__list .slick-dots li button {
  font-size: 0;
  padding: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #D7D7D7;
}
@media screen and (max-width: 750px) {
  .lp-cp__list .slick-dots li button {
    width: 8px;
    height: 8px;
  }
}
.lp-cp__list .slick-dots li.slick-active button {
  background: #100169;
}
.lp-cp__item {
  flex: 0 0 890px;
  max-width: 890px;
  min-width: 890px;
  padding: 0 20px;
}
@media screen and (max-width: 959px) {
  .lp-cp__item {
    flex: 0 0 360px;
    max-width: 360px;
    min-width: 360px;
    padding: 0 10px;
  }
}
.lp-cp__item img {
  width: 100%;
}

/**
 * トップメッセージ
 */
.lp-intro {
  border-bottom: solid 26px #df0a1f;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .lp-intro {
    border-bottom-width: 13px;
  }
}
.lp-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  background: url(../img/parts/lp-intro/bg.png) center/1200px no-repeat;
  padding: 47px 0 73px;
}
@media screen and (max-width: 750px) {
  .lp-intro__inner {
    background: url(../img/parts/lp-intro/bg-sp.png) top center/404px no-repeat;
    padding: 39px 0 47px;
  }
}
.lp-intro__head {
  text-align: center;
  font-weight: 700;
  margin-bottom: 19px;
}
.lp-intro__subttl {
  font-size: 28px;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 750px) {
  .lp-intro__subttl {
    font-size: 23px;
  }
}
.lp-intro__subttl span {
  position: relative;
}
.lp-intro__subttl span::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 7px;
  height: 32px;
  width: 2px;
  background: #000;
  transform: rotate(-35deg);
  border-radius: 2px;
}
@media screen and (max-width: 750px) {
  .lp-intro__subttl span::before {
    left: -11px;
    height: 27px;
  }
}
.lp-intro__subttl span::after {
  content: "";
  position: absolute;
  right: -36px;
  top: 7px;
  height: 32px;
  width: 2px;
  background: #000;
  transform: rotate(35deg);
  border-radius: 2px;
}
@media screen and (max-width: 750px) {
  .lp-intro__subttl span::after {
    right: -11px;
    height: 27px;
  }
}
.lp-intro__ttl {
  font-size: 46px;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 750px) {
  .lp-intro__ttl {
    font-size: 35px;
  }
}
.lp-intro__icon {
  text-align: center;
  margin-bottom: 19px;
}
@media screen and (max-width: 750px) {
  .lp-intro__icon {
    margin-bottom: 14px;
  }
}
.lp-intro__desc {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .lp-intro__desc {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 21px;
  }
}
.lp-intro__list {
  display: flex;
  justify-content: center;
}
.lp-intro__list-item {
  margin: 0 7px;
}
.lp-intro__list-item img {
  width: 96px;
}

/**
 * 買取実績
 */
.lp-pickup {
  padding: 84px 0 157px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 750px) {
  .lp-pickup {
    padding: 39px 0 22px;
  }
}
.lp-pickup::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 26px;
  background: url(../img/parts/lp-pickup/bottom-border.png) bottom center/200px repeat-x #df0a1f;
}
@media screen and (max-width: 750px) {
  .lp-pickup::after {
    height: 13px;
    background-size: auto 13px;
  }
}
.lp-pickup__inner {
  max-width: 960px;
  padding: 0 30px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .lp-pickup__inner {
    padding: 0 18px;
  }
}
.lp-pickup .c-ttl1 {
  margin-bottom: 74px;
}
@media screen and (max-width: 750px) {
  .lp-pickup .c-ttl1 {
    margin-bottom: 62px;
  }
}
.lp-pickup__list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -30px;
  margin-bottom: -36px;
}
@media screen and (max-width: 750px) {
  .lp-pickup__list {
    display: block;
    margin-right: 0;
    margin-bottom: 0;
  }
}

.lp-pickup-item {
  flex: 0 0 50%;
  max-width: calc(50% - 30px);
  margin-right: 30px;
  margin-bottom: 31px;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 750px) {
  .lp-pickup-item {
    max-width: none;
    margin-right: 0;
    margin-bottom: 23px;
  }
}
.lp-pickup-item__pic {
  flex: 0 0 210px;
  position: relative;
  background: #eee;
  margin-right: 16px;
  margin-bottom: 6px;
}
@media screen and (max-width: 959px) {
  .lp-pickup-item__pic {
    flex: 0 0 150px;
  }
}
@media screen and (max-width: 750px) {
  .lp-pickup-item__pic {
    flex: 0 0 165px;
    margin-bottom: 2px;
  }
}
.lp-pickup-item__pic::before {
  content: "";
  display: block;
  padding-top: 74.76%;
}
.lp-pickup-item__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.lp-pickup-item__body {
  align-self: stretch;
  flex: 1 0 0px;
  display: flex;
  flex-direction: column;
}
.lp-pickup-item__maker {
  margin-bottom: 9px;
}
@media screen and (max-width: 750px) {
  .lp-pickup-item__maker {
    font-size: 12px;
  }
}
.lp-pickup-item__maker span {
  display: inline-block;
  background: #df0a1f;
  color: #fff;
  font-weight: 700;
  padding: 3px 7px;
}
.lp-pickup-item__name {
  color: #231815;
  font-weight: 700;
  flex: 1 0 auto;
  line-height: 1.4375;
  margin-bottom: 5px;
}
@media screen and (max-width: 750px) {
  .lp-pickup-item__name {
    font-size: 14px;
    line-height: 1.285;
  }
}

.lp-pickup-price {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .lp-pickup-price {
    font-size: 12px;
  }
}
.lp-pickup-price__txt {
  line-height: 26px;
}
@media screen and (max-width: 750px) {
  .lp-pickup-price__txt {
    line-height: 20px;
  }
}
.lp-pickup-price__amount {
  font-size: 15px;
  font-weight: 700;
  text-align: right;
  flex: 1 0 auto;
  padding-right: 3px;
  max-width: 100%;
}
@media screen and (max-width: 750px) {
  .lp-pickup-price__amount {
    font-size: 12px;
    line-height: 20px;
  }
}
.lp-pickup-price__amount span {
  font-size: 26px;
  color: #E9441F;
  margin-right: 5px;
  word-break: break-all;
}
@media screen and (max-width: 750px) {
  .lp-pickup-price__amount span {
    font-size: 20px;
  }
}

/**
 * 取扱商品
 */
.lp-goods {
  position: relative;
  background: #EEF8FF;
}
@media screen and (max-width: 750px) {
  .lp-goods {
    overflow: hidden;
  }
}
.lp-goods .c-ttl1::before, .lp-goods .c-ttl1::after {
  border-bottom-color: #EEF8FF;
}
.lp-goods__inner {
  position: relative;
  max-width: 1090px;
  padding: 0 30px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .lp-goods__inner {
    padding: 0 17px;
  }
}
.lp-goods__list-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.lp-goods__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-right: -18px;
  padding-bottom: 53px;
}
@media screen and (max-width: 750px) {
  .lp-goods__list {
    margin-top: 15px;
    margin-right: -11px;
    padding-bottom: 36px;
  }
}

.lp-goods-item {
  flex: 0 0 16.666667%;
  max-width: calc(16.666667% - 18px);
  margin-right: 18px;
  margin-bottom: 18px;
}
@media screen and (max-width: 750px) {
  .lp-goods-item {
    flex: 0 0 33.33333%;
    max-width: calc(33.33333% - 11.33px);
    margin-right: 11px;
    margin-bottom: 11px;
  }
}
.lp-goods-item__inner {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 750px) {
  .lp-goods-item__inner {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  }
}
.lp-goods-item__pic {
  overflow: hidden;
  position: relative;
  background: #fff;
  text-align: center;
}
.lp-goods-item__name {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-align: center;
  min-height: 60px;
  margin-top: 10px;
  font-feature-settings: "palt";
  color: #100169;
}
@media screen and (max-width: 750px) {
  .lp-goods-item__name {
    font-size: 14px;
    min-height: 20px;
    margin: 6px -8px 0;
  }
}

/**
 * カテゴリボタンリスト
 */
.lp-catlist {
  max-width: 900px;
  margin: 0 auto;
}
.lp-catlist__ttl {
  color: #100169;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 750px) {
  .lp-catlist__ttl {
    font-size: 14px;
  }
}
.lp-catlist__body {
  padding: 26px 36px 24px;
}
@media screen and (max-width: 750px) {
  .lp-catlist__body {
    padding: 14px 0 13px;
  }
}
.lp-catlist__list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
}
.lp-catlist__item {
  flex: 0 0 25%;
  max-width: calc(25% - 10px);
  margin-right: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .lp-catlist__item {
    flex: 0 0 50%;
    max-width: calc(50% - 10px);
    margin-right: 10px;
    margin-bottom: 7.5px;
  }
}
.lp-catlist__item a, .lp-catlist__item button {
  display: flex;
  margin: 0 auto;
  align-items: center;
  width: 100%;
  height: 60px;
  font-size: 16px;
  font-weight: 500;
  background: #fff;
  color: #000;
  text-align: left;
  padding: 0 13px;
  position: relative;
  font-feature-settings: "palt";
}
@media screen and (max-width: 750px) {
  .lp-catlist__item a, .lp-catlist__item button {
    font-size: 13px;
    height: 45px;
  }
}
.lp-catlist__item a span, .lp-catlist__item button span {
  position: relative;
  padding-right: 8px;
  z-index: 2;
}
.lp-catlist__item a span::after, .lp-catlist__item button span::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  border-radius: 1px;
  top: calc(50% + 1px);
  right: -5px;
  transform: translateY(-50%) rotate(45deg);
}
.lp-catlist__item--all {
  flex: 0 0 100%;
  max-width: calc(100% - 10px);
  text-align: center;
  margin-bottom: 17px;
}
@media screen and (max-width: 750px) {
  .lp-catlist__item--all {
    margin-bottom: 10px;
  }
}
.lp-catlist__item--all a, .lp-catlist__item--all button {
  text-align: center;
  justify-content: center;
  max-width: 240px;
  height: 45px;
  font-weight: 700;
  font-feature-settings: normal;
}
@media screen and (max-width: 750px) {
  .lp-catlist__item--all a, .lp-catlist__item--all button {
    max-width: none;
    font-size: 14px;
  }
}
.lp-catlist__item--all a span, .lp-catlist__item--all button span {
  padding-right: 16px;
}
.lp-catlist__item--all a span::after, .lp-catlist__item--all button span::after {
  border-top-width: 2px;
  border-right-width: 2px;
}
.lp-catlist__item--all.is-active a, .lp-catlist__item--all.is-active button {
  background: #007BCE;
}
.lp-catlist__item.is-active a, .lp-catlist__item.is-active button {
  color: #fff;
}
.lp-catlist__item.is-active a span::after, .lp-catlist__item.is-active button span::after {
  border-color: #fff;
}
.lp-catlist__item.is-active .lp-catlist__item-bg::before {
  background: #007BCE;
}
.lp-catlist__item-bg {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}
.lp-catlist__item-bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 63px;
  bottom: 0;
  left: -63px;
  background: white;
  transform-origin: right bottom;
  transform: skewX(-24deg);
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .lp-catlist__item-bg::before {
    top: 0;
    right: 60px;
    bottom: 0;
    left: -60px;
  }
}
.lp-catlist__item-bg img {
  position: absolute;
  width: 63px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  right: 0;
}
@media screen and (max-width: 750px) {
  .lp-catlist__item-bg img {
    width: 60px;
    height: 45px;
  }
}

/**
 * 買取実績
 */
.lp-jisseki {
  overflow: hidden;
  padding-bottom: 72px;
  background: #FAF5EB;
}
.lp-jisseki .c-ttl1::before, .lp-jisseki .c-ttl1::after {
  border-bottom-color: #FAF5EB;
}
.lp-jisseki__inner {
  max-width: 1090px;
  padding: 0 30px;
  padding-top: 40px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .lp-jisseki__inner {
    padding: 0 17.5px;
    padding-top: 19px;
  }
}
.lp-jisseki .lp-catlist {
  margin-bottom: 22px;
}
.lp-jisseki__list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-bottom: 31px;
}
@media screen and (max-width: 750px) {
  .lp-jisseki__list {
    display: block;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.lp-jisseki__container {
  display: none;
  position: relative;
}
.lp-jisseki__container.is-active {
  display: block;
}

.lp-jisseki-item {
  flex: 0 0 33.33333%;
  max-width: calc(33.33333% - 20px);
  margin-right: 20px;
  margin-bottom: 25px;
  background: #fff;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 750px) {
  .lp-jisseki-item {
    max-width: none;
    margin-right: 0;
    margin-bottom: 20px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15);
  }
}
.lp-jisseki-item__thumb {
  position: relative;
}
.lp-jisseki-item__pic {
  position: relative;
}
.lp-jisseki-item__pic::before {
  content: "";
  display: block;
  padding-top: 73.5294117647%;
  background: #fafafa;
}
.lp-jisseki-item__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.lp-jisseki-item__tags {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap-reverse;
  flex-direction: column-reverse;
  align-content: flex-start;
  padding: 11px 16px;
}
.lp-jisseki-item__tag {
  background: #F8B03D;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  min-width: 80px;
  line-height: 1.5;
  padding: 2px 5px 3px;
  margin-top: 5px;
  margin-right: 5px;
}
.lp-jisseki-item__tag--shuccho {
  background-color: #F8B03D;
}
.lp-jisseki-item__tag--takuhai {
  background: #49A0CE;
}
.lp-jisseki-item__tag--tento {
  background: #EF5C5C;
}
.lp-jisseki-item__tag--moving {
  background: #30A361;
}
.lp-jisseki-item__body {
  padding: 16px 15px 18px;
}
.lp-jisseki-item__ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #000;
  margin-bottom: 1px;
}
@media screen and (max-width: 750px) {
  .lp-jisseki-item__ttl {
    font-size: 17px;
    line-height: 1.4117647059;
  }
}
.lp-jisseki-item__desc {
  line-height: 1.72;
  max-height: 5.16em;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .lp-jisseki-item__desc {
    font-size: 13px;
    line-height: 1.3846;
    max-height: 54px;
  }
}
.lp-jisseki-item__desc strong {
  font-weight: 700;
}
.lp-jisseki-item__desc em {
  font-style: italic;
}

.lp-jisseki-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 2px #007BCE;
  padding-bottom: 5px;
  margin-bottom: 12px;
}
@media screen and (max-width: 750px) {
  .lp-jisseki-price {
    border-bottom-width: 1px;
  }
}
.lp-jisseki-price__label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1538461538;
  letter-spacing: 0.05em;
  background: #E24F3E;
  color: #fff;
  padding: 5px 7px;
}
@media screen and (max-width: 750px) {
  .lp-jisseki-price__label {
    font-size: 12px;
    line-height: 1.1666666667;
    letter-spacing: 2px;
    margin-top: 2px;
  }
}
.lp-jisseki-price__amount {
  flex: 1 0 auto;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  text-align: right;
  max-width: 100%;
  color: #E24F3E;
}
@media screen and (max-width: 750px) {
  .lp-jisseki-price__amount {
    font-size: 16px;
  }
}
.lp-jisseki-price__num {
  font-size: 28px;
  word-break: break-all;
  letter-spacing: 0.02em;
}
.lp-jisseki-price__unit {
  padding: 0px 5px 0 3px;
}

.lp-jisseki-sec {
  max-width: 474px;
  margin: 8px auto 60px;
}
@media screen and (max-width: 750px) {
  .lp-jisseki-sec {
    margin-bottom: 42px;
  }
}
.lp-jisseki-sec__ttl {
  text-align: center;
}
.lp-jisseki-sec__ttl span {
  position: relative;
  display: inline-block;
  color: #007BCE;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (max-width: 750px) {
  .lp-jisseki-sec__ttl span {
    font-size: 15px;
  }
}
.lp-jisseki-sec__ttl span::before, .lp-jisseki-sec__ttl span::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 18px;
  top: 4px;
  background: #007BCE;
}
@media screen and (max-width: 750px) {
  .lp-jisseki-sec__ttl span::before, .lp-jisseki-sec__ttl span::after {
    height: 16px;
  }
}
.lp-jisseki-sec__ttl span::before {
  left: -12px;
  transform: rotate(-37deg);
}
.lp-jisseki-sec__ttl span::after {
  right: -12px;
  transform: rotate(37deg);
}
.lp-jisseki-sec__body {
  background: #fff;
  color: #007BCE;
  padding: 21px 0;
  margin-top: 15px;
}
@media screen and (max-width: 750px) {
  .lp-jisseki-sec__body {
    padding: 14px 0 16px 10px;
    margin-top: 8px;
  }
}
.lp-jisseki-sec__desc {
  text-align: center;
  font-size: 18px;
  line-height: 1.6666666667;
}
@media screen and (max-width: 750px) {
  .lp-jisseki-sec__desc {
    font-size: 13px;
    line-height: 1.5384615385;
  }
}

.archive-jisseki .lp-jisseki .lp-catlist {
  margin-bottom: 44px;
}
.archive-jisseki .p-pagination {
  padding-top: 43px;
}
@media screen and (max-width: 750px) {
  .archive-jisseki .lp-thankyou {
    padding-top: 30px;
  }
}
.archive-jisseki .lp-thankyou__head {
  display: none;
}
.archive-jisseki + .c-footer .c-footer__logo {
  padding: 60px 0 80px;
}
@media screen and (max-width: 750px) {
  .archive-jisseki + .c-footer .c-footer__logo {
    padding: 31px 0 39px;
  }
}

.lp-line {
  background: #02BE04;
  padding: 58px 52px;
}
@media screen and (max-width: 959px) {
  .lp-line {
    padding: 30px;
  }
}
@media screen and (max-width: 750px) {
  .lp-line {
    padding: 14px;
  }
}
.lp-line__inner {
  border: solid 15px #fff;
  padding: 20px 20px 55px;
}
@media screen and (max-width: 959px) {
  .lp-line__inner {
    padding: 20px 20px 25px;
  }
}
@media screen and (max-width: 750px) {
  .lp-line__inner {
    padding: 3px 0 26px;
    border-width: 8px;
  }
}
.lp-line__ttl {
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  .lp-line__ttl {
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 750px) {
  .lp-line__btn {
    margin: 0 14px;
  }
}
.lp-line__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 6px #fff;
  background: #F39800;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  max-width: 740px;
  margin: 0 auto;
  border-radius: 100px;
  padding: 10px;
  box-shadow: 6px 6px rgba(0, 0, 0, 0.2);
  transition: opacity 0.1s ease;
}
@media screen and (max-width: 750px) {
  .lp-line__btn a {
    border-width: 3px;
    font-size: 16px;
    padding: 12px;
  }
}
.lp-line__btn a::before {
  content: "";
  display: block;
  width: 35px;
  height: 33px;
  background: url(../img/parts/lp-line/icon.png) center/contain no-repeat;
  margin-right: 17px;
}
@media screen and (max-width: 750px) {
  .lp-line__btn a::before {
    width: 32px;
    height: 30px;
  }
}

/**
 * 買取相場表
 */
.lp-market {
  overflow: hidden;
  padding: 35px 0 55px;
}
@media screen and (max-width: 750px) {
  .lp-market {
    padding-top: 15px;
  }
}
.lp-market__inner {
  max-width: 1090px;
  padding: 0 30px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .lp-market__inner {
    padding: 0 17px;
  }
}
@media screen and (max-width: 750px) {
  .lp-market .c-ttl1__lead {
    font-size: 11px;
    letter-spacing: 0;
    font-feature-settings: "palt";
    padding-top: 6px;
  }
}
.lp-market__pickup {
  max-width: 932px;
  margin: 10px auto 42px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .lp-market__pickup {
    margin-top: 1px;
  }
}
@media screen and (max-width: 750px) {
  .lp-market__pickup-inner {
    padding: 0 7px;
  }
}
.lp-market__pickup-list {
  display: flex;
}
@media screen and (max-width: 750px) {
  .lp-market__pickup-list {
    padding: 0 17px;
  }
}
.lp-market__pickup-list.slick-initialized {
  display: block;
}
@media screen and (max-width: 750px) {
  .lp-market__pickup-list.slick-initialized {
    margin: 0 -17px;
  }
}
.lp-market__pickup-list .slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}
.lp-market__pickup-list .slick-dots li {
  font-size: 0;
}
.lp-market__pickup-list .slick-dots li button {
  font-size: 0;
  width: 8px;
  height: 8px;
  background: #d7d7d7;
  border-radius: 50%;
  margin: 0 5px;
  padding: 0;
}
.lp-market__pickup-list .slick-dots li.slick-active button {
  background: #100169;
}
.lp-market__table-wrapper {
  position: relative;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.25);
}
.lp-market__table-wrapper::after {
  content: "";
  position: absolute;
  height: 80px;
  width: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, #fff, rgba(255, 255, 255, 0));
  z-index: 1;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lp-market__table-wrapper.is-end::after {
  opacity: 0;
  visibility: hidden;
}
.lp-market .lp-market__table-scroll {
  max-height: 404px;
  overflow: auto;
  background: #fff;
}

.lp-market-pickup {
  flex: 0 0 25%;
  width: 25%;
  padding: 9px 17px 23px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .lp-market-pickup {
    flex: 0 0 50%;
    width: 50%;
    padding: 7px 10px 0;
  }
}
.lp-market-pickup__inner {
  padding-bottom: 17px;
}
.lp-market-pickup__thumb {
  margin-bottom: 10px;
}
.lp-market-pickup__pic {
  position: relative;
  background: #fafafa;
}
.lp-market-pickup__pic::before {
  content: "";
  display: block;
  padding-top: 81.25%;
}
.lp-market-pickup__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.lp-market-pickup__maker {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 5px;
}
@media screen and (max-width: 750px) {
  .lp-market-pickup__maker {
    font-size: 10px;
  }
}
.lp-market-pickup__maker span {
  display: inline-block;
  background: #007BCE;
  color: #fff;
  letter-spacing: 0.03em;
  padding: 2px 11px;
}
.lp-market-pickup__rank {
  font-size: 12px;
  font-weight: 700;
  color: #007BCE;
  padding-bottom: 2px;
}
.lp-market-pickup__name {
  font-size: 14px;
  color: #000;
  line-height: 1.2857142857;
  margin-bottom: 18px;
}
@media screen and (max-width: 750px) {
  .lp-market-pickup__name {
    font-size: 13px;
    line-height: 1.2307692308;
    margin-bottom: 4px;
  }
}
.lp-market-pickup__price {
  text-align: right;
  font-size: 15px;
  font-weight: 700;
  color: #ca2d27;
}
@media screen and (max-width: 750px) {
  .lp-market-pickup__price {
    font-size: 13px;
  }
}
.lp-market-pickup__num {
  font-size: 19px;
  letter-spacing: 0.02em;
  padding-right: 1px;
}
@media screen and (max-width: 750px) {
  .lp-market-pickup__num {
    font-size: 17px;
  }
}

.lp-market-data {
  position: relative;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .lp-market-data {
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15);
  }
}
.lp-market-data::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 47px;
  background: linear-gradient(0, #644229 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.2;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.lp-market-data.is-end::after {
  opacity: 0;
}
.lp-market-data__ttl {
  background: #007BCE;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 6px 0 8px;
}
@media screen and (max-width: 750px) {
  .lp-market-data__ttl {
    font-size: 14px;
    line-height: 1.1428571429;
  }
}
.lp-market-data__body {
  background: #EEF8FF;
  padding: 20px 16px 0;
}

.lp-market-search {
  display: flex;
  margin-bottom: 16px;
}
.lp-market-search__text {
  flex: 1 0 0px;
  margin-right: 9px;
}
.lp-market-search__text input[type=text] {
  width: 100%;
  height: 35px;
  font-size: 16px;
  background: #fff;
  border-radius: 5px;
  padding: 0 10px;
}
@media screen and (max-width: 750px) {
  .lp-market-search__text input[type=text] {
    font-size: 12px;
  }
}
.lp-market-search__text input[type=text]::-moz-placeholder {
  color: #a0a0a0;
}
.lp-market-search__text input[type=text]::placeholder {
  color: #a0a0a0;
}
.lp-market-search__button {
  flex: 0 0 55px;
}
.lp-market-search__button button {
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  height: 35px;
  background: #007BCE;
  color: #fff;
  border-radius: 5px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 750px) {
  .lp-market-search__button button {
    font-size: 12px;
  }
}

.lp-market-table__header {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #007BCE;
  display: flex;
  border-bottom: solid 1px #007BCE;
  padding-bottom: 5px;
}
@media screen and (max-width: 750px) {
  .lp-market-table__header {
    font-size: 10px;
  }
}
.lp-market-table__head-pic {
  flex: 0 0 100px;
  margin-right: 12px;
  margin-left: 1px;
}
.lp-market-table__head-other {
  flex: 1 0 0px;
  text-align: right;
}
.lp-market-table__body {
  height: 424px;
  overflow: auto;
}

.lp-market-table-row {
  display: flex;
  align-items: flex-start;
  padding: 14px 0 13px;
}
.lp-market-table-row:not(:last-child) {
  border-bottom: solid 1px #007BCE;
}
.lp-market-table-row__pic {
  flex: 0 0 100px;
  margin-right: 12px;
  position: relative;
}
.lp-market-table-row__pic::before {
  content: "";
  display: block;
  padding-top: 85%;
  background: #fafafa;
}
.lp-market-table-row__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.lp-market-table-row__other {
  flex: 1 0 0px;
}
.lp-market-table-row__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.lp-market-table-row__maker {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 750px) {
  .lp-market-table-row__maker {
    font-size: 10px;
  }
}
.lp-market-table-row__maker span {
  display: inline-block;
  background: #007BCE;
  color: #fff;
  padding: 2px 11px;
}
.lp-market-table-row__rank {
  font-size: 12px;
  font-weight: 700;
  color: #007BCE;
}
@media screen and (max-width: 750px) {
  .lp-market-table-row__rank {
    font-size: 10px;
  }
}
.lp-market-table-row__name {
  font-size: 15px;
  color: #000;
  line-height: 1.2307692308;
  margin-bottom: 4px;
}
@media screen and (max-width: 750px) {
  .lp-market-table-row__name {
    font-size: 13px;
  }
}
.lp-market-table-row__price {
  color: #ca2d27;
  font-weight: 700;
  font-size: 13px;
  text-align: right;
}
.lp-market-table-row__num {
  font-size: 22px;
  letter-spacing: 0.02em;
  padding-right: 4px;
}
@media screen and (max-width: 750px) {
  .lp-market-table-row__num {
    font-size: 19px;
  }
}

/**
 * お客様の声
 */
.lp-voice {
  position: relative;
  overflow: hidden;
  padding-bottom: 62px;
}
@media screen and (max-width: 750px) {
  .lp-voice {
    padding-bottom: 65px;
  }
}
.lp-voice__list {
  margin-top: 17px;
}

.lp-voice-item {
  display: flex;
  align-items: flex-end;
  margin-right: -24px;
}
@media screen and (max-width: 750px) {
  .lp-voice-item {
    display: block;
    margin-right: 0;
  }
}
.lp-voice-item__main {
  flex: 0 0 50%;
  max-width: calc(50% - 24px);
  margin-right: 24px;
  background: #fff;
  border: 2px solid #007BCE;
  border-radius: 10px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__main {
    max-width: none;
    margin-right: 0;
    border-width: 1px;
  }
}
.lp-voice-item__head {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
@media screen and (max-width: 959px) {
  .lp-voice-item__head {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 750px) {
  .lp-voice-item__head {
    justify-content: flex-start;
    flex-wrap: initial;
    padding: 12px;
  }
}
.lp-voice-item__customer {
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  margin-right: 15px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__customer {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
  }
}
.lp-voice-item__data {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  flex: 0 0 170px;
}
@media screen and (max-width: 959px) {
  .lp-voice-item__data {
    order: 1;
    margin-top: 10px;
    flex: auto;
  }
}
@media screen and (max-width: 750px) {
  .lp-voice-item__data {
    order: initial;
    margin-top: 0;
  }
}
.lp-voice-item__tags {
  display: flex;
  flex-wrap: wrap;
}
.lp-voice-item__tag {
  background: #F8B03D;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 9px 4px;
  margin: 2px 6px 3px 0;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__tag {
    font-size: 11px;
    line-height: 1.1818181818;
  }
}
.lp-voice-item__tag--shuccho {
  background-color: #F8B03D;
}
.lp-voice-item__tag--takuhai {
  background: #49A0CE;
}
.lp-voice-item__tag--tento {
  background: #EF5C5C;
}
.lp-voice-item__tag--moving {
  background: #30A361;
}
.lp-voice-item__rate {
  font-size: 0;
  padding: 8px 0;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__rate {
    padding: 13px 0 10px;
  }
}
@media screen and (max-width: 750px) {
  .lp-voice-item__rate img {
    width: 15px;
    margin-right: 3px;
  }
}
.lp-voice-item__name {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__name {
    font-size: 12px;
    margin-bottom: 0;
  }
}
.lp-voice-item__voice {
  margin: 2px 4px 0 10px;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__voice {
    margin-left: 1px;
    flex: 0 0 66px;
  }
}
@media screen and (max-width: 750px) {
  .lp-voice-item__voice img {
    width: 66px;
    height: 43px;
  }
}
.lp-voice-item__body {
  padding: 20px;
  background: #CCF0FF;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__body {
    padding: 12px;
  }
}
.lp-voice-item__ttl {
  font-size: 20px;
  font-weight: 700;
  color: #100169;
  margin-bottom: 17px;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__ttl {
    font-size: 17px;
    line-height: 1.2352941176;
    margin-bottom: 12px;
  }
}
.lp-voice-item__desc {
  font-size: 14px;
  line-height: 1.4285714286;
  color: #000;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__desc {
    font-size: 13px;
    line-height: 1.5384615385;
  }
}
.lp-voice-item__desc::after {
  content: "";
  display: block;
  clear: both;
}
.lp-voice-item__pic {
  float: left;
  width: 100px;
  height: 100px;
  background: #fafafa;
  position: relative;
  margin-top: 4px;
  margin-right: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__pic {
    width: 80px;
    height: 80px;
    margin-right: 10px;
    margin-bottom: 0px;
  }
}
.lp-voice-item__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.lp-voice-item__txt {
  font-size: 16px;
  margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__txt {
    font-size: 13px;
    margin-bottom: 1px;
  }
}
.lp-voice-item__txt strong {
  font-weight: 700;
}
.lp-voice-item__txt em {
  font-style: italic;
}
.lp-voice-item__staff {
  flex: 0 0 50%;
  max-width: calc(50% - 24px);
  margin-right: 24px;
  color: #000;
  position: relative;
  min-height: 200px;
  border: 2px solid #FFDE19;
  border-radius: 10px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 750px) {
  .lp-voice-item__staff {
    max-width: none;
    margin-right: 0;
    margin-top: 15px;
    min-height: auto;
    border-width: 1px;
  }
}
.lp-voice-item__staff::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 88px;
  border-right: solid 20px #FFDE19;
  border-top: solid 18px transparent;
  border-bottom: solid 18px transparent;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__staff::after {
    border-top: none;
    border-right: solid 17px transparent;
    border-left: solid 17px transparent;
    border-bottom: solid 24px #FFDE19;
    bottom: 92%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.lp-voice-item__staff-head {
  border-bottom: solid 1px #fff;
  padding: 25px 0 18px;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__staff-head {
    padding: 19px 0 10px;
  }
}
.lp-voice-item__staff-pic {
  width: 119px;
  height: 119px;
  background: #fff;
  border-radius: 50%;
  margin: 12px 20px 0px 20px;
  float: right;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__staff-pic {
    width: 80px;
    height: 80px;
    margin: 12px 12px 0 5px;
  }
}
.lp-voice-item__staff-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.lp-voice-item__staff-name {
  font-size: 18px;
  font-weight: 700;
  padding: 10px 20px;
  background: #FDF197;
  font-feature-settings: "palt";
  width: 85%;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__staff-name {
    font-size: 12px;
    line-height: 1.1666666667;
    padding: 5px 11px 6px;
    width: 90%;
  }
}
.lp-voice-item__staff-name--no-pic {
  padding-left: 0;
}
.lp-voice-item__staff-desc {
  font-size: 16px;
  padding: 0 20px 20px;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__staff-desc {
    font-size: 13px;
    line-height: 1.5384615385;
    padding: 0 12px 13px;
  }
}
.lp-voice-item__staff-desc strong {
  font-weight: 700;
}
.lp-voice-item__staff-desc em {
  font-style: italic;
}
.lp-voice-item:nth-child(even) {
  flex-direction: row-reverse;
}
.lp-voice-item:nth-child(even) .lp-voice-item__staff::after {
  right: auto;
  left: 100%;
  border-left: solid 20px #FFDE19;
  border-right: none;
}
@media screen and (max-width: 750px) {
  .lp-voice-item:nth-child(even) .lp-voice-item__staff::after {
    border-top: none;
    border-right: solid 17px transparent;
    border-left: solid 17px transparent;
    border-bottom: solid 24px #FFDE19;
    bottom: 92%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.lp-voice-item + .lp-voice-item {
  margin-top: 47px;
}
@media screen and (max-width: 750px) {
  .lp-voice-item + .lp-voice-item {
    margin-top: 30px;
  }
}

/**
 * 店舗紹介
 */
.lp-shop {
  padding-bottom: 73px;
  background: #fff;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .lp-shop {
    padding-bottom: 60px;
  }
}
.lp-shop__content-wrapper {
  position: relative;
  z-index: 1;
}
.lp-shop__content {
  position: relative;
  padding-top: 50px;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .lp-shop__content {
    padding-top: 27px;
  }
}
.lp-shop__name {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #100169;
  border: solid 3px #100169;
  margin-bottom: 34px;
  padding: 4px 18px;
}
@media screen and (max-width: 750px) {
  .lp-shop__name {
    font-size: 20px;
    border-width: 2px;
    margin-bottom: 15px;
  }
}
.lp-shop__2col {
  display: flex;
  align-items: center;
  margin-right: -29px;
  margin-bottom: 38px;
}
@media screen and (max-width: 750px) {
  .lp-shop__2col {
    display: block;
    margin-right: 0;
    margin-bottom: 0;
  }
}
.lp-shop__info {
  padding: 0 35px;
}
@media screen and (max-width: 750px) {
  .lp-shop__info {
    padding: 0 20.5px;
  }
}
.lp-shop__map {
  position: relative;
  padding-top: 60.12%;
  background: #fafafa;
  width: 90.6666666667vw;
  max-width: 1180px;
  margin: auto;
}
.lp-shop__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lp-shop-gallery {
  flex: 0 0 50%;
  max-width: calc(50% - 29px);
  margin-right: 29px;
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .lp-shop-gallery {
    max-width: none;
    margin-right: 0;
    margin-bottom: 27px;
  }
}
.lp-shop-gallery__main {
  position: relative;
  background: #fafafa;
  margin-bottom: 9px;
}
@media screen and (max-width: 750px) {
  .lp-shop-gallery__main {
    margin-bottom: 8px;
  }
}
.lp-shop-gallery__main::before {
  content: "";
  display: block;
  padding-top: 73.3333333333%;
}
.lp-shop-gallery__main img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.lp-shop-gallery__thumbs {
  display: flex;
  margin-right: -9px;
}
@media screen and (max-width: 750px) {
  .lp-shop-gallery__thumbs {
    margin-right: -7px;
  }
}
.lp-shop-gallery__thumb {
  flex: 0 0 33.33333%;
  max-width: calc(33.33333% - 9px);
  margin-right: 9px;
  position: relative;
  background: #fafafa;
}
@media screen and (max-width: 750px) {
  .lp-shop-gallery__thumb {
    max-width: calc(33.225% - 7px);
    margin-right: 7px;
  }
}
.lp-shop-gallery__thumb::before {
  content: "";
  display: block;
  padding-top: 78.9474%;
}
.lp-shop-gallery__thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.lp-shop-gallery__thumb.is-active::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: solid 2px #ca2d27;
  box-sizing: border-box;
  pointer-events: none;
}

.lp-shop-details {
  flex: 0 0 50%;
  max-width: calc(50% - 29px);
}
@media screen and (max-width: 750px) {
  .lp-shop-details {
    max-width: none;
    margin-bottom: 39px;
  }
}
.lp-shop-details__row {
  display: flex;
  align-items: center;
  color: #007BCE;
  letter-spacing: 0.03em;
  padding: 10px 0px;
  border-bottom: solid 1px #007BCE;
}
.lp-shop-details__row:first-child {
  border-top: solid 1px #007BCE;
  padding: 9px 0 10px;
}
.lp-shop-details__row:nth-child(2) {
  padding: 9px 0;
}
.lp-shop-details__ttl {
  font-weight: 500;
  flex: 0 0 102px;
  background: #DCF0FF;
  border-radius: 0px 35px 35px 0px;
  border-left: 3px solid #007BCE;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2857142857;
  letter-spacing: 0.03em;
  padding: 8px 22px 9px 18px;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
@media screen and (max-width: 750px) {
  .lp-shop-details__ttl {
    flex: 0 0 93px;
    font-size: 12px;
    line-height: 1.5;
  }
}
.lp-shop-details__data {
  flex: 1 0 0px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2857142857;
  letter-spacing: 0.03em;
  padding-left: 12px;
}
@media screen and (max-width: 750px) {
  .lp-shop-details__data {
    font-size: 13px;
    line-height: 1.3846153846;
    padding-left: 6px;
  }
}
.lp-shop-details__tel {
  display: inline-block;
  background: #E24F3E;
  color: #fff;
  font-weight: 700;
  border-radius: 25px;
  padding: 3px 13px 3px 25px;
  letter-spacing: 0;
  position: relative;
  font-size: 14px;
  transition: opacity 0.1s ease;
}
.lp-shop-details__tel:hover {
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .lp-shop-details__tel {
    font-size: 11px;
    line-height: 1.7272727273;
    padding: 3px 10px 3px 23px;
  }
}
.lp-shop-details__tel::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 13px;
  top: 50%;
  left: 9px;
  transform: translateY(-50%);
  background: url("../img/parts/lp-shop/tel.svg") center/contain no-repeat;
}
.lp-shop-details__tel-num {
  margin-right: 26px;
}
@media screen and (max-width: 750px) {
  .lp-shop-details__tel-num {
    margin-right: 13px;
  }
}

.lp-shop-manager {
  margin-top: 45px;
  padding: 0 23px 0 18px;
}
.lp-shop-manager__ttl {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: #007BCE;
  border-radius: 25px;
  padding: 8px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .lp-shop-manager__ttl {
    font-size: 14px;
    line-height: 1.2142857143;
    padding: 4px;
  }
}
.lp-shop-manager__ttl::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 6px;
  left: 6px;
  background: repeating-linear-gradient(-45deg, #007BCE 0 1px, rgba(255, 255, 255, 0) 1px 5px) center/100% no-repeat;
  border-radius: 9999px;
  z-index: -1;
  opacity: 0.3;
}
@media screen and (max-width: 750px) {
  .lp-shop-manager__ttl::before {
    top: 4px;
    left: 3px;
    background-image: repeating-linear-gradient(-45deg, #007BCE 0 0px, rgba(255, 255, 255, 0) 1px 3px);
  }
}
.lp-shop-manager__content {
  position: relative;
  margin-top: 22px;
  padding-bottom: 15px;
  height: 350px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .lp-shop-manager__content {
    height: 300px;
  }
}
.lp-shop-manager__content::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  height: 65px;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.lp-shop-manager__check {
  display: none;
}
.lp-shop-manager__check:checked ~ .lp-shop-manager__label::before {
  content: "閉じる";
}
.lp-shop-manager__check:checked ~ .lp-shop-manager__content {
  height: auto;
}
.lp-shop-manager__check:checked ~ .lp-shop-manager__content::before {
  display: none;
}
.lp-shop-manager__img {
  float: left;
  margin: 3px 26px 0 0;
  width: 240px;
}
@media screen and (max-width: 750px) {
  .lp-shop-manager__img {
    width: 120px;
  }
}
.lp-shop-manager__name {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .lp-shop-manager__name {
    font-size: 11px;
    line-height: 1.5;
  }
}
.lp-shop-manager__txt {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .lp-shop-manager__txt {
    font-size: 11px;
    line-height: 1.5;
  }
}
.lp-shop-manager__label {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  padding: 8px 0 9px;
  width: 125px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
  color: #FFF;
  background: #2EC35A;
  border-radius: 37px;
  box-shadow: 1.6px 1.6px 2.5px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
.lp-shop-manager__label::before {
  content: "もっと見る";
}
@media screen and (max-width: 750px) {
  .lp-shop-manager__label {
    font-size: 12px;
  }
}

/**
 * 宅配買取の流れ
 */
.lp-flow {
  overflow: hidden;
  margin-top: 43px;
  position: relative;
  background: #EEF8FF;
}
.lp-flow .c-ttl1::before, .lp-flow .c-ttl1::after {
  border-bottom-color: #EEF8FF;
}
.lp-flow__pic img {
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .lp-flow__pic img {
    width: 760px;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 56% 50%;
       object-position: 56% 50%;
  }
}
.lp-flow__btns {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .lp-flow__btns {
    margin: 0 -6px;
  }
}

.lp-flow-sec {
  margin-bottom: 62px;
}
@media screen and (max-width: 750px) {
  .lp-flow-sec {
    margin-bottom: 40px;
  }
}
.lp-flow-sec__ttl {
  text-align: center;
}
.lp-flow-sec__ttl span {
  display: inline-block;
  background: #ca2d27;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 7px 18px;
}
@media screen and (max-width: 750px) {
  .lp-flow-sec__ttl span {
    padding: 6px 15px;
    font-size: 15px;
  }
}
.lp-flow-sec__body {
  margin-top: 27px;
}

.lp-flow-area {
  background: #FEF6C0;
  padding: 30px 35px 10px;
  margin-bottom: 80px;
  border: 2px solid #000;
  border-radius: 10px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.15);
  text-align: center;
}
@media screen and (max-width: 750px) {
  .lp-flow-area {
    padding: 14px 20px 5px;
    margin-bottom: 65px;
    border-width: 1px;
  }
}
.lp-flow-area__ttl {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5625;
  letter-spacing: 0.02em;
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  .lp-flow-area__ttl {
    font-size: 12px;
    line-height: 1.75;
    margin-bottom: 8px;
  }
}
.lp-flow-area__ttl::before, .lp-flow-area__ttl::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 2px;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  background: #000;
}
@media screen and (max-width: 750px) {
  .lp-flow-area__ttl::before, .lp-flow-area__ttl::after {
    height: 1px;
  }
}
.lp-flow-area__ttl::before {
  left: 0;
}
.lp-flow-area__ttl::after {
  right: 0;
}
.lp-flow-area__ttl span {
  position: relative;
  background: #FEF6C0;
  padding: 0 7px;
  z-index: 1;
}
.lp-flow-area__prefecture {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.4285714286;
  letter-spacing: 0.02em;
  color: #007BCE;
  margin-bottom: 1px;
}
@media screen and (max-width: 750px) {
  .lp-flow-area__prefecture {
    font-size: 23px;
    line-height: 1.4347826087;
  }
}
.lp-flow-area__city {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .lp-flow-area__city {
    font-size: 17px;
    line-height: 1.4705882353;
    margin-bottom: 16px;
  }
}

.lp-flow-step {
  position: relative;
  background: #fff;
  padding: 40px 35px 10px;
  margin-bottom: 60px;
  border: 2px solid #000;
  border-radius: 10px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 750px) {
  .lp-flow-step {
    padding: 33px 15px 1px;
    margin-bottom: 50px;
    border-width: 1px;
  }
}
@media screen and (max-width: 750px) {
  .lp-flow-step:nth-of-type(2) .lp-flow-step__head {
    margin-bottom: 13px;
  }
}
.lp-flow-step:nth-of-type(3) .lp-flow-step__ttl::after {
  position: absolute;
  content: "";
  top: 24px;
  left: 5px;
  transform: translate(-100%, -100%);
  width: 83px;
  height: 94px;
  background: url("../img/parts/lp-flow/balloon.png") center/contain no-repeat;
}
.lp-flow-step:last-of-type {
  margin-bottom: 0;
}
.lp-flow-step__head {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .lp-flow-step__head {
    margin-bottom: 14px;
  }
}
.lp-flow-step__order {
  position: absolute;
  width: 80px;
  height: 80px;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  background: url("../img/parts/lp-flow/step.png") center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .lp-flow-step__order {
    width: 62px;
    height: 62px;
    top: -31px;
  }
}
.lp-flow-step__order-txt {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  color: #000;
  letter-spacing: 0;
  margin-top: 4px;
}
@media screen and (max-width: 750px) {
  .lp-flow-step__order-txt {
    font-size: 13px;
  }
}
.lp-flow-step__order-num {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  color: #000;
  letter-spacing: 0.03em;
  vertical-align: -2px;
}
@media screen and (max-width: 750px) {
  .lp-flow-step__order-num {
    font-size: 25px;
  }
}
.lp-flow-step__ttl {
  position: relative;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #007BCE;
  padding: 0 5px;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .lp-flow-step__ttl {
    font-size: 23px;
  }
}
.lp-flow-step__ttl::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: #FFDE19;
  z-index: -1;
}
.lp-flow-step__body {
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .lp-flow-step__body {
    margin-bottom: 13px;
  }
}
.lp-flow-step__body--1 {
  padding-top: 14px;
}
@media screen and (max-width: 750px) {
  .lp-flow-step__body--1 {
    padding-top: 0;
  }
}
.lp-flow-step__note {
  text-align: center;
  font-size: 16px;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
@media screen and (max-width: 750px) {
  .lp-flow-step__note {
    font-size: 12px;
    margin-bottom: 9px;
    padding-left: 4px;
  }
}
.lp-flow-step__note-letter {
  position: relative;
}
.lp-flow-step__note-letter::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background: #000;
  border-radius: 50%;
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
  .lp-flow-step__note-letter::before {
    width: 2px;
    height: 2px;
  }
}

.lp-flow-tel {
  max-width: 458px;
  margin: 0 auto 25px;
}
@media screen and (max-width: 750px) {
  .lp-flow-tel {
    max-width: 309px;
    width: 100%;
    margin-bottom: 12px;
  }
}
.lp-flow-tel__link {
  background: #FF6F19;
  color: #fff;
  padding: 16px 0 16px 40px;
  border-radius: 100px;
  display: block;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  transition: opacity 0.1s ease;
}
.lp-flow-tel__link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .lp-flow-tel__link {
    padding: 9px 0 7px 23px;
    background: #FF6F19;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  }
}
.lp-flow-tel__num {
  position: relative;
  font-size: 45px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  padding-left: 60px;
}
@media screen and (max-width: 750px) {
  .lp-flow-tel__num {
    font-size: 31px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    padding-left: 43px;
  }
}
.lp-flow-tel__num::before {
  content: "";
  position: absolute;
  top: calc(50% + 2px);
  left: 0;
  transform: translateY(-50%);
  width: 50px;
  height: 33px;
  background: url("../img/parts/lp-flow/tel.svg") center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .lp-flow-tel__num::before {
    width: 34px;
    height: 23px;
  }
}
.lp-flow-tel__open {
  padding-top: 4px;
  font-size: 17px;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 750px) {
  .lp-flow-tel__open {
    padding-top: 2px;
    font-size: 11px;
    line-height: 1.7272727273;
  }
}

.lp-flow-btn {
  flex: 0 1 218px;
  margin: 0 8px;
}
@media screen and (max-width: 750px) {
  .lp-flow-btn {
    flex: 0 1 145px;
  }
}
.lp-flow-btn__link {
  display: block;
  text-align: center;
  border-radius: 5px;
  padding: 10px 0;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15);
  transition: opacity 0.1s ease;
}
.lp-flow-btn__link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .lp-flow-btn__link {
    padding: 6px 0;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  }
}
.lp-flow-btn__txt1 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 7px;
  line-height: 1.2222222222;
}
@media screen and (max-width: 750px) {
  .lp-flow-btn__txt1 {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
.lp-flow-btn__txt2 {
  font-size: 15px;
}
@media screen and (max-width: 750px) {
  .lp-flow-btn__txt2 {
    font-size: 10px;
  }
}
.lp-flow-btn__txt2 span {
  display: inline-block;
  background: #fff;
  font-weight: 700;
  border-radius: 100px;
  padding: 2px 8px;
}
.lp-flow-btn--line .lp-flow-btn__link {
  background: #02be04;
  color: #fff;
}
.lp-flow-btn--line .lp-flow-btn__txt2 {
  color: #02be04;
}
.lp-flow-btn--mail .lp-flow-btn__link {
  background: #ff6a6c;
  color: #fff;
}
.lp-flow-btn--mail .lp-flow-btn__txt2 {
  color: #ff6a6c;
}

.lp-flow-pictxt {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .lp-flow-pictxt {
    align-items: flex-start;
  }
}
.lp-flow-pictxt__pic {
  flex: 0 0 300px;
  position: relative;
  background: #fafafa;
  margin-right: 24px;
}
@media screen and (max-width: 750px) {
  .lp-flow-pictxt__pic {
    flex: 0 0 140px;
    margin-right: 10px;
  }
}
.lp-flow-pictxt__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.lp-flow-pictxt__pic::before {
  content: "";
  display: block;
  padding-top: 73.6666%;
}
@media screen and (max-width: 750px) {
  .lp-flow-pictxt__pic::before {
    padding-top: 78.5715%;
  }
}
.lp-flow-pictxt__txt {
  flex: 1 0 0px;
  line-height: 1.75;
  color: #000;
}
@media screen and (max-width: 750px) {
  .lp-flow-pictxt__txt {
    font-size: 13px;
    line-height: 1.3846153846;
    margin-top: -2px;
  }
}
.lp-flow-pictxt__em {
  font-weight: 700;
}

/**
 * よく頂く質問
 */
.lp-faq {
  background: #FAF5EB;
  padding-bottom: 62px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .lp-faq {
    padding-bottom: 28px;
  }
}
.lp-faq .c-ttl1::before, .lp-faq .c-ttl1::after {
  border-bottom-color: #FAF5EB;
}
.lp-faq__inner {
  max-width: 740px;
  padding: 30px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .lp-faq__inner {
    padding: 20px 17px;
  }
}
.lp-faq__list {
  position: relative;
  z-index: 1;
}

.lp-faq-item {
  padding: 38px;
  margin-bottom: 20px;
  background: #fff;
}
@media screen and (max-width: 750px) {
  .lp-faq-item {
    padding: 18px;
    margin-bottom: 10px;
  }
}
.lp-faq-item__question {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #007BCE;
  margin-bottom: 32px;
}
@media screen and (max-width: 750px) {
  .lp-faq-item__question {
    margin-bottom: 12px;
    font-size: 15px;
  }
}
.lp-faq-item__question::before {
  content: "";
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  background: url("../img/parts/lp-faq/question.svg") center/contain no-repeat;
  margin-right: 15px;
  align-self: flex-start;
}
@media screen and (max-width: 750px) {
  .lp-faq-item__question::before {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }
}
.lp-faq-item__answer {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #000000;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .lp-faq-item__answer {
    font-size: 13px;
    line-height: 1.3846153846;
  }
}
.lp-faq-item__answer::before {
  content: "";
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  background: url("../img/parts/lp-faq/answer.svg") center/contain no-repeat;
  margin-right: 15px;
  margin-top: 3px;
  align-self: flex-start;
}
@media screen and (max-width: 750px) {
  .lp-faq-item__answer::before {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }
}
.lp-faq-item__answer strong {
  font-weight: 700;
}
.lp-faq-item__answer em {
  font-style: italic;
}

/**
 * お問合せ
 */
.lp-contact {
  padding-top: 44px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .lp-contact {
    padding-top: 0;
  }
}
.lp-contact__inner {
  max-width: 690px;
  padding: 50px 30px 0;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .lp-contact__inner {
    padding: 17px 17px 28px;
  }
}

.lp-contact-sec {
  margin-bottom: 38px;
}
@media screen and (max-width: 750px) {
  .lp-contact-sec {
    margin-bottom: 35px;
  }
}
.lp-contact-sec__ttl {
  width: 100%;
  max-width: 570px;
  height: 30px;
  display: block;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 70px;
  position: relative;
  z-index: 0;
  font-feature-settings: "palt";
}
.lp-contact-sec__ttl span {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
}
.lp-contact-sec__ttl::before {
  content: "";
  width: 100%;
  height: 30px;
  display: block;
  background-size: 100%;
  background-repeat: no-repeat;
  border-radius: 9999px;
  position: absolute;
  bottom: -8px;
  right: -8px;
  z-index: -1;
  opacity: 0.3;
}
.lp-contact-sec__ttl--tel {
  margin-bottom: 19px;
}
.lp-contact-sec__ttl--tel span {
  background-color: #ff6f19;
}
.lp-contact-sec__ttl--tel::before {
  background-image: repeating-linear-gradient(-45deg, #ff6f19 0 1px, rgba(255, 255, 255, 0) 1px 7px);
}
.lp-contact-sec__ttl--line {
  margin-bottom: 9px;
}
.lp-contact-sec__ttl--line span {
  background-color: #02be04;
}
.lp-contact-sec__ttl--line::before {
  background-image: repeating-linear-gradient(-45deg, #02be04 0 1px, rgba(255, 255, 255, 0) 1px 7px);
}
.lp-contact-sec__ttl--mail span {
  background-color: #007bce;
}
.lp-contact-sec__ttl--mail::before {
  background-image: repeating-linear-gradient(-45deg, #007bce 0 1px, rgba(255, 255, 255, 0) 1px 7px);
}
@media screen and (max-width: 750px) {
  .lp-contact-sec__ttl {
    max-width: 285px;
    height: 25px;
    font-size: 14px;
  }
  .lp-contact-sec__ttl--tel {
    position: relative;
    z-index: -1;
  }
  .lp-contact-sec__ttl--tel::before {
    height: 25px;
    bottom: -4px;
    right: -4px;
    background-image: repeating-linear-gradient(-45deg, #ff6f19 0 1px, rgba(255, 255, 255, 0) 1px 4px);
  }
  .lp-contact-sec__ttl--line {
    margin-bottom: 0;
  }
  .lp-contact-sec__ttl--line::before {
    height: 25px;
    bottom: -4px;
    right: -4px;
    background-image: repeating-linear-gradient(-45deg, #02be04 0 1px, rgba(255, 255, 255, 0) 1px 4px);
  }
  .lp-contact-sec__ttl--mail {
    margin-bottom: 29px;
  }
  .lp-contact-sec__ttl--mail::before {
    height: 25px;
    bottom: -4px;
    right: -4px;
    background-image: repeating-linear-gradient(-45deg, #007bce 0 1px, rgba(255, 255, 255, 0) 1px 4px);
  }
  .lp-contact-sec__ttl::before {
    height: 25px;
    bottom: -4px;
    right: -4px;
  }
}
.lp-contact-sec__form {
  padding: 30px 20px;
  background-color: #dcf0ff;
  border: 2px solid #007bce;
  border-radius: 10px;
  font-size: 0;
  box-shadow: 4.8px 4.8px 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 750px) {
  .lp-contact-sec__form {
    padding: 18px 9.5px 56px;
    border-width: 1px;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
  }
}

.lp-contact-tel {
  background: #ffffb7;
  width: 100%;
  margin: 0 auto;
  padding: 18px 9px;
  border: 2px solid #ff6f19;
  border-radius: 10px;
  box-shadow: 4.8px 4.8px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 960px) {
  .lp-contact-tel {
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 750px) {
  .lp-contact-tel {
    max-width: 340px;
    border-width: 1px;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
  }
}
.lp-contact-tel::before {
  content: "";
  position: absolute;
  width: 252px;
  height: 241px;
  background: url("../img/parts/lp-contact/tel-picture-pc.png") center/contain no-repeat;
  right: -36px;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .lp-contact-tel::before {
    width: 145px;
    height: 235px;
    background: url("../img/parts/lp-contact/tel-picture.png") center/contain no-repeat;
    right: -1px;
  }
}
@media (min-width: 751px) {
  .lp-contact-tel__box {
    max-width: 410px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 750px) {
  .lp-contact-tel__box {
    padding-right: 78px;
  }
}
.lp-contact-tel__note {
  color: #000;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
  font-size: 14.4px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .lp-contact-tel__note {
    margin-bottom: 7px;
    margin-left: 5px;
    font-size: 12px;
    line-height: 1.4166666667;
    text-align: left;
  }
}
.lp-contact-tel__note-letter {
  position: relative;
}
.lp-contact-tel__note-letter::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: #000;
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
}
.lp-contact-tel__quote {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6f19;
  font-size: 20.4px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 7px;
}
@media screen and (max-width: 750px) {
  .lp-contact-tel__quote {
    font-size: 17px;
    line-height: 1.7647058824;
    margin-right: 17px;
    margin-bottom: 9px;
  }
}
.lp-contact-tel__quote::before {
  content: "";
  flex: 0 0 14px;
  height: 21px;
  background: url("../img/parts/lp-contact/quote-left.svg") center/contain no-repeat;
  margin-right: 10px;
}
@media screen and (max-width: 750px) {
  .lp-contact-tel__quote::before {
    flex: 0 0 10px;
    height: 15px;
    margin-right: 2px;
  }
}
.lp-contact-tel__quote::after {
  content: "";
  flex: 0 0 14px;
  height: 21px;
  background: url("../img/parts/lp-contact/quote-right.svg") center/contain no-repeat;
  margin-left: 7px;
}
@media screen and (max-width: 750px) {
  .lp-contact-tel__quote::after {
    flex: 0 0 10px;
    height: 15px;
    margin-left: 2px;
  }
}
.lp-contact-tel__btn {
  max-width: 100%;
  position: relative;
}
@media screen and (max-width: 750px) {
  .lp-contact-tel__btn {
    max-width: 225px;
    margin-left: 0;
  }
}
.lp-contact-tel__link {
  display: block;
  background: #ff6f19;
  color: #fff;
  border-radius: 100px;
  text-align: center;
  padding: 10px 0 12px;
  transition: opacity 0.1s ease;
  box-shadow: 2.65px 2.65px 2.65px rgba(0, 0, 0, 0.3);
}
.lp-contact-tel__link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .lp-contact-tel__link {
    padding: 12px 0 9px;
    box-shadow: 2.2px 2.2px 2.2px rgba(0, 0, 0, 0.3);
  }
}
.lp-contact-tel__num {
  font-size: 40px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 5px;
}
.lp-contact-tel__num::before {
  content: "";
  display: inline-block;
  width: 47px;
  height: 31px;
  margin-right: 8px;
  background: url(../img/parts/lp-contact/tel-icon-pc.png) center/cover no-repeat;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .lp-contact-tel__num {
    font-size: 23px;
  }
  .lp-contact-tel__num::before {
    margin-right: 5px;
    background: url(../img/parts/lp-contact/tel-icon.png) center/cover no-repeat;
    width: 27px;
    height: 18px;
  }
}
.lp-contact-tel__open {
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.2;
  font-feature-settings: "palt";
}
@media screen and (max-width: 750px) {
  .lp-contact-tel__open {
    font-size: 11px;
    line-height: 1.1818181818;
  }
}

.lp-contact-line {
  padding: 19px 20px 16px;
  background-color: #e2f6c8;
  border: 2px solid #02be04;
  border-radius: 10px;
  box-shadow: 4.8px 4.8px 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 750px) {
  .lp-contact-line {
    max-width: 340px;
    margin: 0 auto;
    padding: 18px 14px 14px;
    border-width: 1px;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
  }
}
.lp-contact-line__box {
  padding-top: 10px;
  display: flex;
}
@media screen and (max-width: 750px) {
  .lp-contact-line__box {
    display: block;
  }
}
.lp-contact-line__left {
  width: 50%;
  max-width: calc(100% - 286px);
  padding-right: 14px;
  position: relative;
}
.lp-contact-line__left::before {
  content: "";
  display: inline;
  width: 150px;
  height: 276px;
  background: url(../img/parts/lp-contact/line-ballon-pc.png) center/cover no-repeat;
  position: absolute;
  top: -39%;
  left: -20%;
}
.lp-contact-line__right {
  width: 50%;
  max-width: 286px;
  background: #fff;
  border-radius: 6px;
  padding: 8px 10px 2px;
}
.lp-contact-line__title {
  width: 182px;
  position: relative;
  margin: 0 0 10px auto;
}
.lp-contact-line__title img {
  max-width: 185px;
}
@media screen and (max-width: 750px) {
  .lp-contact-line__title {
    width: 100%;
    margin: 0 auto 0 0;
    padding-left: 18px;
  }
  .lp-contact-line__title::after {
    content: "";
    display: inline-block;
    width: 81px;
    height: 128px;
    background: url(../img/parts/lp-contact/line-ballon.png) center/cover no-repeat;
    position: absolute;
    top: -69px;
    right: -7px;
  }
  .lp-contact-line__title img {
    margin: 0 auto 10px;
    max-width: 215px;
  }
}
.lp-contact-line__list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.lp-contact-line__list::before {
  content: "";
  display: block;
  width: 100%;
  height: 36px;
  background: url(../img/parts/lp-contact/line-or.png) center/contain no-repeat;
  position: absolute;
  top: -23%;
  left: 0;
}
@media screen and (max-width: 750px) {
  .lp-contact-line__list::before {
    width: 100%;
    height: 25px;
    top: -28%;
  }
}
.lp-contact-line__item {
  width: calc(50% - 5.5px);
  height: 140px;
  background: #fff;
  padding: 10px 9px 7px;
  border-radius: 4px;
}
@media screen and (max-width: 750px) {
  .lp-contact-line__item {
    height: 70px;
  }
}
.lp-contact-line__qr img {
  height: 100%;
}
@media screen and (max-width: 750px) {
  .lp-contact-line__qr {
    padding: 7px 10px 7px 5px;
  }
}
.lp-contact-line__btn {
  max-width: 182px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #02be04;
  margin: 0 0 0 auto;
  padding: 5px 8px 2px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2222222222;
  color: #fff;
  border-radius: 9999px;
  position: relative;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  transition: opacity 0.1s ease;
}
.lp-contact-line__btn:hover {
  opacity: 0.8;
}
.lp-contact-line__btn::before {
  content: "";
  display: inline-block;
  width: 31px;
  height: 30px;
  margin-right: 6px;
  background: url(../img/parts/lp-contact/line-icon-pc.png) center/cover no-repeat;
}
.lp-contact-line__btn::after {
  content: "";
  display: inline-block;
  width: 21px;
  height: 30px;
  background: url(../img/parts/lp-contact/line-click-icon-pc.png) center/cover no-repeat;
  position: absolute;
  bottom: -5px;
  right: 1px;
}
@media screen and (max-width: 750px) {
  .lp-contact-line__btn {
    max-width: 310px;
    margin: 0 auto 26px;
    padding: 5px 20px 6px;
    font-size: 18px;
  }
  .lp-contact-line__btn::before {
    width: 58px;
    height: 55px;
    margin: 2px 22px 0 0;
    background: url(../img/parts/lp-contact/line-icon.png) center/cover no-repeat;
  }
  .lp-contact-line__btn::after {
    width: 42px;
    height: 60px;
    background: url(../img/parts/lp-contact/line-click-icon.png) center/cover no-repeat;
    bottom: -12px;
    right: 12px;
  }
}
.lp-contact-line__id {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #02be04;
  text-align: center;
}
.lp-contact-line__id dt {
  border: 1px solid #02be04;
  padding-bottom: 1px;
  margin-bottom: 2px;
}
.lp-contact-line__id dd {
  font-weight: 500;
  letter-spacing: 0;
  font-feature-settings: "palt";
}
.lp-contact-line__id dd .text-id {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ff6f19;
}
@media (min-width: 751px) {
  .lp-contact-line__id {
    padding: 0 4px;
    transform: translateY(-6px);
  }
  .lp-contact-line__id dl {
    display: flex;
  }
  .lp-contact-line__id dt, .lp-contact-line__id dd {
    font-size: 14px;
  }
  .lp-contact-line__id dt {
    width: 70px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
  }
  .lp-contact-line__id dd {
    width: calc(100% - 70px);
    display: flex;
    align-items: center;
  }
  .lp-contact-line__id dd .text-id {
    padding: 0 13px 0 7px;
    font-size: 20px;
    letter-spacing: 0.04em;
  }
  .lp-contact-line__id dd .text {
    display: block;
    line-height: 1;
    text-align: left;
  }
}
@media screen and (max-width: 750px) {
  .lp-contact-line__id {
    font-size: 12px;
    line-height: 1.1666666667;
  }
  .lp-contact-line__id dd .text-id {
    font-size: 15px;
    line-height: 1.3333333333;
  }
}

.lp-contact-form {
  font-size: 16px;
}
.lp-contact-form__field {
  margin-bottom: 14px;
}
.lp-contact-form__field--name {
  margin: 15px 0 16px;
}
.lp-contact-form__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #007bce;
  margin: 0 0 3px 1px;
}
@media screen and (max-width: 750px) {
  .lp-contact-form__label {
    font-size: 13px;
    line-height: 1.7692307692;
  }
}
.lp-contact-form__tag {
  font-size: 10px;
  color: #e24f3e;
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 7px;
}
.lp-contact-form__tag::before {
  content: "＊";
}
.lp-contact-form select {
  background: url("../img/parts/lp-contact/select-arrow.svg") center right 12px/9px no-repeat #fff;
  width: 100%;
  border-radius: 5px;
  padding: 0 21px 0 11px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  height: 40px;
}
.lp-contact-form select.is-placeholder {
  color: #969696;
}
@media screen and (max-width: 750px) {
  .lp-contact-form select {
    font-size: 12px;
    height: 31px;
  }
}
.lp-contact-form input[type=text],
.lp-contact-form input[type=email] {
  background: #fff;
  color: #000;
  border-radius: 5px;
  padding: 0 11px;
  width: 100%;
  height: 40px;
  font-size: 16px;
}
.lp-contact-form input[type=text]::-moz-placeholder, .lp-contact-form input[type=email]::-moz-placeholder {
  color: #969696;
}
.lp-contact-form input[type=text]::placeholder,
.lp-contact-form input[type=email]::placeholder {
  color: #969696;
}
@media screen and (max-width: 750px) {
  .lp-contact-form input[type=text],
.lp-contact-form input[type=email] {
    font-size: 12px;
  }
}
.lp-contact-form .multifile_group {
  padding-top: 14px;
}
.lp-contact-form .multifile_group .multifile_item + .multifile_item {
  margin-top: 17px;
}
.lp-contact-form .multifile_group .multifile_label {
  font-size: 16px;
  color: #007bce;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 17px 0 2px;
}
@media screen and (max-width: 750px) {
  .lp-contact-form .multifile_group .multifile_label {
    font-size: 13px;
  }
}
.lp-contact-form .multifile_group input[type=file] {
  display: none;
}
.lp-contact-form .multifile_group button {
  background: #e6e6e6;
  color: #000;
  border-radius: 5px;
  height: 28px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0 14px;
  height: 40px;
}
@media screen and (max-width: 750px) {
  .lp-contact-form .multifile_group button {
    font-size: 12px;
    height: 28px;
    padding: 0 8px;
  }
}
.lp-contact-form .multifile_group .multifile_add {
  width: 100%;
  margin-top: 15px;
}
.lp-contact-form textarea {
  background: #fff;
  color: #000;
  border-radius: 5px;
  margin-bottom: 6px;
  padding: 10px 11px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.05em;
  width: 100%;
}
.lp-contact-form textarea::-moz-placeholder {
  color: #969696;
}
.lp-contact-form textarea::placeholder {
  color: #969696;
}
@media screen and (max-width: 750px) {
  .lp-contact-form textarea {
    padding: 7px 11px;
    font-size: 12px;
    line-height: 1.3333333333;
    height: 160px;
  }
}
.lp-contact-form__zipcode-row {
  display: flex;
}
.lp-contact-form__zipcode-row input[type=text] {
  flex: 0 0 170px;
  width: 170px;
  margin-right: 6px;
}
@media screen and (max-width: 750px) {
  .lp-contact-form__zipcode-row input[type=text] {
    flex: 0 0 203px;
    width: 203px;
  }
}
.lp-contact-form__zipcode-row button {
  background: #007bce;
  color: #fff;
  border-radius: 5px;
  transition: opacity 0.1s ease;
  flex: 0 0 130px;
}
.lp-contact-form__zipcode-row button:hover {
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .lp-contact-form__zipcode-row button {
    font-size: 13px;
    letter-spacing: 0.05em;
    flex: 0 0 110px;
  }
}
.lp-contact-form__note {
  font-size: 11px;
  letter-spacing: 0.05em;
  margin: 6px 0 15px;
  color: #000;
}
.lp-contact-form__privacypolicy {
  background: #fff;
  font-size: 14px;
  line-height: 1.3333333333;
  color: #231815;
  border-radius: 5px;
  height: 108px;
  overflow: auto;
  padding: 14px;
}
@media screen and (max-width: 750px) {
  .lp-contact-form__privacypolicy {
    font-size: 12px;
    padding: 8px 9px;
  }
}
.lp-contact-form__privacypolicy img {
  margin-top: 16px;
  width: 253px;
  height: 80px;
}
@media screen and (max-width: 750px) {
  .lp-contact-form__privacypolicy img {
    width: 225px;
    height: 71px;
  }
}
.lp-contact-form__submit {
  text-align: center;
}
.lp-contact-form__submit button {
  border-radius: 100px;
  background: #e24f3e;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 19px 0;
  max-width: 342px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  width: 100%;
  transition: opacity 0.1s ease;
}
.lp-contact-form__submit button:hover {
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .lp-contact-form__submit button {
    font-size: 14px;
    padding: 13px 0 12px;
    max-width: 250px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
  }
}
.lp-contact-form__submit-note {
  font-size: 12px;
  color: #007bce;
  line-height: 1.6;
  margin-top: 11px;
}
@media screen and (max-width: 750px) {
  .lp-contact-form__submit-note {
    font-size: 10px;
  }
}
.lp-contact-form__recaptcha {
  margin-bottom: 16px;
}
.lp-contact-form__recaptcha .g-recaptcha > div {
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .lp-contact-form__recaptcha {
    margin-bottom: 33px;
  }
}

/**
 * 多くの方にご満足いただいています
 */
.lp-thankyou {
  color: #fff;
  padding-top: 50px;
  padding-bottom: 40px;
  background: url("../img/parts/lp-thankyou/background.png") center/contain repeat-y;
}
@media screen and (max-width: 750px) {
  .lp-thankyou {
    padding-top: 38px;
    padding-bottom: 30px;
    background: url("../img/parts/lp-thankyou/background-sp.png") center/cover no-repeat;
  }
}
.lp-thankyou__ttl {
  position: relative;
  text-align: center;
  font-size: 34px;
  line-height: 1.3529411765;
  letter-spacing: 0.03em;
  font-weight: 700;
  padding-top: 49px;
  margin-bottom: 32px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou__ttl {
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: 0;
    padding-top: 29px;
    margin-bottom: 21px;
  }
}
.lp-thankyou__ttl::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url("../img/parts/lp-thankyou/ttl.svg") center/contain no-repeat;
  width: 120px;
  height: 36px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou__ttl::after {
    width: 64px;
    height: 19px;
  }
}
.lp-thankyou__points {
  display: flex;
  flex-flow: column;
  text-align: center;
  margin-bottom: 19px;
}
.lp-thankyou__btns {
  display: flex;
}

.lp-thankyou-point {
  display: inline-block;
  background: url("../img/parts/lp-thankyou/laurel.svg") center/510px no-repeat;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-point {
    background: url("../img/parts/lp-thankyou/laurel.svg") top 2px center/255px no-repeat;
  }
}
.lp-thankyou-point__txt1 {
  position: relative;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  -webkit-text-stroke: 3px #100169;
  font-feature-settings: "palt";
}
@media screen and (max-width: 750px) {
  .lp-thankyou-point__txt1 {
    font-size: 11px;
  }
}
.lp-thankyou-point__txt1::before {
  position: absolute;
  -webkit-text-stroke: 0;
}
.lp-thankyou-point__txt2 {
  position: relative;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2142857143;
  color: #FFDE19;
  -webkit-text-stroke: 3px #100169;
  font-feature-settings: "palt";
  padding-bottom: 19px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-point__txt2 {
    font-size: 18px;
    line-height: 1.1666666667;
    padding-bottom: 17px;
  }
}
.lp-thankyou-point__txt2::before {
  position: absolute;
  -webkit-text-stroke: 0;
}
.lp-thankyou-point__txt3 {
  font-size: 14px;
  font-feature-settings: "palt";
}
@media screen and (max-width: 750px) {
  .lp-thankyou-point__txt3 {
    font-size: 10px;
    transform: scale(0.8);
  }
}
.lp-thankyou-point:first-of-type .lp-thankyou-point__txt1::before {
  content: "全国650店舗以上運営の信頼のブランド!!";
}
.lp-thankyou-point:first-of-type .lp-thankyou-point__txt2 {
  margin-top: -1px;
}
.lp-thankyou-point:first-of-type .lp-thankyou-point__txt2::before {
  white-space: pre;
  content: "買取大吉だからこそできる\a高額査定!!";
}
.lp-thankyou-point:nth-of-type(2) .lp-thankyou-point__txt1 {
  font-size: 34px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-point:nth-of-type(2) .lp-thankyou-point__txt1 {
    font-size: 17px;
  }
}
.lp-thankyou-point:nth-of-type(2) .lp-thankyou-point__txt1::before {
  content: "査定料・出張費用";
}
.lp-thankyou-point:nth-of-type(2) .lp-thankyou-point__txt2 {
  font-size: 50px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-point:nth-of-type(2) .lp-thankyou-point__txt2 {
    font-size: 25px;
    padding: 1px 0 21px;
  }
}
.lp-thankyou-point:nth-of-type(2) .lp-thankyou-point__txt2::before {
  content: "すべて無料!!";
}
.lp-thankyou-point:nth-of-type(3) .lp-thankyou-point__txt1 {
  font-size: 27px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-point:nth-of-type(3) .lp-thankyou-point__txt1 {
    font-size: 13.5px;
  }
}
.lp-thankyou-point:nth-of-type(3) .lp-thankyou-point__txt1::before {
  content: "壊れていてもキズ・汚れがあっても";
}
.lp-thankyou-point:nth-of-type(3) .lp-thankyou-point__txt2 {
  font-size: 50px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-point:nth-of-type(3) .lp-thankyou-point__txt2 {
    font-size: 25px;
    padding-bottom: 2px;
  }
}
.lp-thankyou-point:nth-of-type(3) .lp-thankyou-point__txt2::before {
  content: "買い取れます!!";
}

.lp-thankyou-contact {
  background: #fff;
  position: relative;
  max-width: 644px;
  margin: 0 auto;
  border-radius: 19px;
  padding: 28px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-contact {
    max-width: 341px;
    border-radius: 10px;
    padding: 18px 15px 22px;
  }
}
.lp-thankyou-contact__note {
  color: #000;
  text-align: center;
  letter-spacing: 0.02em;
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 26px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-contact__note {
    font-size: 12px;
    margin-bottom: 9px;
  }
}
.lp-thankyou-contact__note-letter {
  position: relative;
}
.lp-thankyou-contact__note-letter::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #000;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-contact__note-letter::before {
    width: 2px;
    height: 2px;
  }
}
.lp-thankyou-contact__quote {
  color: #FF6F19;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-contact__quote {
    margin-bottom: 9px;
  }
}
.lp-thankyou-contact__quote::before {
  content: "";
  mask: url("../img/parts/lp-thankyou/quote-left.svg") center/contain no-repeat;
  -webkit-mask: url("../img/parts/lp-thankyou/quote-left.svg") center/contain no-repeat;
  background: #FF6F19;
  flex: 0 0 19px;
  height: 30px;
  margin-right: 13px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-contact__quote::before {
    flex: 0 0 10px;
    height: 16px;
    margin-right: 3px;
  }
}
.lp-thankyou-contact__quote::after {
  content: "";
  mask: url("../img/parts/lp-thankyou/quote-right.svg") center/contain no-repeat;
  -webkit-mask: url("../img/parts/lp-thankyou/quote-right.svg") center/contain no-repeat;
  background: #FF6F19;
  flex: 0 0 19px;
  height: 30px;
  margin-left: 9px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-contact__quote::after {
    flex: 0 0 10px;
    height: 16px;
    margin-left: 2px;
  }
}
.lp-thankyou-contact__quote span {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 32px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-contact__quote span {
    font-size: 17px;
  }
}
.lp-thankyou-contact::after {
  content: "";
  position: absolute;
  background: url("../img/parts/lp-thankyou/character.svg") center/contain no-repeat;
  right: -5px;
  bottom: -10px;
  width: 212px;
  height: 227px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-contact::after {
    right: -1px;
    bottom: -1px;
    width: 106px;
    height: 114px;
  }
}

.lp-thankyou-tel {
  margin-bottom: 43px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-tel {
    margin-bottom: 20px;
  }
}
.lp-thankyou-tel__link {
  display: block;
  background: #FF6F19;
  color: #fff;
  border-radius: 100px;
  padding: 21px 0;
  padding-left: 34px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
  transition: opacity 0.1s ease;
}
.lp-thankyou-tel__link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-tel__link {
    padding: 9px 0 8px;
    padding-left: 24px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  }
}
.lp-thankyou-tel__num {
  position: relative;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  font-size: 59px;
  padding-left: 90px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-tel__num {
    font-size: 31px;
    padding-left: 44px;
  }
}
.lp-thankyou-tel__num::before {
  content: "";
  position: absolute;
  top: calc(50% + 3px);
  transform: translateY(-50%);
  background: url("../img/parts/lp-thankyou/tel.svg") center/contain no-repeat;
  left: 0;
  width: 64px;
  height: 42px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-tel__num::before {
    width: 34px;
    height: 23px;
  }
}
.lp-thankyou-tel__open {
  letter-spacing: 0.02em;
  font-size: 22px;
  font-feature-settings: "palt";
  padding-top: 5px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-tel__open {
    font-size: 11px;
  }
}

.lp-thankyou-btn {
  flex: 0 0 200px;
  margin-right: 19px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-btn {
    flex: 0 0 108px;
    margin-right: 8px;
  }
}
.lp-thankyou-btn__link {
  display: block;
  border-radius: 9px;
  padding: 15px 0 11px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  transition: opacity 0.1s ease;
}
.lp-thankyou-btn__link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-btn__link {
    border-radius: 5px;
    padding: 6px 0 5px;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.15);
  }
}
.lp-thankyou-btn__txt1 {
  text-align: center;
  font-weight: 900;
  line-height: 1.25;
  font-size: 23px;
  margin-bottom: 9px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-btn__txt1 {
    font-size: 12px;
    margin-bottom: 4px;
  }
}
.lp-thankyou-btn__txt2 {
  text-align: center;
  font-weight: 700;
  font-size: 19px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-btn__txt2 {
    font-size: 10px;
  }
}
.lp-thankyou-btn__txt2 span {
  display: inline-block;
  background: #fff;
  border-radius: 100px;
  padding: 4px 15px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-btn__txt2 span {
    padding: 2px 8px;
  }
}
.lp-thankyou-btn--line {
  margin-left: 3px;
}
.lp-thankyou-btn--line .lp-thankyou-btn__link {
  background: #02be04;
  color: #fff;
}
.lp-thankyou-btn--line .lp-thankyou-btn__txt2 span {
  color: #02be04;
}
.lp-thankyou-btn--mail .lp-thankyou-btn__link {
  background: #ff6a6c;
  color: #fff;
}
.lp-thankyou-btn--mail .lp-thankyou-btn__txt2 span {
  color: #ff6a6c;
}

/**
 * 金・貴金属 公表価格相場
 */
.lp-gold {
  overflow: hidden;
  padding-bottom: 44px;
}
.lp-gold__inner {
  max-width: 1090px;
  padding: 0 30px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .lp-gold__inner {
    padding: 0 17px;
  }
}
.lp-gold__pic {
  margin-top: 32px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .lp-gold__pic img {
    width: 340px;
  }
}
.lp-gold__lists {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 959px) {
  .lp-gold__lists {
    display: block;
  }
}
.lp-gold__txt {
  position: relative;
  margin-top: 15px;
  padding-left: 16px;
  font-size: 16px;
  font-feature-settings: "palt";
}
@media screen and (max-width: 750px) {
  .lp-gold__txt {
    padding-left: 10px;
    font-size: 10px;
  }
}
.lp-gold__txt::before {
  position: absolute;
  content: "※";
  top: 0;
  left: 0;
}

.lp-gold-list, .lp-pt-list {
  margin-top: 13px;
  width: 49%;
}
@media screen and (max-width: 959px) {
  .lp-gold-list, .lp-pt-list {
    width: 100%;
  }
}
.lp-gold-list__head, .lp-pt-list__head {
  display: flex;
  margin-bottom: 14px;
}
.lp-gold-list__ttl, .lp-pt-list__ttl {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4444444444;
  font-feature-settings: "palt";
  background: #DBBC6B;
  padding: 4px 6px;
  width: 48%;
}
@media screen and (max-width: 750px) {
  .lp-gold-list__ttl, .lp-pt-list__ttl {
    font-size: 14px;
    line-height: 1.4285714286;
  }
}
.lp-gold-list__ttl::after, .lp-pt-list__ttl::after {
  position: absolute;
  content: "";
  border-top: 34px solid #fff;
  border-left: 30px solid transparent;
  top: -1px;
  right: -1px;
}
@media screen and (max-width: 750px) {
  .lp-gold-list__ttl::after, .lp-pt-list__ttl::after {
    border-top-width: 28px;
    border-left-width: 24px;
    right: 0;
  }
}
.lp-gold-list__date, .lp-pt-list__date {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 15px;
  border-bottom: 1px solid #DBBC6B;
  padding-right: 3px;
  width: 52%;
}
@media screen and (max-width: 750px) {
  .lp-gold-list__date, .lp-pt-list__date {
    font-size: 12px;
  }
}
.lp-gold-list__item, .lp-pt-list__item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 2.5px;
}
.lp-gold-list__name, .lp-pt-list__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.625;
  letter-spacing: 0.07em;
  font-feature-settings: "palt";
  padding: 6px 14px 5px;
  background: #DBBC6B;
  width: 46%;
  margin-right: 2px;
}
@media screen and (max-width: 750px) {
  .lp-gold-list__name, .lp-pt-list__name {
    font-size: 13px;
    line-height: 1.5384615385;
    padding: 6px 8px 5px;
  }
}
.lp-gold-list__yen, .lp-pt-list__yen {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  padding: 3px 18px;
  background: #FAF5EB;
  width: calc(60% - 2px);
  text-align: center;
}
@media screen and (max-width: 750px) {
  .lp-gold-list__yen, .lp-pt-list__yen {
    font-size: 13px;
    line-height: 1.5384615385;
  }
}
.lp-gold-list__yen span, .lp-pt-list__yen span {
  font-size: 18px;
  font-weight: 700;
  padding-right: 5px;
}
@media screen and (max-width: 750px) {
  .lp-gold-list__yen span, .lp-pt-list__yen span {
    font-size: 14px;
  }
}

@media screen and (max-width: 959px) {
  .lp-pt-list {
    margin-top: 30px;
  }
}
.lp-pt-list__ttl {
  background: #CACED7;
}
.lp-pt-list__date {
  border-bottom: 1px solid #CACED7;
}
.lp-pt-list__name {
  background: #CACED7;
}
.lp-pt-list__yen {
  background: #E3E9F0;
}

/**
 * サンクスページ
 */
.thanks__content {
  padding: 100px 30px 100px;
}
.thanks__ttl {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  line-height: 1.75;
  margin-bottom: 22px;
}
.thanks__icon {
  text-align: center;
  margin-bottom: 30px;
}
.thanks__desc {
  text-align: center;
  line-height: 1.75;
  margin-bottom: 51px;
}
.thanks .c-btn1 a {
  background: #333;
  color: #fff;
}
.thanks .c-btn1 a::before {
  background-image: url("../img/parts/btn1/arrow-white.svg");
}
@media screen and (max-width: 750px) {
  .thanks__content {
    padding: 56px 18px 45px;
  }
  .thanks__ttl {
    font-size: 24px;
  }
  .thanks .c-btn a {
    max-width: 190px;
  }
}

/**
 * 買取実績
 */
.jisseki .c-btn1.c-btn1--top a {
  background: #8BC373;
  color: #fff;
}
.jisseki .c-btn1.c-btn1--top a::before {
  background-image: url(../img/parts/btn1/arrow-white.svg);
}

/**
 * お客様の声
 */
.voice .c-btn1.c-btn1--top a {
  background: #8BC373;
  color: #fff;
}
.voice .c-btn1.c-btn1--top a::before {
  background-image: url(../img/parts/btn1/arrow-white.svg);
}

/**
 * 404ページ
 */
.notfound {
  padding: 100px 30px;
}
.notfound__ttl {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
  margin-bottom: 30px;
}
.notfound__desc {
  text-align: center;
  line-height: 1.75;
  margin-bottom: 50px;
}
.notfound .c-btn1 a {
  background: #333;
  color: #fff;
}
.notfound .c-btn1 a::before {
  background-image: url("../img/parts/btn1/arrow-white.svg");
}
@media screen and (max-width: 750px) {
  .notfound {
    padding: 50px 18px;
  }
  .notfound__ttl {
    font-size: 21px;
  }
  .notfound__desc {
    margin-bottom: 38px;
  }
}

/**
 * スタッフコラム
 */
.column {
  background-color: #faf5eb;
}
.column .c-ttl1::before, .column .c-ttl1::after {
  border-bottom-color: #faf5eb;
}

.lp-column {
  background-color: #faf5eb;
}
.lp-column__inner {
  padding-bottom: 52px;
}
.lp-column .c-ttl1::before, .lp-column .c-ttl1::after {
  border-bottom-color: #faf5eb;
}
.lp-column__list {
  display: flex;
  flex-wrap: wrap;
  padding: 22.5px 17px 0;
}
@media screen and (min-width: 960px) {
  .lp-column__inner {
    padding-bottom: 100px;
  }
}

.lp-column-item {
  width: 100%;
  padding-bottom: 25px;
}
.lp-column-item a {
  transition: opacity 0.1s ease;
}
.lp-column-item a:hover {
  opacity: 0.8;
}
.lp-column-item__thum {
  position: relative;
  padding-top: 52.9411764706%;
  overflow: hidden;
  margin-bottom: 15px;
}
.lp-column-item__thum img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.lp-column-item__data {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 3px;
}
.lp-column-item__date {
  display: inline-block;
  margin: 1px 15px 0 0;
  font-size: 14px;
  font-weight: 600;
}
.lp-column-item__tags {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}
.lp-column-item__tag {
  display: inline-block;
  margin: 0 5px 5px 0;
  padding: 3px 9px 4px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
.lp-column-item__tag--shuccho {
  background-color: #f8b03d;
}
.lp-column-item__tag--takuhai {
  background-color: #49a0ce;
}
.lp-column-item__tag--tento {
  background-color: #ef5c5c;
}
.lp-column-item__tag--moving {
  background-color: #30A361;
}
.lp-column-item__title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.38;
  font-feature-settings: "palt";
}
@media screen and (min-width: 960px) {
  .lp-column-item {
    width: calc(33.33333% - 20px);
    margin-right: 20px;
  }
  .lp-column-item:nth-child(3n) {
    margin-right: 0;
  }
  .lp-column-item__date {
    font-size: 16px;
  }
  .lp-column-item__tag {
    font-size: 14px;
  }
  .lp-column-item__title {
    font-size: 18px;
  }
}

/* 詳細 */
.post-column {
  padding-top: 23px;
  padding-bottom: 40px;
}
.post-column .lp-column-item__date {
  margin-top: 2px;
  margin-right: 1px;
}
@media screen and (min-width: 960px) {
  .post-column {
    padding-bottom: 60px;
  }
}

.post-content {
  margin-bottom: 35px;
  padding-bottom: 50px;
  border-bottom: 1px solid #000;
}
.post-content__head {
  margin-bottom: 30px;
}
.post-content__head .lp-column-item__data {
  display: flex;
  justify-content: space-between;
}
.post-content__title {
  padding-top: 14px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.27;
}
@media screen and (min-width: 960px) {
  .post-content {
    margin-bottom: 50px;
    padding-bottom: 80px;
  }
  .post-content__title {
    padding-top: 15px;
    font-size: 22px;
  }
}

.post-content__box p {
  margin-bottom: 40px;
  font-size: 13px;
  font-weight: 500;
  clear: both;
  overflow: hidden;
}
.post-content__box h2, .post-content__box h3, .post-content__box h4, .post-content__box h5, .post-content__box h6 {
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 600;
  color: #007bce;
  line-height: 1.3;
  clear: both;
  overflow: hidden;
}
.post-content__box h2 {
  border-bottom: 1px solid;
}
.post-content__box img {
  display: block;
  margin: auto;
}
.post-content__box .alignleft {
  float: left;
}
@media screen and (max-width: 750px) {
  .post-content__box .alignleft {
    float: none;
  }
}
.post-content__box .aligncenter {
  margin: auto;
}
.post-content__box .alignright {
  float: right;
}
@media screen and (max-width: 750px) {
  .post-content__box .alignright {
    float: none;
  }
}
.post-content__box a {
  color: #007bce;
  border-bottom: 1px solid #007bce;
  transition: opacity 0.1s ease;
}
.post-content__box a:hover {
  opacity: 0.8;
}
.post-content__box em {
  font-style: italic;
}
.post-content__box strong {
  font-weight: 600;
}
@media screen and (min-width: 960px) {
  .post-content__box p {
    font-size: 16px;
  }
  .post-content__box h2, .post-content__box h3, .post-content__box h4, .post-content__box h5, .post-content__box h6 {
    font-size: 20px;
  }
}

.post-sns {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}
.post-sns .tw,
.post-sns .fb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 163px;
  padding: 11px 8px 5px;
  font-size: 10px;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  transition: opacity 0.1s ease;
}
.post-sns .tw:hover,
.post-sns .fb:hover {
  opacity: 0.8;
}
.post-sns .tw::before,
.post-sns .fb::before {
  content: "";
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.post-sns .tw {
  background-color: #6cabe7;
  margin-right: 7px;
}
.post-sns .tw span {
  margin-right: 2px;
}
.post-sns .tw::before {
  width: 15px;
  height: 12px;
  margin-right: 4px;
  background-image: url(../img/parts/lp-column/tw-icon.png);
}
.post-sns .fb {
  background-color: #416196;
}
.post-sns .fb span {
  margin-right: 1px;
}
.post-sns .fb::before {
  width: 10px;
  height: 17px;
  margin-right: 6px;
  background-image: url(../img/parts/lp-column/fb-icon.png);
}
@media screen and (min-width: 960px) {
  .post-sns .tw,
.post-sns .fb {
    font-size: 13px;
  }
}

/* ページナビ */
.page-nav__list {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.page-nav__button {
  margin: 0 5px;
}
.page-nav__button a {
  display: block;
  padding: 11px;
  border-radius: 9999px;
  border: 1px solid #007bce;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: #007bce;
  transition: opacity 0.1s ease;
}
.page-nav__button a:hover {
  opacity: 0.8;
}
.page-nav__item {
  width: calc(50% - 10px);
  max-width: 160px;
}
.page-nav__back {
  max-width: 210px;
  margin: 0 auto;
}
.page-nav__back span {
  margin-left: 11px;
}
.page-nav__back span::before {
  content: "";
  display: inline-block;
  width: 13.5px;
  height: 9px;
  margin-right: 6px;
  background: url(../img/parts/lp-column/list-icon.png) center/cover no-repeat;
}
@media screen and (min-width: 960px) {
  .page-nav__list {
    margin-bottom: 20px;
  }
  .page-nav__button {
    margin: 0 20px;
  }
  .page-nav__button a {
    display: block;
    padding: 18px;
    border-width: 2px;
    font-size: 18px;
  }
  .page-nav__item {
    width: calc(50% - 40px);
    max-width: 320px;
  }
  .page-nav__back {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .page-nav__back span::before {
    width: 21px;
    height: 14px;
  }
}

/* 関連記事 */
.relation-post__title {
  margin-bottom: 25px;
  font-size: 15px;
  font-weight: 500;
}
.relation-post__list.lp-column__list {
  padding: 0;
}
@media screen and (min-width: 960px) {
  .relation-post__title {
    font-size: 20px;
  }
}

/* フッター */
.archive-column + .c-footer .c-footer__logo {
  padding: 50px 0;
}
@media screen and (max-width: 750px) {
  .archive-column + .c-footer .c-footer__logo {
    padding: 25px 0;
  }
}
.archive-column + .c-footer .c-footer__logo img {
  width: 287px;
}
@media screen and (max-width: 750px) {
  .archive-column + .c-footer .c-footer__logo img {
    width: 211px;
  }
}
@media screen and (max-width: 750px) {
  .archive-column + .c-footer .c-footer__copyright {
    text-align: center;
    padding: 11px 3px 30px 0px;
  }
}

@media screen and (max-width: 750px) {
  .single .lp-thankyou {
    padding-top: 30px;
  }
}
.single .lp-thankyou__head {
  display: none;
}
.single + .c-footer .c-footer__logo {
  padding: 60px 0 80px;
}
@media screen and (max-width: 750px) {
  .single + .c-footer .c-footer__logo {
    padding: 31px 0 39px;
  }
}
