@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 Sans 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);
  padding-bottom: var(--bottom-bar-height);
}

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

/**
 * ヘッダー
 */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: #fff;
  color: #231815;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}
.c-header__brand {
  display: flex;
  align-items: center;
  padding-left: 24px;
}
.c-header__logo {
  margin-right: 20px;
}
.c-header__logo a {
  transition: opacity 0.1s ease;
}
.c-header__logo a:hover {
  opacity: 0.8;
}
.c-header__name {
  font-size: 16px;
  font-weight: 700;
}
.c-header__name br {
  display: none;
}
.c-header__content {
  height: 100%;
  display: flex;
  align-items: center;
}
.c-header__menu {
  display: flex;
  align-items: center;
  height: 100%;
}
.c-header__menu-list {
  display: flex;
  align-items: center;
  height: 100%;
  margin-right: 23px;
}
.c-header__menu-item {
  font-weight: 700;
  padding: 0 26px;
}
.c-header__menu-item a {
  transition: opacity 0.1s ease;
}
.c-header__menu-item a:hover {
  opacity: 0.8;
}
.c-header__contact {
  height: 100%;
  width: 222px;
}
.c-header__contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #A61B1A;
  color: #fff;
  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: 33px;
  height: 33px;
  background: url("../img/header/contact.png") center/contain no-repeat;
  margin-right: 9px;
}
.c-header__tel {
  display: none;
}
@media (max-width: 1480px) {
  .c-header__name br {
    display: inline;
  }
  .c-header__menu-list {
    margin-right: 10px;
  }
  .c-header__menu-item {
    padding: 0px 9px;
  }
}
@media (max-width: 1280px) {
  .c-header__name {
    font-size: 14px;
  }
  .c-header__menu-list {
    margin-right: 10px;
  }
  .c-header__menu-item {
    padding: 0 5px;
  }
  .c-header__contact {
    width: 150px;
  }
  .c-header__contact a::before {
    width: 25px;
    height: 25px;
    margin-right: 5px;
  }
}
@media (max-width: 1080px) {
  .c-header__brand {
    padding-left: 15px;
  }
  .c-header__logo {
    width: 140px;
  }
  .c-header__name {
    font-size: 14px;
  }
  .c-header__menu-item {
    font-size: 14px;
  }
  .c-header__contact {
    font-size: 16px;
  }
}
@media screen and (max-width: 959px) {
  .c-header {
    padding: 0 5px 0 17px;
  }
  .c-header__brand {
    padding: 0;
  }
  .c-header__logo {
    width: 115px;
    margin-right: 13px;
  }
  .c-header__name {
    font-size: 11px;
  }
  .c-header__menu {
    display: none;
  }
  .c-header__tel {
    display: block;
  }
  .c-header__tel a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #8BC373;
    border-radius: 6px;
    border: solid 2px #fff;
  }
  .c-header__tel img {
    width: 37px;
    height: 40px;
  }
}

/**
 * ハンバーガーボタン
 */
.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: 50px;
    height: 50px;
    background: #fff;
    border-radius: 6px;
    margin-right: 5px;
    background: #A61B1B;
    border: solid 2px #fff;
  }
}

/**
 * ハンバーガーメニュー
 */
.c-hamburger-menu {
  display: none;
  opacity: 0;
  visibility: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  background: #fff;
  color: #231815;
  pointer-events: none;
  transition: opacity 0.1s ease, visibility 0.1s ease;
  z-index: 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);
  background: #8BC373;
  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%;
}
.c-bottom-bar__line-btn {
  display: none;
}
.c-bottom-bar__contact {
  padding-top: 6px;
  height: 100%;
}
.c-bottom-bar__contact a {
  transition: opacity 0.1s ease;
}
.c-bottom-bar__contact a:hover {
  opacity: 0.8;
}
.c-bottom-bar__character {
  padding-bottom: 0;
}
@media screen and (max-width: 959px) {
  .c-bottom-bar {
    background: #8BC373;
  }
  .c-bottom-bar__inner {
    padding-left: 10px;
  }
  .c-bottom-bar__contact img {
    width: 223px;
  }
  .c-bottom-bar__character img {
    width: 140px;
  }
}

.c-footer {
  background: #A61B1A;
}
.c-footer__ttl {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 19px;
}
.c-footer__logo {
  margin-bottom: 68px;
}
.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__info {
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
}
.c-footer__copyright {
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 18px 26px;
  border-top: 10px solid #666;
}
@media screen and (max-width: 750px) {
  .c-footer__to-top {
    display: none;
  }
  .c-footer__main {
    padding: 67px 0 53px;
  }
  .c-footer__ttl {
    font-size: 24px;
  }
  .c-footer__logo {
    margin-bottom: 29px;
  }
  .c-footer__logo img {
    width: 119px;
  }
  .c-footer__info {
    font-size: 14px;
  }
  .c-footer__map {
    position: relative;
    height: 157px;
  }
  .c-footer__map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .c-footer__copyright {
    border-top-width: 8px;
    font-size: 11px;
    padding: 12px 15px;
  }
}

