@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%;
}

:root {
  --header-height: 80px;
  --bottom-bar-height: 0;
  --color-cv: #000;
}
@media screen and (max-width: 959px) {
  :root {
    --header-height: 60px;
    --bottom-bar-height: 70px;
  }
}

body {
/*  padding-top: var(--header-height);
  padding-bottom: var(--bottom-bar-height);
*/
  background: var(--color-background1);
}


#wrapper { padding-top: 100px;}
@media screen and (max-width: 641px) {
	#wrapper { padding-top: 80px;}
}


/**
 * ヘッダー
 */
#hd { position: fixed; left: 0; top: 0; width: 100%; border-bottom: solid 2px #b9b9b9; background: #fff; z-index: 100;}
#hd .inner-hd { width: 94%; margin: 0 auto; padding: 16px 0;}
#hd .hd-logo { width: 30%; max-width: 200px; line-height: 1;}
@media screen and (max-width: 641px) {
	#hd { border-width: 1px;}
}


/**
 * ハンバーガーボタン
 */
.menu-btn { width: 50px; height: 50px; position: fixed; right: 40px; top: 4px; z-index: 110;}
.menu-btn div { position: relative; width: 100%; height: 100%; cursor: pointer;}
.menu-btn div span { width: 80%; height: 2px; background: #000; position: absolute; left: 50%; opacity: 1;}
.menu-btn div span:nth-child(1) { top: 13px; transform: translate(-50%,0);}
.menu-btn div span:nth-child(2) { top: 25px; transform: translate(-50%,0);}
.menu-btn div span:nth-child(3) { top: 37px; transform: translate(-50%,0);}
.menu-btn.active div span:nth-child(1) { transform: translate(-50%,12px) rotate(45deg);}
.menu-btn.active div span:nth-child(2) { opacity: 0;}
.menu-btn.active div span:nth-child(3) { transform: translate(-50%,-12px) rotate(-45deg);}
@media screen and (max-width: 641px) {
	.menu-btn { width: 40px; height: 40px; right: 12px; top: 8px;}
	.menu-btn div span:nth-child(1) { top: 10px;}
	.menu-btn div span:nth-child(2) { top: 20px;}
	.menu-btn div span:nth-child(3) { top: 30px;}
	.menu-btn.active div span:nth-child(1) { transform: translate(-50%,10px) rotate(45deg);}
	.menu-btn.active div span:nth-child(3) { transform: translate(-50%,-10px) rotate(-45deg);}
}
@media screen and (max-width: 481px) {
	.menu-btn { top: 4px;}
}


/**
 * メニュー
 */
.menu { position: fixed; top: 0; left: 0; width: 100%; background: #fff; z-index: -1; opacity: 0; visibility: none; transition: 0.4s linear;}
.menu.open { z-index: 101; opacity: 1; visibility: visible;}
.menu .inner { padding: 80px 0 40px;}
.menu ul.txtlink { width: 100%; max-width: 600px; margin: 0 auto; border-top: solid 1px #c5c5c5;}
.menu ul.txtlink li { padding: 8px 0; border-bottom: solid 1px #c5c5c5; font-size: 20px;}
.menu ul.txtlink li a { position: relative; display: block; width: 100%; padding: 8px 16px; color: #696969;}
.menu ul.txtlink li a:after { content: ''; display: block; width: 12px; height: 12px; border-bottom: solid 2px #696969; border-right: solid 2px #696969;
 position: absolute; right: 20px; top: 50%; transform: translateY(-80%) rotate(45deg);
}
.menu aside { width: 90%; max-width: 600px; margin: 0 auto; padding: 40px 0;}
.menu aside .tel-box { width: 100%; margin: 0 auto 20px; padding: 20px 0; border: solid 1px #505050;}
.menu aside .tel-box p { color: #202020; text-align: center;}
.menu aside .tel-box p.tit { margin-bottom: 12px; font-size: clamp(14px,3.0vw,20px);}
.menu aside .tel-box p.telno { margin-bottom: 10px; font-size: 0px; letter-spacing: 0.08rem; line-height: 1;}
.menu aside .tel-box p.telno a { pointer-events: none;}
.menu aside .tel-box p.telno a:before { content: ''; display: inline-block; width: 36px; height: 36px; margin-right: 6px; vertical-align: text-bottom;
 background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.36,2.35c-1.45.94-1.73,3.88-1.19,6.27.43,1.86,1.33,4.36,2.86,6.72,1.44,2.21,3.44,4.2,4.97,5.35,1.96,1.48,4.76,2.41,6.21,1.47.73-.47,1.82-1.77,1.87-2.01,0,0-.64-.98-.78-1.2l-2.14-3.3c-.16-.25-1.16-.02-1.66.27-.68.39-1.31,1.43-1.31,1.43-.47.27-.86,0-1.68-.38-1.01-.46-2.14-1.9-3.04-3.21-.82-1.36-1.68-2.98-1.69-4.09-.01-.9-.1-1.37.34-1.69,0,0,1.21-.15,1.84-.62.47-.35,1.08-1.16.92-1.41l-2.14-3.3c-.14-.22-.78-1.2-.78-1.2-.23-.05-1.86.41-2.59.89h-.01Z" fill="%234c4c4c" /></svg>');
 background-repeat: no-repeat; background-position: 50% 50%; background-size: auto 100%;
}
.menu aside .tel-box p.telno a span { display: inline-block; font-size: clamp(30px, 5.4vw, 40px); vertical-align: text-bottom;}

.menu aside .tel-box p.time { font-size: 16px;}
.menu aside ul { display: flex; justify-content: space-between; font-size: 0; text-align: center;}
.menu aside ul li { width: 48.5%;}
.menu aside ul li a { position: relative; display: block; width: 100%; padding: 20px 0; padding-left: 90px; border: solid 1px #505050; color: #202020;}
.menu aside ul li a:before { content: ''; position: absolute; left: 40px; top: 50%; transform: translateY(-50%); width: 50px; height: 50px;}
.menu aside ul li a.icn-line:before {
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 30 30"><g fill="%234c4c4c4"><path d="M30,12.29c0,2.94-.8,5.1-2.19,7.04-.94,1.31-2.02,2.47-3.2,3.54-2.51,2.28-5.22,4.26-8.08,6.04-.59.37-1.21.65-1.83.96-.14.07-.31.11-.46.12-.4.02-.6-.19-.56-.68.04-.45.12-.9.2-1.36.08-.51.14-1.02.08-1.54-.05-.36-.25-.58-.53-.75-.39-.22-.82-.32-1.26-.38-1.33-.2-2.6-.57-3.85-1.09-1.5-.63-2.89-1.47-4.12-2.57-1.99-1.78-3.4-3.95-3.97-6.66-.2-.95-.27-1.91-.21-2.87.16-2.35.98-4.42,2.38-6.26,1.48-1.95,3.36-3.35,5.53-4.34C9.86.62,11.89.14,14,.03c3.27-.18,6.37.46,9.27,2.09,2.23,1.25,4.07,2.96,5.35,5.29.91,1.66,1.38,3.46,1.39,4.89h0ZM14.95,12.34c1.01,1.44,1.99,2.84,2.96,4.23.16.23.37.4.65.41.49.03.87-.38.87-.94v-6.08s0-.1,0-.15c-.04-.35-.22-.61-.53-.74-.31-.13-.6-.06-.84.17-.21.2-.27.46-.27.75v3.65c-.06-.08-.09-.12-.13-.16-.64-.91-1.28-1.83-1.92-2.75-.31-.44-.61-.88-.92-1.31-.21-.3-.48-.45-.83-.39-.31.06-.53.25-.62.57-.04.15-.06.3-.06.46,0,1.97,0,3.94,0,5.91,0,.15.01.3.06.44.12.39.51.64.88.58.38-.06.7-.44.7-.86,0-.74,0-1.48,0-2.23v-1.56h0ZM22.06,10.71h.21c.66,0,1.32,0,1.98,0,.43,0,.77-.38.77-.84s-.33-.84-.77-.85c-1.01,0-2.02,0-3.03,0-.42,0-.77.36-.77.81v6.33c0,.45.35.83.77.83,1.01,0,2.02,0,3.03,0,.41,0,.76-.38.77-.82,0-.49-.3-.87-.74-.88-.67-.01-1.33,0-2,0h-.23v-1.43h2.15c.45,0,.81-.36.81-.81,0-.51-.3-.88-.77-.89-.65-.01-1.3,0-1.96,0h-.23v-1.44h0ZM6.96,15.29v-5.39c0-.52-.37-.89-.86-.88-.44.01-.76.39-.76.91v6.15s0,.1,0,.15c.03.4.37.76.76.76,1.02,0,2.05,0,3.07,0,.48,0,.86-.55.74-1.03-.11-.43-.38-.66-.81-.67-.71,0-1.41,0-2.14,0h0ZM12.25,13.01v-3.07c0-.41-.21-.75-.55-.87-.55-.21-1.09.22-1.09.89,0,2.03,0,4.07,0,6.1,0,.16.04.32.1.47.15.34.56.54.87.45.38-.1.66-.46.66-.88,0-1.03,0-2.06,0-3.09h0Z" fill-rule="evenodd"/></g></svg>');
 background-repeat: no-repeat; background-position: 50% 50%; background-size: 100% auto;
}

.menu aside ul li a.icn-mail:before {
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 30 30"><g fill="%234c4c4c4"><path d="M10.74,14.42s.07.05.11.09c.03.03.06.07.09.1l1.64,1.59c.64.62,1.49.96,2.4.96h.01c.91,0,1.78-.35,2.42-.98l1.73-1.67,9.15-8.83c-.2-.08-.42-.12-.65-.12H2.35c-.23,0-.46.04-.66.12l9.06,8.74h0Z"/><path d="M20.68,15l8.64,8.34c.08-.19.12-.4.12-.62V7.28c0-.22-.04-.43-.12-.63l-8.64,8.34Z"/><path d="M.67,6.67c-.07.19-.12.4-.12.61v15.43c0,.22.04.43.12.63l8.63-8.33L.67,6.67Z"/><path d="M19.66,15.99l-1.22,1.18c-.92.89-2.14,1.38-3.44,1.39h-.02c-1.29,0-2.51-.48-3.42-1.37l-1.23-1.19L1.7,24.33c.2.08.42.12.65.12h25.31c.23,0,.45-.04.65-.12l-8.64-8.34h0Z"/></g></svg>');
 background-repeat: no-repeat; background-position: 50% 50%; background-size: 100% auto;
}

.menu aside ul li a span { display: block;}
.menu aside ul li a span.txt { font-size: clamp(16px,2.8vw,21px);}
.menu aside ul li a span.pt { padding-top: 1.4em;}
.menu aside ul li a span.time { font-size: 14px;}
@media screen and (max-width: 801px) {
	.menu aside ul li a span.time { font-size: 12px;}
}
@media screen and (max-width: 481px) {
	.menu .inner { padding: 60px 0 30px;}
	.menu ul.txtlink li { font-size: 16px;}
	.menu ul.txtlink li a { padding: 6px 15px;}
	.menu ul.txtlink li a:after { width: 10px; height: 10px;}

	.menu aside { padding: 20px 0;}

	.menu aside .tel-box { margin-bottom: 12px; padding: 12px 0;}
	.menu aside .tel-box p.tit { margin-bottom: 8px;}
	.menu aside .tel-box p.telno a:before { width: 25px; height: 25px;}
	.menu aside .tel-box p.time { font-size: 10px;}

	.menu aside ul li a { padding: 8px 0; padding-left: 42px; border-width: 1px;}
	.menu aside ul li a:before  { left: 15px; width: 30px;}
	.menu aside ul li a span.txt { font-size: 14px;}
	.menu aside ul li a span.time { font-size: 12px;}
}




/**
 * フッター
 */
.contact-bnr { background: url(../img/bg-contact.jpg) no-repeat 50% 50% / cover;}
.contact-bnr .inner-sct { padding: 120px 0 80px;}
.contact-bnr .tit { margin-bottom: 30px;}
.contact-bnr .tit:after { content: ''; display: block; width: 80px; height: 1px; background: #fff; margin: 0 auto;}
.contact-bnr .tit h3 { margin-bottom: 20px; color: #fff; font-size: clamp(14px,3.2vw,24px); font-weight: 400; text-align: center;}
.contact-bnr .tit h3 img { display: inline-block; width: 40%; max-width: 300px; margin-right: 12px; vertical-align: middle;}
.contact-bnr .tit h3 span{ display: inline-block; vertical-align: middle;}
.contact-bnr .btn-line { width: 60%; max-width: 300px; margin: 0 auto;}
.contact-bnr .btn-line a { display: block; padding: 20px 0; border: solid 1px #fff; background: rgba(62,62,62,0.6);
 color: #fff; font-size: clamp(14px,3.0vw,20px); text-align: center;
}
.contact-bnr .btn-line a:before { content: ''; display: inline-block; width: 32px; height: 32px; margin-right: 10px; vertical-align: middle;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 30 30"><g fill="%23fff"><path d="M30,12.29c0,2.94-.8,5.1-2.19,7.04-.94,1.31-2.02,2.47-3.2,3.54-2.51,2.28-5.22,4.26-8.08,6.04-.59.37-1.21.65-1.83.96-.14.07-.31.11-.46.12-.4.02-.6-.19-.56-.68.04-.45.12-.9.2-1.36.08-.51.14-1.02.08-1.54-.05-.36-.25-.58-.53-.75-.39-.22-.82-.32-1.26-.38-1.33-.2-2.6-.57-3.85-1.09-1.5-.63-2.89-1.47-4.12-2.57-1.99-1.78-3.4-3.95-3.97-6.66-.2-.95-.27-1.91-.21-2.87.16-2.35.98-4.42,2.38-6.26,1.48-1.95,3.36-3.35,5.53-4.34C9.86.62,11.89.14,14,.03c3.27-.18,6.37.46,9.27,2.09,2.23,1.25,4.07,2.96,5.35,5.29.91,1.66,1.38,3.46,1.39,4.89h0ZM14.95,12.34c1.01,1.44,1.99,2.84,2.96,4.23.16.23.37.4.65.41.49.03.87-.38.87-.94v-6.08s0-.1,0-.15c-.04-.35-.22-.61-.53-.74-.31-.13-.6-.06-.84.17-.21.2-.27.46-.27.75v3.65c-.06-.08-.09-.12-.13-.16-.64-.91-1.28-1.83-1.92-2.75-.31-.44-.61-.88-.92-1.31-.21-.3-.48-.45-.83-.39-.31.06-.53.25-.62.57-.04.15-.06.3-.06.46,0,1.97,0,3.94,0,5.91,0,.15.01.3.06.44.12.39.51.64.88.58.38-.06.7-.44.7-.86,0-.74,0-1.48,0-2.23v-1.56h0ZM22.06,10.71h.21c.66,0,1.32,0,1.98,0,.43,0,.77-.38.77-.84s-.33-.84-.77-.85c-1.01,0-2.02,0-3.03,0-.42,0-.77.36-.77.81v6.33c0,.45.35.83.77.83,1.01,0,2.02,0,3.03,0,.41,0,.76-.38.77-.82,0-.49-.3-.87-.74-.88-.67-.01-1.33,0-2,0h-.23v-1.43h2.15c.45,0,.81-.36.81-.81,0-.51-.3-.88-.77-.89-.65-.01-1.3,0-1.96,0h-.23v-1.44h0ZM6.96,15.29v-5.39c0-.52-.37-.89-.86-.88-.44.01-.76.39-.76.91v6.15s0,.1,0,.15c.03.4.37.76.76.76,1.02,0,2.05,0,3.07,0,.48,0,.86-.55.74-1.03-.11-.43-.38-.66-.81-.67-.71,0-1.41,0-2.14,0h0ZM12.25,13.01v-3.07c0-.41-.21-.75-.55-.87-.55-.21-1.09.22-1.09.89,0,2.03,0,4.07,0,6.1,0,.16.04.32.1.47.15.34.56.54.87.45.38-.1.66-.46.66-.88,0-1.03,0-2.06,0-3.09h0Z"/></g></svg>');
 background-repeat: no-repeat; background-position: 50% 50%; background-size: 100% auto;
}
.contact-bnr .btn-line a span { display: inline-block; vertical-align: middle;}
.contact-bnr .btn-line a:hover { background: rgba(0,0,0,0.6);}
@media screen and (max-width: 641px) {
	.contact-bnr .inner-sct { padding: 80px 0 50px;}
	.contact-bnr .btn-line a { padding: 12px 0;}
	.contact-bnr .btn-line a:before { width: 24px; height: 24px;}
}
@media screen and (max-width: 481px) {
	.contact-bnr .inner-sct { padding: 52px 0 40px;}
	.contact-bnr .tit { margin-bottom: 20px;}
	.contact-bnr .tit:after { width: 40px;}
	.contact-bnr .tit h3 { margin-bottom: 12px;}
	.contact-bnr .btn-line a:before { width: 20px; height: 20px;}
}



#ft { padding: 80px 0px 115px;}
#ft .ft-ctn { padding: 40px 0;}
#ft h3 { margin-bottom: 20px; text-align: center;}
#ft h3 img { width: 68%; max-width: 500px;}
#ft ul { width: 100%; margin: 0 auto; font-size: 0; text-align: center;}
#ft ul li { display: inline-block; padding: 15px; font-size: 20px;}
#ft ul li a { color: #696969; letter-spacing: 0.08rem; text-decoration: none;}
#ft .copyright { padding: 12px 0; background: #e9e9e9;}
#ft .copyright p { font-size: 14px; text-align: center;}
@media screen and (max-width: 641px) {
	#ft { padding: 60px 0px 90px;}
}
@media screen and (max-width: 481px) {
	#ft { padding: 40px 0px 64px;}
	#ft .ft-ctn { padding: 20px 0;}
	#ft ul { max-width: 280px;}
	#ft ul li { padding: 8px; font-size: 14px;}
	#ft .copyright p { font-size: 10px;}
}

/**
 * 下部追従
 */
.fix-bnr { position: fixed; left: 0; bottom: 0; width: 100%; background: #282828; z-index: 99;}
.fix-bnr .inner { width: 90%; max-width: 680px; margin: 0 auto; padding: 20px 0;}
@media screen and (max-width: 481px) {
	.fix-bnr .inner { padding: 12px 0;}
}

.ttl {}
.ttl h2 { text-align: center;}
.ttl h2 img { width: 72%; max-width: 600px;}
.ttl p { font-size: clamp(12px,3.0vw,20px); text-align: center;}

.contact-box { display: flex; justify-content: space-between; align-items: center; width: 100%;}
.contact-box .txt { width: 42%;}
.contact-box .link{ width: 55%;}
.contact-box .txt p { color: #fff; text-align: center;}
.contact-box .txt p img { display: block; width: 80%; margin: 0 auto 10px;}
.contact-box .txt p span { display: block; font-size: clamp(10px,3.0vw,20px);}
.contact-box .link a { display: block; padding: 20px 0; border: solid 1px #fff; background: #3e3e3e; color: #fff; font-size: clamp(14px,3.0vw,20px); text-align: center;}
.contact-box .link a:before { content: ''; display: inline-block; width: 32px; height: 32px; margin-right: 10px; vertical-align: middle;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 30 30"><g fill="%23fff"><path d="M30,12.29c0,2.94-.8,5.1-2.19,7.04-.94,1.31-2.02,2.47-3.2,3.54-2.51,2.28-5.22,4.26-8.08,6.04-.59.37-1.21.65-1.83.96-.14.07-.31.11-.46.12-.4.02-.6-.19-.56-.68.04-.45.12-.9.2-1.36.08-.51.14-1.02.08-1.54-.05-.36-.25-.58-.53-.75-.39-.22-.82-.32-1.26-.38-1.33-.2-2.6-.57-3.85-1.09-1.5-.63-2.89-1.47-4.12-2.57-1.99-1.78-3.4-3.95-3.97-6.66-.2-.95-.27-1.91-.21-2.87.16-2.35.98-4.42,2.38-6.26,1.48-1.95,3.36-3.35,5.53-4.34C9.86.62,11.89.14,14,.03c3.27-.18,6.37.46,9.27,2.09,2.23,1.25,4.07,2.96,5.35,5.29.91,1.66,1.38,3.46,1.39,4.89h0ZM14.95,12.34c1.01,1.44,1.99,2.84,2.96,4.23.16.23.37.4.65.41.49.03.87-.38.87-.94v-6.08s0-.1,0-.15c-.04-.35-.22-.61-.53-.74-.31-.13-.6-.06-.84.17-.21.2-.27.46-.27.75v3.65c-.06-.08-.09-.12-.13-.16-.64-.91-1.28-1.83-1.92-2.75-.31-.44-.61-.88-.92-1.31-.21-.3-.48-.45-.83-.39-.31.06-.53.25-.62.57-.04.15-.06.3-.06.46,0,1.97,0,3.94,0,5.91,0,.15.01.3.06.44.12.39.51.64.88.58.38-.06.7-.44.7-.86,0-.74,0-1.48,0-2.23v-1.56h0ZM22.06,10.71h.21c.66,0,1.32,0,1.98,0,.43,0,.77-.38.77-.84s-.33-.84-.77-.85c-1.01,0-2.02,0-3.03,0-.42,0-.77.36-.77.81v6.33c0,.45.35.83.77.83,1.01,0,2.02,0,3.03,0,.41,0,.76-.38.77-.82,0-.49-.3-.87-.74-.88-.67-.01-1.33,0-2,0h-.23v-1.43h2.15c.45,0,.81-.36.81-.81,0-.51-.3-.88-.77-.89-.65-.01-1.3,0-1.96,0h-.23v-1.44h0ZM6.96,15.29v-5.39c0-.52-.37-.89-.86-.88-.44.01-.76.39-.76.91v6.15s0,.1,0,.15c.03.4.37.76.76.76,1.02,0,2.05,0,3.07,0,.48,0,.86-.55.74-1.03-.11-.43-.38-.66-.81-.67-.71,0-1.41,0-2.14,0h0ZM12.25,13.01v-3.07c0-.41-.21-.75-.55-.87-.55-.21-1.09.22-1.09.89,0,2.03,0,4.07,0,6.1,0,.16.04.32.1.47.15.34.56.54.87.45.38-.1.66-.46.66-.88,0-1.03,0-2.06,0-3.09h0Z"/></g></svg>');
 background-repeat: no-repeat; background-position: 50% 50%; background-size: 100% auto;
}
.contact-box .link a span { display: inline-block; vertical-align: middle;}
.contact-box .link a:hover { background: #000;}
@media screen and (max-width: 641px) {
	.contact-box .link a { padding: 12px 0;}
}
@media screen and (max-width: 481px) {
	.contact-box .txt p img { margin-bottom: 6px;}
	.contact-box .link a { padding: 9px 0;}
	.contact-box .link a:before { width: 20px; height: 20px;}
}


.btn-more {}
.btn-more a { display: block; width: 72%; max-width: 480px; margin: 0 auto; padding: 15px 0; border: solid 2px #898989; border-radius: 50px; line-height: 1; text-align: center;}
.btn-more a img { width: 32%; max-width: 150px;}
.btn-more a:hover { background: #eee;}
@media screen and (max-width: 481px) {
	.btn-more a { padding: 12px 0; border-width: 1px;}
}


/**
 * MV
 */
#lp-mv {}
#lp-mv .inner-mv { width: 100%; max-width: 800px; margin: 0 auto;}
#lp-mv h1 { text-align: center;}
#lp-mv h1 img { width: 100%;}

.cta { background: #282828;}
.cta .inner { width: 90%; max-width: 680px; margin: 0 auto; padding: 30px 0;}
@media screen and (max-width: 481px) {
 .cta .inner { padding: 16px 0;}
}



/**
 * 商品一覧
 */
#lp-items { position: relative; background: #efefef;}
#lp-items .inner-sct { padding: 60px 0;}
#lp-items .ctn { width: 90%; max-width: 600px; margin: 0 auto 30px;}
#lp-items .ctn ul { font-size: 0; text-align: center;}
#lp-items .ctn ul li { display: inline-block; width: 50%; padding: 12px 10px; vertical-align: top;}
#lp-items .ctn ul li dl {}
#lp-items .ctn ul li dl dt { margin-bottom: 10px;}
#lp-items .ctn ul li dl dt a { display: block;}
#lp-items .ctn ul li dl dt img { width: 100%;}
#lp-items .ctn ul li dl dd { font-size: 18px;}
#lp-items .ctn ul li dl dd.price { font-size: 14px;}
@media screen and (max-width: 481px) {
	#lp-items .inner-sct { padding: 40px 0;}
	#lp-items .ctn { margin-bottom: 20px;}
	#lp-items .ctn ul li { padding: 10px 8px;}
	#lp-items .ctn ul li dl dd { font-size: 13px;}
	#lp-items .ctn ul li dl dd.price { font-size: 12px;}
}


/**
 * オンライン
 */
#lp-online { position: relative;}
#lp-online .inner-sct { padding: 0 0 120px;}
#lp-online .ctn { position: relative; margin-bottom: 40px; background: url('../img/bg-online.jpg') no-repeat 50% 50% / cover;}
#lp-online .ctn .txt { width: 72%; margin: 0 0 0 auto; padding: 160px 0;}
#lp-online .ctn .txt h2 { margin-bottom: 30px; line-height: 1; text-align: center;}
#lp-online .ctn .txt h2:after { content: ''; display: block; width: 80px; height: 1px; background: #fff; margin: 36px auto 0;}
#lp-online .ctn .txt h2 img { width: 65%; max-width: 400px;}
#lp-online .ctn .txt p { color: #fff; font-size: clamp(13px,3.0vw,24px); text-align: center;}
@media screen and (max-width: 641px) {
	#lp-online .inner-sct { padding-bottom: 80px;}
	#lp-online .ctn .txt { padding: 16vw 0;}
	#lp-online .ctn .txt h2 { margin-bottom: 20px;}
	#lp-online .ctn .txt h2:after { margin-top: 20px;}
}
@media screen and (max-width: 481px) {
	#lp-online .inner-sct { padding-bottom: 60px;}
	#lp-online .ctn { margin-bottom: 20px;}
	#lp-online .ctn .txt { padding: 14vw 0;}
	#lp-online .ctn .txt h2 { margin-bottom: 12px;}
	#lp-online .ctn .txt h2:after { width: 40px; margin-top: 12px;}
	#lp-online .ctn .txt p { font-weight: 200;}
}


#lp-tvc { position: relative; z-index: 1;}
#lp-tvc .inner-sct { position: relative; padding: 120px 0;}
#lp-tvc .inner-sct:after { content: ''; display: block; width: 100%; height: calc(100% - 200px); background:#EFEFEF;
position: absolute; left: 0; top: 50%; transform: translateY(-50%) skewy(-5deg);
}
#lp-tvc .ctn { position: relative; z-index: 2; width: 90%; max-width: 600px; margin: 0 auto; padding: 80px 0;}
#lp-tvc .ctn h2 { margin-bottom: 40px; text-align: center;}
#lp-tvc .ctn h2 img { width: 72%; max-width: 600px;}
#lp-tvc .ctn .flex { display: flex; justify-content: space-between; align-items: center;}
#lp-tvc .ctn .img { width: 45%;}
#lp-tvc .ctn .txt { width: 50%;}
#lp-tvc .ctn .txt p { margin-bottom: 20px; font-size: clamp(12px,3.0vw,20px); }
#lp-tvc .ctn .txt p span { display: block;}
#lp-tvc .ctn .txt ul { font-size: 0px; text-align: center;}
#lp-tvc .ctn .txt ul li { display: inline-block; width: 50%; padding: 8px; font-size: clamp(11px,3.0vw,20px);}
#lp-tvc .ctn .txt ul li span { display: block; padding: 16px 0; background: #2c2c2c; color: #fff; font-weight: 500; letter-spacing: 0.08rem;}
@media screen and (max-width: 801px) {
	#lp-tvc .inner-sct { padding: 80px 0;}
	#lp-tvc .ctn .txt ul li span { padding: 12px 0;}
}
@media screen and (max-width: 481px) {
	#lp-tvc .inner-sct { padding: 60px 0;}
	#lp-tvc .inner-sct:after { height: calc(100% - 100px); transform: translateY(-50%) skewy(-8deg);}
	#lp-tvc .ctn { width: 100%; padding: 50px 0;}
	#lp-tvc .ctn h2 { margin-bottom: 30px;}
	#lp-tvc .ctn .img { width: 42%;}
	#lp-tvc .ctn .txt { width: 54%; padding-right: 20px;}
	#lp-tvc .ctn .txt p { margin-bottom: 12px;}
	#lp-tvc .ctn .txt ul li { padding: 4px;}
	#lp-tvc .ctn .txt ul li span { padding: 8px 0;}
}



/**
 * FLOW
 */
#lp-flow { position: relative; }
#lp-flow .inner-sct { padding: 60px 0;}
#lp-flow .ttl { margin-bottom: 20px;}
#lp-flow .ttl h2 { margin-bottom: 18px;}
#lp-flow ol { width: 90%; max-width: 600px; margin: 0 auto;}
#lp-flow ol li { position: relative; padding: 10px 0;}
#lp-flow ol li:before { content: ''; display: block; width: 0px; height: 0px; position: absolute; left: 0; top: 9px; z-index: 2;
 border: solid 15px transparent; border-top: solid 15px #fff; border-left: solid 15px #fff;
}
#lp-flow ol li span.icn { position: absolute; left: 36px; top: 50%; transform: translateY(-50%); z-index: 2; width: 72px;}
#lp-flow ol li span.icn img { width: 100%;}
#lp-flow ol li dl { position: relative; z-index: 1; padding: 20px 30px; padding-left: 140px; background: #EFEFEF;}
#lp-flow ol li dl dt { position: relative; padding: 8px 0; border-bottom: solid 2px #c1c1c1; font-size: clamp(16px,3.0vw,24px);}
#lp-flow ol li:first-child dl dt { padding-top: 1.2em;}
#lp-flow ol li dl dt:after { content: ''; display: block; width: 80px; height: 2px; background: #000; position: absolute; left: 0; bottom: -2px;}
#lp-flow ol li dl dd { min-height: 4em; padding: 8px 0; font-size: 18px; line-height: 1.8;}
@media screen and (max-width: 801px) {
	#lp-flow .inner-sct { padding: 40px 0 20px;}
	#lp-flow ol li dl { padding: 20px; padding-left: 120px;}
	#lp-flow ol li dl dd { font-size: 16px;}
	#lp-flow ol li span.icn { left: 30px; width: 60px;}
}
@media screen and (max-width: 481px) {
	#lp-flow .ttl { margin-bottom: 12px;}
	#lp-flow .ttl h2 { margin-bottom: 12px;}
	#lp-flow ol li { padding: 8px 0;}
	#lp-flow ol li:before { top: 7px; border: solid 10px transparent; border-top: solid 10px #fff; border-left: solid 10px #fff;}
	#lp-flow ol li span.icn { width: 42px; left: 18px;}
	#lp-flow ol li dl { padding: 12px; padding-left: 80px;}
	#lp-flow ol li dl dd { font-size: 12px;}
}

.textline { position: relative; width: 100%; height: 120px;
 background: url('../img/title/tvc-grey.svg') no-repeat 50% 50% / auto 60px;
}
@media screen and (max-width: 481px) {
	.textline { height: 40px; background-size: auto 30px;}
}

/**
 * 店舗紹介
 */
#lp-shop { position: relative; }
#lp-shop .inner-sct { padding: 80px 0 60px;}
#lp-shop .ttl { margin-bottom: 20px;}
#lp-shop .ttl h2 { margin-bottom: 20px;}
#lp-shop .bloc { padding: 30px 0;}
#lp-shop .bloc .pht { width: 100%; max-width: 800px; margin: 0 auto 40px;}
#lp-shop .bloc .txt { width: 90%; max-width: 600px; margin: 0 auto;}
#lp-shop .bloc .txt h4 { margin-bottom: 20px; font-size: clamp(24px,3.6vw,32px);}
#lp-shop .bloc .txt h4 span { display: block; width: 120px; margin: 8px 0 0; padding: 2px 0; border: solid 1px #C1C1C1; font-size: 18px; text-align: center;}
#lp-shop .bloc .txt p { font-size: 20px;}
#lp-shop .bloc .txt p.addr { margin-bottom: 10px;}
@media screen and (max-width: 481px) {
	#lp-shop .inner-sct { padding: 60px 0 40px;}
	#lp-shop .ttl { margin-bottom: 8px;}
	#lp-shop .ttl h2 { margin-bottom: 12px;}
	#lp-shop .bloc { padding: 20px 0;}
	#lp-shop .bloc .pht { margin-bottom: 20px;}
	#lp-shop .bloc .txt h4 { margin-bottom: 12px;}
	#lp-shop .bloc .txt h4 span { width: 100px; font-size: 12px;}
	#lp-shop .bloc .txt p { font-size: 14px;}
	#lp-shop .bloc .txt p.addr { margin-bottom: 6px;}
}


/**
 * お問合せ
 */
.lp-contact { position: relative; z-index: 2; background: #2c2c2c;}
.lp-contact .inner-sct { padding: 120px 0;}
.lp-contact .ttl { margin-bottom: 40px;}
.lp-contact .ttl h2 { margin-bottom: 18px; color: #fff;}
.lp-contact .ttl p { color: #fff;}
.lp-contact .ctn { width: 90%; max-width: 600px; margin: 0 auto;}
.lp-contact .tel-box { width: 100%; margin: 0 auto 20px; padding: 30px 0; border: solid 2px #fff; }
.lp-contact .tel-box p { color: #fff; text-align: center;}
.lp-contact .tel-box p.tit { margin-bottom: 20px; font-size: clamp(15px,3.0vw,20px);}
.lp-contact .tel-box p.telno { margin-bottom: 10px; font-size: 0px; letter-spacing: 0.08rem; line-height: 1;}
.lp-contact .tel-box p.telno a { pointer-events: none;}
.lp-contact .tel-box p.telno a:before { content: ''; display: inline-block; width: 36px; height: 36px; margin-right: 6px; vertical-align: text-bottom;
 background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.36,2.35c-1.45.94-1.73,3.88-1.19,6.27.43,1.86,1.33,4.36,2.86,6.72,1.44,2.21,3.44,4.2,4.97,5.35,1.96,1.48,4.76,2.41,6.21,1.47.73-.47,1.82-1.77,1.87-2.01,0,0-.64-.98-.78-1.2l-2.14-3.3c-.16-.25-1.16-.02-1.66.27-.68.39-1.31,1.43-1.31,1.43-.47.27-.86,0-1.68-.38-1.01-.46-2.14-1.9-3.04-3.21-.82-1.36-1.68-2.98-1.69-4.09-.01-.9-.1-1.37.34-1.69,0,0,1.21-.15,1.84-.62.47-.35,1.08-1.16.92-1.41l-2.14-3.3c-.14-.22-.78-1.2-.78-1.2-.23-.05-1.86.41-2.59.89h-.01Z" fill="%23ffffff" /></svg>');
 background-repeat: no-repeat; background-position: 50% 50%; background-size: auto 100%;
}
.lp-contact .tel-box p.telno a span { display: inline-block; font-size: clamp(30px,5.4vw,40px);; vertical-align: text-bottom;}

.lp-contact .tel-box p.time { font-size: 16px;}
.lp-contact ul { display: flex; justify-content: space-between; font-size: 0; text-align: center;}
.lp-contact ul li { width: 48.5%;}
.lp-contact ul li a { position: relative; display: block; width: 100%; padding: 30px 0; padding-left: 90px; border: solid 2px #fff; color: #fff;}
.lp-contact ul li a img { position: absolute; left: 40px; top: 50%; transform: translateY(-50%); width: 60px;}
.lp-contact ul li a span { display: block;}
.lp-contact ul li a span.txt { margin-bottom: 4px; font-size: clamp(16px,2.8vw,21px);}
.lp-contact ul li a span.pt { padding-top: 1.4em;}
.lp-contact ul li a span.time { font-size: 16px;}
.lp-contact ul li a:hover { background: #000;}

@media screen and (max-width: 801px) {
	.lp-contact .inner-sct { padding: 60px 0 80px;}
}
@media screen and (max-width: 641px) {
	.lp-contact .tel-box p.telno a:before { width: 30px; height: 30px;}
	.lp-contact ul li a { padding: 16px 0; padding-left: 60px;}
	.lp-contact ul li a img { left: 30px; width: 40px;}
	.lp-contact ul li a span.time { font-size: 12px;}
}
@media screen and (max-width: 481px) {
	.lp-contact .inner-sct { padding: 40px 0 60px;}
	.lp-contact .ttl { margin-bottom: 30px;}
	.lp-contact .ttl h2 { margin-bottom: 12px;}
	.lp-contact .tel-box { margin-bottom: 12px; padding: 10px 0; border-width: 1px;}
	.lp-contact .tel-box p.tit { margin-bottom: 8px;}
	.lp-contact .tel-box p.telno a:before { width: 25px; height: 25px;}
	.lp-contact .tel-box p.time { font-size: 12px;}
	.lp-contact ul li a { padding: 8px 0; padding-left: 42px; border-width: 1px;}
	.lp-contact ul li a img { left: 15px; width: 30px;}
	.lp-contact ul li a span.txt { font-size: 14px;}
	.lp-contact ul li a span.time { font-size: 10px;}
}










/**
 * ページネーション
 */
.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;
  }
}

/**
 * 汎用タイトル
 */
.c-ttl1 {
  position: relative;
}
.c-ttl1__en {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 94px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.085106383;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .c-ttl1__en {
    font-size: 47px;
  }
}
.c-ttl1__ttl {
  position: relative;
  color: var(--color-text);
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  padding-bottom: 17px;
  margin-bottom: 19px;
}
@media screen and (max-width: 750px) {
  .c-ttl1__ttl {
    font-size: 25px;
    padding-bottom: 13px;
    margin-bottom: 13px;
  }
}
.c-ttl1__ttl::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 66px;
  height: 3px;
  background: url("../img/parts/ttl1/dot.svg") center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .c-ttl1__ttl::after {
    width: 50px;
    height: 2px;
    background: url("../img/parts/ttl1/dot-sp.svg") center/contain no-repeat;
  }
}
.c-ttl1__lead {
  position: relative;
  color: var(--color-text);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .c-ttl1__lead {
    font-size: 12px;
  }
}

/**
 * 汎用ボタン
 */
.c-btn1 a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 100px;
  background: var(--color-cv);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 19px 0;
  max-width: 342px;
  box-shadow: 6px 6px rgba(0, 0, 0, 0.2);
  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;
    padding: 17px 0;
    max-width: 300px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
  }
}
.c-btn1 a::after {
  content: "";
  width: 6px;
  height: 10px;
  background: url("../img/parts/btn1/arrow.svg") center/contain no-repeat;
  margin-left: 11px;
}

/**
 * CPバナー
 */
.lp-cp {
  overflow: hidden;
  padding-top: 10px;
}
.lp-cp__top-wave {
  margin-bottom: -1px;
}
.lp-cp__bottom-wave {
  margin-top: -1px;
}
.lp-cp__top-wave, .lp-cp__bottom-wave {
  display: block;
  width: 100%;
  height: auto;
}
.lp-cp__top-back-wave {
  fill: var(--color-background3);
}
.lp-cp__top-front-wave {
  fill: var(--color-background2);
}
.lp-cp__bg {
  position: relative;
  background: var(--color-background2);
}
.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: 20px 0;
}
.lp-cp__list.slick-initialized {
  display: block;
}
.lp-cp__list .slick-track {
  padding-bottom: 10px;
}
.lp-cp__list .slick-arrow {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  font-size: 0;
  z-index: 5;
}
@media screen and (max-width: 959px) {
  .lp-cp__list .slick-arrow {
    width: 30px;
    height: 30px;
  }
}
.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(-15px) translateX(-425px);
}
@media screen and (max-width: 959px) {
  .lp-cp__list .slick-arrow.slick-prev {
    transform: translateY(-50%) translateY(-5px) translateX(-150px);
  }
}
.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(-15px) translateX(425px);
}
@media screen and (max-width: 959px) {
  .lp-cp__list .slick-arrow.slick-next {
    transform: translateY(-50%) translateY(-5px) translateX(150px);
  }
}
.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 3px;
  }
}
.lp-cp__list .slick-dots li button {
  font-size: 0;
  padding: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
}
@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: var(--color-accent);
}
.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 320px;
    max-width: 320px;
    min-width: 320px;
    padding: 0 10px;
  }
}
.lp-cp__item img {
  width: 100%;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}

/**
 * トップメッセージ
 */
.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;
}
@media screen and (max-width: 750px) {
  .lp-goods {
    margin-top: -17px;
    overflow: hidden;
  }
}
.lp-goods__inner {
  position: relative;
  max-width: 1090px;
  padding: 0 30px;
  padding-top: 168px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .lp-goods__inner {
    padding: 0 17px;
    padding-top: 136px;
  }
}
.lp-goods__deco-tr {
  position: absolute;
  width: 170px;
  height: 126px;
  top: 20px;
  right: 30px;
}
@media screen and (max-width: 959px) {
  .lp-goods__deco-tr {
    width: 85px;
    height: 62px;
    top: 40px;
    right: -3px;
  }
}
.lp-goods__deco-tr::before, .lp-goods__deco-tr::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lp-goods__deco-tr::before {
  background: var(--color-background2);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-image: url("../img/parts/lp-goods/deco-tr1.svg");
}
.lp-goods__deco-tr::after {
  background: var(--color-background3);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-image: url("../img/parts/lp-goods/deco-tr2.svg");
}
.lp-goods__pic1 {
  position: absolute;
  width: 260px;
  height: 260px;
  background: var(--color-background2);
  padding: 10px;
  border-radius: 50%;
  top: -27px;
  left: 140px;
}
@media screen and (max-width: 959px) {
  .lp-goods__pic1 {
    width: 130px;
    height: 130px;
    padding: 5px;
    top: 0;
    left: 64px;
  }
}
.lp-goods__pic1 img {
  border-radius: 50%;
}
.lp-goods__pic1::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--color-background3);
  border-radius: 50%;
  left: 300px;
  top: 110px;
}
@media screen and (max-width: 959px) {
  .lp-goods__pic1::after {
    left: 146px;
    top: 58px;
    width: 9px;
    height: 9px;
  }
}
.lp-goods__pic2 {
  position: absolute;
  width: 165px;
  height: 165px;
  background: var(--color-background2);
  padding: 10px;
  border-radius: 50%;
  top: 190px;
  left: 0;
}
@media screen and (max-width: 959px) {
  .lp-goods__pic2 {
    width: 82px;
    height: 82px;
    padding: 5px;
    top: 108px;
    left: -6px;
  }
}
.lp-goods__pic2 img {
  border-radius: 50%;
}
.lp-goods__pic2::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--color-background2);
  border-radius: 50%;
  left: 31px;
  top: -31px;
}
@media screen and (max-width: 959px) {
  .lp-goods__pic2::before {
    width: 9px;
    height: 9px;
    left: 16px;
    top: -18px;
  }
}
.lp-goods__pic2::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  background: var(--color-background2);
  border-radius: 50%;
  left: 213px;
  top: 79px;
}
@media screen and (max-width: 959px) {
  .lp-goods__pic2::after {
    width: 17px;
    height: 17px;
    left: 107px;
    top: 39px;
  }
}
.lp-goods .c-ttl1 {
  padding-top: 173px;
  margin-bottom: 46px;
}
@media screen and (max-width: 750px) {
  .lp-goods .c-ttl1 {
    padding-top: 83px;
    margin-bottom: 27px;
  }
}
.lp-goods .c-ttl1__en {
  text-align: right;
  right: -22px;
}
.lp-goods__list-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.lp-goods__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: var(--goods-col-position);
  gap: 18px;
  margin-bottom: 53px;
}
@media screen and (max-width: 750px) {
  .lp-goods__list {
    gap: 11px;
    margin-bottom: 21px;
  }
}

.lp-goods-item {
  flex: 0 1 calc((100% - (var(--goods-col-num) - 1) * 18px) / var(--goods-col-num));
}
.lp-goods-item__pic {
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
  margin-bottom: 10px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .lp-goods-item__pic {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 7px;
  }
}
.lp-goods-item__pic img {
  max-width: 80%;
  max-height: 80%;
  height: auto;
  width: auto;
}
.lp-goods-item__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  min-height: 70px;
  font-feature-settings: "palt";
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .lp-goods-item__name {
    font-size: 12px;
    min-height: 22px;
    margin: 0 -8px;
  }
}

/**
 * カテゴリボタンリスト
 */
.lp-catlist {
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15);
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .lp-catlist {
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  }
}
.lp-catlist__ttl {
  background: var(--color-text);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  padding: 6px 0;
}
@media screen and (max-width: 750px) {
  .lp-catlist__ttl {
    font-size: 12px;
    font-weight: 500;
  }
}
.lp-catlist__ttl::before, .lp-catlist__ttl::after {
  content: "";
  flex: 0 0 22px;
  height: 2px;
}
@media screen and (max-width: 750px) {
  .lp-catlist__ttl::before, .lp-catlist__ttl::after {
    flex: 0 0 14px;
    height: 1px;
  }
}
.lp-catlist__ttl::before {
  margin-right: 13px;
}
@media screen and (max-width: 750px) {
  .lp-catlist__ttl::before {
    margin-right: 7px;
  }
}
.lp-catlist__ttl::after {
  margin-left: 13px;
}
@media screen and (max-width: 750px) {
  .lp-catlist__ttl::after {
    margin-left: 7px;
  }
}
.lp-catlist__body {
  background: #fff;
  padding: 26px 36px 24px;
}
@media screen and (max-width: 750px) {
  .lp-catlist__body {
    padding: 19px 17px 13px;
  }
}
.lp-catlist__list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
}
@media screen and (max-width: 750px) {
  .lp-catlist__list {
    margin-right: -6px;
  }
}
.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% - 6px);
    margin-right: 6px;
    margin-bottom: 6px;
  }
}
.lp-catlist__item a, .lp-catlist__item button {
  display: flex;
  margin: 0 auto;
  align-items: center;
  width: 100%;
  height: 61px;
  font-size: 16px;
  font-weight: 700;
  background: var(--color-background1);
  color: var(--color-text);
  text-align: left;
  padding: 0 14px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .lp-catlist__item a, .lp-catlist__item button {
    font-size: 14px;
    height: 46px;
  }
}
.lp-catlist__item--all {
  flex: 0 0 100%;
  max-width: calc(100% - 6px);
  text-align: center;
  margin-bottom: 17px;
}
@media screen and (max-width: 750px) {
  .lp-catlist__item--all {
    margin-bottom: 6px;
  }
}
.lp-catlist__item--all a, .lp-catlist__item--all button {
  text-align: center;
  justify-content: center;
  max-width: 240px;
  height: 46px;
}
@media screen and (max-width: 750px) {
  .lp-catlist__item--all a, .lp-catlist__item--all button {
    max-width: none;
  }
}
.lp-catlist__item.is-active a, .lp-catlist__item.is-active button {
  background: var(--color-background2);
  color: #fff;
}
.lp-catlist__item-bg {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
}
.lp-catlist__item-bg img {
  height: 100%;
  width: auto;
}

