@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;
  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: 959px) {
  body {
    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: #000;
  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__logo img {
  max-width: 192px;
  width: 192px;
  height: 76px;
}
@media screen and (max-width: 959px) {
  .c-header__logo img {
    max-width: 125px;
  }
}
.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: #6FBA2C;
  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: 0 23px;
  }
}
@media (max-width: 1280px) {
  .c-header__menu-list {
    margin-right: 10px;
  }
  .c-header__menu-item {
    padding: 0 13px;
  }
  .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__name {
    font-size: 16px;
  }
  .c-header__menu-item {
    font-size: 14px;
    padding: 0 7px;
  }
  .c-header__contact {
    font-size: 16px;
  }
}
@media screen and (max-width: 959px) {
  .c-header {
    padding: 0 7px 0 13px;
  }
  .c-header__brand {
    padding: 0;
  }
  .c-header__logo {
    width: 128px;
    margin-right: 4px;
  }
  .c-header__name {
    font-size: 11px;
    letter-spacing: 1px;
  }
  .c-header__menu {
    display: none;
  }
  .c-header__tel {
    display: block;
    background: #6FBA2C;
    border-radius: 6px;
  }
  .c-header__tel a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
  }
  .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: 46px;
    height: 46px;
    background: #000;
    border-radius: 6px;
    margin-right: 9px;
  }
}

/**
 * ハンバーガーメニュー
 */
.c-hamburger-menu {
  display: none;
  opacity: 0;
  visibility: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  background: #f7af16;
  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);
  background: #7CBD27;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}
@media screen and (min-width: 960px) {
  .c-bottom-bar {
    display: none;
  }
}
@media screen and (max-width: 959px) {
  .c-bottom-bar {
    display: block;
  }
}
.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: 0px;
}
@media screen and (max-width: 959px) {
  .c-bottom-bar {
    background: #F4B4D0;
    padding: 0 0 0 11px;
  }
  .c-bottom-bar__tel {
    position: relative;
    display: block;
    height: 100%;
    padding: 8px 0;
    flex: 0 0 216px;
    left: 6px;
  }
  .c-bottom-bar__tel a {
    display: block;
    transition: opacity 0.1s ease;
  }
  .c-bottom-bar__tel a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 750px) {
  .c-bottom-bar__character img {
    width: 148px;
  }
}

.c-footer {
  background: #305380;
}
.c-footer__logo {
  margin-bottom: 50px;
}
.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__corporate {
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.c-footer__corporate a {
  margin-top: 5px;
  display: block;
  text-decoration: underline;
}
.c-footer__corporate a:hover {
  opacity: 0.6;
  transition: 0.2s;
}
.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: 50px 0 28px;
  }
  .c-footer__logo {
    margin-bottom: 24px;
  }
  .c-footer__logo img {
    width: 162px;
  }
  .c-footer__corporate {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .c-footer__info {
    font-size: 14px;
  }
  .c-footer__map {
    position: relative;
    height: 161px;
  }
  .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: #4A94BD;
  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: #4A94BD;
}
.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 #4A94BD;
}
@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-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--white a {
  background: #FFF;
  color: #000;
}
.c-btn--white a::before {
  background: url(../img/common/btn-arrow-bk.png) center/contain no-repeat;
}
.c-btn--orange a {
  background: #EF825A;
}
.c-btn--orange2 a {
  background: #F09B61;
}
.c-btn--orange3 a {
  background: #F6AF17;
}
.c-btn--pink a {
  background: #FF7784;
}
.c-btn--black a {
  background: #000;
}
.c-btn--gray a {
  background: #B2B2B2;
}
.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;
}
@media screen and (max-width: 750px) {
  .c-btn-contact a {
    max-width: 190px;
  }
}