.c-ttl1 {
  --color: #000;
  --line-color: #FDD33D;
  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__sub span::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -22px;
  height: 20px;
  width: 3px;
  background: var(--color);
  transform: rotate(-34deg);
  border-radius: 100px;
}
.c-ttl1__sub span::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -22px;
  height: 20px;
  width: 3px;
  background: var(--color);
  transform: rotate(34deg);
  border-radius: 100px;
}
.c-ttl1__ttl {
  font-size: 31px;
  color: var(--color);
}
.c-ttl1__ttl span {
  position: relative;
}
.c-ttl1__ttl span::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 7px;
  background: var(--line-color);
}
.c-ttl1__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 var(--line-color);
}
.c-ttl1--white {
  --color: #fff;
}
.c-ttl1--line-orange {
  --line-color: #EF825A;
}
@media screen and (max-width: 750px) {
  .c-ttl1__sub {
    font-size: 13px;
    margin-bottom: 3px;
  }
  .c-ttl1__sub span::before, .c-ttl1__sub span::after {
    top: 3px;
    height: 15px;
    width: 2px;
  }
  .c-ttl1__sub span::before {
    left: -12px;
  }
  .c-ttl1__sub span::after {
    right: -12px;
  }
  .c-ttl1__ttl {
    font-size: 24px;
  }
  .c-ttl1__ttl span::before {
    height: 5px;
    bottom: -7px;
  }
  .c-ttl1__ttl span::after {
    bottom: -14px;
    border-left-width: 4px;
    border-right-width: 4px;
    border-top-width: 7px;
  }
}

.c-ttl2 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
.c-ttl2__sub {
  font-size: 27px;
  color: #1A2348;
  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: #1A2348;
  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: #FDD33D;
}
.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 #FDD33D;
}
@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;
  }
}

.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: #7CBD27;
  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-tap2 a {

}

.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--white a {
  background: #fff;
  color: #000;
}
.c-btn--white a::before {
  background: url("../img/common/btn-arrow-black.png") center/contain no-repeat;
}
.c-btn--green2 a {
  background: #8BC373;
}
.c-btn--back a::before {
  transform: rotate(180deg);
}
.c-btn--brown a {
  background: #93835f;
}
.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;
}
@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: 33px 20px 55px;
}
.c-line__ttl {
  text-align: center;
  margin-bottom: 21px;
}
.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: 1px 0 26px;
    border-width: 8px;
  }
  .c-line__ttl {
    margin-bottom: 17px;
  }
  .c-line__btn {
    padding: 0 12px;
  }
  .c-line__btn a {
    border-width: 3px;
    font-size: 16px;
    padding: 12px;
  }
  .c-line__btn a::before {
    width: 32px;
    height: 30px;
  }
}

/**
 * お問い合わせ
 */
.c-contact {
  background: #FCF3D3;
  padding: 95px 0 106px;
}
.c-contact .c-ttl1 {
  margin-bottom: 63px;
}
.c-contact__inner {
  padding: 0 60px;
}
.c-contact__content {
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .c-contact {
    padding: 43px 0 50px;
  }
  .c-contact .c-ttl1 {
    margin-bottom: 50px;
  }
  .c-contact__inner {
    padding: 0 18px;
  }
}