/**
 * 買取実績
 */
.lp-jisseki {
  overflow: hidden;
  padding-bottom: 58px;
}
.lp-jisseki__inner {
  max-width: 1090px;
  padding: 0 30px;
  padding-top: 102px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .lp-jisseki__inner {
    padding: 0 17px;
    padding-top: 60px;
  }
}
.lp-jisseki__deco-bl {
  position: absolute;
  top: 0;
  left: 31px;
  width: 342px;
  height: 71px;
}
@media screen and (max-width: 750px) {
  .lp-jisseki__deco-bl {
    width: 97px;
    height: 35px;
    left: 32px;
  }
}
.lp-jisseki__deco-bl::before, .lp-jisseki__deco-bl::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lp-jisseki__deco-bl::before {
  background: var(--color-background2);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-image: url("../img/parts/lp-jisseki/deco-bl1.svg");
}
@media screen and (max-width: 750px) {
  .lp-jisseki__deco-bl::before {
    -webkit-mask-image: url("../img/parts/lp-jisseki/deco-bl1-sp.svg");
  }
}
.lp-jisseki__deco-bl::after {
  background: var(--color-background3);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-image: url("../img/parts/lp-jisseki/deco-bl2.svg");
}
@media screen and (max-width: 750px) {
  .lp-jisseki__deco-bl::after {
    -webkit-mask-image: url("../img/parts/lp-jisseki/deco-bl2-sp.svg");
  }
}
.lp-jisseki__deco-br {
  position: absolute;
  top: 2px;
  right: 24px;
  width: 221px;
  height: 56px;
}
@media screen and (max-width: 750px) {
  .lp-jisseki__deco-br {
    right: 37px;
    width: 33px;
    height: 28px;
  }
}
.lp-jisseki__deco-br::before, .lp-jisseki__deco-br::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lp-jisseki__deco-br::before {
  background: var(--color-background2);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-image: url("../img/parts/lp-jisseki/deco-br1.svg");
}
@media screen and (max-width: 750px) {
  .lp-jisseki__deco-br::before {
    -webkit-mask-image: url("../img/parts/lp-jisseki/deco-br1-sp.svg");
  }
}
.lp-jisseki__deco-br::after {
  background: var(--color-background3);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-image: url("../img/parts/lp-jisseki/deco-br2.svg");
}
@media screen and (max-width: 750px) {
  .lp-jisseki__deco-br::after {
    -webkit-mask-image: url("../img/parts/lp-jisseki/deco-br2-sp.svg");
  }
}
.lp-jisseki .c-ttl1 {
  padding-top: 71px;
  margin-bottom: 46px;
}
@media screen and (max-width: 750px) {
  .lp-jisseki .c-ttl1 {
    padding-top: 31px;
    margin-bottom: 30px;
  }
}
.lp-jisseki .c-ttl1__en {
  text-align: right;
}
@media screen and (max-width: 750px) {
  .lp-jisseki .c-ttl1__en {
    text-align: left;
    left: -17px;
  }
}
.lp-jisseki .lp-catlist {
  margin-bottom: 53px;
}
.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: 50px;
  }
}
.lp-jisseki__container {
  display: none;
  position: relative;
}
.lp-jisseki__container.is-active {
  display: block;
}
@media screen and (max-width: 750px) {
  .lp-jisseki__container .c-btn1 a {
    max-width: 219px;
  }
}
.lp-jisseki--archive .lp-jisseki__inner {
  padding-top: 20px;
}
.lp-jisseki--archive .lp-jisseki__inner::before, .lp-jisseki--archive .lp-jisseki__inner::after {
  content: none;
}
.lp-jisseki--archive .c-ttl1__en {
  text-align: left;
}
@media screen and (max-width: 750px) {
  .lp-jisseki--archive .c-ttl1__en {
    left: -18px;
  }
}

