@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 {
  position: relative;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  background: transparent;
  color: #000;
  width: 100%;
}

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

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

em, strong {
  font-style: inherit;
  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;
}

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

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

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

button {
  font: inherit;
}

*:focus {
  outline: none;
}

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

/* IE
-----------------------------------------------------------------*/
main {
  display: block;
}

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

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

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

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

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

:root {
  --header-height: 80px;
  --bottom-bar-height: 83px;
}
@media screen and (max-width: 959px) {
  :root {
    --header-height: 60px;
    --bottom-bar-height: 65px;
  }
}

body {
  padding-top: var(--header-height);
}
@media screen and (max-width: 750px) {
  body {
    padding-bottom: var(--bottom-bar-height);
  }
}

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

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

/**
 * ヘッダー
 */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(22,10,5,0.8);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}
.c-header__brand {
  display: flex;
  align-items: center;
  padding-left: 44px;
}
.c-header__logo {
  margin-right: 26px;
}
.c-header__logo a {
  transition: opacity 0.1s ease;
}
.c-header__logo a:hover {
  opacity: 0.8;
}
.c-header__logo a img {
  width: 52px;
}
.c-header__name {
  padding: 0 4px 3px 0;
}
.c-header__content {
  height: 100%;
  display: flex;
  align-items: center;
}
.c-header__menu {
  height: 100%;
  display: grid;
  grid-template-columns: 620px 220px;
  align-items: center;
  column-gap: 70px;
}
.c-header__menu-list {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 10px;
}
.c-header__menu-item {
  font-weight: 500;
  font-size: 18px;
}
.c-header__menu-item a {
  transition: opacity 0.1s ease;
}
.c-header__menu-item a:hover {
  opacity: 0.8;
}
.c-header__contact {
  width: 100%;
  height: 100%;
}
.c-header__contact a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: url(../img/watch/header/line-btn-bg.jpg) center / cover no-repeat;
  color: #160a05;
  height: 100%;
  font-size: 18px;
  font-weight: 700;
  transition: opacity 0.1s ease;
}
.c-header__contact a:hover {
  opacity: 0.8;
}
.c-header__contact a::before {
  content: "";
  width: 50px;
  height: 50px;
  background: url("../img/watch/header/line-icon.png") center/contain no-repeat;
  margin-right: 15px;
}
.c-header__tel {
  display: none;
}
.c-header__line {
  display: none;
}
@media screen and (max-width: 1700px) {
  .c-header__menu {
    grid-template-columns: calc((100vw / 1700) * 620 ) calc((100vw / 1700) * 220 );
    column-gap: calc((100vw / 1700) * 70 );
  }
}
@media (max-width: 1280px) {
  .c-header__menu {
    grid-template-columns: calc((100vw / 1700) * 620 ) 150px;
  }
  .c-header__brand {
    padding-left: 15px;
  }
  .c-header__name {
    font-size: 16px;
  }
  .c-header__menu-item {
    font-size: 14px;
  }
  .c-header__contact a {
    padding: 5px 10px;
    font-size: 14px;
  }
  .c-header__contact a::before {
    width: 25px;
    height: 25px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 959px) {
  .c-header {
    padding: 0 10px;
  }
  .c-header__brand {
    padding: 0;
  }
  .c-header__logo {
    margin-right: 14px;
  }
  .c-header__name {
	font-size: 14px;
    padding: 4px 4px 0 0;
  }
  .c-header__menu {
    display: none;
  }
  .c-header__line {
    display: block;
    background: transparent;
    border-radius: 0;
    text-align: center;
  }
  .c-header__line a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border: 1px solid #fff;
  }
  .c-header__line img {
    width: 29px;
    height: 23px;
  }
}
@media screen and (max-width:750px) {
  .c-header__name img {
    width: auto;
    height: 34px;
  }
}

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

/**
 * ハンバーガーメニュー
 */
.c-hamburger-menu {
  display: none;
  opacity: 0;
  visibility: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  background: #93835f;
  color: #fff;
  pointer-events: none;
  transition: opacity 0.1s ease, visibility 0.1s ease;
  z-index: 200;
}
.c-hamburger-menu__list {
  padding: 40px 35px;
  font-size: 21px;
  font-weight: 700;
}
.c-hamburger-menu__item + .c-hamburger-menu__item {
  margin-top: 20px;
}
.c-hamburger-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media screen and (max-width: 959px) {
  .c-hamburger-menu {
    display: block;
  }
}

/**
 * 下の追従バー
 */