.c-contact-tel {
  background: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 47px 20px 57px;
  margin-bottom: 50px;
}
.c-contact-tel__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.c-contact-tel__ttl::before {
  content: "";
  flex: 0 0 42px;
  height: 42px;
  background: url("../img/contact/tel.png") center/contain no-repeat;
  margin-right: 19px;
}
.c-contact-tel__number {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}
.c-contact-tel__note {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.c-contact-tel__note span {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .c-contact-tel {
    padding: 36px 10px 32px;
    margin-bottom: 20px;
  }
  .c-contact-tel__ttl {
    font-size: 16px;
    margin-bottom: 23px;
  }
  .c-contact-tel__ttl::before {
    flex: 0 0 32px;
    height: 32px;
    margin-right: 14px;
  }
  .c-contact-tel__number {
    font-size: 30px;
    margin-bottom: 1px;
    display: none;
  }
  .c-contact-tel__note {
    font-size: 14px;
    margin-bottom: 26px;
  }
  .c-contact-tel__note span {
    font-size: 12px;
  }
}

.c-contact-mail {
  background: #fff;
  border-radius: 8px;
  padding: 40px 60px 103px;
}
.c-contact-mail__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.c-contact-mail__ttl::before {
  content: "";
  flex: 0 0 42px;
  height: 42px;
  background: url("../img/contact/mail.png") center/contain no-repeat;
  margin-right: 19px;
}
.c-contact-mail__note {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}
@media screen and (max-width: 750px) {
  .c-contact-mail {
    padding: 30px 20px 32px;
  }
  .c-contact-mail__ttl {
    font-size: 16px;
    margin-bottom: 9px;
  }
  .c-contact-mail__ttl::before {
    flex: 0 0 32px;
    height: 32px;
    margin-right: 14px;
  }
  .c-contact-mail__note {
    font-size: 14px;
  }
}

.c-contact-form input[type=text],
.c-contact-form input[type=email],
.c-contact-form select,
.c-contact-form textarea {
  background: #F5F5F5;
  font-size: 18px;
  border-radius: 6px;
  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 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 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 select::placeholder,
.c-contact-form textarea::placeholder {
  color: #B9B9B9;
}
.c-contact-form select {
  position: relative;
  background: url("../img/contact/select-arrow.png") right 22px top 24px/15px no-repeat #F5F5F5;
}
.c-contact-form select::before {
  content: "a";
  position: absolute;
}
.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 {
  font-size: 11px;
  font-weight: 700;
  color: #CF0078;
  border: solid 2px #CF0078;
  border-radius: 5px;
  letter-spacing: 0.5em;
  padding: 1px 0 1px 0.5em;
  display: inline-block;
  width: 73px;
  text-align: center;
  vertical-align: 3px;
  margin-right: 12px;
}
.c-contact-form__fields {
  margin-bottom: 33px;
}
.c-contact-form__field:not(:last-child) {
  margin-bottom: 24px;
}
.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 {
  background: #EC9463;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 5px;
  padding: 3px 15px;
  transition: opacity 0.1s ease;
}
.c-contact-form__zipcode button:hover {
  opacity: 0.8;
}
.c-contact-form__policy-txt {
  height: 137px;
  border: solid 1px #CCCCCC;
  overflow: scroll;
  font-size: 13px;
  padding: 21px 23px;
  margin-top: 14px;
  margin-bottom: 30px;
}
.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 button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #8BC373;
  color: #fff;
  font-size: 23px;
  font-weight: 700;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  padding: 23px;
  border-radius: 100px;
  transition: opacity 0.1s ease;
  box-shadow: 6px 6px rgba(0, 0, 0, 0.2);
}
.c-contact-form__submit button:hover {
  opacity: 0.8;
}
.c-contact-form__submit button::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-contact-form input[type=text],
.c-contact-form input[type=email],
.c-contact-form select,
.c-contact-form textarea {
    font-size: 16px;
    border-radius: 3px;
    padding: 8px 15px;
  }
  .c-contact-form select {
    background: url("../img/contact/select-arrow.png") right 14px top 19px/10px no-repeat #F5F5F5;
  }
  .c-contact-form textarea {
    height: 135px;
  }
  .c-contact-form__label {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .c-contact-form__fields {
    margin-bottom: 22px;
  }
  .c-contact-form__field:not(:last-child) {
    margin-bottom: 18px;
  }
  .c-contact-form__subfield:not(:last-child) {
    margin-bottom: 4px;
  }
  .c-contact-form__tag {
    width: 55px;
    font-size: 10px;
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 3px;
    margin-right: 10px;
    vertical-align: 2px;
    border-width: 1px;
  }
  .c-contact-form__zipcode input[type=text] {
    flex: 0 0 179px;
    margin-right: 16px;
  }
  .c-contact-form__zipcode button {
    font-size: 11px;
    padding: 3px 13px;
    border-radius: 3px;
  }
  .c-contact-form__policy-txt {
    height: 150px;
    margin-top: 9px;
  }
  .c-contact-form__policy-agree {
    font-size: 14px;
    margin-bottom: 33px;
  }
  .c-contact-form__policy-agree input[type=checkbox] {
    transform: scale(1.4);
    margin-right: 10px;
  }
  .c-contact-form__submit button {
    font-size: 18px;
    padding: 18px;
    box-shadow: 3px 3px rgba(0, 0, 0, 0.2);
  }
}

.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: 27px;
  }
  .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: 28px;
    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: 12px 20px;
  }
  .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: 88px;
}
.c-result .c-ttl2__sub {
  color: #A61B1B;
}
.c-result .c-ttl2__sub span::before, .c-result .c-ttl2__sub span::after {
  background: #A61B1B;
}
.c-result__list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -13px;
  margin-bottom: 31px;
}
.c-result__empty {
  margin-bottom: 31px;
}
@media screen and (max-width: 750px) {
  .c-result .c-ttl2 {
    margin-bottom: 50px;
  }
  .c-result__list {
    display: block;
    margin-right: 0;
  }
  .c-result__empty {
    margin-bottom: 21px;
  }
}