.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: 18px;
  }
}
.lp-jisseki-item__thumb {
  position: relative;
}
.lp-jisseki-item__pic {
  position: relative;
}
.lp-jisseki-item__pic::before {
  content: "";
  display: block;
  padding-top: 75%;
  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;
  inset: 0;
  display: flex;
  flex-wrap: wrap-reverse;
  flex-direction: column-reverse;
  align-content: flex-start;
  padding: 11px 10px;
}
.lp-jisseki-item__tag {
  background: var(--color-background2);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: center;
  min-width: 82px;
  line-height: 1.5;
  padding: 2px 5px;
  border-radius: 100px;
  margin-top: 5px;
  margin-left: 5px;
}
.lp-jisseki-item__body {
  padding: 21px 19px 15px;
}
.lp-jisseki-item__ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 12px;
}
@media screen and (max-width: 750px) {
  .lp-jisseki-item__ttl {
    font-size: 17px;
  }
}
.lp-jisseki-item__desc {
  line-height: 1.72;
  max-height: 5.16em;
  overflow: hidden;
}
.lp-jisseki-item__desc strong {
  font-weight: 700;
}
.lp-jisseki-item__desc em {
  font-style: italic;
}
@media screen and (max-width: 750px) {
  .lp-jisseki-item__desc {
    font-size: 14px;
  }
}