.c-btn-tap a {
  background: #6FBA2C;
  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: 3px 0 26px;
    border-width: 8px;
  }
  .c-line__ttl {
    margin-bottom: 26px;
  }
  .c-line__ttl img {
    width: calc(628px/2);
    position: relative;
    left: -10px;
  }
  .c-line__btn {
    margin: 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: #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;
  }
  .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: 36px;
}
.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;
}
@media screen and (max-width: 750px) {
  .c-contact-mail {
    padding: 30px 20px 32px;
  }
  .c-contact-mail__ttl {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .c-contact-mail__ttl::before {
    flex: 0 0 32px;
    height: 32px;
    margin-right: 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]::placeholder,
.c-contact-form input[type=email]::placeholder,
.c-contact-form select::placeholder,
.c-contact-form textarea::placeholder {
  color: #B9B9B9;
  font-size: 14px;
}
.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;
  font-size: 14px;
}
.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: 16px 17px;
  margin-top: 14px;
  margin-bottom: 30px;
}
.c-contact-form__policy-txt p {
  margin-bottom: 1.6em;
  line-height: 1.5;
}
.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: #6FBA2C;
  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: 31px;
    position: relative;
    left: 8px;
  }
  .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: 7px;
  }
  .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 .c-ttl2__sub span {
  color: #F09B61;
}
.c-result .c-ttl2__sub span::before, .c-result .c-ttl2__sub span::after {
  background: #F09B61;
}
.c-result__list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -13px;
  margin-bottom: 31px;
}
@media screen and (max-width: 750px) {
  .c-result .c-ttl2 {
    margin-bottom: 44px;
  }
  .c-result__list {
    display: block;
    margin-right: 0;
    margin-bottom: 35px;
  }
}

.c-result-item {
  flex: 0 0 33.33333%;
  max-width: calc(33.33333% - 20px);
  margin-right: 20px;
  margin-bottom: 27px;
  background: #fff;
  box-shadow: 3px 3px 1px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 750px) {
  .c-result-item {
    box-shadow: 1.5px 1.5px 0.5px rgba(0, 0, 0, 0.2);
  }
}
.c-result-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-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 #4A94BD;
  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;
  }
}

.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;
}
.c-right-bnr.is-show {
  opacity: 1;
  visibility: visible;
}
.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: #ec9463 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 {
  writing-mode: vertical-rl;
}
.c-right-bnr__tel-txt .tel-num {
  font-size: 26.68px;
}
@media screen and (max-width: 959px) {
  .c-right-bnr {
    display: none;
  }
}

/**
 * トップ
 */
.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 {
  max-width: 680px;
  max-height: 356px;
  width: 100%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 959px) {
  .top-banner {
    padding: 21px 17.5px 19px;
  }
}

/**
 * トップ：イントロ
 */
.top-intro {
  border-bottom: solid 26px #305380;
}
.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: #305380;
  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: #305380;
  transform: rotate(-35deg);
  border-radius: 2px;
}
.top-intro__subttl span::after {
  content: "";
  position: absolute;
  right: -36px;
  top: 7px;
  height: 32px;
  width: 2px;
  background: #305380;
  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__character img {
  max-width: 166px;
}
.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/cover no-repeat;
    padding: 39px 0 47px;
  }
  .top-intro__head {
    margin-bottom: 21px;
  }
  .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: 21px;
  }
  .top-intro__character img {
    width: calc(166px/2);
  }
  .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 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: 39px 0 55px;
  }
  .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: #C9CACA;
}
.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: #305380;
  color: #fff;
  font-weight: 700;
  padding: 3px 4px;
}
.top-pickup-item__name {
  color: #231815;
  font-weight: 700;
  flex: 1 0 auto;
  line-height: 1.4375;
}
@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: 75px 0 108px;
  background: #305380;
}
.top-goods .c-ttl1 {
  margin-bottom: 94px;
}
.top-goods .c-ttl1__sub span {
  color: #fff;
}
.top-goods .c-ttl1__sub span::before, .top-goods .c-ttl1__sub span::after {
  background: #fff;
}
.top-goods .c-ttl1__ttl {
  color: #fff;
}
.top-goods__inner {
  max-width: 1240px;
  padding: 0 30px;
  margin: 0 auto;
}
.top-goods__list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -26px;
  margin-bottom: 53px;
}
@media screen and (max-width: 750px) {
  .top-goods {
    padding: 30px 0 32px;
  }
  .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% - 26px);
  margin-right: 26px;
  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 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
  min-height: 70px;
}
@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: 85px 0 87px;
  overflow: hidden;
  background: url("../img/top/result-bg.png") center/9px;
}
.top-result__inner {
  max-width: 1240px;
  padding: 0 30px;
  margin: 0 auto;
}
.top-result .c-result-item:nth-child(n+10) {
  display: none;
}
.top-result .c-ttl2__sub span {
  color: #F09B61;
}
.top-result .c-ttl2__sub span::before, .top-result .c-ttl2__sub span::after {
  background: #F09B61;
}
@media screen and (max-width: 750px) {
  .top-result {
    padding: 35px 0 39px;
  }
  .top-result__inner {
    padding: 0 18px;
  }
  .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;
}
.top-shop .c-ttl2 {
  margin-bottom: 106px;
}
.top-shop__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 30px;
}
.top-shop__content {
  display: flex;
  margin-bottom: 59px;
}
.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: 57px 0 44px;
  }
  .top-shop .c-ttl2 {
    margin-bottom: 50px;
  }
  .top-shop .c-ttl2__sub {
    font-size: 13px;
    margin-bottom: 3px;
  }
  .top-shop .c-ttl2__sub span::before {
    height: 14px;
    left: -7px;
    top: 3px;
  }
  .top-shop .c-ttl2__sub span::after {
    height: 14px;
    right: -7px;
    top: 3px;
  }
  .top-shop__inner {
    padding: 0 18px;
  }
  .top-shop__content {
    display: block;
    margin-bottom: 27px;
  }
  .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 {
  text-align: center;
}
.top-shop-address__name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
.top-shop-address__address {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 41px;
}
@media screen and (max-width: 750px) {
  .top-shop-address__name {
    font-size: 16px;
    margin-bottom: 14px;
  }
  .top-shop-address__address {
    font-size: 13px;
    line-height: 1.423;
    margin-bottom: 32px;
  }
}