.c-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--bottom-bar-height);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}
.c-bottom-bar.is-show {
  opacity: 1;
  visibility: visible;
}
.c-bottom-bar__inner {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  background: linear-gradient(to right, #d69d93, #d69d93 2.7806%, #e3c6c6 21.8182%, #caaab2 34.1176%, #d0a8aa 42.4242%, #fefbff 58.7879%, #e4ccd5 77.5758%, #e5b2a0 100%);
}

.c-bottom-bar-line {
  width: 375px;
  height: 65px;
  display: flex;
  margin-inline: auto;
  padding-left: 93px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0;
  position: relative;
}
.c-bottom-bar-line::before {
  content: "";
  aspect-ratio: 172/158;
  width: 86px;
  display: block;
  background: url(../img/watch/lp/bar/bar-character.png) center / cover no-repeat;
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
}
.c-bottom-bar-line__txt {
  display: grid;
  grid-template-columns: 40px 1fr 30px;
  align-items: center;
  column-gap: 16px;
}
.c-bottom-bar-line__txt::before {
  content: "";
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 40px;
  display: block;
  background: url(../img/watch/lp/bar/line-icon.png) center / cover no-repeat;
}
.c-bottom-bar-line__txt::after {
  content: "";
  aspect-ratio: 2/1;
  width: 100%;
  max-width: 30px;
  display: block;
  background: url(../img/watch/lp/bar/bar-arrow.png) center / cover no-repeat;
}
@media screen and (min-width: 751px) {
  .c-bottom-bar-line {
    display: none;
  }
}

.c-footer {
  background: #160a05;
}
.c-footer__logo {
  margin-bottom: 64px;
}
.c-footer__main {
  position: relative;
  padding: 116px 0 100px;
}
.c-footer__to-top {
  position: fixed;
  right: 22px;
  bottom: 106px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}
.c-footer__to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.c-footer__to-top a {
  display: block;
  width: 55px;
  height: 55px;
  font-size: 0;
  background: url("../img/footer/to-top.png") center/contain no-repeat;
  transition: opacity 0.1s ease;
}
.c-footer__to-top a:hover {
  opacity: 0.8;
}
.c-footer__logo {
  text-align: center;
}
.c-footer__address {
  display: flex;
  justify-content: center;
}
.c-footer__list {
  display: block;
  width: calc( 100% - 160px );
  flex-wrap: wrap;
  margin: 0 auto 20px;
  font-size: 18px;
  line-height: 1.75em;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.c-footer__list-item {
  width: auto;
  margin: 0 28px 30px;
}
.c-footer__list-ttl {
  margin-bottom: 37px;
  font-weight: 500;
  font-size: 30px;
  line-height: calc(40/30);
  transition: all ease 0.2s;
}
.c-footer__list-ttl:hover {
  opacity: 0.8;
}
.c-footer__list-desc {
  font-size: 14px;
  line-height: calc(20/13);
}
.c-footer__list-text {
  width: 100%;
  display: inline-flex;
  justify-content: center;
}
.c-footer__list-text dt {
  text-align: left;
}
.c-footer__list-text dd {
  text-align: left;
}
.c-footer__list-smalltext {
  font-size: 11px;
}
.c-footer__info {
  font-weight: 500;
  font-size: 14px;
  line-height: calc(40/26);
  color: #fff;
  text-align: center;
}
.c-footer__copyright {
  background: #000;
  padding: 18px 26px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0;
  color: #fff;
}
@media (max-width: 1430px) {
  .c-footer__list {
    width: 100%;
    max-width: calc( (25% * 3) + (28px * 3) );
    font-size: 14px;
  }
  .c-footer__list-item {
    flex: 0 0 calc( (100% - (28px * 6)) / 3 );
  }
  .c-footer__list-item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 950px) {
  .c-footer__list {
    width: 100%;
    padding: 0 10px;
  }
  .c-footer__list-item {
    flex: 0 0 calc( (100% - (28px * 4)) / 2 );
  }
}
@media screen and (max-width: 750px) {
  .c-footer__to-top {
    display: none;
  }
  .c-footer__main {
    padding: 55px 0 54px;
  }
  .c-footer__logo {
    margin-bottom: 27px;
  }
  .c-footer__logo img {
    width: 120px;
  }
  .c-footer__list-item {
    margin: 0 10px 30px 0;
  }
  .c-footer__list-item:nth-child(2n) {
    margin-right: 0;
  }
  .c-footer__list-item:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }
  .c-footer__list-desc01 {
    text-align: center;
  }
  .c-footer__list-text dd {
    flex: 1;
  }
  .c-footer__list-desc {
    font-size: 13px;
  }
  .c-footer__info {
    font-size: 13px;
  }
  .c-footer__map {
    position: relative;
    height: 160px;
  }
  .c-footer__map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .c-footer__copyright {
    padding: 13px 17px 11.5px;
    font-size: 11px;
  }
}

.c-ttl1 {
  --color: #000;
  --line-color: #e5b2a0;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
.c-ttl1__sub {
  font-size: 17px;
  color: var(--color);
  margin-bottom: 5px;
}
.c-ttl1__sub span {
  position: relative;
}
.c-ttl1__ttl {
  font-weight: 500;
  font-size: 31px;
  color: var(--color);
}
.c-ttl1__ttl span {
  position: relative;
  padding-bottom: 22px;
}
.c-ttl1__ttl span::before,
.c-ttl1__ttl span::after {
  content: "";
  position: absolute;
  bottom: 0;;
  width: 20px;
  height: 1px;
  background: var(--line-color);
}
.c-ttl1__ttl span::before {
  left: calc(50% - 5px);
  transform: translateX(-50%) rotate(58deg);
}
.c-ttl1__ttl span::after {
  left: calc(50% + 5px);
  transform: translateX(-50%) rotate(-58deg);
}
.c-ttl1--white {
  --color: #fff;
}
.c-ttl1--line-orange {
  --line-color: #EF825A;
}
@media screen and (max-width: 750px) {
  .c-ttl1__sub {
    font-size: 11px;
    margin-bottom: 1px;
  }
  .c-ttl1__ttl {
    font-size: 23px;
  }
}

.c-ttl2 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
.c-ttl2__sub {
  font-size: 27px;
  color: #93835f;
  margin-bottom: 20px;
}
.c-ttl2__sub span {
  position: relative;
}
.c-ttl2__sub span::before, .c-ttl2__sub span::after {
  content: "";
  position: absolute;
  top: 7px;
  height: 30px;
  width: 3px;
  background: #93835f;
  border-radius: 100px;
}
.c-ttl2__sub span::before {
  left: -26px;
  transform: rotate(-35deg);
}
.c-ttl2__sub span::after {
  right: -26px;
  transform: rotate(35deg);
}
.c-ttl2__ttl {
  font-size: 31px;
}
.c-ttl2__ttl span {
  position: relative;
}
.c-ttl2__ttl span::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 7px;
  background: #e9e6df;
}
.c-ttl2__ttl span::after {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
  border-left: solid 6px transparent;
  border-right: solid 6px transparent;
  border-top: solid 9px #e9e6df;
}
@media screen and (max-width: 750px) {
  .c-ttl2__sub {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .c-ttl2__sub span::before, .c-ttl2__sub span::after {
    top: 5px;
    height: 19px;
    width: 2px;
  }
  .c-ttl2__sub span::before {
    left: -12px;
  }
  .c-ttl2__sub span::after {
    right: -12px;
  }
  .c-ttl2__ttl {
    font-size: 24px;
  }
  .c-ttl2__ttl span::before {
    bottom: -7px;
    height: 5px;
  }
  .c-ttl2__ttl span::after {
    bottom: -14px;
    border-left-width: 4px;
    border-right-width: 4px;
    border-top-width: 7px;
  }
}

/* 共通ボタン */
.lp-watch-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: calc((300/14) * 1em);
  min-height: calc((45/14) * 1em);
  margin-inline: auto;
  font-size: 18px;
  letter-spacing: .08em;
  color: #fff;
  box-shadow: 2.5px 2.5px 5px rgba(0,0,0,.3);
  transition: opacity 0.1s ease;
}

.lp-watch-btn:hover {
  opacity: .8;
}

.lp-watch-btn span {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.lp-watch-btn span::before {
  content: "»";
  display: inline-block;
  margin-right: 1.8em;
  font-size: calc((10/14) * 1em);
}

@media screen and (max-width: 750px) {
  .lp-watch-btn {
    max-width: 100%;
    font-size: 14px;
  }
}

.lp-watch-btn--line {
  min-height: calc((55/14) * 1em);
  background: #02be04;
  margin-top: 40.5px;
}

.lp-watch-btn--line span {
  margin-left: 5px;
  padding-left: 60px;
}

.lp-watch-btn--line span::after {
  content: "";
  aspect-ratio: 24/23;
  width: 100%;
  max-width: calc((35/14) * 1em);
  display: block;
  background: url(../img/watch/lp/line/line-icon.png) center / cover no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.lp-watch-btn--tel {
  margin-top: 38.5px;
  background: #8c130d;
}

.lp-watch-btn--contact {
  background: #094664;
}

/* 共通テキストグラデーション */
.lp-text-gradient {
  background: linear-gradient(to right, #d69d93, #d69d93 2.7806%, #e3c6c6 21.8182%, #caaab2 34.1176%, #d0a8aa 42.4242%, #fefbff 58.7879%, #e4ccd5 77.5758%, #e5b2a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-btn-tap a, .c-btn-contact a, .c-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 100px;
  background: #fff;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 13px 0;
  max-width: 286px;
  box-shadow: 6px 6px rgba(0, 0, 0, 0.2);
  transition: opacity 0.1s ease;
}
.c-btn-tap a:hover, .c-btn-contact a:hover, .c-btn a:hover {
  opacity: 0.8;
}
.c-btn-tap a::before, .c-btn-contact a::before, .c-btn a::before {
  content: "";
  width: 8px;
  height: 9px;
  background: url("../img/common/btn-arrow.png") center/contain no-repeat;
  margin-right: 14px;
}
@media screen and (max-width: 750px) {
  .c-btn-tap a, .c-btn-contact a, .c-btn a {
    font-size: 14px;
    padding: 10px 0;
    max-width: 219px;
    box-shadow: 3px 3px rgba(0, 0, 0, 0.2);
  }
}

.c-btn--orange a {
  background: #EF825A;
}
.c-btn--orange2 a {
  background: #F09B61;
}
.c-btn--pink a {
  background: #FF7784;
}
.c-btn--black a {
  background: #000;
}
.c-btn--green2 a {
  background: #8BC373;
}
.c-btn--back a::before {
  transform: rotate(180deg);
}
.c-btn--next a::before {
  order: 2;
  margin-left: 14px;
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .c-btn--sp-190 a {
    max-width: 190px;
  }
}

.c-btn-contact a {
  max-width: 247px;
}
.c-btn-contact--white a {
  color: #000;
}
.c-btn-contact--white a::before {
  background: url(../img/common/btn-arrow-bk.png) center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .c-btn-contact a {
    max-width: 190px;
  }
}

.c-btn-tap a {
  background: #8BC373;
  font-size: 18px;
  padding: 22px 0;
}

/**
 * LINE
 */
.c-line {
  background: #02BE04;
  padding: 58px 52px;
}
.c-line__inner {
  border: solid 15px #fff;
  padding: 20px 20px 55px;
}
.c-line__ttl {
  text-align: center;
  margin-bottom: 15px;
}
.c-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;
}
.c-line__btn a:hover {
  opacity: 0.8;
}
.c-line__btn a::before {
  content: "";
  display: block;
  width: 35px;
  height: 33px;
  background: url("../img/line/icon.png") center/contain no-repeat;
  margin-right: 17px;
}
@media screen and (max-width: 959px) {
  .c-line {
    padding: 30px;
  }
  .c-line__inner {
    padding: 20px 20px 25px;
  }
}
@media screen and (max-width: 750px) {
  .c-line {
    padding: 14px;
  }
  .c-line__inner {
    padding: 2px 16px 26px 0px;
    border-width: 8px;
  }
  .c-line__ttl {
    margin-bottom: 26px;
  }
  .c-line__btn {
    padding: 0 1px 0 14px;
  }
  .c-line__btn a {
    border-width: 3px;
    font-size: 16px;
    padding: 12px;
  }
  .c-line__btn a::before {
    width: 32px;
    height: 30px;
  }
}

/**
 * お問い合わせ
 */
.c-contact {
  background: rgba(22,10,5,.9);
  padding: 95px 0 106px;
}
.c-contact .c-ttl1 {
  margin-bottom: 63px;
  --color: #fff;
}
.c-contact__inner {
  padding: 0 60px;
}
.c-contact__content {
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .c-contact {
    padding: 51px 0 60px;
  }
  .c-contact .c-ttl1 {
    margin-bottom: 68px;
  }
  .c-contact__inner {
    padding: 0 18px;
  }
}

.c-contact-tel {
  text-align: center;
  padding: 47px 20px 57px;
  margin-bottom: 50px;
  position: relative;
  z-index: 0;
}
.c-contact-tel::before {
  content: "";
  width: calc(100% + 7px);
  height: calc(100% + 7px);
  background: url(../img/watch/lp/contact/tel-bg.png) center / 100% 100% no-repeat;
  position: absolute;
  top: -3.5px;
  left: -3.5px;
  z-index: -1;
}
.c-contact-tel::after {
  content: "";
  width: calc(100% + 7px);
  height: calc(100% + 7px);
  display: block;
  background: radial-gradient(farthest-side at -50% -50%, #fff 1%, rgba(255,255,255,0)), radial-gradient(farthest-side at 150% 150%, #fff 1%, rgba(255,255,255,0));
  position: absolute;
  top: -3.5px;
  left: -3.5px;
  z-index: 1;
  pointer-events: none;
  opacity: .8;
}
.c-contact-tel__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.c-contact-tel__ttl::before {
  content: "";
  flex: 0 0 42px;
  height: 42px;
  background: url("../img/watch/lp/contact/tel.png") center/contain no-repeat;
  margin-right: 19px;
}
.c-contact-tel__number {
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 3px;
}
.c-contact-tel__number rt {
  font-size: 23px;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
.c-contact-tel__note {
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.04em;
}
.c-contact-tel__note span {
  font-size: 16px;
}
.c-contact-tel .lp-watch-btn {
  max-width: 300px;
  min-height: 45px;
  background: #8c130d;
}
@media screen and (max-width: 750px) {
  .c-contact-tel {
    padding: 30.5px 10px 35.5px;
    margin-bottom: 20px;
  }
  .c-contact-tel__ttl {
    margin-bottom: 20.5px;
    font-size: 17.5px;
  }
  .c-contact-tel__ttl::before {
    flex: 0 0 33px;
    height: 33px;
    margin-right: 17px;
  }
  .c-contact-tel__number {
    font-size: 33px;
    margin-bottom: 5px;
  }
  .c-contact-tel__number rt {
    font-size: 12px;
    letter-spacing: 0.04em;
    font-feature-settings: "palt";
  }
  .c-contact-tel__note {
    font-size: 12px;
    margin-bottom: 21px;
  }
  .c-contact-tel__note span {
    font-size: 12px;
  }
}

.c-contact-mail {
  background: #3e6a7c;
  padding: 40px 60px 103px;
  color: #fff;
}
.c-contact-mail.is-accordion {
  padding: 40px 60px 70px;
}
.c-contact-mail__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 23px 7px;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: .1em;
}
.c-contact-mail__ttl::before {
  content: "";
  flex: 0 0 42px;
  height: 42px;
  background: url("../img/watch/lp/contact/mail.png") center/contain no-repeat;
  margin-right: 19px;
}
.c-contact-mail__time {
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 17px;
  text-align: center;
  letter-spacing: .02em;
}
.c-contact-mail__more-btn.lp-watch-btn {
  margin: 0 auto;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #094664;
  position: relative;
}
.c-contact-mail__more-btn::after {
  content: '';
  flex: 0 0 22px;
  width: 22px;
  height: 21px;
  margin-left: 15px;
  background: url('../img/watch/lp/contact/more-arrow.png') center / contain no-repeat;
  position: absolute;
  top: 52%;
  right: 21px;
  transform: translateY(-50%);
}
.c-contact-mail__more-btn:hover {
  opacity: .8;
}
.js-accordion-form .c-contact-mail__form {
  display: none;
  padding-top: 17px;
}
.js-accordion-form .c-contact-mail__form .mw_wp_form {
  padding-bottom: 40px;
}
.c-contact-mail__form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 9px;
}
@media screen and (max-width: 750px) {
  .c-contact-mail {
    padding: 30px 20px 32px;
  }
  .c-contact-mail.is-accordion {
    padding: 30px 20px 35px;
  }
  .js-accordion-form .c-contact-mail__form .mw_wp_form {
    padding-bottom: 20px;
  }
  .c-contact-mail__ttl {
    font-size: 16px;
  }
  .c-contact-mail__ttl::before {
    flex: 0 0 33px;
    height: 33px;
    margin-right: 13px;
  }
}

.c-contact-form input[type=text],
.c-contact-form input[type=email],
.c-contact-form input[type=tel],
.c-contact-form select,
.c-contact-form textarea {
  background: #F5F5F5;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  padding: 13px 20px;
}
.c-contact-form input[type=text]::-moz-placeholder, .c-contact-form input[type=email]::-moz-placeholder, .c-contact-form input[type=tel]::-moz-placeholder, .c-contact-form select::-moz-placeholder, .c-contact-form textarea::-moz-placeholder {
  color: #B9B9B9;
}
.c-contact-form input[type=text]:-ms-input-placeholder, .c-contact-form input[type=email]:-ms-input-placeholder, .c-contact-form input[type=tel]:-ms-input-placeholder, .c-contact-form select:-ms-input-placeholder, .c-contact-form textarea:-ms-input-placeholder {
  color: #B9B9B9;
}
.c-contact-form input[type=text]::placeholder,
.c-contact-form input[type=email]::placeholder,
.c-contact-form input[type=tel]::placeholder,
.c-contact-form select::placeholder,
.c-contact-form textarea::placeholder {
  color: #B9B9B9;
}
.c-contact-form select {
  position: relative;
  background: url("../img/watch/lp/contact/select-arrow.png") right 13px top 21px/13px no-repeat #F5F5F5;
}
.c-contact-form select.is-placeholder {
  color: #B9B9B9;
}
.c-contact-form textarea {
  height: 176px;
}
.c-contact-form__label {
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}
.c-contact-form__tag {
  width: 73px;
  display: inline-block;
  margin-right: 12px;
  padding: 1px 0 1px 0.5em;
  font-weight: 600;
  font-size: 11px;
  text-align: center;
  letter-spacing: 0.5em;
  color: #094664;
  vertical-align: 3px;
  background: url(../img/watch/lp/contact/form-tag.png) center / cover no-repeat;
}
.c-contact-form__fields {
  margin-bottom: 33px;
}
.c-contact-form__field:not(:last-child) {
  margin-bottom: 24px;
}
.c-contact-form__field .wpcf7-list-item {
  margin: 0 20px 0 0;
  white-space: nowrap;
  font-size: 18px;
}
.c-contact-form__field .c-contact-form-multifile__add {
  width: 100%;
  background: #333;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  padding: 0 14px;
  height: 40px;
  margin-top: 8px;
  font-weight: 700;
}
.c-contact-form__field .c-contact-form-multifile-item {
  margin-top: 5px;
  display: none;
}
.c-contact-form__field .c-contact-form-multifile-item.is-show {
  display: flex;
  align-items: center;
}
.c-contact-form__field .c-contact-form-multifile-item__btn {
  background: #333;
  color: #fff;
  border-radius: 5px;
  height: 28px;
  font-size: 16px;
  padding: 0 14px;
  height: 40px;
  font-weight: 700;
}
.c-contact-form__field .cotactform7-file-delete {
  background: none;
  cursor: pointer;
  visibility: hidden;
}
.c-contact-form__subfields {
  margin-top: -3px;
}
.c-contact-form__subfield .c-contact-form__label {
  margin-bottom: 6px;
}
.c-contact-form__subfield:not(:last-child) {
  margin-bottom: 7px;
}
.c-contact-form__zipcode {
  display: flex;
  align-items: center;
}
.c-contact-form__zipcode input[type=text] {
  flex: 0 0 260px;
  margin-right: 28px;
}
.c-contact-form__zipcode button {
  padding: 3px 15px;
  background: url(../img/watch/lp/contact/form-zipcode.png) center / cover no-repeat;
  font-weight: 600;
  font-size: 15px;
  color: #094664;
  transition: opacity 0.1s ease;
}
.c-contact-form__zipcode button:hover {
  opacity: 0.8;
}
.c-contact-form__zipcode-inner {
  display: flex;
  align-items: center;
}
.c-contact-form__zipcode-inner .wpcf7-form-control-wrap {
  flex: 0 0 260px;
  margin-right: 28px;
}
.c-contact-form__time {
  display: flex;
  align-items: center;
  font-size: 18px;
}
.c-contact-form__time input[type=text] {
  flex: 0 0 260px;
  margin-right: 28px;
}
.c-contact-form__time-inner {
  display: flex;
  align-items: center;
  font-size: 18px;
}
.c-contact-form__time-inner .wpcf7-form-control-wrap {
  flex: 0 0 260px;
  margin-right: 28px;
}
.c-contact-form__policy-txt {
  overflow: scroll;
  height: 137px;
  background: #fff;
  margin-top: 14px;
  margin-bottom: 34px;
  padding: 21px 23px;
  font-size: 13px;
  line-height: calc(40/24);
  letter-spacing: .04em;
  color: #000;
}
.c-contact-form__policy-txt p {
  margin-bottom: 1.5em;
}
.c-contact-form__policy-agree {
  text-align: center;
  font-size: 18px;
  margin-bottom: 51px;
  letter-spacing: 0.05em;
}
.c-contact-form__policy-agree input[type=checkbox] {
  transform: scale(2);
  margin-right: 15px;
}

.c-contact-form__submit {
  position: relative;
}

.c-contact-form__submit .wpcf7-spinner {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  margin: 0;
}

.c-contact-form__submit .wpcf7-form-control.wpcf7-submit,
.c-contact-form__submit button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: calc((300/14) * 1em);
  min-height: calc((45/14) * 1em);
  margin-inline: auto;
  background: #094664;
  font-size: 18px;
  letter-spacing: .08em;
  color: #fff;
  text-indent: 1.8em;
  box-shadow: 2.5px 2.5px 5px rgba(0,0,0,.3);
}

.c-contact-form__submit::before {
  content: "»";
  display: inline-block;
  margin-right: 1.8em;
  font-size: calc((10/14) * 1em);
  position: absolute;
  top: 50%;
  left: 37%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 750px) {
  .c-contact-form input[type=text],
  .c-contact-form input[type=email],
  .c-contact-form input[type=tel],
  .c-contact-form select,
  .c-contact-form textarea {
    font-size: 16px;
    padding: 8px 15px 9px;
  }
  .c-contact-form input[type=text]::placeholder,
  .c-contact-form input[type=email]::placeholder,
  .c-contact-form input[type=tel]::placeholder,
  .c-contact-form select::placeholder,
  .c-contact-form textarea::placeholder {
    font-size: 14px;
  }
  .c-contact-form textarea {
    height: 135px;
  }
  .c-contact-form__label {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .c-contact-form select {
    padding-bottom: 11px;
    background: url("../img/watch/lp/contact/select-arrow.png") right 13px top 16px/13px no-repeat #F5F5F5;
  }
  .c-contact-form select.is-placeholder {
    font-size: 14px;
  }
  .c-contact-form__fields {
    margin-bottom: 22px;
  }
  .c-contact-form__field .wpcf7-list-item {
    font-size: 16px;
  }
  .c-contact-form__subfield:not(:last-child) {
    margin-bottom: 4px;
  }
  .c-contact-form__tag {
    width: 55px;
    font-size: 11px;
    margin-right: 10px;
    vertical-align: 2px;
  }
  .c-contact-form__zipcode input[type=text] {
    flex: 0 0 179px;
    margin-right: 16px;
  }
  .c-contact-form__zipcode .wpcf7-form-control-wrap {
    flex: 0 0 184px;
    margin: 6px 20px 0 0;
  }
  .c-contact-form__zipcode button {
    width: 95px;
    margin-top: 6px;
    padding: 5px 13px;
    font-size: 11px;
  }
  .c-contact-form__time {
    font-size: 16px;
  }
  .c-contact-form__time input[type=text] {
    flex: 0 0 179px;
    margin-right: 16px;
  }
  .c-contact-form__time .wpcf7-form-control-wrap {
    flex: 0 0 179px;
    margin-right: 16px;
  }
  .c-contact-form__policy-txt {
    height: 150px;
    margin-top: 9px;
    font-size: 12px;
  }
  .c-contact-form__policy-agree {
    font-size: 14px;
    margin-bottom: 45px;
  }
  .c-contact-form__policy-agree input[type=checkbox] {
    transform: scale(1.4);
    margin-right: 10px;
  }
  .c-contact-form__submit .wpcf7-form-control.wpcf7-submit,
  .c-contact-form__submit button {
    font-size: 14px;
  }
}

.c-voice__ttl {
  text-align: center;
  margin-bottom: 35px;
}
.c-voice__list {
  margin-bottom: 66px;
}
@media screen and (max-width: 750px) {
  .c-voice__ttl {
    margin-bottom: 31px;
    margin-left: 15px;
  }
  .c-voice__ttl img {
    width: 186px;
  }
  .c-voice__list {
    margin-bottom: 33px;
  }
}

.c-voice-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 36px;
  position: relative;
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
}
.c-voice-item::before {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  top: -19px;
  left: -10px;
}
.c-voice-item--man::before {
  background: url("../img/voice/man.png") center/contain no-repeat;
}
.c-voice-item--woman::before {
  background: url("../img/voice/woman.png") center/contain no-repeat;
}
.c-voice-item__txt {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  background: #FF7784;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 3px 0;
}
.c-voice-item__body {
  padding: 15px 27px 27px;
}
.c-voice-item__top {
  display: flex;
  margin-bottom: 16px;
}
.c-voice-item__ttl {
  flex: 1 0 0px;
  font-size: 20px;
  font-weight: 700;
  color: #FF7784;
}
.c-voice-item__rate {
  text-align: right;
  font-size: 0;
  flex: 0 0 75px;
  padding-top: 7px;
}
.c-voice-item__rate img {
  margin-left: 1px;
}
.c-voice-item__middle {
  display: flex;
  align-items: flex-start;
}
.c-voice-item__pic {
  flex: 0 0 150px;
  position: relative;
  margin-right: 16px;
}
.c-voice-item__pic::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.c-voice-item__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit:cover;";
}
.c-voice-item__desc {
  text-align: justify;
  flex: 1 0 0px;
  font-size: 18px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.389;
  color: #231815;
}
.c-voice-item__desc strong {
  font-weight: 700;
}
.c-voice-item__desc em {
  font-style: italic;
}
@media screen and (max-width: 750px) {
  .c-voice-item {
    border-radius: 4px;
    margin-bottom: 31px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  }
  .c-voice-item::before {
    width: 44px;
    height: 44px;
    top: -11px;
  }
  .c-voice-item__txt {
    font-size: 12px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
  .c-voice-item__body {
    padding: 13px 20px 12px;
  }
  .c-voice-item__top {
    margin-bottom: 12px;
  }
  .c-voice-item__ttl {
    font-size: 15px;
  }
  .c-voice-item__rate img {
    width: 10px;
  }
  .c-voice-item__pic {
    flex: 0 0 75px;
    margin-right: 8px;
  }
  .c-voice-item__desc {
    font-size: 14px;
  }
}

.c-result .c-ttl2 {
  margin-bottom: 70px;
}
.c-result__list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -13px;
  margin-bottom: 38px;
}
@media screen and (max-width: 750px) {
  .c-result .c-ttl2 {
    margin-bottom: 44px;
  }
  .c-result__list {
    display: block;
    margin-right: 0;
  }
}

.c-result-item {
  flex: 0 0 33.33333%;
  max-width: calc(33.33333% - 20px);
  margin-right: 20px;
  margin-bottom: 27px;
  background: #fff;
}
.c-result-item__ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  padding: 17px 23px;
  position: relative;
  flex-grow: 1;
  display: flex;
}
.c-result-item__ttl::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 59px;
  top: -5px;
  left: 7px;
}
.c-result-item__pic {
  position: relative;
}
.c-result-item__pic::before {
  content: "";
  display: block;
  padding-top: 75%;
  background: #C9CACA;
}
.c-result-item__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit:cover;";
}
.c-result-item__body {
  padding: 2px 22px 15px;
}
.c-result-item__desc {
  line-height: 1.72;
  max-height: calc(1.72em * 3);
  overflow: hidden;
}
.c-result-item__desc strong {
  font-weight: 700;
}
.c-result-item__desc em {
  font-style: italic;
}
.c-result-item--2 {
  box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.25);
}
.c-result-item--2 .c-result-item__body {
  padding: 2px 22px 18px;
}
@media screen and (max-width: 750px) {
  .c-result-item {
    max-width: none;
    margin-right: 0;
  }
  .c-result-item__ttl {
    font-size: 18px;
    padding: 15px 19px;
  }
  .c-result-item__ttl::before {
    width: 42px;
    height: 52px;
    top: -4px;
    left: 6px;
  }
  .c-result-item__body {
    padding: 2px 19px 15px;
  }
  .c-result-item__desc {
    font-size: 14px;
  }
  .c-result-item--2 .c-result-item__body {
    padding: 2px 22px 19px;
  }
  .c-result-item--2 .c-result-item__desc {
    font-size: 13px;
  }
}