.lp-jisseki-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 2px #808080;
  padding-bottom: 5px;
  margin-bottom: 12px;
}
@media screen and (max-width: 750px) {
  .lp-jisseki-price {
    margin-bottom: 7px;
    border-bottom-width: 1px;
  }
}
.lp-jisseki-price__label {
  font-size: 13px;
  font-weight: 700;
  background: var(--color-cv);
  color: #fff;
  padding: 3px 9px;
}
@media screen and (max-width: 750px) {
  .lp-jisseki-price__label {
    font-size: 13px;
    font-weight: 400;
  }
}
.lp-jisseki-price__amount {
  flex: 1 0 auto;
  font-size: 16px;
  font-weight: 700;
  text-align: right;
  max-width: 100%;
  color: var(--color-cv);
}
@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-sec {
  max-width: 474px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 750px) {
  .lp-jisseki-sec {
    margin-bottom: 32px;
  }
}
.lp-jisseki-sec__ttl {
  text-align: center;
}
.lp-jisseki-sec__ttl span {
  display: inline-block;
  background: var(--color-background2);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 8px 16px;
}
@media screen and (max-width: 750px) {
  .lp-jisseki-sec__ttl span {
    font-size: 15px;
    padding: 6px 16px;
  }
}
.lp-jisseki-sec__body {
  background: #fff;
  color: var(--color-text);
  padding: 21px 0;
}
@media screen and (max-width: 750px) {
  .lp-jisseki-sec__body {
    padding: 14px 0;
  }
}
.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;
  }
}