/**
 * トップ：宅配買取の流れ
 */
.top-flow {
  padding: 78px 0 120px;
  overflow: hidden;
}
.top-flow .c-ttl1 {
  margin-bottom: 56px;
}
.top-flow .c-ttl1__sub span::before {
  left: -21px;
}
.top-flow .c-ttl1__sub span::after {
  right: -21px;
}
.top-flow__inner {
  padding: 0 30px;
}
.top-flow__content {
  max-width: 442px;
  margin: 0 auto;
}
.top-flow__list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -26px;
  margin-bottom: 20px;
}
.top-flow__area-ttl {
  font-weight: 700;
  color: #EC9463;
  margin-bottom: 18px;
  text-align: center;
  font-size: 23px;
  line-height: 1;
}
.top-flow__area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 110px;
  background: #ec9463;
  margin-bottom: 40px;
}
.top-flow__area p {
  color: #fff;
  font-size: 23px;
  font-weight: 600;
  text-align: center;
}
.top-flow__area p span {
  font-size: 33px;
}
@media screen and (max-width: 750px) {
  .top-flow {
    padding: 45px 0 48px;
  }
  .top-flow .c-ttl1 {
    margin-bottom: 44px;
  }
  .top-flow__inner {
    padding: 0 18px;
  }
  .top-flow__list {
    margin-bottom: 2px;
    margin-right: -20px;
  }
  .top-flow__area-ttl {
    margin-bottom: 9px;
    font-size: 18px;
  }
  .top-flow__area {
    height: 100px;
    margin-bottom: 85px;
  }
  .top-flow__area p {
    font-size: 18px;
  }
  .top-flow__area p span {
    font-size: 28px;
  }
}