.c-result-item {
  flex: 0 0 25%;
  max-width: calc(25% - 13px);
  margin-right: 13px;
  margin-bottom: 12px;
  background: #fff;
}
.c-result-item__pic {
  background: #eee;
  position: relative;
}
.c-result-item__pic::before {
  content: "";
  display: block;
  padding-top: 74.76%;
}
.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: 3px 10px 14px;
}
.c-result-item__desc {
  padding-top: 8px;
  font-size: 14px;
  line-height: 1.5;
}
.c-result-item__desc--clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.c-result-item__desc strong {
  font-weight: 700;
}
.c-result-item__desc em {
  font-style: italic;
}
@media screen and (max-width: 750px) {
  .c-result-item {
    flex: 0 0 50%;
    max-width: calc(50% - 10px);
    margin-right: 10px;
    margin-bottom: 10px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.25);
  }
  .c-result-item__body {
    padding: 8px 8px 12px;
  }
  .c-result-item__desc {
    font-size: 12px;
    line-height: 1.3333;
  }
}

.c-result-price {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  font-size: 15px;
  font-weight: 700;
  padding-bottom: 9px;
  border-bottom: solid 2px #FDD33D;
}
.c-result-price__txt {
  line-height: 26px;
}
.c-result-price__amount {
  flex: 1 1 auto;
  text-align: right;
}
.c-result-price__amount span {
  word-break: break-all;
  font-size: 26px;
  color: #E9441F;
  margin-right: 6px;
}
@media screen and (max-width: 750px) {
  .c-result-price {
    font-size: 12px;
    border-bottom-width: 1px;
    padding-bottom: 7px;
  }
  .c-result-price__txt {
    line-height: 20px;
  }
  .c-result-price__amount {
    line-height: 20px;
  }
  .c-result-price__amount span {
    font-size: 20px;
  }
}

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

/**
 * 買取実績カテゴリ選択
 */
.c-jisseki-cat {
  margin-bottom: 80px;
}
.c-jisseki-cat__ttl {
  max-width: 196px;
  margin: 0 auto;
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  background: #000;
  color: #fff;
  padding: 5px 0;
  margin-bottom: 30px;
}
.c-jisseki-cat__list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
}
.c-jisseki-cat__item {
  flex: 0 0 20%;
  max-width: calc(20% - 10px);
  margin-right: 10px;
  margin-bottom: 11px;
}
.c-jisseki-cat__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55px;
  background: center right/auto 55px no-repeat #F09B61;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: opacity 0.1s ease;
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
}
.c-jisseki-cat__item a:hover {
  opacity: 0.8;
}
.c-jisseki-cat__item a span {
  padding: 2px 0;
  border-bottom: solid 2px #F09B61;
  margin-top: 2px;
}
.c-jisseki-cat__item a::before {
  content: "";
  flex: 0 0 8px;
  height: 8px;
  background: url("../img/jisseki-cat/arrow.png") center/contain no-repeat;
  margin-right: 8px;
}
.c-jisseki-cat__item a::after {
  content: "";
  flex: 0 0 8px;
  height: 8px;
  margin-right: 8px;
}
.c-jisseki-cat__item.is-current a {
  background-color: #fff;
  color: black;
}
.c-jisseki-cat__item.is-current a::before {
  background: url("../img/jisseki-cat/arrow-black.png") center/contain no-repeat;
}
.c-jisseki-cat__item--all a {
  background-image: url("../img/jisseki-cat/bg-all-right.png"), url("../img/jisseki-cat/bg-all-left.png");
  background-position: center right, center left;
}
.c-jisseki-cat__item--watch a {
  background-image: url("../img/jisseki-cat/bg-watch.png");
}
.c-jisseki-cat__item--bag a {
  background-image: url("../img/jisseki-cat/bg-bag.png");
}
.c-jisseki-cat__item--jewelry a {
  background-image: url("../img/jisseki-cat/bg-jewelry.png");
}
.c-jisseki-cat__item--ticket a {
  background-image: url("../img/jisseki-cat/bg-ticket.png");
}
.c-jisseki-cat__item--gold a {
  background-image: url("../img/jisseki-cat/bg-gold.png");
}
.c-jisseki-cat__item--kimono a {
  background-image: url("../img/jisseki-cat/bg-kimono.png");
}
.c-jisseki-cat__item--stamp a {
  background-image: url("../img/jisseki-cat/bg-stamp.png");
}
.c-jisseki-cat__item--dress a {
  background-image: url("../img/jisseki-cat/bg-dress.png");
}
.c-jisseki-cat__item--other a {
  background-image: url("../img/jisseki-cat/bg-other.png");
}
@media screen and (max-width: 750px) {
  .c-jisseki-cat {
    margin-bottom: 34px;
  }
  .c-jisseki-cat__ttl {
    font-size: 17px;
    max-width: 154px;
    padding: 4px 0;
    margin-bottom: 11px;
  }
  .c-jisseki-cat__list {
    margin-right: -5px;
  }
  .c-jisseki-cat__item {
    flex: 0 0 33.33333%;
    max-width: calc(33.33333% - 5px);
    margin-right: 5px;
    margin-bottom: 5px;
  }
  .c-jisseki-cat__item a {
    height: 45px;
    font-size: 12px;
    background-size: auto 45px;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.2);
  }
  .c-jisseki-cat__item a span {
    border-bottom: solid 1px #F09B61;
  }
  .c-jisseki-cat__item a::before, .c-jisseki-cat__item a::after {
    flex: 0 0 6px;
    height: 6px;
    margin-right: 5px;
  }
  .c-jisseki-cat__item--all {
    flex: 0 0 100%;
    max-width: calc(100% - 5px);
  }
}

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