.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-bottom: 35px;
}
.lp-market__deco-tl {
  position: absolute;
  top: 117px;
  left: 40px;
  width: 186px;
  height: 102px;
}
@media screen and (max-width: 750px) {
  .lp-market__deco-tl {
    top: 84px;
    left: 15px;
    width: 93px;
    height: 51px;
  }
}
.lp-market__deco-tl::before, .lp-market__deco-tl::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lp-market__deco-tl::before {
  background: var(--color-background2);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-image: url("../img/parts/lp-market/deco-tl1.svg");
}
.lp-market__deco-tl::after {
  background: var(--color-background3);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-image: url("../img/parts/lp-market/deco-tl2.svg");
}
.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;
  }
}
.lp-market__inner--top {
  padding-top: 218px;
}
@media screen and (max-width: 750px) {
  .lp-market__inner--top {
    padding-top: 178px;
  }
}
.lp-market__pic1 {
  position: absolute;
  top: 13px;
  right: 186px;
  width: 224px;
  height: 224px;
  background: var(--color-background2);
  padding: 10px;
  border-radius: 50%;
}
@media screen and (max-width: 750px) {
  .lp-market__pic1 {
    width: 112px;
    height: 112px;
    padding: 5px;
    top: 31px;
    right: 77px;
  }
}
.lp-market__pic1 img {
  border-radius: 50%;
}
.lp-market__pic1::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-background2);
  top: 56px;
  left: -42px;
}
@media screen and (max-width: 750px) {
  .lp-market__pic1::before {
    width: 9px;
    height: 9px;
    top: 28px;
    left: -21px;
  }
}
.lp-market__pic1::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-background3);
  right: -81px;
  top: 49px;
}
@media screen and (max-width: 750px) {
  .lp-market__pic1::after {
    width: 17px;
    height: 17px;
    right: -40px;
    top: 25px;
  }
}
.lp-market__pic2 {
  position: absolute;
  top: 171px;
  right: 21px;
  width: 152px;
  height: 152px;
  background: var(--color-background2);
  padding: 10px;
  border-radius: 50%;
}
@media screen and (max-width: 750px) {
  .lp-market__pic2 {
    top: 110px;
    right: -5px;
    width: 76px;
    height: 76px;
    padding: 5px;
  }
}
.lp-market__pic2 img {
  border-radius: 50%;
}
.lp-market__pic2::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-background2);
  top: 94px;
  left: -60px;
}
@media screen and (max-width: 750px) {
  .lp-market__pic2::before {
    width: 9px;
    height: 9px;
    top: 47px;
    left: -30px;
  }
}
.lp-market .c-ttl1 {
  padding-top: 71px;
  margin-bottom: 37px;
}
@media screen and (max-width: 750px) {
  .lp-market .c-ttl1 {
    padding-top: 33px;
    margin-bottom: 18px;
  }
}
.lp-market .c-ttl1__en {
  left: 138px;
}
@media screen and (max-width: 750px) {
  .lp-market .c-ttl1__en {
    left: -19px;
  }
}
.lp-market__pickup {
  max-width: 932px;
  margin: 0 auto 38px;
  overflow: hidden;
}
.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;
  }
}
@media screen and (max-width: 750px) {
  .lp-market__pickup-list .slick-slide {
    padding-left: 17px;
    padding-right: 17px;
    padding-bottom: 7px;
  }
}
.lp-market__pickup-list .slick-dots {
  display: flex;
  justify-content: center;
}
.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: var(--color-text);
}
.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 7px 0;
  }
}
.lp-market-pickup__balloon {
  position: absolute;
  top: 0px;
  left: 8px;
  width: 56px;
  height: 56px;
  z-index: 1;
  filter: drop-shadow(1.16px 1.16px 1.16px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 750px) {
  .lp-market-pickup__balloon {
    left: 0;
    width: 48px;
    height: 48px;
  }
}
.lp-market-pickup__balloon::before {
  content: "";
  display: block;
  background: url("../img/parts/lp-market/balloon.svg") center/100% 100% no-repeat var(--color-accent);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-image: url("../img/parts/lp-market/balloon-mask.svg");
  width: 100%;
  height: 100%;
}
.lp-market-pickup__inner {
  padding-bottom: 16px;
}
.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.5%;
}
.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;
  margin-bottom: 7px;
}
.lp-market-pickup__maker span {
  display: inline-block;
  background: var(--color-background2);
  color: #fff;
  letter-spacing: 0.03em;
  padding: 3px 10px;
}
.lp-market-pickup__name {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.2857142857;
  margin-bottom: 18px;
}
@media screen and (max-width: 750px) {
  .lp-market-pickup__name {
    font-size: 13px;
    margin-bottom: 0;
  }
}
.lp-market-pickup__price {
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-cv);
}
@media screen and (max-width: 750px) {
  .lp-market-pickup__price {
    font-size: 13px;
  }
}
.lp-market-pickup__num {
  font-size: 22px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 750px) {
  .lp-market-pickup__num {
    font-size: 19px;
  }
}