.c-result-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 2px #FDD33D;
  padding-bottom: 5px;
  margin-bottom: 12px;
}
.c-result-price__label {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
.c-result-price__amount {
  flex: 1 0 auto;
  font-size: 13px;
  font-weight: 700;
  text-align: right;
  max-width: 100%;
}
.c-result-price__amount span {
  font-size: 33px;
  color: #E9441F;
  margin-right: 5px;
  word-break: break-all;
}
@media screen and (max-width: 750px) {
  .c-result-price {
    margin-bottom: 10px;
  }
  .c-result-price__label {
    font-size: 18px;
  }
  .c-result-price__amount {
    font-size: 12px;
  }
  .c-result-price__amount span {
    font-size: 30px;
  }
}

/**
 * ページネーション
 */
.c-pagination {
  display: flex;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto 54px;
}
.c-pagination__btn {
  flex: 1 0 0px;
  margin: 0 5px;
}
@media screen and (max-width: 750px) {
  .c-pagination {
    margin: 0 -5px 27px;
  }
  .c-pagination__btn a {
    max-width: 164px;
  }
}

/**
 * トップ
 */
.top-mv {
  background: #e9e6df;
}
.top-mv__content {
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
.top-mv__item-bottom {
  width: 100%;
  position: absolute;
  bottom: 0;
}
.top-mv__item-bottom img{
  width: 100%;
}
.top-mv__content-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: 18.5px;
}
@media screen and (max-width: 750px) {
  .top-mv__content-btn {
    padding: 11px 0;
  }
}
.top-mv__content-btn a {
  width: 100%;
  max-width: 190px;
  background: #93835f;
}
.top-mv__item-left img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit:cover;";
}
.top-mv__item-right {
  margin-left: -90px
}
.top-mv__item-right .c-btn {
  margin-top: 25px;
  margin-right: 7px;
  position: relative;
  z-index: 2;
}
.top-mv__item-right .c-btn a {
  max-width: 269px;
  padding: 16px 0;
  background: #93835f;
}
@media screen and (max-width: 959px) {
  .top-mv {
    width: 100%;
    height: auto;
  }
}