.top-flow-item {
  flex: 0 0 33.33333%;
  max-width: calc(33.33333% - 26px);
  margin-right: 26px;
  margin-bottom: 33px;
  text-align: center;
}
.top-flow-item__ttl {
  font-size: 23px;
  font-weight: 700;
  color: #EC9463;
  margin-bottom: 9px;
}
.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: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%);
}
@media screen and (max-width: 750px) {
  .top-flow-item {
    max-width: calc(33.33333% - 20px);
    margin-right: 20px;
    margin-bottom: 19px;
  }
  .top-flow-item__ttl {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .top-flow-item__desc {
    font-size: 13px;
  }
  .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-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: 51px 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/result/result-bg.png") center/9px;
}
.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;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../../src/sass/modules/_reset.scss%22,%22../../src/sass/modules/_variables.scss%22,%22../../src/sass/modules/_mixin.scss%22,%22../../src/sass/modules/_util.scss%22,%22../../src/sass/parts/_base.scss%22,%22../../src/sass/parts/_header.scss%22,%22../../src/sass/parts/_hamburger-btn.scss%22,%22../../src/sass/parts/_hamburger-menu.scss%22,%22../../src/sass/parts/_bottom-bar.scss%22,%22../../src/sass/parts/_footer.scss%22,%22../../src/sass/parts/_ttl1.scss%22,%22../../src/sass/parts/_ttl2.scss%22,%22../../src/sass/parts/_btn.scss%22,%22../../src/sass/parts/_line.scss%22,%22../../src/sass/parts/_contact.scss%22,%22../../src/sass/parts/_voice.scss%22,%22../../src/sass/parts/_result.scss%22,%22../../src/sass/parts/_pagination.scss%22,%22../../src/sass/parts/_right-bnr.scss%22,%22../../src/sass/pages/_top.scss%22,%22../../src/sass/pages/_thanks.scss%22,%22../../src/sass/pages/_result.scss%22,%22../../src/sass/pages/_voice.scss%22,%22../../src/sass/pages/_notfound.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22;AAAA;AAAA;AAAA;AAIA;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAaE;AACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;AAAA;AAGA;EACE;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA,aC5CO;ED6CP;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;AAAA;AAGA;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;EACA;EACA;;;AAGF;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;EAME;EACA;EACA;EACA;EACA;;;AAGF;AAAA;AAAA;AAAA;EAIE;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE;EACA;EACA;EAAiB;EACjB;EACA;;;AAGF;EACE;;;AAGF;AAAA;AAAA;AAAA;EAIE;;;AAGF;AAAA;AAAA;AAAA;EAIE;;;AAGF;EACE;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAIF;AAAA;AAGA;EACE;EACA;EACA;EACA;EACA;;;AAGF;AAAA;AAEA;EACE;;;AE5KA;ECDF;IAEI;;;;AAKF;EADF;IAEI;;;;ADKF;ECDF;IAEI;;;;AAKF;EADF;IAEI;;;;AAKF;EADF;IAEI;;;;AC1BJ;EACE;EACA;;AFKA;EEPF;IAKI;IACA;;;;AAIJ;EACE;;AFJA;EEGF;IAGI;;;;AAIJ;EACE;EACA;;;ACnBF;AAAA;AAAA;AAGA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;;AAEA;EHgBF;;AACA;EACE,SAHsB;;AGXtB;EACE;EACA;EACA;;AHzBJ;EGsBE;IAMI;;;AAKN;EACE;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAEA;EH/BF;;AACA;EACE,SAHsB;;AGqCxB;EACE;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EHhDJ;;AACA;EACE,SAHsB;;AGoDpB;EACE;EACA;EACA;EACA;EACA;;AAKN;EACE;;AAGF;EAEI;IACE;;EAIJ;IACE;;EAGF;IACE;;;AAIJ;EAEE;IACE;;EAGF;IACE;;EAGF;IACE;;EAGE;IACE;IACA;IACA;;;AAMR;EACE;IACE;;EAGF;IACE;;EAGF;IACE;IACA;;EAGF;IACE;;;AHzJJ;EGJF;IAkKI;;EAEA;IACE;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;;EAGF;IACE;IACA;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;;;;ACxMR;AAAA;AAAA;AAGA;EACE;;AAEA;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;;AAQA;EACE;;AAGF;EACE;;AAGF;EACE;;AJpDR;EIJF;IA+DI;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;;;ACzEJ;AAAA;AAAA;AAGA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAIA;EACE;;AAIJ;EACE;EACA;EACA;;AL3BF;EKJF;IAmCI;;;;ACtCJ;AAAA;AAAA;AAGA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;ANZA;EMEF;IAaI;;;ANTF;EMJF;IAiBI;;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;;AAEA;ENFF;;AACA;EACE,SAHsB;;AMQxB;EACE;;AN1CF;EMJF;IAkDI;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;IACA;;EAEA;IACE;INxBN;;EACA;IACE,SAHsB;;;AA3BxB;EM4DI;IACE;;;;AC1ER;EACE;;AAEA;EACE;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EPUJ;;AACA;EACE,SAHsB;;AOJxB;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAEA;EACE;EACA;;AAKN;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AP5DF;EOgEE;IACE;;EAGF;IACE;;EAGF;IACE;;EAEA;IACE;;EAIJ;IACE;IACA;;EAGF;IACE;;EAGF;IACE;IACA;;EAEA;IACE;IACA;IACA;IACA;IACA;;EAIJ;IACE;IACA;IACA;;;;ACtHN;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAEA;EACE;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAKN;EACE;EACA;;AAEA;EACE;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAKN;EACE;;AAGF;EACE;;AR/DF;EQmEE;IACE;IACA;;EAGE;IACE;IACA;IACA;;EAGF;IACE;;EAGF;IACE;;EAKN;IACE;;EAGE;IACE;IACA;;EAGF;IACE;IACA;IACA;IACA;;;;AClHV;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAEA;EACE;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAKN;EACE;;AAEA;EACE;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AT9CN;ESoDE;IACE;IACA;;EAGE;IACE;IACA;IACA;;EAGF;IACE;;EAGF;IACE;;EAKN;IACE;;EAGE;IACE;IACA;;EAGF;IACE;IACA;IACA;IACA;;;;AClGR;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EV4BF;;AACA;EACE,SAHsB;;AUxBtB;EACE;EACA;EACA;EACA;EACA;;AVRJ;EUaE;IACE;IACA;IACA;IACA;;;;AASF;EACE;EACA;;AAEA;EACE;;AAMJ;EACE;;AAKF;EACE;;AAKF;EACE;;AAKF;EACE;;AAKF;EACE;;AAKF;EACE;;AAKF;EACE;;AAMA;EACE;;AAOF;EACE;EACA;EACA;;AV3FN;EUkGI;IACE;;;;AASN;EACE;;AV7GF;EUiHE;IACE;;;;AAQJ;EACE;EACA;EACA;;;AC1IJ;AAAA;AAAA;AAGA;EACE;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;;AAIA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EXUJ;;AACA;EACE,SAHsB;;AWNpB;EACE;EACA;EACA;EACA;EACA;EACA;;AXjCN;EWJF;IA2CI;;EAEA;IACE;;;AXpCJ;EWVF;IAmDI;;EAEA;IACE;IACA;;EAGF;IACE;;EAEA;IACE;IACA;IACA;;EAIJ;IACE;;EAEA;IACE;IACA;IACA;;EAEA;IACE;IACA;;;;ACjFV;AAAA;AAAA;AAGC;EACC;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;EACA;;AZJF;EYVD;IAkBG;;EAEA;IACE;;EAGF;IACE;;;;AAKN;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAEA;EACE;;AZ1DJ;EYoBF;IA2CI;IACA;;EAEA;IACE;IACA;;EAEA;IACE;IACA;IACA;;EAIJ;IACE;IACA;;EAGF;IACE;IACA;;EAEA;IACE;;;;AAMR;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AZhHJ;EY6FF;IAwBI;;EAEA;IACE;IACA;;EAEA;IACE;IACA;IACA;;;;AAON;AAAA;AAAA;AAAA;EAIE;EACA;EACA;EACA,abtJK;EauJL;EACA;;AAEA;AAAA;AAAA;AAAA;EACE;EACA;;AAIJ;EACE;EACA;;AAEA;EACE;EACA;;AAIJ;EACE;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;;AAIA;EACE;;AAGF;EACE;;AAIJ;EACE;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EZvMJ;;AACA;EACE,SAHsB;;AY6MxB;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACG;EACD;;AAIJ;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAKF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EZpPJ;EYsPI;;AZrPJ;EACE,SAHsB;;AYyPpB;EACE;EACA;EACA;EACA;EACA;;AZzRN;EY+RE;AAAA;AAAA;AAAA;IAIE;IACA;IACA;;EAGF;IACE;;EAGF;IACE;;EAGF;IACE;IACA;;EAGF;IACE;;EAIA;IACE;;EAKF;IACE;;EAIJ;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAIA;IACE;IACA;;EAGF;IACE;IACA;IACA;;EAIJ;IACE;IACA;;EAGF;IACE;IACA;;EAEA;IACE;IACA;;EAKF;IACE;IACA;IACA;;;;AC5XN;EACE;EACA;;AAGF;EACE;;AbMF;EaFE;IACE;IACA;IACA;;EAEA;IACE;;EAIJ;IACE;;;;AAKN;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAIA;EACE;;AAKF;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EbjFJ,eakFwB;EbjFxB,YaiFwB;EbhFxB;;AaoFA;EACE;EACA;EACA;EACA,adxHU;EcyHV;EACA;;AAEA;EACE;;AAGF;EACE;;AbxHJ;EacF;IA+GI;IACA;IACA;;EAEA;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAGF;IACE;;EAGF;IACE;;EAGF;IACE;;EAIA;IACE;;EAIJ;IACE;IACA;;EAGF;IACE;;;;ACjLJ;EACE;;AAGE;EACE;;AAEA;EACE;;AAMR;EACE;EACA;EACA;EACA;;AdNF;EcUE;IACE;;EAGF;IACE;IACA;IACA;;;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;;Ad5BA;EcsBF;IASI;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACE;;AAEA;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EdhDJ,eciDwB;EdhDxB,YcgDwB;Ed/CxB;;AcmDA;EACE;;AAGF;EACE;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAIJ;EACE;;AAGE;EACE;;AdjGN;EcsBF;IAiFI;IACA;;EAEA;IACE;IACA;;EAEA;IACE;IACA;IACA;IACA;;EAIJ;IACE;;EAGF;IACE;;EAKE;IACE;;EAGF;IACE;;;;AAOV;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AdtKJ;Ec4IF;IA+BI;;EAEA;IACE;;EAGF;IACE;;EAEA;IACE;;;;AClMR;AAAA;AAAA;AAGA;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;;AfEF;EeVF;IAYI;;EAGE;IACE;;;;ACnBR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EhBgBN;;AACA;EACE,SAHsB;;AgBZlB;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;;AAIR;EACI;;AAEA;EACI;;AhB9CV;EgBPF;IA0DQ;;;;AC1DR;AAAA;AAAA;AAIE;EACE;;AAGF;EALF;IAMI;;EAEA;IACE;IjBsBJ,eiBrBwB;IjBsBxB,YiBtBwB;IjBuBxB;;;AA7BA;EiBJF;IAeI;;;;AAKJ;AAAA;AAAA;AAGA;EACE;EACA;;AAEA;EACE;;AAEA;EACE;EACA;EACA;EACA;;AjB9BJ;EiBmBF;IAgBI;;;;AAKJ;AAAA;AAAA;AAGA;EACE;;AAEA;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAEA;EACE;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAKN;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;;AjB5HF;EiB2CF;IAqFI;;EAEA;IACE;IACA;;EAGF;IACE;;EAGF;IACE;IACA;;EAGE;IACE;;EAGF;IACE;;EAGF;IACE;;EAKN;IACE;;EAGF;IACE;;EAEA;IACE;;EAIJ;IACE;IACA;IACA;;EAGF;IACE;IACA;;;;AAMN;AAAA;AAAA;AAGA;EACE;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AjBxMF;EiBqLF;IAuBI;;EAEA;IACE;;EAGF;IACE;IACA;IACA;;;AjBrNJ;EiBqLF;IAqCI;;EAEA;IACE;;;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EjBtOJ,eiBuOwB;EjBtOxB,YiBsOwB;EjBrOxB;;AiByOA;EACE;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;;AjBtRF;EiBwOF;IAkDI;IACA;IACA;IACA;;;AjBvRF;EiBkOF;IAyDI;IACA;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;;EAGF;IACE;;EAGF;IACE;IACA;;;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AjB9UJ;EiBkTF;IAiCI;IACA;IACA;IACA;;EAEA;IACE;IACA;;EAGF;IACE;IACA;IACA;IACA;;EAEA;IACE;IACA;IACA;;;;AAOR;AAAA;AAAA;AAGA;EACE;EACA;;AAEA;EACE;;AAGE;EACE;;AAEA;EACE;;AAKN;EACE;;AAIJ;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AjBhZF;EiBgXF;IAoCI;;EAEA;IACE;;EAGF;IACE;;EAGF;IACE;IACA;;;;AAKN;EACE;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;AjBlcF;EiB2aF;IA2BI;IACA;;;AjBjcF;EiBqaF;IAgCI;IACA;IACA;;EAEA;IACE;IACA;;EAGF;IACE;IACA;IACA;;;;AAMN;AAAA;AAAA;AAGA;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAKA;EACE;;AAMA;EACE;;AAEA;EACE;;AjBlfR;EiB0dF;IA+BI;;EAEA;IACE;;EAKA;IACE;;;;AAOR;AAAA;AAAA;AAGA;EACE;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;;AAIJ;EACE;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIA;EACE;EACA;;AAKN;EACE;EACA;EACA;;AjBhlBF;EiB4gBF;IAwEI;IACA;;EAEA;IACE;;EAGF;IACE;IACA;;EAGF;IACE;;;;AAKN;EACE;;AAGE;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;EACA;;AAMJ;EACE;;AAGF;EACE;EACA;EACA;;AAEA;EACE;;AAKN;EACE;EACA;EACA;;AjBhqBF;EiBqqBI;IACE;IACA;;EAEA;IACE;;EAGF;IACE;;EAEF;IACE;;EAEF;IACE;;EAMJ;IACE;IACA;;EAEA;IACE;;EAKN;IACE;;;;AAMN;AAAA;AAAA;AAGA;EACE;EACA;;AAEA;EACE;EACA;EACA;;AjBrtBF;EiB8sBF;IAWI;IACA;;EAEA;IACE;;;;AAMN;AAAA;AAAA;AAGA;EACE;;AAEA;EACE;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AjBjwBJ;EiBsuBF;IAgCI;;EAEA;IACE;;EAEA;IACE;IACA;;EAGE;IACE;IACA;IACA;;EAGF;IACE;IACA;IACA;;EAMR;IACE;;EAGF;IACE;IACA;;EAGF;IACE;;;;AAKN;EACE;EACA;;AAEA;EACE;;AAGF;EACE;EACA;;AAGF;EACE;;AAGF;EAjBF;IAkBI;;;AjBt0BF;EiBozBF;IAsBI;;;AjBp0BF;EiB8yBF;IA0BI;IACA;;EAEA;IACE;;EAGF;IACE;;EAGF;IACE;;;;AAKN;EACE;;AAEA;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AjBt2BF;EiB02BE;IACE;IACA;;EAGF;IACE;IACA;IACA;;;;AAMN;AAAA;AAAA;AAGA;EACE;EACA;;AAEA;EACE;;AAII;EACE;;AAGF;EACE;;AAMR;EACE;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAEA;EACE;;AjBx7BN;EiB23BF;IAmEI;;EAEA;IACE;;EAGF;IACE;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAGF;IACE;IACA;;EAEA;IACE;;EAEA;IACE;;;;AAOV;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AAKE;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AjBpgCN;EiBi+BF;IAyCI;IACA;IACA;;EAEA;IACE;IACA;;EAGF;IACE;;EAKE;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;;;AAQV;AAAA;AAAA;AAGA;EACE;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;EACA;;AjB1jCF;EiB4iCF;IAkBI;;EAEA;IACE;;EAGF;IACE;;;;AAKN;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;;AAIJ;EACE;;AjBpoCF;EiB0kCF;IA8DI;;EAEA;IACE;IACA;IACA;IACA;;EAEA;IACE;IACA;;EAIJ;IACE;IACA;IACA;;EAEA;IACE;IACA;;EAIJ;IACE;;;;AC/qCN;AAAA;AAAA;AAGA;EACE;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;;AlBTF;EkBVF;IAuBI;;EAEA;IACE;;EAIA;IACE;;;;AClCR;AAAA;AAAA;AAGA;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;;AnBEF;EmBVF;IAYI;;EAEA;IACE;;EAIA;IACE;;;;ACvBR;AAAA;AAAA;AAGA;EACE;EACA;;AAEA;EACE;EACA;EACA;;ApBGF;EoBVF;IAWI;;EAEA;IACE;;;;ACjBN;AAAA;AAAA;AAGA;EACE;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;ArBJF;EqBVF;IAkBI;;EAEA;IACE;;EAGF;IACE%22,%22file%22:%22style.css%22%7D */