.lp-market-data {
  position: relative;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  max-width: 900px;
  margin: 0 auto;
}
.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: var(--color-text);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding: 6px 0;
}
@media screen and (max-width: 750px) {
  .lp-market-data__ttl {
    font-size: 12px;
  }
}
.lp-market-data__ttl::before, .lp-market-data__ttl::after {
  content: "";
  flex: 0 0 25px;
  height: 2px;
  background: url("../img/parts/lp-market/data-dot.svg") center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .lp-market-data__ttl::before, .lp-market-data__ttl::after {
    flex: 0 0 14px;
    height: 1px;
  }
}
.lp-market-data__ttl::before {
  margin-right: 13px;
}
@media screen and (max-width: 750px) {
  .lp-market-data__ttl::before {
    margin-right: 7px;
  }
}
.lp-market-data__ttl::after {
  margin-left: 13px;
}
@media screen and (max-width: 750px) {
  .lp-market-data__ttl::after {
    margin-left: 7px;
  }
}
.lp-market-data__body {
  background: #fff;
  padding: 20px 16px 0;
}
.lp-market-data .lp-catlist {
  box-shadow: none;
  margin-bottom: 8px;
}
@media screen and (max-width: 750px) {
  .lp-market-data .lp-catlist {
    margin-bottom: 14px;
  }
}
.lp-market-data .lp-catlist__item--all {
  margin-bottom: 11px;
}
.lp-market-data .lp-catlist__body {
  padding: 0;
  margin: 0;
  background: transparent;
}

.lp-market-search {
  display: flex;
  margin-bottom: 18px;
}
.lp-market-search__text {
  flex: 1 0 0px;
  margin-right: 14px;
}
.lp-market-search__text input[type=text] {
  width: 100%;
  height: 35px;
  font-size: 16px;
  background: #f0f0f0;
  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: #ffc91b;
  color: #fff;
  border-radius: 5px;
  box-shadow: 1px 1px 4px 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;
  color: var(--color-market-table-title);
  display: flex;
  border-bottom: solid 1px #808080;
  padding-bottom: 3px;
}
@media screen and (max-width: 750px) {
  .lp-market-table__header {
    font-size: 10px;
  }
}
.lp-market-table__head-pic {
  flex: 0 0 103px;
  margin-right: 13px;
}
.lp-market-table__head-other {
  flex: 1 0 0px;
  text-align: right;
}
.lp-market-table__body {
  height: 394px;
  overflow: auto;
}