/**
 * トップ：バナー
 */
.top-banner {
  background: #e5e5e5;
  padding: 40px 18px;
}
.top-banner__item {
  text-align: center;
}
.top-banner__item a:hover {
  opacity: .8;
}
.top-banner__item img { 
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 959px) {
  .top-banner {
    padding: 20px 17.5px 19px;
  }
  .top-banner__item img { 
    box-shadow: 2.5px 2.5px 2.5px rgba(0, 0, 0, 0.3);
  }
}

/**
 * トップ：チラシ
 */
.top-flyer {
  padding: 30px 0;
}

.top-flyer__inner {
  max-width: 860px;
  padding: 0 30px;
  margin: 0 auto;
}

.top-flyer__flyer a {
  width: 100%;
  height: 100%;
  display: block;
  background: #e8e6df;
}

.top-flyer__flyer a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top-flyer__ttl {
  text-align: center;
  font-weight: 700;
  margin-bottom: 19px;
}

.top-flyer__ttl-txt {
  font-size: 28px;
  color: #93835f;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.top-flyer__ttl-txt span {
  position: relative;
}

.top-flyer__ttl-txt span::before,
.top-flyer__ttl-txt span::after {
  content: "";
  position: absolute;
  top: 7px;
  height: 32px;
  width: 2px;
  background: #93835f;
  border-radius: 2px;
}

.top-flyer__ttl-txt span::before {
  left: -36px;
  transform: rotate(-35deg);
}

.top-flyer__ttl-txt span::after {
  right: -36px;
  transform: rotate(35deg);
}

.top-flyer__title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #93835f;
  margin-top: 25px;
}

.top-flyer__desc {
  text-align: center;
  font-size: 19px;
  margin-top: 14px;
}

@media screen and (max-width: 959px) {
  .top-flyer__ttl {
    margin-bottom: 16px;
  }

  .top-flyer__ttl-txt {
    font-size: 25px;
    margin-bottom: 13px;
  }

  .top-flyer__ttl-txt span::before,
  .top-flyer__ttl-txt span::after {
    height: 27px;
  }

  .top-flyer__ttl-txt span::before {
    left: -17px;
  }

  .top-flyer__ttl-txt span::after {
    right: -17px;
  }
}

@media screen and (max-width: 750px) {
  .top-flyer {
    padding: 30px 0;
  }

  .top-flyer__inner {
    padding: 0 15px;
  }

  .top-flyer__ttl-txt {
    font-size: 18px;
  }

  .top-flyer__title {
    font-size: 17px;
  }

  .top-flyer__desc {
    font-size: 16px;
  }
}

/**
 * トップ：イントロ
 */
.top-intro {
  border-bottom: solid 26px #93835f;
}
.top-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  background: url("../img/top/intro-bg.png") center/1200px no-repeat;
  padding: 47px 0 73px;
}
.top-intro__head {
  text-align: center;
  font-weight: 700;
  margin-bottom: 19px;
}
.top-intro__subttl {
  font-size: 28px;
  color: #93835f;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.top-intro__subttl span {
  position: relative;
}
.top-intro__subttl span::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 7px;
  height: 32px;
  width: 2px;
  background: #93835f;
  transform: rotate(-35deg);
  border-radius: 2px;
}
.top-intro__subttl span::after {
  content: "";
  position: absolute;
  right: -36px;
  top: 7px;
  height: 32px;
  width: 2px;
  background: #93835f;
  transform: rotate(35deg);
  border-radius: 2px;
}
.top-intro__ttl {
  font-size: 46px;
  color: #231815;
  line-height: 1;
  letter-spacing: 0.02em;
}
.top-intro__character {
  text-align: center;
  margin-bottom: 19px;
}
.top-intro__desc {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 30px;
}
.top-intro__list {
  display: flex;
  justify-content: center;
}
.top-intro__list-item {
  margin: 0 7px;
}
@media screen and (max-width: 959px) {
  .top-intro {
    border-bottom-width: 13px;
  }
  .top-intro__inner {
    background: url("../img/top/intro-bg-sp.png") top center/404px no-repeat;
    padding: 39px 0 47px;
  }
  .top-intro__head {
    margin-bottom: 16px;
  }
  .top-intro__subttl {
    font-size: 25px;
    margin-bottom: 13px;
  }
  .top-intro__subttl span::before, .top-intro__subttl span::after {
    height: 27px;
  }
  .top-intro__subttl span::before {
    left: -17px;
  }
  .top-intro__subttl span::after {
    right: -17px;
  }
  .top-intro__ttl {
    font-size: 40px;
  }
  .top-intro__character {
    margin-bottom: 14px;
  }
  .top-intro__character img {
    width: 113px;
  }
  .top-intro__desc {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 21px;
  }
  .top-intro__list-item {
    width: 91px;
    margin: 0 6px;
  }
}
@media screen and (max-width: 750px) {
  .top-intro__head {
    margin-bottom: 38px;
  }
  .top-intro__subttl {
    font-size: 18px;
  }
  .top-intro__ttl {
    font-size: 30px;
  }
  .top-intro__inner {
    padding-top: 48px;
    padding-bottom: 35px;
  }
  .top-intro__character {
    margin-bottom: 20px;
  }
  .top-intro__character img {
    width: 81px;
  }
  .top-intro__desc {
    margin-bottom: 27px;
    line-height: 1.5;
  }
}