.c-jisseki-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-jisseki-price__label {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
.c-jisseki-price__amount {
  flex: 1 0 auto;
  font-size: 13px;
  font-weight: 700;
  text-align: right;
  max-width: 100%;
}
.c-jisseki-price__amount span {
  font-size: 33px;
  color: #E9441F;
  margin-right: 5px;
  word-break: break-all;
}
@media screen and (max-width: 750px) {
  .c-jisseki-price {
    margin-bottom: 10px;
  }
  .c-jisseki-price__label {
    font-size: 18px;
  }
  .c-jisseki-price__amount {
    font-size: 12px;
  }
  .c-jisseki-price__amount span {
    font-size: 30px;
  }
}

/**
 * トップ
 */
.top-mv img {
  width: 100%;
}
@media (max-width: 1700px) {
  .top-mv {
    height: 650px;
  }
  .top-mv img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit:cover;";
  }
}
@media screen and (max-width: 959px) {
  .top-mv {
    height: 125vw;
  }
}

/**
 * トップ：バナー
 */
.top-banner {
  background: #FCF3D3;
  padding: 40px 18px;
}
.top-banner__item {
  text-align: center;
}
.top-banner__item img {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 959px) {
  .top-banner {
    padding: 21px 18px;
  }
}

/**
 * トップ：イントロ
 */
.top-intro {
  border-bottom: solid 26px #A61B1B;
}
.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: #F09B61;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.top-intro__subttl span {
  position: relative;
  display: inline-block;
}
.top-intro__subttl span::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 50%;
  height: 32px;
  width: 2px;
  background: #F09B61;
  transform: translateY(-50%) rotate(-35deg);
  border-radius: 2px;
}
.top-intro__subttl span::after {
  content: "";
  position: absolute;
  right: -36px;
  top: 50%;
  height: 32px;
  width: 2px;
  background: #F09B61;
  transform: translateY(-50%) 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;
  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/100% 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: 30px;
  }
  .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;
  }
}

/**
 * トップ：買取強化品
 */
.top-pickup {
  padding: 84px 0 116px;
  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;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-right: -100px;
  margin-bottom: -80px;
}
@media screen and (max-width: 959px) {
  .top-pickup__list {
    margin-right: -30px;
  }
}
@media screen and (max-width: 750px) {
  .top-pickup {
    padding: 39px 0 22px;
  }
  .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__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: #A61B1A;
  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;
  }
}

/**
 * トップ：取扱商品
 */
.top-goods {
  padding: 101px 0 108px;
  background: url("../img/top/goods-bg.png") center top/109px repeat-x, #A61B1A;
}
.top-goods .c-ttl1 {
  margin-bottom: 65px;
  --color: #fff;
}
.top-goods__inner {
  max-width: 1125px;
  padding: 0 30px;
  margin: 0 auto;
}
.top-goods__list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-bottom: 53px;
}
.top-goods__msg {
  font-size: 14px;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .top-goods {
    padding: 30px 0 38px;
    background: url("../img/top/goods-bg.png") center top/auto 13px repeat-x, #A61B1A;
  }
  .top-goods .c-ttl1 {
    margin-bottom: 25px;
  }
  .top-goods__inner {
    padding: 0 12px;
  }
  .top-goods__list {
    margin-right: -10px;
    margin-bottom: 21px;
  }
}

.top-goods-item {
  flex: 0 0 16.666667%;
  max-width: calc(16.666667% - 20px);
  margin-right: 20px;
  margin-bottom: 19px;
}
.top-goods-item__pic {
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  margin-bottom: 10px;
}
.top-goods-item__pic img {
  width: 100%;
}
.top-goods-item__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 959px) {
  .top-goods-item {
    flex: 0 0 25%;
    max-width: calc(25% - 26px);
  }
}
@media screen and (max-width: 750px) {
  .top-goods-item {
    max-width: calc(25% - 10px);
    margin-right: 10px;
    margin-bottom: 5px;
  }
  .top-goods-item__pic {
    box-shadow: 3px 3px rgba(0, 0, 0, 0.2);
    margin-bottom: 7px;
  }
  .top-goods-item__name {
    font-size: 12px;
    line-height: 1.25;
    min-height: 22px;
  }
}

/**
 * トップ：買取実績
 */