.lp-market-table-row {
  display: flex;
  align-items: flex-start;
  padding: 14px 0;
}
.lp-market-table-row:not(:last-child) {
  border-bottom: solid 1px #e6e6e6;
}
.lp-market-table-row__pic {
  flex: 0 0 103px;
  margin-right: 13px;
  position: relative;
}
.lp-market-table-row__pic::before {
  content: "";
  display: block;
  padding-top: 81.553%;
  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__maker {
  font-size: 12px;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
@media screen and (max-width: 750px) {
  .lp-market-table-row__maker {
    font-size: 11px;
  }
}
.lp-market-table-row__maker span {
  display: inline-block;
  background: var(--color-background2);
  color: #fff;
  padding: 3px 10px;
}
.lp-market-table-row__name {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.2307692308;
}
@media screen and (max-width: 750px) {
  .lp-market-table-row__name {
    font-size: 13px;
  }
}
.lp-market-table-row__price {
  color: var(--color-cv);
  font-weight: 700;
  font-size: 13px;
  text-align: right;
}
.lp-market-table-row__num {
  font-size: 22px;
}
@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: 37px;
  }
}
.lp-voice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 347px;
  background: linear-gradient(#fff, #fff 87px, transparent 100%);
}
@media screen and (max-width: 750px) {
  .lp-voice::before {
    height: 73px;
    background: linear-gradient(#fff, transparent 100%);
  }
}
.lp-voice__deco-tr {
  position: absolute;
  width: 283px;
  height: 105px;
  top: 40px;
  right: -56px;
}
@media screen and (max-width: 750px) {
  .lp-voice__deco-tr {
    width: 142px;
    height: 52px;
    top: 41px;
    right: -5px;
  }
}
.lp-voice__deco-tr::before, .lp-voice__deco-tr::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lp-voice__deco-tr::before {
  background: var(--color-background2);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-image: url("../img/parts/lp-voice/deco-tr1.svg");
}
.lp-voice__deco-tr::after {
  background: var(--color-background3);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-image: url("../img/parts/lp-voice/deco-tr2.svg");
}
.lp-voice .c-inner {
  padding-top: 256px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .lp-voice .c-inner {
    padding-top: 168px;
  }
}
.lp-voice__pic1 {
  position: absolute;
  width: 156px;
  height: 156px;
  padding: 10px;
  background: var(--color-background2);
  border-radius: 50%;
  top: 0;
  left: 234px;
}
@media screen and (max-width: 750px) {
  .lp-voice__pic1 {
    width: 78px;
    height: 78px;
    padding: 5px;
    top: 15px;
    left: 138px;
  }
}
.lp-voice__pic1 img {
  border-radius: 50%;
}
.lp-voice__pic1::before {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  background: var(--color-background3);
  top: 194px;
  right: 22px;
  border-radius: 50%;
}
@media screen and (max-width: 750px) {
  .lp-voice__pic1::before {
    width: 17px;
    height: 17px;
    top: 97px;
    right: 11px;
  }
}
.lp-voice__pic2 {
  position: absolute;
  width: 309px;
  height: 309px;
  padding: 10px;
  background: var(--color-background2);
  border-radius: 50%;
  top: 28px;
  left: -76px;
}
@media screen and (max-width: 750px) {
  .lp-voice__pic2 {
    width: 155px;
    height: 155px;
    padding: 5px;
    top: 30px;
    left: -18px;
  }
}
.lp-voice__pic2 img {
  border-radius: 50%;
}
.lp-voice__pic2::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--color-background2);
  top: 190px;
  right: -67px;
  border-radius: 50%;
}
@media screen and (max-width: 750px) {
  .lp-voice__pic2::before {
    width: 9px;
    height: 9px;
    top: 95px;
    right: -34px;
  }
}
.lp-voice .c-ttl1 {
  padding-top: 70px;
  margin-bottom: 52px;
}
@media screen and (max-width: 750px) {
  .lp-voice .c-ttl1 {
    padding-top: 33px;
    margin-bottom: 31px;
  }
}
.lp-voice .c-ttl1__en {
  text-align: right;
  right: 98px;
}
@media screen and (max-width: 750px) {
  .lp-voice .c-ttl1__en {
    right: -25px;
  }
}