/**
 * トップ：買取強化品
 */
.top-pickup {
  padding: 84px 0 157px;
  background: url("../img/top/pickup-border.png") bottom center/109px repeat-x;
  overflow: hidden;
}
.top-pickup .c-ttl1 {
  margin-bottom: 74px;
}
.top-pickup__inner {
  max-width: 1080px;
  padding: 0 30px;
  margin: 0 auto;
}
.top-pickup__list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -100px;
  margin-bottom: -36px;
}
@media screen and (max-width: 750px) {
  .top-pickup {
    padding: 40px 0 36px;
  }
  .top-pickup .c-ttl1 {
    margin-bottom: 62px;
  }
  .top-pickup__list {
    display: block;
    margin-right: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 750px) {
  .top-pickup {
    background: url("../img/top/pickup-border.png") bottom center/auto 13px repeat-x;
  }
  .top-pickup__inner {
    padding: 0 18px;
  }
}

.top-pickup-item {
  flex: 0 0 50%;
  max-width: calc(50% - 100px);
  margin-right: 100px;
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px 30px;
  align-items: start;
}
.top-pickup-item__pic {
  position: relative;
  background: #eee;
}
.top-pickup-item__pic::before {
  content: "";
  display: block;
  padding-top: 74.76%;
}
.top-pickup-item__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit:cover;";
}
.top-pickup-item__maker {
  margin-bottom: 9px;
}
.top-pickup-item__maker span {
  display: inline-block;
  background: #93835f;
  color: #fff;
  font-weight: 700;
  padding: 3px 7px;
}
.top-pickup-item__name {
  color: #231815;
  font-weight: 700;
  flex: 1 0 auto;
  line-height: 1.4375;
  margin-bottom: 5px;
}
@media screen and (max-width: 959px) {
  .top-pickup-item {
    max-width: calc(50% - 30px);
    margin-right: 30px;
    grid-template-columns: 150px 1fr;
    gap: 16px;
  }
}
@media screen and (max-width: 750px) {
  .top-pickup-item {
    max-width: none;
    margin-right: 0;
    margin-bottom: 23px;
    grid-template-rows: 1fr auto;
    grid-template-columns: 165px 1fr;
  }
  .top-pickup-item__pic {
    flex: 0 0 165px;
    margin-bottom: 2px;
    grid-row: 1/3;
  }
  .top-pickup-item__maker {
    font-size: 12px;
  }
  .top-pickup-item__name {
    font-size: 14px;
    line-height: 1.285;
  }
}

.top-pickup-price {
  grid-column: 1/3;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  font-size: 21px;
  font-weight: 700;
  border: solid 1px #000;
  padding: 4px;
}
.top-pickup-price__txt {
  line-height: 35px;
  margin-right: 32px;
}
.top-pickup-price__amount {
  font-size: 21px;
  font-weight: 700;
  padding-right: 3px;
  max-width: 100%;
  line-height: 35px;
}
.top-pickup-price__amount span {
  font-size: 35px;
  color: #E9441F;
  margin-right: 5px;
  word-break: break-all;
  vertical-align: -4px;
}
@media screen and (max-width: 750px) {
  .top-pickup-price {
    font-size: 12px;
    grid-column: 2/3;
    border: none;
    padding: 0;
  }
  .top-pickup-price__txt {
    line-height: 20px;
    margin-right: 0;
  }
  .top-pickup-price__amount {
    font-size: 12px;
    line-height: 20px;
    text-align: right;
    flex: 1 0 auto;
  }
  .top-pickup-price__amount span {
    font-size: 20px;
    vertical-align: -1px;
    margin-right: 2px;
  }
}

/**
 * トップ：貴金属査定4つの安心
 */
 .top-reassurance {
  padding: 84px 0 157px;
  border-bottom: solid 26px #93835f;
  overflow: hidden;
  position: relative;
}
.top-reassurance__inner {
  max-width: 1240px;
  padding: 0 30px;
  margin: 0 auto;
}
@media screen and (min-width: 750px) {
  .top-reassurance__list{
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
  }
  .top-reassurance__item{
    width: 50%;
    border: solid 5px #93835E;
    margin-bottom: -5px;
    margin-right: -5px;
  }
  .top-reassurance--img{
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .top-reassurance {
    padding: 40px 0 55px;
    border-bottom-width: 13px;
  }
  .top-reassurance__inner {
    padding: 0 12px;
  }
  .top-reassurance .c-ttl1{
    margin-bottom: 50px;
  }
  .top-reassurance__list{
    border: solid 5px #93835E;
  }
  .top-reassurance__item{
    border-top: solid 3px #93835E;
  }
  .top-reassurance__item:first-of-type{
    border: none;
  }
  .top-reassurance--img{
    position: absolute;
    left: 0;
    bottom: 0;
  }
}

/**
 * トップ：取扱商品
 */
.top-goods {
  padding: 75px 0 120px;
  background: #160a05;
  color: #fff;
}
.top-goods .c-ttl1 {
  margin-bottom: 50px;
  --color: #fff;
}
.top-goods__inner {
  max-width: 1200px;
  padding: 0 30px;
  margin-inline: auto;
}
.top-goods__intro {
  font-weight: 500;
  font-size: 14px;
  line-height: calc(23/14);
  text-align: center;
}
.top-goods__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, 170px);
  justify-content: center;
  gap: 6px 22.5px;
  margin-top: 60px;
}
.top-goods .lp-watch-btn {
  margin-top: 31px;
}
@media screen and (max-width: 750px) {
  .top-goods {
    padding: 51px 0 60px;
  }
  .top-goods__inner {
    padding: 0 17px 0 18px;
  }
  .top-goods__list {
    margin-top: 31.5px;
    grid-template-columns: repeat(3, minmax(auto,85px));
  }
}

.top-goods-item__pic img {
  width: 100%;
}
.top-goods-item__name {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
  min-height: 70px;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .top-goods-item__name {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.25;
    min-height: 22px;
    white-space: nowrap;
  }
}

/**
 * トップ：買取実績
 */
.top-result {
  padding: 85px 0 87px;
  overflow: hidden;
  background: url("../img/top/result-bg.png") center/46px;
}
.top-result__inner {
  max-width: 1240px;
  padding: 0 30px;
  margin: 0 auto;
}
.top-result .c-result-item:nth-child(n+10) {
  display: none;
}
@media screen and (max-width: 750px) {
  .top-result {
    padding: 35px 0 40px;
  }
  .top-result__inner {
    padding: 0 18px;
  }
  .top-result .c-ttl2__sub {
    margin-bottom: 11px;
  }
  .top-result .c-result-item:nth-child(n+6) {
    display: none;
  }
}

/**
 * トップ：買取相場
 */
.top-market {
  background: url("../img/top/market-bg.jpg") top center/cover no-repeat;
  padding: 86px 0 157px;
}
.top-market__inner {
  max-width: 960px;
  padding: 0 30px;
  margin: 0 auto;
}
.top-market__ttl {
  text-align: center;
  color: #fff;
  font-size: 31px;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 26px;
}
.top-market__ttl::before, .top-market__ttl::after {
  content: "-";
}
.top-market__ttl::before {
  margin-right: 15px;
}
.top-market__ttl::after {
  margin-left: 15px;
}
.top-market__table-wrapper {
  position: relative;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.25);
}
.top-market__table-wrapper::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #1A2348;
}
.top-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;
}
.top-market__table-wrapper.is-end::after {
  opacity: 0;
  visibility: hidden;
}
.top-market__table-scroll {
  max-height: 404px;
  overflow: auto;
  background: #fff;
}
@media screen and (max-width: 750px) {
  .top-market {
    background: url("../img/top/market-bg-sp.jpg") top center/cover no-repeat;
    padding: 36px 0 49px;
  }
  .top-market__inner {
    padding: 0 18px;
  }
  .top-market__ttl {
    font-size: 24px;
    margin-bottom: 21px;
  }
  .top-market__table-scroll {
    height: 340px;
  }
}

.top-market-table {
  width: 100%;
}
.top-market-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  font-size: 15px;
  font-weight: 700;
  background: #1A2348;
  color: #fff;
  padding: 4px 20px 6px;
}
.top-market-table thead th::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #C9CACA;
}
.top-market-table thead th:nth-child(1) {
  width: 41%;
}
.top-market-table thead th:nth-child(2) {
  width: 36%;
}
.top-market-table thead th:nth-child(3) {
  width: 23%;
  text-align: center;
}
.top-market-table tbody tr:nth-child(even) {
  background: #F2F2F2;
}
.top-market-table tbody td {
  font-weight: 700;
  padding: 11px 20px;
  word-break: break-all;
}
.top-market-table tbody td:nth-child(3) {
  text-align: right;
}
.top-market-table__price {
  font-size: 20px;
  color: #E9441F;
  margin-right: 5px;
}
@media screen and (max-width: 750px) {
  .top-market-table thead th {
    font-size: 12px;
    padding: 4px 7px;
  }
  .top-market-table thead th::after {
    height: 1px;
  }
  .top-market-table thead th:nth-child(1) {
    width: 50%;
  }
  .top-market-table thead th:nth-child(2) {
    width: 20%;
  }
  .top-market-table thead th:nth-child(3) {
    width: 30%;
  }
  .top-market-table tbody td {
    font-size: 11px;
    padding: 9px 0 9px 7px;
  }
  .top-market-table tbody td:nth-child(3) {
    padding-right: 7px;
  }
  .top-market-table__price {
    font-size: 16px;
  }
}

