@charset "UTF-8";
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  text-align: justify;
  text-justify: inter-ideograph;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
  color: #333;
  letter-spacing: 3px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.grecaptcha-badge {
  visibility: hidden;
}

:root {
  --bg:#ffffff;
  --paper:#fffdfa;
  --ink:#000000;
  --muted:#5f5a52;
  --line:#ddd5c7;
  --accent:#c8a24a;
  --accent-deep:#a88126;
  --sub:#ece6d8;
  --ok:#f2ede2;
  --shadow:0 10px 24px rgba(0,0,0,.06);
  --radius:16px;
  --radius-sm:12px;
  --container:min(1180px, calc(100% - 32px));
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  letter-spacing: .02em;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1em;
}

h1, h2, h3, h4 {
  margin: 0 0 .6em;
  line-height: 1.3;
  letter-spacing: .01em;
}

ul {
  margin: 0;
  padding-left: 1.2em;
}

ol {
  margin: 0;
  padding-left: 1.25em;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.topbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.topbar-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-badge {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  color: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.brand-copy {
  min-width: 0;
}

.brand-copy small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  margin-bottom: 3px;
}

.brand-copy strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.top-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid #ff6455;
  -webkit-transition: .2s ease;
  transition: .2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.btn-primary {
  background: #ff6455;
  color: #fff;
  border-color: #ff6455;
}

.btn-secondary {
  background: #ffffff;
  color: var(--ink);
  border-color: rgba(23, 23, 23, 0.18);
}

.hero {
  padding: 56px 0 28px;
}

.hero-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.1fr .9fr;
      grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.hero-copy,
.hero-form {
  background: white;
  border-radius: 24px;
}

.hero-form {
  background: white;
  border-radius: 24px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

.hero-copy {
  padding: 44px;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero h1 {
  font-size: 3vw;
  line-height: 1.18;
  margin-bottom: 18px;
}

.hero-lead {
  font-size: 1.2vw;
  color: #2c2b28;
  margin-bottom: 22px;
}

.hero-points {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0 26px;
}

.hero-point {
  background: var(--bg);
  border: 1px solid #17b7ba;
  border-radius: 18px;
  padding: 16px 14px;
}

.hero-point strong {
  display: block;
  font-size: 20px;
  margin-bottom: 2px;
  color: #17b7ba;
  text-align: center;
}

.hero-point span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.hero-materials {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.mini-card {
  border: 1px solid #17b7ba;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.mini-thumb {
  aspect-ratio: 4/3;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: #3f392f;
  font-weight: 700;
  padding: 10px;
  text-align: center;
  font-size: 14px;
}

.mini-card p {
  margin: 0;
  padding: 12px 14px 14px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.hero-form {
  padding: 28px;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

.form-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-form {
  display: -ms-grid;
  display: grid;
  gap: 14px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #d4ccbe;
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  -webkit-transition: border-color .2s ease, -webkit-box-shadow .2s ease;
  transition: border-color .2s ease, -webkit-box-shadow .2s ease;
  transition: border-color .2s ease, box-shadow .2s ease;
  transition: border-color .2s ease, box-shadow .2s ease, -webkit-box-shadow .2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent-deep);
  -webkit-box-shadow: 0 0 0 4px rgba(200, 162, 74, 0.12);
          box-shadow: 0 0 0 4px rgba(200, 162, 74, 0.12);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.form-box-title {
  font-size: 2.2vw;
  font-weight: 700;
  margin-bottom: 10px;
  color: #17b7ba;
}

.form-box-title span {
  font-size: 1.5vw;
  display: inline-block;
  margin-bottom: 0;
  color: black;
}

.form-box-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}

.trustbar {
  padding: 18px 0 10px;
}

.trust-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-item {
  background: #17b7ba;
  border-radius: 1vw;
  padding: 18px;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 26px;
  color: white;
  line-height: 1.1;
  margin-bottom: 6px;
}

.trust-item span {
  display: block;
  font-size: 13px;
  color: black;
}

.section {
  padding: 72px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 34px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #17b7ba;
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.section-head h2 {
  font-size: 3vw;
}

.section-head p {
  max-width: 760px;
  margin: 0 auto;
  color: black;
  font-size: 15px;
}

.problem-grid {
  gap: 18px;
}

.problem-card {
  background: white;
  margin: 0 auto;
  border: 1px solid #17b7ba;
  border-radius: 1vw;
  padding: 24px;
  margin-top: 1vw;
  width: 90%;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

.card1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
  width: 90%;
}

.problem-card h3 {
  font-size: 1.5vw;
  margin-bottom: 12px;
  text-align: center;
  margin-top: 5vw;
}

.carddiv {
  margin-top: 1vw;
}

.problem-card p {
  color: black;
  font-size: 1.1vw;
  margin-left: 2vw;
}

.feature-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 120px 1fr;
      grid-template-columns: 120px 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid #17b7ba;
  border-radius: 24px;
  background: white;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

.feature-side {
  background: #17b7ba;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  text-align: center;
  font-size: 2vw;
  font-weight: bold;
  line-height: 1.1;
}

.feature-body {
  padding: 26px;
}

.feature-body h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.feature-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 18px;
}

.tag {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #3d382f;
}

.contact_last_under {
  width: 100%;
  margin: 0 auto;
  padding: 1vw 2vw;
  border-radius: 2vw;
  background-color: white;
}

.clu h2 {
  font-size: 3vw;
  margin-top: .5vw;
  letter-spacing: 0;
  margin-bottom: 0;
}

.clu h2 .h2s {
  font-size: 1vw;
}

.clu h3 {
  font-size: 1.2vw;
  margin-top: 0;
}

label {
  line-height: 25px;
  font-size: 15px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

label .must {
  color: white;
  background-color: #ff8400;
  padding: 0px 3px;
  font-size: 13px;
  background-color: #17b7ba;
  background-color: #ff6455;
}

label .cummon {
  width: 100%;
  margin: 0 auto;
  height: 30px;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
  background-color: white;
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border: 3px solid #ffffff;
  border-radius: 5px;
}

label .drop {
  display: block;
  width: 40%;
  height: 50px;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
  background-color: white;
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border: 3px solid #000000;
  border-radius: 5px;
}

label .text_area {
  width: 100%;
  display: block;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  height: 40vh;
  border: 4px solid orangered;
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
          box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 5px;
}

label .drop {
  height: 25px;
  display: block;
  width: 30%;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

.submit {
  display: block;
  cursor: pointer;
  width: 60%;
  font-size: 16px;
  margin: 0 auto;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
  color: white;
  border-radius: 30px;
  padding: 15px 0;
  background-color: #ff6455;
  border: 2px solid white;
  margin-top: 4vh;
}

.sample-stage {
  gap: 12px;
  margin-top: 14px;
}

.sample-stage img {
  display: block;
  width: 70%;
  margin: 0 auto;
}

.sample-stage p {
  font-size: 1.5vw;
  font-weight: 600;
  background-color: #17b7ba;
  color: white;
  padding-left: .5vw;
  padding: .5vw 0 .5vw .5vw;
  border-radius: .5vw;
}

.paper-sample,
.envelope-sample,
.postcard-sample {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  min-height: 180px;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.paper-sample::before,
.paper-sample::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #e8dfcf;
}

.paper-sample::before {
  top: 40px;
  -webkit-box-shadow: 0 28px 0 #e8dfcf, 0 56px 0 #e8dfcf, 0 84px 0 #e8dfcf, 0 112px 0 #e8dfcf;
          box-shadow: 0 28px 0 #e8dfcf, 0 56px 0 #e8dfcf, 0 84px 0 #e8dfcf, 0 112px 0 #e8dfcf;
}

.paper-sample .inkline {
  position: absolute;
  color: #312b21;
  font-weight: 700;
  font-size: 14px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  top: 18px;
  right: 22px;
  letter-spacing: .12em;
}

.paper-sample .seal {
  position: absolute;
  bottom: 16px;
  left: 18px;
  width: 26px;
  height: 26px;
  background: #b63b30;
  border-radius: 6px;
  opacity: .9;
}

.envelope-sample .env-front {
  position: absolute;
  inset: 18px;
  border: 1px solid #d8d0c3;
  border-radius: 14px;
  background: #fdfcf8;
}

.envelope-sample .env-name {
  position: absolute;
  left: 24px;
  top: 30px;
  color: #2e2922;
  font-size: 17px;
  font-weight: 800;
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
}

.envelope-sample .stamp {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 30px;
  height: 36px;
  border: 1px solid #c7bfae;
  border-radius: 6px;
  background: #ece7da;
}

.envelope-sample .wax {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #7f9ab6;
}

.postcard-sample .card {
  position: absolute;
  inset: 18px;
  border: 1px solid #d8d0c3;
  border-radius: 14px;
  background: #fffdfa;
  padding: 18px;
}

.postcard-sample .line {
  height: 1px;
  background: #e2d7c8;
  margin-bottom: 20px;
}

.postcard-sample .zip {
  position: absolute;
  top: 18px;
  right: 18px;
  font-weight: 800;
  color: #443f36;
  letter-spacing: .2em;
  font-size: 13px;
}

.value-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card {
  background: white;
  border: 1px solid #17b7ba;
  border-radius: 22px;
  padding: 24px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

.value-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.value-card p {
  color: #4a463f;
  font-size: 15px;
}

.usage-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.usage-card {
  background: white;
  border: 1px solid #17b7ba;
  border-radius: 22px;
  padding: 26px;
}

.usage-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.usage-card ul li {
  margin-bottom: 8px;
  color: #47433d;
  font-size: 15px;
}

.flow {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.flow-step {
  background: white;
  border: 1px solid #17b7ba;
  border-radius: 22px;
  padding: 24px;
  position: relative;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

.flow-step .num {
  display: -ms-inline-grid;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #17b7ba;
  color: #fff;
  font-weight: 900;
  margin-bottom: 14px;
}

.flow-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.flow-step p {
  color: #4d493f;
  font-size: 14px;
  margin: 0;
}

.faq {
  display: -ms-grid;
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.faq details {
  background: white;
  border: 1px solid #17b7ba;
  border-radius: 18px;
  padding: 18px 20px;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
  position: relative;
  padding-right: 28px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  line-height: 1;
  color: var(--accent-deep);
}

.faq details[open] summary::after {
  content: "−";
}

.faq .answer {
  color: #4a463f;
  font-size: 15px;
  padding-top: 12px;
}

.seo-copy {
  max-width: 920px;
  margin: 0 auto;
  background: white;
  border: 1px solid #17b7ba;
  border-radius: 24px;
  padding: 30px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

.seo-copy h3 {
  font-size: 24px;
  margin-top: 20px;
}

.seo-copy h3:first-child {
  margin-top: 0;
}

.seo-copy p,
.seo-copy li {
  font-size: 15px;
  color: #46423c;
}

.cta {
  padding: 72px 0 90px;
}

.cta-box {
  background: #17b7ba;
  color: #fff;
  border-radius: 30px;
  padding: 42px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}

.cta-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 420px;
      grid-template-columns: 1fr 420px;
  gap: 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cta-box .section-kicker {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.cta-box h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-card {
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  padding: 26px;
}

footer {
  padding: 28px 0 42px;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
}

.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 18px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.sp-only {
  display: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .cta-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .flow {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .hero-copy {
    padding: 28px;
  }
  .hero-form {
    padding: 22px;
  }
  .hero-points,
  .hero-materials,
  .problem-grid,
  .feature-grid,
  .value-grid,
  .usage-wrap,
  .flow {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .feature-card {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .feature-side {
    font-size: 28px;
    padding: 18px;
  }
  .trust-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .topbar-inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top-actions {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 34px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero-point strong {
    font-size: 18px;
  }
  .sample-stage {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .cta-box {
    padding: 26px;
  }
  .footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: inline;
  }
}
/*# sourceMappingURL=daihitsu.css.map */