.top-result {
  padding: 100px 0 87px;
  overflow: hidden;
  background: url("../img/top/result-bg.png") center top/91px;
}
.top-result__inner {
  max-width: 1240px;
  padding: 0 30px;
  margin: 0 auto;
}
.top-result .c-ttl2__sub {
  color: #A61B1B;
}
.top-result .c-ttl2__sub span::before, .top-result .c-ttl2__sub span::after {
  background: #A61B1B;
}
.top-result__list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-bottom: 40px;
}
.top-result__list .c-jisseki-item:nth-child(n+10) {
  display: none;
}
.top-result__tab {
  padding-bottom: 20px;
}
.top-result__msg {
  font-size: 14px;
  text-align: center;
  margin-top: 40px;
}
.top-result__banner {
  font-size: 14px;
  text-align: center;
  text-decoration:underline;
  text-decoration-color:#000;
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .top-result {
    padding: 35px 0 30px;
    background-size: 45px;
  }
  .top-result__inner {
    padding: 0 18px;
  }
  .top-result__list {
    display: block;
    margin-right: 0;
  }
  .top-result__list .c-jisseki-item:nth-child(n+6) {
    display: none;
  }
  .top-result__msg {
    margin-top: 10px;
    text-align: left;
  }
}

/**
 * トップ：お客様の声
 */
.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-flow-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 97px;
}
.top-flow-wrapper .c-btn {
  flex-grow: 1;
  flex-basis: 100%;
}
@media screen and (max-width: 750px) {
  .top-flow-wrapper {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}

.top-flow {
  padding: 30px 0;
  overflow: hidden;
}
.top-flow .c-ttl1 {
  margin-bottom: 56px;
}
.top-flow__inner {
  padding: 0 70px;
}
.top-flow__content {
  max-width: 440px;
  margin: 0 auto;
}
.top-flow__list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -26px;
  margin-bottom: 41px;
}
@media screen and (max-width: 750px) {
  .top-flow {
    padding: 20px 0;
  }
  .top-flow .c-ttl1 {
    margin-bottom: 44px;
  }
  .top-flow__inner {
    padding: 0 18px;
  }
  .top-flow__list {
    margin-bottom: 21px;
    margin-right: -20px;
  }
}