/**
 * トップ：お客様の声
 */
.top-voice {
  background: url("../img/top/voice-bg.png") top center/73px repeat-x #FCFAEC;
  padding: 135px 0 107px;
}
.top-voice__inner {
  max-width: 760px;
  padding: 0 30px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .top-voice {
    background: url("../img/top/voice-bg.png") top center/auto 13px repeat-x #FCFAEC;
    padding: 36px 0 47px;
  }
  .top-voice__inner {
    padding: 0 18px;
  }
}

/**
 * トップ：店舗紹介
 */
.top-shop {
  padding: 90px 0 80px;
  background: #160a05;
  color: #fff;
}
.top-shop__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 30px;
}
.top-shop .c-ttl1 {
  margin-bottom: 66px;
  --color: #fff;
}
.top-shop__content {
  display: flex;
}
.top-shop__map {
  flex: 1 0 0px;
  position: relative;
}
.top-shop__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 750px) {
  .top-shop {
    padding: 51px 0 60px;
  }
  .top-shop__inner {
    padding: 0 18px;
  }
  .top-shop__content {
    display: block;
  }
  .top-shop__map {
    height: 200px;
  }
}

.top-shop-gallery {
  flex: 0 0 680px;
  margin-right: 9px;
}
.top-shop-gallery__main {
  margin-bottom: 10px;
}
.top-shop-gallery__subs {
  display: flex;
  margin-right: -10px;
}
.top-shop-gallery__sub {
  margin-right: 10px;
}
@media (max-width: 1200px) {
  .top-shop-gallery {
    flex: 0 0 500px;
  }
}
@media screen and (max-width: 959px) {
  .top-shop-gallery {
    flex: 0 0 400px;
  }
}
@media screen and (max-width: 750px) {
  .top-shop-gallery {
    margin-right: 0;
    margin-bottom: 5px;
  }
  .top-shop-gallery__main {
    margin-bottom: 5px;
  }
  .top-shop-gallery__subs {
    margin-right: -5px;
  }
  .top-shop-gallery__sub {
    margin-right: 5px;
  }
}

.top-shop-address {
  margin-top: 41px;
  text-align: center;
}
.top-shop-address__name {
  margin-top: 19px;
  font-weight: 500;
  font-size: 25px;
  letter-spacing: .02em;
}
.top-shop-address__address {
  margin: 18px 0 0 2px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.54;
}
.top-shop-address__tags {
  display: inline-flex;
  align-items: flex-start;
  gap: 5px;
}
.top-shop-address__tag {
  min-width: 55px;
  background: linear-gradient(135deg, #d69d93, #e3c6c6 21.8182%, #caaab2 34.1176%, #d0a8aa 42.4242%, #fefbff 58.7879%, #e4ccd5 77.5758%, #e5b2a0 100% );
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #160a05;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .top-shop-address {
    text-align: left;
  }
  .top-shop-address__address {
      font-size: 13px;
  }
}

/**
 * トップ：宅配買取の流れ
 */