.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;
  position: relative;
  padding: 0 25px 10px;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__main {
    max-width: none;
    margin-right: 0;
    padding: 0 15px 20px;
  }
}
.lp-voice-item__customer {
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  overflow: hidden;
  top: -8px;
  left: -7px;
  background: #fff;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__customer {
    width: 60px;
    height: 60px;
    top: -6px;
    left: -6px;
  }
}
.lp-voice-item__head {
  padding-left: 51px;
  padding-top: 23px;
  padding-bottom: 16px;
  border-bottom: solid 1px #808080;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__head {
    padding-left: 47px;
    padding-top: 18px;
    padding-bottom: 11px;
    margin-bottom: 16px;
  }
}
.lp-voice-item__name {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 12px;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__name {
    font-size: 15px;
    margin-bottom: 0;
  }
}
.lp-voice-item__data {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.lp-voice-item__rate {
  font-size: 0;
  padding: 3px 0;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__rate {
    padding: 6px 0;
  }
}
@media screen and (max-width: 750px) {
  .lp-voice-item__rate img {
    width: 14px;
    margin-right: 2px;
  }
}
.lp-voice-item__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.lp-voice-item__tag {
  background: var(--color-background2);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.05em;
  border-radius: 100px;
  padding: 2px 17px;
  margin: 3px 0 3px 7px;
}
.lp-voice-item__ttl {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 17px;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__ttl {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.lp-voice-item__desc {
  font-size: 14px;
  line-height: 1.4285714286;
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .lp-voice-item__desc {
    font-size: 13px;
    line-height: 1.3846153846;
  }
}
.lp-voice-item__desc::after {
  content: "";
  display: block;
  clear: both;
}
.lp-voice-item__pic {
  float: right;
  width: 100px;
  height: 100px;
  background: #fafafa;
  position: relative;
  margin-left: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__pic {
    width: 80px;
    height: 80px;
    margin-left: 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 {
  margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__txt {
    margin-bottom: 0;
  }
}
.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;
  background: var(--color-background3);
  color: var(--color-text);
  padding: 0 26px 24px;
  position: relative;
  min-height: 200px;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__staff {
    max-width: none;
    margin-right: 0;
    margin-top: 16px;
    padding: 0 15px 14px;
    min-height: auto;
  }
}
.lp-voice-item__staff::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 88px;
  border-right: solid 14px var(--color-background3);
  border-top: solid 10px transparent;
  border-bottom: solid 10px transparent;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__staff::after {
    border-top: none;
    border-right: solid 8px transparent;
    border-left: solid 8px transparent;
    border-bottom: solid 11px var(--color-background3);
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.lp-voice-item__staff-head {
  border-bottom: solid 1px var(--color-background2);
  padding: 25px 0 18px;
  margin-bottom: 21px;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__staff-head {
    padding: 17px 0 14px;
    margin-bottom: 16px;
  }
}
.lp-voice-item__staff-pic {
  position: absolute;
  width: 74px;
  height: 74px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  top: -8px;
  left: -7px;
  overflow: hidden;
}
.lp-voice-item__staff-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.lp-voice-item__staff-name {
  font-size: 16px;
  font-weight: 500;
  padding-left: 57px;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__staff-name {
    font-size: 14px;
  }
}
.lp-voice-item__staff-name--no-pic {
  padding-left: 0;
}
.lp-voice-item__staff-desc {
  font-size: 14px;
  line-height: 1.4285714286;
}
@media screen and (max-width: 750px) {
  .lp-voice-item__staff-desc {
    font-size: 13px;
    line-height: 1.3846153846;
  }
}
.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-right: solid 14px var(--color-background3);
  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 8px transparent;
    border-left: solid 8px transparent;
    border-bottom: solid 11px var(--color-background3);
    bottom: 100%;
    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-faq {
  background: #fff;
  padding-top: 96px;
  padding-bottom: 120px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .lp-faq {
    padding-top: 12px;
    padding-bottom: 54px;
  }
}
.lp-faq__inner {
  max-width: 740px;
  padding: 0 30px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .lp-faq__inner {
    padding: 0 17px;
  }
}
.lp-faq__inner::before {
  content: "";
  position: absolute;
  right: -57px;
  top: 67px;
  width: 181px;
  height: 1621px;
  background: var(--color-background1);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-image: url("../img/parts/lp-faq/bg1.svg");
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  .lp-faq__inner::before {
    width: 85px;
    height: 1088px;
    top: 56px;
    right: -25px;
    -webkit-mask-image: url("../img/parts/lp-faq/bg1-sp.svg");
  }
}
.lp-faq__inner::after {
  content: "";
  position: absolute;
  left: -102px;
  top: 139px;
  width: 188px;
  height: 1580px;
  background: var(--color-background1);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-image: url("../img/parts/lp-faq/bg2.svg");
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  .lp-faq__inner::after {
    width: 78px;
    height: 1071px;
    top: 87px;
    left: -15px;
    -webkit-mask-image: url("../img/parts/lp-faq/bg2-sp.svg");
  }
}
.lp-faq .c-ttl1 {
  padding-top: 74px;
  margin-bottom: 14px;
}
@media screen and (max-width: 750px) {
  .lp-faq .c-ttl1 {
    padding-top: 32px;
  }
}
.lp-faq .c-ttl1__en {
  color: var(--color-background1);
  left: 108px;
}
@media screen and (max-width: 750px) {
  .lp-faq .c-ttl1__en {
    left: 0;
  }
}
.lp-faq__list {
  position: relative;
  z-index: 1;
}

.lp-faq-item {
  padding: 38px 21px;
}
@media screen and (max-width: 750px) {
  .lp-faq-item {
    padding: 18px 4px;
  }
}
.lp-faq-item__question {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 32px;
}
@media screen and (max-width: 750px) {
  .lp-faq-item__question {
    margin-bottom: 16px;
    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 var(--color-background2);
  margin-right: 15px;
  align-self: flex-start;
  border-radius: 50%;
}
@media screen and (max-width: 750px) {
  .lp-faq-item__question::before {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    margin-right: 10px;
  }
}
.lp-faq-item__answer {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--color-text);
  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;
  align-self: flex-start;
}
@media screen and (max-width: 750px) {
  .lp-faq-item__answer::before {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    margin-right: 10px;
  }
}
.lp-faq-item__answer strong {
  font-weight: 700;
}
.lp-faq-item__answer em {
  font-style: italic;
}
.lp-faq-item + .lp-faq-item {
  border-top: solid 1px #e6e6e6;
}


/**
 * お問合せフォーム
 */
.lp-contact-form {
  font-size: 16px;
}
.lp-contact-form__field {
  margin-bottom: 16px;
}
.lp-contact-form__label {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}
@media screen and (max-width: 750px) {
  .lp-contact-form__label {
    font-size: 13px;
  }
}
.lp-contact-form__tag {
  font-size: 10px;
  color: #8bbb45;
  font-weight: 500;
  margin-left: 9px;
}
.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;
  color: var(--color-text);
  width: 100%;
  border-radius: 5px;
  padding: 0 21px 0 11px;
  font-size: 16px;
  height: 40px;
}
@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],
.lp-contact-form input[type=tel] {
  background: #fff;
  color: var(--color-text);
  border-radius: 5px;
  padding: 0 11px;
  width: 100%;
  height: 40px;
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .lp-contact-form input[type=text],
.lp-contact-form input[type=email],
.lp-contact-form input[type=tel] {
    font-size: 12px;
  }
}
.lp-contact-form .multifile_group .multifile_item + .multifile_item {
  margin-top: 5px;
}
.lp-contact-form .multifile_group .multifile_label {
  font-size: 16px;
  color: var(--color-text);
  letter-spacing: 0.05em;
  margin-right: 10px;
}
@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: var(--color-text);
  color: #fff;
  border-radius: 5px;
  height: 28px;
  font-size: 16px;
  padding: 0 14px;
  height: 40px;
}
@media screen and (max-width: 750px) {
  .lp-contact-form .multifile_group button {
    font-size: 12px;
    height: 28px;
    padding: 0 7px;
  }
}
.lp-contact-form .multifile_group .multifile_add {
  width: 100%;
  margin-top: 5px;
}
.lp-contact-form textarea {
  background: #fff;
  color: var(--color-text);
  border-radius: 5px;
  padding: 10px 11px;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .lp-contact-form textarea {
    font-size: 12px;
    height: 172px;
  }
}
.lp-contact-form__zipcode-row {
  display: flex;
}
.lp-contact-form__zipcode-row input[type=text] {
  flex: 0 0 170px;
  width: 170px;
  margin-right: 6px;
}
.lp-contact-form__zipcode-row button {
  background: var(--color-text);
  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 117px;
  }
}
.lp-contact-form__note {
  font-size: 11px;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
.lp-contact-form__privacypolicy {
  background: #fff;
  font-size: 14px;
  line-height: 1.3333333333;
  color: var(--color-text);
  border-radius: 5px;
  height: 108px;
  overflow: auto;
  padding: 14px;
}
@media screen and (max-width: 750px) {
  .lp-contact-form__privacypolicy {
    font-style: 12px;
  }
}
.lp-contact-form__submit {
  text-align: center;
}
.lp-contact-form__submit input[type=submit] {
  border-radius: 100px;
  background: var(--color-cv);
  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 input[type=submit]:hover {
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .lp-contact-form__submit input[type=submit] {
    font-size: 14px;
    padding: 17px 0;
    max-width: 300px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
  }
}
.lp-contact-form__submit > p {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.lp-contact-form__submit .wpcf7-spinner {
  position: absolute;
  bottom: -25px;
}
.lp-contact-form__submit-note {
  font-size: 12px;
  color: var(--color-text);
  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;
}
.lp-contact-form__recaptcha .g-recaptcha .wpcf7-not-valid-tip {
  text-align: center;
}

.lp-contact-multifile__add {
  width: 100%;
  background: var(--color-text);
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  padding: 0 14px;
  height: 40px;
  margin-top: 8px;
}
@media screen and (max-width: 750px) {
  .lp-contact-multifile__add {
    font-size: 13px;
  }
}

.lp-contact-multifile-item {
  display: none;
}
@media screen and (max-width: 750px) {
  .lp-contact-multifile-item {
    font-size: 13px;
  }
}
.lp-contact-multifile-item.is-show {
  display: flex;
  align-items: center;
}
.lp-contact-multifile-item__label {
  color: var(--color-text);
  letter-spacing: 0.05em;
  margin-right: 10px;
  flex: 0 0 120px;
}
@media screen and (max-width: 750px) {
  .lp-contact-multifile-item__label {
    flex: 0 0 100px;
  }
}
.lp-contact-multifile-item__btn {
  background: var(--color-text);
  color: #fff;
  border-radius: 5px;
  height: 28px;
  font-size: 16px;
  padding: 0 14px;
  height: 40px;
}
@media screen and (max-width: 750px) {
  .lp-contact-multifile-item__btn {
    font-size: 12px;
    height: 28px;
    padding: 0 7px;
  }
}
.lp-contact-multifile-item__field input[type=file] {
  display: none !important;
}
.lp-contact-multifile-item + .lp-contact-multifile-item {
  margin-top: 5px;
}

.cotactform7-file-delete {
  background: none;
  cursor: pointer;
  visibility: hidden;
}

/**
 * 多くの方にご満足いただいています
 */
.lp-thankyou {
  background: var(--color-background2);
  color: #fff;
  padding-top: 40px;
  padding-bottom: 28px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou {
    padding-top: 21px;
    padding-bottom: 15px;
  }
}
.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;
  color: var(--color-strength-text);
}
@media screen and (max-width: 750px) {
  .lp-thankyou__ttl {
    font-size: 18px;
    line-height: 1.3333333333;
    padding-top: 26px;
    margin-bottom: 17px;
  }
}
.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;
  justify-content: center;
  margin: 0 -13px 28px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou__points {
    margin-bottom: 15px;
    margin: 0 -7px 15px;
  }
}
.lp-thankyou__btns {
  display: flex;
  position: relative;
}

.lp-thankyou-point {
  flex: 0 0 198px;
  width: 198px;
  margin: 0 13px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-point {
    flex: 0 0 105px;
    width: 105px;
    margin: 0 7px;
  }
}
.lp-thankyou-point__txt1 {
  text-align: center;
  margin-bottom: 2px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-point__txt1 {
    margin-bottom: 1px;
  }
}
.lp-thankyou-point__txt1 span {
  display: inline-block;
  background: var(--color-strength-title-bg);
  color: var(--color-strength-title);
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 22px;
  padding: 6px 30px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-point__txt1 span {
    font-size: 12px;
    padding: 3px 16px;
  }
}
.lp-thankyou-point__txt2 {
  position: relative;
  text-align: center;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2142857143;
  font-size: 26px;
  min-height: 168px;
  padding-bottom: 19px;
  margin: 0 -10px;
  color: var(--color-strength-text);
}
@media screen and (max-width: 750px) {
  .lp-thankyou-point__txt2 {
    font-size: 14px;
    min-height: 89px;
    padding-bottom: 10px;
  }
}
.lp-thankyou-point__txt2 span {
  position: relative;
}
.lp-thankyou-point__txt2 .lp-thankyou-point__laurel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-strength-laurel);
  -webkit-mask-image: url("../img/parts/lp-thankyou/laurel.svg");
  mask-image: url("../img/parts/lp-thankyou/laurel.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.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 {
    border-radius: 10px;
    padding: 15px;
  }
}
.lp-thankyou-contact__note {
  color: var(--color-strength-tel1);
  text-align: center;
  letter-spacing: 0.02em;
  font-size: 23px;
  margin-bottom: 26px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-contact__note {
    font-size: 12px;
    margin-bottom: 14px;
  }
}
.lp-thankyou-contact__note-letter {
  position: relative;
}
.lp-thankyou-contact__note-letter::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--color-strength-tel1);
  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: var(--color-cv);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-contact__quote {
    margin-bottom: 6px;
  }
}
.lp-thankyou-contact__quote::before {
  content: "";
  background: var(--color-cv);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-image: url("../img/parts/lp-thankyou/quote-left.svg");
  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: 7px;
  }
}
.lp-thankyou-contact__quote::after {
  content: "";
  background: var(--color-cv);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-image: url("../img/parts/lp-thankyou/quote-right.svg");
  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: 5px;
  }
}
.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__character {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 212px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-contact__character {
    width: 107px;
  }
}
.lp-thankyou-contact__character img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right bottom;
     object-position: right bottom;
}

.lp-thankyou-tel {
  margin-bottom: 43px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-tel {
    margin-bottom: 23px;
  }
}
.lp-thankyou-tel__link {
  position: relative;
  display: block;
  background: var(--color-cv);
  color: #fff;
  border-radius: 100px;
  padding: 21px 0;
  padding-left: 102px;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.15);
  transition: opacity 0.1s ease;
}
.lp-thankyou-tel__link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-tel__link {
    padding: 11px 0;
    padding-left: 54px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  }
}
.lp-thankyou-tel__link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url("../img/parts/lp-thankyou/tel.svg") center/contain no-repeat;
  left: 23px;
  width: 64px;
  height: 64px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-tel__link::before {
    left: 12px;
    width: 34px;
    height: 34px;
  }
}
.lp-thankyou-tel__num {
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-size: 59px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-tel__num {
    font-size: 31px;
  }
}
.lp-thankyou-tel__open {
  letter-spacing: 0.05em;
  font-size: 23px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-tel__open {
    font-size: 12px;
  }
}

.lp-thankyou-btn {
  flex: 0 0 200px;
  margin-right: 19px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-btn {
    flex: 0 0 106px;
    margin-right: 10px;
  }
}
.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: 8px 0 6px;
    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: 5px;
  }
}
.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 .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-thankyou-btn--only {
  flex-basis: 400px;
}
@media screen and (max-width: 750px) {
  .lp-thankyou-btn--only {
    flex-basis: 218px;
  }
}

/**
 * サンクスページ
 */
.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;
  }
}