.top-flow-item {
  flex: 0 0 33.33333%;
  max-width: calc(33.33333% - 26px);
  margin-right: 26px;
  margin-bottom: 25px;
  text-align: center;
}
.top-flow-item__ttl {
  font-size: 23px;
  font-weight: 700;
  color: #8BC373;
  margin-bottom: 9px;
}
.top-flow-item__ttl--shuccho {
  color: #EC9463;
}
.top-flow-item__icon {
  margin-bottom: 8px;
  position: relative;
}
.top-flow-item__desc {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}
.top-flow-item__desc small {
  display: inline-block;
  font-size: 12px;
  line-height: 1.33333;
  margin-top: 4px;
}
.top-flow-item__area {
  margin-bottom: 16px;
}
.top-flow-item__area-note {
  font-size: 12px;
}
.top-flow-item:not(:nth-child(3n)) .top-flow-item__icon::before {
  content: "";
  position: absolute;
  border-left: solid 16px #B2B2B2;
  border-top: solid 16px transparent;
  border-bottom: solid 16px transparent;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
}
.top-flow-item--area {
  margin-top: 28px;
  flex: 0 0 100%;
  max-width: calc(100% - 26px);
  margin-right: 26px;
}
@media screen and (max-width: 750px) {
  .top-flow-item {
    max-width: calc(33.33333% - 20px);
    margin-right: 20px;
    margin-bottom: 16px;
  }
  .top-flow-item__ttl {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .top-flow-item__desc {
    font-size: 13px;
  }
  .top-flow-item__desc small {
    font-size: 10px;
  }
  .top-flow-item__area {
    margin-bottom: 10px;
  }
  .top-flow-item:not(:nth-child(3n)) .top-flow-item__icon::before {
    content: "";
    position: absolute;
    border-left: solid 13px #B2B2B2;
    border-top: solid 12px transparent;
    border-bottom: solid 12px transparent;
    right: -17px;
    top: 50%;
    transform: translateY(-50%);
  }
  .top-flow-item--area {
    margin-top: 18px;
    flex: 0 0 100%;
    max-width: calc(100% - 20px);
    margin-right: 20px;
  }
}

/**
 * 選ばれる理由
 */
.top-reason__ttl {
  height: 350px;
  background: url("../img/top/reason-ttl-bg.jpg") center top/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
}
.top-reason__body {
  background: #F7F7F7;
  padding: 79px 0;
}
.top-reason__inner {
  max-width: 1080px;
  padding: 0 30px;
  margin: 0 auto;
}
.top-reason__row--1 {
  margin-bottom: 60px;
}
.top-reason__row--2 {
  margin-bottom: 77px;
}
@media screen and (max-width: 959px) {
  .top-reason__ttl {
    height: 250px;
  }
}
@media screen and (max-width: 750px) {
  .top-reason__ttl {
    height: 175px;
    background-image: url("../img/top/reason-ttl-bg-sp.jpg");
    padding-top: 7px;
  }
  .top-reason__ttl img {
    width: 141px;
    transform: translateX(-60px);
  }
  .top-reason__inner {
    padding: 0 18px;
  }
  .top-reason__body {
    padding: 24px 0;
  }
  .top-reason__row:not(:last-child) {
    margin-bottom: 0;
  }
}

.top-reason-3col {
  display: flex;
  align-items: stretch;
  margin-right: -32px;
}
.top-reason-3col__item {
  flex: 0 0 33.33333%;
  max-width: calc(33.33333% - 32px);
  margin-right: 32px;
}
@media screen and (max-width: 959px) {
  .top-reason-3col {
    display: block;
    margin-right: 0;
  }
  .top-reason-3col__item {
    max-width: none;
    margin-right: 0;
  }
}

.top-reason-sec__no {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 28px;
}
.top-reason-sec__no-num {
  position: relative;
  color: #fff;
  margin-left: 40px;
}
.top-reason-sec__no-num::before {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FDD33D;
  border-radius: 50%;
}
.top-reason-sec__no-num span {
  position: relative;
}
.top-reason-sec__box {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
}
.top-reason-sec__ttl {
  font-size: 28px;
  font-weight: 700;
  background: #EC9463;
  color: #fff;
  text-align: center;
  padding: 25px;
}
.top-reason-sec__body {
  padding: 45px 30px 20px;
}
.top-reason-sec__fig {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
  max-width: 564px;
  margin: 0 auto 20px;
}
.top-reason-sec__fig2 {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
  margin-bottom: 40px;
}
.top-reason-sec__fig2 img {
  width: 100%;
}
.top-reason-sec__desc {
  line-height: 1.75;
  text-align: justify;
  height: 100%;
  display: flex;
  align-items: center;
}
.top-reason-sec__note {
  font-size: 11px;
  line-height: 1.625;
  margin-top: 16px;
}
@media screen and (max-width: 959px) {
  .top-reason-sec {
    margin-bottom: 40px;
  }
  .top-reason-sec__no {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .top-reason-sec__no-num {
    margin-left: 18px;
  }
  .top-reason-sec__no-num::before {
    width: 29px;
    height: 29px;
  }
  .top-reason-sec__box {
    border-radius: 15px;
  }
  .top-reason-sec__ttl {
    font-size: 16px;
    padding: 22px;
  }
  .top-reason-sec__body {
    padding: 24px 30px;
  }
}
@media screen and (max-width: 750px) {
  .top-reason-sec__body {
    padding: 24px 18px;
  }
  .top-reason-sec__fig {
    margin: 0px auto 23px;
  }
  .top-reason-sec__fig2 {
    margin-bottom: 24px;
  }
  .top-reason-sec__note {
    line-height: 1.8;
  }
}

.top-reason-sec--small {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.top-reason-sec--small .top-reason-sec__no {
  font-size: 27px;
  margin-bottom: 17px;
}
.top-reason-sec--small .top-reason-sec__no-num {
  margin-left: 25px;
}
.top-reason-sec--small .top-reason-sec__no-num::before {
  width: 43px;
  height: 43px;
}
.top-reason-sec--small .top-reason-sec__box {
  flex-grow: 1;
}
.top-reason-sec--small .top-reason-sec__ttl {
  font-size: 18px;
  padding: 18px;
}
.top-reason-sec--small .top-reason-sec__body {
  padding: 24px 19px;
}
.top-reason-sec--small .top-reason-sec__desc {
  font-size: 15px;
  line-height: 1.8;
}
@media screen and (max-width: 959px) {
  .top-reason-sec--small .top-reason-sec__no {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .top-reason-sec--small .top-reason-sec__no-num {
    margin-left: 18px;
  }
  .top-reason-sec--small .top-reason-sec__no-num::before {
    width: 29px;
    height: 29px;
  }
  .top-reason-sec--small .top-reason-sec__ttl {
    font-size: 16px;
    padding: 23px;
  }
}

.top-reason-sec--1 .top-reason-sec__inner {
  max-width: 860px;
  margin: 0 auto;
}

.top-reason-sec--2 .top-reason-sec__inner {
  max-width: 820px;
  margin: 0 auto;
}

.top-reason-2col {
  display: flex;
  flex-wrap: wrap;
  margin-right: -60px;
}
.top-reason-2col__item {
  flex: 0 0 50%;
  max-width: calc(50% - 60px);
  margin-right: 60px;
}
.top-reason-2col--reason1 {
  margin-bottom: 50px;
}
@media screen and (max-width: 959px) {
  .top-reason-2col {
    display: block;
    margin-right: 0;
  }
  .top-reason-2col__item {
    max-width: none;
    margin-right: 0;
  }
}
@media screen and (max-width: 750px) {
  .top-reason-2col--reason1 {
    margin-bottom: 23px;
  }
}

.top-reason1-cont2 {
  padding-top: 30px;
}
.top-reason1-cont2__box {
  background: #FCF3D3;
  position: relative;
  height: 194px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
  padding-top: 6px;
}
.top-reason1-cont2__box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 12px;
  background: #FDD33D;
  left: 0;
  bottom: 7px;
}
.top-reason1-cont2__icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
}
.top-reason1-cont2__icon--1 {
  background: url("../img/top/reason1-icon1.png") center/contain no-repeat;
}
.top-reason1-cont2__icon--2 {
  background: url("../img/top/reason1-icon2.png") center/contain no-repeat;
}
.top-reason1-cont2__txt1 {
  font-size: 13px;
  font-weight: 700;
}
.top-reason1-cont2__txt2 {
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 13px;
  letter-spacing: 0.05em;
}
.top-reason1-cont2__txt3 {
  font-size: 23px;
  font-weight: 700;
}
.top-reason1-cont2__txt4 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 13px;
  margin-top: 7px;
  letter-spacing: 0.05em;
}
.top-reason1-cont2__note {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .top-reason1-cont2 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 750px) {
  .top-reason1-cont2 {
    margin-bottom: 0;
  }
  .top-reason1-cont2__box {
    height: 145px;
    margin-bottom: 9px;
  }
  .top-reason1-cont2__box::after {
    height: 8px;
  }
  .top-reason1-cont2__icon {
    width: 45px;
    height: 45px;
    top: -22px;
  }
  .top-reason1-cont2__txt1 {
    font-size: 10px;
  }
  .top-reason1-cont2__txt2 {
    font-size: 43px;
    margin-bottom: 10px;
  }
  .top-reason1-cont2__txt3 {
    font-size: 17px;
  }
  .top-reason1-cont2__txt4 {
    font-size: 33px;
    margin-bottom: 10px;
  }
  .top-reason1-cont2__note {
    font-size: 10px;
  }
}

.top-reason-ttl1 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.66;
  letter-spacing: 0.05em;
}
.top-reason-ttl1::before {
  content: "";
  flex: 0 0 34px;
  height: 34px;
  background: url("../img/top/result-ttl1-icon.png") center/contain no-repeat;
  margin-right: 11px;
  margin-top: 3px;
}
@media screen and (max-width: 959px) {
  .top-reason-ttl1 {
    font-size: 16px;
    justify-content: flex-start;
  }
  .top-reason-ttl1::before {
    flex: 0 0 22px;
    height: 22px;
    margin-top: 2px;
  }
}
@media screen and (max-width: 750px) {
  .top-reason-ttl1 {
    margin-bottom: 8px;
  }
}