.top-flow {
  overflow: hidden;
  color: #fff;
}
.top-flow .c-ttl1 {
  margin-bottom: 56px;
  --color: #fff;
}
.top-flow__inner {
  padding: 0 30px;
  justify-content: center;
}
.top-flow__box {
  padding: 78px 0 120px;
}
.top-flow__box01 {
  background: rgba(22,10,5,.9);
}
.top-flow__box02 {
  background: rgba(22,10,5,.85);
}
.top-flow__box02 .top-flow-item:nth-last-child(2) .top-flow-item__icon::before {
  content: none;
}
.top-flow__content {
  max-width: 442px;
  margin: 0 auto;
}
.top-flow__list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -26px;
  margin-bottom: 41px;
}
.top-flow__area {
  text-align: center;
}
.top-flow__area-ttl {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0;
}
.top-flow__area-ttl span {
  background: linear-gradient(to right,#d6ac93, #e3c6c6 21.8182%, #cab2a9 33.9394%, #d0a8aa 42.4242%, #fefbff 58.7879%, #e4cfd5 77.5758%, #e5b4a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.top-flow__area-text {
  width: 100%;
  display: block;
  margin-top: 15px;
  padding: 0.47em;
  background: #8c8c8c;
  font-size: 43px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .top-flow__box01 {
    margin-right: 0;
  }
}
@media screen and (max-width: 750px) {
  .top-flow .c-ttl1 {
    margin-bottom: 67px;
  }
  .top-flow__inner {
    padding: 0 18px;
  }
  .top-flow__box {
    padding-top: 51px;
  }
  .top-flow__box01 {
    padding-bottom: 65px;
  }
  .top-flow__box02 {
    padding-bottom: 60px;
  }
  .top-flow__list {
    margin-bottom: 16px;
    margin-right: -20px;
  }
  .top-flow__box01 .top-flow__list {
    margin-bottom: 0;
  }
  .top-flow__area-text {
    font-size: 30px;
    padding: 0.85em 0 1.1em;
  }
}

.top-flow-item {
  flex: 0 0 33.33333%;
  max-width: calc(33.33333% - 26px);
  margin-right: 26px;
  margin-bottom: 34px;
  text-align: center;
}
.top-flow-item__ttl {
  font-size: 23px;
  font-weight: 700;
  color: #8BC373;
  margin-bottom: 11px;
}
.top-flow-item__ttl span {
  background: linear-gradient(to right,#d6ac93, #e3c6c6 21.8182%, #cab2a9 33.9394%, #d0a8aa 42.4242%, #fefbff 58.7879%, #e4cfd5 77.5758%, #e5b4a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.top-flow-item__ttl--orange {
  color: #ec9463;
}
.top-flow-item__ttl--gray {
  color: #8c8c8c;
}
.top-flow-item__icon {
  margin-bottom: 8px;
  position: relative;
}
.top-flow-item__desc {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.27;
}
.top-flow-item:not(:nth-child(3n)) .top-flow-item__icon::before {
  content: "";
  aspect-ratio: 2/3;
  width: 100%;
  max-width: 15px;
  background: url(../img/watch/lp/flow/arrow.png) center / cover no-repeat;
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .top-flow-item {
    max-width: calc(33.33333% - 20px);
    margin-right: 20px;
  }
  .top-flow-item__ttl {
    font-size: 16px;
  }
  .top-flow-item__desc {
    font-size: 13px;
  }
  .top-flow-item:not(:nth-child(3n)) .top-flow-item__icon::before {
    max-width: 10px;
    position: absolute;
    right: -17px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/**
 * トップ：よく頂く質問
 */
.top-faq {
  background: #160a05;
  padding: 83px 0;
}
.top-faq .c-ttl1 {
  margin-bottom: 73px;
  --color: #fff;
}
.top-faq__inner {
  padding: 0 60px;
}
.top-faq__content {
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .top-faq {
    padding: 50px 0 45px;
  }
  .top-faq .c-ttl1 {
    margin-bottom: 66px;
  }
  .top-faq__inner {
    padding: 0 37px 0 38px;
  }
}

.top-faq-item {
  padding: 13px 77px 24px 34px;
  background: #fff;
}
.top-faq-item__question {
  min-height: 26px;
  margin-bottom: 16px;
  padding-left: 36px;
  font-weight: 700;
  font-size: 19px;
  line-height: calc(21/15);
  letter-spacing: 0.05em;
  position: relative;
}
.top-faq-item__question::before {
  content: "Q";
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1;
  color: #c59f8a;
  position: absolute;
  top: 4px;
  left: 0;
}
.top-faq-item__answer {
  font-size: 19px;
  line-height: 1.45;
  padding-left: 36px;
  letter-spacing: 0.05em;
  min-height: 26px;
  position: relative;
}
.top-faq-item__answer::before {
  content: "A";
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1;
  color: #c59f8a;
  position: absolute;
  top: 4px;
  left: 0;
}
.top-faq-item__answer strong {
  font-weight: 700;
}
.top-faq-item__answer em {
  font-style: italic;
}
.top-faq-item__answer del {
  text-decoration: line-through;
}
.top-faq-item:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .top-faq-item {
    padding: 15px 17px 15px 18px;
  }
  .top-faq-item__question {
    min-height: 20px;
    margin-bottom: 8px;
    padding-left: 35px;
    font-size: 15px;
  }
  .top-faq-item__answer {
    min-height: 20px;
    padding-left: 35px;
    font-size: 14px;
    line-height: calc(20/14);
  }
}

.c-right-bnr {
  position: fixed;
  top: 24%;
  right: 0;
  width: 80px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}
@media screen and (max-width: 959px) {
  .c-right-bnr {
    display: none;
  }
}
.c-right-bnr__item {
  display: block;
  width: 100%;
  height: 100%;
  border: solid 4px #fff;
  border-right-width: 0;
  color: #fff;
  font-size: 12.71px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  transition: opacity 0.1s ease;
}
.c-right-bnr__item:hover {
  opacity: 0.8;
}
.c-right-bnr__item--tel {
  display: flex;
  justify-content: center;
  background: #93835f url(../img/bottom-bar/side-tel.png) center 10px/40px 40px no-repeat;
  margin-bottom: 8px;
  padding: 59px 0 9px;
  text-align: start;
}
.c-right-bnr__item--contact {
  background: #8bc373 url(../img/bottom-bar/side-contact.png) center 10px/40px 40px no-repeat;
  margin-bottom: 8px;
  padding: 54px 0 5px;
}
.c-right-bnr__item--line {
  background: #02be04 url(../img/bottom-bar/side-line.png) center 10px/40px 40px no-repeat;
  padding: 52px 0 6px;
}
.c-right-bnr__tel-txt {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.c-right-bnr__tel-txt .tel-num {
  font-size: 26.68px;
}
.c-right-bnr.is-show {
  opacity: 1;
  visibility: visible;
}

/* 質預かりについて */
.top-about {
  padding: 83px 0;
  background: rgba(22,10,5,.12);
}
.top-about .c-ttl1 {
  margin-bottom: 73px;
}
.top-about__inner {
  padding: 0 60px;
}
@media screen and (max-width: 750px) {
  .top-about {
    padding: 51px 0 22px;
  }
  .top-about .c-ttl1 {
    margin-bottom: 61px;
  }
  .top-about__inner {
    padding: 0 37px;
  }
}

.top-about__lead {
  margin-bottom: 39px;
  font-weight: 500;
  font-size: 15px;
  line-height: calc(23/14);
  text-align: center;
}
.top-about__content {
  max-width: 700px;
  margin: 0 auto;
}
.top-about__accordion {
  height: 500px;
  overflow: hidden;
  position: relative;
}
.top-about__accordion::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(rgba(0, 0, 0, 0), #e9e6df 50px, #e9e6df );
  transition: opacity .5s ease;
  pointer-events: none;
}
.top-about__accordion.is-open::after {
  opacity: 0;
}
.top-about__more-btn-wrapper {
  margin-top: -40px;
  position: relative;
  transition: opacity .5s ease, visibility .5s ease;
}
.top-about__more-btn-wrapper.is-open,
.top-about__more-btn-wrapper.is-open:hover {
  opacity: 0;
  visibility: none;
  pointer-events: none;
}
.top-about__more-btn {
  width: 200px;
  max-width: 100%;
  background: #EC9463;
  color: #fff;
  font-size: 14px;
  margin: 0 auto;
  text-align: center;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 100px;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-about__more-btn::after {
  content: '';
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-left: 15px;
  background: url(../img/contact/more-arrow.png) center / contain no-repeat;
}
.top-about__more-btn:hover {
  opacity: .8;
}
.top-about__item {
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .top-about__lead {
    font-size: 14px;
  }
  .top-about__accordion {
    height: 400px;
  }

  .top-about__item {
    margin-bottom: 38px;
  }
}
.top-about__item-ttl {
  font-size: 19px;
  font-weight: bold;
  color: #160a05;
  line-height: 1.45;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  position: relative;
}

.top-about__item-ttl::after {
  content: "";
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #ebc8b2,#f8e1cf 56.758%, #c59f8a 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 750px) {
  .top-about__item-ttl {
    font-size: 15px;
  }
}
.top-about__item-desc {
  margin-bottom: 50px;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .top-about__item-desc {
    margin-bottom: 25px;
    font-size: 13px;
    line-height: 1.6;
  }
}
.top-about__item-table {
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .top-about__item-table {
    margin: 29px 0 34px;
  }
}
.top-about__item-table th {
  width: 78%;
  padding: 4px 0 1px;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  background: #160a05;
  border-left: 1px solid #160a05;
  border-right: 1px solid #fff;
  text-align: center;
}
.top-about__item-table th:last-child {
  width: 28%;
  border-right: 1px solid #160a05;
}
.top-about__item-table td {
  padding: 2px 0 3px;
  font-size: 15px;
  text-align: center;
  border: 1px solid #160a05;
}
.top-about__item-table-col {
  width: 100%;
  display: flex;
}
.top-about__item-table-col span {
  flex: 40%;
}
.top-about__item-table-col span:nth-child(1) {
  text-align: right;
}
.top-about__item-table-col span:nth-child(2) {
  flex: 20%;
}
.top-about__item-table-col span:nth-child(3) {
  text-align: left;
}
.top-about__item-example dt {
  margin-bottom: 50px;
  font-weight: bold;
  color: #160a05;
}
.top-about__item-example dd {
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .top-about__item-table th {
    padding-bottom: 4px;
    font-size: 13px;
  }
  .top-about__item-table td {
    padding-top: 4px;
    font-size: 13px;
  }
  .top-about__item-example {
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: 0.05em;
  }
  .top-about__item-example dt {
    margin-bottom: 23px;
  }
  .top-about__item-example dd {
    margin-bottom: 25px;
  }
}
.top-about__item-list li {
  padding-left: 1em;
  position: relative;
}
.top-about__item-list li::before {
  content: "・";
  font-size: 14px;
  position: absolute;
  top: 0;
  left: 0;
}

/**
 * サンクスページ
 */
.thanks {
  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;
}
@media screen and (max-width: 750px) {
  .thanks {
    padding: 56px 18px 45px;
  }
  .thanks__ttl {
    font-size: 24px;
  }
  .thanks .c-btn a {
    max-width: 190px;
  }
}

/**
 * 買取実績
 */
.result {
  padding: 85px 0 87px;
  overflow: hidden;
  background: url("../img/result/bg.png") center/73px;
}
.result__inner {
  max-width: 1240px;
  padding: 0 30px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .result {
    padding: 35px 0 67px;
  }
  .result__inner {
    padding: 0 18px;
  }
  .result .c-result__list {
    margin-bottom: 34px;
  }
}

/**
 * お客様の声
 */
.voice {
  background: #FCFAEC;
  padding: 60px 0 107px;
}
.voice__inner {
  max-width: 760px;
  padding: 0 30px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .voice {
    padding: 36px 0 67px;
  }
  .voice__inner {
    padding: 0 18px;
  }
}

/**
 * 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;
}
@media screen and (max-width: 750px) {
  .notfound {
    padding: 50px 18px;
  }
  .notfound__ttl {
    font-size: 21px;
  }
  .notfound__desc {
    margin-bottom: 38px;
  }
}

/**
 * 高価買取のポイント
 */

.top-point{
  background-image: url("../img/top/point-bg.jpg");
  background-size: cover;
  height: 315px;
}
.top-point__inner{
  text-align: center;
  padding-top: 50px;
}
.top-point__inner h2{
  font-size: 24px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 35px;
  letter-spacing: 1px;
  font-weight: bold;
}
.top-point__inner h2::before{
  content: "";
  width: 240px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.top-point__inner h2::after{
  content: "";
  width: 10px;
  height: 5px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}
.top-point__inner p{
  font-size: 15px;
  color: #fff;
  letter-spacing: 2px;
  font-weight: bold;
}

@media screen and (min-width: 750px) {
  .top-point{
    height: 360px;
  }
  .top-point__inner h2{
    font-size: 30px;
  }
  .top-point__inner h2::before{
    width: 340px;
  }
  .top-point__inner h2::after{
    width: 15px;
    height: 10px;
    bottom: -10px;
  }
  .top-point__inner p{
    font-size: 18px;
  }
}


/**
 * LP MV
 */
.lp-mv {
  height: 650px;
  background: #160a05 url('../img/watch/lp/mv/mv-pc.png') center / auto 100% no-repeat;
  position: relative;
}
.lp-mv::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.lp-mv__inner {
  position: relative;
  height: 100%;
  z-index: 10;
}

.lp-mv__kuchikomi {
  width: 323.5px;
  width: 420px;
  position: absolute;
  top: 48.2%;
  left: calc(50% - 336px);
  transform: translateX(-50%);
}

.lp-mv__kuchikomi a {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.1s ease;
}

.lp-mv__kuchikomi a:hover {
  opacity: .8;
}

.lp-mv__cta {
  max-width: 285px;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  letter-spacing: .08em;
  color: #fff;
  outline: 1px solid #fff;
  outline-offset: -5px;
  background: #094664;
  border-radius: 0;
  position: absolute;
  top: auto;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}

@media screen and (max-width: 1200px) {
  .lp-mv {
      height: 500px;
  }

  .lp-mv__kuchikomi {
    width: 323.5px;
    left: calc(50% - 258px);
  }
}

@media screen and (max-width: 960px) {
  .lp-mv {
    height: 470px;
    background-image: url(../img/watch/lp/mv/mv-sp.png);
  }

  .lp-mv__inner {
    max-width: 375px;
    margin-inline: auto;
  }

  .lp-mv__cta {
    max-width: 190px;
    min-height: 40px;
    font-size: 14px;
    bottom: 40px;
  }

  .lp-mv__kuchikomi {
    width: 125px;
    top: 23%;
    left: 95.3%;
    transform: translateX(-100%);
  }
}

/**
 * 選ばれている4つの理由
 */
.lp-reason {
  padding: 48px 0 61px;
  color: #fff;
  background: #160a05;
}

.lp-reason .c-ttl1 {
  margin-bottom: 32px;
}

.lp-reason__inner {
  padding: 0 30px;
  max-width: 960px;
  margin: 0 auto;
}

.lp-reason__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 30px;
  counter-reset: num;
}

.lp-reason-item__ttl {
  font-size: 26.5px;
  font-weight: 700;
  color: #93835E;
  line-height: 1.5;
  box-shadow: 2.5px 2.5px 5px rgba(0,0,0,0.1);
  margin-bottom: 9px;
  position: relative;
  border-bottom: 1px solid #e5b2a0;
}

.lp-reason-item__ttl-num span {
  font-size: 14px;
  line-height: 23px;
  display: inline-block;
}

.lp-reason-item__ttl-num span::after {
  counter-increment: num;
  content: counter(num, decimal-leading-zero);
  display: inline-block;
  margin-left: 5px;
  font-size: 23px;
}

.lp-reason-item__ttl-inner {
    margin-top: -7px;
    padding-bottom: 8px;
}

.lp-reason-item__desc {
  font-size: 15px;
  line-height: calc(20/12);
}

@media screen and (max-width: 750px) {
  .lp-reason__inner {
    padding: 0 37.5px;
  }

  .lp-reason__list {
    grid-template-columns: 100%;
    gap: 23px 0;
  }

  .lp-reason-item__desc {
    font-size: 12px;
  }
}

/* ブランド */
.lp-brand {
  padding: 48px 0 63px;
  background: rgba(22,10,5,.9);
}

.lp-brand .c-ttl1 {
  margin-bottom: 60px;
  padding: 0 30px;
}

@media screen and (max-width: 750px) {
  .lp-brand .c-ttl1 {
    padding: 0 15px;
  }
}

.lp-brand__content {
  max-width: 900px;
  margin-inline: auto;
  padding: 0 15px 0 25px;
}

@media screen and (max-width: 750px) {
  .lp-brand__content {
    padding: 0 7.5px 0 12.5px;
  }
}

.lp-brand__list {
  display: flex;
  flex-wrap: wrap;
}

.lp-brand__list:not(:first-child) {
  margin-top: 15px;
}

.lp-brand__item {
  max-width: calc((100% + 5px) / 2);
}

.lp-brand__item:not(.lp-brand__item--long):nth-child(even) {
    margin-left: -5px;
}

.lp-brand__item:not(.lp-brand__item--long,:nth-child(1),:nth-child(2)) {
  margin-top: -4px;
}

.lp-brand__item--long {
  max-width: 100%;
}

.lp-brand__item--long:not(:first-child) {
  margin-top: -5px;
}

.lp-brand-other {
  margin-top: 32px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.lp-brand-other__ttl {
  font-size: 19px;
}

.lp-brand-other__txt {
  margin-top: 26px;
  font-size: 14px;
  line-height: calc(23/14);
}

/**
 * 共通セクション
 */
.lp-sec01 {
  background: #160a05;
  padding: 49.5px 0 54px;
}

.lp-sec01__inner {
  padding: 0 17.5px;
  max-width: 960px;
  margin: 0 auto;
}

.lp-sec01-box {
  overflow: hidden;
}

.lp-sec01-box__ttl {
  min-height: 115px;
  display: flex;
  align-items: center;
  background: url(../img/watch/lp/sec01/lp-sec01-bg.jpg) center / cover no-repeat;
}

.lp-sec01-box__ttl-inner {
  flex: 1 0 100%;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.6;
  text-align: center;
}

.lp-sec01-box__body {
  color: #fff;
}

.lp-sec01-box__desc {
  margin-top: 25px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0;
  line-height: calc(23/14);
}

.lp-sec01-box__lists {
  margin-top: 37px;
}

.lp-sec01-box__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14.5px 17px;
}

.lp-sec01-box__list + .lp-sec01-box__list {
  margin-top: 14.5px;
}

.lp-sec01-item {
  max-width: 102px;
  flex: 0 0 120pc;
}

.lp-sec01-item__pic {
  display: block;
  overflow: hidden;
  background: #fafafa;
  margin-bottom: 9px;
  position: relative;
}

.lp-sec01-item__pic::before {
  content: '';
  display: block;
  padding-top: 100%;
}

.lp-sec01-item__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-sec01-item__txt {
  text-align: center;
  font-size: 15px;
}

@media screen and (max-width: 750px) {
  .lp-sec01-box__list {
    grid-template-columns: repeat(3, 104px);
  }

  .lp-sec01-item__txt {
    font-size: 14px;
  }
}

/* tips */
.lp-tips {
  background: #2d221e;
  padding: 48px 0;
}

.lp-tips__inner {
  max-width: 1000px;
  padding: 0 37px;
  margin: 0 auto;
}

.lp-tips .c-ttl1 {
  margin-bottom: 46px;
  --color: #fff;
}

.lp-tips__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 17px;
}

.lp-tips-item {
  flex: 0 0 calc(calc(100% - 40px) / 3);
}

.lp-tips-item__num {
  display: inline-block;
  margin: 0 auto 0 -.55em;
  background: linear-gradient(135deg, #d69d93, #e3c6c6 21.8182%, #caaab2 34.1176%, #d0a8aa 42.4242%, #fefbff 58.7879%, #e4ccd5 77.5758%, #e5b2a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: 700;
}

.lp-tips-item__num span {
  font-size: 14px;
}

.lp-tips-item__ttl {
  margin-top: 2px;
  padding: 3px 10px;
  background: linear-gradient(135deg, #d69d93, #e3c6c6 21.8182%, #caaab2 34.1176%, #d0a8aa 42.4242%, #fefbff 58.7879%, #e4ccd5 77.5758%, #e5b2a0 100%);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.59;
}

.lp-tips-item__desc {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0;
  line-height: calc(21/12);
  color: #fff;
}

@media screen and (max-width: 750px) {
  .lp-tips__list {
    grid-template-columns: 1fr;
    gap: 29.5px 0;
  }

  .lp-tips-item {
    flex: 0 0 100%;
  }
}


.lp .top-goods {
  position: relative;
}


/**
 * LP買取実績リンク
 **/
.lp-jisseki-link {
  background: rgba(22,10,5,.9);
}

.lp-jisseki-link__inner {
  width: 100%;
  padding: 40px 0;
}

.lp-jisseki-link__box {
  aspect-ratio: 680/356;
  width: 100%;
  max-width: 680px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-inline: auto;
  position: relative;
  z-index: 0;
}

.lp-jisseki-link__box::after {
  pointer-events: none;
  content: "";
  aspect-ratio: 750/434;
  width: 109%;
  max-width: 750px;
  background: url('../img/watch/lp/jisseki-link/bg.png') center / cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: -1;
}

.lp-jisseki-link__box:hover {
  opacity: .8;
}

.lp-jisseki-link__txt {
  background: rgba(0,0,0,0.5);
  text-align: center;
  font-size: 22px;
  line-height: calc(30/22);
  font-weight: 700;
  border: solid 1px #fff;
  padding: 7px 19px 12px;
}

@media screen and (max-width: 750px) {
  .lp-jisseki-link {
    padding: 19px 16px;
  }

  .lp-jisseki-link__inner {
    padding: 0;
  }
}


/**
 * FAQアコーディオン
 */
.top-faq-item-acrd {
  background: #fff;
  border-radius: 13px;
  padding: 24px 77px 24px 34px;
  position: relative;
}
.top-faq-item-acrd::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: #222;
  right: 30px;
  top: 37px;
}
.top-faq-item-acrd::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: #222;
  right: 30px;
  top: 37px;
  transform: rotate(90deg);
  transition: transform .2s ease;
}
.top-faq-item-acrd.is-open::after {
  transform: none;
}
.top-faq-item-acrd__question {
  font-weight: 700;
  font-size: 19px;
  line-height: 1.4;
  padding-left: 36px;
  letter-spacing: 0.05em;
  min-height: 26px;
  position: relative;
}
.top-faq-item-acrd__question::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background: url("../img/top/faq-question.png") center/contain no-repeat;
}
.top-faq-item-acrd__answer {
  font-size: 19px;
  line-height: 1.45;
  padding-left: 36px;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  display: none;
}
.top-faq-item-acrd__answer::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 26px;
  height: 26px;
  background: url("../img/top/faq-answer.png") center/contain no-repeat;
}
.top-faq-item-acrd__answer strong {
  font-weight: 700;
}
.top-faq-item-acrd__answer em {
  font-style: italic;
}
.top-faq-item-acrd__answer del {
  text-decoration: line-through;
}
.top-faq-item-acrd__answer-inner {
  padding-top: 16px;
}
.top-faq-item-acrd:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .top-faq-item-acrd {
    padding: 17px 40px 17px 10px;
    border-radius: 10px;
  }
  .top-faq-item-acrd::before,
  .top-faq-item-acrd::after {
    width: 16px;
    top: 27px;
    right: 15px;
  }
  .top-faq-item-acrd__question {
    font-size: 15px;
    min-height: 20px;
    padding-left: 30px;
  }
  .top-faq-item-acrd__question::before {
    height: 20px;
    width: 20px;
  }
  .top-faq-item-acrd__answer {
    font-size: 15px;
    padding-left: 30px;
  }
  .top-faq-item-acrd__answer::before {
    height: 20px;
    width: 20px;
  }
  .top-faq-item-acrd:not(:last-child) {
    margin-bottom: 32px;
  }
}


/**
 * LP：質預かりについて
 */
.lp .top-about .c-ttl2 {
  margin-bottom: 50px;
}


/* LP line */
.lp-line {
  padding: 47px 0 59px;
  background: #e3e2e1;
}

.lp-line__ttl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  font-size: 25px;
  line-height: 1.5;
}

.lp-line__ttl span {
  font-size: 30px;
}

.lp-line__content {
  margin-top: 37.5px;
}

.lp-line__list {
  padding: calc((13/15) * 1em) calc((13/15) * 1em) calc((14/15) * 1em);
  border: 1px solid #000;
  font-size: 18px;
}

.lp-line__list li {
  max-width: fit-content;
  min-width: calc((175/15) * 1em);
  margin-inline: auto;
  padding-left: calc((25/15) * 1em);
  position: relative;
}

.lp-line__list li:not(:first-child) {
  margin-top: calc((4/15) * 1em);
}

.lp-line__list li::before {
  content: "";
  aspect-ratio: 1/1;
  width: 100%;
  max-width: calc((16/15) * 1em);
  display: inline-block;
  background: url(../img/watch/lp/line/check-mark.png) center / cover no-repeat;
  position: absolute;
  top: calc((4/15) * 1em);
  left: 0;
}

.lp-line__flows {
  display: grid;
  grid-template-columns: repeat(3, minmax(auto,170px));
  grid-template-rows: 80px auto;
  justify-content: center;
  column-gap: 45px;
  margin-top: 50px;
}

.lp-line-flow {
  aspect-ratio: 1/1;
  width: 100%;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  justify-content: center;
  padding: 20px;
  background: #5c5350;
  color: #fff;
  position: relative;
}

.lp-line-flow:not(:first-child)::after {
  content: "";
  aspect-ratio: 2/3;
  display: block;
  width: 100%;
  max-width: 21px;
  background: url(../img/watch/lp/line/arrow.png) center / cover no-repeat;
  position: absolute;
  top: 50.5%;
  left: -5.5%;
  transform: translate(-100%, -50%);
}

.lp-line-flow__icon {
  margin: 0 auto;
}

.lp-line-flow__icon--01 img {
  width: 46px;
  height: 36px;
}

.lp-line-flow__icon--02 img {
  width: 52px;
  height: 50px;
}

.lp-line-flow__icon--03 img {
  width: 46px;
  height: 46px;
}

.lp-line-flow__txt {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.08;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .lp-line__list {
    font-size: 15px;
  }
  .lp-line__flows {
    display: grid;
    grid-template-columns: repeat(3, minmax(auto,85px));
    grid-template-rows: 40px auto;
    column-gap: 22.5px;
    margin-top: 25px;
  }

  .lp-line-flow {
    padding: 10px;
  }

  .lp-line-flow:not(:first-child)::after {
    max-width: 10.5px;
  }

  .lp-line-flow__icon--01 img {
    width: 23px;
    height: 18px;
  }

  .lp-line-flow__icon--02 img {
    width: 26px;
    height: 25px;
  }

  .lp-line-flow__icon--03 img {
    width: 23px;
    height: 23px;
  }

  .lp-line-flow__txt {
    font-size: 16px;
  }
}