.top-reason-ttl2 {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.66;
  letter-spacing: 0.05em;
}
.top-reason-ttl2::before {
  content: "";
  flex: 0 0 25px;
  height: 25px;
  background: url("../img/top/result-ttl1-icon.png") center/contain no-repeat;
  margin-right: 11px;
  margin-top: 3px;
}
@media screen and (max-width: 750px) {
  .top-reason-ttl2 {
    font-size: 16px;
    margin-bottom: 14px;
  }
  .top-reason-ttl2::before {
    flex: 0 0 22px;
    height: 22px;
  }
}

/**
 * トップ：よく頂く質問
 */
.top-faq {
  background: #8CCAE0;
  padding: 83px 0;
}
.top-faq .c-ttl1 {
  margin-bottom: 73px;
}
.top-faq__inner {
  padding: 0 60px;
}
.top-faq__content {
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .top-faq {
    padding: 45px 0;
  }
  .top-faq .c-ttl1 {
    margin-bottom: 43px;
  }
  .top-faq__inner {
    padding: 0 27px;
  }
}

.top-faq-item {
  background: #fff;
  border-radius: 13px;
  padding: 13px 77px 24px 34px;
}
.top-faq-item__question {
  font-weight: 700;
  font-size: 19px;
  line-height: 1.4;
  margin-bottom: 16px;
  padding-left: 36px;
  letter-spacing: 0.05em;
  min-height: 26px;
  position: relative;
}
.top-faq-item__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__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: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background: url("../img/top/faq-answer.png") center/contain no-repeat;
}
.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: 10px 40px 17px 10px;
  }
  .top-faq-item__question {
    font-size: 15px;
    min-height: 20px;
    padding-left: 30px;
    margin-bottom: 11px;
  }
  .top-faq-item__question::before {
    height: 20px;
    width: 20px;
  }
  .top-faq-item__answer {
    font-size: 15px;
    min-height: 20px;
    padding-left: 30px;
  }
  .top-faq-item__answer::before {
    height: 20px;
    width: 20px;
  }
  .top-faq-item:not(:last-child) {
    margin-bottom: 23px;
  }
}

/**
 * サンクスページ
 */
.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/top/result-bg.png") center top/91px;
}
.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;
  }
}

h1 {
  width: 100%; 
  background-color: #007BFF;
  color: #fff;
  font-size: 1.75em;
  padding: 20px;
  margin: 20px 0 20px 0; 
  box-sizing: border-box;
  text-align: center;
}
