@charset "UTF-8";
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
.container, .container-fluid {
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  padding-right: 2rem;
  padding-left: 2rem;
}

.row {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.col-xs, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-offset-0, .col-xs-offset-1, .col-xs-offset-10, .col-xs-offset-11, .col-xs-offset-12, .col-xs-offset-2, .col-xs-offset-3, .col-xs-offset-4, .col-xs-offset-5, .col-xs-offset-6, .col-xs-offset-7, .col-xs-offset-8, .col-xs-offset-9 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.col-xs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media only screen and (min-width: 48em) {
  .container {
    width: 49rem;
  }
  .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-offset-0, .col-sm-offset-1, .col-sm-offset-10, .col-sm-offset-11, .col-sm-offset-12, .col-sm-offset-2, .col-sm-offset-3, .col-sm-offset-4, .col-sm-offset-5, .col-sm-offset-6, .col-sm-offset-7, .col-sm-offset-8, .col-sm-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-sm {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-sm {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media only screen and (min-width: 64em) {
  .container {
    width: 65rem;
  }
  .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-offset-0, .col-md-offset-1, .col-md-offset-10, .col-md-offset-11, .col-md-offset-12, .col-md-offset-2, .col-md-offset-3, .col-md-offset-4, .col-md-offset-5, .col-md-offset-6, .col-md-offset-7, .col-md-offset-8, .col-md-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-md {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-md {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media only screen and (min-width: 75em) {
  .container {
    width: 76rem;
  }
  .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-offset-0, .col-lg-offset-1, .col-lg-offset-10, .col-lg-offset-11, .col-lg-offset-12, .col-lg-offset-2, .col-lg-offset-3, .col-lg-offset-4, .col-lg-offset-5, .col-lg-offset-6, .col-lg-offset-7, .col-lg-offset-8, .col-lg-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-lg {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-lg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/* reset style */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea:focus, input:focus {
  outline: none;
}

/* end of reset style */
@font-face {
  font-family: "Lato Semibold";
  src: url("/assets/font/lato-semibold-webfont-d09ade21.eot");
  src: url("/assets/font/lato-semibold-webfont-d09ade21.eot?#iefix") format("embedded-opentype"), url("/assets/font/lato-semibold-webfont-3e0c4185.woff") format("woff"), url("/assets/font/lato-semibold-webfont-d9324608.ttf") format("truetype"), url("/assets/font/lato-semibold-webfont-0087bd6f.svg#svgFontName") format("svg");
}
body {
  color: #000;
  font-size: 16px;
  background-color: #fff;
  line-height: 1.5em;
  font-family: "Helvetica Neue", Helvetica, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 640px) {
  body {
    overflow-x: hidden;
  }
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  width: 30px;
  max-width: 100%;
  height: auto;
}

a img:hover, a img:active, a img:focus {
  opacity: 0.8;
}

a {
  text-decoration: none;
  color: #000;
  outline: 0;
}

a:visited {
  color: inherit;
}

a:hover, a:focus, a:active {
  color: #0467cc;
}

.l-breadcrumb {
  margin: 0 auto;
  padding: 0 0.5rem;
  width: 1032px;
  min-width: 1032px;
  box-sizing: border-box;
}
.l-breadcrumb:before, .l-breadcrumb:after {
  display: block;
  overflow: hidden;
  content: "";
}
.l-breadcrumb:after {
  clear: both;
}
@media screen and (max-width: 640px) {
  .l-breadcrumb {
    width: 100%;
    min-width: 100%;
  }
}
.l-breadcrumb__ul {
  display: flex;
  flex-wrap: wrap;
  padding-top: 5px;
  border-bottom: 1px #ebebeb solid;
}
.l-breadcrumb__li {
  position: relative;
  padding-left: 15px;
}
.l-breadcrumb__li:before {
  content: url("/assets/img/common/icon_arrow_left_lightbrown-05e39a68.svg");
  position: absolute;
  left: 5px;
  width: 5px;
  height: 10px;
}
.l-breadcrumb__li:first-child {
  padding-left: 0;
}
.l-breadcrumb__li:first-child:before {
  content: normal;
}
.l-breadcrumb__text {
  font-size: 12px;
  font-size: 0.75rem;
}
.l-breadcrumb__text--link {
  color: #0467cc;
}
.l-breadcrumb__text--link:hover {
  text-decoration: underline;
}
.l-breadcrumb__text--link:visited {
  color: #0467cc;
}
.l-breadcrumb__text--current {
  font-weight: bold;
  color: #6e6e6e;
}

.l-columns {
  margin: 25px auto 0 auto;
  width: 1032px;
  min-width: 1032px;
  box-sizing: border-box;
}
.l-columns:before, .l-columns:after {
  display: block;
  overflow: hidden;
  content: "";
}
.l-columns:after {
  clear: both;
}
@media screen and (max-width: 640px) {
  .l-columns {
    width: 100%;
    min-width: 100%;
  }
}

.l-container {
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
}
.l-container--bg {
  background-color: #f7f5f2;
}
.l-container:not(:first-child) .p-section_title--main {
  border-top: 1px solid #ebebeb;
}
.l-container .l-content > div + .p-pages__title--h2 {
  margin-top: 20px;
}

/*doc
---
title: l-content
name: l-content
category: Layout
---

`l-container` に `l-content` を内包する。
背景色を画面いっぱいに敷きたい場合は `l-container` に 別途 class を指定する。
sp 時に 左右 padding を空けたくないコンテンツは `l-content--fit` を付与する。

```html_example
<div class="l-container" style="background-color: #ddd;">
  <div class="l-content" style="background-color: #bbb;">
    内容（sp 時に 左右 padding 空きあり）
  </div>
  <div class="l-content l-content--fit" style="background-color: #aaa;">
    内容（sp 時に 左右 padding 空きなし）
  </div>
</div>
<div class="l-container" style="background-color: #333;">
  <div class="l-content" style="color: #fff;">
    内容（sp 時に 左右 padding 空きあり）
  </div>
</div>
```

*/
.l-content {
  margin: 0 auto;
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
  padding-bottom: 25px;
}
.l-content:before, .l-content:after {
  display: block;
  overflow: hidden;
  content: "";
}
.l-content:after {
  clear: both;
}
@media screen and (max-width: 640px) {
  .l-content {
    width: 100%;
    min-width: 100%;
    position: relative;
  }
}
.l-content--eyecatch {
  margin: 0 auto;
  width: 1032px;
  min-width: 1032px;
  box-sizing: border-box;
  padding-bottom: 0;
}
.l-content--eyecatch:before, .l-content--eyecatch:after {
  display: block;
  overflow: hidden;
  content: "";
}
.l-content--eyecatch:after {
  clear: both;
}
@media screen and (max-width: 640px) {
  .l-content--eyecatch {
    width: 100%;
    min-width: 100%;
  }
}
.l-content--1column {
  width: 1000px;
  max-width: 1000px;
  min-width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .l-content--1column {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
}

.inner_wrap {
  width: 1032px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .inner_wrap {
    width: 100%;
    max-width: 100%;
  }
}

#main .inner_wrap {
  margin: 0;
  padding: 0;
  width: 100%;
  min-width: 100%;
}
@media screen and (max-width: 640px) {
  #main .inner_wrap {
    width: 100%;
  }
}

.l-estimate_menu_slider {
  display: flex;
  margin-bottom: 24px;
}
@media screen and (max-width: 640px) {
  .l-estimate_menu_slider {
    display: block;
    margin-bottom: 0;
  }
}
.l-estimate_menu_slider__item {
  width: 50%;
}
@media screen and (max-width: 640px) {
  .l-estimate_menu_slider__item {
    width: 100%;
  }
}
.l-estimate_menu_slider__item_left {
  margin-right: 24px;
  width: calc(50% - 24px);
}
@media screen and (max-width: 640px) {
  .l-estimate_menu_slider__item_left {
    margin-left: 0;
    width: 100%;
  }
}

.l-footer {
  position: relative;
  min-width: 1032px;
  padding: 50px 0;
}
.l-footer a {
  color: inherit;
}
.l-footer--black {
  background: #000000;
  color: #ffffff;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .l-footer {
    min-width: 100%;
    padding-top: 20px;
    padding-bottom: 5px;
  }
}
.l-footer--bg {
  background-color: #ececec;
}
.l-footer__content {
  overflow: hidden;
  width: 1012px;
  min-width: 1032px;
  padding: 0 10px;
  margin: 0 auto;
  margin-bottom: 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .l-footer__content {
    margin-bottom: 0%;
    width: 100%;
    min-width: 100%;
  }
}
.l-footer__easy-content {
  display: block;
  margin-bottom: 20px;
  font-size: 12px;
  font-size: 0.75rem;
}
.l-footer__logo {
  margin: auto;
  width: 160px;
}

.l-footer_breadcrumb {
  min-width: 1032px;
  border-top: 1px dotted #808080;
  overflow-x: auto;
}
@media screen and (max-width: 640px) {
  .l-footer_breadcrumb {
    min-width: 100%;
  }
}
.l-footer_breadcrumb__content {
  width: 1012px;
  min-width: 1032px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .l-footer_breadcrumb__content {
    width: 100%;
    min-width: 100%;
  }
}
.l-footer_breadcrumb, .l-footer_breadcrumb a {
  color: #333;
}
.l-footer_breadcrumb ul {
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .l-footer_breadcrumb ul {
    display: block;
    width: 5000px;
  }
}
.l-footer_breadcrumb li {
  font-size: 12px;
  font-size: 0.75rem;
  padding: 10px 15px 10px 5px;
  line-height: 1.2;
  background: url("/assets/img/common/icon_arrow_dotted_left-54201930.svg") right 0 no-repeat;
  background-size: contain;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .l-footer_breadcrumb li {
    display: inline-block;
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.l-footer_breadcrumb li:first-child {
  position: relative;
  padding-left: 24px;
}
.l-footer_breadcrumb li:first-child:before {
  content: url("/assets/img/common/icon_home-5791d6ba.svg");
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -8.5px;
  width: 18px;
  height: 17px;
}
.l-footer_breadcrumb li:last-child {
  background: none;
}
.l-footer_breadcrumb li a {
  transition: color 0.15s ease-out;
}
.l-footer_breadcrumb li a:hover, .l-footer_breadcrumb li a:active, .l-footer_breadcrumb li a:focus {
  color: #0467cc;
}

.l-header {
  min-width: 1032px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.l-header.is-fixed {
  width: 100%;
  z-index: 9999;
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-120px);
}
.l-header.is-fixed .l-header__title {
  transition: all 0.3s ease;
  top: 65px;
  left: 60px;
  width: 60px;
  height: 60px;
}
.l-header--small {
  box-sizing: border-box;
  box-shadow: none;
  width: 1032px;
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (max-width: 640px) {
  .l-header--small {
    width: 100%;
  }
}
.l-header--small .l-header__content {
  display: flex;
  align-items: center;
  margin: 10px 0 0 33px;
}
.l-header--small .l-header__title {
  position: static;
  width: 55px;
  height: 45px;
  margin-right: 10px;
}
@media screen and (max-width: 640px) {
  .l-header--small .l-header__content {
    display: block;
    margin: 0;
  }
  .l-header--small .l-header__title {
    width: 60px;
    height: 60px;
    padding: 10px;
  }
}
.l-header--bg-blue {
  width: 100%;
  background: #f4fbff;
}
.l-header--bg-blue .l-header__container {
  width: 1032px;
  min-width: 1032px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .l-header--bg-blue .l-header__container {
    width: 100%;
    min-width: 100%;
  }
}
.l-header--bg-blue .l-header__content {
  margin-top: 0;
  margin-left: 13px;
  padding: 10px 0;
}
@media screen and (max-width: 640px) {
  .l-header--bg-blue .l-header__content {
    display: flex;
  }
}
@media screen and (max-width: 640px) {
  .l-header {
    min-width: 100%;
  }
}
.l-header__container--blue {
  background: #f4fbff;
}
@media screen and (max-width: 640px) {
  .l-header__container--blue {
    background: white;
  }
}
.l-header__content {
  position: relative;
  margin: 0 auto;
  width: 1032px;
  min-width: 1032px;
  box-sizing: border-box;
}
.l-header__content:before, .l-header__content:after {
  display: block;
  overflow: hidden;
  content: "";
}
.l-header__content:after {
  clear: both;
}
@media screen and (max-width: 640px) {
  .l-header__content {
    display: flex;
    align-items: center;
    position: static;
    width: 100%;
    min-width: 100%;
  }
}
.l-header__content--blue {
  padding: 16px 0 0;
}
@media screen and (max-width: 640px) {
  .l-header__content--blue {
    padding: 10px 20px;
  }
}
.l-header__title {
  display: block;
  position: absolute;
  width: 100px;
  height: 100px;
  left: 0;
  top: 16px;
  z-index: 1;
  transition: all 0.3s ease;
}
@media screen and (max-width: 640px) {
  .l-header__title {
    width: 60px;
    height: 60px;
    position: relative;
    left: 0;
    top: 0;
  }
}
.l-header__sub-title {
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: bold;
}
.l-header__block {
  padding-left: 40px;
  padding-right: 0;
}
@media screen and (max-width: 640px) {
  .l-header__block {
    flex-basis: 30%;
    margin-left: 10px;
    padding-left: 0;
    line-height: 1;
  }
}

.l-lp_header {
  min-width: 1032px;
  box-shadow: none;
  background-size: 100%;
}
@media screen and (max-width: 640px) {
  .l-lp_header {
    width: 100%;
    min-width: 100%;
    min-height: 100%;
  }
}
.l-lp_header__content {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: left;
  margin: 0 auto;
  padding: 20px 0;
  width: 1000px;
  min-width: 1000px;
}
.l-lp_header__content:before, .l-lp_header__content:after {
  display: block;
  overflow: hidden;
  content: "";
}
.l-lp_header__content:after {
  clear: both;
}
@media screen and (max-width: 640px) {
  .l-lp_header__content {
    display: flex;
    align-items: center;
    position: static;
    width: calc(100% - 40px);
    min-width: calc(100% - 40px);
  }
}
.l-lp_header__title {
  display: block;
  position: static;
  width: 80px;
  height: 80px;
  left: 8px;
  top: 16px;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .l-lp_header__title {
    width: 60px;
    height: 60px;
    position: relative;
    left: 0;
    top: 0;
  }
}
.l-main--1column {
  width: 1012px;
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (max-width: 640px) {
  .l-main--1column {
    width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
    overflow: hidden;
  }
}
.l-main--no_padding {
  width: 1012px;
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (max-width: 640px) {
  .l-main--no_padding {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    overflow: hidden;
  }
}

.c-aco__link:after {
  content: url("/assets/img/icons/arrow_solid_left-a1bd0a64.svg");
  position: absolute;
  top: 0;
  right: 5px;
  width: 24px;
  height: 24px;
  text-align: center;
  background: #f6f6f6;
  border-radius: 12px;
  transform: rotate(90deg);
  transition: 0.4s linear;
}
.c-aco__link.is-active:after {
  transform: rotate(-90deg);
  transition: 0.4s linear;
}
.c-aco__block {
  display: none;
}

.c-balloon {
  padding: 20px;
  border: solid 1px #ccc;
  border-radius: 10px;
  position: relative;
  background-color: white;
}
.c-balloon::before {
  content: "";
  width: 20px;
  height: 20px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  display: block;
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  background-color: white;
}

.c-btn {
  position: relative;
  display: inline-block;
  padding: 0 32px;
  border: 1px solid;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2rem;
  text-align: center;
  border-radius: 4px;
  transition: color 0.15s ease-out, background-color 0.15s ease-out;
}
.c-btn.c-btn--primary {
  background-color: #fe7b07;
  border: 1px solid #fe7b07;
  color: white;
}
.c-btn.c-btn--primary svg {
  position: absolute;
  top: 50%;
  right: 10px;
  stroke: white;
  fill: none;
  width: 7px;
  height: auto;
  margin-top: -7px;
}
.c-btn.c-btn--primary:hover {
  background: white;
  color: #fe7b07;
}
.c-btn.c-btn--primary:hover polyline {
  stroke: white;
}
.c-btn.c-btn--secondary {
  color: #fe7b07;
  border: 1px solid #fe7b07;
}
.c-btn.c-btn--secondary polyline {
  fill: none;
  stroke: white;
  stroke-miterlimit: 10;
}
.c-btn.c-btn--secondary:hover {
  background: white;
  color: #fe7b07;
  color-stroke: #38598f;
}
.c-btn.c-btn--shadowed {
  border: none;
  box-shadow: 0 3px 0 rgb(234.5542168675, 110.656626506, 0.9457831325);
  transition: none;
}
.c-btn.c-btn--shadowed:hover {
  box-shadow: none;
  background-color: #fe7b07;
  transform: translateY(3px);
  color: white;
}
.c-btn.c-btn--info {
  background: #38598f;
  border-color: #38598f;
  color: white;
  box-shadow: 0 1px 0 #38598f;
}
.c-btn.c-btn--info polyline {
  fill: none;
  stroke: white;
  stroke-miterlimit: 10;
}
.c-btn.c-btn--info:hover {
  background: white;
  color: #38598f;
}
.c-btn.c-btn--info:hover polyline {
  stroke: #38598f;
}
.c-btn.c-btn--default {
  background-color: #fff;
  border: 1px solid #38598f;
  box-shadow: 0 1px 0 #38598f;
  color: #38598f;
}
.c-btn.c-btn--default svg {
  position: absolute;
  top: 50%;
}
.c-btn.c-btn--default polyline {
  fill: none;
  stroke: #38598f;
  stroke-miterlimit: 10;
}
.c-btn.c-btn--default:hover {
  background: #38598f;
  color: white;
}
.c-btn.c-btn--default:hover polyline {
  stroke: white;
}
.c-btn.c-btn--lg {
  width: 430px;
  margin: 0 auto;
  padding: 0 33px;
  line-height: 50px;
  box-sizing: border-box;
  border-radius: 2px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}
.c-btn.c-btn--lg svg {
  margin-top: -9px;
}
@media screen and (max-width: 640px) {
  .c-btn.c-btn--lg {
    line-height: 1.4;
    width: 100%;
    font-size: 14px;
    font-size: 0.875rem;
    padding: 1rem 1.5rem;
  }
}
.c-btn.c-btn--lg svg {
  position: absolute;
  top: 50%;
  margin-top: -7px;
  height: 15px;
}
@media screen and (max-width: 640px) {
  .c-btn.c-btn--lg svg {
    height: 12px;
    margin-top: -5px;
  }
}
.c-btn.c-btn--rounded {
  border-radius: 5rem;
}
.c-btn.c-btn--block {
  display: block;
}
.c-btn.c-btn--border {
  box-shadow: none;
}
.c-btn.c-btn--next {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50px;
  border-width: 2px;
  border-color: #fe7b07;
  color: white;
  margin: 0 auto;
  max-width: 390px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  margin-top: 20px;
}
.c-btn.c-btn--next:hover {
  box-shadow: none;
  transform: translateY(3px);
}
.c-btn.c-btn--next {
  background: #fe7b07;
}
.c-btn.c-btn--next::after {
  position: absolute;
  right: 20px;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
}
.c-btn.c-btn--prev {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50px;
  border-width: 2px;
  border-color: #fe7b07;
  color: white;
  margin: 0 auto;
  max-width: 390px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  margin-top: 20px;
}
.c-btn.c-btn--prev:hover {
  box-shadow: none;
  transform: translateY(3px);
}
.c-btn.c-btn--prev {
  background: white;
  color: #fe7b07;
}
.c-btn.c-btn--prev::after {
  position: absolute;
  left: 20px;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fe7b07;
  border-left: 2px solid #fe7b07;
  transform: rotate(-45deg);
}
.c-btn.c-btn--primary-border {
  box-shadow: none;
  border: 2px solid #fe7b07;
  background: #ffffff;
  color: #fe7b07;
}
.c-btn.c-btn--flexible {
  width: 100%;
}
.c-btn.c-btn--menu_request {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  border-radius: 4px;
}
.c-btn.c-btn--disabled {
  background: #dbdbdb;
  border-color: #dbdbdb;
  box-shadow: 0 0 0;
  pointer-events: none;
}
.c-btn__block--sp-position-bottom {
  position: relative;
}
@media screen and (max-width: 640px) {
  .c-btn__block--sp-position-bottom {
    position: fixed;
    bottom: 4px;
    right: 0;
    padding: 8px;
    z-index: 100;
  }
}
.c-btn--balloon {
  height: 100px;
  line-height: 100px;
  font-weight: bold;
  font-size: 30px;
  border-radius: 6px;
}
@media screen and (max-width: 640px) {
  .c-btn--balloon {
    height: 64px;
    padding: 0 1.3rem;
    font-size: 20px;
    line-height: 64px;
  }
}
.c-btn__balloon {
  position: absolute;
  top: 8px;
  right: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 20px;
  font-size: 1.25rem;
  color: white;
  background: #6384bb;
  border-radius: 30px;
}
.c-btn__balloon:before {
  content: "";
  position: absolute;
  top: 64%;
  left: -6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 10px 5px 0;
  border-color: transparent #6384bb transparent transparent;
  transform: rotate(-20deg);
}
@media screen and (max-width: 640px) {
  .c-btn__balloon {
    top: -22px;
    right: -5px;
  }
}
.c-btn--balloon--sp-pos-f-bottom {
  position: absolute;
  top: -45px;
  right: 320px;
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 15px;
  color: #fe7b07;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: bold;
  background: white;
  border: 2px solid;
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.4) 2px 2px 4px;
}
.c-btn--balloon--sp-pos-f-bottom::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 0;
  border-width: 8px 5px 0 5px;
  border-style: solid;
  border-color: transparent;
  margin-left: -5px;
  border-top-color: #fe7b07;
}
@media screen and (max-width: 640px) {
  .c-btn--balloon--sp-pos-f-bottom {
    top: -34px;
    right: 10px;
  }
}

.c-cat_nav {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.c-cat_nav:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  height: 15px;
  background: url("/assets/img/common/icon_arrow_left_white-1020e289.svg") center center no-repeat #fe7b07;
  background-size: 5px, 10px;
  border-radius: 3px;
}
.c-cat_nav__link {
  color: #554e48;
}
.c-cat_nav__link:visited {
  color: #554e48;
}
.c-cat_nav__link:hover, .c-cat_nav__link:active, .c-cat_nav__link:focus {
  text-decoration: underline;
}

.c-external_link {
  display: inline-block;
  color: #333;
  font-size: 12px;
  font-size: 0.75rem;
  text-decoration: underline;
  padding-right: 14px;
  position: relative;
  line-height: 1.2;
}
.c-external_link:visited {
  color: black;
}
@media screen and (max-width: 640px) {
  .c-external_link {
    font-size: 10px;
    font-size: 0.625rem;
    padding-right: 12px;
  }
}
.c-external_link::after {
  position: absolute;
  top: 2px;
  right: 0;
  display: block;
  content: "";
  width: 13px;
  height: 10px;
  background: url("/assets/img/estimate/icon_external_link-7a9fc164.svg") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 640px) {
  .c-external_link::after {
    width: 10px;
    height: 8px;
  }
}
.c-external_link--icon-before {
  padding-left: 16px;
}
.c-external_link--icon-before svg {
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
  width: 4px;
  height: 8px;
  padding: 3px 5px;
  background-color: #333;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.c-external_link--icon-before polyline {
  fill: none;
  stroke: #fff;
  stroke-width: 2px;
  stroke-miterlimit: 10;
}

.c-flash {
  color: red;
  font-size: 18px;
  font-weight: bold;
}

.c-form .field_with_errors {
  display: inline;
}
.c-form--note {
  font-size: 12px;
  font-size: 0.75rem;
}
.c-form--essential {
  color: #fe7b07;
}
.c-form--attention {
  font-family: HiraKakuProN;
  color: #d2251c;
  font-size: 11px;
  font-size: 0.6875rem;
  position: relative;
  padding-left: 5px;
  padding-top: 15px;
}
@media screen and (max-width: 640px) {
  .c-form--attention {
    padding-left: 20px;
  }
}
.c-form--attention::before {
  position: absolute;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  top: 50%;
  left: -13px;
  background: url("/assets/img/estimate/icon_attention-c9fad6a6.png") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 640px) {
  .c-form--attention::before {
    left: 0;
  }
}
@media screen and (max-width: 640px) {
  .c-form__dt {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.c-form__block--textarea {
  height: 300px;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .c-form__block--textarea {
    height: 200px;
  }
}
.c-form__block--select {
  display: inline-block;
  width: 40%;
}
@media screen and (max-width: 640px) {
  .c-form__block--select {
    width: 100%;
  }
}
.c-form__block--select select::-ms-expand {
  display: none;
}
.c-form__block--address {
  display: inline-block;
  width: 80%;
}
@media screen and (max-width: 640px) {
  .c-form__block--address {
    width: 100%;
  }
}
.c-form__label {
  display: inline-block;
}
.c-form__label--address {
  width: 20%;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .c-form__label--address {
    width: 100%;
    display: block;
  }
}
.c-form__label--tel {
  position: relative;
  width: 200px;
}
.c-form__label--bold {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}

.c-icons--default {
  fill: black;
}
.c-icons--primary {
  fill: #fe7b07;
}
.c-icons--s20 {
  width: 20px;
  height: 20px;
}
.c-icons--s30 {
  width: 30px;
  height: 30px;
}
.c-icons--s45 {
  width: 45px;
  height: 45px;
}
.c-icons--s60 {
  width: 60px;
  height: 60px;
}
.c-icons--s80 {
  width: 80px;
  height: 80px;
}
.c-icons--round {
  border-radius: 3px;
}
.c-icons--none {
  background-image: url("/assets/img/icons/default-avatar-ab5c6c3f.png");
}

.c-input {
  width: 100%;
  box-sizing: border-box;
  padding-right: 15px;
  padding-left: 15px;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (max-width: 640px) {
  .c-input {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-input--default {
  height: 33px;
  line-height: 33px;
}
.c-input--large {
  height: 50px;
}
.c-input--border {
  border: solid 1px #c6c6c6;
  border-radius: 4px;
}
@media screen and (max-width: 640px) {
  .c-input--border {
    border-radius: 2px;
  }
}
.c-input--file {
  background-color: white;
  line-height: 0;
}
.c-input--textarea {
  height: 100%;
  overflow-y: auto;
  line-height: 1.5;
  padding-top: 10px;
  padding-bottom: 10px;
}
.c-input--select {
  display: inline-block;
  padding-right: 40px;
  background: url("/assets/img/common/select_arrow-ffac7179.png") right center no-repeat #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.c-input--select:hover {
  cursor: pointer;
  color: #fe7b07;
}
@media screen and (max-width: 640px) {
  .c-input--select:hover {
    color: unset;
  }
}
@media screen and (max-width: 640px) {
  .c-input--checkbox {
    transform: scale(1.5);
    margin: 10px;
  }
}

.c-label-brand {
  font-size: 14px;
  font-size: 0.875rem;
  background-color: #fff;
  border: 1px solid #333;
  color: #333;
  display: inline-block;
  font-weight: bold;
  line-height: 1.5;
  padding: 0 8px;
}
.c-label-brand--s {
  font-size: 12px;
  font-size: 0.75rem;
  border-color: #999;
  color: #4d4d4d;
  font-weight: normal;
}

.c-label-level {
  position: absolute;
  padding: 0 10px;
  left: 0;
  top: 0;
  height: 52px;
  color: #554e48;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.2;
}
.c-label-level:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 10px;
  height: 16px;
  background-color: #f5e3c0;
  margin-top: -8px;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .c-label-level:before {
    top: 15px;
  }
}
.c-label-level:after {
  position: absolute;
  content: "";
  top: 50%;
  left: auto;
  right: -8px;
  width: 0;
  height: 0;
  margin-top: -8px;
  border-style: solid;
  border-width: 8px 9px;
  border-color: transparent;
  border-left-color: #f5e3c0;
}
@media screen and (max-width: 640px) {
  .c-label-level:after {
    top: 15px;
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.c-label-level__num {
  margin: 0 0 0 5px;
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (max-width: 640px) {
  .c-label-level__num {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}

.c-lead {
  position: relative;
  display: block;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  padding: 14px 20px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71;
  color: #4c4c4c;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 640px) {
  .c-lead {
    width: 100%;
    padding: 9px 0;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.73;
    letter-spacing: 0.025em;
  }
}

.c-list--disc {
  list-style-type: disc;
  -webkit-padding-start: 40px;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
}
.c-list--flex {
  display: flex;
}
.c-list--text-link .c-list--text-link__link {
  position: relative;
  display: inline-block;
  margin: 8px 0;
  padding: 6px 10px;
  color: #0467cc;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .c-list--text-link .c-list--text-link__link {
    margin: 16px 0;
    padding: 6px 12px 6px 14px;
  }
}
.c-list--text-link .c-list--text-link__link:hover {
  color: #0467cc;
  text-decoration: underline;
}
.c-list--text-link--disabled {
  color: #999999;
  position: relative;
  display: inline-block;
  margin: 8px 0;
  padding: 6px 10px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .c-list--text-link--disabled {
    margin: 16px 0;
    padding: 6px 12px 6px 14px;
  }
}
.c-list--text-link__svg {
  display: none;
}
@media screen and (max-width: 640px) {
  .c-list--text-link__svg {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -75px;
    width: 6px;
    fill: none;
    stroke: #000;
    stroke-width: 0.6px;
  }
}
.c-list--text-link__svg--subsidy {
  width: 12px;
  height: 12px;
  margin-left: 4px;
  vertical-align: baseline;
  fill: #fe7b07;
  stroke: #fe7b07;
}
.c-list--border {
  border: 1px solid black;
}
.c-list--border-dotted {
  border-style: dotted;
}
.c-list--block {
  padding: 20px;
  border-radius: 3px;
  box-sizing: border-box;
}
.c-list--block__title {
  margin-bottom: 10px;
  color: #4c4c4c;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
}
.c-list--block__title a {
  color: #4c4c4c;
}
.c-list--block .c-list--block__link {
  position: relative;
  display: inline-block;
  padding: 4px 0 4px 12px;
  color: #4c4c4c;
  font-size: 14px;
  font-size: 0.875rem;
}
.c-list--block .c-list--block__link:before {
  content: url("/assets/img/icons/arrow_solid_left-a1bd0a64.svg");
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 6px;
  height: 14px;
}
.c-list--block .c-list--block__link:hover {
  color: #0467cc;
}
@media screen and (max-width: 640px) {
  .c-list--block .c-list--block__link {
    padding: 6px 0 6px 12px;
    margin-bottom: 1rem;
  }
  .c-list--block .c-list--block__link:before {
    top: 5px;
  }
}
.c-list--block__text {
  font-size: 19px;
  font-size: 1.1875rem;
}

.c-logo--header {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}
.c-logo--footer {
  display: none;
}
@media screen and (max-width: 640px) {
  .c-logo--footer {
    display: block;
    text-align: center;
  }
  .c-logo--footer svg {
    height: 30px;
  }
}

.c-mailto {
  border: 1px solid #0467cc;
  border-radius: 3px;
  background: #ffffff url("/assets/img/icons/mail-f941ed70.svg") no-repeat 4px center;
  padding: 1px 4px 1px 22px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  color: #0467cc;
  line-height: 1;
  vertical-align: 4px;
}

.c-more_link {
  color: #0467cc;
  word-break: break-all;
  text-align: right;
  font-weight: bold;
}
.c-more_link:hover {
  text-decoration: underline;
}
.c-more_link:visited {
  color: #0467cc;
}

.c-page_top {
  background-image: url("/assets/img/icons/page_top_nav-d6ad3832.svg");
  height: 50px;
  width: 50px;
  position: relative;
  left: calc(100vw - 60px);
  bottom: 63px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.c-pagination__block {
  display: inline-block;
  height: 22px;
  line-height: 22px;
  vertical-align: top;
}
@media screen and (max-width: 640px) {
  .c-pagination__block {
    height: 28px;
    line-height: 28px;
  }
}
.c-pagination__pages {
  border: 1px solid #ccc;
  text-align: center;
  width: 22px;
  border-radius: 50%;
  transition: background-color 0.15s ease-out;
}
@media screen and (max-width: 640px) {
  .c-pagination__pages {
    width: 28px;
  }
}
.c-pagination__pages:not(.active):hover {
  background-color: #ddd;
}
.c-pagination__pages.is-active {
  background-color: #000;
  border-color: #000;
}
.c-pagination__pages.is-active .c-pagination__link {
  color: #fff;
}
@media screen and (max-width: 640px) {
  .c-pagination__pages--select {
    position: absolute;
    top: 0;
  }
}
.c-pagination__pages--num {
  margin-left: 3px;
}
.c-pagination__pages--num:first-child {
  margin-left: 0;
}
@media screen and (max-width: 640px) {
  .c-pagination__pages--prev {
    left: 0;
  }
}
@media screen and (max-width: 640px) {
  .c-pagination__pages--next {
    right: 0;
  }
}
.c-pagination__link {
  display: block;
  width: 100%;
  height: 100%;
  color: #333;
  transition: color 0.15s ease-out;
}
.c-pagination__svg {
  display: inline-block;
  margin-top: 5px;
  width: 6px;
  height: 12px;
}
@media screen and (max-width: 640px) {
  .c-pagination__svg {
    margin-top: 8px;
  }
}
.c-pagination__svg polyline {
  fill: none;
  stroke: #000;
  stroke-miterlimit: 10;
}

.c-price {
  width: auto;
  font-weight: bold;
  color: #e72f2f;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (max-width: 640px) {
  .c-price {
    margin: 0 0 20px;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.c-price__icon {
  width: 20px;
  height: 20px;
}
.c-price__num {
  line-height: 22px;
  font-size: 18px;
  font-size: 1.125rem;
}
.c-price__num:before {
  content: "¥";
  margin-right: 1px;
}
.c-price__num--lg {
  font-size: 25px;
  font-size: 1.5625rem;
}
.c-price__num--lg:before {
  content: none;
}
@media screen and (max-width: 640px) {
  .c-price__num--lg {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.c-price__num--force-yen-mark:before {
  content: "¥";
  margin-right: 1px;
}
.c-price__tax {
  margin-left: 3px;
  color: #817c78;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: normal;
}
@media screen and (max-width: 640px) {
  .c-price__tax {
    font-size: 9px;
    font-size: 0.5625rem;
  }
}
.c-price__tax--lg {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 640px) {
  .c-price__tax--lg {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.c-price--lg {
  color: #e72f2f;
  font-size: 25px;
  font-size: 1.5625rem;
}
.c-price--lg .c-price__icon {
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 640px) {
  .c-price--lg .c-price__icon {
    width: 20px;
    height: 20px;
  }
}
.c-price--card {
  font-weight: bold;
  color: #e72f2f;
}
@media screen and (max-width: 640px) {
  .c-price--card {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.c-price--card__num--main {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 640px) {
  .c-price--card__num--main {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.c-price--sidebar {
  white-space: nowrap;
}
.c-price--sidebar .c-price__num {
  font-size: 14px;
  font-size: 0.875rem;
}
.c-price--sidebar .c-price__num:before {
  font-size: 14px;
  font-size: 0.875rem;
}

.price_normal {
  color: #e72f2f;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .price_normal {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.price_normal img.komikomi {
  margin-right: 5px;
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: text-bottom;
}
@media screen and (max-width: 640px) {
  .price_normal img.komikomi {
    margin-right: 3px;
    width: 19px;
    height: 19px;
  }
}
.price_normal .price {
  margin-right: 1px;
  font-family: "Lato Semibold", Helvetica, Arial, Verdana, sans-serif;
  line-height: 22px;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 640px) {
  .price_normal .price {
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 0;
  }
}
.price_normal .price:before {
  content: "¥";
  margin-right: 1px;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 640px) {
  .price_normal .price:before {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
.price_normal .price.zero {
  color: #000;
}
.price_normal .tax {
  margin-left: 3px;
  color: #817c78;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: normal;
}
@media screen and (max-width: 640px) {
  .price_normal .tax {
    font-size: 9px;
    font-size: 0.5625rem;
  }
}
.price_normal.price_normal_noyen .price:before {
  content: none;
}

.c-qa {
  font-size: 15px;
  font-size: 0.9375rem;
}
.c-qa__q {
  margin-top: 20px;
  padding: 10px 10px 10px 55px;
  font-weight: bold;
  background: url("/assets/img/icons/qa_question-a88167af.svg") 20px 10px no-repeat;
}
.c-qa__q--orange {
  font-size: 18px;
  font-size: 1.125rem;
  text-indent: -40px;
}
.c-qa__q--orange::before {
  display: inline-block;
  box-sizing: border-box;
  width: 26px;
  height: 26px;
  margin-right: 15px;
  padding-left: 1em;
  content: "Q";
  text-align: center;
  text-indent: -1em;
  color: #fff;
  border-radius: 50%;
  background-color: #FE7B07;
}
.c-qa__q--gray {
  background: #f7f5f2 url("/assets/img/icons/qa_question-a88167af.svg") 20px 10px no-repeat;
}
.c-qa__q--aco {
  position: relative;
  cursor: pointer;
  padding-right: 60px;
}
.c-qa__q--aco::before {
  position: absolute;
  right: 30px;
  top: 50%;
  content: "";
  width: 18px;
  height: 1px;
  background-color: #fe7b07;
}
.c-qa__q--aco::after {
  position: absolute;
  right: 39px;
  top: calc(50% - 9px);
  content: "";
  width: 1px;
  height: 18px;
  background-color: #fe7b07;
}
.c-qa__a {
  padding: 10px 10px 0 55px;
  background: url("/assets/img/icons/qa_answer-8e7fb053.svg") 20px 10px no-repeat;
}
.c-qa__a--orange {
  text-indent: -40px;
  font-size: 16px;
  font-size: 1rem;
  background: transparent;
}
.c-qa__a--orange::before {
  font-weight: bold;
  line-height: 1.4;
  display: inline-block;
  box-sizing: border-box;
  width: 26px;
  height: 26px;
  margin-right: 15px;
  padding-left: 1em;
  content: "A";
  text-align: center;
  text-indent: -1em;
  color: #FE7B07;
  border: #FE7B07 solid 2px;
  border-radius: 50%;
}
.c-qa__hr {
  border-width: 1px 0 0 0;
  border-style: dashed;
  border-color: #dbdbdb;
  margin-top: 20px;
}

.c-ranking-title {
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: solid 1px #ccc;
  position: relative;
  font-size: 22px;
  line-height: 1.6;
  font-weight: bold;
}
.c-ranking-title__icon {
  position: absolute;
  left: 0;
}
.c-ranking-title--1st {
  padding-left: 60px;
}
.c-ranking-title--1st .c-ranking-title__icon {
  width: 50px;
  height: 35px;
  top: -8px;
  fill: #ee771b;
}
.c-ranking-title--2nd {
  padding-left: 45px;
}
.c-ranking-title--2nd .c-ranking-title__icon {
  width: 35px;
  height: 25px;
  top: 2px;
  fill: #c9bc9d;
}

.c-select-arrow {
  border: 1px solid #c6c6c6;
  height: 32px;
  line-height: 22px;
  background: url("/assets/img/common/select_arrow-ffac7179.png") right center no-repeat #fff;
  letter-spacing: 0.05em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 3px;
  box-sizing: border-box;
  transition: color 0.15s ease-out;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (max-width: 640px) {
  .c-select-arrow {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.c-select-arrow::-ms-expand {
  display: none;
}
.c-select-arrow:focus {
  outline: 0;
  border-color: #fe7b07;
  box-shadow: 0 0 3px #fe7b07;
}
.c-select-arrow:hover {
  cursor: pointer;
  color: #fe7b07;
}

.c-spec-pulldown__dt {
  background-color: #d5d0ca;
  height: 22px;
  line-height: 22px;
  color: #746c65;
  letter-spacing: 0.025em;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 640px) {
  .c-spec-pulldown__dt {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.c-spec-pulldown__span {
  line-height: 1.4;
}
@media screen and (max-width: 640px) {
  .c-spec-pulldown__span {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

.c-stars {
  white-space: nowrap;
}
.c-stars__icon {
  height: auto;
  vertical-align: bottom;
}
.c-stars--lg .c-stars__icon {
  width: 25px;
}
.c-stars--lg .c-stars__icon:not(:first-child) {
  margin-left: 10px;
}
.c-stars--md .c-stars__icon {
  width: 15px;
}
.c-stars--md .c-stars__icon:not(:first-child) {
  margin-left: 8px;
}
.c-stars--no-margin .c-stars__icon:not(:first-child) {
  margin-left: 0;
}

.c-table {
  width: 100%;
  display: table;
  box-sizing: border-box;
}
.c-table--description {
  display: table;
  width: 100%;
  border: 1px solid #a3a3a3;
}
@media screen and (max-width: 640px) {
  .c-table--description {
    display: block;
  }
}
.c-table--table {
  width: 100%;
  border: 1px solid #afafaf;
  border-bottom: none;
}
.c-table__dl {
  display: table-row;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.73;
  letter-spacing: 0.025em;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  background-color: rgba(234, 231, 222, 0.4);
}
@media screen and (max-width: 640px) {
  .c-table__dl {
    display: block;
    border: 0;
    width: auto;
  }
}
.c-table__dl:first-child .c-table__dt,
.c-table__dl:first-child .c-table__dd {
  border-top: none;
}
.c-table__dt {
  display: table-cell;
  width: 70%;
  padding: 14px 20px;
  vertical-align: middle;
  text-align: left;
  border-top: 1px solid #d8d8d8;
}
@media screen and (max-width: 640px) {
  .c-table__dt {
    display: block;
    width: auto;
  }
}
.c-table__dd {
  display: table-cell;
  width: 30%;
  vertical-align: top;
  padding: 14px 20px;
  background-color: #fff;
  box-sizing: border-box;
  border-top: 1px solid #d8d8d8;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .c-table__dd {
    display: block;
    width: auto;
    margin-left: 0;
    border-top: none;
    white-space: normal;
  }
}
.c-table__dt--orange, .c-table__dd--orange {
  background-color: rgb(254.8807228916, 239.2554216867, 225.4192771084);
}
@media screen and (max-width: 640px) {
  .c-table__tr {
    display: inline;
  }
}
.c-table__th {
  padding: 20px 15px;
  width: 310px;
  text-align: left;
  background-color: #f6f5f1;
}
.c-table__th--auto {
  width: auto;
}
@media screen and (max-width: 640px) {
  .c-table__th {
    padding: 5px 10px;
    width: 100%;
  }
}
.c-table__td {
  padding: 20px 15px 20px 20px;
  background-color: white;
}
@media screen and (max-width: 640px) {
  .c-table__td {
    padding: 10px;
  }
}
.c-table__td p:first-child {
  margin-top: 0px;
}
.c-table__th, .c-table__td {
  border-bottom: 1px solid #afafaf;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.5;
  vertical-align: top;
  box-sizing: border-box;
  color: #000;
}
.c-table__th--orange, .c-table__td--orange {
  background-color: rgb(254.8807228916, 239.2554216867, 225.4192771084);
}
@media screen and (max-width: 640px) {
  .c-table__th, .c-table__td {
    display: block;
    width: 100%;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.c-table--has-border {
  border: none;
  border-collapse: collapse;
}
.c-table--has-border .c-table__th,
.c-table--has-border .c-table__td {
  border: 1px solid #afafaf;
}
.c-table--fixed .c-table__tr {
  display: table-row;
}
@media screen and (max-width: 640px) {
  .c-table--fixed .c-table__th,
  .c-table--fixed .c-table__td {
    width: auto;
    display: table-cell;
  }
}

.c-text_link {
  color: #0467cc;
  word-break: break-all;
}
.c-text_link:hover {
  text-decoration: underline;
}
.c-text_link:visited {
  color: #0467cc;
}
.c-text_link--before-icon-arrow {
  position: relative;
  display: block;
  text-align: right;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}
.c-text_link--before-icon-arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  margin-left: -20px;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 2px solid #0467cc;
  border-right: 2px solid #0467cc;
  transform: rotate(45deg);
}
.c-text_link--icon-arrow {
  position: relative;
  display: block;
  text-align: right;
  margin-right: 12px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}
.c-text_link--icon-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: -10px;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fe7b07;
  border-right: 1px solid #fe7b07;
  transform: rotate(45deg);
}

.c-title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.7rem 0.5rem 0.7rem 0;
  line-height: 1.6;
}
.c-title--old {
  position: relative;
  padding: 38px 0 0;
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 640px) {
  .c-title--old {
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-title--old:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 92px;
  height: 28.7px;
  margin-left: -46px;
  background: url("/assets/img/common/5stars-60046547.svg") center center no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 640px) {
  .c-title--old:before {
    width: 80px;
    margin-left: -40px;
  }
}
.c-title--orange {
  font-size: 22px;
  font-size: 1.375rem;
  margin-top: 30px;
  padding: 10px;
  font-weight: bold;
  border-left: 5px #fe7b07 solid;
  background-color: #f6f6f6;
  width: 98%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .c-title--orange {
    width: 93%;
  }
}
.c-title--lg {
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (max-width: 640px) {
  .c-title--lg {
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-title--md {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 640px) {
  .c-title--md {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.c-title--sm {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .c-title--sm {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.c-title--bdr-btm {
  font-size: 20px;
  font-size: 1.25rem;
  padding-bottom: 10px;
  padding-left: 10px;
  border-bottom: 2px solid #fe7b07;
}
.c-title--bdr-btm--gray {
  border-bottom: 2px solid #dbdbdb;
}
.c-title__with-3star {
  display: block;
  width: 65px;
  height: 16px;
  margin: 0 auto 15px;
  fill: #fe7b07;
}
.c-title--with-english {
  font-size: 24px;
  font-size: 1.5rem;
  color: #fe7b07;
  padding-right: 0;
}
@media screen and (max-width: 640px) {
  .c-title--with-english {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.c-title--with-english .c-title__english {
  display: block;
  margin-bottom: -45px;
  font-family: Helvetica;
  font-size: 60px;
  font-size: 3.75rem;
  color: rgba(254, 123, 7, 0.1);
}
@media screen and (max-width: 640px) {
  .c-title--with-english .c-title__english {
    margin-bottom: -30px;
    font-size: 43px;
    font-size: 2.6875rem;
  }
}
.c-title--organe {
  margin-bottom: 15px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fe7b07;
}
.c-title--menu_request {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 640px) {
  .c-title--menu_request {
    font-size: 20px;
    font-size: 1.25rem;
    text-align: left;
  }
}

.c-toc {
  border: 2px #ebebeb solid;
}
.c-toc__title {
  font-weight: bold;
  background-color: #f4fbff;
  padding: 5px 10px;
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
}
.c-toc__title::before {
  font-family: "Font Awesome 5 Free";
  content: "\f03a";
  display: inline-block;
  transform: rotate(180deg);
  margin: 0 5px 0 0;
  padding: 2px 0 0 0;
}
.c-toc__body {
  padding: 5px 10px;
}
.c-toc__li {
  line-height: 1.6;
  border-top: 1px solid #ebebeb;
  padding: 5px 0;
}
.c-toc__li:first-of-type {
  border-top: 0;
}
.c-toc__link {
  position: relative;
  font-weight: bold;
  color: #0467cc;
}
.c-toc__link:hover {
  text-decoration: underline;
}
.c-toc__link:visited {
  color: #0467cc;
}

.c-callout--slash::before {
  content: "＼";
}
.c-callout--slash::after {
  content: "／";
}
.c-callout--balloon {
  position: relative;
  margin: 0 0 30px 0;
  padding: 15px;
  border-radius: 15px;
  color: black;
  background: #fff;
}
@media screen and (max-width: 640px) {
  .c-callout--balloon {
    margin-bottom: 20px;
    padding: 10px;
  }
}
.c-callout--balloon::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #fff;
}

.p-3step-banner {
  width: 100%;
  background-image: url("/assets/img/lp/reform/3step_bg-da23aa95.png");
  padding: 50px 0;
  height: auto;
  text-align: center;
}
.p-3step-banner__image {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.p-3step-banner__text {
  font-size: 2.4rem;
  font-weight: bold;
  padding: 10px 0 30px;
}
@media screen and (max-width: 640px) {
  .p-3step-banner__text {
    font-size: 1.1rem;
  }
}

.p-about__hero {
  width: 100%;
  min-width: 1032px;
  height: 370px;
  background-image: url("/assets/img/about/hero-bg-f5855a6f.jpg");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 640px) {
  .p-about__hero {
    min-width: 100%;
    height: 182px;
  }
}
.p-about__hero_text {
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .p-about__hero_text {
    display: none;
  }
}
.p-about__hero_title {
  font-size: 39px;
  line-height: 1.6;
  text-align: center;
  font-weight: 900;
}
@media screen and (max-width: 640px) {
  .p-about__hero_title {
    font-size: 24px;
  }
}
.p-about__hero_title--sub {
  font-size: 18px;
}
.p-about__desc_image {
  margin: 0 auto;
  width: 810px;
  height: auto;
}
@media screen and (max-width: 640px) {
  .p-about__desc_image {
    width: 100%;
  }
}
.p-about__desc_catch {
  position: relative;
  margin: 0 auto;
  width: 500px;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
}
@media screen and (max-width: 640px) {
  .p-about__desc_catch {
    width: 100%;
    font-weight: normal;
    font-size: 14px;
  }
}
.p-about__desc_catch:before, .p-about__desc_catch:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -65.5px;
  width: 60px;
  height: 131px;
  background-image: url("/assets/img/about/slash-05da35d9.gif");
  background-size: 100% auto;
}
@media screen and (max-width: 640px) {
  .p-about__desc_catch:before, .p-about__desc_catch:after {
    content: none;
  }
}
.p-about__desc_catch:before {
  left: -60px;
}
.p-about__desc_catch::after {
  right: -60px;
  transform: rotateY(180deg);
}
.p-about__desc_title {
  position: relative;
  font-size: 25px;
  margin-bottom: 25px;
}
@media screen and (max-width: 640px) {
  .p-about__desc_title {
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 20px;
  }
  .p-about__desc_title:before, .p-about__desc_title:after {
    content: "";
    display: inline-block;
    margin: 0 15px 5px 0;
    width: 45px;
    height: 2px;
    background: #000000;
    transform: rotate(55deg);
  }
  .p-about__desc_title::after {
    margin: 0 0 5px 15px;
    transform: rotate(-55deg);
  }
}
.p-about__desc__text--info {
  color: #f9a42a;
}
.p-about__point_title {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
.p-about__point_title--number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin: 20px auto;
  color: white;
  font-size: 20px;
  font-weight: bold;
  background: black;
  border-radius: 30px;
}
.p-about__point_list {
  display: block;
}
.p-about__point_list li {
  position: relative;
  padding: 0.8rem 2rem;
  border-bottom: 1px dotted #cccccc;
}
.p-about__point_list li:before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 0;
  background-image: url("/assets/img/about/check_orange-e80bdf53.gif");
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
}
.p-about__point_list_title {
  width: 150px;
}
.p-about__point_list_item {
  display: flex;
}
@media screen and (max-width: 640px) {
  .p-about__point_list_item {
    flex-wrap: wrap;
  }
}
.p-about__list_title {
  width: 160px;
}
.p-about__flow {
  position: relative;
  padding-right: 40px;
}
.p-about__flow::before {
  content: "";
  position: absolute;
  bottom: 50%;
  right: 4px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 20px;
  border-color: transparent transparent transparent #f9a42a;
}
.p-about__flow:last-child::before {
  content: none;
}
@media screen and (max-width: 640px) {
  .p-about__flow {
    padding-right: 0;
    padding-bottom: 40px;
  }
  .p-about__flow::before {
    bottom: 10px;
    right: 50%;
    margin-right: -15px;
    border-width: 20px 15px 0 15px;
    border-color: #f9a42a transparent transparent transparent;
  }
}
.p-about__flow_image {
  display: block;
  width: 260px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .p-about__flow_image {
    width: 300px;
    height: auto;
  }
}
.p-about__block--btn {
  border: 6px solid #eeeeee;
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 6px;
}
@media screen and (max-width: 640px) {
  .p-about__block--btn {
    padding: 0;
  }
}
.p-about__btn--submit {
  position: relative;
}
.p-about__btn--submit.c-btn {
  height: 100px;
  line-height: 100px;
  font-weight: bold;
  font-size: 30px;
}
@media screen and (max-width: 640px) {
  .p-about__btn--submit.c-btn {
    font-size: 20px;
    padding: 0 1.3rem;
    text-align: left;
  }
}
.p-about__btn__balloon {
  position: absolute;
  top: 8px;
  right: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 20px;
  color: white;
  background: #6384bb;
  border-radius: 30px;
}
.p-about__btn__balloon:before {
  content: "";
  position: absolute;
  top: 64%;
  left: -6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 10px 5px 0;
  border-color: transparent #6384bb transparent transparent;
  transform: rotate(-20deg);
}
.p-about__title--border {
  padding: 2rem 0;
  margin-bottom: 40px;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 640px) {
  .p-about__title--border {
    padding: 2rem 0.5rem 1rem;
    line-height: 1.6;
  }
}
.p-about__more_block {
  border: 10px solid #f0f0f0;
  padding: 40px 0;
  border-radius: 4px;
}
@media screen and (max-width: 640px) {
  .p-about__more_block {
    flex-wrap: wrap;
    padding: 20px 0 0;
  }
}
.p-about__more_item {
  padding: 0 40px;
}
@media screen and (max-width: 640px) {
  .p-about__more_item {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-about__more_item--left {
  border-right: 2px solid #f0f0f0;
}
@media screen and (max-width: 640px) {
  .p-about__more_item--left {
    border-right: none;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
  }
}
.p-about__more_title {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 2px solid #f0f0f0;
}
@media screen and (max-width: 640px) {
  .p-about__more_title {
    text-align: left;
  }
}
.p-about__more_image {
  width: 120px;
  height: 120px;
  border-radius: 60px;
}
@media screen and (max-width: 640px) {
  .p-about__more_image {
    width: 100px;
    height: 100px;
    margin-right: 18px;
  }
}
.p-about__more_btn.c-btn {
  font-weight: bold;
  padding: 0.4rem;
  height: 64px;
}
@media screen and (max-width: 640px) {
  .p-about__more_btn.c-btn {
    font-size: 18px;
    line-height: 2.4;
  }
}
.p-about--pro__btn.c-btn {
  font-weight: bold;
  padding: 0.4rem;
  width: 50%;
  height: 64px;
}
@media screen and (max-width: 640px) {
  .p-about--pro__btn.c-btn {
    width: 100%;
    line-height: 3.4;
  }
}

.p-all-present-campaign {
  min-width: 1032px;
}
@media screen and (max-width: 640px) {
  .p-all-present-campaign {
    min-width: 100%;
  }
}
.p-all-present-campaign__bar {
  width: 100%;
  max-width: 100%;
  min-width: 1032px;
  padding: 10px 0;
  background: linear-gradient(to left, #0a57b5, #0014a6);
}
@media screen and (max-width: 640px) {
  .p-all-present-campaign__bar {
    min-width: 100%;
  }
}
.p-all-present-campaign__bar-inner {
  display: flex;
  align-items: center;
  width: 1032px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .p-all-present-campaign__bar-inner {
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
  }
}
.p-all-present-campaign__bar-text {
  padding-left: 18px;
  font-size: 26px;
  font-size: 1.625rem;
  color: #ffee01;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .p-all-present-campaign__bar-text {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-all-present-campaign__bar-link:link, .p-all-present-campaign__bar-link:hover, .p-all-present-campaign__bar-link:visited {
  margin-left: auto;
  justify-self: flex-end;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
}
.p-all-present-campaign__bar-link::after {
  content: "";
  display: inline-block;
  vertical-align: 4px;
  width: 8px;
  height: 8px;
  margin-left: 20px;
  border-top: white 1px solid;
  border-right: white 1px solid;
  transform: rotate(135deg);
}
.p-all-present-campaign__content {
  width: 1000px;
  margin: 100px auto 80px;
  background: #f6f6f6;
}
@media screen and (max-width: 640px) {
  .p-all-present-campaign__content {
    width: calc(100% - 40px);
    margin: 0 20px 50px;
  }
}
.p-all-present-campaign__column {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 800px;
  margin: 30px auto 0;
}
@media screen and (max-width: 640px) {
  .p-all-present-campaign__column {
    width: 100%;
    flex-direction: column;
  }
}
.p-all-present-campaign__text {
  font-size: 42px;
  font-size: 2.625rem;
  line-height: 1.38;
  font-weight: bold;
  color: #0a57b5;
  text-shadow: white 4px 0px, white -4px 0px, white 0px -4px, white 0px 4px, white 4px 4px, white -4px 4px, white 4px -4px, white -4px -4px, white 1px 4px, white -1px 4px, white 1px -4px, white -1px -4px, white 4px 1px, white -4px 1px, white 4px -1px, white -4px -1px;
}
@media screen and (max-width: 640px) {
  .p-all-present-campaign__text {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 640px) {
  .p-all-present-campaign__image {
    width: 70%;
    margin: 20px auto 0;
  }
}
.p-all-present-campaign__period {
  color: #fe7b07;
  font-weight: bold;
  text-align: center;
}
.p-all-present-campaign__period > dt {
  display: inline-block;
  margin-top: 30px;
  padding: 5px 60px;
  background-color: #ffee01;
  border-radius: 15px;
  font-size: 18px;
  font-size: 1.125rem;
}
.p-all-present-campaign__period > dd {
  margin-top: 20px;
  font-size: 26px;
  font-size: 1.625rem;
}
@media screen and (max-width: 640px) {
  .p-all-present-campaign__period > dd {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.54;
  }
}
.p-all-present-campaign__flowchart {
  width: 800px;
  margin: 50px auto 0;
  padding: 1px 20px 20px;
  background-color: white;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .p-all-present-campaign__flowchart {
    width: 100%;
    margin-top: 20px;
    padding-right: 10px;
    padding-left: 10px;
  }
}
.p-all-present-campaign__note {
  margin-top: 20px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  color: #e72f2f;
  line-height: 1.4;
}
.p-all-present-campaign__copy {
  padding-top: 20px;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fe7b07;
}
.p-all-present-campaign__title {
  margin-top: 30px;
}
.p-all-present-campaign__overview {
  width: 800px;
  margin: 50px auto 30px;
  padding: 0 50px 50px;
  border-radius: 5px;
  border: #ebebeb 1px solid;
  box-sizing: border-box;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .p-all-present-campaign__overview {
    width: 100%;
    margin-top: 30px;
    padding: 0 20px 20px;
  }
}
.p-all-present-campaign__overview-title {
  margin-top: 30px;
  font-weight: bold;
}
.p-all-present-campaign__overview-detail > b {
  font-weight: bold;
  color: #e72f2f;
}
.p-all-present-campaign__overview-detail-list {
  list-style: disc inside;
}

.p-areas-banner__block {
  padding: 15px 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 180px;
  background: #f4fbff;
}
@media screen and (max-width: 640px) {
  .p-areas-banner__block {
    flex-direction: column;
  }
}
.p-areas-banner__btn--more {
  bottom: 12px;
  right: 3rem;
  transition: color 0.15s ease-out, background-color 0.15s ease-out;
}
.p-areas-banner__item {
  position: relative;
  margin: 0 10px;
}

.p-areas-banner__dealer__image {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .p-areas-banner__dealer__image {
    display: block;
    margin: 12px auto 10px;
  }
}

.p-areas-banner__dealer {
  display: block;
  font-weight: bold;
  text-align: left;
}

.p-areas-banner__dealer--detail {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .p-areas-banner__dealer--detail {
    font-weight: normal;
  }
}

.p-areas-banner__label {
  background: #fe7b07;
  color: white;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bolder;
  padding: 3px 12px;
  border-radius: 3px;
  line-height: 1.4;
  text-align: center;
  display: inline-block;
}

.p-areas-banner__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  color: #000;
  line-height: 1.8;
  letter-spacing: 1px;
}
@media screen and (max-width: 640px) {
  .p-areas-banner__title {
    text-align: left;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 22px 0;
  }
}

.p-banner {
  text-align: center;
}
.p-banner__image {
  width: 100%;
}
@media screen and (max-width: 640px) {
  .p-banner__image {
    width: 100%;
  }
}

.p-box_bottom_fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  width: 400px;
  border-radius: 3px;
  border: 1px solid #fe7b07;
  padding: 8px 10px 10px;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.15);
}
.p-box_bottom_fixed.is-active {
  display: block;
}
.p-box_bottom_fixed__title {
  position: relative;
  margin-bottom: 12px;
  padding-left: 35px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #fe7b07;
}
.p-box_bottom_fixed__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: -8px;
  width: 24px;
  height: 28px;
  background: #fe7b07;
}
.p-box_bottom_fixed__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 0;
  border-bottom: 8px solid #ffffff;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}
.p-box_bottom_fixed__item {
  background-color: #faf5eb;
  border-radius: 3px;
  padding: 0 10px;
  margin-bottom: 5px;
  font-size: 12px;
  font-size: 0.75rem;
}
.p-box_bottom_fixed__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: -0.5em;
}
.p-box_bottom_fixed__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: none;
  padding: 0;
  width: 20px;
  height: 20px;
  text-indent: 100%;
  white-space: nowrap;
  cursor: pointer;
}
.p-box_bottom_fixed__close::before, .p-box_bottom_fixed__close::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 20px;
  background-color: #fe7b07;
}
.p-box_bottom_fixed__close::before {
  transform: rotate(45deg);
}
.p-box_bottom_fixed__close::after {
  transform: rotate(-45deg);
}
.p-box_bottom_fixed__link {
  text-align: right;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
}
.p-box_bottom_fixed__link > a {
  color: #0467cc;
}
.p-box_bottom_fixed__link > a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 640px) {
  .p-box_bottom_fixed {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .p-builders {
    overflow-y: hidden;
  }
}
.p-builders__content {
  padding: 0;
}
.p-builders__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px auto 0;
}
@media screen and (max-width: 640px) {
  .p-builders__list {
    display: block;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin-left: 20px;
    -webkit-overflow-scrolling: touch;
  }
}
.p-builders__list-item {
  box-sizing: border-box;
  width: 480px;
  padding: 12px;
  margin-bottom: 40px;
  border-radius: 5px;
  border: solid 4px #edebe8;
}
@media screen and (max-width: 640px) {
  .p-builders__list-item {
    width: 94%;
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
    white-space: normal;
  }
}
@media screen and (max-width: 640px) {
  .p-builders__list-item:last-child {
    margin-right: 20px;
  }
}
.p-builders__column {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .p-builders__column {
    min-height: 96px;
  }
}
.p-builders__image {
  margin-right: 14px;
}
.p-builders__name {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}
.p-builders__copy {
  font-size: 12px;
  font-size: 0.75rem;
}
.p-builders__figure {
  margin-bottom: 14px;
}
.p-builders__caption {
  font-size: 14px;
  font-size: 0.875rem;
}

.p-button_bottom_fixed-pc {
  position: fixed;
  z-index: 200;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  justify-content: center;
  align-items: center;
  background: #FFF1E6;
  min-width: 1032px;
  max-width: 100%;
  font-weight: 700;
  padding-top: ２px;
}
.p-button_bottom_fixed-pc__text {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
  line-height: 18px;
  vertical-align: sub;
  flex-basis: 120px;
  padding: 0 7px;
}
.p-button_bottom_fixed-pc__text--strong {
  font-size: 27px;
  font-size: 1.6875rem;
  color: #E72F2F;
}
.p-button_bottom_fixed-pc__form {
  position: relative;
  margin-right: 10px;
  padding: 5px 5px 10px 10px;
  border-radius: 5px;
  width: 17%;
}
.p-button_bottom_fixed-pc__form-title {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}
.p-button_bottom_fixed-pc__form-title::before {
  content: "";
  padding-right: 5px;
  border-left: 5px solid #fe7b07;
}
.p-button_bottom_fixed-pc__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 35px 7px 25px;
  background: white;
  border-radius: 50px;
  color: #fe7b07;
  height: 35px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: #fe7b07;
  border: 2px solid #fe7b07;
  cursor: pointer;
}
.p-button_bottom_fixed-pc__button::after {
  position: absolute;
  right: 13px;
  content: "";
  vertical-align: text-bottom;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fe7b07;
  border-right: 3px solid #fe7b07;
  transform: rotate(45deg);
}
.p-button_bottom_fixed-pc__button:hover {
  box-shadow: none;
  transform: translateY(3px);
  color: #fe7b07;
}
.p-button_bottom_fixed-pc__icon {
  position: relative;
  margin: 0 15px 0 10px;
  white-space: nowrap;
}
.p-button_bottom_fixed-sp {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex !important;
  flex-wrap: wrap;
  width: 100%;
  padding: 8px;
  z-index: 100;
  background: #FFF1E6;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.p-button_bottom_fixed-sp__text {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
  padding: 0 7px;
  line-height: 18px;
  vertical-align: text-bottom;
  flex-basis: 120px;
}
.p-button_bottom_fixed-sp__text--strong {
  font-size: 22px;
  font-size: 1.375rem;
  color: #E72F2F;
}
.p-button_bottom_fixed-sp__secondary_button {
  margin-right: 20px;
  padding: 12px;
  text-align: center;
  border-radius: 50px;
  width: 273px;
  display: inline-block;
  box-sizing: border-box;
  color: #ffffff !important;
  font-weight: bold;
  background: #fe7b07;
  box-shadow: #DD6800;
}
.p-button_bottom_fixed-sp__secondary_button::after {
  content: "";
  position: absolute;
  top: calc(72% - 4px);
  right: 78px;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
}
.p-button_bottom_fixed-sp__button {
  margin-right: 20px;
  padding: 12px;
  text-align: center;
  border: 2px solid #FE7B07;
  border-radius: 50px;
  width: 200px;
  display: inline-block;
  box-sizing: border-box;
  color: #FE7B07 !important;
  font-weight: bold;
  background: white;
  box-shadow: #DD6800;
}

.p-category-search__title {
  letter-spacing: 0.025em;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 640px) {
  .p-category-search__title {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-category-search__title:before {
  content: url("/assets/img/common/icon_search_black-e727d00f.svg");
  position: absolute;
  left: 0;
  top: 19px;
  display: block;
  width: 21px;
  height: 22px;
}
.p-category-search__title--category {
  background-color: #d5d0ca;
  color: #746c65;
  letter-spacing: 0.025em;
  font-weight: bold;
  height: 22px;
  line-height: 22px;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 640px) {
  .p-category-search__title--category {
    height: 19px;
    line-height: 19px;
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.p-category-search__desc {
  display: inline;
  color: #7f7f7f;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 640px) {
  .p-category-search__desc {
    display: block;
    line-height: 1.2;
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
@media screen and (max-width: 640px) {
  .p-category-search__dl {
    display: block;
  }
}
.p-category-search__dt {
  width: 114px;
  letter-spacing: 0.025em;
  font-weight: bold;
  line-height: 33px;
  height: 33px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .p-category-search__dt {
    line-height: 1.2;
    height: auto;
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
@media screen and (max-width: 640px) {
  .p-category-search__block {
    box-sizing: border-box;
  }
}
@media screen and (max-width: 640px) {
  .p-category-search__block:nth-of-type(odd) {
    margin-left: 0;
  }
}
@media screen and (max-width: 640px) {
  .p-category-search__block:first-child, .p-category-search__block:nth-of-type(2) {
    margin-top: 0;
  }
}
.p-category-search__kara {
  margin-left: -8px;
  margin-right: -8px;
}
.p-category-search__btn.c-btn.c-btn--icon-right svg {
  transform: rotate(90deg);
  right: 8px;
}
.p-category-search__zip {
  background-color: #fff;
}
@media screen and (max-width: 640px) {
  .p-category-search__zip {
    right: 0;
  }
}
.is-close .p-category-search__button--opened {
  display: none;
}
.p-category-search__button--closed {
  display: none;
}
.is-close .p-category-search__button--closed {
  display: inline-block;
}
.p-category-search__button.c-btn {
  display: none;
  background-color: #f0f0f0;
  border-color: #f0f0f0;
  top: 13px;
  right: 0;
  font-size: 12px;
  font-size: 0.75rem;
  color: #38598f;
}
@media screen and (max-width: 640px) {
  .p-category-search__button.c-btn {
    display: block;
  }
}
.is-close .p-category-search__button.c-btn {
  border-color: #38598f;
}
.p-category-search__button.c-btn svg {
  margin-right: 10px;
  display: inline-block;
  line-height: 20px;
  width: 12px;
  transition: transform 0.5s;
}
.is-close .p-category-search__button.c-btn svg {
  margin-top: -5px;
  height: 10px;
  transform: rotate(180deg);
}
.p-category-search__span {
  color: #38598f;
  line-height: 20px;
  height: 20px;
  vertical-align: middle;
  transition: width 0.5s;
}
.p-category-search .item_zipcode {
  margin-top: 20px;
  background-color: #fff;
}
@media screen and (max-width: 640px) {
  .p-category-search .item_zipcode {
    margin-left: 0;
    right: 0;
  }
}

.p-construction-example__list {
  display: flex;
  justify-content: space-between;
  margin: 40px auto 0;
  flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
  .p-construction-example__list {
    display: block;
    margin: 20px 20px 0 20px;
  }
}
@media screen and (max-width: 640px) {
  .p-construction-example__list--slide {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 20px 0 0 20px;
    -webkit-overflow-scrolling: touch;
  }
}
.p-construction-example__list-item {
  box-sizing: border-box;
  width: 480px;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 5px;
  border: solid 4px #edebe8;
}
@media screen and (max-width: 640px) {
  .p-construction-example__list-item {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .p-construction-example__list-item--slide {
    width: 94%;
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    margin-right: 5px;
    white-space: normal;
  }
}
@media screen and (max-width: 640px) {
  .p-construction-example__list-item--slide:last-child {
    margin-right: 20px;
  }
}
.p-construction-example__content {
  padding: 0;
}
.p-construction-example__name {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #edebe8;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}
.p-construction-example__figure {
  margin-bottom: 14px;
}
.p-construction-example__detail-title {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}
.p-construction-example__detail-title::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  width: 5px;
  height: 5px;
  background-color: #fe7b07;
}
.p-construction-example__detail-item {
  margin-bottom: 10px;
  padding-left: 1em;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-construction-example__table {
  border-collapse: separate;
  border-spacing: 0 10px;
}
.p-construction-example__table-head {
  background-color: rgb(254.8192771084, 231.1445783133, 210.1807228916);
  padding: 0 10px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
.p-construction-example__table-detail {
  padding-left: 15px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}
.p-construction-example__table-detail b {
  font-size: 24px;
  font-size: 1.5rem;
}
.p-construction-example__table-cost {
  color: #fe7b07;
}
.p-construction-example__text {
  margin-top: 10px;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-construction-example__address {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #ebebeb;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
}
.p-construction-example__small {
  font-size: 10px;
  font-size: 0.625rem;
}

.p-copyright {
  min-width: 1032px;
  background-color: #000;
  padding: 6px 0;
  color: #fff;
  text-align: center;
  letter-spacing: 0.26em;
  font-size: 11px;
  font-size: 0.6875rem;
  font-family: "Lato Semibold", Helvetica, Arial, Verdana, sans-serif;
}
.p-copyright .l-content {
  padding-bottom: 0;
}
@media screen and (max-width: 640px) {
  .p-copyright {
    min-width: 100%;
    margin-bottom: 68px;
    letter-spacing: 0.06em;
    font-size: 8px;
    font-size: 0.5rem;
  }
}

.p-count-on-refoma {
  background: url("/assets/img/lp/count-on-refoma_bg-4ef828c5.png") 0 0 repeat-x;
}
@media screen and (max-width: 640px) {
  .p-count-on-refoma {
    background-size: 1px 85px;
  }
}
.p-count-on-refoma__column {
  width: 800px;
  margin: 0 auto;
  padding-top: 20px;
}
@media screen and (max-width: 640px) {
  .p-count-on-refoma__column {
    width: 100%;
  }
}
.p-count-on-refoma__text-box {
  padding: 20px 188px 0 0;
}
@media screen and (max-width: 640px) {
  .p-count-on-refoma__text-box {
    padding: 0;
  }
}
.p-count-on-refoma__title {
  margin-bottom: 70px;
  font-size: 47px;
  font-size: 2.9375rem;
  font-weight: bold;
  color: #ffee01;
  line-height: 1.19;
}
@media screen and (max-width: 640px) {
  .p-count-on-refoma__title {
    margin-bottom: 30px;
    font-size: 24px;
    font-size: 1.5rem;
    white-space: nowrap;
  }
}
.p-count-on-refoma__span {
  display: block;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: bold;
  color: white;
  line-height: 1.14;
}
@media screen and (max-width: 640px) {
  .p-count-on-refoma__span {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-count-on-refoma__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.56;
}
.p-count-on-refoma__image {
  float: right;
}
@media screen and (max-width: 640px) {
  .p-count-on-refoma__image {
    margin-top: 50px;
    width: 130px;
  }
}

.p-customer-voice {
  min-width: 1032px;
}
@media screen and (max-width: 640px) {
  .p-customer-voice {
    min-width: 100%;
  }
}
.p-customer-voice {
  padding-top: 30px;
  background: url("/assets/img/top/voice_image-48419155.jpg") center top no-repeat;
  background-size: 100%;
}
.p-customer-voice__list-wrap {
  display: flex;
}
@media screen and (max-width: 640px) {
  .p-customer-voice__list-wrap {
    display: block;
  }
}
.p-customer-voice__list {
  flex: 1;
  margin: 10px;
  padding: 20px;
  background-color: white;
  border: 1px solid #ebebeb;
  border-radius: 5px;
}
@media screen and (max-width: 640px) {
  .p-customer-voice__list {
    margin: 20px 0 0;
  }
}
.p-customer-voice__title {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}
.p-customer-voice__icon {
  width: 50px;
  height: 62px;
  margin: 0 20px 10px 0;
  fill: rgb(254.5120481928, 190.5903614458, 133.9879518072);
}
.p-customer-voice__name {
  font-size: 12px;
  font-size: 0.75rem;
  color: #6e6e6e;
}
.p-customer-voice__text {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .p-customer-voice__text {
    text-align: left;
  }
}
.p-customer-voice__content {
  font-size: 14px;
  font-size: 0.875rem;
}

.p-data {
  margin-top: 60px;
}
.p-data__column {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 800px;
  margin: 30px auto;
}
@media screen and (max-width: 640px) {
  .p-data__column {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
}
.p-data__text-box {
  width: 400px;
  margin: 20px 40px 0 0;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  .p-data__text-box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.p-data__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
}
@media screen and (max-width: 640px) {
  .p-data__text {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 640px) {
  .p-data__image {
    display: block;
    margin: 0 auto 18px;
  }
}
.p-data__lead {
  margin-bottom: 15px;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}
.p-data__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 800px;
  margin: 30px auto 0;
}
@media screen and (max-width: 640px) {
  .p-data__list {
    width: 100%;
  }
}
.p-data__list-item {
  box-sizing: border-box;
  width: 125px;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: solid 4px #edebe8;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .p-data__list-item {
    width: 105px;
  }
}
.p-data__list-text {
  text-align: center;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.38;
}
.p-data__list-icon {
  height: 40px;
}

.p-dealer-cat-nav {
  margin-left: 225px;
  padding: 10px 20px;
}
@media screen and (max-width: 640px) {
  .p-dealer-cat-nav {
    margin: 10px;
    padding: 0 10px 10px 10px;
  }
}
@media screen and (max-width: 640px) {
  .p-dealer-cat-nav__li {
    width: 48%;
  }
}
.p-dealer-cat-nav__link {
  color: #554e48;
}
.p-dealer-cat-nav__link:hover {
  color: #554e48;
  text-decoration: underline;
}

.p-dealer-interview {
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .p-dealer-interview {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.p-dealer-interview__li {
  width: 160px;
  float: left;
  text-align: center;
  border-radius: 3px;
}
.p-dealer-interview__li:hover {
  cursor: pointer;
}
.p-dealer-interview__li:hover .p-dealer-interview__title {
  text-decoration: underline;
}
.p-dealer-interview__li:nth-child(odd) {
  background-color: #f0f0f0;
}
@media screen and (max-width: 640px) {
  .p-dealer-interview__li {
    width: auto;
    text-align: left;
    float: none;
    border-radius: 0;
  }
}
.p-dealer-interview__link {
  color: #000 !important;
}
.p-dealer-interview__img {
  width: 80px;
  height: 80px;
  float: none;
  border-radius: 5px;
}
@media screen and (max-width: 640px) {
  .p-dealer-interview__img {
    width: 60px;
    height: 60px;
    float: left;
  }
}
.p-dealer-interview__title {
  display: block;
  vertical-align: top;
  line-height: 1.53;
  font-weight: bold;
  font-size: 15px;
  font-size: 0.9375rem;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .p-dealer-interview__title {
    display: table-cell;
    vertical-align: middle;
    line-height: 1.53;
    letter-spacing: 0;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-dealer-interview__address {
  color: #808080;
  line-height: 1.2;
  letter-spacing: 0.025em;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 640px) {
  .p-dealer-interview__address {
    line-height: 1.14;
  }
}
.p-dealer-interview__comment {
  background-color: transparent;
  padding: 0;
  line-height: 1.58;
  color: #333;
  font-size: 12px;
  font-size: 0.75rem;
  border-radius: 6px;
}
.p-dealer-interview__comment:before {
  content: none;
}

.p-dealer-list--text__item {
  padding: 10px;
  border-left: 1px dotted #b2b2b2;
}
@media screen and (max-width: 640px) {
  .p-dealer-list--text__item {
    padding: 10px 0;
    border-left: none;
  }
}
.p-dealer-list--text__name {
  margin: -2px 0 11px;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 640px) {
  .p-dealer-list--text__name {
    margin: -1px 0 2px 0;
    font-size: 15px;
    font-size: 0.9375rem;
    letter-spacing: 0;
  }
}
.p-dealer-list--text__desc {
  margin-top: 10px;
  color: #817c78;
  letter-spacing: 0.025em;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.54;
}
@media screen and (max-width: 640px) {
  .p-dealer-list--text__desc {
    margin: 5px 0 13px;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.36;
    max-height: 2.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

.p-dealer-main-image {
  min-height: 163px;
  background: #f7f5f2;
}
@media screen and (max-width: 640px) {
  .p-dealer-main-image {
    display: inline;
  }
}
.p-dealer-main-image__block--bg {
  min-height: 163px;
}
.p-dealer-main-image__block--name {
  padding: 0.8rem 1.4rem;
  background-color: rgba(51, 51, 51, 0.6);
  bottom: 51px;
  left: 207px;
}
@media screen and (max-width: 640px) {
  .p-dealer-main-image__block--name {
    padding: 10px;
    left: 0;
    bottom: 90px;
    margin-left: 89px;
  }
}
.p-dealer-main-image__block--image {
  left: 25px;
  bottom: 15px;
}
@media screen and (max-width: 640px) {
  .p-dealer-main-image__block--image {
    bottom: 84px;
    left: 0;
    width: 90px;
  }
}
.p-dealer-main-image__title {
  position: relative;
}
.p-dealer-main-image__title--right {
  padding: 40px;
  position: absolute;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  right: 0;
}
@media screen and (max-width: 640px) {
  .p-dealer-main-image__title--right {
    background: #393939;
    padding: 20px 0;
    position: static;
  }
}
.p-dealer-main-image__title--left {
  padding: 40px;
  position: absolute;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
}
@media screen and (max-width: 640px) {
  .p-dealer-main-image__title--left {
    padding: 20px 0;
    width: 100%;
  }
}
.p-dealer-main-image__name {
  font-weight: bold;
  color: #fff;
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (max-width: 640px) {
  .p-dealer-main-image__name {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-dealer-main-image__main-name {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  word-break: keep-all;
  line-height: 1.5;
}
.p-dealer-main-image__sub-name {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #fff;
  padding-bottom: 10px;
}
.p-dealer-main-image__review--rate {
  font-weight: bold;
  color: #fe8016;
  font-size: 15px;
  font-size: 0.9375rem;
  vertical-align: middle;
}
@media screen and (max-width: 640px) {
  .p-dealer-main-image__review--rate {
    display: inline-block;
    font-size: 10px;
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 640px) {
  .p-dealer-main-image__review--word_mouth {
    display: block;
  }
}
.p-dealer-main-image__review--word_mouth img {
  width: 13px;
}
.p-dealer-main-image__link {
  padding-left: 4px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #fff;
  vertical-align: middle;
}
.p-dealer-main-image__link:hover {
  color: inherit;
}
.p-dealer-main-image__image {
  width: 172px;
  border: 1px solid #d2d0ce;
  background-color: #fff;
  border-radius: 3px;
}
@media screen and (max-width: 640px) {
  .p-dealer-main-image__image {
    width: 100%;
  }
}

.p-dealer_award {
  background: #FEF7EE;
  padding: 30px;
  border-top: double 6px #cfb53b;
}
.p-dealer_award__container {
  display: flex;
}
@media screen and (max-width: 640px) {
  .p-dealer_award__container {
    display: block;
  }
}
.p-dealer_award__container_pic {
  width: 50%;
  height: auto;
}
@media screen and (max-width: 640px) {
  .p-dealer_award__container_pic {
    width: 100%;
  }
}
.p-dealer_award__container_info {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  margin-left: 30px;
}
@media screen and (max-width: 640px) {
  .p-dealer_award__container_info {
    width: 100%;
    margin-left: 0;
  }
}
.p-dealer_award__blockquote {
  clear: both;
  position: relative;
  padding: 30px 15px 10px;
  background: #ffffff;
  border-left: 3px #ebebeb solid;
}
.p-dealer_award__blockquote:before {
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  left: 17px;
  width: 33px;
  height: 30px;
  background: url("/assets/img/top/top_icon_quote-5715b62a.svg") 0 0 no-repeat;
}
.p-dealer_award__blockquote_citation {
  font-size: 16px;
  font-size: 1rem;
}
.p-dealer_award__blockquote_source {
  font-size: 14px;
  font-size: 0.875rem;
}

.p-dealer_infobox {
  border: 2px solid #EBEBEB;
  padding-bottom: 35px;
  margin-bottom: 30px;
}
.p-dealer_infobox__title {
  background-color: #F7F7F4;
  text-align: center;
  border: none;
  padding: 10px;
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
}
.p-dealer_infobox__profile {
  padding: 20px 20px 0;
  display: table;
}
@media screen and (max-width: 640px) {
  .p-dealer_infobox__profile {
    display: block;
  }
}
.p-dealer_infobox__profile_detail {
  display: flex;
  padding-bottom: 5px;
}
.p-dealer_infobox__profile_dt {
  width: 30%;
  font-size: 14px;
  font-size: 0.875rem;
  color: #6e6e6e;
}
.p-dealer_infobox__profile_dd {
  font-size: 16px;
  font-size: 1rem;
  width: 70%;
  color: #000;
  align-items: center;
}
.p-dealer_infobox__profile_pic {
  display: table-cell;
  vertical-align: middle;
  width: 200px;
  height: 200px;
}
@media screen and (max-width: 640px) {
  .p-dealer_infobox__profile_pic {
    display: block;
    margin: 0 auto;
  }
}
.p-dealer_infobox__profile_img {
  border-radius: 50%;
}
.p-dealer_infobox__profile_info {
  display: table-cell;
  vertical-align: middle;
  padding-left: 20px;
}
@media screen and (max-width: 640px) {
  .p-dealer_infobox__profile_info {
    display: block;
    padding: 0;
  }
}
.p-dealer_infobox__profile_star {
  padding-bottom: 5px;
}
.p-dealer_infobox__profile_name {
  font-weight: bold;
  padding-bottom: 5px;
}
.p-dealer_infobox__profile_sample {
  padding: 20px;
}
.p-dealer_infobox__more {
  text-align: right;
  font-weight: bold;
  margin-right: 20px;
}
.p-dealer_infobox__more a {
  color: #0467cc;
  word-break: break-all;
}
.p-dealer_infobox__more a:hover {
  text-decoration: underline;
}
.p-dealer_infobox__more a:visited {
  color: #0467cc;
}
.p-dealer_infobox__btnbox {
  padding: 0 20px;
}

.p-detail_example__title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  border-left: 6px solid #fe7b07;
  background: #f6f6f6;
  padding: 14px 15px;
}
@media screen and (max-width: 640px) {
  .p-detail_example--figure {
    width: 100%;
    max-width: 100%;
  }
}
.p-detail_example__dl--figcaption {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .p-detail_example__dl--figcaption {
    border-bottom: none;
  }
}
.p-detail_example__dl--figcaption:first-child {
  padding-top: 0;
}
.p-detail_example__dl--figcaption:last-child {
  border-bottom: none;
}
.p-detail_example__dt--figure {
  line-height: 18px;
  letter-spacing: 0.1em;
  text-align: left;
  padding: 5px 8px;
  color: white;
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Lato Semibold", Helvetica, Arial, Verdana, sans-serif;
}
.p-detail_example__dt--before {
  background-color: #FFF5EC;
  color: #fe7b07;
}
.p-detail_example__dt--after {
  background-color: #fe7b07;
}
.p-detail_example__dd--figure {
  display: flex;
}
.p-detail_example__dd--figcaption {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 640px) {
  .p-detail_example__dd--figcaption {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-detail_example__span--figcaption {
  display: block;
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: left;
  background: #f6f6f6;
  padding: 5px 8px;
}
@media screen and (max-width: 640px) {
  .p-detail_example__span--figcaption {
    width: 100%;
    padding-left: 10px;
    margin-bottom: 10px;
    text-align: left;
  }
}
.p-detail_example__nav {
  position: relative;
  margin-top: 5px;
  margin-left: 5px;
}
@media screen and (max-width: 640px) {
  .p-detail_example__nav {
    width: 19.2%;
  }
}
.p-detail_example__nav:hover:not(.active) {
  cursor: pointer;
}
.p-detail_example__nav:hover:not(.active) .p-detail_example__img--nav {
  opacity: 0.8;
}
.p-detail_example__nav:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.p-detail_example__nav.active:after {
  box-shadow: inset #fe7b07 0px 0px 0px 2px;
}
.p-detail_example__img--nav {
  transition: opacity 0.15s ease-out;
}
.p-detail_example .slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.p-detail_example .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.p-detail_example .slick-list:focus {
  outline: none;
}
.p-detail_example .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.p-detail_example .slick-slider .slick-track,
.p-detail_example .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.p-detail_example .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.p-detail_example .slick-track:before,
.p-detail_example .slick-track:after {
  display: table;
  content: "";
}
.p-detail_example .slick-track:after {
  clear: both;
}
.p-detail_example .slick-loading .slick-track {
  visibility: hidden;
}
.p-detail_example .slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  padding: 0 1px;
}
.p-detail_example .slick-slide:hover {
  cursor: pointer;
}
.p-detail_example [dir=rtl] .slick-slide {
  float: right;
}
.p-detail_example .slick-slide img {
  display: block;
}
.p-detail_example .slick-slide.slick-loading img {
  display: none;
}
.p-detail_example .slick-slide.dragging img {
  pointer-events: none;
}
.p-detail_example .slick-initialized .slick-slide {
  display: block;
}
.p-detail_example .slick-loading .slick-slide {
  visibility: hidden;
}
.p-detail_example .slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.p-detail_example .slick-arrow.slick-hidden {
  display: none;
}

.p-estimate_request_accordion {
  display: block;
  width: 100%;
  line-height: 50px;
  text-align: left;
  cursor: pointer;
  background: #F4FBFF;
  position: relative;
  box-sizing: border-box;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-estimate_request_accordion__head {
  padding-left: 16px;
}
.p-estimate_request_accordion__head::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 13px;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 2px solid #C6C6C6;
  border-right: 2px solid #C6C6C6;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.p-estimate_request_accordion__content {
  background: #F5F5F5;
  line-height: 2.7;
  border-top: 0px;
  box-sizing: border-box;
  padding: 0 16px 5px;
  display: none;
  position: inherit;
  z-index: 2;
}
.p-estimate_request_accordion__list_item {
  margin-bottom: 24px;
}
.p-estimate_request_accordion__list_item em {
  font-weight: bold;
}
.p-estimate_request_accordion__list_item figure {
  width: 100%;
}
.p-estimate_request_accordion__image {
  object-fit: cover;
}

.p-estimate_request_attention {
  background: #F3FBFF;
  border-radius: 4px;
  padding: 1em;
}
.p-estimate_request_attention__title {
  font-size: 16px;
  font-weight: bold;
}
.p-estimate_request_attention__text {
  line-height: 1.7;
  font-size: 14px;
}
.p-estimate_request_attention__exclamation-circle {
  background: #000000;
  font-size: 16px;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  line-height: 25px;
  text-align: center;
  color: #FFFFFF;
}
.p-estimate_request_attention__exclamation-circle:before {
  content: "!";
}

.p-estimate_request_button {
  display: block;
  position: relative;
  font-weight: bold;
  padding: 15px 33px 12px;
  text-align: center;
  line-height: 1.5;
  font-size: 16px;
  font-size: 1rem;
  color: white;
  border-radius: 2px;
  background-color: #fe7b07;
  box-shadow: 0 3px 0 rgb(234.5542168675, 110.656626506, 0.9457831325);
}
.p-estimate_request_button:active, .p-estimate_request_button:focus, .p-estimate_request_button:hover, .p-estimate_request_button:visited {
  color: white;
}
.p-estimate_request_button:hover {
  transform: translateY(3px);
}
.p-estimate_request_button::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 13px;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 1px solid white;
  border-right: 1px solid white;
  transform: rotate(45deg);
}
@media screen and (max-width: 640px) {
  .p-estimate_request_button {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 1rem 1.3em 1rem 0.5em;
  }
}
.p-estimate_request_button__secondary {
  box-shadow: none;
  border: 3px solid #fe7b07 !important;
  color: #fe7b07;
  background-color: #ffffff;
}
.p-estimate_request_button__secondary::after {
  border-top: 1px solid #fe7b07;
  border-right: 1px solid #fe7b07;
}
.p-estimate_request_button__secondary:active, .p-estimate_request_button__secondary:focus, .p-estimate_request_button__secondary:hover, .p-estimate_request_button__secondary:visited {
  color: #fe7b07;
}
.p-estimate_request_button__balloon {
  position: relative;
  background: white;
  color: black;
  padding: 7px 15px;
  border-radius: 15px;
  margin-right: 15px;
}
@media screen and (max-width: 640px) {
  .p-estimate_request_button__balloon {
    margin-right: 5px;
  }
}
.p-estimate_request_button__balloon:after {
  content: "";
  border: 10px solid transparent;
  display: inline-block;
  position: absolute;
  border-left-color: white;
  top: 7px;
  right: -15px;
}
@media screen and (max-width: 640px) {
  .p-estimate_request_button__balloon:after {
    top: 5px;
    right: -14px;
  }
}
.p-estimate_request_button__strong {
  margin-top: 30px;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 640px) {
  .p-estimate_request_button__strong {
    font-weight: bold;
  }
}
.p-estimate_request_button__strong--strong {
  color: #e72f2f;
  vertical-align: -2px;
}
.p-estimate_request_button__icon {
  margin-right: 10px;
  padding: 5px;
  background: white;
  border-radius: 3px;
  color: #fe7b07;
  font-size: 20px;
  font-size: 1.25rem;
}
.p-estimate_request_button__arrow {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .p-estimate_request_button__arrow {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-estimate_request_button__arrow {
  position: relative;
  display: inline-block;
  margin: 0 0 7px;
  min-width: 120px;
  max-width: 100%;
  background: white;
  border-radius: 3px;
  padding: 5px 10px;
}
@media screen and (max-width: 640px) {
  .p-estimate_request_button__arrow {
    padding: 3px 6px;
  }
}
.p-estimate_request_button__arrow {
  color: #fe7b07;
}
.p-estimate_request_button__arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top: 5px solid #fff;
  border-bottom-width: 0;
}
.p-estimate_request_button__cta {
  font-size: 24px;
  font-size: 1.5rem;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 640px) {
  .p-estimate_request_button__cta {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.p-estimate_request_checkblock {
  margin-bottom: 4px;
}
.p-estimate_request_checkblock__title {
  font-weight: bold;
  text-align: center;
  position: relative;
  width: 150px;
  margin: auto;
  padding: 3px;
  background: #ffffff;
}
.p-estimate_request_checkblock__title::before {
  content: "";
  width: 24px;
  height: 0;
  position: absolute;
  border-bottom: 2px solid #000000;
  transform: rotate(45deg);
  left: 0;
  bottom: 15px;
}
.p-estimate_request_checkblock__title::after {
  content: "";
  width: 24px;
  height: 0;
  position: absolute;
  border-bottom: 2px solid #000000;
  transform: rotate(135deg);
  right: 0;
  bottom: 15px;
}
.p-estimate_request_checkblock__list {
  width: 100%;
  max-width: 600px;
  margin: -13px auto 20px;
  border: 3px solid #F7F5F2;
  padding: 30px 14px 24px;
  box-sizing: border-box;
}
.p-estimate_request_checkblock__item {
  padding-left: 30px;
  font-weight: bold;
  margin-bottom: 6px;
  background: url("/assets/img/menus/icon-check-ef3e4aa1.svg") left center no-repeat;
  background-size: 22px;
}
.p-estimate_request_checkblock__item em {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #ffee01));
  background: linear-gradient(transparent 60%, #ffee01 0%);
}

.p-estimate_request_comfirmation_items .p-estimate_request_comfirmation_item h3 {
  font-weight: 400;
  background-color: #F7F5F2;
  height: 36px;
  line-height: 36px;
  padding-left: 12px;
}
.p-estimate_request_comfirmation_items .p-estimate_request_comfirmation_item .comfirmation_content .price {
  font-weight: 700;
  font-size: 25px;
  text-align: right;
}
.p-estimate_request_comfirmation_items .p-estimate_request_comfirmation_item .comfirmation_content .price .tax-included {
  font-weight: 400;
  font-size: 10px;
}
.p-estimate_request_comfirmation_items .p-estimate_request_comfirmation_item .comfirmation_content .annotation {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}
.p-estimate_request_comfirmation_items .p-estimate_request_comfirmation_item .comfirmation_content .contact_imfomation dt {
  font-weight: 700;
  font-size: 13px;
}
.p-estimate_request_comfirmation_items .p-estimate_request_comfirmation_item .comfirmation_content .contact_imfomation dd {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 16px;
}
.p-estimate_request_comfirmation_items .p-estimate_request_comfirmation_item .comfirmation_content .image_list {
  display: flex;
  justify-content: space-between;
}
.p-estimate_request_comfirmation_items .p-estimate_request_comfirmation_item .comfirmation_content .image_list .image {
  flex: 1;
  margin-right: 8px;
}
.p-estimate_request_comfirmation_items .p-estimate_request_comfirmation_item .comfirmation_content .image_list .image:last-child {
  margin-right: 0px;
}
.p-estimate_request_comfirmation_items .p-estimate_request_comfirmation_item .precautions {
  margin: 30px 0;
}
.p-estimate_request_comfirmation_items .terms_of_service {
  display: flex;
  position: relative;
  margin: 1em 0;
  padding-left: 28px;
  color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  user-select: none;
}
.p-estimate_request_comfirmation_items .terms_of_service input {
  appearance: none;
  border: solid 2px #d4dae2;
  position: relative;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  vertical-align: -0.8rem;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin: 0.4rem;
  outline: none;
  border-radius: 10%;
}
.p-estimate_request_comfirmation_items .terms_of_service input:checked {
  background: #FE7B07;
  border-color: #FE7B07;
}
.p-estimate_request_comfirmation_items .terms_of_service input:checked:after {
  content: "";
  position: absolute;
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  left: 3px;
  top: 1px;
  width: 6px;
  height: 10px;
  transform: rotate(45deg);
}
.p-estimate_request_comfirmation_items .terms_of_service label {
  cursor: pointer;
}

.p-estimate_request--done .thanks_message-title {
  font-size: 27px;
  line-height: 150%;
  text-align: center;
}
.p-estimate_request--done .thanks_message-body {
  width: 494px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 640px) {
  .p-estimate_request--done .thanks_message-body {
    width: 327px;
  }
}

.p-estimate_request_example {
  width: 500px;
  margin: auto;
}
.p-estimate_request_example {
  width: 100%;
}
.p-estimate_request_example__list {
  width: 326px;
  margin: auto;
}
.p-estimate_request_example__item {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
}
.p-estimate_request_example__image_block {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.p-estimate_request_example__image_block::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 10px;
  border-color: transparent transparent transparent #000000;
  top: 50%;
  left: 50%;
  margin-left: -4px;
  margin-top: -7px;
}
.p-estimate_request_example__image {
  width: 153px;
  height: 153px;
  display: block;
  object-fit: cover;
  background: #fcfcfc;
}
.p-estimate_request_example__feature {
  border-radius: 4px;
  background: #F7F5F2;
  padding: 10px 12px;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  text-align: left;
  line-height: 1.6;
}
.p-estimate_request_example__feature dt {
  width: 5.5em;
}
.p-estimate_request_example__feature dd {
  width: calc(100% - 5.5em);
}

.p-estimate_request_eyecatch {
  position: relative;
  border-radius: 4px;
  padding: 15px 30px;
  text-align: center;
}
.p-estimate_request_eyecatch:before {
  content: "";
  border: 14px solid transparent;
  display: inline-block;
  position: absolute;
  top: 30px;
  left: -28px;
}
.p-estimate_request_eyecatch--white {
  background: white;
  border: 1px solid #ebebeb;
}
.p-estimate_request_eyecatch--white:before {
  border-right-color: #ebebeb;
}
.p-estimate_request_eyecatch--white:after {
  content: "";
  border: 12px solid transparent;
  border-right-color: white;
  position: absolute;
  top: 32px;
  left: -24px;
}
.p-estimate_request_eyecatch--blue {
  background: #f4fbff;
}
.p-estimate_request_eyecatch--blue:before {
  border-right-color: #f4fbff;
}
.p-estimate_request_eyecatch__text {
  font-weight: bold;
  font-size: 13px;
  font-size: 0.8125rem;
}
.p-estimate_request_eyecatch__text--strong {
  padding-right: 1px;
  font-weight: bold;
  color: #e72f2f;
  font-size: 22px;
  font-size: 1.375rem;
}
.p-estimate_request_eyecatch__btn {
  display: block;
  width: 40%;
  margin: 0 auto;
  background: white;
  transition: width 0.4s;
  font-weight: bold;
}
.p-estimate_request_eyecatch__btn:hover {
  width: 60%;
  background-color: white;
  color: #fe7b07;
}

.p-estimate_request_main {
  padding: 10px;
}
.p-estimate_request_main__image {
  display: block;
  margin: 0 auto;
  width: 500px;
  height: auto;
}
@media screen and (max-width: 640px) {
  .p-estimate_request_main__image {
    width: 100%;
  }
}
.p-estimate_request_main__block {
  position: relative;
  padding: 20px;
  margin: 0 auto;
  border: 2px solid #fe7b07;
  border-radius: 3px;
}
.p-estimate_request_main__ribbon {
  text-align: center;
  display: inline-block;
  position: relative;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
  font-size: 22px;
  background: #fe7b07;
  color: #FFF;
  font-weight: bold;
  box-sizing: border-box;
}
.p-estimate_request_main__ribbon:before, .p-estimate_request_main__ribbon:after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  z-index: 1;
}
.p-estimate_request_main__ribbon:before {
  top: 0;
  left: 0;
  border-width: 25px 0px 25px 15px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}
.p-estimate_request_main__ribbon:after {
  top: 0;
  right: 0;
  border-width: 25px 15px 25px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
.p-estimate_request_main__title {
  text-align: center;
  padding: 0 0 10px 0;
  line-height: 1.6;
  font-weight: bold;
  color: #000;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 640px) {
  .p-estimate_request_main__title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-estimate_request_main__subtitle {
  text-align: center;
  padding: 0 0 15px 0;
  font-weight: bold;
  line-height: 1.6;
  color: #000;
  border-bottom: 1px dotted #fe7b07;
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (max-width: 640px) {
  .p-estimate_request_main__subtitle {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-estimate_request_main__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
}
.p-estimate_request_main__text--sub {
  font-size: 14px;
  font-size: 0.875rem;
}
.p-estimate_request_main__circle {
  text-align: center;
  position: absolute;
  top: -20px;
  left: -20px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  background: #fe7b07;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 640px) {
  .p-estimate_request_main__circle {
    left: -5px;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}

.p-estimate_request_margin_block {
  margin-top: 24px;
}

.p-estimate_request_menu-images {
  width: 500px;
  overflow: hidden;
}
.p-estimate_request_menu-images__catch {
  position: absolute;
  top: 1px;
  padding: 10px 0;
  width: 100vw;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
}
.p-estimate_request_menu-images__badge {
  position: absolute;
  bottom: 3em;
  right: 1em;
  padding: 22px 10px 0;
  border-radius: 50px;
  width: 80px;
  height: 80px;
  font-size: 15px;
  line-height: 1.3;
  box-sizing: border-box;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  background-color: rgba(233, 118, 18, 0.7490196078);
  color: #fff;
}
.p-estimate_request_menu-images__badge em {
  color: #c71010;
  font-size: 21px;
}

@media screen and (max-width: 640px) {
  .p-estimate_request_menu-images {
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    margin: 0 auto;
  }
  .p-estimate_request_menu-images .p-estimate_request_menu-images__main {
    height: 80vw;
  }
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: left;
  align-items: center;
}

.swiper-slide img {
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  height: 80%;
  width: 100%;
}

.mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-thumbnails {
  width: 100%;
  margin: 10px 10px 0;
}

.swiper-thumbnails .swiper-wrapper {
  flex-wrap: wrap;
  width: 100%;
  transform: unset !important;
}

.swiper-thumbnails .swiper-slide {
  width: calc((100vw - 60px) / 5) !important;
  height: calc((100vw - 60px) / 5);
  margin-bottom: 10px;
}

@media screen and (max-width: 640px) {
  .p-estimate_request_menu-images .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: unset;
    top: 56.5%;
  }
  .p-estimate_request_menu-images .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.4;
  }
  .p-estimate_request_menu-images .swiper-pagination-bullet-active {
    opacity: 1;
  }
}
.p-estimate_request_menu {
  width: 100%;
}

@media screen and (max-width: 640px) {
  .estimate_request_menu {
    width: 100%;
    overflow: hidden;
  }
}
.p-estimate_request_menu__items {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
  .p-estimate_request_menu__items {
    flex-wrap: nowrap;
  }
}

.p-estimate_request_menu__wrap {
  width: 33%;
  flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
  .p-estimate_request_menu__wrap {
    width: 100%;
  }
}

.p-estimate_request_menu__item {
  width: 154px;
  text-align: left;
  box-sizing: border-box;
  padding: 16px;
  border-radius: 3px;
  margin-right: 12px;
  margin-bottom: 14px;
  font-size: 16px;
  font-size: 1rem;
  min-height: 84px;
  border: 2px solid #C6C6C6;
}
.p-estimate_request_menu__item.is-current {
  background: #F7F5F2;
  border: 2px solid #fe7b07;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .p-estimate_request_menu__item {
    width: 144px;
  }
}

@media screen and (max-width: 640px) {
  .p-estimate_request_old_button .c-btn__balloon {
    top: -27px;
    right: -14px;
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 0;
  }
}
.p-estimate_request_old_button__btn {
  display: block;
  margin: 32px auto;
  border-color: #fe7b07;
  color: #fe7b07;
  background: white;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 640px) {
  .p-estimate_request_old_button__btn {
    font-size: 15px;
    font-size: 0.9375rem;
    width: 100%;
    height: 62px;
    margin-bottom: 30px;
    padding: 0;
    line-height: 64px;
  }
}
.p-estimate_request_old_button__btn > .strong {
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .p-estimate_request_old_button__btn > .strong {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-estimate_request_old_button__btn:visited {
  color: #fe7b07;
}
.p-estimate_request_old_button__btn:hover {
  color: white;
  background: #fe7b07;
}
.p-estimate_request_old_button__btn:hover .c-btn__balloon {
  background: white;
  color: #fe7b07;
}
.p-estimate_request_old_button__btn:hover .c-btn__balloon::before {
  border-color: transparent white transparent transparent;
}
.p-estimate_request_old_button__btn .c-btn__balloon {
  background: #fe7b07;
}
.p-estimate_request_old_button__btn .c-btn__balloon::before {
  border-color: transparent #fe7b07 transparent transparent;
}

.p-example-figcaption {
  width: 612px;
}
@media screen and (max-width: 640px) {
  .p-example-figcaption {
    width: auto;
  }
}
@media screen and (max-width: 640px) {
  .p-example-figcaption__title {
    line-height: 1.32;
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-example-figcaption__title--price {
  letter-spacing: 0.025em;
  color: #554e48;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 640px) {
  .p-example-figcaption__title--price {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-example-figcaption__sub {
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .p-example-figcaption__sub {
    overflow: visible;
  }
}
.p-example-figcaption__spec--examples {
  border: 1px solid #dfddd9;
  background-color: #faf9f7;
  box-shadow: inset #f0ede8 0px 0px 0px 3px;
}
.p-example-figcaption__dl {
  border-bottom: 1px solid #e6e3e0;
}
.p-example-figcaption__dl:last-child {
  border-bottom: 0;
}
.p-example-figcaption__dt {
  color: #554e48;
}
.p-example-figcaption__li:last-child {
  margin-bottom: 0;
}
.p-example-figcaption__li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  border-width: 4px 5px;
  border-style: solid;
  border-color: transparent;
  border-left-color: #817c78;
}
.p-example-figcaption__price--examples {
  border-top: 1px solid #e6e3e0;
}
.p-example-figcaption__desc {
  line-height: 1.5384615385;
  color: #666;
  letter-spacing: 0.025em;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 640px) {
  .p-example-figcaption__desc {
    line-height: 1.3;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-example-figcaption__desc--attention {
  color: #554e48;
}
.p-example-figcaption__desc--asterisk:first-child {
  margin-top: 10px;
}
.p-example-figcaption__desc--asterisk:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.p-example-figure {
  width: 380px;
}
@media screen and (max-width: 640px) {
  .p-example-figure {
    width: 100%;
    max-width: 100%;
  }
}
.p-example-figure--dealers {
  float: left;
}
@media screen and (max-width: 640px) {
  .p-example-figure--dealers {
    float: none;
    width: 80%;
    max-width: 80%;
  }
}
.p-example-figure__block {
  display: flex;
}
@media screen and (max-width: 640px) {
  .p-example-figure__dl--variant {
    text-align: right;
  }
}
.p-example-figure__dt {
  line-height: 18px;
  letter-spacing: 0.1em;
  font-family: "Lato Semibold", Helvetica, Arial, Verdana, sans-serif;
}
.p-example-figure__dt--before {
  background-color: #554e48;
}
.p-example-figure__dt--after {
  background-color: #fe7b07;
}
.p-example-figure__dd {
  display: flex;
}
.p-example-figure__dd--variant {
  font-family: "Lato Semibold", Helvetica, Arial, Verdana, sans-serif;
}
@media screen and (max-width: 640px) {
  .p-example-figure__nav {
    width: 19.2%;
  }
}
.p-example-figure__nav:hover:not(.active) {
  cursor: pointer;
}
.p-example-figure__nav:hover:not(.active) .p-example-figure__img {
  opacity: 0.8;
}
.p-example-figure__nav:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.p-example-figure__nav.active:after {
  box-shadow: inset #fe7b07 0px 0px 0px 2px;
}
.p-example-figure__img--nav {
  transition: opacity 0.15s ease-out;
}
.p-example-figure .slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.p-example-figure .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.p-example-figure .slick-list:focus {
  outline: none;
}
.p-example-figure .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.p-example-figure .slick-slider .slick-track,
.p-example-figure .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.p-example-figure .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.p-example-figure .slick-track:before,
.p-example-figure .slick-track:after {
  display: table;
  content: "";
}
.p-example-figure .slick-track:after {
  clear: both;
}
.p-example-figure .slick-loading .slick-track {
  visibility: hidden;
}
.p-example-figure .slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  padding: 0 1px;
}
.p-example-figure .slick-slide:hover {
  cursor: pointer;
}
.p-example-figure [dir=rtl] .slick-slide {
  float: right;
}
.p-example-figure .slick-slide img {
  display: block;
}
.p-example-figure .slick-slide.slick-loading img {
  display: none;
}
.p-example-figure .slick-slide.dragging img {
  pointer-events: none;
}
.p-example-figure .slick-initialized .slick-slide {
  display: block;
}
.p-example-figure .slick-loading .slick-slide {
  visibility: hidden;
}
.p-example-figure .slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.p-example-figure .slick-arrow.slick-hidden {
  display: none;
}

.p-example_beforeafter {
  display: table;
}
@media screen and (max-width: 640px) {
  .p-example_beforeafter {
    display: block;
    width: 100%;
  }
}
.p-example_beforeafter__element {
  max-width: 100%;
  height: auto;
  position: relative;
}
@media screen and (max-width: 640px) {
  .p-example_beforeafter__element {
    width: 100%;
  }
}
.p-example_beforeafter__label {
  position: absolute;
  padding: 5px 10px;
  background-color: #000;
  color: #fff;
  opacity: 0.7;
  font-size: 12px;
  font-weight: bold;
}
.p-example_beforeafter__icon {
  display: table-cell;
  vertical-align: middle;
  width: 30px;
  height: 100%;
  padding: 0 10px;
}
@media screen and (max-width: 640px) {
  .p-example_beforeafter__icon {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 10px 0 20px 0;
    text-align: center;
  }
}
.p-example_beforeafter__icon_arrow {
  display: block;
  width: 15px;
  height: 15px;
  border-top: solid 6px #000;
  border-right: solid 6px #000;
  transform: rotate(45deg);
}
@media screen and (max-width: 640px) {
  .p-example_beforeafter__icon_arrow {
    border-top: 0;
    border-bottom: 4px solid #000;
    border-right: 4px solid #000;
    transform: rotate(45deg);
  }
}

.p-example_card--new .p-example_card__block--image {
  position: relative;
}
.p-example_card--new .p-example_card__block--image:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 30px solid transparent;
  border-left: 30px solid #fe7b07;
  z-index: 2;
}
.p-example_card--new .p-example_card__block--image:after {
  content: "NEW";
  position: absolute;
  top: -1px;
  left: -1px;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: bold;
  color: white;
  z-index: 3;
  transform: rotate(-45deg);
}
.p-example_card__link:hover .p-example_card__title {
  color: #0467cc;
}
.p-example_card__link:hover .p-example_card__image {
  transform: scale(1.05);
  transition-duration: 0.25s;
}
.p-example_card__block {
  position: relative;
}
.p-example_card__block--image {
  overflow: hidden;
  padding-top: 73.148%;
}
@media screen and (max-width: 640px) {
  .p-example_card__block--image {
    padding-top: 75.308%;
  }
}
.p-example_card__block--badge {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-example_card__image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.p-example_card__badge {
  line-height: 12px;
  padding: 3px 10px;
  font-size: 12px;
  font-size: 0.75rem;
}
.p-example_card__badge--house {
  color: #65cd25;
  border: 1px #65cd25 solid;
  border-radius: 2px;
}
.p-example_card__badge--shop {
  color: #56bdfa;
  border: 1px #56bdfa solid;
  border-radius: 2px;
}
.p-example_card__badge--mansion {
  color: #ff6b95;
  border: 1px #ff6b95 solid;
  border-radius: 2px;
}
.p-example_card__span {
  color: #6e6e6e;
  font-size: 12px;
  font-size: 0.75rem;
}
.p-example_card__title {
  line-height: 21px;
  font-weight: bold;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (max-width: 640px) {
  .p-example_card__title {
    line-height: 17px;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-example_card__price {
  line-height: 21px;
}

.p-example_list {
  border-bottom: 1px #ebebeb solid;
}
.p-example_list:last-child {
  border-bottom: none;
}
.p-example_list__link {
  display: flex;
  padding: 8px;
}
.p-example_list__block--image {
  height: 78px;
  overflow: hidden;
  flex: 1;
}
.p-example_list__block--description {
  flex: 2;
  padding-left: 10px;
}
.p-example_list__title {
  line-height: 19px;
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-example_list__price {
  font-size: 20px;
  font-size: 1.25rem;
}

.p-expense_tables__title {
  padding: 10px;
  background: rgba(234, 231, 222, 0.4);
  border: 1px solid #dedede;
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 640px) {
  .p-expense_tables__title {
    padding: 10px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-expense_tables__cell {
  padding: 10px;
}
@media screen and (max-width: 640px) {
  .p-expense_tables__cell {
    padding: 10px 5px;
  }
}
@media screen and (max-width: 640px) {
  .p-expense_tables__cell--vertical {
    padding: 0 4px 0 0;
  }
}
.p-expense_tables__dl {
  display: flex;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-style: solid;
  border-color: #dedede;
}
.p-expense_tables__dl--cell {
  border-right: 0;
  align-items: normal;
}
.p-expense_tables__dl--cell:last-child {
  border-bottom: 0;
}
@media screen and (max-width: 640px) {
  .p-expense_tables__dl--cell {
    border-left: 0;
  }
}
.p-expense_tables__dt {
  flex-basis: 70%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .p-expense_tables__dt {
    flex-basis: 55%;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-expense_tables__dt--short {
  flex-basis: 40%;
}
@media screen and (max-width: 640px) {
  .p-expense_tables__dt--short {
    writing-mode: vertical-rl;
    flex-basis: 10%;
  }
}
.p-expense_tables__dt--half {
  text-align: left;
  flex-basis: 50%;
}
.p-expense_tables__dd {
  flex-basis: 30%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}
@media screen and (max-width: 640px) {
  .p-expense_tables__dd {
    flex-basis: 45%;
    border-left: 1px solid #dedede;
  }
}
.p-expense_tables__dd--border {
  border-left: 1px solid #dedede;
  box-sizing: border-box;
}
.p-expense_tables__dd--long {
  flex-basis: 60%;
}
@media screen and (max-width: 640px) {
  .p-expense_tables__dd--long {
    flex-basis: 90%;
  }
}
.p-expense_tables__dd--half {
  flex-basis: 50%;
  box-sizing: initial;
}
.p-expense_tables__dd--cell {
  display: block;
}
.p-expense_tables__text {
  display: inline-block;
}
.p-expense_tables__text--price {
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 27px;
  color: #fe7b07;
  font-size: 27px;
  font-size: 1.6875rem;
}
@media screen and (max-width: 640px) {
  .p-expense_tables__text--price {
    letter-spacing: 1px;
    line-height: 22px;
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.p-expense_tables__text--small {
  display: inline-block;
  padding-left: 10px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .p-expense_tables__text--small {
    padding: 0;
    letter-spacing: -0.25px;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-expense_tables__text--note {
  float: right;
}

.p-expenses_block__bg {
  position: relative;
  font-weight: bold;
  font-size: 20px;
  padding: 1rem 1.6rem;
  overflow: hidden;
  background-color: #f7f5f2;
}
.p-expenses_block__bgicon {
  position: absolute;
  top: -47px;
  right: 20px;
  width: 60px;
  opacity: 0.05;
}
.p-expenses_block__title {
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
}
.p-expenses_block__title--bold {
  font-size: 20px;
  font-weight: 700;
}

.p-expenses_link_block {
  box-sizing: border-box;
  border: 1px solid black;
  border-style: dotted;
  border-radius: 3px;
  height: 100%;
}
.p-expenses_link_block__inner {
  padding: 20px;
}
.p-expenses_link_block__title {
  margin-bottom: 10px;
  color: #4c4c4c;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
}
.p-expenses_link_block__title a {
  color: #4c4c4c;
}

.p-expenses_link_list {
  position: relative;
  display: block;
  padding: 4px 0 4px 12px;
  color: #4c4c4c;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-expenses_link_list:before {
  content: url("/assets/img/icons/arrow_solid_left-a1bd0a64.svg");
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 6px;
  height: 14px;
}
.p-expenses_link_list:hover {
  color: #0467cc;
}
@media screen and (max-width: 640px) {
  .p-expenses_link_list {
    padding: 6px 0 6px 12px;
    margin-bottom: 1rem;
  }
  .p-expenses_link_list:before {
    top: 5px;
  }
}

.p-eyecatch {
  padding: 15px 0;
  min-width: 1032px;
}
@media screen and (max-width: 640px) {
  .p-eyecatch {
    min-width: 100%;
    padding-right: 10px;
    padding-left: 10px;
  }
}
.p-eyecatch--blue {
  background: #f4fbff;
}
@media screen and (max-width: 640px) {
  .p-eyecatch--blue {
    height: initial;
  }
}
.p-eyecatch--nabe {
  max-width: 100%;
  background: url("/assets/img/page/watanabe_header_pc-549ae768.png") center center/contain no-repeat;
  margin: 0 auto;
  min-height: 307px;
}
@media screen and (max-width: 640px) {
  .p-eyecatch--nabe {
    width: 100%;
    height: 0;
    padding-top: 100%;
    background: url("/assets/img/page/watanabe_header_sp-a5505fb5.png") center center/cover no-repeat;
  }
}
.p-eyecatch__content {
  position: relative;
  display: flex;
}
.p-eyecatch__content--nabe {
  min-height: 277px;
  display: block;
}
.p-eyecatch__block--image {
  width: 160px;
}
.p-eyecatch__image {
  width: 100%;
  height: 100px;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.p-eyecatch__thumbnail {
  width: 267px;
}
@media screen and (max-width: 640px) {
  .p-eyecatch__thumbnail {
    display: none;
  }
}
.p-eyecatch__thum-img {
  width: 100%;
  height: 154px;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
@media screen and (max-width: 640px) {
  .p-eyecatch__thum-img {
    height: 254px;
  }
}
.p-eyecatch__title {
  font-weight: bold;
  line-height: 1.3;
}
.p-eyecatch__title--main {
  margin: 10px 0 5px;
  color: #000000;
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (max-width: 640px) {
  .p-eyecatch__title--main {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
.p-eyecatch__title--sub {
  color: #6e6e6e;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 640px) {
  .p-eyecatch__title--sub {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-eyecatch__title--price {
  color: #e72f2f;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 640px) {
  .p-eyecatch__title--price {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
.p-eyecatch__title--editor {
  font-size: 12px;
  font-size: 0.75rem;
  color: #6e6e6e;
  padding-left: 15px;
  background: url("/assets/img/icons/avatar-7f7b3c08.svg") no-repeat left 2px;
}
@media screen and (max-width: 640px) {
  .p-eyecatch__title--editor {
    margin-left: -55px;
  }
}
.p-eyecatch__title--nabe {
  position: absolute;
  top: 48%;
  left: 45%;
  width: 400px;
  font-size: 30px;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .p-eyecatch__title--nabe {
    top: -34%;
    left: 0%;
    width: 100%;
    height: auto;
    font-size: 5vw;
  }
}
.p-eyecatch__line-break {
  display: none;
}
@media screen and (max-width: 640px) {
  .p-eyecatch__line-break {
    display: inherit;
  }
}
.p-eyecatch__textbox {
  margin-left: 20px;
}
@media screen and (max-width: 640px) {
  .p-eyecatch__textbox {
    margin-left: 0;
  }
}
.p-eyecatch__text {
  color: #6e6e6e;
  font-size: 12px;
  font-size: 0.75rem;
}
.p-eyecatch__text--description {
  padding: 10px 0 0;
  line-height: 17px;
}
.p-eyecatch__text--date {
  line-height: 12px;
  vertical-align: top;
}
.p-eyecatch__text--compnay {
  display: inline;
  color: #000000;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
  line-height: 1;
}
.p-eyecatch__text--name {
  padding: 0 0.5em;
}
.p-eyecatch__text--name > a {
  color: #0467cc;
}
.p-eyecatch__text--name > a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 640px) {
  .p-eyecatch__text--name {
    display: block;
    padding: 0;
  }
}
.p-eyecatch__text--profile {
  display: inline-block;
  border-left: 2px solid #b2b2b2;
  padding-left: 10px;
  margin-left: 10px;
  line-height: 1.4;
}
@media screen and (max-width: 640px) {
  .p-eyecatch__text--profile {
    border: none;
    padding-left: 0;
    margin-left: 0;
  }
}
.p-eyecatch__text--area {
  width: 450px;
  padding-top: 30px;
}
@media screen and (max-width: 640px) {
  .p-eyecatch__text--area {
    width: 50%;
    padding-top: 18px;
  }
}
.p-eyecatch__block {
  display: flex;
  align-items: center;
}
.p-eyecatch__badge {
  font-weight: bold;
  padding: 5px;
  border-radius: 2px;
  background: #f6f6f6;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-eyecatch__border-box {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #b2b2b2;
  border-radius: 4px;
  background-color: #ffffff;
  margin: 15px 0 10px;
  padding: 10px;
}
.p-eyecatch__border-box-image {
  width: 45px;
  height: 45px;
  margin-right: 10px;
}
.p-eyecatch__border-box-image > img {
  width: 100%;
  height: 45px;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
@media screen and (max-width: 640px) {
  .p-eyecatch__border-box-image {
    margin-top: 1.3em;
  }
}
.p-eyecatch__list {
  justify-content: flex-end;
  margin: 0;
}
@media screen and (max-width: 640px) {
  .p-eyecatch__list {
    justify-content: space-around;
  }
}
.p-eyecatch__list-item {
  margin-left: 10px;
}
@media screen and (max-width: 640px) {
  .p-eyecatch__list-item {
    margin-left: 0;
  }
}
@media screen and (max-width: 640px) {
  .p-eyecatch__tag {
    width: 65%;
  }
}
.p-eyecatch__tag-item {
  display: inline-block;
  border-radius: 12px;
  border: 1px dotted #fe7b07;
  background: white;
  margin: 5px 5px 0 0;
  padding: 0 20px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
}
.p-eyecatch--bg {
  position: relative;
  padding: 0;
}
.p-eyecatch__area {
  height: 229px;
  padding-top: 25px;
  background-position: 100% 0;
  background-repeat: no-repeat;
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area {
    height: 255px;
    padding: 15px 10px 0;
  }
}
.p-eyecatch__area--prefecture-1 {
  background-image: url("/assets/img/prefecture/pc/1-aafa3836.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-1 {
    background-image: url("/assets/img/prefecture/sp/1-6bbb32f6.png");
  }
}
.p-eyecatch__area--prefecture-2 {
  background-image: url("/assets/img/prefecture/pc/2-e959d318.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-2 {
    background-image: url("/assets/img/prefecture/sp/2-fa1139e6.png");
  }
}
.p-eyecatch__area--prefecture-3 {
  background-image: url("/assets/img/prefecture/pc/3-f3750843.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-3 {
    background-image: url("/assets/img/prefecture/sp/3-cd045ab2.png");
  }
}
.p-eyecatch__area--prefecture-4 {
  background-image: url("/assets/img/prefecture/pc/4-9db1ef7b.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-4 {
    background-image: url("/assets/img/prefecture/sp/4-0cc07eb2.png");
  }
}
.p-eyecatch__area--prefecture-5 {
  background-image: url("/assets/img/prefecture/pc/5-ffdb13f5.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-5 {
    background-image: url("/assets/img/prefecture/sp/5-68350e23.png");
  }
}
.p-eyecatch__area--prefecture-6 {
  background-image: url("/assets/img/prefecture/pc/6-5f32e7e8.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-6 {
    background-image: url("/assets/img/prefecture/sp/6-cde0a444.png");
  }
}
.p-eyecatch__area--prefecture-7 {
  background-image: url("/assets/img/prefecture/pc/7-2b4ca062.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-7 {
    background-image: url("/assets/img/prefecture/sp/7-ed339291.png");
  }
}
.p-eyecatch__area--prefecture-8 {
  background-image: url("/assets/img/prefecture/pc/8-a06cefd8.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-8 {
    background-image: url("/assets/img/prefecture/sp/8-3d9b59cb.png");
  }
}
.p-eyecatch__area--prefecture-9 {
  background-image: url("/assets/img/prefecture/pc/9-4f8270ca.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-9 {
    background-image: url("/assets/img/prefecture/sp/9-305c5c96.png");
  }
}
.p-eyecatch__area--prefecture-10 {
  background-image: url("/assets/img/prefecture/pc/10-bfcd2a67.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-10 {
    background-image: url("/assets/img/prefecture/sp/10-7cd3e5cf.png");
  }
}
.p-eyecatch__area--prefecture-11 {
  background-image: url("/assets/img/prefecture/pc/11-da300e01.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-11 {
    background-image: url("/assets/img/prefecture/sp/11-4559e204.png");
  }
}
.p-eyecatch__area--prefecture-12 {
  background-image: url("/assets/img/prefecture/pc/12-fbe8b15a.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-12 {
    background-image: url("/assets/img/prefecture/sp/12-a647ac3d.png");
  }
}
.p-eyecatch__area--prefecture-13 {
  background-image: url("/assets/img/prefecture/pc/13-5ea97928.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-13 {
    background-image: url("/assets/img/prefecture/sp/13-eb0d75e0.png");
  }
}
.p-eyecatch__area--prefecture-14 {
  background-image: url("/assets/img/prefecture/pc/14-5e8075a6.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-14 {
    background-image: url("/assets/img/prefecture/sp/14-9534fe9f.png");
  }
}
.p-eyecatch__area--prefecture-15 {
  background-image: url("/assets/img/prefecture/pc/15-aa13143a.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-15 {
    background-image: url("/assets/img/prefecture/sp/15-4afdd658.png");
  }
}
.p-eyecatch__area--prefecture-16 {
  background-image: url("/assets/img/prefecture/pc/16-39abb218.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-16 {
    background-image: url("/assets/img/prefecture/sp/16-2a8b6b9e.png");
  }
}
.p-eyecatch__area--prefecture-17 {
  background-image: url("/assets/img/prefecture/pc/17-a96f3444.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-17 {
    background-image: url("/assets/img/prefecture/sp/17-dc67f7f6.png");
  }
}
.p-eyecatch__area--prefecture-18 {
  background-image: url("/assets/img/prefecture/pc/18-e4bd99f3.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-18 {
    background-image: url("/assets/img/prefecture/sp/18-536666e7.png");
  }
}
.p-eyecatch__area--prefecture-19 {
  background-image: url("/assets/img/prefecture/pc/19-e384cf33.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-19 {
    background-image: url("/assets/img/prefecture/sp/19-91b41abe.png");
  }
}
.p-eyecatch__area--prefecture-20 {
  background-image: url("/assets/img/prefecture/pc/20-499f816c.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-20 {
    background-image: url("/assets/img/prefecture/sp/20-7572309b.png");
  }
}
.p-eyecatch__area--prefecture-21 {
  background-image: url("/assets/img/prefecture/pc/21-373afe79.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-21 {
    background-image: url("/assets/img/prefecture/sp/21-94a87476.png");
  }
}
.p-eyecatch__area--prefecture-22 {
  background-image: url("/assets/img/prefecture/pc/22-1a16b155.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-22 {
    background-image: url("/assets/img/prefecture/sp/22-f0d7dd4f.png");
  }
}
.p-eyecatch__area--prefecture-23 {
  background-image: url("/assets/img/prefecture/pc/23-9f3ccf46.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-23 {
    background-image: url("/assets/img/prefecture/sp/23-bde05bd1.png");
  }
}
.p-eyecatch__area--prefecture-24 {
  background-image: url("/assets/img/prefecture/pc/24-bcc63b93.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-24 {
    background-image: url("/assets/img/prefecture/sp/24-9ee49ff3.png");
  }
}
.p-eyecatch__area--prefecture-25 {
  background-image: url("/assets/img/prefecture/pc/25-f697d3d3.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-25 {
    background-image: url("/assets/img/prefecture/sp/25-970ac49d.png");
  }
}
.p-eyecatch__area--prefecture-26 {
  background-image: url("/assets/img/prefecture/pc/26-5a4e546b.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-26 {
    background-image: url("/assets/img/prefecture/sp/26-e1528736.png");
  }
}
.p-eyecatch__area--prefecture-27 {
  background-image: url("/assets/img/prefecture/pc/27-54e39ee5.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-27 {
    background-image: url("/assets/img/prefecture/sp/27-8593ba62.png");
  }
}
.p-eyecatch__area--prefecture-28 {
  background-image: url("/assets/img/prefecture/pc/28-6a7bdb6a.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-28 {
    background-image: url("/assets/img/prefecture/sp/28-f2a2a8a2.png");
  }
}
.p-eyecatch__area--prefecture-29 {
  background-image: url("/assets/img/prefecture/pc/29-8a3e2e63.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-29 {
    background-image: url("/assets/img/prefecture/sp/29-417f6508.png");
  }
}
.p-eyecatch__area--prefecture-30 {
  background-image: url("/assets/img/prefecture/pc/30-031cf8c1.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-30 {
    background-image: url("/assets/img/prefecture/sp/30-b523d3e7.png");
  }
}
.p-eyecatch__area--prefecture-31 {
  background-image: url("/assets/img/prefecture/pc/31-ed794c0b.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-31 {
    background-image: url("/assets/img/prefecture/sp/31-f0d0f5ab.png");
  }
}
.p-eyecatch__area--prefecture-32 {
  background-image: url("/assets/img/prefecture/pc/32-ae03e050.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-32 {
    background-image: url("/assets/img/prefecture/sp/32-4ffa6a52.png");
  }
}
.p-eyecatch__area--prefecture-33 {
  background-image: url("/assets/img/prefecture/pc/33-90de86aa.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-33 {
    background-image: url("/assets/img/prefecture/sp/33-fcd07353.png");
  }
}
.p-eyecatch__area--prefecture-34 {
  background-image: url("/assets/img/prefecture/pc/34-aa10c7d6.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-34 {
    background-image: url("/assets/img/prefecture/sp/34-b0ff737f.png");
  }
}
.p-eyecatch__area--prefecture-35 {
  background-image: url("/assets/img/prefecture/pc/35-6535a642.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-35 {
    background-image: url("/assets/img/prefecture/sp/35-4cd864d6.png");
  }
}
.p-eyecatch__area--prefecture-36 {
  background-image: url("/assets/img/prefecture/pc/36-99d635a4.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-36 {
    background-image: url("/assets/img/prefecture/sp/36-683ecb24.png");
  }
}
.p-eyecatch__area--prefecture-37 {
  background-image: url("/assets/img/prefecture/pc/37-4da34637.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-37 {
    background-image: url("/assets/img/prefecture/sp/37-824230ec.png");
  }
}
.p-eyecatch__area--prefecture-38 {
  background-image: url("/assets/img/prefecture/pc/38-dbfb0447.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-38 {
    background-image: url("/assets/img/prefecture/sp/38-45177af1.png");
  }
}
.p-eyecatch__area--prefecture-39 {
  background-image: url("/assets/img/prefecture/pc/39-6ea6a672.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-39 {
    background-image: url("/assets/img/prefecture/sp/39-df4deb82.png");
  }
}
.p-eyecatch__area--prefecture-40 {
  background-image: url("/assets/img/prefecture/pc/40-255a8dcf.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-40 {
    background-image: url("/assets/img/prefecture/sp/40-89460525.png");
  }
}
.p-eyecatch__area--prefecture-41 {
  background-image: url("/assets/img/prefecture/pc/41-6899dca1.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-41 {
    background-image: url("/assets/img/prefecture/sp/41-97f7883c.png");
  }
}
.p-eyecatch__area--prefecture-42 {
  background-image: url("/assets/img/prefecture/pc/42-16c43e5f.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-42 {
    background-image: url("/assets/img/prefecture/sp/42-94db4e6c.png");
  }
}
.p-eyecatch__area--prefecture-43 {
  background-image: url("/assets/img/prefecture/pc/43-e622f444.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-43 {
    background-image: url("/assets/img/prefecture/sp/43-94b429f4.png");
  }
}
.p-eyecatch__area--prefecture-44 {
  background-image: url("/assets/img/prefecture/pc/44-59428623.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-44 {
    background-image: url("/assets/img/prefecture/sp/44-3ae5c78e.png");
  }
}
.p-eyecatch__area--prefecture-45 {
  background-image: url("/assets/img/prefecture/pc/45-a91056cc.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-45 {
    background-image: url("/assets/img/prefecture/sp/45-4c64215c.png");
  }
}
.p-eyecatch__area--prefecture-46 {
  background-image: url("/assets/img/prefecture/pc/46-e12af34b.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-46 {
    background-image: url("/assets/img/prefecture/sp/46-8c5a5108.png");
  }
}
.p-eyecatch__area--prefecture-47 {
  background-image: url("/assets/img/prefecture/pc/47-112ffeb9.png");
}
@media screen and (max-width: 640px) {
  .p-eyecatch__area--prefecture-47 {
    background-image: url("/assets/img/prefecture/sp/47-2fa13b27.png");
  }
}

.p-feature__title {
  position: relative;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
  padding-top: 5px;
  padding-left: 90px;
  font-size: 23px;
  font-size: 1.4375rem;
}
@media screen and (max-width: 640px) {
  .p-feature__title {
    font-size: 18px;
    font-size: 1.125rem;
    padding-top: 0;
    padding-left: 60px;
  }
}
.p-feature__block {
  margin-bottom: 60px;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .p-feature__block {
    margin-bottom: 30px;
    overflow: auto;
  }
}
.p-feature__img {
  width: 300px;
}
@media screen and (max-width: 640px) {
  .p-feature__img {
    width: 100%;
  }
}
.p-feature__desc {
  letter-spacing: 0.025em;
  line-height: 1.75;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (max-width: 640px) {
  .p-feature__desc {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-find_pros_menu {
  display: none;
  width: 1016px;
  position: absolute;
  top: 70px;
  left: -348px;
  background: white;
  z-index: 99999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 640px) {
  .p-find_pros_menu {
    width: 300%;
    top: 65px;
    left: -33.1vw;
  }
}
.p-find_pros_menu--content-area {
  display: block;
  width: 820px;
  position: static;
  z-index: inherit;
  box-shadow: none;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .p-find_pros_menu--content-area {
    width: auto;
  }
}
@media screen and (max-width: 640px) {
  .p-find_pros_menu .is-none {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .p-find_pros_menu .is-active .p-find_pros_menu__area-name::after {
    transform: rotate(-45deg);
    top: 20px;
  }
}
@media screen and (max-width: 640px) {
  .p-find_pros_menu .is-active .is-none {
    display: block !important;
  }
}
.p-find_pros_menu__wrapper {
  margin: 16px auto 32px 100px;
}
@media screen and (max-width: 640px) {
  .p-find_pros_menu__wrapper {
    margin: 0;
    width: 100%;
  }
}
.p-find_pros_menu__title {
  position: relative;
  text-align: left;
  padding-left: 29px;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
}
.p-find_pros_menu__title::before {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
  vertical-align: middle;
  width: 16px;
  height: 10px;
  border-top: 2px solid #6e6e6e;
  border-right: 2px solid #6e6e6e;
  transform: rotate(135deg);
}
.p-find_pros_menu__inner {
  position: relative;
  background-image: url("/assets/img/common/map-453d3b60.png");
  width: 655px;
  height: 303px;
  margin-top: 17px;
}
@media screen and (max-width: 640px) {
  .p-find_pros_menu__inner {
    background-image: none;
    width: 100%;
    height: auto;
    margin-top: 0;
  }
}
.p-find_pros_menu__content {
  position: absolute;
}
@media screen and (max-width: 640px) {
  .p-find_pros_menu__content {
    position: static;
    display: flex;
    flex-wrap: wrap;
    background-color: #f6f6f6;
  }
}
.p-find_pros_menu #area1 {
  left: 626px;
  top: 0;
}
.p-find_pros_menu #area2 {
  left: 731px;
  top: 75px;
}
.p-find_pros_menu #area3 {
  left: 626px;
  top: 129px;
}
.p-find_pros_menu #area4 {
  left: 396px;
  top: 0;
}
.p-find_pros_menu #area5 {
  left: 291px;
  top: 27px;
}
.p-find_pros_menu #area6 {
  left: 186px;
  top: 54px;
}
.p-find_pros_menu #area7 {
  left: 105px;
  top: 210px;
}
.p-find_pros_menu #area8 {
  left: 0;
  top: 129px;
}
.p-find_pros_menu #area9 {
  left: 0;
  top: 27px;
}
.p-find_pros_menu .is-aichi {
  margin-top: 51px;
  margin-left: 120px;
}
@media screen and (max-width: 640px) {
  .p-find_pros_menu .is-aichi {
    margin: 0;
  }
}
.p-find_pros_menu .is-aichi + .p-find_pros_menu__item, .p-find_pros_menu .is-aichi + .p-find_pros_menu__item + .p-find_pros_menu__item, .p-find_pros_menu .is-aichi + .p-find_pros_menu__item + .p-find_pros_menu__item + .p-find_pros_menu__item {
  margin-left: 120px;
}
@media screen and (max-width: 640px) {
  .p-find_pros_menu .is-aichi + .p-find_pros_menu__item, .p-find_pros_menu .is-aichi + .p-find_pros_menu__item + .p-find_pros_menu__item, .p-find_pros_menu .is-aichi + .p-find_pros_menu__item + .p-find_pros_menu__item + .p-find_pros_menu__item {
    margin: 0;
  }
}
.p-find_pros_menu__item {
  margin-bottom: 3px;
}
.p-find_pros_menu__item > a {
  position: relative;
  display: block;
  width: 85px;
  background-color: #f6f6f6;
  border-radius: 3px;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
  cursor: pointer;
}
.p-find_pros_menu__item > a::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 13px;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fe7b07;
  border-right: 1px solid #fe7b07;
  transform: rotate(45deg);
}
@media screen and (max-width: 640px) {
  .p-find_pros_menu__item {
    width: 50%;
    margin: 0;
  }
  .p-find_pros_menu__item > a {
    box-sizing: border-box;
    width: 100%;
    background-color: white;
    border-radius: 0;
    border-top: 1px solid #f6f6f6;
    font-size: 14px;
    font-size: 0.875rem;
    padding: 15px 35px 13px;
  }
  .p-find_pros_menu__item > a::after {
    width: 10px;
    height: 10px;
  }
  .p-find_pros_menu__item:nth-child(odd) > a {
    border-right: 1px solid #f6f6f6;
  }
}
.p-find_pros_menu__area-name {
  display: none;
}
@media screen and (max-width: 640px) {
  .p-find_pros_menu__area-name {
    position: relative;
    display: block;
    padding: 10px 35px 8px;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
  }
  .p-find_pros_menu__area-name::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 15px;
    width: 24px;
    height: 24px;
    text-align: center;
    background: #f6f6f6;
    border-radius: 12px;
  }
  .p-find_pros_menu__area-name::after {
    content: "";
    position: absolute;
    top: 17px;
    right: 24px;
    vertical-align: middle;
    width: 5px;
    height: 5px;
    border-top: 1px solid #333333;
    border-right: 1px solid #333333;
    transform: rotate(135deg);
  }
}
@media screen and (max-width: 640px) {
  .p-find_pros_menu__list {
    position: relative;
    border-bottom: 1px solid #ebebeb;
    padding: 0;
    text-align: left;
  }
}

.p-fix_price-warnings {
  padding: 16px;
  background-color: #f7f5f2;
}
.p-fix_price-warnings h2 {
  text-align: center;
  font-weight: 700;
  line-height: 2rem;
  margin-bottom: 8px;
}
.p-fix_price-warnings img {
  float: left;
  margin-right: 10px;
  width: 98px;
}
.p-fix_price-warnings ul li::after {
  content: "";
  display: block;
  clear: both;
}
.p-fix_price-warnings ul li {
  line-height: 1.8rem;
  padding: 5px;
}
.p-fix_price-warnings ul li span .small {
  font-size: 0.8rem;
}
.p-fix_price-warnings ul li span::before {
  content: "・";
}

.p-fix_price-works__title {
  font-weight: 700;
  line-height: 1.7rem;
  width: 100%;
  font-size: 21px;
  font-size: 1.3125rem;
}
.p-fix_price-works__sub {
  color: #959494;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  width: calc(100% - 60px);
}
.p-fix_price-works img {
  width: 100%;
  margin-bottom: 8px;
}
.p-fix_price-works ol {
  list-style-type: decimal;
  margin-left: 1.3rem;
  line-height: 1.8rem;
}

.p-flowchart--gray {
  background: #f7f7f7;
}
.p-flowchart--gray .p-flowchart__step {
  line-height: 1.3;
  font-size: 16px;
  font-size: 1rem;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: none;
}
@media screen and (max-width: 640px) {
  .p-flowchart--gray .p-flowchart__step {
    width: 100%;
    height: auto;
    padding: 10px 0;
  }
}
.p-flowchart--gray .p-flowchart__step:before {
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left-color: transparent;
}
.p-flowchart--gray .p-flowchart__step:after {
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
}
@media screen and (max-width: 640px) {
  .p-flowchart--gray .p-flowchart__step:after {
    border-left-color: transparent;
  }
}
.p-flowchart--gray .p-flowchart__list-item {
  width: auto;
  background-color: transparent;
}
.p-flowchart--gray .p-flowchart__list-item:nth-child(-n+5) .p-flowchart__step {
  background-color: #ebe7e2;
  color: #000;
}
.p-flowchart--gray .p-flowchart__list-item:nth-child(-n+5) .p-flowchart__step:before {
  border-left-color: #ebe7e2;
}
@media screen and (max-width: 640px) {
  .p-flowchart--gray .p-flowchart__list-item:nth-child(-n+5) .p-flowchart__step:before {
    border-left-color: transparent;
  }
}
.p-flowchart--gray .p-flowchart__list-item:last-child .p-flowchart__step {
  background-color: #ebe7e2;
  color: #000;
}
.p-flowchart__list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .p-flowchart__list {
    width: auto;
    display: block;
  }
}
.p-flowchart__list-item {
  width: 246px;
  margin-left: 5px;
  background-color: white;
}
@media screen and (max-width: 640px) {
  .p-flowchart__list-item {
    margin-left: 0;
    margin-bottom: 5px;
    width: 100%;
    background-color: #fe7b07;
  }
}
@media screen and (max-width: 640px) {
  .p-flowchart__list-item > dl {
    display: flex;
    align-items: stretch;
    position: relative;
  }
}
.p-flowchart__list-item:nth-child(-n+5) .p-flowchart__step {
  background-color: #fe7b07;
}
.p-flowchart__list-item:nth-child(-n+5) .p-flowchart__step:before {
  border-left-color: #fe7b07;
}
@media screen and (max-width: 640px) {
  .p-flowchart__list-item:nth-child(-n+5) .p-flowchart__step:before {
    border-left-color: transparent;
  }
}
.p-flowchart__list-item:last-child .p-flowchart__step {
  background-color: #fe7b07;
}
.p-flowchart__list-item:last-child .p-flowchart__step:before {
  border-left-color: transparent;
}
@media screen and (max-width: 640px) {
  .p-flowchart__list-item:last-child .p-flowchart__step:before {
    border-left-color: transparent;
  }
}
.p-flowchart__list-item:last-child .p-flowchart__step:after {
  border-left-color: transparent;
}
@media screen and (max-width: 640px) {
  .p-flowchart__list-item:last-child .p-flowchart__step:after {
    border-left-color: transparent;
  }
}
.p-flowchart__list-item--gradation {
  background-color: rgb(254.921686747, 244.6626506024, 235.578313253);
}
@media screen and (max-width: 640px) {
  .p-flowchart__list-item--gradation {
    margin-left: 0;
    margin-bottom: 5px;
    width: 100%;
  }
  .p-flowchart__list-item--gradation:nth-child(1) {
    background-color: rgb(254.3072289157, 163.5542168675, 83.1927710843);
  }
  .p-flowchart__list-item--gradation:nth-child(2) {
    background-color: rgb(254.2048192771, 150.0361445783, 57.7951807229);
  }
  .p-flowchart__list-item--gradation:nth-child(3) {
    background-color: rgb(254.1024096386, 136.5180722892, 32.3975903614);
  }
  .p-flowchart__list-item--gradation:last-child {
    background-color: #fe7b07;
  }
}
@media screen and (max-width: 640px) {
  .p-flowchart__list-item--gradation > dl {
    display: flex;
    align-items: stretch;
    position: relative;
  }
}
.p-flowchart__list-item--gradation:nth-child(1) {
  margin-left: 0;
}
.p-flowchart__list-item--gradation:nth-child(1) .p-flowchart__step {
  background-color: rgb(254.3072289157, 163.5542168675, 83.1927710843);
}
.p-flowchart__list-item--gradation:nth-child(1) .p-flowchart__step:before {
  border-left-color: rgb(254.3072289157, 163.5542168675, 83.1927710843);
}
@media screen and (max-width: 640px) {
  .p-flowchart__list-item--gradation:nth-child(1) .p-flowchart__step:before {
    border-left-color: transparent;
    border-top-color: rgb(254.3072289157, 163.5542168675, 83.1927710843);
  }
}
.p-flowchart__list-item--gradation:nth-child(2) .p-flowchart__step {
  background-color: rgb(254.2048192771, 150.0361445783, 57.7951807229);
}
.p-flowchart__list-item--gradation:nth-child(2) .p-flowchart__step:before {
  border-left-color: rgb(254.2048192771, 150.0361445783, 57.7951807229);
}
@media screen and (max-width: 640px) {
  .p-flowchart__list-item--gradation:nth-child(2) .p-flowchart__step:before {
    border-left-color: transparent;
    border-top-color: rgb(254.2048192771, 150.0361445783, 57.7951807229);
  }
}
.p-flowchart__list-item--gradation:nth-child(3) .p-flowchart__step {
  background-color: rgb(254.1024096386, 136.5180722892, 32.3975903614);
}
.p-flowchart__list-item--gradation:nth-child(3) .p-flowchart__step:before {
  border-left-color: rgb(254.1024096386, 136.5180722892, 32.3975903614);
}
@media screen and (max-width: 640px) {
  .p-flowchart__list-item--gradation:nth-child(3) .p-flowchart__step:before {
    border-left-color: transparent;
    border-top-color: rgb(254.1024096386, 136.5180722892, 32.3975903614);
  }
}
.p-flowchart__list-item--gradation:last-child .p-flowchart__step {
  background-color: #fe7b07;
}
.p-flowchart__list-item--gradation:last-child .p-flowchart__step:before {
  border-left-color: transparent;
}
@media screen and (max-width: 640px) {
  .p-flowchart__list-item--gradation:last-child .p-flowchart__step:before {
    border-top-color: transparent;
  }
}
@media screen and (max-width: 640px) {
  .p-flowchart__list-figure {
    display: block;
    margin: 10px auto 30px;
    width: 50%;
    height: auto;
  }
}
.p-flowchart__step {
  position: relative;
  text-align: center;
  font-family: Helvetica;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 60px;
  height: 60px;
  color: white;
  border-bottom: 5px solid white;
}
@media screen and (max-width: 640px) {
  .p-flowchart__step {
    position: static;
  }
}
.p-flowchart__step:before {
  content: "";
  position: absolute;
  border-top: 30px solid transparent;
  border-right: 0;
  border-bottom: 30px solid transparent;
  border-left: 20px solid transparent;
  right: -20px;
  top: 0;
  z-index: 3;
}
@media screen and (max-width: 640px) {
  .p-flowchart__step:before {
    right: 0;
    top: auto;
    bottom: -12px;
    left: 0;
    width: 50px;
    box-sizing: border-box;
    border-top: 12px solid transparent;
    border-bottom: 0;
    border-right: 25px solid transparent;
    border-left: 25px solid transparent;
  }
}
.p-flowchart__step:after {
  content: "";
  position: absolute;
  border-top: 30px solid transparent;
  border-right: 0;
  border-bottom: 30px solid transparent;
  border-left: 20px solid white;
  right: -30px;
  top: 0;
  width: 5px;
  z-index: 2;
}
@media screen and (max-width: 640px) {
  .p-flowchart__step:after {
    right: 0;
    top: auto;
    left: 0;
    width: 50px;
    box-sizing: border-box;
    bottom: -17px;
    border-top: 12px solid white;
    border-bottom: 0;
    border-right: 25px solid transparent;
    border-left: 25px solid transparent;
  }
}
.p-flowchart__step span {
  font-size: 34px;
  font-size: 2.125rem;
}
@media screen and (max-width: 640px) {
  .p-flowchart__step {
    flex: 0 0 auto;
    width: 50px;
    height: auto;
    border: 0;
    align-self: center;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.3;
  }
  .p-flowchart__step span {
    display: block;
  }
}
.p-flowchart__content {
  line-height: 1.7;
  padding: 10px;
  background-color: white;
}
@media screen and (max-width: 640px) {
  .p-flowchart__content {
    flex: 1 1 auto;
  }
}
.p-flowchart__content--bg {
  background-color: rgb(254.921686747, 244.6626506024, 235.578313253);
  padding: 20px;
}
@media screen and (max-width: 640px) {
  .p-flowchart__content--bg {
    border-left: 5px solid white;
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 640px) {
  .p-flowchart__box {
    display: flex;
  }
}
.p-flowchart__text {
  font-size: 14px;
  font-size: 0.875rem;
}
.p-flowchart__text > b {
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .p-flowchart__text {
    padding-right: 10px;
  }
}
.p-flowchart__image--right {
  width: 100%;
  height: 160px;
  margin-top: 20px;
}
@media screen and (max-width: 640px) {
  .p-flowchart__image--right {
    margin: 0 0 0 auto;
    width: 90px;
    height: 70px;
  }
}
.p-flowchart__image--center {
  height: auto;
  margin: 10px auto 0;
  border-radius: 3px;
}
@media screen and (max-width: 640px) {
  .p-flowchart__image--center {
    width: 200px;
  }
}
.p-flowchart__title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 8px;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .p-flowchart__title {
    text-align: left;
  }
}
@media screen and (max-width: 640px) {
  .p-flowchart__title--center {
    font-size: 18px;
    font-size: 1.125rem;
    text-align: center;
  }
}
.p-flowchart__feature-list {
  display: flex;
  align-content: space-between;
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  .p-flowchart__feature-list {
    display: block;
  }
}
.p-flowchart__feature-list-item {
  box-sizing: border-box;
  width: 33.3333333333%;
  margin: 10px;
  padding: 20px;
  border: 4px solid #ebebeb;
}
@media screen and (max-width: 640px) {
  .p-flowchart__feature-list-item {
    width: 100%;
    margin: 10px 0 0;
  }
}
.p-flowchart__emphasis {
  display: block;
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #fe7b07;
}
.p-flowchart__icon {
  width: 100%;
  height: 90px;
  margin-bottom: 20px;
}

.p-footer_links__dt {
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 640px) {
  .p-footer_links__dt {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.p-footer_links__dd {
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 640px) {
  .p-footer_links__dd {
    font-size: 10px;
    font-size: 0.625rem;
    text-indent: 4px;
  }
  .p-footer_links__dd li:last-child {
    margin-bottom: 10px;
  }
}
.p-footer_links__link {
  color: #554e48;
  transition: color 0.15s ease-out, text-decoration 0.15s ease-out;
}
.p-footer_links__link:hover, .p-footer_links__link:active, .p-footer_links__link:focus {
  text-decoration: underline;
  color: #554e48;
}
.p-footer_links__link:visited {
  color: #554e48;
}

@media screen and (max-width: 640px) {
  .p-for-example {
    margin-bottom: 30px;
  }
}
.p-for-example__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 800px;
  margin: 30px auto 48px;
}
@media screen and (max-width: 640px) {
  .p-for-example__list {
    width: 100%;
    margin-bottom: 10px;
  }
}
.p-for-example__list-item {
  width: 380px;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .p-for-example__list-item {
    width: 100%;
  }
}
.p-for-example__list-item:nth-child(odd) .p-for-example__list-column {
  justify-content: unset;
}
.p-for-example__list-item:nth-child(odd) .p-for-example__list-icon {
  margin-right: 25px;
  width: 60px;
}
.p-for-example__list-column {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 85px;
  background: url("/assets/img/lp/example_bg-8ac6b9f2.png") 0 0 no-repeat;
  margin-bottom: 5px;
  padding: 15px 20px 0;
}
@media screen and (max-width: 640px) {
  .p-for-example__list-column {
    background-size: contain;
  }
}
.p-for-example__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}
.p-for-example__list-icon {
  display: inline-block;
  vertical-align: middle;
  width: 45px;
  height: 80px;
  fill: white;
}
.p-for-example__item-text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.57;
}
.p-for-example__lead {
  width: 800px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fe7b07;
}
@media screen and (max-width: 640px) {
  .p-for-example__lead {
    width: 100%;
  }
}
.p-for-example__column {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .p-for-example__column {
    display: block;
    width: 100%;
  }
}
.p-for-example__text-box {
  width: 360px;
  margin-left: 40px;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  .p-for-example__text-box {
    width: 100%;
    margin-left: 0;
    margin-top: 8px;
  }
}
.p-for-example__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .p-for-example__text {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-for-example__small {
  font-size: 12px;
  font-size: 0.75rem;
}

.p-form__attention {
  display: inline-block;
  margin-bottom: 20px;
  font-family: HiraKakuProN;
  color: #d2251c;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  padding-left: 5px;
  padding-right: 12px;
  padding-top: 15px;
}
@media screen and (max-width: 640px) {
  .p-form__attention {
    padding-left: 20px;
  }
}
.p-form__attention::before {
  position: absolute;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  top: 50%;
  left: -13px;
  background: url("/assets/img/estimate/icon_attention-c9fad6a6.png") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 640px) {
  .p-form__attention::before {
    left: 0;
  }
}
.p-form__table {
  display: table;
  table-layout: fixed;
  width: 800px;
  border: 1px solid #a3a3a3;
}
.p-form__table--auto {
  width: auto;
}
.p-form__table--100percent {
  width: 100%;
}
@media screen and (max-width: 640px) {
  .p-form__table {
    width: auto;
    display: block;
  }
}
.p-form__request {
  max-width: 430px;
  margin: 0 auto;
  border-radius: 3px;
  border: 3px solid #DBDBDB;
  text-align: center;
}
.p-form__request > dt {
  background-color: #FFE7D2;
  padding: 15px 0;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}
.p-form__request > dd {
  align-items: center;
  padding: 0 20px 20px 20px;
}
.p-form__time {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 5px;
}
.p-form__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  margin: 5px 0 25px 0;
}
@media screen and (max-width: 640px) {
  .p-form__text {
    text-align: start;
  }
}

.p-form_example {
  background-color: rgba(234, 231, 222, 0.4);
  border-radius: 4px;
  padding: 10px;
  font-size: 12px;
  font-size: 0.75rem;
}
.p-form_example__title {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: #fe7b07;
  padding: 0 5px;
  margin-bottom: 5px;
  display: inline-block;
}

.p-form_group {
  display: table-row;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.73;
  letter-spacing: 0.025em;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  background-color: rgba(234, 231, 222, 0.4);
  border: 1px solid #d8d8d8;
}
@media screen and (max-width: 640px) {
  .p-form_group {
    display: block;
    border: 0;
    width: auto;
  }
}
.p-form_group__dt {
  display: table-cell;
  width: 30%;
  padding: 14px 20px;
  vertical-align: middle;
  text-align: left;
  border-width: 1px 1px 1px 0;
  border-style: solid;
  border-color: #dedede;
}
.p-form_group__dt:first-of-type {
  border-top-width: 0;
}
.p-form_group__dt:last-of-type {
  border-top-width: 0;
}
@media screen and (max-width: 640px) {
  .p-form_group__dt {
    display: block;
    width: auto;
  }
}
.p-form_group__dd {
  display: table-cell;
  width: auto;
  vertical-align: top;
  padding: 14px 20px;
  background-color: #fff;
  border-width: 1px 0 1px 0;
  border-style: solid;
  border-color: #dedede;
  box-sizing: border-box;
  white-space: normal;
}
.p-form_group__dd:first-of-type {
  border-top-width: 0;
}
.p-form_group__dd:last-of-type {
  border-top-width: 0;
}
@media screen and (max-width: 640px) {
  .p-form_group__dd {
    display: block;
    margin-left: 0;
  }
}
.p-form_group__attention {
  font-family: HiraKakuProN;
  color: #d2251c;
  font-size: 11px;
  font-size: 0.6875rem;
  position: relative;
  padding-left: 5px;
  padding-top: 15px;
}
@media screen and (max-width: 640px) {
  .p-form_group__attention {
    padding-left: 20px;
  }
}
.p-form_group__attention::before {
  position: absolute;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  top: 50%;
  left: -13px;
  background: url("/assets/img/estimate/icon_attention-c9fad6a6.png") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 640px) {
  .p-form_group__attention::before {
    left: 0;
  }
}
.p-form_group__shop {
  font-size: 0;
  display: flex;
  align-items: center;
  border: 2px solid #EBEBEB;
}
@media screen and (max-width: 640px) {
  .p-form_group__shop {
    display: block;
  }
}
.p-form_group__shop--info {
  padding: 10px 20px;
}
@media screen and (max-width: 640px) {
  .p-form_group__shop--info {
    width: 90%;
  }
}
.p-form_group__shop_h4 {
  color: #000;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  padding-bottom: 10px;
}
.p-form_group__shop_dl {
  display: flex;
  align-items: center;
  padding-bottom: 5px;
}
.p-form_group__shop_dl:last-child {
  padding-bottom: 0;
}
.p-form_group__shop_dt {
  width: 25%;
  font-size: 14px;
  font-size: 0.875rem;
  color: #6e6e6e;
}
.p-form_group__shop_dd {
  font-size: 16px;
  font-size: 1rem;
  width: 75%;
  color: #000;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .p-form_group__shop_dd {
    word-break: break-all;
  }
}

.p-form_section {
  margin: 80px 0 50px;
  border-radius: 5px;
  background-color: white;
  border: 1px solid #b2b2b2;
}
@media screen and (max-width: 640px) {
  .p-form_section {
    margin-top: 50px;
  }
}
.p-form_section__header {
  background-color: #f7f5f2;
  padding: 18px 30px;
  border-bottom: 1px solid #b2b2b2;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.p-form_section__header-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: left;
  color: #fe7b07;
}
@media screen and (max-width: 640px) {
  .p-form_section__header-title {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-form_section__header-title--note {
  margin: 0 auto;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 640px) {
  .p-form_section__header-title--note {
    text-align: center;
  }
}
.p-form_section__type-list {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
@media screen and (max-width: 640px) {
  .p-form_section__type-list {
    flex-wrap: wrap;
    padding: 0 15px;
  }
}
.p-form_section__type-list-item {
  margin: 0 10px 10px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .p-form_section__type-list-item {
    width: 100%;
    margin: 0 0 10px;
  }
}
.p-form_section__type-list-label {
  position: relative;
  width: 220px;
  height: 220px;
  display: block;
  box-sizing: border-box;
  border-radius: 5px;
  border: 4px solid #ebebeb;
}
.p-form_section__type-list-item--selected .p-form_section__type-list-label {
  border-color: #fe7b07;
  color: #fe7b07;
}
@media screen and (max-width: 640px) {
  .p-form_section__type-list-label {
    width: auto;
    height: 80px;
  }
}
.p-form_section__type-list-radio {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  text-align: center;
}
.p-form_section__type-list-radio input {
  margin: 0;
}
@media screen and (max-width: 640px) {
  .p-form_section__type-list-radio {
    top: 0;
    bottom: 0;
    left: 20px;
    width: 24px;
    right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.p-form_section__type-list-text {
  position: absolute;
  top: 56px;
  right: 0;
  left: 0;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (max-width: 640px) {
  .p-form_section__type-list-text {
    left: 54px;
    top: 0;
    bottom: 0;
    text-align: left;
    display: flex;
    align-items: center;
  }
}
.p-form_section__type-list-img {
  position: absolute;
  bottom: 32px;
  right: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}
.p-form_section__type-list-img:before {
  content: "";
  background-repeat: no-repeat;
  background-position: 50% 100%;
  width: 69px;
  height: 60px;
}
.p-form_section__type-list-img--type1:before {
  background-image: url("/assets/img/estimate_requests/type1@3x-1a122ca1.png");
  background-size: 69px 55px;
}
.p-form_section__type-list-img--type2:before {
  background-image: url("/assets/img/estimate_requests/type2@3x-2dd38708.png");
  background-size: 60px 60px;
}
.p-form_section__type-list-img--type3:before {
  background-image: url("/assets/img/estimate_requests/type3@3x-fc9afcf7.png");
  background-size: 55px 55px;
}
@media screen and (max-width: 640px) {
  .p-form_section__type-list-img {
    right: 20px;
    top: 2px;
    bottom: 0;
    left: auto;
    display: flex;
    align-items: center;
  }
  .p-form_section__type-list-img:before {
    background-position: 50% 50%;
    transform: scale(0.9);
  }
}
.p-form_section__header-steps {
  margin-right: -10px;
}
.p-form_section__header-steps-inner {
  display: flex;
  float: right;
}
@media screen and (max-width: 640px) {
  .p-form_section__header-steps-inner {
    position: absolute;
    right: 0;
    left: 0;
    top: -58px;
  }
}
.p-form_section__header-step-item {
  flex: 1 1 auto;
  position: relative;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fe7b07;
  border: 1px solid #fe7b07;
  border-radius: 3px;
  padding: 6px;
  line-height: 1.3;
  padding: 6px 10px;
  margin: 0 0 0 28px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .p-form_section__header-step-item {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.p-form_section__header-step-item--current {
  color: white;
  background-color: #fe7b07;
}
.p-form_section__header-step-item br {
  display: none;
}
@media screen and (max-width: 640px) {
  .p-form_section__header-step-item br {
    display: inline;
  }
}
.p-form_section__header-step-item b {
  position: absolute;
  left: -18px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}
.p-form_section__header-step-item b:before {
  content: "";
  border-top: 7px solid transparent;
  border-right: 0;
  border-bottom: 7px solid transparent;
  border-left: 8px solid #fe7b07;
  width: 8px;
}
.p-form_section__header-step-item:first-child {
  margin-left: 0;
}
.p-form_section__header-step-item:first-child b:before {
  border: 0;
}
.p-form_section__category-list-groups {
  padding: 20px 30px 0;
}
@media screen and (max-width: 640px) {
  .p-form_section__category-list-groups {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-form_section__sub-title {
  border-radius: 5px;
  background-color: #ebebeb;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  padding: 5px 10px 5px 44px;
  text-indent: -40px;
  margin: 0 0 10px;
}
.p-form_section__sub-title:before {
  content: "";
  width: 35px;
  margin-right: 5px;
  display: inline-block;
  height: 20px;
  position: relative;
  top: -2px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.p-form_section__sub-title--icon1:before {
  background-image: url("/assets/img/estimate_requests/icon1@3x-a9ededd4.png");
  background-size: 20px 18px;
}
.p-form_section__sub-title--icon2:before {
  background-image: url("/assets/img/estimate_requests/icon2@3x-10c14512.png");
  background-size: 12px 18px;
}
.p-form_section__sub-title--icon3:before {
  background-image: url("/assets/img/estimate_requests/icon3@3x-9d0b80a4.png");
  background-size: 26px 13px;
}
.p-form_section__sub-title--icon4:before {
  background-image: url("/assets/img/estimate_requests/icon4@3x-83e83ed3.png");
  background-size: 20px 16px;
}
.p-form_section__sub-title--icon5:before {
  background-image: url("/assets/img/estimate_requests/icon5@3x-a8047fbf.png");
  background-size: 19px 18px;
}
.p-form_section__category-list {
  padding: 0 0 10px;
  margin: 0 0 0 -20px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
  .p-form_section__category-list {
    margin-left: -10px;
  }
}
.p-form_section__category-list-item {
  display: flex;
  width: 25%;
  justify-content: flex-start;
  align-items: stretch;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .p-form_section__category-list-item {
    width: 50%;
  }
}
.p-form_section__category-list-item label {
  border-radius: 5px;
  border: 4px solid #ebebeb;
  background-color: white;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 8px 10px 7px 30px;
  box-sizing: border-box;
  margin: 0 0 10px 20px;
  width: 100%;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.35;
}
@media screen and (max-width: 640px) {
  .p-form_section__category-list-item label {
    margin-left: 10px;
  }
}
.p-form_section__category-list-item label span {
  display: flex;
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  justify-content: center;
  align-items: center;
}
.p-form_section__category-list-item label span input {
  margin: 0;
}
.p-form_section__table {
  width: 100%;
  margin-bottom: -1px;
}
.p-form_section__thead {
  width: 28%;
  padding: 20px 30px;
  border-right: 1px solid #b2b2b2;
  border-bottom: 1px solid #b2b2b2;
  white-space: nowrap;
  vertical-align: top;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .p-form_section__thead {
    box-sizing: border-box;
    display: block;
    width: 100%;
    border: none;
    padding: 20px 15px 0;
  }
}
.p-form_section__thead-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .p-form_section__thead-box {
    display: block;
    text-align: left;
  }
}
.p-form_section__data {
  padding: 20px 30px;
  border-left: 1px solid #b2b2b2;
  border-bottom: 1px solid #b2b2b2;
}
@media screen and (max-width: 640px) {
  .p-form_section__data {
    box-sizing: border-box;
    display: block;
    width: 100%;
    border-left: none;
    padding: 20px 15px;
  }
}
.p-form_section__required {
  flex-shrink: 0;
  flex-basis: 25px;
  line-height: 1;
  margin-left: 10px;
  padding: 2px 0;
  font-size: 10px;
  font-size: 0.625rem;
  color: #e72f2f;
  border: 1px solid #e72f2f;
  border-radius: 2px;
}
.p-form_section__any {
  flex-shrink: 0;
  flex-basis: 25px;
  line-height: 1;
  margin-left: 10px;
  padding: 2px 0;
  font-size: 10px;
  font-size: 0.625rem;
  color: #b2b2b2;
  border: 1px solid #b2b2b2;
  border-radius: 2px;
}
.p-form_section__note {
  margin-top: 5px;
  white-space: pre-wrap;
  text-align: left;
  font-weight: normal;
  line-height: 1.5;
  font-size: 12px;
  font-size: 0.75rem;
}
.p-form_section__label {
  display: block;
  line-height: 1.7;
}
.p-form_section__label > span {
  padding-left: 5px;
}
.p-form_section__input {
  width: 40%;
}
@media screen and (max-width: 640px) {
  .p-form_section__input {
    width: 100%;
  }
}
.p-form_section__textarea {
  height: 165px;
}
.p-form_section__button {
  display: block;
  width: 500px;
  margin: 0 auto;
  line-height: 50px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
  border-radius: 2px;
}
.p-form_section__button:disabled {
  background-color: #dbdbdb;
  box-shadow: 0 3px 0 rgb(193.5, 193.5, 193.5);
}
@media screen and (max-width: 640px) {
  .p-form_section__button {
    width: 100%;
  }
}
.p-form_section__button-text {
  display: block;
  margin-top: -25px;
  font-size: 16px;
  font-size: 1rem;
}
.p-form_section__attention {
  color: #d2251c;
  font-size: 12px;
  font-size: 0.75rem;
  position: relative;
  margin-left: 15px;
  padding-left: 5px;
  padding-top: 5px;
}
@media screen and (max-width: 640px) {
  .p-form_section__attention {
    padding-left: 20px;
  }
}
.p-form_section__attention::before {
  position: absolute;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  top: calc(50% - 5px);
  left: -13px;
  background: url("/assets/img/estimate/icon_attention-c9fad6a6.png") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 640px) {
  .p-form_section__attention::before {
    left: 0;
  }
}

.field_with_errors .p-form_section__input {
  background-color: rgb(255, 223, 223);
  border-color: #e72f2f;
}

@media screen and (max-width: 640px) {
  .p-form_section-content {
    padding: 0;
  }
}

@media screen and (max-width: 640px) {
  .p-form_section-step-spacer {
    height: 10px;
  }
}

.p-gnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-gnav_btn {
  font-size: 16px;
  font-size: 1rem;
  background-color: #fe7b07;
  border-radius: 3px;
  box-sizing: border-box;
  color: white;
  display: inline-block;
  font-weight: bold;
  height: 52px;
  line-height: 50px;
  overflow: hidden;
  padding: 0 46px 0 33px;
  position: relative;
  text-align: center;
  width: auto;
  box-shadow: 0 3px 0 rgb(234.5542168675, 110.656626506, 0.9457831325);
}
.p-gnav_btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 13px;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 1px solid white;
  border-right: 1px solid white;
  transform: rotate(45deg);
}
.p-gnav_btn:visited, .p-gnav_btn:focus, .p-gnav_btn:active {
  color: white;
}
@media screen and (max-width: 640px) {
  .p-gnav_btn {
    width: auto;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 100;
    padding: 0 1.5rem;
  }
}
.p-gnav_btn:hover {
  box-shadow: none;
  transform: translateY(3px);
  color: white;
}
.p-gnav_btn__ribbon {
  position: absolute;
  top: 7px;
  left: -19px;
  padding: 2px 20px;
  color: #fe7b07;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1;
  background: #ffee01;
  transform: rotate(-45deg);
}

.p-gnav_item {
  position: relative;
  font-weight: bold;
  text-align: center;
  flex: 1;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (max-width: 640px) {
  .p-gnav_item {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-gnav_item:not(:first-child) {
  margin-left: 1px;
}
.p-gnav_item:not(:first-child)::before {
  content: "";
  width: 1px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: -1px;
  transform: translateY(-50%);
  background-color: #ebebeb;
}
@media screen and (max-width: 640px) {
  .p-gnav_item:not(:first-child)::before {
    height: 25px;
  }
}
.p-gnav_item.is-active {
  background: #fe7b07;
}
.p-gnav_item.is-active .p-gnav_item__link {
  color: white;
}
.p-gnav_item.is-active .p-gnav_item__link .p-gnav_item__svg {
  fill: white;
}
.p-gnav_item--information {
  margin-right: 15px;
}
@media screen and (max-width: 640px) {
  .p-gnav_item--information {
    margin-right: 0;
  }
}
.p-gnav_item__svg {
  height: 22px;
  width: 22px;
  margin-right: 10px;
  vertical-align: middle;
  fill: #6e6e6e;
  transition: all 0.3s ease;
}
.p-gnav_item__svg--pros {
  width: 26px;
}
@media screen and (max-width: 640px) {
  .p-gnav_item__svg {
    margin-right: 0;
  }
}
.p-gnav_item__link {
  display: block;
  height: 70px;
  line-height: 70px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 640px) {
  .p-gnav_item__link {
    height: 65px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    line-height: inherit;
  }
}
.p-gnav_item__link:hover {
  color: #fe7b07;
}
.p-gnav_item__link:hover .p-gnav_item__svg {
  fill: #fe7b07;
}

.p-greeting__sirura {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .p-greeting__sirura {
    display: inline;
  }
}
.p-greeting__sirura-image {
  width: 428px;
  margin-right: 20px;
}
@media screen and (max-width: 640px) {
  .p-greeting__sirura-image {
    width: 100%;
    margin: 0;
  }
}
.p-greeting__sirura-right {
  flex: 1;
  color: #000;
}
.p-greeting__sirura-title {
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 10px;
}
.p-greeting__sirura-title {
  padding: 10px 0;
}
.p-greeting__sirura-about {
  font-size: 14px;
  font-size: 0.875rem;
}
.p-greeting__about {
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .p-greeting__about {
    display: inline;
  }
}

.p-headline {
  display: flex;
  justify-content: space-between;
}
.p-headline__block {
  width: 207px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .p-headline__block {
    position: absolute;
    right: 30px;
  }
}
.p-headline__block--column {
  flex-direction: column;
}
.p-headline__tel {
  display: block;
  font-weight: bold;
  font-size: 24px;
  font-size: 1.5rem;
}
.p-headline__svg {
  width: 13px;
  height: 13px;
  margin-right: 5px;
  padding: 3px;
  border: 1px solid #000000;
  border-radius: 3px;
  vertical-align: bottom;
}
.p-headline__top {
  padding: 20px;
  display: flex;
  align-items: center;
}
.p-headline__top__logo {
  width: 60px;
  height: 60px;
  margin-right: 10px;
}
.p-headline__text {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .p-headline__text {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.p-headline__text--h1 {
  display: inline;
  color: #6e6e6e;
  margin-left: 3px;
  font-size: 12px;
  font-size: 0.75rem;
}
.p-headline__text--strong {
  margin-bottom: 0.2em;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .p-headline__text--strong {
    font-weight: normal;
    line-height: 1.5;
  }
}
.p-headline__text--time {
  display: block;
  font-weight: bold;
  margin-left: auto;
}
@media screen and (max-width: 640px) {
  .p-headline__text--time {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-headline__text--note {
  vertical-align: bottom;
  font-size: 11px;
  font-size: 0.6875rem;
}
.p-headline--small {
  display: block;
  width: calc(100% - 158px);
  background: #f4fbff;
  border-radius: 4px;
  padding: 8px 20px;
}
@media screen and (max-width: 640px) {
  .p-headline--small {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}
.p-headline__text-strong {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}
.p-headline__text-strong--colored {
  color: #fe7b07;
}
@media screen and (max-width: 640px) {
  .p-headline__text-block {
    display: block;
  }
}
.p-headline__text-em {
  font-weight: bold;
  color: #fe7b07;
}
.p-headline__text-em--uncolored {
  color: #000000;
}
.p-headline__icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: bottom;
  margin: 0 20px 0 5px;
}

.p-headnavi {
  display: flex;
}
.p-headnavi__tab {
  text-align: center;
  border-bottom: 2px #ebebeb solid;
  display: block;
  flex: 1;
  position: relative;
}
.p-headnavi__tab--disabled {
  color: #999999;
}
.p-headnavi__tab--active {
  color: #fe7b07;
  border-color: #fe7b07;
}
.p-headnavi__tab:not(:last-child)::before {
  content: "";
  width: 1px;
  height: 1.8em;
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  background-color: #ebebeb;
}
@media screen and (max-width: 640px) {
  .p-headnavi__tab:not(:last-child)::before {
    height: 1.5em;
  }
}
.p-headnavi__block {
  font-weight: bold;
  margin: 15px 0;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .p-headnavi__block {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-headnavi__badge {
  display: inline-block;
  color: #000000;
  padding: 2px 10px;
  border-radius: 14px;
  background: #f6f6f6;
}

.p-infoline {
  background-color: #000;
  color: #fff;
  padding: 16px 8px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .p-infoline {
    padding: 10px 5px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-infoline__container {
  width: 1032px;
  min-width: 1032px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .p-infoline__container {
    width: 100%;
    min-width: 100%;
  }
}
.p-infoline__link:link, .p-infoline__link:visited {
  color: #fff;
}
.p-infoline__link:hover, .p-infoline__link:focus, .p-infoline__link:active {
  color: #fff;
  text-decoration: underline;
}

.p-interview_content {
  padding-bottom: 15px;
}
.p-interview_content__title {
  font-size: 16px;
  font-size: 1rem;
  border-left: 6px solid #FC7B25;
  color: #000;
  font-weight: bold;
  line-height: 2;
  margin: 20px 0;
  padding: 10px 15px;
}
@media screen and (max-width: 640px) {
  .p-interview_content__title {
    line-height: 1.6;
  }
}
.p-interview_content__img {
  border: 1px solid #d2d0ce;
  border-radius: 4px;
}

.p-interview_header__title {
  margin: 10px 0 5px;
  color: #000;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}
.p-interview_header__sep {
  display: none;
}
.p-interview_header__company {
  margin: 0;
  padding: 0 0 10px 0;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  border-bottom: 1px solid #EBEBEB;
}
.p-interview_header__additional {
  padding-top: 10px;
}
.p-interview_header__additional::after {
  content: "";
  display: block;
  clear: both;
}
.p-interview_header__date {
  float: left;
  font-size: 14px;
  font-size: 0.875rem;
  color: #333333;
}
.p-interview_header__sns {
  float: right;
}
.p-interview_header__sns-button {
  display: flex;
  width: 100%;
  align-items: center;
  display: -webkit-box;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.p-interview_header__sns-button a {
  padding-left: 5px;
}

.p-interview_profile {
  display: table;
}
@media screen and (max-width: 640px) {
  .p-interview_profile {
    display: block;
  }
}
.p-interview_profile__pic {
  display: table-cell;
  vertical-align: middle;
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 640px) {
  .p-interview_profile__pic {
    display: block;
    margin: 0 auto;
  }
}
.p-interview_profile__pic-img {
  border-radius: 50%;
}
.p-interview_profile__info {
  display: table-cell;
  vertical-align: middle;
  padding-left: 20px;
}
@media screen and (max-width: 640px) {
  .p-interview_profile__info {
    display: block;
    padding: 0;
  }
}
.p-interview_profile__info-name {
  margin: 0;
  padding: 0 0 10px 0;
}
@media screen and (max-width: 640px) {
  .p-interview_profile__info-name {
    text-align: center;
  }
}
.p-interview_profile__info-name-title1 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  margin-right: 5px;
  color: #6e6e6e;
}
.p-interview_profile__info-name-title2 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
}
.p-interview_profile__info-name-name {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}
.p-interview_profile__info-desc {
  line-height: 1.5;
  text-align: left;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-interview_profile__info-desc--bg-gray {
  background: #f6f6f6;
  padding: 10px;
}

.p-interviewed_dealer {
  border-radius: 8px;
  border: 1px solid #dfddd9;
  display: block;
  margin: 0 auto;
  padding: 15px 0;
  text-align: center;
  width: 300px;
}
.p-interviewed_dealer__name {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.6;
  padding: 10px 10px 15px 10px;
}
.p-interviewed_dealer__img {
  border-radius: 8px;
  width: 100px;
}

.p-item-main__img {
  width: 15px;
  height: 14px;
}
@media screen and (max-width: 640px) {
  .p-item-main__img {
    width: 11.5px;
  }
}
.p-item-main__rate {
  letter-spacing: 0.025em;
  color: #fb8308;
  font-family: "Lato Semibold", Helvetica, Arial, Verdana, sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
}
@media screen and (max-width: 640px) {
  .p-item-main__rate {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-item-main__block {
  line-height: 1;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .p-item-main__block {
    line-height: 1.3;
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.p-item-main__span--area {
  letter-spacing: 0.025em;
}
.p-item-main__span--num {
  font-family: "Lato Semibold", Helvetica, Arial, Verdana, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .p-item-main__span--num {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-item-main__dl {
  display: inline;
  letter-spacing: 0.025em;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 640px) {
  .p-item-main__dl {
    display: block;
  }
}
.p-item-main__dl:first-child {
  margin-left: 0;
}
.p-item-main__dt {
  letter-spacing: 0.025em;
  color: #4c4c4c;
}
@media screen and (max-width: 640px) {
  .p-item-main__dt {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 640px) {
  .p-item-main__dd {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-item-main__text {
  color: #666;
  letter-spacing: 0.025em;
  line-height: 1.54;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 640px) {
  .p-item-main__text {
    line-height: 1.36;
    max-height: 2.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    font-size: 0.75rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
.p-item-main__price {
  font-size: 34px;
  font-size: 2.125rem;
}
@media screen and (max-width: 640px) {
  .p-item-main__price {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.item_opts_ttl {
  overflow: hidden;
  position: relative;
  padding: 10px;
  background-color: #eae7e2;
  letter-spacing: 0.05em;
  transition: background-color 0.5s;
  border-radius: 4px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .item_opts_ttl {
    border-radius: 0;
  }
}
.close > .item_opts_ttl {
  background-color: #fff5e5;
}
.item_opts_ttl:hover {
  cursor: pointer;
}
.item_opts_ttl .ttl {
  float: left;
  padding-right: 20px;
}
@media screen and (max-width: 640px) {
  .item_opts_ttl .ttl {
    float: none;
  }
}
@media screen and (max-width: 640px) {
  .close > .item_opts_ttl .ttl {
    padding-right: 60px;
  }
}
.item_opts_ttl strong {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.item_opts_ttl dl {
  float: right;
  margin-right: 30px;
  letter-spacing: 0;
  transition: margin-right, 0.5s;
}
@media screen and (max-width: 640px) {
  .item_opts_ttl dl {
    margin-right: 0;
    margin-top: 7px;
    text-align: right;
    line-height: 1.2;
  }
}
.close > .item_opts_ttl dl {
  margin-right: 68px;
}
@media screen and (max-width: 640px) {
  .close > .item_opts_ttl dl {
    margin-right: 0;
  }
}
.item_opts_ttl dl dt, .item_opts_ttl dl dd {
  display: inline;
}
.item_opts_ttl dl dt {
  position: relative;
  margin-right: 16px;
  color: #938e8a;
  font-size: 11px;
  font-size: 0.6875rem;
}
.item_opts_ttl dl dt:after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  margin-top: -3px;
  border: 3px solid transparent;
  border-left-color: #938e8a;
}
.item_opts_ttl dl dd {
  color: #554e48;
  font-size: 14px;
  font-size: 0.875rem;
}
.close > .item_opts_ttl dl dd {
  color: #000;
}
.item_opts_ttl dl dd .name {
  display: inline-block;
}
.item_opts_ttl dl dd .name:not(:first-of-type) {
  margin-left: 10px;
}
.item_opts_ttl dl dd .price {
  display: inline-block;
  margin-left: 6px;
  font-family: "Lato Semibold", Helvetica, Arial, Verdana, sans-serif;
  font-size: 16px;
  font-size: 1rem;
}
.close > .item_opts_ttl dl dd .price {
  color: #e72f2f;
}
.close > .item_opts_ttl dl dd .price.zero {
  color: #000;
}
.item_opts_ttl dl dd .price:before {
  content: "¥";
  margin-right: 2px;
  font-size: 13px;
  font-size: 0.8125rem;
}
.item_opts_ttl .button_slide {
  right: 5px;
  top: 12px;
}
@media screen and (max-width: 640px) {
  .item_opts_ttl .button_slide {
    top: 7px;
  }
}
.item_opts_ttl .button_slide polyline {
  stroke: #554e48;
  transition: stroke 0.5s;
}
.close > .item_opts_ttl .button_slide polyline {
  stroke: #38598f;
}

.item_opts_subttl {
  margin: 20px 0 0;
  background-color: #f7f5f2;
  height: 35px;
  line-height: 35px;
  padding: 0 10px;
  color: #554e48;
  font-weight: bold;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

.item_opts_smallttl {
  margin: 16px 10px 3px;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media screen and (max-width: 640px) {
  .item_opts_smallttl {
    margin-left: 0;
    margin-right: 0;
  }
}

.item_opts_smalldesc {
  margin: 0 10px;
  color: #333;
  letter-spacing: 0.025em;
  line-height: 1.4615384615;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 640px) {
  .item_opts_smalldesc {
    margin-left: 0;
    margin-right: 0;
    letter-spacing: 0.025em;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.item_opts_list {
  overflow: hidden;
  position: relative;
  margin: 0 10px;
  padding-bottom: 60px;
  transition: opacity 0.5s, height 0.5s, padding-bottom 0.5s;
}
@media screen and (max-width: 640px) {
  .item_opts_list {
    padding-bottom: 30px;
  }
}
.close > .item_opts_list {
  margin-bottom: 20px;
  opacity: 0.5;
  height: 80px !important;
}
.close > .item_opts_list:hover {
  cursor: pointer;
}
.item_opts_list:after {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  gradient: rgba(255, 255, 255, 0), rgb(255, 255, 255);
  transition: opacity 0.5s;
}
.close > .item_opts_list:after {
  z-index: 100;
  opacity: 1;
}

.item_opts_list_figureleft {
  padding-bottom: 47px;
}
.item_opts_list_figureleft > .fl {
  padding-top: 20px;
  width: 370px;
}
@media screen and (max-width: 640px) {
  .item_opts_list_figureleft > .fl {
    width: auto;
    float: none;
  }
}
.item_opts_list_figureleft > .fl img {
  display: block;
}
@media screen and (max-width: 640px) {
  .item_opts_list_figureleft > .fl img {
    width: 200px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
  }
}
.item_opts_list_figureleft > .fl .item_opts_list_preview_img {
  height: 370px;
}
@media screen and (max-width: 640px) {
  .item_opts_list_figureleft > .fl .item_opts_list_preview_img {
    height: 200px;
  }
}
.item_opts_list_figureleft > .fl .name {
  margin-top: 10px;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  .item_opts_list_figureleft > .fl .name {
    margin-top: 7px;
    text-align: center;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.item_opts_list_figureleft > .fl .name .model_number {
  font-weight: normal;
  color: #666;
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (max-width: 640px) {
  .item_opts_list_figureleft > .fl .name .model_number {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.item_opts_list_figureleft > .fl .name br {
  display: none;
}
.item_opts_list_figureleft > .fl .note {
  margin-top: 7px;
  line-height: 1.2;
  color: #817c78;
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (max-width: 640px) {
  .item_opts_list_figureleft > .fl .note {
    margin-top: 4px;
    text-align: center;
  }
}
.item_opts_list_figureleft > .fr {
  width: 580px;
}
@media screen and (max-width: 640px) {
  .item_opts_list_figureleft > .fr {
    float: none;
    width: auto;
  }
}

.item_opts_list_size {
  padding-bottom: 8px;
}
.item_opts_list_size:last-child {
  padding-bottom: 0;
}
.item_opts_list .item_opts_list_size {
  margin-left: 10px;
  margin-right: 10px;
}
@media screen and (max-width: 640px) {
  .item_opts_list .item_opts_list_size {
    margin-left: 0;
    margin-right: 0;
  }
}

.item_opts_list_body_price {
  padding-top: 10px;
}
@media screen and (max-width: 640px) {
  .item_opts_list_body_price {
    padding-top: 0;
  }
}

.item_opts_list_compact {
  overflow: hidden;
  padding-bottom: 10px;
}
.item_opts_list .item_opts_list_compact {
  margin-left: 10px;
  margin-right: 10px;
}
@media screen and (max-width: 640px) {
  .item_opts_list .item_opts_list_compact {
    margin-left: 0;
    margin-right: 0;
  }
}

.item_opt_box {
  position: relative;
  z-index: 1;
  float: left;
  width: 237.5px;
  margin: 20px 10px 15px 0;
  padding: 19px;
  box-sizing: border-box;
}
.item_opt_box:nth-child(4n-3) {
  clear: left;
}
@media screen and (max-width: 640px) {
  .item_opt_box {
    overflow: hidden;
    margin-right: 0;
    margin-top: 10px;
    margin-bottom: 0;
    float: none;
    width: auto;
    padding: 10px;
  }
}
.item_opt_box:hover {
  cursor: pointer;
}
.item_opt_box:nth-child(4n), .item_opt_box:last-child {
  margin-right: 0;
}
.item_opt_box img.figure {
  display: block;
}
@media screen and (max-width: 640px) {
  .item_opt_box img.figure {
    width: 98px;
    float: left;
    margin-right: 8px;
  }
}
.item_opt_box .name {
  margin: 10px 0 5px;
  line-height: 1.4;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .item_opt_box .name {
    margin-top: 0;
    line-height: 1.3;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.item_opt_box .name .model_number {
  color: #666;
  font-size: 11px;
  font-size: 0.6875rem;
}
.item_opt_box .desc {
  margin-bottom: 5px;
  color: #666;
  line-height: 1.4;
  font-size: 12px;
  font-size: 0.75rem;
}
.item_opt_box .price {
  position: absolute;
  border: 1px solid #e0e0e0;
  z-index: 11;
  right: 20px;
  bottom: -15px;
  padding: 0 8px;
  background-color: #fff;
  color: #817c78;
  line-height: 1.3;
  transition: border-color 0.15s ease-out;
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (max-width: 640px) {
  .item_opt_box .price {
    border: 0;
    background-color: transparent;
    bottom: 10px;
    right: 10px;
    padding: 0;
  }
}
@media screen and (max-width: 640px) {
  .item_opt_box .price .cap {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .item_opt_box .price .cap.body {
    display: inline;
  }
}
.item_opt_box .price .num {
  margin-left: 12px;
  color: #e72f2f;
  font-family: "Lato Semibold", Helvetica, Arial, Verdana, sans-serif;
  font-size: 16px;
  font-size: 1rem;
}
.item_opt_box .price .num.zero {
  color: #000;
}
.item_opt_box .price .num:before {
  content: "¥";
  font-size: 13px;
  font-size: 0.8125rem;
}
.item_opt_box.active .name {
  font-weight: bold;
}
.item_opt_box.active .name .model_number {
  font-weight: normal;
}
.item_opt_box.active .price {
  border-color: #fe7b07;
}
.item_opts_list_size .item_opt_box {
  margin-bottom: 42px;
  width: 132.5px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .item_opts_list_size .item_opt_box {
    margin-bottom: 0;
    padding-bottom: 30px;
    text-align: left;
    width: 45%;
    margin: 10px 2% 0 0;
    float: left;
  }
}
.item_opts_list_size .item_opt_box .name {
  margin-top: -3px;
  margin-bottom: -2px;
}
@media screen and (max-width: 640px) {
  .item_opts_list_size .item_opt_box .name {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .item_opts_list_size .item_opt_box .name br {
    display: none;
  }
}
.item_opts_list_size .item_opt_box .price {
  text-align: center;
  padding-top: 3px;
  right: 20px;
  left: 20px;
  bottom: -29px;
}
@media screen and (max-width: 640px) {
  .item_opts_list_size .item_opt_box .price {
    padding-top: 0;
    right: 10px;
    left: auto;
    bottom: 10px;
  }
}
.item_opts_list_size .item_opt_box .price > span {
  display: block;
  margin-top: -2px;
  margin-left: 0;
}
@media screen and (max-width: 640px) {
  .item_opts_list_size .item_opt_box .price > span {
    display: inline-block;
    margin-top: 0;
    margin-left: 5px;
  }
}
.item_opts_list_body_price .item_opt_box {
  margin-top: 10px;
  margin-bottom: 0px;
}
@media screen and (max-width: 640px) {
  .item_opts_list_body_price .item_opt_box {
    margin-left: 10px;
  }
}
.item_opts_list_compact .item_opt_box {
  margin-top: 10px;
  width: 313.33px;
}
@media screen and (max-width: 640px) {
  .item_opts_list_compact .item_opt_box {
    width: auto;
  }
}
.item_opts_list_compact .item_opt_box:nth-child(4n) {
  margin-right: 10px;
}
@media screen and (max-width: 640px) {
  .item_opts_list_compact .item_opt_box:nth-child(4n) {
    margin-right: 0;
  }
}
.item_opts_list_compact .item_opt_box:nth-child(3n) {
  margin-right: 0;
}
.item_opts_list_compact .item_opt_box .figure {
  float: left;
}
.item_opts_list_compact .item_opt_box .name {
  display: table-cell;
  margin: 0;
  padding: 0 0 0 20px;
  height: 58px;
  vertical-align: middle;
}
@media screen and (max-width: 640px) {
  .item_opts_list_compact .item_opt_box .name {
    display: block;
    padding: 0;
    margin-left: 10px;
    height: auto;
  }
}
.item_opts_list_compact_2col .item_opt_box {
  width: 275px;
  margin-right: 0;
}
@media screen and (max-width: 640px) {
  .item_opts_list_compact_2col .item_opt_box {
    width: auto;
    margin-right: 0;
  }
}
.item_opts_list_compact_2col .item_opt_box:nth-child(4n) {
  margin-right: 0;
}
.item_opts_list_compact_2col .item_opt_box:nth-child(odd) {
  margin-right: 10px;
}
@media screen and (max-width: 640px) {
  .item_opts_list_compact_2col .item_opt_box:nth-child(odd) {
    margin-right: 0;
  }
}

.item_opt_box_popular {
  display: block;
  position: absolute;
  top: 5px;
  left: 4px;
  color: #fff;
  font-weight: bold;
  line-height: 42px;
  text-align: center;
  background-image: url("/assets/img/common/sprite_common-d65f56c9.png");
  background-position: 0px -216px;
  width: 42px;
  height: 42px;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 640px) {
  .item_opt_box_popular {
    top: 2px;
    left: 2px;
    font-size: 10px;
    font-size: 0.625rem;
    background-image: url("/assets/img/common/sprite_common@3x-f559cfb8.png");
    width: 32px;
    height: 32px;
    background-position: 0px -136px;
    background-size: 32px;
    line-height: 32px;
  }
}
@media screen and (max-width: 640px) and (max-device-width: 375px) and (-webkit-max-device-pixel-ratio: 2) {
  .item_opt_box_popular {
    background-image: url("/assets/img/common/sprite_common@2x-72af2e82.png");
    width: 32px;
    height: 32px;
    background-position: 0px -156px;
    background-size: 42px;
    line-height: 32px;
  }
}

.item_opt_radio, .item_opt_checkbox {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px dotted #999;
  border-radius: 4px;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
}
.item_opt_radio:hover, .item_opt_checkbox:hover {
  border: 1px dotted white;
  box-shadow: inset 0px 0px 8px #fe7b07;
}
@media screen and (max-width: 640px) {
  .item_opt_radio:hover:hover, .item_opt_checkbox:hover:hover {
    border: 1px dotted #999;
    box-shadow: none;
  }
}
.item_opt_radio.checked, .item_opt_checkbox.checked {
  border: 2px solid #fe7b07 !important;
}
.item_opt_radio.checked:hover, .item_opt_checkbox.checked:hover {
  box-shadow: none;
}

.item_opts_notice {
  padding-top: 20px;
  clear: both;
  line-height: 1.3;
  color: #817c78;
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (max-width: 640px) {
  .item_opts_notice {
    padding-top: 10px;
  }
}
.item_opts_notice p {
  margin-top: 4px;
}
.item_opts_notice p:first-child {
  margin-top: 0;
}
.item_opts_list_figureleft .fr .item_opts_notice {
  padding-top: 10px;
  margin-left: 10px;
  margin-right: 10px;
}
@media screen and (max-width: 640px) {
  .item_opts_list_figureleft .fr .item_opts_notice {
    padding-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

.item_opts_attention {
  padding-top: 20px;
  margin-bottom: -10px;
  font-weight: bold;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #554e48;
}

.item_opts_notice .asterisc, .item_opts_attention .asterisc {
  position: relative;
  padding-left: 1em;
}
.item_opts_notice .asterisc:before, .item_opts_attention .asterisc:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

/* ----------------------------------------------
 * * 右上の「閉じる」←→「開く」ボタン
 * */
.button_slide {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 4px 0 9px;
  border: 1px solid transparent;
  color: #38598f;
  transition: border-color 0.5s;
  border-radius: 4px;
  font-size: 12px;
  font-size: 0.75rem;
}
.close .button_slide {
  border-color: #38598f;
}
.button_slide span, .button_slide svg {
  display: inline-block;
  line-height: 20px;
  height: 20px;
  vertical-align: middle;
}
.button_slide span {
  margin-right: 2px;
  overflow: hidden;
  transition: width 0.5s;
}
.button_slide span.button_slide_text_closed {
  display: none;
}
.close .button_slide span.button_slide_text_closed {
  display: inline-block;
}
.close .button_slide span.button_slide_text_opened {
  display: none;
}
.button_slide svg {
  vertical-align: middle;
  width: 12px;
  transition: transform 0.5s;
}
.close .button_slide svg {
  transform: rotate(180deg);
}
.button_slide polyline {
  fill: none;
  stroke: #38598f;
  stroke-miterlimit: 10;
}

.item_detail_opt_modal {
  overflow: hidden;
  background-color: #fff;
  border-radius: 6px;
  padding: 60px;
  width: 980px;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .item_detail_opt_modal {
    width: auto;
    padding: 20px;
  }
}
.item_detail_opt_modal .photo {
  float: left;
  width: 300px;
}
@media screen and (max-width: 640px) {
  .item_detail_opt_modal .photo {
    float: none;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.item_detail_opt_modal .photo img {
  display: block;
  width: 300px;
}
@media screen and (max-width: 640px) {
  .item_detail_opt_modal .photo img {
    width: 100%;
    max-width: 100%;
  }
}
.item_detail_opt_modal .photo .number {
  margin: 9px 0 0;
  font-size: 12px;
  font-size: 0.75rem;
  color: #666;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  .item_detail_opt_modal .photo .number {
    margin-top: 1px;
    text-align: center;
    font-size: 9px;
    font-size: 0.5625rem;
  }
}
.item_detail_opt_modal .ttl, .item_detail_opt_modal .desc, .item_detail_opt_modal .info {
  margin-left: 340px;
}
@media screen and (max-width: 640px) {
  .item_detail_opt_modal .ttl, .item_detail_opt_modal .desc, .item_detail_opt_modal .info {
    margin-left: 0;
  }
}
.item_detail_opt_modal .ttl {
  margin-top: -5px;
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  .item_detail_opt_modal .ttl {
    margin-top: 20px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.item_detail_opt_modal .desc {
  margin-top: 15px;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.025em;
  line-height: 1.73;
}
@media screen and (max-width: 640px) {
  .item_detail_opt_modal .desc {
    margin-top: 10px;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1.62;
  }
}
.item_detail_opt_modal .info {
  margin-top: 22px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #4c4c4c;
  letter-spacing: 0.025em;
  line-height: 1.54;
}
@media screen and (max-width: 640px) {
  .item_detail_opt_modal .info {
    margin-top: 16px;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.54;
  }
}
.item_detail_opt_modal .btn {
  clear: both;
  padding-top: 28px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .item_detail_opt_modal .btn {
    padding-top: 18px;
  }
}
.item_detail_opt_modal .btn .button_solid {
  height: 50px;
  line-height: 50px;
  width: 450px;
  font-size: 18px;
  font-size: 1.125rem;
  border-radius: 6px;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .item_detail_opt_modal .btn .button_solid {
    width: 100%;
    height: 36px;
    line-height: 36px;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.p-item-price--default {
  background: url("/assets/img/item/item_price_bg_02-b894b19d.jpg");
  height: 313px;
  background-repeat: no-repeat;
  background-position-x: center;
}
.p-item-price--small {
  background: url("/assets/img/item/item_price_bg_01-258b5281.jpg") center 0 no-repeat;
  width: 360px;
  height: 195px;
}
.p-item-price--bar {
  bottom: 0;
  left: 0;
  right: 0;
  height: 76px;
  background: url("/assets/img/common/bg_paper-16fa2c33.png") 0 0 repeat;
  z-index: 10001;
  box-shadow: 0px 2px 12px rgba(112, 75, 42, 0.4);
}
@media screen and (max-width: 640px) {
  .p-item-price--bar {
    background-image: url("/assets/img/common/bg_paper@2x-8b580737.png");
    background-size: 128px;
    background-repeat: repeat;
    background-position: 0 0;
    height: auto;
  }
}
@media screen and (max-width: 640px) {
  .p-item-price {
    width: auto;
    height: auto;
    background-image: url("/assets/img/item/item_price_bg_sp_top-b038f421.jpg"), url("/assets/img/item/item_price_bg_sp_btm-2c1d804d.jpg"), url("/assets/img/item/item_price_bg_sp_mdl-42bce7d6.jpg") !important;
    background-repeat: no-repeat, no-repeat, repeat-y !important;
    background-position: center 0, center bottom, center 0 !important;
    background-size: 100%, 100%, 100% !important;
  }
}
.p-item-price__title {
  line-height: 1.3;
  color: #333;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 640px) {
  .p-item-price__title {
    letter-spacing: 0;
  }
}
.p-item-price__title--default {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 640px) {
  .p-item-price__title--default {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-item-price__title--small {
  font-size: 14px;
  font-size: 0.875rem;
}
.p-item-price__title--bar {
  color: #000;
  letter-spacing: 0;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 640px) {
  .p-item-price__title--bar br {
    display: none;
  }
}
.p-item-price__strong--default {
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (max-width: 640px) {
  .p-item-price__strong--default {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-item-price__strong--small {
  font-size: 17px;
  font-size: 1.0625rem;
}
.p-item-price__strong--bar {
  font-size: 17px;
  font-size: 1.0625rem;
}
@media screen and (max-width: 640px) {
  .p-item-price__strong--bar {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-item-price__strong:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  margin-left: -12px;
  width: 0;
  height: 0;
  border-width: 10px 15px;
  border-style: solid;
  border-color: transparent;
  border-top-color: #f4c49e;
  bottom: -2px;
  border-width: 8px 12px;
}
.p-item-price__desc {
  letter-spacing: 0.05em;
  color: #a5a19e;
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (max-width: 640px) {
  .p-item-price__desc {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-item-price__btn--default {
  width: 50% !important;
}
@media screen and (max-width: 640px) {
  .p-item-price__btn--default {
    width: 100% !important;
  }
}
.p-item-price__btn--small {
  height: 35px !important;
  line-height: 35px !important;
}
.p-item-price__btn--bar {
  height: 40px !important;
  line-height: 40px !important;
}
@media screen and (max-width: 640px) {
  .p-item-price__btn--bar {
    height: 30px !important;
    line-height: 30px !important;
  }
}
.p-item-price__dt {
  height: 18px;
  line-height: 18px;
  letter-spacing: 0.025em;
  color: #746c65;
  border-radius: 2px;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 640px) {
  .p-item-price__dt {
    height: 15px;
    line-height: 15px;
    font-size: 9px;
    font-size: 0.5625rem;
  }
}
.p-item-price__dt--partial {
  background-color: rgba(172, 161, 144, 0.4);
}
.p-item-price__dt--total {
  background-color: rgba(244, 193, 112, 0.4);
}
.p-item-price__dt--bar {
  margin-bottom: 2px;
}
@media screen and (max-width: 640px) {
  .p-item-price__dt--bar {
    display: none;
  }
}
.p-item-price__span--partial {
  color: #554e48;
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (max-width: 640px) {
  .p-item-price__span--partial {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-item-price__span-bar--partial {
  color: #554e48;
  font-size: 23px;
  font-size: 1.4375rem;
}
@media screen and (max-width: 640px) {
  .p-item-price__span-bar--partial {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-item-price__span-bar--total {
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (max-width: 640px) {
  .p-item-price__span-bar--total {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-item-price__price--partial:after {
  content: "=";
  position: absolute;
  right: -40px;
  bottom: 5px;
  color: #746c65;
  font-family: "Lato Semibold", Helvetica, Arial, Verdana, sans-serif;
  font-size: 34px;
  font-size: 2.125rem;
}
@media screen and (max-width: 640px) {
  .p-item-price__price--partial:after {
    right: -20px;
    bottom: 15px;
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.p-item-price__price--partial:first-of-type:after {
  content: "+";
}
@media screen and (max-width: 640px) {
  .p-item-price__price--bar:after {
    bottom: 2px;
  }
}
.p-item-price__block {
  height: 76px;
  background: url("/assets/img/common/point_yen_trans-ffdad7b2.png") 0 center no-repeat;
}
@media screen and (max-width: 640px) {
  .p-item-price__block {
    height: auto;
    background-position: 0 10px;
    background: url("/assets/img/common/point_yen_trans@3x-5275d682.png") 0 center no-repeat;
    background-size: auto 62px;
  }
}
@media screen and (max-width: 640px) and (max-device-width: 375px) and (-webkit-max-device-pixel-ratio: 2) {
  .p-item-price__block {
    background-image: url("/assets/img/common/point_yen_trans@2x-c687cca5.png");
  }
}
.p-item-price__block--sub {
  display: table-cell;
}
@media screen and (max-width: 640px) {
  .p-item-price__block--sub {
    display: block;
  }
}

.p-item-spec {
  border: 4px solid #f0ede8;
  background-color: #faf9f7;
  line-height: 1.2;
  letter-spacing: 0.025em;
  font-size: 13px;
  font-size: 0.8125rem;
  box-sizing: border-box;
}
.p-item-spec__dt {
  border-bottom: 1px solid #e6e3e0;
  color: #554e48;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 640px) {
  .p-item-spec__dt {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.p-item-spec__dd {
  border-bottom: 1px solid #e6e3e0;
}
.p-item-spec__link {
  background-image: url("/assets/img/common/sprite_common-d65f56c9.png");
  background-position: 0px -132px;
  width: 14px;
  height: 14px;
  transition: opacity 0.15s ease-out;
}
.p-item-spec__link:hover {
  cursor: pointer;
  opacity: 0.8;
}

.p-item {
  border-bottom: 1px dotted #b2b2b2;
  clear: both;
}
.p-item:last-child {
  border-bottom: 0;
}
.p-item.item_shop_list_1st {
  border-top: 5px solid #cd575c;
  border-bottom: 5px solid #cd575c;
}
@media screen and (max-width: 640px) {
  .p-item.item_shop_list_1st {
    border-top-width: 4px;
    border-bottom-width: 4px;
  }
}
.p-item__title {
  top: 10px;
  color: #444;
  left: 240px;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 640px) {
  .p-item__title {
    top: 15px;
    left: 120px;
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.p-item__img {
  max-width: 190px;
  max-height: 264px;
  border-radius: 8px;
}
@media screen and (max-width: 640px) {
  .p-item__img {
    max-width: 95px;
    max-height: 95px;
    border-radius: 4px;
  }
}
.p-item__block {
  margin-left: 220px;
}
.p-item .is-checkbox {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #f7f5f2;
  width: 40px;
  transition: background-color 0.15s ease-out;
}
@media screen and (max-width: 640px) {
  .p-item .is-checkbox {
    width: 25px;
  }
}
.p-item .is-checkbox:before, .p-item .is-checkbox:after {
  content: "";
  display: block;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
}
.p-item .is-checkbox:before {
  margin-top: -13px;
  margin-left: -13px;
  width: 24px;
  height: 24px;
  border: 1px solid #e7e4de;
  border-radius: 4px;
  background: #e7e4de;
  opacity: 1;
  transition: background 0.15s ease-out, border-color 0.15s ease-out;
}
@media screen and (max-width: 640px) {
  .p-item .is-checkbox:before {
    width: 15px;
    margin-left: -7.5px;
    height: 15px;
    margin-top: -7.5px;
  }
}
.p-item .is-checkbox:after {
  width: 16px;
  margin-top: -7px;
  height: 12px;
  margin-left: -8px;
  background: url("/assets/img/common/icon_check_white-3ed39065.svg") center center no-repeat;
  background-size: 16px;
  opacity: 0;
  transition: opacity 0.15s ease-out;
}
@media screen and (max-width: 640px) {
  .p-item .is-checkbox:after {
    width: 11px;
    margin-left: -6px;
    height: 8px;
    margin-top: -4px;
    background-size: 11px;
  }
}
.p-item .is-checkbox:hover {
  cursor: pointer;
}
.p-item .is-checkbox:hover:after {
  opacity: 0.3;
}
.p-item .is-checkbox.checked {
  background-color: #fe7b07;
}
.p-item .is-checkbox.checked:before {
  background: #fe7b07 !important;
  border-color: #fff !important;
}
.p-item .is-checkbox.checked:after {
  opacity: 1;
}

.p-join-builder {
  min-width: 1032px;
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  .p-join-builder {
    min-width: 100%;
  }
}
.p-join-builder__text {
  text-align: center;
}
.p-join-builder__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 25px;
}
.p-join-builder__list-item {
  width: 10%;
}
@media screen and (max-width: 640px) {
  .p-join-builder__list-item {
    width: 20%;
  }
  .p-join-builder__list-item:nth-child(n+11) {
    display: none;
  }
}
.p-join-builder__image {
  width: 100%;
  vertical-align: bottom;
}

.p-komikomi {
  clear: both;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .p-komikomi {
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.p-komikomi__image {
  display: block;
  margin: 0 auto;
  width: 50px;
  height: 50px;
}
.p-komikomi__cell {
  display: table-cell;
  width: 98px;
  margin: 20px 0;
  padding: 0;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
  color: #333;
  line-height: 1.2307692308;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .p-komikomi__cell {
    display: block;
    font-size: 11px;
    font-size: 0.6875rem;
    float: left;
    width: 33.33%;
    margin-bottom: 0;
  }
}
.p-komikomi__text {
  display: block;
  padding: 10px 0 0;
}
.p-komikomi__ctt {
  display: table;
  margin: 7px 0 0;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .p-komikomi__ctt {
    display: block;
    padding-bottom: 20px;
    background-color: #faf5eb;
    overflow: hidden;
  }
}
.p-komikomi__dl {
  display: table-cell;
  position: relative;
  padding: 0 0 15px;
  border-left: 2px solid #fff;
}
@media screen and (max-width: 640px) {
  .p-komikomi__dl {
    padding-bottom: 0;
    border-left-width: 0;
    display: inline;
  }
}
.p-komikomi__dl:after {
  content: "+";
  position: absolute;
  top: 50%;
  right: -14px;
  margin-top: -25px;
  line-height: 1;
  font-family: "Lato Semibold", Helvetica, Arial, Verdana, sans-serif;
  font-size: 44px;
  font-size: 2.75rem;
  z-index: 2;
}
@media screen and (max-width: 640px) {
  .p-komikomi__dl:after {
    content: none;
  }
}
.p-komikomi__dl:first-child {
  border-left: 0;
}
.p-komikomi__dl:last-child:after {
  content: none;
}
.p-komikomi__dt {
  border-top: 3px solid #000;
  margin: 2px 0 11px;
  padding: 2px 0 0;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 640px) {
  .p-komikomi__dt {
    display: none;
  }
}
.p-komikomi__dd {
  text-align: center;
  display: inline-block;
}
@media screen and (max-width: 640px) {
  .p-komikomi__dd {
    display: inline;
  }
}
.p-komikomi dl.p-komikomi-color1 {
  background-color: rgba(82, 150, 94, 0.05);
}
@media screen and (max-width: 640px) {
  .p-komikomi dl.p-komikomi-color1 {
    background-color: transparent;
  }
}
.p-komikomi dl.p-komikomi-color1 dt {
  border-top-color: #52965e;
}
.p-komikomi dl.p-komikomi-color1 dt {
  color: #52965e;
}
.p-komikomi dl.p-komikomi-color2 {
  background-color: rgba(212, 96, 132, 0.05);
}
@media screen and (max-width: 640px) {
  .p-komikomi dl.p-komikomi-color2 {
    background-color: transparent;
  }
}
.p-komikomi dl.p-komikomi-color2 dt {
  border-top-color: #d46084;
}
.p-komikomi dl.p-komikomi-color2 dt {
  color: #d46084;
}
.p-komikomi dl.p-komikomi-color3 {
  background-color: rgba(62, 137, 148, 0.05);
}
@media screen and (max-width: 640px) {
  .p-komikomi dl.p-komikomi-color3 {
    background-color: transparent;
  }
}
.p-komikomi dl.p-komikomi-color3 dt {
  border-top-color: #3e8994;
}
.p-komikomi dl.p-komikomi-color3 dt {
  color: #3e8994;
}
.p-komikomi dl.p-komikomi-color4 {
  background-color: rgba(135, 106, 187, 0.05);
}
@media screen and (max-width: 640px) {
  .p-komikomi dl.p-komikomi-color4 {
    background-color: transparent;
  }
}
.p-komikomi dl.p-komikomi-color4 dt {
  border-top-color: #876abb;
}
.p-komikomi dl.p-komikomi-color4 dt {
  color: #876abb;
}
.p-komikomi dl.p-komikomi-color5 {
  background-color: rgba(153, 153, 153, 0.05);
}
@media screen and (max-width: 640px) {
  .p-komikomi dl.p-komikomi-color5 {
    background-color: transparent;
  }
}
.p-komikomi dl.p-komikomi-color5 dt {
  border-top-color: #999;
}
.p-komikomi dl.p-komikomi-color5 dt {
  color: #999;
}
.p-komikomi__link {
  margin: 5px 0 0;
  text-align: right;
  font-size: 11px;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .p-komikomi__link {
    text-align: left;
    line-height: 1.4;
  }
}

.p-list--dotted {
  border: 1px solid #b2b2b2;
  border-radius: 8px;
}
.p-list--dotted__item {
  box-sizing: border-box;
}
.p-list--dotted__item:before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: -100%;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted #999;
}
.p-list--dotted__item:after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: 0;
  bottom: 10px;
  width: 1px;
  border-right: 1px dotted #999;
}
@media screen and (max-width: 640px) {
  .p-list--dotted__item:after {
    content: none;
  }
}
.p-list--dotted__item--column-1:last-child:before {
  content: none;
}
.p-list--dotted__item--column-1:after {
  content: none;
}
.p-list--dotted__item--column-2:last-child:before, .p-list--dotted__item--column-2:nth-last-child(2):before {
  content: none;
}
.p-list--dotted__item--column-2:last-child:after, .p-list--dotted__item--column-2:nth-child(2n):after {
  content: none;
}
@media screen and (max-width: 640px) {
  .p-list--dotted__item--column-2:before {
    content: "" !important;
    display: block;
    position: absolute;
    left: 5px;
    bottom: 0;
    right: 5px;
    height: 1px;
    border-bottom: 1px dotted #999;
  }
}
@media screen and (max-width: 640px) {
  .p-list--dotted__item--column-2:last-child:before {
    content: none !important;
  }
}
.p-list--dotted__item--column-3:nth-child(3n):after {
  content: none;
}
.p-list--dotted__item--column-3:nth-last-child(-n+3):before {
  content: none;
}
@media screen and (max-width: 640px) {
  .p-list--dotted__item--column-3:nth-last-child(-n+3):before {
    content: "";
  }
}
@media screen and (max-width: 640px) {
  .p-list--dotted__item--column-3:last-child:before {
    content: none;
  }
}
@media screen and (max-width: 640px) {
  .p-list--dotted__img {
    width: 80px;
  }
}
.p-list--dotted__title {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 640px) {
  .p-list--dotted__title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-list--dotted__text {
  color: #4c4c4c;
}
.p-list--link {
  clear: both;
  background-color: #f7f5f2;
}
.p-list__li--link:before {
  margin-right: 5px;
}

.p-list_with_text {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
  .p-list_with_text {
    display: block;
  }
}
.p-list_with_text__link:hover {
  color: #000;
}
.p-list_with_text__li {
  flex-basis: 31%;
}
.p-list_with_text__li:not(:nth-child(3n)) {
  margin-right: 3.5%;
}
@media screen and (max-width: 640px) {
  .p-list_with_text__li:not(:nth-child(3n)) {
    margin-right: 0;
  }
}
.p-list_with_text__block {
  box-sizing: border-box;
  position: relative;
  border-top: 1px solid #d4cbbf;
  border-right: 1px solid #d4cbbf;
  border-bottom: 1px solid #d4cbbf;
  border-left: solid 4px #38598f;
  padding: 20px 30px 20px 20px;
}
@media screen and (max-width: 640px) {
  .p-list_with_text__block {
    border-right: none;
    border-left: solid 6px #38598f;
  }
}
.p-list_with_text__block:hover .p-list_with_text__title {
  text-decoration: underline;
}
.p-list_with_text__block svg {
  position: absolute;
  top: 45%;
  right: 0;
  height: 25px;
}
.p-list_with_text__block polyline {
  fill: none;
  stroke: #000;
  stroke-miterlimit: 10;
}
.p-list_with_text__title {
  font-weight: bold;
}
.p-list_with_text__description {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .p-list_with_text__description {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.p-list_with_text_and_image {
  padding: 35px 30px;
  border: solid 1px #d4cbbf;
  display: flex;
}
@media screen and (max-width: 640px) {
  .p-list_with_text_and_image {
    padding: 0;
    display: block;
    border-top: none;
    border-right: none;
    border-bottom: solid 2px #d4cbbf;
    border-left: none;
  }
  .p-list_with_text_and_image:first-child {
    border-top: solid 2px #d4cbbf;
  }
}
.p-list_with_text_and_image__figure {
  margin-right: 30px;
  flex: 1;
}
@media screen and (max-width: 640px) {
  .p-list_with_text_and_image__figure {
    margin-right: 0;
  }
}
@media screen and (max-width: 640px) {
  .p-list_with_text_and_image__image {
    height: 160px;
    width: 100%;
    object-fit: cover;
  }
}
.p-list_with_text_and_image__block {
  display: flex;
  flex: 2;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .p-list_with_text_and_image__block {
    padding: 5px 20px 30px;
  }
}
.p-list_with_text_and_image__block--button {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
}
@media screen and (max-width: 640px) {
  .p-list_with_text_and_image__block--button {
    width: 100%;
    display: inline-block;
    margin-top: 10px;
  }
}
.p-list_with_text_and_image__title {
  font-weight: bold;
  border-bottom: solid 2px #38598f;
  padding-bottom: 5px;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 640px) {
  .p-list_with_text_and_image__title {
    text-align: center;
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-list_with_text_and_image__lead {
  font-weight: bold;
  margin-top: 5px;
}
@media screen and (max-width: 640px) {
  .p-list_with_text_and_image__lead {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-list_with_text_and_image__description {
  margin-top: 15px;
}
@media screen and (max-width: 640px) {
  .p-list_with_text_and_image__description {
    margin-top: 5px;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.p-lp-mv {
  width: 1000px;
  min-width: 1000px;
  margin: 0 auto 10px;
  position: relative;
}
@media screen and (max-width: 640px) {
  .p-lp-mv {
    width: 100%;
    min-width: 100%;
    margin-bottom: 0;
  }
}
.p-lp-mv__content {
  max-width: 480px;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__content {
    max-width: 100%;
  }
}
.p-lp-mv__content--for-disaster-20190905 {
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__content--for-disaster-20190905 {
    min-height: 195px;
  }
}
.p-lp-mv__title {
  margin-bottom: 30px;
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: bold;
  text-shadow: white 4px 0px, white -4px 0px, white 0px -4px, white 0px 4px, white 4px 4px, white -4px 4px, white 4px -4px, white -4px -4px, white 1px 4px, white -1px 4px, white 1px -4px, white -1px -4px, white 4px 1px, white -4px 1px, white 4px -1px, white -4px -1px;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__title {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.p-lp-mv__title2 {
  margin-bottom: 19px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
  text-shadow: white 4px 0px, white -4px 0px, white 0px -4px, white 0px 4px, white 4px 4px, white -4px 4px, white 4px -4px, white -4px -4px, white 1px 4px, white -1px 4px, white 1px -4px, white -1px -4px, white 4px 1px, white -4px 1px, white 4px -1px, white -4px -1px;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__title2 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.p-lp-mv__title3 {
  margin-bottom: 62px;
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: bold;
  text-shadow: white 4px 0px, white -4px 0px, white 0px -4px, white 0px 4px, white 4px 4px, white -4px 4px, white 4px -4px, white -4px -4px, white 1px 4px, white -1px 4px, white 1px -4px, white -1px -4px, white 4px 1px, white -4px 1px, white 4px -1px, white -4px -1px;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__title3 {
    margin-bottom: 40px;
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.p-lp-mv__title-text {
  font-size: 61px;
  font-size: 3.8125rem;
  letter-spacing: 1.5px;
  line-height: 1.22;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__title-text {
    font-size: 44px;
    font-size: 2.75rem;
  }
}
.p-lp-mv__title-text2 {
  font-size: 33px;
  font-size: 2.0625rem;
  line-height: 1.6;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__title-text2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.p-lp-mv__title-text3 {
  font-size: 37px;
  font-size: 2.3125rem;
  line-height: 1.6;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__title-text3 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.p-lp-mv__title-b {
  display: inline-block;
  font-size: 61px;
  font-size: 3.8125rem;
  letter-spacing: 1.5px;
  line-height: 1.22;
  color: #007637;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__title-b {
    font-size: 44px;
    font-size: 2.75rem;
  }
}
.p-lp-mv__title-b2 {
  display: inline-block;
  font-size: 51px;
  font-size: 3.1875rem;
  letter-spacing: 1.5px;
  line-height: 1.22;
  color: #007637;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__title-b2 {
    font-size: 44px;
    font-size: 2.75rem;
  }
}
.p-lp-mv__title-b3 {
  display: inline-block;
  font-size: 56px;
  font-size: 3.5rem;
  letter-spacing: 1.5px;
  line-height: 1.22;
  color: #007637;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__title-b3 {
    font-size: 44px;
    font-size: 2.75rem;
  }
}
@media screen and (max-width: 640px) {
  .p-lp-mv__image-box {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.p-lp-mv__image {
  max-width: 450px;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__image {
    max-width: 100%;
  }
}
.p-lp-mv__catch, .p-lp-mv__text-box {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__catch, .p-lp-mv__text-box {
    align-items: flex-start;
    margin-bottom: 5px;
  }
}
.p-lp-mv__catch-text {
  margin-left: 9px;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #555555;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__catch-text {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-lp-mv__catch-text > span {
  font-size: 49px;
  font-size: 3.0625rem;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__catch-text > span {
    display: inline-block;
    font-size: 32px;
    font-size: 2rem;
  }
}
.p-lp-mv__text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.56;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__text {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-lp-mv__text--highlight {
  font-weight: bold;
  background: linear-gradient(transparent 40%, #ffee01 0%);
}
.p-lp-mv__badge {
  position: absolute;
  right: 0;
  top: 0;
  background: url("/assets/img/lp/key-visual_badge-b0ee58ae.png") 0 0 no-repeat;
  width: 122px;
  height: 74px;
  padding: 43px 20px;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: bold;
  text-align: center;
  z-index: 999;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__badge {
    box-sizing: border-box;
    position: static;
    background-size: contain;
    flex-basis: 100%;
    width: 140px;
    height: 140px;
    padding: 34px 18px;
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
.p-lp-mv__badge--for-home {
  top: -100px;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__badge--for-home {
    flex-basis: auto;
  }
}
.p-lp-mv__badge-text {
  display: block;
  margin-top: 16px;
  font-size: 44px;
  font-size: 2.75rem;
  color: #e72f2f;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__badge-text {
    font-size: 39px;
    font-size: 2.4375rem;
  }
}
.p-lp-mv__feature-list-lead {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 17px;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: bold;
  background-color: white;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__feature-list-lead {
    margin: 0 15px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-lp-mv__feature-list {
  margin-top: -10px;
}
.p-lp-mv__feature-list2 {
  margin-top: -14px;
  display: inline-block;
  background-color: white;
  padding: 20px 40px 0 20px;
  border: 2px solid #fe7b07;
  border-radius: 3px;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__feature-list2 {
    padding-right: 30px;
    padding-bottom: 10px;
  }
}
.p-lp-mv__feature-item {
  margin-bottom: 15px;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  text-shadow: white 4px 0px, white -4px 0px, white 0px -4px, white 0px 4px, white 4px 4px, white -4px 4px, white 4px -4px, white -4px -4px, white 1px 4px, white -1px 4px, white 1px -4px, white -1px -4px, white 4px 1px, white -4px 1px, white 4px -1px, white -4px -1px;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__feature-item {
    margin-bottom: 5px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-lp-mv__feature-item::before {
  content: "";
  display: inline-block;
  vertical-align: 3px;
  border-left: 3px solid #fe7b07;
  border-bottom: 3px solid #fe7b07;
  width: 13px;
  height: 8px;
  transform: rotate(-45deg);
  margin-right: 22px;
}
.p-lp-mv__feature-item--b::before {
  width: 17px;
  border-width: 5px;
}
.p-lp-mv__home-image {
  position: absolute;
  bottom: -243px;
  left: 140px;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__home-image {
    position: static;
    width: 60%;
    height: 100%;
    margin-left: -20px;
    flex-grow: 1;
  }
}
.p-lp-mv__copy {
  position: absolute;
  right: 80px;
  top: -141px;
  z-index: 1;
  background-color: white;
  border-radius: 25px;
  padding: 10px 30px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 640px) {
  .p-lp-mv__copy {
    right: 20px;
    top: 228px;
    font-size: 18px;
    font-size: 1.125rem;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.p-lp-mv .p-lp_form {
  position: absolute;
  right: 0;
  top: 100px;
  padding: 0;
}
@media screen and (max-width: 640px) {
  .p-lp-mv .p-lp_form {
    position: static;
    margin-left: -20px;
    margin-right: -20px;
    padding: 30px 0;
    top: 160px;
  }
}
.p-lp-mv .p-lp_form__container {
  width: 520px;
}
@media screen and (max-width: 640px) {
  .p-lp-mv .p-lp_form__container {
    width: auto;
  }
}
.p-lp-mv .p-lp_form__content {
  padding: 20px;
}
@media screen and (max-width: 640px) {
  .p-lp-mv--for-home .p-lp-mv__column {
    display: flex;
    margin-top: 20px;
  }
}
.p-lp-mv--for-home .p-lp_form {
  top: 60px;
}
@media screen and (max-width: 640px) {
  .p-lp-mv--for-home .p-lp_form {
    margin-top: 0;
  }
}
.p-lp-mv--for-bath {
  margin-top: 55px;
}
@media screen and (max-width: 640px) {
  .p-lp-mv--for-bath {
    margin-top: 30px;
  }
}
.p-lp-mv--for-bath .p-lp-mv__title {
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (max-width: 640px) {
  .p-lp-mv--for-bath .p-lp-mv__title {
    margin-bottom: 54px;
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-lp-mv--for-bath .p-lp-mv__title-text {
  display: block;
  margin-bottom: 10px;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (max-width: 640px) {
  .p-lp-mv--for-bath .p-lp-mv__title-text {
    font-size: 33px;
    font-size: 2.0625rem;
  }
}
.p-lp-mv--for-bath .p-lp-mv__title-b {
  margin-top: 10px;
  color: #fe7b07;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (max-width: 640px) {
  .p-lp-mv--for-bath .p-lp-mv__title-b {
    font-size: 33px;
    font-size: 2.0625rem;
  }
}
@media screen and (max-width: 640px) {
  .p-lp-mv--for-bath .p-lp-mv__column {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 20px;
  }
}
@media screen and (max-width: 640px) {
  .p-lp-mv--for-bath .p-tag-category-list--large .p-tag-category-list__list-item {
    margin-bottom: 0;
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.p-lp-mv--for-bath .p-lp_form {
  top: -120px;
}
@media screen and (max-width: 640px) {
  .p-lp-mv--for-bath .p-lp_form {
    margin-top: 0;
  }
}
.p-lp-mv--for-disaster-20190905 {
  margin-top: 20px;
}
@media screen and (max-width: 640px) {
  .p-lp-mv--for-disaster-20190905 {
    margin-top: 5px;
  }
}
.p-lp-mv--for-disaster-20190905 .p-lp-mv__title {
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (max-width: 640px) {
  .p-lp-mv--for-disaster-20190905 .p-lp-mv__title {
    margin-bottom: 54px;
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-lp-mv--for-disaster-20190905 .p-lp-mv__title-text {
  display: block;
  margin-bottom: 10px;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (max-width: 640px) {
  .p-lp-mv--for-disaster-20190905 .p-lp-mv__title-text {
    font-size: 33px;
    font-size: 2.0625rem;
  }
}
.p-lp-mv--for-disaster-20190905 .p-lp-mv__copy {
  top: -125px;
}
@media screen and (max-width: 640px) {
  .p-lp-mv--for-disaster-20190905 .p-lp-mv__copy {
    top: 145px;
    left: 30px;
  }
}
.p-lp-mv--for-disaster-20190905 .p-lp-mv__title-b {
  margin-top: 10px;
  color: #fe7b07;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (max-width: 640px) {
  .p-lp-mv--for-disaster-20190905 .p-lp-mv__title-b {
    font-size: 40px;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff;
  }
}
@media screen and (max-width: 640px) {
  .p-lp-mv--for-disaster-20190905 .p-lp-mv__column {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 20px;
  }
}
@media screen and (max-width: 640px) {
  .p-lp-mv--for-disaster-20190905 .p-tag-category-list--large .p-tag-category-list__list-item {
    margin-bottom: 0;
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.p-lp-mv--for-disaster-20190905 .p-lp_form {
  top: -65px;
}
@media screen and (max-width: 640px) {
  .p-lp-mv--for-disaster-20190905 .p-lp_form {
    margin-top: 0;
  }
}
.p-lp-mv--for-disaster-20190911 {
  min-width: 100%;
  width: 100%;
  height: 490px;
  background: url("/assets/img/lp/disaster-20190911_header_image_bg-aa69482a.jpg") top/cover no-repeat;
  margin-bottom: 0;
}
@media screen and (max-width: 640px) {
  .p-lp-mv--for-disaster-20190911 {
    height: 430px;
    background: url("/assets/img/lp/disaster-20190911_header_image_bg_sp-79fc6151.jpg") top/cover no-repeat;
  }
}
.p-lp-mv--for-disaster-20190911 .p-lp-mv__content {
  padding: 50px;
  min-width: 1032px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .p-lp-mv--for-disaster-20190911 .p-lp-mv__content {
    padding: 20px;
    min-width: 100%;
  }
}
.p-lp-mv--for-disaster-20190911 .p-lp-mv__sub-title {
  color: #fff;
  font-weight: bold;
  font-size: 19px;
  font-size: 1.1875rem;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3960784314);
}
@media screen and (max-width: 640px) {
  .p-lp-mv--for-disaster-20190911 .p-lp-mv__sub-title {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-lp-mv--for-disaster-20190911 .p-lp-mv__title {
  color: #fe7b07;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.3;
  margin-top: 20px;
  text-shadow: 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff;
}
@media screen and (max-width: 640px) {
  .p-lp-mv--for-disaster-20190911 .p-lp-mv__title {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.p-lp-mv--for-disaster-20190911 .p-lp-mv__cv-box {
  width: 520px;
  margin: 40px auto auto auto;
}
@media screen and (max-width: 640px) {
  .p-lp-mv--for-disaster-20190911 .p-lp-mv__cv-box {
    margin-top: 10px;
    width: 100%;
  }
}

.p-lp-thanks {
  position: relative;
  background-image: url("/assets/img/lp/reform/pc/thanks_bg-a8e842ca.jpg");
  background-repeat: no-repeat;
  height: 380px;
}
@media screen and (max-width: 640px) {
  .p-lp-thanks {
    background-image: url("/assets/img/lp/reform/sp/thanks_bg-438ec7e0.jpg");
    background-size: cover;
  }
}
.p-lp-thanks .thanks_section {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.85);
  height: 250px;
  width: 65vw;
  border-radius: 7px;
}
@media screen and (max-width: 640px) {
  .p-lp-thanks .thanks_section {
    height: 320px;
    width: 80vw;
  }
}
.p-lp-thanks .thanks_section .thanks_left {
  float: left;
  width: 32vw;
  height: 250px;
}
@media screen and (max-width: 640px) {
  .p-lp-thanks .thanks_section .thanks_left {
    float: unset;
    width: auto;
    height: auto;
    display: inline-block;
  }
}
.p-lp-thanks .thanks_section .thanks_left .thanks_text1 {
  text-align: left;
  color: #F5781B;
  font-weight: bold;
  font-size: 2vw;
  padding: 20px;
  padding-left: 45px;
  line-height: 35px;
}
@media screen and (max-width: 640px) {
  .p-lp-thanks .thanks_section .thanks_left .thanks_text1 {
    font-size: 5.5vw;
    text-align: initial;
    padding: 15px;
    padding-left: 15px;
    line-height: 30px;
    height: 60px;
  }
}
@media screen and (max-width: 640px) {
  .p-lp-thanks .thanks_section .thanks_left .thanks_br {
    display: none;
  }
}
.p-lp-thanks .thanks_section .thanks_left .thanks_text2 {
  text-align: left;
  font-weight: bold;
  font-size: 1.2vw;
  padding: 20px;
  padding-left: 45px;
}
@media screen and (max-width: 640px) {
  .p-lp-thanks .thanks_section .thanks_left .thanks_text2 {
    font-size: 4vw;
    font-weight: normal;
    padding-left: unset;
    text-align: initial;
    padding: 0px;
    padding-left: 15px;
    padding-right: 15px;
    height: 85px;
  }
}
.p-lp-thanks .thanks_section .thanks_right {
  float: right;
  width: 32vw;
  height: 250px;
  position: relative;
}
@media screen and (max-width: 640px) {
  .p-lp-thanks .thanks_section .thanks_right {
    float: unset;
    width: 45vw;
    height: auto;
    display: inline-block;
  }
}
.p-lp-thanks .thanks_section .thanks_right .thanks_image {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  margin: auto;
}
@media screen and (max-width: 640px) {
  .p-lp-thanks .thanks_section .thanks_right .thanks_image {
    position: unset;
    left: auto;
    right: auto;
    bottom: auto;
    height: 140px;
    text-align: initial;
  }
}
@media screen and (max-width: 640px) {
  .p-lp-thanks .thanks_section .thanks_right .thanks_people {
    bottom: 0;
    position: absolute;
  }
}

#thanks_section {
  width: 80vw !important;
}
@media screen and (max-width: 640px) {
  #thanks_section {
    max-width: 500px !important;
  }
}
#thanks_section .thanks_form_box {
  text-align: center;
  text-align: -moz-center;
  text-align: -webkit-center;
  text-align: -ms-center;
  text-align: -o-center;
  border: solid 2px #f6f5f1;
  border-radius: 10px;
  margin: 5vw;
  padding: 5vw;
}
@media screen and (max-width: 640px) {
  #thanks_section .thanks_form_box {
    margin: 0;
    padding: 5px;
    padding-top: 15px;
    margin-top: 15px;
  }
}
#thanks_section .thanks_form_box .thanks_hr {
  width: 58vw;
  height: 3px;
  background-color: #f6f5f1;
  border: none;
  color: #f6f5f1;
}
#thanks_section .thanks_form_box .thanks_input {
  width: 75vw;
  max-width: 300px;
}
#thanks_section .thanks_form_box .thanks_form {
  width: 300px;
  text-align: left;
}
#thanks_section .thanks_form_box .phone_text1 {
  font-size: 1.3vw;
  font-weight: bold;
  padding: 20px;
}
@media screen and (max-width: 640px) {
  #thanks_section .thanks_form_box .phone_text1 {
    font-size: 3.3vw;
  }
}
#thanks_section .thanks_form_box .phone_text1_br {
  display: none;
}
@media screen and (max-width: 640px) {
  #thanks_section .thanks_form_box .phone_text1_br {
    display: inline;
  }
}
#thanks_section .thanks_form_box .phone_number_text1 {
  display: inline;
  font-size: 3vw;
  color: #F5781B;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  #thanks_section .thanks_form_box .phone_number_text1 {
    font-size: 6vw;
  }
}
#thanks_section .thanks_form_box .phone_number_icon {
  top: 0.2vw;
  padding-right: 10px;
  position: relative;
  height: 3vw;
  width: auto;
}
@media screen and (max-width: 640px) {
  #thanks_section .thanks_form_box .phone_number_icon {
    top: 1vw;
    height: 6vw;
  }
}
#thanks_section .thanks_form_box .phone_text2 {
  font-size: 1.4vw;
  padding-top: 20px;
  padding-bottom: 10px;
}
#thanks_section .thanks_form_box .phone_text3 {
  font-size: 1.4vw;
  font-weight: bold;
}
#thanks_section .header_box {
  max-width: 450px;
  width: 80vw !important;
  position: relative;
  margin-top: 20px !important;
}
#thanks_section .header_logo_text1 {
  font-size: 1vw;
  text-align: left;
}
#thanks_section .header_logo {
  float: left;
  padding-bottom: 75px;
  padding-right: 15px;
}
#thanks_section .thanks_submit {
  background: #F5781B !important;
  max-width: 300px;
  width: 75vw !important;
  padding: 0 !important;
  height: 50px;
  font-size: 15px !important;
}

.p-lp_form {
  margin: 20px 0;
  padding: 30px 0;
  background: rgb(254.921686747, 244.6626506024, 235.578313253);
}
.p-lp_form__container {
  box-sizing: border-box;
  width: 800px;
  margin: 0 auto;
  border: 3px solid #fe7b07;
  border-radius: 3px;
  background: white;
}
@media screen and (max-width: 640px) {
  .p-lp_form__container {
    width: auto;
    margin: 0 20px;
  }
}
.p-lp_form__headtext {
  font-size: 25px;
  padding: 0 30px 10px;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .p-lp_form__headtext {
    font-size: 18px;
  }
}
.p-lp_form__content {
  padding: 20px 150px;
}
@media screen and (max-width: 640px) {
  .p-lp_form__content {
    padding: 20px;
  }
}
.p-lp_form__title {
  padding: 12px 0;
  background: #fe7b07;
  text-align: center;
  color: white;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
}
.p-lp_form__b {
  color: #ffee01;
  font-size: 32px;
  font-size: 2rem;
}
.p-lp_form__b > span {
  font-size: 22px;
  font-size: 1.375rem;
}
.p-lp_form__table {
  width: 100%;
}
.p-lp_form__thead {
  max-width: 220px;
  text-align: left;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .p-lp_form__thead {
    width: 100%;
    max-width: 100%;
    display: block;
  }
}
.p-lp_form__data {
  padding-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .p-lp_form__data {
    width: 100%;
    max-width: 100%;
    display: block;
  }
}
.p-lp_form__required {
  margin-left: 10px;
  font-size: 11px;
  font-size: 0.6875rem;
  color: white;
  background: #e72f2f;
  border-radius: 2px;
  padding: 2px 3px;
  vertical-align: bottom;
}
.p-lp_form__any {
  margin-left: 10px;
  font-size: 11px;
  font-size: 0.6875rem;
  color: white;
  background: #b2b2b2;
  border-radius: 2px;
  padding: 2px 3px;
  vertical-align: bottom;
}
.p-lp_form__small-list {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
}
.p-lp_form__input--animated {
  border-color: #ffee01;
  animation: pulse-border 1s infinite;
}
@keyframes pulse-border {
  0%, 100% {
    border-color: #ffee01;
  }
  50% {
    border-color: #e72f2f;
  }
}
.p-lp_form__button {
  box-sizing: border-box;
  border: none;
  background: #009847;
  box-shadow: 0 3px 0 rgb(0, 126.5, 59.0888157895);
  border-radius: 2px;
  transition: none;
  display: block;
  width: 330px;
  margin: 0 auto 20px;
  line-height: 60px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
}
.p-lp_form__button:hover {
  box-shadow: none;
  transform: translateY(3px);
  color: white;
}
@media screen and (max-width: 640px) {
  .p-lp_form__button {
    width: 100%;
  }
}
.p-lp_form__button--multiple {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
}
.p-lp_form__free {
  flex-shrink: 0;
  margin-right: 8px;
  padding: 2px 6px;
  background: white;
  border-radius: 3px;
  font-size: 20px;
  font-size: 1.25rem;
  color: #e72f2f;
}
.p-lp_form__attention {
  font-family: HiraKakuProN;
  color: #d2251c;
  font-size: 11px;
  font-size: 0.6875rem;
  position: relative;
  padding-left: 18px;
  padding-top: 8px;
}
@media screen and (max-width: 640px) {
  .p-lp_form__attention {
    padding-left: 20px;
  }
}
.p-lp_form__attention::before {
  position: absolute;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  top: calc(50% - 4px);
  left: 0;
  background: url("/assets/img/estimate/icon_attention-c9fad6a6.png") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 640px) {
  .p-lp_form__attention::before {
    left: 0;
  }
}
.p-lp_form__errors .c-input {
  background-color: rgb(255, 223, 223);
}
.p-lp_form__arrow {
  position: relative;
}
.p-lp_form__arrow:before {
  content: "";
  width: 55px;
  height: 49px;
  top: -10px;
  background: url("/assets/img/lp/arrow-57888650.png") no-repeat center center;
  position: absolute;
  transform: translateX(-80%);
  -webkit-animation: animate-arrow 1s infinite;
  animation: animate-arrow 1s infinite;
}
@media screen and (max-width: 640px) {
  .p-lp_form__arrow:before {
    left: 15px;
    display: block;
    z-index: 1;
    -webkit-transform: translateX(-80%);
  }
}

@keyframes pulse-border {
  0%, 100% {
    border-color: #f4e28e;
  }
  50% {
    border-color: #ff3135;
  }
}
@keyframes animate-arrow {
  0%, 100% {
    -webkit-transform: translateX(-120%);
    transform: translateX(-120%);
  }
  50% {
    -webkit-transform: translateX(-80%);
    transform: translateX(-80%);
  }
}
.p-lp_header_image {
  background-size: auto 100%;
}
.p-lp_header_image--lp-store-interior {
  width: 1032px;
  background: url("/assets/img/lp/header_image-8532b018.png") 180px top no-repeat;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .p-lp_header_image--lp-store-interior {
    width: 100%;
    background-position: -62% 80px;
    background-size: 127%;
  }
}
.p-lp_header_image--lp-bath {
  min-height: 560px;
  background: url("/assets/img/lp/bath_header_image_bg-0382e08f.jpg") top no-repeat;
}
@media screen and (max-width: 640px) {
  .p-lp_header_image--lp-bath {
    background-position: 30% 100px;
    background-size: auto 28%;
  }
}
.p-lp_header_image--lp-home {
  min-height: 724px;
  background: url("/assets/img/lp/home_header_image_bg-fb8b873b.png") top no-repeat;
}
@media screen and (max-width: 640px) {
  .p-lp_header_image--lp-home {
    background-size: auto 50%;
  }
}
.p-lp_header_image--lp-disaster-20190905 {
  min-height: 550px;
  background: url("/assets/img/lp/disaster-20190905_header_image_bg-7d6b61ca.jpg") top no-repeat;
}
@media screen and (max-width: 640px) {
  .p-lp_header_image--lp-disaster-20190905 {
    background: url("/assets/img/lp/disaster-20190905_header_image_bg-sp-cdc53d75.jpg") no-repeat;
    background-position: 30% 120px;
    background-size: 100%;
  }
}

.p-lp_header_title {
  padding-left: 20px;
  font-weight: bold;
  line-height: 1.53;
}
@media screen and (max-width: 640px) {
  .p-lp_header_title {
    line-height: 1.3;
    padding-left: 0;
    margin-left: 10px;
    flex-basis: auto;
  }
}
.p-lp_header_title__main {
  font-size: 24px;
  font-size: 1.5rem;
}
.p-lp_header_title__sub {
  font-size: 18px;
  font-size: 1.125rem;
}

.p-lp_nabe__bordered {
  border: solid 3px #FFBF86;
  padding: 1rem;
}
.p-lp_nabe__bottom {
  height: 240px;
  text-align: center;
}
.p-lp_nabe__bottom_figure {
  width: 159px;
  height: 159px;
  margin: 0 auto;
}
.p-lp_nabe__bottom_caption {
  border-radius: 6px;
  background: #FFF1E5;
  padding: 1rem;
  margin-top: -10px;
}
.p-lp_nabe__bottom_caption_body {
  width: 80%;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .p-lp_nabe__bottom_caption_body {
    width: 100%;
  }
}
.p-lp_nabe__b {
  display: inline;
  font-weight: bold;
  margin-left: 2px;
  margin-right: 2px;
}

.p-lp_phone_button {
  text-align: center;
  background-color: black;
  border-radius: 5px;
  padding: 10px;
}
.p-lp_phone_button:hover {
  background-color: rgb(63.75, 63.75, 63.75);
}
.p-lp_phone_button__phone {
  display: block;
}
.p-lp_phone_button__phone a:hover, .p-lp_phone_button__phone a:link, .p-lp_phone_button__phone a:visited {
  color: #fff;
}
.p-lp_phone_button__phone {
  font-family: Verdana;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  font-size: 44px;
  font-size: 2.75rem;
}
@media screen and (max-width: 640px) {
  .p-lp_phone_button__phone {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.p-lp_phone_button__remark {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 10px;
  font-family: Verdana;
  font-weight: bold;
  color: #fff;
}
.p-lp_phone_button__remark--divider {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  border-top: 1px dotted #fff;
  padding-top: 10px;
}

.p-main-feature {
  min-width: 1032px;
  margin: 30px 0;
}
@media screen and (max-width: 640px) {
  .p-main-feature {
    min-width: 100%;
  }
}
.p-main-feature__block {
  position: relative;
  background-image: linear-gradient(to bottom, #96a5b2, #dbe1e5 120px, white 240px);
  text-align: center;
}
@media screen and (max-width: 640px) {
  .p-main-feature__image {
    width: 100%;
  }
}
.p-main-feature__copy {
  position: absolute;
  right: 150px;
  top: 410px;
  width: 53%;
  text-align: left;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: bold;
  line-height: 1.4;
  color: #fe7b07;
}
@media screen and (max-width: 640px) {
  .p-main-feature__copy {
    right: 0;
    top: 70%;
    width: 65%;
    transform: scale(0.8, 0.8);
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.p-main-feature__copy > span {
  display: block;
  font-size: 26px;
  font-size: 1.625rem;
}
@media screen and (max-width: 640px) {
  .p-main-feature__copy > span {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-main-feature__description {
  position: relative;
  margin: -100px 0 50px 320px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .p-main-feature__description {
    margin: 10px 0 0;
  }
}
.p-main-feature__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .p-main-feature__list {
    flex-wrap: wrap;
  }
}
.p-main-feature__list-item {
  width: 25%;
  box-sizing: border-box;
  min-height: 172px;
  margin: 15px 10px 10px;
  padding: 18px 20px;
  border-radius: 5px;
  border: 3px solid rgb(254.5120481928, 190.5903614458, 133.9879518072);
}
@media screen and (max-width: 640px) {
  .p-main-feature__list-item {
    width: 48%;
    margin: 15px 0 0;
  }
}
.p-main-feature__list-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}
.p-main-feature__list-text--highlight {
  background: linear-gradient(transparent 40%, #ffee01 0%);
}
.p-main-feature__icon {
  width: 100%;
  height: 40px;
  margin-bottom: 10px;
  fill: #fe7b07;
}
.p-main-feature__plus {
  position: relative;
  width: 30px;
  height: 30px;
  margin: 10px auto;
}
.p-main-feature__plus::before, .p-main-feature__plus::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-top: 6px solid rgb(254.5120481928, 190.5903614458, 133.9879518072);
}
.p-main-feature__plus::before {
  left: 0;
  top: 50%;
}
.p-main-feature__plus::after {
  left: -15px;
  top: 0;
  transform: rotate(90deg);
}
.p-main-feature__detail-list {
  width: calc(33.3% - 6px);
  margin: 20px auto 0;
  border-radius: 5px;
  border: 3px solid rgb(254.5120481928, 190.5903614458, 133.9879518072);
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .p-main-feature__detail-list {
    width: 100%;
  }
}
.p-main-feature__detail-list > dt {
  text-align: center;
  background-color: rgb(254.5120481928, 190.5903614458, 133.9879518072);
  padding: 5px 0;
  font-size: 16px;
  font-size: 1rem;
}
.p-main-feature__detail-list > dd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-main-feature__detail-list > dd .p-main-feature__icon {
  width: 50px;
  margin: 0;
}
@media screen and (max-width: 640px) {
  .p-main-feature__detail-list > dd {
    justify-content: unset;
  }
  .p-main-feature__detail-list > dd .p-main-feature__icon {
    margin-right: 20px;
  }
}

.p-maker {
  margin-top: 30px;
}
.p-maker__list {
  min-width: 1032px;
}
@media screen and (max-width: 640px) {
  .p-maker__list {
    min-width: 100%;
  }
}
.p-maker__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .p-maker__list {
    justify-content: space-between;
  }
}
.p-maker__list-item {
  border-radius: 5px;
  border: solid 4px #edebe8;
  padding: 23px 0;
}
@media screen and (max-width: 640px) {
  .p-maker__list-item {
    margin-top: 20px;
    padding: 12px 5px;
  }
}
.p-maker__list-item > img {
  height: 40px;
}
@media screen and (max-width: 640px) {
  .p-maker__list-item > img {
    height: 25px;
  }
}

.p-market_price {
  border: 1px #000000 solid;
}
.p-market_price__dl {
  border-bottom: 1px #ebebeb solid;
  font-weight: bold;
  font-size: 13px;
  font-size: 0.8125rem;
}
.p-market_price__dl:last-child {
  border-bottom: none;
}
.p-market_price__dt {
  padding: 10px;
  background: #f4fbff;
}
.p-market_price__dd {
  padding: 10px;
  text-align: right;
  color: #e72f2f;
}

.p-media-performance {
  margin-top: 30px;
}
.p-media-performance__list {
  min-width: 1032px;
}
@media screen and (max-width: 640px) {
  .p-media-performance__list {
    min-width: 100%;
  }
}
.p-media-performance__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.p-media-performance__list-item {
  padding: 15px 28px;
}
.p-media-performance__list-item > img {
  height: 25px;
}

.p-megamenu {
  display: none;
  width: 1016px;
  position: absolute;
  top: 70px;
  left: -118px;
  background: white;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 640px) {
  .p-megamenu {
    width: 300%;
    top: 65px;
    left: 0;
  }
}
.p-megamenu .is-none {
  display: none;
}
.p-megamenu .is-active {
  background: rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 640px) {
  .p-megamenu .is-active {
    background: none;
  }
}
.p-megamenu .is-active:after {
  content: "";
  border: 15px solid transparent;
  border-right-color: white;
  position: absolute;
  top: 30px;
  right: -2px;
}
@media screen and (max-width: 640px) {
  .p-megamenu .is-active:after {
    content: none;
  }
}
@media screen and (max-width: 640px) {
  .p-megamenu .is-active .p-megamenu__menu:after {
    transform: rotate(-45deg);
    top: 30px;
  }
}
@media screen and (max-width: 640px) {
  .p-megamenu .is-active .is-none {
    display: block !important;
  }
}
.p-megamenu__wrapper {
  flex: 1;
  background: #f4fbff;
}
@media screen and (max-width: 640px) {
  .p-megamenu__wrapper {
    background: white;
  }
}
.p-megamenu__menu_wrapper {
  position: relative;
  text-align: left;
}
.p-megamenu__menu_wrapper:last-child {
  border-bottom: none;
}
.p-megamenu__menu {
  padding: 14px 15px 14px 60px;
  border-bottom: 1px #ebebeb solid;
}
@media screen and (max-width: 640px) {
  .p-megamenu__menu {
    position: relative;
    padding: 10px 35px 8px 60px;
  }
  .p-megamenu__menu::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 15px;
    width: 24px;
    height: 24px;
    text-align: center;
    background: #f6f6f6;
    border-radius: 12px;
  }
  .p-megamenu__menu::after {
    content: "";
    position: absolute;
    top: 27px;
    right: 24px;
    vertical-align: middle;
    width: 5px;
    height: 5px;
    border-top: 1px solid #333333;
    border-right: 1px solid #333333;
    transform: rotate(135deg);
  }
}
.p-megamenu__menu_title {
  display: block;
  font-weight: bold;
  font-size: 17px;
  font-size: 1.0625rem;
}
@media screen and (max-width: 640px) {
  .p-megamenu__menu_title {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-megamenu__menu_description {
  display: block;
  font-weight: normal;
  color: #6e6e6e;
  font-size: 11px;
  font-size: 0.6875rem;
}
.p-megamenu__submenu_wrapper_box {
  flex: 2;
}
.p-megamenu__submenu_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px #ebebeb solid;
  font-weight: bold;
  font-size: 13px;
  font-size: 0.8125rem;
}
.p-megamenu__submenu {
  flex: 1;
  padding: 15px 10px;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .p-megamenu__submenu {
    flex-basis: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #6e6e6e;
    background: #f4fbff;
    border-bottom: 1px #ebebeb solid;
    font-size: 15px;
    font-size: 0.9375rem;
  }
  .p-megamenu__submenu > a {
    color: #6e6e6e;
  }
}
.p-megamenu__submenu_content {
  flex: 4;
  padding: 15px 0;
}
@media screen and (max-width: 640px) {
  .p-megamenu__submenu_content {
    padding: 0;
  }
}
.p-megamenu__submenu_content_block {
  display: flex;
  flex-wrap: wrap;
}
.p-megamenu__submenu_content_text {
  margin-right: 15px;
}
@media screen and (max-width: 640px) {
  .p-megamenu__submenu_content_text {
    position: relative;
    padding: 14px 15px;
    flex-basis: 50%;
    box-sizing: border-box;
    border-bottom: 1px #ebebeb solid;
  }
  .p-megamenu__submenu_content_text:nth-child(2n+1) {
    border-right: 1px #ebebeb solid;
  }
}
.p-megamenu__svg {
  position: absolute;
}
.p-megamenu__svg--icon {
  width: 35px;
  height: 35px;
  left: 12px;
  top: 26px;
  fill: #6e6e6e;
}
@media screen and (max-width: 640px) {
  .p-megamenu__svg--icon {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 640px) {
  .p-megamenu__svg--arrow {
    width: 16px;
    height: 16px;
    top: 39%;
    right: 7px;
    fill: none;
    stroke: #fe7b07;
  }
}

.p-menu-prices-title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  margin: 5px 0 20px;
}
.p-menu-prices-title__small {
  font-size: 14px;
  font-size: 0.875rem;
  margin-left: -0.3em;
}

.p-menu-prices {
  padding: 16px;
  border: 1px solid #C6C6C6;
}
.p-menu-prices__title {
  font-weight: bold;
  line-height: 1.3;
}
.p-menu-prices h3 {
  font-weight: 700;
  line-height: 2rem;
  margin-bottom: 10px;
}
.p-menu-prices p + h3 {
  margin-top: 30px;
}
.p-menu-prices h4 {
  font-weight: 700;
  line-height: 2rem;
  margin-top: 24px;
}
.p-menu-prices h4 + h4 {
  margin-top: 0px;
}
.p-menu-prices .total {
  margin-bottom: 24px;
}
.p-menu-prices .total p {
  margin-top: 20px;
  text-align: right;
  font-weight: 700;
  font-size: 2.6rem;
}
.p-menu-prices .total p .tax-included {
  font-weight: 200;
  font-size: 1rem;
}
.p-menu-prices .total__price {
  font-weight: 700;
  float: right;
  font-size: 27px;
  font-size: 1.6875rem;
}
.p-menu-prices .price {
  float: right;
}
.p-menu-prices p.small {
  font-size: 0.8rem;
}

.p-menu_card__link:hover .p-menu_card__title {
  color: #fe7b07;
}
.p-menu_card__link:hover .p-menu_card__image {
  transform: scale(1.05);
  transition-duration: 0.25s;
}
.p-menu_card__block--image {
  width: 100%;
  margin-bottom: 10px;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .p-menu_card__block--image {
    padding-top: 0;
    margin-bottom: 0;
    position: static;
  }
}
.p-menu_card__image {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 640px) {
  .p-menu_card__image {
    position: static;
  }
}
.p-menu_card__title {
  line-height: 21px;
  font-weight: bold;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (max-width: 640px) {
  .p-menu_card__title {
    line-height: 17px;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

.p-menu_faq {
  width: 493px;
  margin: 20px auto 35px;
}
.p-menu_faq dt, .p-menu_faq dd {
  border-radius: 16px;
  position: relative;
  padding: 16px;
  margin-bottom: 24px;
}
.p-menu_faq dt::before, .p-menu_faq dd::before {
  position: absolute;
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  top: -14px;
  left: 15px;
}
@media screen and (max-width: 640px) {
  .p-menu_faq {
    width: 100%;
  }
}
.p-menu_faq__question {
  background: #F0F0F0;
}
.p-menu_faq__question::before {
  content: "Q";
  color: #959494;
}
.p-menu_faq__answer {
  background: #F7F5F2;
}
.p-menu_faq__answer::before {
  content: "A";
  color: #fe7b07;
}

.p-menu_group_menu {
  width: 100%;
  min-width: 100%;
}
.p-menu_group_menu__item {
  display: block;
  border: 1px solid #C6C6C6;
  border-radius: 2px;
  background: #F7F5F2;
  padding: 10px 17px 12px;
  margin-bottom: 12px;
  font-size: 14px;
}
.p-menu_group_menu__price {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
}

.p-menu_image {
  display: block;
  background-color: #ffffff;
  color: #fe7b07;
  border: 2px solid #fe7b07;
  border-radius: 27px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  line-height: 48px;
  width: 231px;
  margin-right: 20px;
  max-height: 48px;
}
.p-menu_image:before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 23px;
  background: url("/assets/img/icons/camera-a53753df.svg") 0 0 no-repeat;
  position: relative;
  top: 5px;
  margin-right: 10px;
}
.p-menu_image__form {
  display: none;
}
.p-menu_image__preview {
  width: 75px;
  object-fit: cover;
}
.p-menu_image__empty_preview {
  height: 53px;
  width: 75px;
  background-color: #E0E0E0;
  border: 1px solid #CCC;
  color: #E0E0E0;
}
.p-menu_image__empty_preview:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 23px;
  background-color: #C4C4C4;
  mask-image: url("/assets/img/icons/camera-a53753df.svg");
  -webkit-mask-image: url("/assets/img/icons/camera-a53753df.svg");
  fill: red;
  position: relative;
  top: 14px;
  left: 25px;
}

.p-menu_image_description {
  background-color: #F7F5F2;
  border: 3px solid #EEEAE3;
}
.p-menu_image_description__label {
  background-color: #fe7b07;
  width: 105px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  font-size: 12px;
  line-height: 22px;
  border-radius: 12px;
}
.p-menu_image_description__sample_image {
  max-width: 200px;
}
.p-menu_image_description__caption {
  padding-left: 20px;
  list-style-type: disc;
  font-size: 12px;
  font-weight: bold;
  color: #6C6C6C;
}

.p-menu_list__header {
  margin-left: calc((100vw - 100%) / 2 * -1);
  margin-right: calc((100vw - 100%) / 2 * -1);
}
.p-menu_list__header_text {
  top: 13px;
  left: 135px;
  color: #ffffff;
  text-align: left;
}
.p-menu_list__body {
  margin-left: calc((100vw - 100%) / 2 * -1);
  margin-right: calc((100vw - 100%) / 2 * -1);
  background-color: #F7F5F2;
  margin-top: -6px;
}

.p-menu_outline {
  width: 700px;
  min-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .p-menu_outline {
    width: 100%;
    min-width: 100%;
  }
}

.p-menu_related_menu {
  width: 936px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .p-menu_related_menu {
    display: flex;
    overflow: auto;
  }
}
.p-menu_related_menu__item {
  margin-bottom: 24px;
}
@media screen and (max-width: 640px) {
  .p-menu_related_menu__item {
    margin: 0 24px 24px 0;
  }
}
.p-menu_related_menu__image, .p-menu_related_menu img {
  width: 137px;
  height: 133px;
  display: block;
  object-fit: cover;
  background: #fcfcfc;
}
.p-menu_related_menu__category {
  font-size: 14px;
  font-size: 0.875rem;
  color: #959494;
  margin-top: 16px;
}
.p-menu_related_menu__title {
  line-height: 1.6;
  margin-top: 4px;
  color: #000;
}
.p-menu_related_menu__price {
  font-weight: bold;
  color: #000;
  font-size: 18px;
  font-size: 1.125rem;
}
.p-menu_related_menu::-webkit-scrollbar {
  display: none;
}

.p-menu_request_header {
  margin-left: calc((100vw - 100%) / 2 * -1);
  margin-right: calc((100vw - 100%) / 2 * -1);
}

.p-menu_work_time {
  border: solid 1px #C6C6C6;
  padding: 0px;
  width: 100%;
}
.p-menu_work_time__header {
  font-weight: bold;
  height: 100%;
  line-height: 45px;
  background-color: #F4FBFF;
  width: 100px;
  padding: 0px 12px;
  text-align: left;
}
.p-menu_work_time__content {
  padding: 0px 12px;
  font-weight: bold;
  height: 100%;
  line-height: 45px;
  text-align: right;
}

.p-menu_workcontent {
  width: 700px;
  min-width: 700px;
  margin: 0 auto 16px;
}
@media screen and (max-width: 640px) {
  .p-menu_workcontent {
    width: 100%;
    min-width: 100%;
  }
}
.p-menu_workcontent__flow {
  width: 100%;
  list-style-type: decimal;
  margin-left: 1.7em;
}
@media screen and (max-width: 640px) {
  .p-menu_workcontent__flow {
    width: calc(100% - 1.7em);
  }
}
.p-menu_workcontent__item {
  margin-bottom: 8px;
}

.p-merit__wrap {
  margin-top: 20px;
}
.p-merit__before {
  padding: 20px;
  background: #ebebeb;
}
.p-merit__after {
  padding: 20px;
  background: #fff5ec;
}
.p-merit__heading {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.p-merit__case {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .p-merit__case {
    margin: 20px 0 0;
    display: block;
  }
}
.p-merit__case-pic {
  width: 472px;
}
@media screen and (max-width: 640px) {
  .p-merit__case-pic {
    width: 100%;
  }
}
.p-merit__case-text {
  width: 50%;
  padding-left: 20px;
}
@media screen and (max-width: 640px) {
  .p-merit__case-text {
    width: 100%;
    margin-top: 20px;
    padding: 0;
  }
}
.p-merit__case-text--highlight {
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(0%, #ffee01));
  background: linear-gradient(transparent 40%, #ffee01 0%);
}
.p-merit__arrow {
  margin: 20px auto;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid black;
}
.p-merit__text {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .p-merit__text {
    text-align: left;
  }
}
.p-merit__text--highlight {
  font-weight: bold;
  background: linear-gradient(transparent 40%, #ffee01 0%);
}
.p-merit__small {
  font-size: 12px;
  font-size: 0.75rem;
  padding-top: 10px;
}
.p-merit__cards {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .p-merit__cards {
    display: block;
  }
}
.p-merit__cards-list {
  list-style: none;
  width: 24%;
  border: 3px solid #EDEBE8;
  border-radius: 5px;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .p-merit__cards-list {
    width: 100%;
    margin-bottom: 20px;
  }
}
.p-merit__cards-title {
  padding: 10px 0;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}
.p-merit__cards-retail {
  font-size: 14px;
  font-size: 0.875rem;
}
.p-merit__cards-retail--strike {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: line-through;
}
.p-merit__cards-bargain {
  color: #FE7B07;
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-merit__cards-bargain--price {
  font-size: 24px;
  font-size: 1.5rem;
}
.p-merit__cards-difference {
  position: relative;
  display: inline-block;
  margin: 20px 0;
  padding: 7px 10px;
  width: 75%;
  color: #000;
  font-weight: bold;
  background: #FFF5EC;
}
.p-merit__cards-difference:before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50%;
  display: block;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #FFF5EC;
}
.p-merit__cards-value {
  font-size: 14px;
  font-size: 0.875rem;
}
.p-merit__cards-value--price {
  font-size: 24px;
  font-size: 1.5rem;
}
.p-merit__dealer {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}
.p-merit__dealer-list {
  list-style: none;
  width: 30%;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .p-merit__dealer-list {
    width: 100%;
    margin-bottom: 40px;
  }
}
.p-merit__dealer-pic {
  width: 250px;
  border-radius: 50%;
}
.p-merit__dealer-area {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 20px;
}
.p-merit__dealer-name {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  min-height: 55px;
  line-height: 1.6;
  margin-top: 10px;
  padding-bottom: 20px;
  border-bottom: 2px solid #F0F0F0;
}
.p-merit__dealer-text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 20px;
  text-align: left;
}
.p-merit__dealer-btn {
  display: inline-block;
  border: 1px solid #0467cc;
  border-radius: 3px;
  padding: 15px 30px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #0467cc !important;
}
.p-merit__dealer-btn:hover {
  background: #0467cc;
  color: #fff !important;
}

.p-mixpanel-banner {
  position: absolute;
  bottom: 0;
  right: 17%;
}

#cboxOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10499;
  background-color: rgba(125, 118, 111, 0.7);
}
#cboxOverlay:hover {
  cursor: pointer;
}

#colorbox {
  background-color: #fff;
  z-index: 10500;
  outline: 0;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}

#cboxCurrent {
  display: none !important;
}

#cboxPrevious, #cboxNext {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  left: 10px;
  background-color: transparent;
  border: 0;
  outline: 0;
  background-image: url("/assets/img/common/sprite_common-d65f56c9.png");
  background-position: 0px -166px;
  width: 15px;
  height: 30px;
  appearance: none;
  transition: opacity 0.15s ease-out;
}
@media screen and (max-width: 640px) {
  #cboxPrevious, #cboxNext {
    top: 86.5px;
  }
}
#cboxPrevious:hover, #cboxPrevious:active, #cboxPrevious:focus, #cboxNext:hover, #cboxNext:active, #cboxNext:focus {
  cursor: pointer;
  opacity: 0.8;
}

#cboxPrevious {
  transform: rotate(180deg);
}

#cboxNext {
  left: auto;
  right: 10px;
}

#cboxClose {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-block;
  padding: 0 13px 0 38px;
  background-color: #fff;
  border: 1px solid #38598f;
  height: 33px;
  line-height: 33px;
  color: #38598f !important;
  outline: 0;
  border-radius: 5px;
  font-size: 15px;
  font-size: 0.9375rem;
  transition: color 0.15s ease-out, border-color 0.15s ease-out;
}
@media screen and (max-width: 640px) {
  #cboxClose {
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    text-indent: 100%;
    width: 32px;
    height: 32px;
    top: 5px;
    right: 5px;
    border-radius: 4px;
  }
}
#cboxClose:before {
  content: "";
  display: block;
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -6.5px;
  background-image: url("/assets/img/common/sprite_common-d65f56c9.png");
  background-position: 0px 0px;
  width: 13px;
  height: 13px;
  transition: opacity 0.15s ease-out;
}
@media screen and (max-width: 640px) {
  #cboxClose:before {
    left: 50%;
    top: 50%;
    margin-left: -6.5px;
    margin-top: -6.5px;
    background-image: url("/assets/img/common/sprite_common@2x-72af2e82.png");
    width: 13px;
    height: 13px;
    background-position: 0px 0px;
    background-size: 42px;
  }
}
#cboxClose:hover, #cboxClose:active, #cboxClose:focus {
  cursor: pointer;
  border-color: rgb(70.351758794, 111.8090452261, 179.648241206);
  color: rgb(70.351758794, 111.8090452261, 179.648241206) !important;
}
#cboxClose:hover:before, #cboxClose:active:before, #cboxClose:focus:before {
  opacity: 0.8;
}

.p-nabe_media {
  background: #FEF7EE;
  padding: 30px 0 45px;
}
.p-nabe_media-inner {
  background: url("/assets/img/top/nabe_main_pc-19b7ebef.png") left 33% no-repeat;
}
@media screen and (max-width: 640px) {
  .p-nabe_media-inner {
    background: url("/assets/img/top/nabe_main_sp-6e6b6463.png") center 18% no-repeat;
    background-size: 82%;
  }
}
.p-nabe_media__title {
  margin: 10px 0 85px;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}
.p-nabe_media__title span {
  position: relative;
}
@media screen and (max-width: 640px) {
  .p-nabe_media__title span {
    display: block;
    margin-bottom: 12px;
    margin-left: 30px;
  }
}
.p-nabe_media__title span::before {
  content: "";
  background: url("/assets/img/top/tv-03170a51.svg") center center no-repeat;
  width: 88px;
  height: 85px;
  position: absolute;
  margin-left: -82px;
  margin-top: -31px;
}
@media screen and (max-width: 640px) {
  .p-nabe_media__title span::before {
    margin-left: 92px;
    margin-top: -31px;
  }
}
.p-nabe_media__name {
  margin: 0 0 15px 343px;
}
@media screen and (max-width: 640px) {
  .p-nabe_media__name {
    margin: 311px 0 15px 0;
  }
}
.p-nabe_media__name-position {
  margin-bottom: 5px;
}
.p-nabe_media__name-text {
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  font-size: 1.125rem;
}
.p-nabe_media__name-tw {
  vertical-align: middle;
}
.p-nabe_media__info {
  margin-left: 343px;
  margin-bottom: 104px;
  background: #ffffff;
  padding: 25px 20px 20px;
  width: 657px;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .p-nabe_media__info {
    margin-left: 0;
    margin-bottom: 49px;
    width: 100%;
  }
}
.p-nabe_media__info-title {
  margin-bottom: 22px;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
}
.p-nabe_media__history {
  display: flex;
}
@media screen and (max-width: 640px) {
  .p-nabe_media__history {
    flex-wrap: wrap;
  }
}
.p-nabe_media__history-pic {
  margin-right: 43px;
}
@media screen and (max-width: 640px) {
  .p-nabe_media__history-pic {
    margin-bottom: 52px;
    width: 100%;
  }
}
.p-nabe_media__history-link {
  display: flex;
  padding: 20px;
  width: 299px;
  background: #ffffff;
  border: 1px solid #B7B7B7;
  font-weight: bold;
  line-height: 1.37;
  position: relative;
}
@media screen and (max-width: 640px) {
  .p-nabe_media__history-link {
    width: 100%;
    border-radius: 7px;
  }
}
.p-nabe_media__history-link::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 0 22px 18px;
  border-color: transparent transparent transparent #b7b7b7;
  position: absolute;
  left: -25px;
  top: 50%;
  margin-top: -22px;
}
@media screen and (max-width: 640px) {
  .p-nabe_media__history-link::before {
    border-color: #b5b5b5 transparent transparent transparent;
    border-width: 18px 20px 0 18px;
    margin-left: -10px;
    left: 50%;
    top: -14px;
  }
}
.p-nabe_media__history-link p {
  position: relative;
}
@media screen and (max-width: 640px) {
  .p-nabe_media__history-link p {
    margin-top: 25px;
  }
}
.p-nabe_media__history-thmb {
  width: 100px;
  height: 100px;
  margin-right: 21px;
}

.p-nabe_report {
  margin: 40px 0 13px;
}
@media screen and (max-width: 640px) {
  .p-nabe_report {
    margin: 0 0 20px;
  }
}
.p-nabe_report__title {
  margin: 0 auto 29px;
  padding: 54px 0 60px;
  background: url("/assets/img/top/nabe_bg_pc-37d680fb.svg") bottom no-repeat;
  background-size: 100%;
  text-align: center;
  font-weight: bold;
  width: 1000px;
  max-width: 1000px;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 640px) {
  .p-nabe_report__title {
    background: url("/assets/img/top/nabe_bg_sp-b5688e65.svg") bottom no-repeat;
    background-size: 100%;
    margin: 0 0 16px;
    padding: 40px 0 50px;
    width: 100%;
  }
}
.p-nabe_report__title-inner {
  background: url("/assets/img/top/nabe_title_ballon_pc-6bdd1dfa.svg") bottom no-repeat;
  position: relative;
  width: 393px;
  margin: auto;
}
@media screen and (max-width: 640px) {
  .p-nabe_report__title-inner {
    margin-left: 20px;
    width: 212px;
    background: url("/assets/img/top/nabe_title_ballon_sp-99eb42d3.svg") bottom no-repeat;
  }
}
.p-nabe_report__title-inner::before {
  content: "";
  background: url("/assets/img/top/title_tvspecial-59efa6ea.svg") center center no-repeat;
  background-size: 100%;
  width: 70px;
  height: 71px;
  position: absolute;
  left: 49px;
  top: -49px;
}
@media screen and (max-width: 640px) {
  .p-nabe_report__title-inner::before {
    width: 51px;
    height: 51px;
    left: -11px;
    top: -22px;
  }
}
.p-nabe_report__title span {
  font-size: 15px;
  font-size: 0.9375rem;
  display: block;
  margin-bottom: 8px;
}
@media screen and (max-width: 640px) {
  .p-nabe_report__title span {
    font-size: 12px;
    font-size: 0.75rem;
    margin-bottom: 10px;
  }
}
.p-nabe_report__title em {
  color: #FE7B07;
  font-weight: bold;
  font-size: 22px;
  font-size: 1.375rem;
}
.p-nabe_report__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .p-nabe_report__list {
    flex-wrap: wrap;
  }
}
.p-nabe_report__time {
  color: #6E6E6E;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 640px) {
  .p-nabe_report__time {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.p-nabe_report__list li:first-child .p-nabe_report__time::before {
  content: "NEW";
  color: #ffffff;
  margin-right: 0.8em;
  background: #FE7B07;
  width: 3em;
  padding: 2px 3px;
  font-weight: bold;
}

h3.p-nabe_report__list_title {
  font-size: 16px;
  font-size: 1rem;
}

.p-note-box {
  max-width: 800px;
  margin: 70px auto 0;
  padding: 0 0 5px;
  border-radius: 5px;
  border: 3px solid #fe7b07;
}
.p-note-box__header {
  background-color: #fe7b07;
  color: #fff;
  padding: 16px 30px 16px 210px;
  display: flex;
}
@media screen and (max-width: 640px) {
  .p-note-box__header {
    padding-left: 103px;
  }
}
.p-note-box__header-title {
  text-indent: -170px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
}
.p-note-box__header-title > span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 170px;
  height: 1px;
}
.p-note-box__header-title > span > img {
  position: absolute;
  left: 0;
  top: -50px;
}
@media screen and (max-width: 640px) {
  .p-note-box__header-title {
    text-indent: -94px;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-note-box__header-title > span {
    width: 94px;
  }
  .p-note-box__header-title > span > img {
    transform: scale(0.55);
    transform-origin: 0 0;
  }
}
.p-note-box__p {
  padding: 25px 30px 10px 210px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.7;
}
@media screen and (max-width: 640px) {
  .p-note-box__p {
    font-size: 16px;
    font-size: 1rem;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 10px;
  }
}
.p-note-box__p strong {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
  color: #fe7b07;
}
.p-note-box__highlight {
  background: linear-gradient(transparent 50%, #ffee01 0%);
}
.p-note-box__nav {
  padding: 0 30px 10px 0;
  text-align: right;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .p-note-box__nav {
    padding-bottom: 10px;
  }
}
.p-note-box__more {
  position: relative;
  display: block;
  padding-right: 20px;
  font-weight: bold;
  text-align: right;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-note-box__more, .p-note-box__more:visited, .p-note-box__more:hover, .p-note-box__more:focus, .p-note-box__more:active {
  color: #0467cc;
}
.p-note-box__more::after {
  position: absolute;
  top: calc(50% - 3.5px);
  right: 0;
  vertical-align: middle;
  display: inline-block;
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid #fe7b07;
  border-right: 1px solid #fe7b07;
  transform: rotate(45deg);
}

.p-note-list {
  max-width: 800px;
  margin: 0 auto;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
}
.p-note-list > li {
  display: flex;
  align-items: baseline;
}
.p-note-list > li:before {
  content: "※";
  margin-right: 7px;
}
@media screen and (max-width: 640px) {
  .p-note-list > li {
    display: block;
  }
}

.p-order-info {
  float: right;
  width: 612px;
}
@media screen and (max-width: 640px) {
  .p-order-info {
    float: none;
    width: auto;
  }
}
.p-order-info--name {
  float: right;
  width: 580px;
}
@media screen and (max-width: 640px) {
  .p-order-info--name {
    float: none;
    width: 100%;
  }
}
.p-order-info__title {
  font-size: 14px;
  font-size: 0.875rem;
}
.p-order-info__title--plus:before {
  position: absolute;
  display: block;
  content: "+";
  width: 22px;
  height: 22px;
  top: 0;
  left: 50%;
  margin-left: -0.5em;
  font-family: Lato;
  font-size: 44px;
  font-size: 2.75rem;
}
@media screen and (max-width: 640px) {
  .p-order-info__title--plus:before {
    width: 11px;
    height: 11px;
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 640px) {
  .p-order-info__table {
    overflow: visible;
  }
}
.p-order-info__label {
  border: none;
  background-color: #f7f6f5;
}
.p-order-info__dl {
  box-sizing: border-box;
  border: 1px solid #dfddd9;
  background-color: #faf9f7;
  box-shadow: inset #f0ede8 0px 0px 0px 3px;
}
.p-order-info__dl--white {
  background-color: #fff;
}
.p-order-info__dt {
  color: #554e48;
  border-bottom: 1px solid #e6e3e0;
  line-height: 1.2;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 640px) {
  .p-order-info__dt {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.p-order-info__dt--check:before {
  position: absolute;
  display: block;
  content: "";
  background: url("/assets/img/detail_estimate/icon_check-c97a1028.png") no-repeat;
  background-size: contain;
  top: 16px;
  left: 14px;
  width: 13px;
  height: 10px;
}
@media screen and (max-width: 640px) {
  .p-order-info__dt--check:before {
    top: 22px;
    left: 5px;
    width: 11px;
    height: 9px;
  }
}
.p-order-info__dd {
  line-height: 1.2;
  border-bottom: 1px solid #e6e3e0;
  font-weight: bold;
  color: #333333;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-order-info__dd:last-child {
  border-bottom: 0;
}
@media screen and (max-width: 640px) {
  .p-order-info__dd {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-order-info__dd--charge {
  color: #fe7b07;
}
.p-order-info__icon {
  top: 14px;
  left: 0;
  background-color: #333;
  border-radius: 3px;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #fff;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .p-order-info__icon {
    top: 15px;
    font-size: 9px;
  }
}
.p-order-info__icon--charge {
  background-color: #fe7b07;
}

.p-our-services .txt_notes {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #666;
  text-align: right;
}
.p-our-services__block {
  width: 100%;
}
.p-our-services__block:first-child {
  border-top: none;
}
@media screen and (max-width: 640px) {
  .p-our-services__block {
    display: block;
    border-top: none;
  }
}
@media screen and (max-width: 640px) {
  .p-our-services__block:last-child .service_cell:last-child {
    border-top: none;
  }
}
.p-our-services__item {
  padding: 20px 0;
}
.p-our-services__item:nth-child(3n+1) {
  padding-left: 0;
}
.p-our-services__item:nth-child(3n) {
  padding-right: 0;
  border-right: none;
}
@media screen and (max-width: 640px) {
  .p-our-services__item {
    padding: 0;
    width: 100%;
    display: block;
    border-right: none;
  }
}
.p-our-services__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 21px;
  margin-left: 0;
}
@media screen and (max-width: 640px) {
  .p-our-services__title {
    padding-top: 10px;
  }
}
.p-our-services__title--icon {
  margin: 0 5px 0 0;
  width: 22px;
  display: inline-block;
}
.p-our-services__title--icon img {
  margin-bottom: -3px;
  width: 100%;
}
.p-our-services__ul {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0 0 0;
}
@media screen and (max-width: 640px) {
  .p-our-services__ul {
    margin-bottom: 15px;
  }
}
.p-our-services__li {
  margin: 0 15px 15px 0;
  box-sizing: border-box;
  overflow: hidden;
  border: 2px solid #EDEDED;
  border-radius: 3px;
  flex-basis: 32.3%;
  max-width: 32.3%;
  height: 80px;
  flex-grow: 0;
  flex-shrink: 0;
}
.p-our-services__li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 640px) {
  .p-our-services__li {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.p-our-services a {
  display: flex;
  align-items: center;
}
.p-our-services a:hover {
  opacity: 0.75;
}
.p-our-services .image {
  width: 80px;
  height: 80px;
}
.p-our-services p {
  padding-left: 10px;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
}

.p-page_article_list {
  width: 100%;
  margin: 10px 0;
}
.p-page_article_list__link {
  display: flex;
}
.p-page_article_list__link:hover .p-page_article_list__image {
  transform: scale(1.08);
  transition-duration: 0.25s;
}
@media screen and (max-width: 640px) {
  .p-page_article_list__link:hover .p-page_article_list__image {
    pointer-events: none;
  }
}
.p-page_article_list__link:hover .p-page_article_list__disp {
  opacity: 0.75;
}
.p-page_article_list__thumb {
  width: 155px;
  height: 103px;
  overflow: hidden;
}
.p-page_article_list__image {
  width: 100%;
}
.p-page_article_list__text {
  margin-left: 20px;
  width: calc(100% - 175px);
  line-height: 1.5;
}
.p-page_article_list__title {
  font-weight: bold;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (max-width: 640px) {
  .p-page_article_list__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}
.p-page_article_list__disp {
  margin-top: 10px;
  color: #6e6e6e;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 640px) {
  .p-page_article_list__disp {
    margin-top: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}

.p-page_card--new .p-page_card__image-block {
  position: relative;
}
.p-page_card--new .p-page_card__image-block:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 30px solid transparent;
  border-left: 30px solid #fe7b07;
  z-index: 2;
}
.p-page_card--new .p-page_card__image-block:after {
  content: "NEW";
  position: absolute;
  top: -1px;
  left: -1px;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: bold;
  color: white;
  z-index: 3;
  transform: rotate(-45deg);
}
.p-page_card__link:hover .p-page_card__title {
  color: #0467cc;
}
.p-page_card__link:hover .p-page_card__image {
  transform: scale(1.05);
  transition-duration: 0.25s;
}
.p-page_card__image-block {
  overflow: hidden;
  position: relative;
  padding-top: 73.148%;
}
@media screen and (max-width: 640px) {
  .p-page_card__image-block {
    padding-top: 75.308%;
  }
}
.p-page_card__image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.p-page_card__title {
  padding-top: 10px;
  line-height: 21px;
  font-weight: bold;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (max-width: 640px) {
  .p-page_card__title {
    line-height: 17px;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

.p-page_link {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .p-page_link {
    margin: 0 -10px;
  }
}

.p-page_link_item {
  display: inline-block;
  width: 20%;
  border-right: 1px solid #fff;
  text-align: center;
  line-height: 1.2;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .p-page_link_item {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.p-page_link_item > a {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 12px 0;
  background-color: #f7f5f2;
  color: #333;
}
@media screen and (max-width: 640px) {
  .p-page_link_item > a {
    padding: 15px 0;
  }
}
.p-page_link_item > a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 3px auto 0;
  border-top: solid 1px #fe7b07;
  border-right: solid 1px #fe7b07;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.p-page_link_item > a:hover {
  background-color: #fe7b07;
  color: #fff;
}
.p-page_link_item > a:hover::after {
  border-color: #fff;
}
@media screen and (max-width: 640px) {
  .p-page_link_item:nth-child(5n) {
    letter-spacing: -0.2em;
  }
}

.p-page_list {
  border-bottom: 1px #ebebeb solid;
}
.p-page_list:last-child {
  border-bottom: none;
}
.p-page_list__link {
  display: block;
  position: relative;
}
.p-page_list__link--list {
  padding: 13px 30px 13px 8px;
}
.p-page_list__link--ranking {
  padding: 13px 30px 13px 30px;
}
.p-page_list__title {
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-page_list__svg {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 17px;
  right: 10px;
  stroke: #fe7b07;
  fill: none;
}
.p-page_list__rank {
  width: 17px;
  height: 17px;
  position: absolute;
  text-align: center;
  top: 16px;
  left: 7px;
  line-height: 17px;
  font-weight: bold;
  font-size: 11px;
  font-size: 0.6875rem;
}
.p-page_list__rank--1 {
  background-image: url("/assets/img/icons/gold-5bed5832.svg");
  background-repeat: no-repeat;
  color: white;
}
.p-page_list__rank--2 {
  background-image: url("/assets/img/icons/silver-fbd854d3.svg");
  background-repeat: no-repeat;
  color: white;
}
.p-page_list__rank--3 {
  background-image: url("/assets/img/icons/bronze-52b7deed.svg");
  background-repeat: no-repeat;
  color: white;
}

.p-pages__title--h2 {
  font-size: 22px;
  font-size: 1.375rem;
  margin-top: 60px;
  padding: 15px 10px;
  font-weight: bold;
  border-left: 5px #fe7b07 solid;
  background-color: #f6f6f6;
}
.p-pages__title--h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 45px;
  padding: 10px 0;
  font-weight: bold;
  border-bottom: 2px #ebebeb solid;
}
.p-pages__title--h4 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 20px;
  padding: 7px 0;
  font-weight: bold;
  border-bottom: 1px #ebebeb dotted;
}
.p-pages__text {
  overflow: hidden;
  line-height: 1.6;
}
.p-pages__text--right {
  float: right;
  width: 45%;
  margin: 20px 0 20px 20px;
}
@media screen and (max-width: 640px) {
  .p-pages__text--right {
    float: none;
    width: 100%;
    margin: 15px 0 0 0;
  }
}
.p-pages__text--left {
  float: left;
  width: 45%;
  margin: 20px 20px 20px 0;
}
@media screen and (max-width: 640px) {
  .p-pages__text--left {
    float: none;
    width: 100%;
    margin: 15px 0 0 0;
  }
}
.p-pages__text.is-clearboth {
  clear: both;
}
.p-pages__text--opa {
  display: block;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.p-pages__text--opa:after {
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}
.p-pages__image-is-fullsize {
  width: 100%;
}
.p-pages__image-is-half-right {
  float: right;
  width: 48%;
  padding-left: 20px;
}
@media screen and (max-width: 640px) {
  .p-pages__image-is-half-right {
    width: 100%;
  }
}
.p-pages__image-is-half-left {
  float: left;
  width: 48%;
  padding-right: 20px;
}
@media screen and (max-width: 640px) {
  .p-pages__image-is-half-left {
    width: 100%;
  }
}
.p-pages__image-is-half-left-is-center {
  display: block;
  margin: 0 auto;
}
.p-pages__image-is-left {
  float: left;
  width: 32%;
  margin-right: 20px;
}
@media screen and (max-width: 640px) {
  .p-pages__image-is-left {
    float: none;
    width: 100%;
    margin: 0;
  }
}
.p-pages__image-is-right {
  float: right;
  width: 32%;
  margin-left: 20px;
}
@media screen and (max-width: 640px) {
  .p-pages__image-is-right {
    float: none;
    width: 100%;
    margin: 0;
  }
}
.p-pages__image-mini-right {
  float: right;
  width: 20%;
  margin-top: 20px;
  margin-left: 20px;
}
@media screen and (max-width: 640px) {
  .p-pages__image-mini-right {
    width: 40%;
  }
}
.p-pages__image-mini-left {
  float: left;
  width: 20%;
  margin-top: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 640px) {
  .p-pages__image-mini-left {
    width: 40%;
  }
}
.p-pages__blockquote {
  position: relative;
  padding: 30px 15px 10px;
  background: #f4fbff;
  border-left: 3px #ebebeb solid;
}
.p-pages__blockquote:before {
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  left: 17px;
  width: 33px;
  height: 30px;
  background: url("/assets/img/top/top_icon_quote-5715b62a.svg") 0 0 no-repeat;
}
.p-pages__reference {
  font-size: 14px;
  font-size: 0.875rem;
  color: #6e6e6e;
  overflow: hidden;
}
.p-pages__reference a {
  color: #6e6e6e;
}
.p-pages__ul {
  padding-left: 20px;
}
.p-pages__ul .p-pages__text {
  padding: 0;
  overflow: initial;
}
.p-pages__ul--points {
  max-width: 610px;
  background-color: #F8F8F8;
  border: 2px solid #EBEBEB;
  padding: 20px 20px 20px 30px;
}
.p-pages__ol {
  list-style-type: decimal;
  padding-left: 20px;
}
.p-pages__ol .p-pages__text {
  padding: 0;
}
.p-pages__li--ul {
  position: relative;
}
.p-pages__li--ul:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 8px;
  left: -14px;
  background: #fe7b07;
}
.p-pages__table {
  margin: 20px 23px 0;
  width: 93%;
}
@media screen and (max-width: 640px) {
  .p-pages__table {
    margin: 15px 6px 0;
    width: 97%;
  }
}
.p-pages__strong--double {
  font-weight: bold;
  background: linear-gradient(transparent 40%, #ffee01 0%);
}
.p-pages__strong--red {
  color: #e72f2f;
}
.p-pages__a-next {
  text-align: right;
  display: block;
  color: #0467cc !important;
  font-weight: bold;
}

.balloon {
  display: flex;
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.balloon__left {
  justify-content: left;
}
.balloon__right {
  justify-content: flex-end;
}
.balloon_pic__img {
  max-width: 76px;
  border-radius: 50%;
  border: 2px solid #ededed;
}
.balloon_pic__caption {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}
.balloon_pic__left {
  margin-right: 20px;
  justify-content: left;
}
.balloon_pic__right {
  margin-left: 20px;
  justify-content: flex-end;
}
.balloon_text__left {
  position: relative;
  padding: 20px;
  border: 2px solid #EDEDED;
  border-radius: 3px;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 640px) {
  .balloon_text__left {
    padding: 15px;
  }
}
.balloon_text__left:before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -15px;
  top: 35%;
  border-right: 15px solid #EDEDED;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
.balloon_text__left:after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -12px;
  top: 35%;
  border-right: 15px solid #fff;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
.balloon_text__right {
  position: relative;
  padding: 20px;
  border: 2px solid #EDEDED;
  border-radius: 3px;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 640px) {
  .balloon_text__right {
    padding: 15px;
  }
}
.balloon_text__right:before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -15px;
  top: 35%;
  border-left: 15px solid #EDEDED;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
.balloon_text__right:after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -12px;
  top: 35%;
  border-left: 15px solid #fff;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.p-pagination {
  border-color: #ccc;
  overflow: hidden;
  margin: 30px 0 15px 0;
  padding-bottom: 5px;
  border-style: dotted;
  border-bottom-width: 1px;
}
@media screen and (max-width: 640px) {
  .p-pagination {
    margin-top: 15px;
    padding-bottom: 10px;
  }
}
.p-pagination--bottom {
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 0;
  border-top-width: 1px;
  border-bottom-width: 0px;
}
@media screen and (max-width: 640px) {
  .p-pagination--bottom {
    margin-top: 0px;
    padding-top: 5px;
  }
}
.p-pagination__block--left {
  letter-spacing: 0.025em;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 640px) {
  .p-pagination__block--left {
    overflow: hidden;
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.p-pagination__block--right {
  text-align: right;
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: "Lato Semibold", Helvetica, Arial, Verdana, sans-serif;
}
@media screen and (max-width: 640px) {
  .p-pagination__block--right {
    text-align: center;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 640px) {
  .p-pagination__index {
    float: left;
  }
}
@media screen and (max-width: 640px) {
  .p-pagination__comment {
    float: right;
  }
}

.p-prefecture-voice {
  min-width: 1032px;
  background: #f6f6f6;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .p-prefecture-voice {
    min-width: 100%;
  }
}
.p-prefecture-voice__voice {
  justify-content: center;
}
.p-prefecture-voice__voice-item {
  margin: 20px;
}
@media screen and (max-width: 640px) {
  .p-prefecture-voice__voice-item {
    margin: 0 auto;
  }
}

.p-prefecture__block {
  background: #f6f6f6;
}
.p-prefecture__dl {
  display: flex;
  padding: 7px 0;
  font-weight: bold;
  font-size: 13px;
  font-size: 0.8125rem;
}
.p-prefecture__dt {
  flex: 1;
  text-align: center;
}
.p-prefecture__dd {
  flex: 4;
}
.p-prefecture__ul {
  display: flex;
  flex-wrap: wrap;
}
.p-prefecture__li {
  margin-left: 10px;
}
@media screen and (max-width: 640px) {
  .p-prefecture__li {
    margin-left: 20px;
  }
}
.p-prefecture__link {
  color: #0467cc;
}
.p-prefecture__link:hover {
  text-decoration: underline;
}
.p-prefecture__link:visited {
  color: #0467cc;
}
.p-prefecture__link--icon-arrow {
  position: relative;
  display: block;
  text-align: right;
  margin-right: 12px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}
.p-prefecture__link--icon-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: -10px;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fe7b07;
  border-right: 1px solid #fe7b07;
  transform: rotate(45deg);
}
.p-prefecture--in_main {
  font-size: 16px;
  font-weight: normal;
}
.p-prefecture--in_main .p-prefecture__block {
  font-weight: bold;
}
.p-prefecture--in_main .p-prefecture__li {
  margin-left: 18px;
}
.p-prefecture__title-lv1 {
  margin-bottom: 30px;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
}
.p-prefecture__title-lv1 > svg {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  vertical-align: bottom;
}
.p-prefecture__title-lv2--border {
  margin: 45px 0 20px;
  padding: 10px;
  border-left: 5px #fe7b07 solid;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .p-prefecture__title-lv2--border {
    padding: 5px;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-prefecture__title-lv2--icon {
  margin-bottom: 28px;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: bold;
}
.p-prefecture__title-lv2--icon > svg {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  vertical-align: bottom;
}
.p-prefecture__pickup {
  margin-bottom: 30px;
}
.p-prefecture__pickup > a {
  cursor: pointer;
}
.p-prefecture__thumnail {
  width: 100%;
  margin-bottom: 5px;
}
.p-prefecture__key-visual {
  display: block;
  margin: 0 auto;
  height: 100%;
  object-fit: cover;
}
.p-prefecture__dealer-image {
  flex-basis: 20%;
  max-width: 20%;
}
.p-prefecture__dealer-image > img {
  width: 50px;
}
.p-prefecture__dealer-box {
  flex-basis: 80%;
  max-width: 80%;
}
.p-prefecture__dealer-name {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}
.p-prefecture__dealer-address, .p-prefecture__dealer-text {
  font-size: 12px;
  font-size: 0.75rem;
}
.p-prefecture__dealer-address > span, .p-prefecture__dealer-text > span {
  color: #0467cc;
}
.p-prefecture__dealer-text {
  margin: 0 10px;
}
.p-prefecture__normal-text {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .p-prefecture__normal-text {
    margin-top: 7px;
  }
}
.p-prefecture__list--sub {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
}
.p-prefecture__list--square {
  margin-top: 30px;
  list-style: square;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}
.p-prefecture__list-item--square {
  margin: 0 0 15px 1em;
  color: #fe7b07;
}
.p-prefecture__list-text {
  color: #000000;
}
.p-prefecture__highlight {
  background: linear-gradient(transparent 50%, #ffee01 0%);
}
.p-prefecture__voice-area {
  background: #f6f6f6;
  border-radius: 6px;
  margin-top: 100px;
  padding: 20px 30px;
}
@media screen and (max-width: 640px) {
  .p-prefecture__voice-area {
    background: none;
    margin-top: 50px;
    padding: 0 30px;
  }
}
.p-prefecture__voice-wrap {
  background: #f6f6f6;
  padding: 20px 40px;
}
@media screen and (max-width: 640px) {
  .p-prefecture__voice-wrap {
    padding: 20px 0;
  }
}
.p-prefecture__voice {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .p-prefecture__voice {
    display: block;
  }
}
.p-prefecture__voice-item {
  width: 296px;
}
.p-prefecture__voice-question {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 10px 0;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
}
.p-prefecture__voice-question::after {
  content: "";
  position: absolute;
  left: 50px;
  display: block;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-top: 30px solid white;
}
.p-prefecture__voice-answer {
  margin-top: 30px;
  text-align: center;
  font-size: 11px;
  font-size: 0.6875rem;
}
.p-prefecture__voice-answer > img {
  display: block;
  margin: 0 auto 20px;
}
@media screen and (max-width: 640px) {
  .p-prefecture__voice-answer {
    margin-bottom: 20px;
  }
}
.p-prefecture__estimate-button {
  width: 438px;
  margin: 30px auto;
}
@media screen and (max-width: 640px) {
  .p-prefecture__estimate-button {
    width: 100%;
  }
}
.p-prefecture__accordion-box {
  overflow: hidden;
  max-height: 7.5em;
  margin-top: 10px;
}
.p-prefecture__accordion-button {
  position: relative;
  margin-top: -30px;
  padding-top: 35px;
  text-align: center;
  background-image: linear-gradient(to top, white 0%, white 45%, rgba(255, 255, 255, 0) 100%);
}
.p-prefecture__accordion-button.is-close {
  display: none;
  background-image: none;
}
.p-prefecture__accordion-link {
  position: relative;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  cursor: pointer;
  color: #0467cc;
}
.p-prefecture__accordion-link:hover {
  text-decoration: underline;
}
.p-prefecture__accordion-link::after {
  content: "";
  position: absolute;
  right: -15px;
  top: calc(50% - 5px);
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fe7b07;
  border-right: 2px solid #fe7b07;
  transform: rotate(135deg);
}
.p-prefecture__accordion-link--up::after {
  transform: translateY(30%) rotate(0.88turn);
}
.p-prefecture.is-open .p-prefecture__accordion-box {
  max-height: inherit !important;
}
.p-prefecture.is-open .p-prefecture__accordion-button.is-open {
  display: none;
}
.p-prefecture.is-open .p-prefecture__accordion-button.is-close {
  display: block;
}
.p-prefecture__row {
  border: 3px solid #EBEBEB;
  position: relative;
  margin-bottom: 20px;
}

.p-price-table {
  border-top: 1px solid #dbdbdb;
  border-left: 1px solid #dbdbdb;
}
.p-price-table__btn {
  bottom: 15px;
}
.p-price-table__btn.c-btn.c-btn--border {
  position: absolute;
  width: 254px;
  font-weight: 100;
}
.p-price-table__tr--bg {
  background-color: #fbf9f5;
}
.p-price-table__th {
  background-color: #eae7e2;
  border-right: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-price-table__th:nth-child(1) {
  width: 33%;
}
.p-price-table__th:nth-child(2) {
  width: 38%;
}
.p-price-table__th:nth-child(3) {
  width: 28%;
}
@media screen and (max-width: 640px) {
  .p-price-table__th {
    line-height: 1.4;
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.p-price-table__td {
  border-right: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .p-price-table__td {
    line-height: 1.4;
    font-size: 11px;
    font-size: 0.6875rem;
  }
}

.p-pro_card__inner {
  display: flex;
}
@media screen and (max-width: 640px) {
  .p-pro_card__inner {
    display: block;
  }
}
.p-pro_card__dealer_block {
  width: 249px;
  height: 172px;
  background: #f7f5f2;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .p-pro_card__dealer_block {
    width: auto;
  }
}
.p-pro_card__dealer_block_thumb {
  width: 249px;
  height: 172px;
  margin-top: 5px;
  object-fit: cover;
}
@media screen and (max-width: 640px) {
  .p-pro_card__dealer_block_thumb {
    width: auto;
  }
}
.p-pro_card__content {
  padding: 10px 20px 8px 20px;
  color: #000;
  width: calc(100% - 249px);
  position: relative;
}
@media screen and (max-width: 640px) {
  .p-pro_card__content {
    padding: 10px 20px 10px 20px;
    width: auto;
  }
}
.p-pro_card__content_period {
  display: flex;
  position: absolute;
  right: 20px;
  top: 10px;
}
.p-pro_card__head {
  display: flex;
  justify-content: space-between;
}
.p-pro_card_star {
  display: flex;
  position: absolute;
  left: 20px;
  top: 15px;
}
@media screen and (max-width: 640px) {
  .p-pro_card_star {
    top: 10px;
  }
}
.p-pro_card__dealer_address {
  font-size: 14px;
  font-size: 0.875rem;
  color: #000;
}
.p-pro_card__dealer_name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.p-pro_card__p {
  font-size: 14px;
  font-size: 0.875rem;
}
.p-pro_card__next {
  position: absolute;
  right: 20px;
  bottom: 10px;
  color: #0467cc;
  font-weight: bold;
  font-size: 12px;
  font-size: 0.75rem;
}
.p-pro_card__link {
  color: #000;
}
.p-pro_card__link:hover .p-pro_card__dealer_name {
  color: #0467cc;
  text-decoration: none;
}
.p-pro_card__link:hover .p-pro_card__dealer_block_thumb {
  opacity: 0.8;
}
.p-pro_card__link:hover .p-pro_card__next {
  text-decoration: underline;
}

.p-product-feature__title {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: bold;
  color: #444;
}
.p-product-feature__link {
  background-image: url("/assets/img/common/sprite_common-d65f56c9.png");
  background-position: 0px -132px;
  width: 14px;
  height: 14px;
  transition: opacity 0.15s ease-out;
}
.p-product-feature__link:hover {
  cursor: pointer;
  opacity: 0.8;
}
@media screen and (max-width: 640px) {
  .p-product-feature__link {
    background-image: url("/assets/img/common/sprite_common@3x-f559cfb8.png");
    width: 14px;
    height: 14px;
    background-position: 0px -78.6666666667px;
    background-size: 32px;
  }
}
@media screen and (max-width: 640px) and (max-device-width: 375px) and (-webkit-max-device-pixel-ratio: 2) {
  .p-product-feature__link {
    background-image: url("/assets/img/common/sprite_common@2x-72af2e82.png");
    width: 14px;
    height: 14px;
    background-position: 0px -92px;
    background-size: 42px;
  }
}
.p-product-feature__ul {
  line-height: 22px;
}
.p-product-feature__dt {
  color: #554e48;
  float: left;
  clear: left;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.2;
}
.p-product-feature__dd:last-child {
  margin-bottom: 0;
}
.p-product-feature__li {
  padding-top: 2px;
  padding-bottom: 2px;
  border: 0;
  float: left;
  line-height: 1;
  margin: 0 2px 2px 0;
  color: #fff;
  font-weight: bold;
  background-color: #de9d37;
  font-size: 10px;
  font-size: 0.625rem;
  border-radius: 1px;
}
.p-product-feature__li.tag_colorful_disabled {
  background-color: #e0e0e0 !important;
  font-weight: normal;
}

@media screen and (max-width: 640px) {
  .p-product__btn--single.c-btn {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.p-product_card--new .p-product_card__block--image {
  position: relative;
}
.p-product_card--new .p-product_card__block--image:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 30px solid transparent;
  border-left: 30px solid #fe7b07;
  z-index: 2;
}
.p-product_card--new .p-product_card__block--image:after {
  content: "NEW";
  position: absolute;
  top: -1px;
  left: -1px;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: bold;
  color: white;
  z-index: 3;
  transform: rotate(-45deg);
}
@media screen and (max-width: 640px) {
  .p-product_card__link {
    display: flex;
  }
}
.p-product_card__link:hover .p-product_card__title {
  color: #0467cc;
}
.p-product_card__link:hover .p-product_card__image {
  transform: scale(1.05);
  transition-duration: 0.25s;
}
.p-product_card__block--image {
  width: 100%;
  margin-bottom: 10px;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .p-product_card__block--image {
    flex: 1;
    padding-top: 0;
    margin-bottom: 0;
    position: static;
  }
}
@media screen and (max-width: 640px) {
  .p-product_card__block--description {
    flex: 2;
    padding: 15px 0 15px 15px;
  }
}
.p-product_card__image {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 640px) {
  .p-product_card__image {
    position: static;
  }
}
.p-product_card__badge {
  line-height: 12px;
  padding: 3px 10px;
  color: #6e6e6e;
  border: 1px #6e6e6e solid;
  border-radius: 2px;
  font-size: 12px;
  font-size: 0.75rem;
}
.p-product_card__title {
  line-height: 17px;
  font-weight: bold;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 640px) {
  .p-product_card__title {
    line-height: 17px;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-product_card__price {
  line-height: 18px;
}

.p-product_list__title {
  line-height: 15px;
  font-size: 13px;
  font-size: 0.8125rem;
}

.p-question__hero {
  margin: 10px 0 30px;
  padding: 50px 0 60px;
  background-image: url("/assets/img/question/hero-bg@2x-0be0a875.png");
  background-size: 300px 250px;
}
.p-question__title--main {
  text-indent: 1rem;
  margin-bottom: 20px;
}
.p-question__title--sub {
  font-size: 16px;
  font-weight: normal;
  line-height: 3;
}
@media screen and (max-width: 640px) {
  .p-question__title--sub {
    font-size: 13px;
  }
}
.p-question__balloon {
  position: relative;
  line-height: 1.8;
  font-size: 14px;
  border: 1px solid #b2b2b2;
  border-radius: 3px;
}
.p-question__balloon::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.p-question__balloon--question {
  padding: 25px 30px 30px;
}
.p-question__balloon--question::before {
  bottom: -20px;
  right: 20px;
  border-width: 10px 5px 10px 5px;
  border-color: #b2b2b2 transparent transparent transparent;
}
@media screen and (max-width: 640px) {
  .p-question__balloon--question {
    padding: 10px 20px 30px;
  }
}
.p-question__balloon--answer {
  padding: 5px 7px 30px;
}
.p-question__balloon--answer::before {
  top: -10px;
  left: 44px;
  border-width: 0 5px 10px 5px;
  border-color: transparent transparent #b2b2b2 transparent;
}
@media screen and (max-width: 640px) {
  .p-question__balloon--answer::before {
    left: 20px;
  }
}
@media screen and (max-width: 640px) {
  .p-question__balloon--answer {
    padding: 10px 20px 30px;
  }
}
.p-question__question-summary {
  float: right;
  margin-top: 20px;
  margin-right: 10px;
}
.p-question__answer-summary {
  display: flex;
  padding: 20px;
}
@media screen and (max-width: 640px) {
  .p-question__answer-summary {
    padding: 20px 0;
  }
}
.p-question__image--answer {
  display: block;
  width: auto;
  height: auto;
  margin-top: 10px;
}
.p-question__good-button {
  display: flex;
}
.p-question__good-button--left {
  border-radius: 3px 0px 0px 3px;
  margin-right: 0;
}
.p-question__good-button--left:hover {
  cursor: pointer;
}
.p-question__good-button--right {
  position: relative;
  font-size: 12px;
  padding: 0 10px 0 8px;
  border: 1px solid #38598f;
  color: #38598f;
  border-radius: 0px 3px 3px 0px;
  font-weight: bold;
  height: 28px;
  box-sizing: border-box;
  line-height: 26px;
}
.p-question__good-button--right::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 5px 0;
  border-color: transparent white transparent transparent;
  margin-top: -5px;
}
.p-question__banner--sidebar {
  display: block;
  width: 242px;
  height: 140px;
  padding-top: 84px;
  text-align: center;
  box-sizing: border-box;
  color: black;
  background-image: url("/assets/img/banner/question_sidebar@2x-3b153e27.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.p-question__banner--sidebar:hover {
  opacity: 0.8;
}

.p-question-list__item:hover {
  opacity: 0.8;
}
.p-question-list__arrow {
  position: absolute;
  top: 50%;
  right: 14px;
  margin-top: -20px;
  width: 8px;
}
.p-question-list__icon-block--question {
  top: 0;
  left: 0;
}
.p-question-list__icon-block--answer {
  top: 0;
  right: -20px;
}
.p-question-list__text {
  position: absolute;
  top: 3px;
  font-size: 20px;
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-weight: bold;
  color: black;
}
.p-question-list__text--question {
  left: 8px;
}
.p-question-list__text--answer {
  right: 8px;
}
.p-question-list__icon-bg {
  position: relative;
  top: -40px;
  width: 80px;
  height: 80px;
  transform: rotate(-45deg);
  background: #f7f5f2;
  border: 1px solid #b2b2b2;
}
.p-question-list__icon-bg--question {
  left: -40px;
}
.p-question-list__icon-bg--answer {
  right: -40px;
}

.p-questionnaire {
  box-sizing: border-box;
  width: 800px;
  margin: 0 auto 25px;
  padding: 20px 50px;
  background: white;
  border-radius: 5px;
  border: solid 1px #edebe8;
}
@media screen and (max-width: 640px) {
  .p-questionnaire {
    width: 100%;
    padding: 20px;
  }
}
.p-questionnaire__title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 25px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #fe7b07;
}
@media screen and (max-width: 640px) {
  .p-questionnaire__title {
    align-items: flex-start;
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-questionnaire__icon {
  fill: #fe7b07;
  width: 40px;
  height: 40px;
  margin-right: 9px;
}
.p-questionnaire__column {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 640px) {
  .p-questionnaire__column {
    align-items: flex-start;
  }
}
.p-questionnaire__text-box {
  width: 595px;
}
@media screen and (max-width: 640px) {
  .p-questionnaire__text-box {
    width: 100%;
  }
}
.p-questionnaire__catch {
  margin-bottom: 20px;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .p-questionnaire__catch {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-questionnaire__name {
  padding-left: 13px;
  border-left: 6px solid #edebe8;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
}
.p-questionnaire__thum {
  width: 70px;
  height: 96px;
}
.p-questionnaire__question {
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}
.p-questionnaire__question::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 2px;
  background-color: #000000;
  margin-right: 5px;
}
.p-questionnaire__answer {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 20px;
}
.p-questionnaire__answer--highlight {
  background: linear-gradient(transparent 40%, #ffee01 0%);
}
@media screen and (max-width: 640px) {
  .p-questionnaire__accordion-box {
    max-height: 20.5em;
    overflow: hidden;
  }
}
.p-questionnaire__accordion-button {
  display: none;
}
@media screen and (max-width: 640px) {
  .p-questionnaire__accordion-button {
    display: block;
  }
}

@media screen and (max-width: 640px) {
  .p-prefecture.is-open .p-questionnaire__accordion-box {
    max-height: inherit;
  }
}

.p-quote {
  margin-top: 30px;
}
.p-quote__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px auto 0;
}
@media screen and (max-width: 640px) {
  .p-quote__list {
    display: block;
    margin-top: 20px;
  }
}
.p-quote__list-item {
  position: relative;
  box-sizing: border-box;
  width: 480px;
  padding: 12px 20px 40px;
  margin-bottom: 40px;
  border-radius: 5px;
  border: solid 4px rgb(254.4096385542, 177.0722891566, 108.5903614458);
}
@media screen and (max-width: 640px) {
  .p-quote__list-item {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
    white-space: normal;
  }
}
@media screen and (max-width: 640px) {
  .p-quote__list-item:last-child {
    margin-right: 20px;
  }
}
.p-quote__badge {
  position: absolute;
  left: -15px;
  top: -35px;
  box-sizing: border-box;
  width: 70px;
  height: 70px;
  padding-top: 10px;
  border-radius: 50%;
  background: #fe7b07;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
}
.p-quote__badge > b {
  display: block;
  font-size: 23px;
  font-size: 1.4375rem;
}
@media screen and (max-width: 640px) {
  .p-quote__badge {
    width: 50px;
    height: 50px;
    padding-top: 5px;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-quote__badge > b {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 0.5;
  }
}
.p-quote__title {
  margin-bottom: 20px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}
.p-quote__column {
  clear: both;
  margin-top: 20px;
}
.p-quote__text-box {
  font-size: 14px;
  font-size: 0.875rem;
}
.p-quote__text {
  margin-top: 1em;
  line-height: 1.28;
}
.p-quote__image {
  width: 35%;
  float: left;
  margin-right: 15px;
}
@media screen and (max-width: 640px) {
  .p-quote__image {
    margin-bottom: 10px;
  }
}

.p-rank {
  left: 8px;
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 640px) {
  .p-rank {
    top: 7px;
    left: 5px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.p-rank.item_shop_list_1st {
  top: -48px;
  padding-top: 49px;
  z-index: 2;
  background-color: transparent;
  line-height: 1.2;
  background-image: url("/assets/img/common/sprite_rank-b0dd9f2d.png");
  background-position: 0px -352px;
  width: 80px;
  height: 90px;
  box-sizing: border-box;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 640px) {
  .p-rank.item_shop_list_1st {
    top: -35px;
    padding-top: 35px;
    font-size: 12px;
    font-size: 0.75rem;
    background-image: url("/assets/img/common/sprite_rank@2x-2491cbf3.png");
    width: 60px;
    height: 67.5px;
    background-position: 0px -244px;
    background-size: 60px;
  }
}
.p-rank.item_shop_list_2nd {
  background-image: url("/assets/img/common/sprite_rank-b0dd9f2d.png");
  background-position: 0px 0px;
  width: 60px;
  height: 68px;
}
@media screen and (max-width: 640px) {
  .p-rank.item_shop_list_2nd {
    background-image: url("/assets/img/common/sprite_rank@2x-2491cbf3.png");
    width: 45px;
    height: 51px;
    background-position: 0px 0px;
    background-size: 60px;
  }
}
.p-rank.item_shop_list_3rd {
  background-image: url("/assets/img/common/sprite_rank-b0dd9f2d.png");
  background-position: 0px -88px;
  width: 60px;
  height: 68px;
}
@media screen and (max-width: 640px) {
  .p-rank.item_shop_list_3rd {
    background-image: url("/assets/img/common/sprite_rank@2x-2491cbf3.png");
    width: 45px;
    height: 51px;
    background-position: 0px -61px;
    background-size: 60px;
  }
}
.p-rank.item_shop_list_2nd, .p-rank.item_shop_list_3rd {
  top: 11px;
  padding-top: 36px;
  background-color: transparent;
  line-height: 1.2;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .p-rank.item_shop_list_2nd, .p-rank.item_shop_list_3rd {
    top: -4px;
    padding-top: 26px;
  }
}
.p-rank__ribbon {
  top: -22px;
  left: 80px;
  height: 35px;
  background-color: #b3484d;
  color: #fff;
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (max-width: 640px) {
  .p-rank__ribbon {
    top: -17px;
    left: 54px;
    height: 25px;
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.p-rank__ribbon:before, .p-rank__ribbon:after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  display: block;
  width: 0;
  height: 0;
  border-width: 20px 10px;
  border-style: solid;
  border-color: transparent;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .p-rank__ribbon:before, .p-rank__ribbon:after {
    border-width: 15px 8px;
    right: -8px;
  }
}
.p-rank__ribbon:before {
  border-bottom-color: #b3484d;
}
.p-rank__ribbon:after {
  border-top-color: #b3484d;
}
.p-rank__span--rank {
  margin-right: 1px;
  font-family: "Lato Semibold", Helvetica, Arial, Verdana, sans-serif;
}
.item_shop_list_1st .p-rank__span--rank {
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (max-width: 640px) {
  .item_shop_list_1st .p-rank__span--rank {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
.item_shop_list_2nd .p-rank__span--rank, .item_shop_list_3rd .p-rank__span--rank, .item_shop_list_4th .p-rank__span--rank, .item_shop_list_5th .p-rank__span--rank {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 640px) {
  .item_shop_list_2nd .p-rank__span--rank, .item_shop_list_3rd .p-rank__span--rank, .item_shop_list_4th .p-rank__span--rank, .item_shop_list_5th .p-rank__span--rank {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-rank__span--ribbon {
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  .p-rank__span--ribbon {
    line-height: 1.1;
  }
}
.p-rank__strong {
  margin-left: 7px;
  letter-spacing: 0.025em;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 640px) {
  .p-rank__strong {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.p-refoma-reason__block:nth-child(2) figure {
  background-position: 0 -185px;
}
@media screen and (max-width: 640px) {
  .p-refoma-reason__block:nth-child(2) figure {
    background-position: 0 -98px;
  }
}
.p-refoma-reason__block:last-child figure {
  background-position: 0 -370px;
}
@media screen and (max-width: 640px) {
  .p-refoma-reason__block:last-child figure {
    background-position: 0 -196px;
  }
}
.p-refoma-reason__figure {
  margin: 0 auto;
  width: 176px;
  height: 178px;
  background: url("/assets/img/common/sprite_aboutus@2x-ab8aa044.jpg") 0 0 no-repeat;
  background-size: 100%;
  border-radius: 89px;
}
@media screen and (max-width: 640px) {
  .p-refoma-reason__figure {
    float: left;
    width: 93px;
    height: 93px;
  }
}
.p-refoma-reason__title {
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 640px) {
  .p-refoma-reason__title {
    margin-left: 110px;
    text-align: left;
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-refoma-reason__desc {
  letter-spacing: 0.025em;
  color: #4c4c4c;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 640px) {
  .p-refoma-reason__desc {
    margin-left: 110px;
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.p-refoma-reason__icon--kmkm {
  width: 20px;
  height: 20px;
}

.p-review.is-hide {
  display: none;
}
.p-review__header {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  .p-review__header {
    margin-bottom: 0;
  }
}
.p-review__icon {
  margin: 0 15px 10px 0;
  display: inline-block;
  vertical-align: top;
  color: #FE7B07;
  font-size: 23px;
  font-size: 1.4375rem;
}
@media screen and (max-width: 640px) {
  .p-review__icon {
    width: 35px;
  }
}
.p-review__nickname {
  font-weight: bold;
  vertical-align: middle;
  display: flex;
  align-items: center;
  color: #000;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 640px) {
  .p-review__nickname {
    font-size: 18px;
    font-size: 1.125rem;
    margin: 0 0 10px 5px;
  }
}
.p-review__balloon {
  padding: 20px;
  position: relative;
  border: 2px solid #F0EFEB;
  background-color: #FAFAFA;
  border-radius: 4px;
}
.p-review__balloon:before, .p-review__balloon:after {
  content: "";
  display: block;
  width: 0;
  border: 10px solid transparent;
  border-top-width: 0;
}
.p-review__balloon:before {
  border-bottom-color: #FAFAFA;
  position: absolute;
  left: 9px;
  top: -7px;
  z-index: 1;
}
.p-review__balloon:after {
  border-bottom-color: #F0EFEB;
  position: absolute;
  left: 9px;
  top: -10px;
}
.p-review__score {
  margin-bottom: 15px;
  display: flex;
}
.p-review__score__period {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .p-review__score__period {
    display: inline-block;
  }
}
@media screen and (max-width: 640px) {
  .p-review__score-stars {
    display: inline-block;
    padding-left: 0;
  }
}
.p-review__score-stars img {
  width: 15px;
  height: 14px;
}
.p-review__score-rate {
  font-weight: bold;
  color: #FE7B07;
  padding: 0 10px;
  font-size: 17px;
  font-size: 1.0625rem;
}
@media screen and (max-width: 640px) {
  .p-review__score-rate {
    display: inline-block;
    margin-left: 0;
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-review__list {
  display: flex;
  margin-bottom: 15px;
}
@media screen and (max-width: 640px) {
  .p-review__list {
    display: block;
  }
}
.p-review__list--block {
  display: flex;
  margin-right: 30px;
  padding-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .p-review__list--block {
    margin: 0;
  }
}
.p-review__list__period {
  display: block;
  background-color: #EEECE8;
  padding: 3px 12px;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 640px) {
  .p-review__list__period {
    display: inline;
  }
}
.p-review__list__period-content {
  margin-left: 12px;
  display: flex;
  word-break: break-all;
  align-items: center;
  background-color: #FAFAFA;
}
.p-review__comment {
  line-height: 1.5;
  background-color: #FFFFFF;
  padding: 15px 20px;
  font-size: 16px;
  font-size: 1rem;
}

@media screen and (max-width: 640px) {
  .p-review_scores {
    display: inline-block;
  }
}
.p-review_scores__rate {
  font-weight: 700;
  color: #fe7b07;
  margin-left: 10px;
  font-size: 17px;
  font-size: 1.0625rem;
}
.p-review_scores__text {
  margin-left: 10px;
}
@media screen and (max-width: 640px) {
  .p-review_scores__text {
    display: block;
    margin: 0;
  }
}

.p-search-list {
  border-bottom: 1px dotted #ccc;
  transition: background-color 0.15s ease-out;
}
.p-search-list:last-child {
  border-bottom: 0;
}
.p-search-list:hover {
  background: #fafafa;
  cursor: pointer;
}
.p-search-list:hover .p-search-list__title {
  text-decoration: underline;
  color: #000;
}
.p-search-list:hover .p-search-list__img {
  opacity: 0.8;
}
.p-search-list__link {
  color: #000;
}
.p-search-list__link:visited {
  color: #000;
}
.p-search-list__img {
  transition: opacity 0.15s ease-out;
}
.p-search-list__title {
  transition: text-decoration 0.15s ease-out;
}
@media screen and (max-width: 640px) {
  .p-search-list__title {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-search-list__desc {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #333;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 640px) {
  .p-search-list__desc {
    overflow: hidden;
    max-height: 46px;
    letter-spacing: 0.025em;
    line-height: 1.3;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}
.p-search-list__desc br {
  display: none;
}
.p-search-list__label {
  border: 1px dotted #888;
  box-sizing: border-box;
}
.p-search-list__dl {
  color: #666;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 640px) {
  .p-search-list__dl {
    display: none;
  }
}
.p-search-list__li {
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: "Lato Semibold", Helvetica, Arial, Verdana, sans-serif;
}
@media screen and (max-width: 640px) {
  .p-search-list__li {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.p-search-list__li:after {
  content: "・";
  margin: 0 2px;
  color: #ccc;
  font-weight: bold;
  font-family: "Helvetica Neue", Helvetica, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
}
@media screen and (max-width: 640px) {
  .p-search-list__li:after {
    margin-left: 0;
    margin-right: 0;
  }
}
.p-search-list__li:last-child:after {
  content: none;
}
@media screen and (max-width: 640px) {
  .p-search-list__block {
    display: none;
  }
}
.p-search-list__block--price {
  margin-top: 15px;
}
.p-search-list__item--left {
  display: inline-block;
  margin-right: 30px;
}
@media screen and (max-width: 640px) {
  .p-search-list__item--left {
    margin-right: 15px;
    margin-bottom: 0;
  }
}
.p-search-list__item--right {
  float: right;
}

.p-search-prefecture {
  margin-top: 30px;
}
.p-search-prefecture__wrap {
  position: relative;
}

.p-section_title {
  padding: 10px 0;
}
.p-section_title__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-section_title__wrapper--sidebar {
  background-color: #f4fbff;
  padding: 10px;
}
@media screen and (max-width: 640px) {
  .p-section_title__wrapper--sidebar {
    margin: 0 -8px;
  }
  .p-section_title__wrapper--sidebar .p-section_title__more {
    position: static;
  }
}
.p-section_title__wrapper--sidebar .c-title--md {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .p-section_title__wrapper--sidebar .c-title--md {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-section_title__more {
  text-align: right;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
}
.p-section_title__lead {
  width: 100%;
  color: #6e6e6e;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 10px 0 0;
  line-height: 17px;
}

.p-service_flow {
  margin-bottom: 49px;
}
.p-service_flow__list {
  width: 680px;
  margin: 40px auto -20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .p-service_flow__list {
    width: 100%;
  }
}
.p-service_flow__item {
  width: 320px;
  margin-bottom: 46px;
  border: 1px solid #959494;
  padding: 16px;
  position: relative;
  display: flex;
  box-sizing: border-box;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .p-service_flow__item {
    margin: 0 auto 46px;
  }
}
.p-service_flow__step {
  width: 36px;
  background: #ffffff;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  position: absolute;
  top: -42px;
  left: 50%;
  margin-left: -23px;
  padding: 5px;
}
@media screen and (max-width: 640px) {
  .p-service_flow__step {
    width: 40px;
    left: 13%;
  }
}
.p-service_flow__step_number {
  font-weight: bold;
  font-size: 28px;
  font-size: 1.75rem;
}
.p-service_flow__image {
  width: 96px;
  height: 104px;
  object-fit: cover;
}
.p-service_flow__content {
  margin-left: 16px;
}
.p-service_flow__title {
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 5px;
}

.p-service_flow_icon {
  width: 326px;
  display: flex;
  margin: 10px auto 0;
}
.p-service_flow_icon__image {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: cover;
  margin-right: -6px;
  border-radius: 50%;
}

.p-sidebar_about__dl {
  padding: 15px 0 15px 35px;
  border-bottom: 1px #ebebeb solid;
}
.p-sidebar_about__dl:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.p-sidebar_about__dt {
  padding-right: 40px;
  position: relative;
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
  cursor: pointer;
}
.p-sidebar_about__dt:before {
  content: url("/assets/img/icons/qa_question_new-46979e55.svg");
  position: absolute;
  top: -3px;
  left: -35px;
  width: 30px;
  height: 30px;
}
.p-sidebar_about__dd {
  position: relative;
  font-size: 13px;
  font-size: 0.8125rem;
}
.p-sidebar_about__dd:before {
  content: url("/assets/img/icons/qa_answer_new-23d9c595.svg");
  position: absolute;
  top: 4px;
  left: -35px;
  width: 30px;
  height: 30px;
}

.p-sidebar_surety {
  position: relative;
  padding-left: 80px;
}
.p-sidebar_surety:before {
  content: url("/assets/img/icons/surety-7b9ccd4d.svg");
  position: absolute;
  top: 5px;
  left: 0px;
  width: 71px;
  height: 84px;
}
.p-sidebar_surety__highlight {
  display: inline-block;
  font-weight: bold;
  background: linear-gradient(transparent 50%, #ffee01 0%);
  font-size: 15px;
  font-size: 0.9375rem;
}
.p-sidebar_surety__highlight--md {
  font-size: 17px;
  font-size: 1.0625rem;
}
.p-sidebar_surety__highlight--lg {
  font-size: 20px;
  font-size: 1.25rem;
}
.p-sidebar_surety__highlight--red {
  color: #e72f2f;
}
.p-sidebar_surety__description {
  font-size: 13px;
  font-size: 0.8125rem;
}

.p-sort-dealers__block {
  display: inline;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .p-sort-dealers__block {
    display: block;
    line-height: 1.2;
    float: left;
  }
}
.p-sort-dealers__dt {
  color: #4c4c4c;
  letter-spacing: 0.025em;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 640px) {
  .p-sort-dealers__dt {
    clear: left;
    letter-spacing: 0;
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.p-sort-dealers__dd {
  letter-spacing: 0.025em;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .p-sort-dealers__dd {
    letter-spacing: 0;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-sort-dealers__span--desc {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #808080;
}
.p-sort-dealers__span--desc:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}
.p-sort-dealers__span--link {
  display: block;
  font-weight: normal;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .p-sort-dealers__span--link {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-sort-dealers__span--link:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 12px;
  margin-right: 4px;
  background: url("/assets/img/common/icon_check_white-3ed39065.svg") center center no-repeat;
  background-size: 16px;
}
@media screen and (max-width: 640px) {
  .p-sort-dealers__span--link:before {
    width: 12px;
    height: 9px;
    background-size: 12px;
  }
}
.p-sort-dealers .c-btn.p-sort-dealers__btn {
  height: 70px;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 640px) {
  .p-sort-dealers .c-btn.p-sort-dealers__btn {
    height: 60px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-staff_comment {
  border: 1px solid #afafaf;
  padding: 0;
  margin-bottom: 30px;
}
.p-staff_comment__title {
  background-color: #f6f5f1;
  text-align: center;
  border: none;
  padding: 10px;
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
}
.p-staff_comment__info {
  border-top: 1px solid #afafaf;
  padding: 20px;
  text-align: center;
}

.p-sub_category-condition__dl--summary {
  display: none;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .p-sub_category-condition__dl--summary {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .p-sub_category-condition__dl--input {
    display: none;
  }
}
.p-sub_category-condition__dt--summary {
  font-size: 11px;
  font-size: 0.6875rem;
}
.p-sub_category-condition__dt--summary:before {
  content: "/";
  margin: 0 6px;
  color: #999;
  font-size: 12px;
  font-size: 0.75rem;
}
.p-sub_category-condition__dt--summary:first-child:before {
  content: none;
}
.p-sub_category-condition__dt--input {
  float: left;
  clear: left;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  font-weight: bold;
  line-height: 33px;
  height: 33px;
}
@media screen and (max-width: 640px) {
  .p-sub_category-condition__dt--input {
    float: none;
    line-height: 1.2;
    height: auto;
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.p-sub_category-condition__dd--summary {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .p-sub_category-condition__dd--input {
    overflow: auto;
  }
}
.p-sub_category-condition__li {
  float: left;
  margin: 0 2px 2px 0;
  min-width: 100px;
  background-color: #fff;
  height: 33px;
  line-height: 33px;
  font-size: 13px;
  font-size: 0.8125rem;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .p-sub_category-condition__li {
    font-size: 10px;
    font-size: 0.625rem;
    width: 33% !important;
    min-width: 0;
    margin-right: 0.5%;
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  .p-sub_category-condition__li:nth-child(3n) {
    margin-right: 0;
  }
}
.p-sub_category-condition__li .is-radio, .p-sub_category-condition__li .is-checkbox {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #e0e0e0;
  transition: border-color 0.15s ease-out;
}
.p-sub_category-condition__li .is-radio:hover, .p-sub_category-condition__li .is-checkbox:hover {
  cursor: pointer;
}
.p-sub_category-condition__li .is-radio.checked, .p-sub_category-condition__li .is-checkbox.checked {
  border: 2px solid #fe7b07;
  box-shadow: none;
}
.p-sub_category-condition__li .is-radio:before, .p-sub_category-condition__li .is-radio:after, .p-sub_category-condition__li .is-checkbox:before, .p-sub_category-condition__li .is-checkbox:after {
  content: "";
  z-index: 0;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -7.5px;
  width: 15px;
  height: 15px;
  pointer-events: none;
  transition: opacity 0.15s ease-out;
}
@media screen and (max-width: 640px) {
  .p-sub_category-condition__li .is-radio:before, .p-sub_category-condition__li .is-radio:after, .p-sub_category-condition__li .is-checkbox:before, .p-sub_category-condition__li .is-checkbox:after {
    content: none;
  }
}
.p-sub_category-condition__li .is-radio:before, .p-sub_category-condition__li .is-checkbox:before {
  left: 11px;
  background-color: #e7e4de;
  border-radius: 50%;
  transition: background-color 0.15s ease-out;
}
.p-sub_category-condition__li .is-radio:after, .p-sub_category-condition__li .is-checkbox:after {
  width: 9px;
  height: 7px;
  left: 14px;
  margin-top: -4px;
  background: url("/assets/img/common/icon_check_white-3ed39065.svg") center center no-repeat;
  background-size: 9px;
  opacity: 0;
}
.p-sub_category-condition__li .is-checkbox:before {
  border-radius: 2px;
}
.p-sub_category-condition__li.is-active {
  font-weight: bold;
  color: #fe7b07;
}
.p-sub_category-condition__li.is-active .is-radio:before, .p-sub_category-condition__li.is-active .is-checkbox:before {
  opacity: 1;
  left: 10px;
  background-color: #fe7b07;
  box-shadow: none !important;
}
.p-sub_category-condition__li.is-active .is-radio:after, .p-sub_category-condition__li.is-active .is-checkbox:after {
  opacity: 1;
  left: 13px;
}
.p-sub_category-condition__li--colors {
  width: 98px;
}
@media screen and (max-width: 640px) {
  .p-sub_category-condition__li--colors:not(.p-sub_category-condition__color--none):before {
    content: "";
    left: 8px;
    margin-top: -6.5px;
    width: 13px;
    height: 13px;
  }
}
.p-sub_category-condition__img {
  z-index: 0;
  height: 20px;
  margin-top: 6px;
}
@media screen and (max-width: 640px) {
  .p-sub_category-condition__img {
    max-width: 84%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
}
.p-sub_category-condition__span {
  display: none;
  color: #554e48;
}
@media screen and (max-width: 640px) {
  .p-sub_category-condition__span {
    display: inline;
  }
}
.p-sub_category-condition__link {
  background-image: url("/assets/img/common/sprite_common-d65f56c9.png");
  background-position: 0px -132px;
  width: 14px;
  height: 14px;
  transition: opacity 0.15s ease-out;
}
.p-sub_category-condition__link:hover {
  cursor: pointer;
  opacity: 0.8;
}
@media screen and (max-width: 640px) {
  .p-sub_category-condition__link {
    background-image: url("/assets/img/common/sprite_common@3x-f559cfb8.png");
    width: 14px;
    height: 14px;
    background-position: 0px -78.6666666667px;
    background-size: 32px;
  }
}
@media screen and (max-width: 640px) and (max-device-width: 375px) and (-webkit-max-device-pixel-ratio: 2) {
  .p-sub_category-condition__link {
    background-image: url("/assets/img/common/sprite_common@2x-72af2e82.png");
    width: 14px;
    height: 14px;
    background-position: 0px -92px;
    background-size: 42px;
  }
}
.p-sub_category-condition__block {
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .p-sub_category-condition__block {
    overflow: auto;
  }
}
.p-sub_category-condition__desc {
  float: left;
  clear: left;
  color: #554e48;
  line-height: 1.2;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .p-sub_category-condition__desc {
    float: none;
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.p-sub_category-condition__color--beige .is-radio:before, .p-sub_category-condition__color--beige .is-checkbox:before {
  background-color: #e9c68e !important;
  opacity: 1;
}
.p-sub_category-condition__color--beige.is-active {
  color: #e9c68e;
}
.p-sub_category-condition__color--beige.is-active .is-radio, .p-sub_category-condition__color--beige.is-active .is-checkbox {
  border-color: #e9c68e;
}
.p-sub_category-condition__color--beige.is-active .is-radio:before, .p-sub_category-condition__color--beige.is-active .is-checkbox:before {
  opacity: 1;
}
.p-sub_category-condition__color--brown .is-radio:before, .p-sub_category-condition__color--brown .is-checkbox:before {
  background-color: #8e5818 !important;
  opacity: 1;
}
.p-sub_category-condition__color--brown.is-active {
  color: #8e5818;
}
.p-sub_category-condition__color--brown.is-active .is-radio, .p-sub_category-condition__color--brown.is-active .is-checkbox {
  border-color: #8e5818;
}
.p-sub_category-condition__color--brown.is-active .is-radio:before, .p-sub_category-condition__color--brown.is-active .is-checkbox:before {
  opacity: 1;
}
.p-sub_category-condition__color--silver .is-radio:before, .p-sub_category-condition__color--silver .is-checkbox:before {
  background-color: #b2b2b2 !important;
  opacity: 1;
}
.p-sub_category-condition__color--silver.is-active {
  color: #b2b2b2;
}
.p-sub_category-condition__color--silver.is-active .is-radio, .p-sub_category-condition__color--silver.is-active .is-checkbox {
  border-color: #b2b2b2;
}
.p-sub_category-condition__color--silver.is-active .is-radio:before, .p-sub_category-condition__color--silver.is-active .is-checkbox:before {
  opacity: 1;
}
.p-sub_category-condition__color--gray .is-radio:before, .p-sub_category-condition__color--gray .is-checkbox:before {
  background-color: #6b6b6b !important;
  opacity: 1;
}
.p-sub_category-condition__color--gray.is-active {
  color: #6b6b6b;
}
.p-sub_category-condition__color--gray.is-active .is-radio, .p-sub_category-condition__color--gray.is-active .is-checkbox {
  border-color: #6b6b6b;
}
.p-sub_category-condition__color--gray.is-active .is-radio:before, .p-sub_category-condition__color--gray.is-active .is-checkbox:before {
  opacity: 1;
}
.p-sub_category-condition__color--black .is-radio:before, .p-sub_category-condition__color--black .is-checkbox:before {
  background-color: #000000 !important;
  opacity: 1;
}
.p-sub_category-condition__color--black.is-active {
  color: #000000;
}
.p-sub_category-condition__color--black.is-active .is-radio, .p-sub_category-condition__color--black.is-active .is-checkbox {
  border-color: #000000;
}
.p-sub_category-condition__color--black.is-active .is-radio:before, .p-sub_category-condition__color--black.is-active .is-checkbox:before {
  opacity: 1;
}
.p-sub_category-condition__color--red .is-radio:before, .p-sub_category-condition__color--red .is-checkbox:before {
  background-color: #e12828 !important;
  opacity: 1;
}
.p-sub_category-condition__color--red.is-active {
  color: #e12828;
}
.p-sub_category-condition__color--red.is-active .is-radio, .p-sub_category-condition__color--red.is-active .is-checkbox {
  border-color: #e12828;
}
.p-sub_category-condition__color--red.is-active .is-radio:before, .p-sub_category-condition__color--red.is-active .is-checkbox:before {
  opacity: 1;
}
.p-sub_category-condition__color--orange .is-radio:before, .p-sub_category-condition__color--orange .is-checkbox:before {
  background-color: #fe7b07 !important;
  opacity: 1;
}
.p-sub_category-condition__color--orange.is-active {
  color: #fe7b07;
}
.p-sub_category-condition__color--orange.is-active .is-radio, .p-sub_category-condition__color--orange.is-active .is-checkbox {
  border-color: #fe7b07;
}
.p-sub_category-condition__color--orange.is-active .is-radio:before, .p-sub_category-condition__color--orange.is-active .is-checkbox:before {
  opacity: 1;
}
.p-sub_category-condition__color--yellow .is-radio:before, .p-sub_category-condition__color--yellow .is-checkbox:before {
  background-color: #edd74a !important;
  opacity: 1;
}
.p-sub_category-condition__color--yellow.is-active {
  color: #edd74a;
}
.p-sub_category-condition__color--yellow.is-active .is-radio, .p-sub_category-condition__color--yellow.is-active .is-checkbox {
  border-color: #edd74a;
}
.p-sub_category-condition__color--yellow.is-active .is-radio:before, .p-sub_category-condition__color--yellow.is-active .is-checkbox:before {
  opacity: 1;
}
.p-sub_category-condition__color--green .is-radio:before, .p-sub_category-condition__color--green .is-checkbox:before {
  background-color: #208a2a !important;
  opacity: 1;
}
.p-sub_category-condition__color--green.is-active {
  color: #208a2a;
}
.p-sub_category-condition__color--green.is-active .is-radio, .p-sub_category-condition__color--green.is-active .is-checkbox {
  border-color: #208a2a;
}
.p-sub_category-condition__color--green.is-active .is-radio:before, .p-sub_category-condition__color--green.is-active .is-checkbox:before {
  opacity: 1;
}
.p-sub_category-condition__color--blue .is-radio:before, .p-sub_category-condition__color--blue .is-checkbox:before {
  background-color: #2f5fa1 !important;
  opacity: 1;
}
.p-sub_category-condition__color--blue.is-active {
  color: #2f5fa1;
}
.p-sub_category-condition__color--blue.is-active .is-radio, .p-sub_category-condition__color--blue.is-active .is-checkbox {
  border-color: #2f5fa1;
}
.p-sub_category-condition__color--blue.is-active .is-radio:before, .p-sub_category-condition__color--blue.is-active .is-checkbox:before {
  opacity: 1;
}
.p-sub_category-condition__color--purple .is-radio:before, .p-sub_category-condition__color--purple .is-checkbox:before {
  background-color: #813fb3 !important;
  opacity: 1;
}
.p-sub_category-condition__color--purple.is-active {
  color: #813fb3;
}
.p-sub_category-condition__color--purple.is-active .is-radio, .p-sub_category-condition__color--purple.is-active .is-checkbox {
  border-color: #813fb3;
}
.p-sub_category-condition__color--purple.is-active .is-radio:before, .p-sub_category-condition__color--purple.is-active .is-checkbox:before {
  opacity: 1;
}
.p-sub_category-condition__color--pink .is-radio:before, .p-sub_category-condition__color--pink .is-checkbox:before {
  background-color: #f187be !important;
  opacity: 1;
}
.p-sub_category-condition__color--pink.is-active {
  color: #f187be;
}
.p-sub_category-condition__color--pink.is-active .is-radio, .p-sub_category-condition__color--pink.is-active .is-checkbox {
  border-color: #f187be;
}
.p-sub_category-condition__color--pink.is-active .is-radio:before, .p-sub_category-condition__color--pink.is-active .is-checkbox:before {
  opacity: 1;
}
.p-sub_category-condition__color--red {
  clear: left;
}
@media screen and (max-width: 640px) {
  .p-sub_category-condition__color--red {
    clear: none;
  }
}
.p-sub_category-condition__color--white .is-radio:before, .p-sub_category-condition__color--white .is-checkbox:before {
  background-color: #fff;
  box-shadow: inset 0px 0px 0px 1px #999 !important;
}
.p-sub_category-condition__color--white.is-active {
  color: #999;
}
.p-sub_category-condition__color--white.is-active .is-radio, .p-sub_category-condition__color--white.is-active .is-checkbox {
  border-color: #999;
}
.p-sub_category-condition__color--white.is-active .is-radio:before, .p-sub_category-condition__color--white.is-active .is-checkbox:before {
  background-color: #999;
}

.p-surety-header {
  min-width: 1032px;
  background: url("/assets/img/surety/header_bg-4f1981df.jpg") repeat-x;
  background-size: 960px auto;
}
@media screen and (max-width: 640px) {
  .p-surety-header {
    min-width: 100%;
  }
}
.p-surety-header__text-catch {
  padding: 10px 30px;
  text-align: center;
  letter-spacing: 1px;
  font-size: 26px;
  font-size: 1.625rem;
  background: rgba(255, 255, 255, 0.7);
}
.p-surety-header__text--num {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: bold;
  padding-left: 12px;
  padding-right: 4px;
}
.p-surety-header__text--unit {
  font-weight: bold;
  font-size: 25px;
  font-size: 1.5625rem;
  padding-right: 7px;
}
.p-surety-header__icon {
  display: block;
  width: 120px;
  height: auto;
  margin: 0px auto;
}
.p-surety-header__title {
  position: relative;
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: 4px;
}
@media screen and (max-width: 640px) {
  .p-surety-header__title {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.p-surety-header__balloon {
  position: absolute;
  top: -36px;
  width: 60px;
  height: 60px;
  color: white;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0;
  line-height: 60px;
  border-radius: 30px;
  background: #fe7b07;
}
@media screen and (max-width: 640px) {
  .p-surety-header__balloon {
    top: -57px;
    right: -4px;
  }
}
.p-surety-header__balloon:before {
  content: "";
  position: absolute;
  top: 71%;
  left: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 10px 5px 0;
  border-color: transparent #fe7b07 transparent transparent;
  transform: rotate(-28deg);
}
.p-surety-about__item {
  position: relative;
  background: #f7f5f2;
  color: black;
  padding: 2rem 0;
  font-weight: bold;
  border: 2px solid #d4cbbf;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 640px) {
  .p-surety-about__item {
    margin-bottom: 20px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-surety-about__item--block {
  position: relative;
  margin-top: 100px;
  padding: 60px 16px 24px;
  text-align: center;
  border: 4px solid;
}
.p-surety-about__icon {
  position: absolute;
  top: 4px;
  left: 6px;
  height: 36px;
}
.p-surety-about__icon--surety {
  position: absolute;
  top: -104px;
  left: 50%;
  width: 120px;
  margin-left: -60px;
}
.p-surety-trouble__image img {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 100px;
  margin: 0 auto 20px;
  border: 4px solid #d6be9a;
}
.p-surety-comparison__image {
  text-align: center;
}
@media screen and (max-width: 640px) {
  .p-surety-comparison .c-table__tr {
    display: table-row;
  }
}
@media screen and (max-width: 640px) {
  .p-surety-comparison .c-table__th,
  .p-surety-comparison .c-table__td {
    display: table-cell !important;
    width: 25%;
  }
}
.p-surety-query__link--mail {
  text-decoration: underline;
}
.p-surety-query .c-btn__balloon {
  background: white;
  color: #fe7b07;
}
.p-surety-query .c-btn__balloon::before {
  border-color: transparent #fff transparent transparent;
}
@media screen and (max-width: 640px) {
  .p-surety-query .c-btn__balloon {
    width: 40px;
    height: 40px;
    font-size: 12px;
    font-size: 0.75rem;
    border: 2px solid;
  }
}
.p-surety-query:hover .c-btn__balloon {
  background: #fe7b07;
  color: white;
}
.p-surety-query:hover .c-btn__balloon::before {
  border-color: transparent #fe7b07 transparent transparent;
}

.p-tab_nav {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  background-color: #f7f5f2;
}
@media screen and (max-width: 640px) {
  .p-tab_nav {
    margin: 0 -10px;
  }
}

.p-tab_nav_item {
  transition: background-color 0.15s ease-out;
}
.p-tab_nav_item.is_active {
  background-color: #fe7b07;
}
.p-tab_nav_item__link {
  display: inline-block;
  padding: 18px 30px;
  line-height: 1.2;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #333;
  transition: color 0.15s ease-out;
}
@media screen and (max-width: 640px) {
  .p-tab_nav_item__link {
    padding: 15px 8px;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-tab_nav_item__link.is_active {
  font-weight: bold;
  color: #fff;
}
.p-tab_nav_item__link:hover {
  font-weight: bold;
  color: #fe7b07;
}
.p-tab_nav_item__link:hover.is_active {
  color: #fff;
}

.p-tag-category-list {
  margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .p-tag-category-list {
    width: 80%;
  }
}
.p-tag-category-list--large .p-tag-category-list__list-item {
  padding: 4px 22px;
  font-size: 14px;
  font-size: 0.875rem;
  border-style: dotted;
  border-radius: 15px;
}
.p-tag-category-list__list-item {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px 10px 0;
  padding: 0 16px;
  background-color: white;
  border: 1px solid #fe7b07;
  border-radius: 12px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fe7b07;
  text-align: center;
  line-height: 1.5;
}

.p-tags {
  display: flex;
  flex-wrap: wrap;
}
.p-tags__item {
  background: #f6f6f6;
  padding: 5px 10px;
  border-radius: 3px;
  margin-top: 5px;
  margin-right: 10px;
}
.p-tags__link {
  font-size: 13px;
  font-size: 0.8125rem;
}

.p-tags_menu_card__link:hover .p-tags_menu_card__title {
  color: #0467cc;
}
.p-tags_menu_card__link:hover .p-tags_menu_card__image {
  transform: scale(1.05);
  transition-duration: 0.25s;
}
.p-tags_menu_card__block--image {
  width: 100%;
  margin-bottom: 10px;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .p-tags_menu_card__block--image {
    padding-top: 0;
    margin-bottom: 0;
    position: static;
  }
}
.p-tags_menu_card__image {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 640px) {
  .p-tags_menu_card__image {
    position: static;
  }
}
.p-tags_menu_card__title {
  display: flex;
  align-items: baseline;
  line-height: 21px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .p-tags_menu_card__title {
    line-height: 17px;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-tags_menu_card__title::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-top: solid 2px #6e6e6e;
  border-right: solid 2px #6e6e6e;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.p-terms-of-use-title {
  font-weight: bold;
  font-size: 1.5rem;
  margin: 6.25rem 0 0 0;
}

.p-terms-of-use-form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #FFFBDA;
  padding: 35px 0;
}
.p-terms-of-use-form--checkbox {
  margin: -6px 0.5rem 0 0;
  height: 2.2rem;
  width: 2.2rem;
}
.p-terms-of-use-form__input {
  text-align: center;
  width: 60%;
  margin: auto;
  padding-left: 50px;
}
@media screen and (max-width: 640px) {
  .p-terms-of-use-form__input {
    width: 85%;
    margin: auto;
    padding-left: 0;
  }
}
.p-terms-of-use-form__input--name {
  margin: 2rem 0 0 0;
  font-size: 1.25rem;
  width: 13rem;
  padding: 5px 15px;
}
@media screen and (max-width: 640px) {
  .p-terms-of-use-form__input--name {
    height: 3rem;
    width: 80%;
  }
}
.p-terms-of-use-form__sign {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  width: 90%;
}
@media screen and (max-width: 640px) {
  .p-terms-of-use-form__sign {
    width: 100%;
  }
}
.p-terms-of-use-form__label--checkbox {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  display: flex;
  margin: 0 auto;
}
.p-terms-of-use-form__label--input {
  font-size: 1.25rem;
  margin: 1.5rem 0.4rem 0 0;
}
.p-terms-of-use-form__button {
  margin: 1.8rem 0 0 0;
}
@media screen and (max-width: 640px) {
  .p-terms-of-use-form__button {
    margin: 1.8rem 1rem 0;
  }
}
.p-terms-of-use-form__button--text {
  font-size: 1.2rem !important;
}
.p-terms-of-use-form__note {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.3;
  display: inline-block;
  text-align: left;
  margin-left: 10px;
  vertical-align: middle;
}
@media screen and (max-width: 640px) {
  .p-terms-of-use-form__note {
    display: block;
    margin: 0.5rem 0 0;
    text-align: center;
  }
}
.p-terms-of-use-form__alert {
  background-color: rgba(231, 76, 60, 0.88);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  width: 90%;
  border-radius: 5px;
  color: #fff;
}

.p-terms-of-use-form__input > .field_with_errors {
  display: contents;
}

.p-text_speech_bubbles {
  position: relative;
}
.p-text_speech_bubbles::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  display: inline-block;
  width: 44px;
  height: 1px;
  background-color: black;
  transform: rotate(60deg);
}
.p-text_speech_bubbles::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 1px;
  background-color: black;
  transform: rotate(-60deg);
}

.p-tmp_menu_card {
  align-content: flex-start;
  background: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  width: 100%;
}
.p-tmp_menu_card__img-wrapper {
  border-radius: 4px 0px 0px 4px;
  margin: 0;
  max-width: 126px;
  min-width: 126px;
}
.p-tmp_menu_card__content-wrapper {
  flex-grow: 1;
  margin: 0;
  padding: 16px;
}
.p-tmp_menu_card__main-block {
  display: flex;
}
.p-tmp_menu_card__sub-block {
  margin-top: 9px;
}
.p-tmp_menu_card__img {
  width: 126px;
}
.p-tmp_menu_card__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 160%;
}
.p-tmp_menu_card__price {
  flex-grow: 1;
  font-size: 24px;
  font-weight: bold;
  height: 45px;
  line-height: 45px;
}
.p-tmp_menu_card__price-unit {
  font-size: 16px;
  font-weight: bold;
  line-height: 160%;
  text-align: right;
}
.p-tmp_menu_card__button {
  border-radius: 999px;
  border: 2px solid #FE7B07;
  box-sizing: border-box;
  height: 45px;
  padding: 9px 20px;
  width: 76px;
}
.p-tmp_menu_card__button:any-link {
  color: #FE7B07;
  font-size: 16px;
  font-weight: bold;
}
.p-tmp_menu_card__description {
  font-size: 13px;
  font-weight: normal;
  line-height: 150%;
}

.p-tooltip {
  display: none;
  width: 140px;
  bottom: 100%;
  left: -50%;
  background-color: #000;
  line-height: 1.2;
  z-index: 100;
  border-radius: 2px;
}
.p-tooltip:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -4px;
  display: block;
  width: 0;
  height: 0;
  border-width: 8px;
  border-style: solid;
  border-color: transparent;
  border-top-color: #000;
}
@media screen and (max-width: 640px) {
  .p-tooltip {
    font-size: 11px;
    font-size: 0.6875rem;
  }
  .p-tooltip:before {
    content: "";
    position: absolute;
    top: -17%;
    left: 26%;
  }
}

.p-top-key-visual-2 {
  background: url("/assets/img/top/mv_pc-9fcce3a6.jpg") center center/cover no-repeat;
  position: relative;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .p-top-key-visual-2 {
    background: url("/assets/img/top/mv_sp-81c717ad.jpg") center center/cover no-repeat;
  }
}
.p-top-key-visual-2__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 400px;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 0 8px #000;
}
@media screen and (max-width: 640px) {
  .p-top-key-visual-2__content {
    height: 300px;
  }
}
.p-top-key-visual-2__note {
  margin-bottom: 10px;
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 640px) {
  .p-top-key-visual-2__note {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-top-key-visual-2__title {
  line-height: 1.38;
  font-size: 55px;
  font-size: 3.4375rem;
}
@media screen and (max-width: 640px) {
  .p-top-key-visual-2__title {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.p-top-key-visual-2__title-br {
  display: block;
}
.p-top-key-visual-2__small-size {
  font-size: 40px;
  font-size: 2.5rem;
}
@media screen and (max-width: 640px) {
  .p-top-key-visual-2__small-size {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.p-top-key-visual-2__addition {
  width: 100%;
  background: #F6F6F6;
}
.p-top-key-visual-2__addition-wrapper {
  width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .p-top-key-visual-2__addition-wrapper {
    width: auto;
    display: block;
    padding: 20px;
  }
}
.p-top-key-visual-2__addition-pic {
  display: block;
  width: 80px;
  height: auto;
  margin: 0 auto;
}
.p-top-key-visual-2__addition-txt {
  text-align: left;
  margin-left: 20px;
}
@media screen and (max-width: 640px) {
  .p-top-key-visual-2__addition-txt {
    width: 100%;
    text-align: center;
    margin: 0;
  }
}
.p-top-key-visual-2__addition-txt h3 a {
  color: #FE7B07;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
}
.p-top-key-visual-2__addition-txt h3 a:hover {
  text-decoration: underline;
}
.p-top-key-visual-2__addition-txt p {
  margin-top: 5px;
  text-align: left;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 640px) {
  .p-top-key-visual-2__addition-txt p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-top-key-visual {
  min-width: 1032px;
}
@media screen and (max-width: 640px) {
  .p-top-key-visual {
    min-width: 100%;
  }
}
.p-top-key-visual__list {
  display: flex;
}
@media screen and (max-width: 640px) {
  .p-top-key-visual__list {
    display: block;
  }
}
.p-top-key-visual__item {
  width: 50%;
}
@media screen and (max-width: 640px) {
  .p-top-key-visual__item {
    width: auto;
  }
}
.p-top-key-visual__image {
  width: 100%;
  height: 500px;
  vertical-align: bottom;
  object-fit: cover;
}
@media screen and (max-width: 640px) {
  .p-top-key-visual__image {
    height: 220px;
  }
}
.p-top-key-visual__title {
  margin: -390px auto 0;
  line-height: 1.38;
  letter-spacing: 1.62px;
  text-shadow: 1px 1px 10px #000000;
  text-align: center;
  font-size: 65px;
  font-size: 4.0625rem;
  font-weight: bold;
  color: white;
}
@media screen and (max-width: 640px) {
  .p-top-key-visual__title {
    margin-top: -336px;
    font-size: 48px;
    font-size: 3rem;
  }
}
.p-top-key-visual__title-pc-br {
  display: block;
}
@media screen and (max-width: 640px) {
  .p-top-key-visual__title-pc-br {
    display: inline;
  }
}
@media screen and (max-width: 640px) {
  .p-top-key-visual__title-sp-br {
    display: block;
  }
}
.p-top-key-visual__small-size {
  font-size: 35px;
  font-size: 2.1875rem;
}
.p-top-key-visual__text {
  margin: 38px 0 60px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .p-top-key-visual__text {
    margin: 5px 0 53px;
  }
}
@media screen and (max-width: 640px) {
  .p-top-key-visual__ribbon {
    width: 75%;
  }
}

.p-top-mv {
  min-width: 1032px;
}
@media screen and (max-width: 640px) {
  .p-top-mv {
    min-width: 100%;
  }
}
.p-top-mv__slider {
  top: 50%;
  left: 50%;
  margin-left: -490px;
  width: 35px;
  height: 70px;
  opacity: 0.6;
  transition: opacity 0.15s ease-out;
}
.p-top-mv__slider:hover {
  cursor: pointer;
  opacity: 1;
}
.p-top-mv__slider--next {
  margin-left: 455px;
}
.p-top-mv__svg--prev {
  transform: rotate(180deg);
}
.p-top-mv__polyline {
  fill: none;
  stroke: #fff;
  stroke-width: 0.5;
  stroke-miterlimit: 10;
}
.p-top-mv__block--title {
  left: 50%;
  top: 50px;
  background: url("/assets/img/top/top_ribbon-e076ed2c.png") center 0 no-repeat;
  -webkit-background-size: contain;
  width: 362px;
  height: 50px;
  margin-left: -181px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .p-top-mv__block--title {
    top: 12px;
    width: 258px;
    margin-left: -129px;
    height: 37px;
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.p-top-mv__block--feature {
  top: 320px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 640px) {
  .p-top-mv__block--feature {
    top: 157px;
  }
}
.p-top-mv__block--desc {
  min-width: 1032px;
  background-color: #faf5eb;
  color: #554e48;
  letter-spacing: 0.1em;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (max-width: 640px) {
  .p-top-mv__block--desc {
    min-width: 100%;
    letter-spacing: 0.05em;
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.p-top-mv__strong {
  font-family: "Lato Semibold", Helvetica, Arial, Verdana, sans-serif;
}
.p-top-mv__span {
  font-size: 23px;
  font-size: 1.4375rem;
}
@media screen and (max-width: 640px) {
  .p-top-mv__span {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-top-mv__text {
  left: 50%;
  top: 126px;
  margin-left: -270px;
  width: 540px;
  text-align: center;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: bold;
  text-shadow: -2px 1px 1px white, 1px 1px 1px white, 1px -1px 1px white;
  letter-spacing: 3px;
}
.p-top-mv__text > span {
  display: block;
  line-height: 1.8;
  font-size: 60px;
  font-size: 3.75rem;
}
@media screen and (max-width: 640px) {
  .p-top-mv__text {
    top: 56px;
    width: 270px;
    margin-left: -135px;
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 1px;
  }
  .p-top-mv__text > span {
    line-height: 1.6;
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.p-top-mv__li {
  margin-left: 28px;
  text-indent: 100%;
}
.p-top-mv__li:first-child {
  background-image: url("/assets/img/common/sprite_top_features-ec5de32f.png");
  background-position: 0px 0px;
  width: 196px;
  height: 196px;
}
@media screen and (max-width: 640px) {
  .p-top-mv__li:first-child {
    background-image: url("/assets/img/common/sprite_top_features@3x-4ce52bb1.png");
    width: 100px;
    height: 100px;
    background-position: 0px 0px;
    background-size: 100px;
  }
}
.p-top-mv__li:nth-child(2) {
  background-image: url("/assets/img/common/sprite_top_features-ec5de32f.png");
  background-position: 0px -216px;
  width: 196px;
  height: 196px;
}
@media screen and (max-width: 640px) {
  .p-top-mv__li:nth-child(2) {
    background-image: url("/assets/img/common/sprite_top_features@3x-4ce52bb1.png");
    width: 100px;
    height: 100px;
    background-position: 0px -106.6666666667px;
    background-size: 100px;
  }
}
.p-top-mv__li:last-child {
  background-image: url("/assets/img/common/sprite_top_features-ec5de32f.png");
  background-position: 0px -432px;
  width: 196px;
  height: 196px;
}
@media screen and (max-width: 640px) {
  .p-top-mv__li:last-child {
    background-image: url("/assets/img/common/sprite_top_features@3x-4ce52bb1.png");
    width: 100px;
    height: 100px;
    background-position: 0px -213.3333333333px;
    background-size: 100px;
  }
}
@media screen and (max-width: 640px) {
  .p-top-mv__li {
    width: 100px;
    height: 100px;
    margin-left: -3px;
  }
}
.p-top-mv__li:first-child {
  margin-left: 0;
}
.p-top-mv__desc {
  background-image: url("/assets/img/top/top_clipart_l-26bc47f8.png"), url("/assets/img/top/top_clipart_r-7a79757f.png");
  background-size: 194px, 194px;
  background-position: 0 15px, right 15px;
}
@media screen and (max-width: 640px) {
  .p-top-mv__desc {
    background-size: 97px, 97px;
    background-position: 7px 30px, 99% 34px;
  }
}
.p-top-mv__desc--text {
  background-repeat: repeat-x, repeat-x, repeat-x, repeat-x;
  background-position: 0 0, 0 33%, 0 66%, 0 100%;
  background-size: 9px 1px, 9px 1px, 9px 1px, 9px 1px;
}
@media screen and (max-width: 640px) {
  .p-top-mv__desc--text {
    background-repeat: repeat-x, repeat-x, repeat-x, repeat-x, repeat-x, repeat-x;
    background-position: 0 0, 0 20%, 0 40%, 0 60%, 0 80%, 0 100%;
    background-size: 9px 1px, 9px 1px, 9px 1px, 9px 1px, 9px 1px, 9px 1px;
  }
}
.p-top-mv .slick-slider {
  position: relative;
  overflow: hidden;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 640px) {
  .p-top-mv .slick-slider {
    height: 225px;
  }
}
.p-top-mv .slick-slider:after {
  content: "";
  position: absolute;
  width: 1000px;
  left: 50%;
  margin-left: -500px;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
@media screen and (max-width: 640px) {
  .p-top-mv .slick-slider:after {
    width: 100%;
    margin-left: 0;
    left: 0;
    right: 0;
  }
}
.p-top-mv .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.p-top-mv .slick-list:focus {
  outline: none;
}
.p-top-mv .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.p-top-mv .slick-slider .slick-track,
.p-top-mv .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.p-top-mv .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.p-top-mv .slick-track:before,
.p-top-mv .slick-track:after {
  display: table;
  content: "";
}
.p-top-mv .slick-track:after {
  clear: both;
}
.p-top-mv .slick-loading .slick-track {
  visibility: hidden;
}
.p-top-mv .slick-slide {
  display: none;
  float: left;
  min-height: 1px;
  padding: 0 1px;
}
.p-top-mv [dir=rtl] .slick-slide {
  float: right;
}
.p-top-mv .slick-slide img {
  display: block;
}
@media screen and (max-width: 640px) {
  .p-top-mv .slick-slide img {
    height: 225px;
    width: auto;
    max-width: none;
    object-fit: contain;
  }
}
.p-top-mv .slick-slide.slick-loading img {
  display: none;
}
.p-top-mv .slick-slide.dragging img {
  pointer-events: none;
}
.p-top-mv .slick-initialized .slick-slide {
  display: block;
}
.p-top-mv .slick-loading .slick-slide {
  visibility: hidden;
}
.p-top-mv .slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.p-top-mv .slick-arrow.slick-hidden {
  display: none;
}

.p-top-news {
  margin-top: 80px;
}
@media screen and (max-width: 640px) {
  .p-top-news {
    margin-top: 30px;
  }
}
.p-top-news__wrap {
  border: 1px solid #b2b2b2;
  padding: 20px;
}
.p-top-news__title {
  text-align: center;
}
.p-top-news__list-item {
  padding-bottom: 20px;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-top-news__date {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
}
.p-top-news__link {
  display: block;
  position: relative;
  padding-right: 20px;
}
.p-top-news__link::after {
  position: absolute;
  top: calc(50% - 11px);
  right: 0;
  vertical-align: middle;
  display: inline-block;
  content: "";
  width: 11px;
  height: 11px;
  border-top: 1px solid #fe7b07;
  border-right: 1px solid #fe7b07;
  transform: rotate(45deg);
}

.p-top-page-review {
  overflow: hidden;
}
.p-top-page-review__figure {
  height: 50px;
}
.p-top-page-review__icon {
  width: 50px;
  height: 50px;
}
.p-top-page-review__desc--name {
  letter-spacing: 0.025em;
}
.p-top-page-review__desc--comment {
  background-color: #f0f0f0;
  font-size: 13px;
  font-size: 0.8125rem;
  border-radius: 6px;
}
@media screen and (max-width: 640px) {
  .p-top-page-review__desc--comment {
    height: auto !important;
    padding: 15px 20px;
    line-height: 1.67;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-top-page-review__desc--comment:before {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  left: 28px;
  width: 33px;
  height: 30px;
  background: url("/assets/img/top/top_icon_quote-5715b62a.svg") 0 0 no-repeat;
}
@media screen and (max-width: 640px) {
  .p-top-page-review__desc--comment:before {
    top: -12px;
    left: 20px;
  }
}
.p-top-page-review__desc--comment p {
  margin-top: 10px;
}
.p-top-page-review__desc--comment p:first-child {
  margin-top: 0;
}

.p-top-topics__li {
  letter-spacing: 0.05em;
  line-height: 1.33;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (max-width: 640px) {
  .p-top-topics__li {
    letter-spacing: 0.05em;
    line-height: 1.42;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-top-topics__li__link {
  text-decoration: none;
}
.p-top-topics__li__link:hover {
  text-decoration: underline;
}
.p-top-topics__li__date {
  top: 3px;
  left: 27px;
  color: #4c4c4c;
  font-family: "Lato Semibold", Helvetica, Arial, Verdana, sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (max-width: 640px) {
  .p-top-topics__li__date {
    left: 15px;
    letter-spacing: 0.1em;
    font-size: 10px;
    font-size: 0.625rem;
  }
}

.p-top_media {
  text-align: center;
  padding-bottom: 60px;
}
@media screen and (max-width: 640px) {
  .p-top_media {
    padding-bottom: 40px;
  }
}
.p-top_media__li:nth-child(6) {
  clear: both;
}
.p-top_media__li:nth-child(1), .p-top_media__li:nth-child(6) {
  width: 112px;
}
.p-top_media__li:nth-child(2), .p-top_media__li:nth-child(7) {
  width: 149px;
}
.p-top_media__li:nth-child(3), .p-top_media__li:nth-child(8) {
  width: 129px;
}
.p-top_media__li:nth-child(4), .p-top_media__li:nth-child(9) {
  width: 108px;
}
.p-top_media__li:nth-child(5), .p-top_media__li:nth-child(10) {
  width: 104px;
}
@media screen and (max-width: 640px) {
  .p-top_media__li {
    width: 33.33% !important;
  }
  .p-top_media__li:nth-child(1), .p-top_media__li:nth-child(9) {
    margin-left: 16.665%;
  }
  .p-top_media__li:nth-child(3), .p-top_media__li:nth-child(6) {
    clear: both;
  }
}
@media screen and (max-width: 640px) {
  .p-top_media__img {
    height: 25px;
    width: auto;
  }
}

.p-useful-info {
  margin-top: 30px;
}
.p-useful-info__wrap {
  padding: 20px;
  background: #f7f5f2;
}
.p-useful-info__title {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
}
.p-useful-info__list {
  border-top: 1px solid #b2b2b2;
}
.p-useful-info__list-item {
  font-size: 14px;
  font-size: 0.875rem;
}
.p-useful-info__link {
  display: block;
  position: relative;
  padding: 20px 20px 20px 0;
  border-bottom: 1px solid #b2b2b2;
}
.p-useful-info__link::after {
  position: absolute;
  top: calc(50% - 11px);
  right: 10px;
  vertical-align: middle;
  display: inline-block;
  content: "";
  width: 11px;
  height: 11px;
  border-top: 1px solid #fe7b07;
  border-right: 1px solid #fe7b07;
  transform: rotate(45deg);
}
.p-useful-info__more {
  position: relative;
  display: block;
  padding: 20px 20px 0 0;
  font-weight: bold;
  text-align: right;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-useful-info__more:visited, .p-useful-info__more:hover, .p-useful-info__more:focus, .p-useful-info__more:active {
  color: #0467cc;
}
.p-useful-info__more::after {
  position: absolute;
  top: calc(50% + 7px);
  right: 0;
  vertical-align: middle;
  display: inline-block;
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid #fe7b07;
  border-right: 1px solid #fe7b07;
  transform: rotate(45deg);
}

.p-vacation_message {
  border: 1px solid #ebebeb;
  margin: 1rem;
  padding: 1rem;
}
.p-vacation_message__title {
  font-weight: bold;
}
.p-vacation_message__body {
  margin-top: 1rem;
}

.p-voice {
  background: #f6f6f6;
  padding-top: 20px;
}
.p-voice__content {
  min-width: 840px;
  width: 840px;
}
@media screen and (max-width: 640px) {
  .p-voice__content {
    min-width: 100%;
    width: 100%;
  }
}

.p-wanted-banner {
  height: 180px;
}
@media screen and (max-width: 640px) {
  .p-wanted-banner {
    height: 150px;
  }
}
.p-wanted-banner__image {
  position: absolute;
  right: 132px;
  bottom: 5px;
  width: 500px;
}
@media screen and (max-width: 640px) {
  .p-wanted-banner__image {
    position: static;
    width: 80%;
    margin: 0 auto;
  }
}

.p-whats-refoma {
  min-width: 1032px;
}
@media screen and (max-width: 640px) {
  .p-whats-refoma {
    min-width: 100%;
  }
}
.p-whats-refoma__lead {
  margin: 30px 0 50px;
  text-align: center;
  line-height: 1.5;
  font-size: 31px;
  font-size: 1.9375rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .p-whats-refoma__lead {
    margin: 10px 0 30px;
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.p-whats-refoma__column {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .p-whats-refoma__column {
    display: block;
  }
}
.p-whats-refoma__text-box {
  width: 360px;
  margin-left: 40px;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  .p-whats-refoma__text-box {
    width: 100%;
    margin-left: 0;
    margin-top: 8px;
  }
}
.p-whats-refoma__title {
  margin-bottom: 18px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .p-whats-refoma__title {
    margin-bottom: 8px;
    text-align: center;
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-whats-refoma__b {
  font-size: 30px;
  font-size: 1.875rem;
  color: #e72f2f;
}
@media screen and (max-width: 640px) {
  .p-whats-refoma__b {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-whats-refoma__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .p-whats-refoma__text {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-whats-refoma__text--highlight {
  font-weight: bold;
  background: linear-gradient(transparent 40%, #ffee01 0%);
}

.p-zip {
  background-color: #fff;
  border: 1px solid #dfddd9;
  border-radius: 4px;
}
.p-zip__block {
  background-color: #f0f0f0;
}
@media screen and (max-width: 640px) {
  .p-zip__block--row {
    background-color: #fff;
  }
}
.p-zip__label {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 640px) {
  .p-zip__label {
    line-height: 1.2;
  }
}
.p-zip__text--row {
  display: inline-block;
}
@media screen and (max-width: 640px) {
  .p-zip__text--row {
    display: block;
    background-color: #f0f0f0;
  }
}
.p-zip__text--address {
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 640px) {
  .p-zip__text--address {
    line-height: 1.2;
  }
}
.p-zip__text--desc {
  font-size: 12px;
  font-size: 0.75rem;
  color: #7f7f7f;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .p-zip__text--desc {
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.2;
  }
}
.p-zip__text--zipcode {
  line-height: 22px;
  border-radius: 3px;
  font-size: 13px;
  font-size: 0.8125rem;
}
.p-zip__input {
  width: 4.2em;
  border: 1px solid #dedede;
  line-height: 1.7;
  min-height: 22px;
  font-size: 13px;
  font-size: 0.8125rem;
  border-radius: 2px;
  appearance: none;
}
@media screen and (max-width: 640px) {
  .p-zip__input {
    border: 1px solid #dedede;
  }
}
.p-zip__input:first-of-type {
  width: 3.2em;
}

.p-zipcode-select-popup {
  width: auto;
  color: #333;
}
@media screen and (max-width: 640px) {
  .p-zipcode-select-popup {
    width: 100%;
    min-width: 300px;
  }
}
.p-zipcode-select-popup__block--title {
  background-color: #eae7e2;
  border-radius: 4px;
}
@media screen and (max-width: 640px) {
  .p-zipcode-select-popup__block--title {
    border-radius: 0;
  }
}
.p-zipcode-select-popup__block--address {
  min-width: 450px;
}
@media screen and (max-width: 640px) {
  .p-zipcode-select-popup__block--address {
    min-width: 0;
  }
}
.p-zipcode-select-popup__title {
  float: left;
}
@media screen and (max-width: 640px) {
  .p-zipcode-select-popup__title {
    float: none;
  }
}
.p-zipcode-select-popup__strong {
  font-size: 18px;
  font-size: 1.125rem;
}
.p-zipcode-select-popup__desc {
  color: #333;
  letter-spacing: 0.025em;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  .p-zipcode-select-popup__desc {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 640px) {
  .p-zipcode-select-popup__desc br {
    display: none;
  }
}
.p-zipcode-select-popup__link {
  text-align: right;
}

.p-terms-of-use-text {
  margin: 6.25rem 0 0 0;
}
.p-terms-of-use-text__textbox {
  background: #369DC9;
  color: #fff;
  padding: 10px 16px;
  line-height: 1.2;
  font-weight: bold;
}
.p-terms-of-use-text__textbox {
  padding: 10px 16px;
  line-height: 1.5;
  font-size: 14px;
  font-size: 0.875rem;
}
.p-terms-of-use-text p {
  margin-bottom: 1.7rem;
  line-height: 1.6;
}
.p-terms-of-use-text h1 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
}
.p-terms-of-use-text h2 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
}
.p-terms-of-use-text h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
}

.p-top_point {
  background: #F6F4F1;
  padding: 25px 0 20px;
}
.p-top_point__list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .p-top_point__list {
    flex-wrap: wrap;
  }
}
.p-top_point__item {
  width: 320px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 640px) {
  .p-top_point__item {
    width: 100%;
    margin-bottom: 40px;
  }
}
.p-top_point__text {
  margin-top: 25px;
  position: relative;
}
@media screen and (max-width: 640px) {
  .p-top_point__text {
    margin-top: 10px;
  }
}
.p-top_point__num {
  display: inline-block;
  width: 2em;
  height: 2em;
  transform: translate(-10px, 5px);
}
@media screen and (max-width: 640px) {
  .p-top_point__num {
    width: 1.5em;
    height: 1.5em;
  }
}
.p-top_point__num--01 {
  background: url("/assets/img/top/top_point_num1-5c9a67a3.png") no-repeat;
  background-size: 100%;
}
.p-top_point__num--02 {
  background: url("/assets/img/top/top_point_num2-ba86b60a.png") no-repeat;
  background-size: 100%;
}
.p-top_point__num--03 {
  background: url("/assets/img/top/top_point_num3-d0e3ea3c.png") no-repeat;
  background-size: 100%;
}

.u-fz-11 {
  font-size: 11px;
  font-size: 0.6875rem;
}
.u-fz-14 {
  font-size: 14px;
  font-size: 0.875rem;
}
.u-fz-20 {
  font-size: 20px;
  font-size: 1.25rem;
}
.u-fz-24 {
  font-size: 24px;
  font-size: 1.5rem;
}
.u-fz-28 {
  font-size: 28px;
  font-size: 1.75rem;
}

.u-m-100 {
  margin: -100px !important;
}

.u-mt-100 {
  margin-top: -100px !important;
}

.u-mr-100 {
  margin-right: -100px !important;
}

.u-mb-100 {
  margin-bottom: -100px !important;
}

.u-ml-100 {
  margin-left: -100px !important;
}

.u-p-100 {
  padding: -100px !important;
}

.u-pt-100 {
  padding-top: -100px !important;
}

.u-pr-100 {
  padding-right: -100px !important;
}

.u-pb-100 {
  padding-bottom: -100px !important;
}

.u-pl-100 {
  padding-left: -100px !important;
}

.u-m-95 {
  margin: -95px !important;
}

.u-mt-95 {
  margin-top: -95px !important;
}

.u-mr-95 {
  margin-right: -95px !important;
}

.u-mb-95 {
  margin-bottom: -95px !important;
}

.u-ml-95 {
  margin-left: -95px !important;
}

.u-p-95 {
  padding: -95px !important;
}

.u-pt-95 {
  padding-top: -95px !important;
}

.u-pr-95 {
  padding-right: -95px !important;
}

.u-pb-95 {
  padding-bottom: -95px !important;
}

.u-pl-95 {
  padding-left: -95px !important;
}

.u-m-90 {
  margin: -90px !important;
}

.u-mt-90 {
  margin-top: -90px !important;
}

.u-mr-90 {
  margin-right: -90px !important;
}

.u-mb-90 {
  margin-bottom: -90px !important;
}

.u-ml-90 {
  margin-left: -90px !important;
}

.u-p-90 {
  padding: -90px !important;
}

.u-pt-90 {
  padding-top: -90px !important;
}

.u-pr-90 {
  padding-right: -90px !important;
}

.u-pb-90 {
  padding-bottom: -90px !important;
}

.u-pl-90 {
  padding-left: -90px !important;
}

.u-m-85 {
  margin: -85px !important;
}

.u-mt-85 {
  margin-top: -85px !important;
}

.u-mr-85 {
  margin-right: -85px !important;
}

.u-mb-85 {
  margin-bottom: -85px !important;
}

.u-ml-85 {
  margin-left: -85px !important;
}

.u-p-85 {
  padding: -85px !important;
}

.u-pt-85 {
  padding-top: -85px !important;
}

.u-pr-85 {
  padding-right: -85px !important;
}

.u-pb-85 {
  padding-bottom: -85px !important;
}

.u-pl-85 {
  padding-left: -85px !important;
}

.u-m-80 {
  margin: -80px !important;
}

.u-mt-80 {
  margin-top: -80px !important;
}

.u-mr-80 {
  margin-right: -80px !important;
}

.u-mb-80 {
  margin-bottom: -80px !important;
}

.u-ml-80 {
  margin-left: -80px !important;
}

.u-p-80 {
  padding: -80px !important;
}

.u-pt-80 {
  padding-top: -80px !important;
}

.u-pr-80 {
  padding-right: -80px !important;
}

.u-pb-80 {
  padding-bottom: -80px !important;
}

.u-pl-80 {
  padding-left: -80px !important;
}

.u-m-75 {
  margin: -75px !important;
}

.u-mt-75 {
  margin-top: -75px !important;
}

.u-mr-75 {
  margin-right: -75px !important;
}

.u-mb-75 {
  margin-bottom: -75px !important;
}

.u-ml-75 {
  margin-left: -75px !important;
}

.u-p-75 {
  padding: -75px !important;
}

.u-pt-75 {
  padding-top: -75px !important;
}

.u-pr-75 {
  padding-right: -75px !important;
}

.u-pb-75 {
  padding-bottom: -75px !important;
}

.u-pl-75 {
  padding-left: -75px !important;
}

.u-m-70 {
  margin: -70px !important;
}

.u-mt-70 {
  margin-top: -70px !important;
}

.u-mr-70 {
  margin-right: -70px !important;
}

.u-mb-70 {
  margin-bottom: -70px !important;
}

.u-ml-70 {
  margin-left: -70px !important;
}

.u-p-70 {
  padding: -70px !important;
}

.u-pt-70 {
  padding-top: -70px !important;
}

.u-pr-70 {
  padding-right: -70px !important;
}

.u-pb-70 {
  padding-bottom: -70px !important;
}

.u-pl-70 {
  padding-left: -70px !important;
}

.u-m-65 {
  margin: -65px !important;
}

.u-mt-65 {
  margin-top: -65px !important;
}

.u-mr-65 {
  margin-right: -65px !important;
}

.u-mb-65 {
  margin-bottom: -65px !important;
}

.u-ml-65 {
  margin-left: -65px !important;
}

.u-p-65 {
  padding: -65px !important;
}

.u-pt-65 {
  padding-top: -65px !important;
}

.u-pr-65 {
  padding-right: -65px !important;
}

.u-pb-65 {
  padding-bottom: -65px !important;
}

.u-pl-65 {
  padding-left: -65px !important;
}

.u-m-60 {
  margin: -60px !important;
}

.u-mt-60 {
  margin-top: -60px !important;
}

.u-mr-60 {
  margin-right: -60px !important;
}

.u-mb-60 {
  margin-bottom: -60px !important;
}

.u-ml-60 {
  margin-left: -60px !important;
}

.u-p-60 {
  padding: -60px !important;
}

.u-pt-60 {
  padding-top: -60px !important;
}

.u-pr-60 {
  padding-right: -60px !important;
}

.u-pb-60 {
  padding-bottom: -60px !important;
}

.u-pl-60 {
  padding-left: -60px !important;
}

.u-m-55 {
  margin: -55px !important;
}

.u-mt-55 {
  margin-top: -55px !important;
}

.u-mr-55 {
  margin-right: -55px !important;
}

.u-mb-55 {
  margin-bottom: -55px !important;
}

.u-ml-55 {
  margin-left: -55px !important;
}

.u-p-55 {
  padding: -55px !important;
}

.u-pt-55 {
  padding-top: -55px !important;
}

.u-pr-55 {
  padding-right: -55px !important;
}

.u-pb-55 {
  padding-bottom: -55px !important;
}

.u-pl-55 {
  padding-left: -55px !important;
}

.u-m-50 {
  margin: -50px !important;
}

.u-mt-50 {
  margin-top: -50px !important;
}

.u-mr-50 {
  margin-right: -50px !important;
}

.u-mb-50 {
  margin-bottom: -50px !important;
}

.u-ml-50 {
  margin-left: -50px !important;
}

.u-p-50 {
  padding: -50px !important;
}

.u-pt-50 {
  padding-top: -50px !important;
}

.u-pr-50 {
  padding-right: -50px !important;
}

.u-pb-50 {
  padding-bottom: -50px !important;
}

.u-pl-50 {
  padding-left: -50px !important;
}

.u-m-45 {
  margin: -45px !important;
}

.u-mt-45 {
  margin-top: -45px !important;
}

.u-mr-45 {
  margin-right: -45px !important;
}

.u-mb-45 {
  margin-bottom: -45px !important;
}

.u-ml-45 {
  margin-left: -45px !important;
}

.u-p-45 {
  padding: -45px !important;
}

.u-pt-45 {
  padding-top: -45px !important;
}

.u-pr-45 {
  padding-right: -45px !important;
}

.u-pb-45 {
  padding-bottom: -45px !important;
}

.u-pl-45 {
  padding-left: -45px !important;
}

.u-m-40 {
  margin: -40px !important;
}

.u-mt-40 {
  margin-top: -40px !important;
}

.u-mr-40 {
  margin-right: -40px !important;
}

.u-mb-40 {
  margin-bottom: -40px !important;
}

.u-ml-40 {
  margin-left: -40px !important;
}

.u-p-40 {
  padding: -40px !important;
}

.u-pt-40 {
  padding-top: -40px !important;
}

.u-pr-40 {
  padding-right: -40px !important;
}

.u-pb-40 {
  padding-bottom: -40px !important;
}

.u-pl-40 {
  padding-left: -40px !important;
}

.u-m-35 {
  margin: -35px !important;
}

.u-mt-35 {
  margin-top: -35px !important;
}

.u-mr-35 {
  margin-right: -35px !important;
}

.u-mb-35 {
  margin-bottom: -35px !important;
}

.u-ml-35 {
  margin-left: -35px !important;
}

.u-p-35 {
  padding: -35px !important;
}

.u-pt-35 {
  padding-top: -35px !important;
}

.u-pr-35 {
  padding-right: -35px !important;
}

.u-pb-35 {
  padding-bottom: -35px !important;
}

.u-pl-35 {
  padding-left: -35px !important;
}

.u-m-30 {
  margin: -30px !important;
}

.u-mt-30 {
  margin-top: -30px !important;
}

.u-mr-30 {
  margin-right: -30px !important;
}

.u-mb-30 {
  margin-bottom: -30px !important;
}

.u-ml-30 {
  margin-left: -30px !important;
}

.u-p-30 {
  padding: -30px !important;
}

.u-pt-30 {
  padding-top: -30px !important;
}

.u-pr-30 {
  padding-right: -30px !important;
}

.u-pb-30 {
  padding-bottom: -30px !important;
}

.u-pl-30 {
  padding-left: -30px !important;
}

.u-m-25 {
  margin: -25px !important;
}

.u-mt-25 {
  margin-top: -25px !important;
}

.u-mr-25 {
  margin-right: -25px !important;
}

.u-mb-25 {
  margin-bottom: -25px !important;
}

.u-ml-25 {
  margin-left: -25px !important;
}

.u-p-25 {
  padding: -25px !important;
}

.u-pt-25 {
  padding-top: -25px !important;
}

.u-pr-25 {
  padding-right: -25px !important;
}

.u-pb-25 {
  padding-bottom: -25px !important;
}

.u-pl-25 {
  padding-left: -25px !important;
}

.u-m-20 {
  margin: -20px !important;
}

.u-mt-20 {
  margin-top: -20px !important;
}

.u-mr-20 {
  margin-right: -20px !important;
}

.u-mb-20 {
  margin-bottom: -20px !important;
}

.u-ml-20 {
  margin-left: -20px !important;
}

.u-p-20 {
  padding: -20px !important;
}

.u-pt-20 {
  padding-top: -20px !important;
}

.u-pr-20 {
  padding-right: -20px !important;
}

.u-pb-20 {
  padding-bottom: -20px !important;
}

.u-pl-20 {
  padding-left: -20px !important;
}

.u-m-15 {
  margin: -15px !important;
}

.u-mt-15 {
  margin-top: -15px !important;
}

.u-mr-15 {
  margin-right: -15px !important;
}

.u-mb-15 {
  margin-bottom: -15px !important;
}

.u-ml-15 {
  margin-left: -15px !important;
}

.u-p-15 {
  padding: -15px !important;
}

.u-pt-15 {
  padding-top: -15px !important;
}

.u-pr-15 {
  padding-right: -15px !important;
}

.u-pb-15 {
  padding-bottom: -15px !important;
}

.u-pl-15 {
  padding-left: -15px !important;
}

.u-m-10 {
  margin: -10px !important;
}

.u-mt-10 {
  margin-top: -10px !important;
}

.u-mr-10 {
  margin-right: -10px !important;
}

.u-mb-10 {
  margin-bottom: -10px !important;
}

.u-ml-10 {
  margin-left: -10px !important;
}

.u-p-10 {
  padding: -10px !important;
}

.u-pt-10 {
  padding-top: -10px !important;
}

.u-pr-10 {
  padding-right: -10px !important;
}

.u-pb-10 {
  padding-bottom: -10px !important;
}

.u-pl-10 {
  padding-left: -10px !important;
}

.u-m-5 {
  margin: -5px !important;
}

.u-mt-5 {
  margin-top: -5px !important;
}

.u-mr-5 {
  margin-right: -5px !important;
}

.u-mb-5 {
  margin-bottom: -5px !important;
}

.u-ml-5 {
  margin-left: -5px !important;
}

.u-p-5 {
  padding: -5px !important;
}

.u-pt-5 {
  padding-top: -5px !important;
}

.u-pr-5 {
  padding-right: -5px !important;
}

.u-pb-5 {
  padding-bottom: -5px !important;
}

.u-pl-5 {
  padding-left: -5px !important;
}

.u-m0 {
  margin: 0px !important;
}

.u-mt0 {
  margin-top: 0px !important;
}

.u-mr0 {
  margin-right: 0px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

.u-ml0 {
  margin-left: 0px !important;
}

.u-p0 {
  padding: 0px !important;
}

.u-pt0 {
  padding-top: 0px !important;
}

.u-pr0 {
  padding-right: 0px !important;
}

.u-pb0 {
  padding-bottom: 0px !important;
}

.u-pl0 {
  padding-left: 0px !important;
}

.u-m5 {
  margin: 5px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-p5 {
  padding: 5px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-m10 {
  margin: 10px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-p10 {
  padding: 10px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-m15 {
  margin: 15px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-p15 {
  padding: 15px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-m20 {
  margin: 20px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-p20 {
  padding: 20px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-m25 {
  margin: 25px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-p25 {
  padding: 25px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-m30 {
  margin: 30px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-p30 {
  padding: 30px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-m35 {
  margin: 35px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-p35 {
  padding: 35px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

.u-m40 {
  margin: 40px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-p40 {
  padding: 40px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-m45 {
  margin: 45px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-p45 {
  padding: 45px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-pl45 {
  padding-left: 45px !important;
}

.u-m50 {
  margin: 50px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-p50 {
  padding: 50px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-m55 {
  margin: 55px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-p55 {
  padding: 55px !important;
}

.u-pt55 {
  padding-top: 55px !important;
}

.u-pr55 {
  padding-right: 55px !important;
}

.u-pb55 {
  padding-bottom: 55px !important;
}

.u-pl55 {
  padding-left: 55px !important;
}

.u-m60 {
  margin: 60px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-p60 {
  padding: 60px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-pr60 {
  padding-right: 60px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-pl60 {
  padding-left: 60px !important;
}

.u-m65 {
  margin: 65px !important;
}

.u-mt65 {
  margin-top: 65px !important;
}

.u-mr65 {
  margin-right: 65px !important;
}

.u-mb65 {
  margin-bottom: 65px !important;
}

.u-ml65 {
  margin-left: 65px !important;
}

.u-p65 {
  padding: 65px !important;
}

.u-pt65 {
  padding-top: 65px !important;
}

.u-pr65 {
  padding-right: 65px !important;
}

.u-pb65 {
  padding-bottom: 65px !important;
}

.u-pl65 {
  padding-left: 65px !important;
}

.u-m70 {
  margin: 70px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mr70 {
  margin-right: 70px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-ml70 {
  margin-left: 70px !important;
}

.u-p70 {
  padding: 70px !important;
}

.u-pt70 {
  padding-top: 70px !important;
}

.u-pr70 {
  padding-right: 70px !important;
}

.u-pb70 {
  padding-bottom: 70px !important;
}

.u-pl70 {
  padding-left: 70px !important;
}

.u-m75 {
  margin: 75px !important;
}

.u-mt75 {
  margin-top: 75px !important;
}

.u-mr75 {
  margin-right: 75px !important;
}

.u-mb75 {
  margin-bottom: 75px !important;
}

.u-ml75 {
  margin-left: 75px !important;
}

.u-p75 {
  padding: 75px !important;
}

.u-pt75 {
  padding-top: 75px !important;
}

.u-pr75 {
  padding-right: 75px !important;
}

.u-pb75 {
  padding-bottom: 75px !important;
}

.u-pl75 {
  padding-left: 75px !important;
}

.u-m80 {
  margin: 80px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mr80 {
  margin-right: 80px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-ml80 {
  margin-left: 80px !important;
}

.u-p80 {
  padding: 80px !important;
}

.u-pt80 {
  padding-top: 80px !important;
}

.u-pr80 {
  padding-right: 80px !important;
}

.u-pb80 {
  padding-bottom: 80px !important;
}

.u-pl80 {
  padding-left: 80px !important;
}

.u-m85 {
  margin: 85px !important;
}

.u-mt85 {
  margin-top: 85px !important;
}

.u-mr85 {
  margin-right: 85px !important;
}

.u-mb85 {
  margin-bottom: 85px !important;
}

.u-ml85 {
  margin-left: 85px !important;
}

.u-p85 {
  padding: 85px !important;
}

.u-pt85 {
  padding-top: 85px !important;
}

.u-pr85 {
  padding-right: 85px !important;
}

.u-pb85 {
  padding-bottom: 85px !important;
}

.u-pl85 {
  padding-left: 85px !important;
}

.u-m90 {
  margin: 90px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mr90 {
  margin-right: 90px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-ml90 {
  margin-left: 90px !important;
}

.u-p90 {
  padding: 90px !important;
}

.u-pt90 {
  padding-top: 90px !important;
}

.u-pr90 {
  padding-right: 90px !important;
}

.u-pb90 {
  padding-bottom: 90px !important;
}

.u-pl90 {
  padding-left: 90px !important;
}

.u-m95 {
  margin: 95px !important;
}

.u-mt95 {
  margin-top: 95px !important;
}

.u-mr95 {
  margin-right: 95px !important;
}

.u-mb95 {
  margin-bottom: 95px !important;
}

.u-ml95 {
  margin-left: 95px !important;
}

.u-p95 {
  padding: 95px !important;
}

.u-pt95 {
  padding-top: 95px !important;
}

.u-pr95 {
  padding-right: 95px !important;
}

.u-pb95 {
  padding-bottom: 95px !important;
}

.u-pl95 {
  padding-left: 95px !important;
}

.u-m100 {
  margin: 100px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mr100 {
  margin-right: 100px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-ml100 {
  margin-left: 100px !important;
}

.u-p100 {
  padding: 100px !important;
}

.u-pt100 {
  padding-top: 100px !important;
}

.u-pr100 {
  padding-right: 100px !important;
}

.u-pb100 {
  padding-bottom: 100px !important;
}

.u-pl100 {
  padding-left: 100px !important;
}

.u-m105 {
  margin: 105px !important;
}

.u-mt105 {
  margin-top: 105px !important;
}

.u-mr105 {
  margin-right: 105px !important;
}

.u-mb105 {
  margin-bottom: 105px !important;
}

.u-ml105 {
  margin-left: 105px !important;
}

.u-p105 {
  padding: 105px !important;
}

.u-pt105 {
  padding-top: 105px !important;
}

.u-pr105 {
  padding-right: 105px !important;
}

.u-pb105 {
  padding-bottom: 105px !important;
}

.u-pl105 {
  padding-left: 105px !important;
}

.u-m110 {
  margin: 110px !important;
}

.u-mt110 {
  margin-top: 110px !important;
}

.u-mr110 {
  margin-right: 110px !important;
}

.u-mb110 {
  margin-bottom: 110px !important;
}

.u-ml110 {
  margin-left: 110px !important;
}

.u-p110 {
  padding: 110px !important;
}

.u-pt110 {
  padding-top: 110px !important;
}

.u-pr110 {
  padding-right: 110px !important;
}

.u-pb110 {
  padding-bottom: 110px !important;
}

.u-pl110 {
  padding-left: 110px !important;
}

.u-m115 {
  margin: 115px !important;
}

.u-mt115 {
  margin-top: 115px !important;
}

.u-mr115 {
  margin-right: 115px !important;
}

.u-mb115 {
  margin-bottom: 115px !important;
}

.u-ml115 {
  margin-left: 115px !important;
}

.u-p115 {
  padding: 115px !important;
}

.u-pt115 {
  padding-top: 115px !important;
}

.u-pr115 {
  padding-right: 115px !important;
}

.u-pb115 {
  padding-bottom: 115px !important;
}

.u-pl115 {
  padding-left: 115px !important;
}

.u-m120 {
  margin: 120px !important;
}

.u-mt120 {
  margin-top: 120px !important;
}

.u-mr120 {
  margin-right: 120px !important;
}

.u-mb120 {
  margin-bottom: 120px !important;
}

.u-ml120 {
  margin-left: 120px !important;
}

.u-p120 {
  padding: 120px !important;
}

.u-pt120 {
  padding-top: 120px !important;
}

.u-pr120 {
  padding-right: 120px !important;
}

.u-pb120 {
  padding-bottom: 120px !important;
}

.u-pl120 {
  padding-left: 120px !important;
}

.u-m125 {
  margin: 125px !important;
}

.u-mt125 {
  margin-top: 125px !important;
}

.u-mr125 {
  margin-right: 125px !important;
}

.u-mb125 {
  margin-bottom: 125px !important;
}

.u-ml125 {
  margin-left: 125px !important;
}

.u-p125 {
  padding: 125px !important;
}

.u-pt125 {
  padding-top: 125px !important;
}

.u-pr125 {
  padding-right: 125px !important;
}

.u-pb125 {
  padding-bottom: 125px !important;
}

.u-pl125 {
  padding-left: 125px !important;
}

.u-m130 {
  margin: 130px !important;
}

.u-mt130 {
  margin-top: 130px !important;
}

.u-mr130 {
  margin-right: 130px !important;
}

.u-mb130 {
  margin-bottom: 130px !important;
}

.u-ml130 {
  margin-left: 130px !important;
}

.u-p130 {
  padding: 130px !important;
}

.u-pt130 {
  padding-top: 130px !important;
}

.u-pr130 {
  padding-right: 130px !important;
}

.u-pb130 {
  padding-bottom: 130px !important;
}

.u-pl130 {
  padding-left: 130px !important;
}

.u-m135 {
  margin: 135px !important;
}

.u-mt135 {
  margin-top: 135px !important;
}

.u-mr135 {
  margin-right: 135px !important;
}

.u-mb135 {
  margin-bottom: 135px !important;
}

.u-ml135 {
  margin-left: 135px !important;
}

.u-p135 {
  padding: 135px !important;
}

.u-pt135 {
  padding-top: 135px !important;
}

.u-pr135 {
  padding-right: 135px !important;
}

.u-pb135 {
  padding-bottom: 135px !important;
}

.u-pl135 {
  padding-left: 135px !important;
}

.u-m140 {
  margin: 140px !important;
}

.u-mt140 {
  margin-top: 140px !important;
}

.u-mr140 {
  margin-right: 140px !important;
}

.u-mb140 {
  margin-bottom: 140px !important;
}

.u-ml140 {
  margin-left: 140px !important;
}

.u-p140 {
  padding: 140px !important;
}

.u-pt140 {
  padding-top: 140px !important;
}

.u-pr140 {
  padding-right: 140px !important;
}

.u-pb140 {
  padding-bottom: 140px !important;
}

.u-pl140 {
  padding-left: 140px !important;
}

.u-m145 {
  margin: 145px !important;
}

.u-mt145 {
  margin-top: 145px !important;
}

.u-mr145 {
  margin-right: 145px !important;
}

.u-mb145 {
  margin-bottom: 145px !important;
}

.u-ml145 {
  margin-left: 145px !important;
}

.u-p145 {
  padding: 145px !important;
}

.u-pt145 {
  padding-top: 145px !important;
}

.u-pr145 {
  padding-right: 145px !important;
}

.u-pb145 {
  padding-bottom: 145px !important;
}

.u-pl145 {
  padding-left: 145px !important;
}

.u-m150 {
  margin: 150px !important;
}

.u-mt150 {
  margin-top: 150px !important;
}

.u-mr150 {
  margin-right: 150px !important;
}

.u-mb150 {
  margin-bottom: 150px !important;
}

.u-ml150 {
  margin-left: 150px !important;
}

.u-p150 {
  padding: 150px !important;
}

.u-pt150 {
  padding-top: 150px !important;
}

.u-pr150 {
  padding-right: 150px !important;
}

.u-pb150 {
  padding-bottom: 150px !important;
}

.u-pl150 {
  padding-left: 150px !important;
}

.u-m155 {
  margin: 155px !important;
}

.u-mt155 {
  margin-top: 155px !important;
}

.u-mr155 {
  margin-right: 155px !important;
}

.u-mb155 {
  margin-bottom: 155px !important;
}

.u-ml155 {
  margin-left: 155px !important;
}

.u-p155 {
  padding: 155px !important;
}

.u-pt155 {
  padding-top: 155px !important;
}

.u-pr155 {
  padding-right: 155px !important;
}

.u-pb155 {
  padding-bottom: 155px !important;
}

.u-pl155 {
  padding-left: 155px !important;
}

.u-m160 {
  margin: 160px !important;
}

.u-mt160 {
  margin-top: 160px !important;
}

.u-mr160 {
  margin-right: 160px !important;
}

.u-mb160 {
  margin-bottom: 160px !important;
}

.u-ml160 {
  margin-left: 160px !important;
}

.u-p160 {
  padding: 160px !important;
}

.u-pt160 {
  padding-top: 160px !important;
}

.u-pr160 {
  padding-right: 160px !important;
}

.u-pb160 {
  padding-bottom: 160px !important;
}

.u-pl160 {
  padding-left: 160px !important;
}

.u-m165 {
  margin: 165px !important;
}

.u-mt165 {
  margin-top: 165px !important;
}

.u-mr165 {
  margin-right: 165px !important;
}

.u-mb165 {
  margin-bottom: 165px !important;
}

.u-ml165 {
  margin-left: 165px !important;
}

.u-p165 {
  padding: 165px !important;
}

.u-pt165 {
  padding-top: 165px !important;
}

.u-pr165 {
  padding-right: 165px !important;
}

.u-pb165 {
  padding-bottom: 165px !important;
}

.u-pl165 {
  padding-left: 165px !important;
}

.u-m170 {
  margin: 170px !important;
}

.u-mt170 {
  margin-top: 170px !important;
}

.u-mr170 {
  margin-right: 170px !important;
}

.u-mb170 {
  margin-bottom: 170px !important;
}

.u-ml170 {
  margin-left: 170px !important;
}

.u-p170 {
  padding: 170px !important;
}

.u-pt170 {
  padding-top: 170px !important;
}

.u-pr170 {
  padding-right: 170px !important;
}

.u-pb170 {
  padding-bottom: 170px !important;
}

.u-pl170 {
  padding-left: 170px !important;
}

.u-m175 {
  margin: 175px !important;
}

.u-mt175 {
  margin-top: 175px !important;
}

.u-mr175 {
  margin-right: 175px !important;
}

.u-mb175 {
  margin-bottom: 175px !important;
}

.u-ml175 {
  margin-left: 175px !important;
}

.u-p175 {
  padding: 175px !important;
}

.u-pt175 {
  padding-top: 175px !important;
}

.u-pr175 {
  padding-right: 175px !important;
}

.u-pb175 {
  padding-bottom: 175px !important;
}

.u-pl175 {
  padding-left: 175px !important;
}

.u-m180 {
  margin: 180px !important;
}

.u-mt180 {
  margin-top: 180px !important;
}

.u-mr180 {
  margin-right: 180px !important;
}

.u-mb180 {
  margin-bottom: 180px !important;
}

.u-ml180 {
  margin-left: 180px !important;
}

.u-p180 {
  padding: 180px !important;
}

.u-pt180 {
  padding-top: 180px !important;
}

.u-pr180 {
  padding-right: 180px !important;
}

.u-pb180 {
  padding-bottom: 180px !important;
}

.u-pl180 {
  padding-left: 180px !important;
}

.u-m185 {
  margin: 185px !important;
}

.u-mt185 {
  margin-top: 185px !important;
}

.u-mr185 {
  margin-right: 185px !important;
}

.u-mb185 {
  margin-bottom: 185px !important;
}

.u-ml185 {
  margin-left: 185px !important;
}

.u-p185 {
  padding: 185px !important;
}

.u-pt185 {
  padding-top: 185px !important;
}

.u-pr185 {
  padding-right: 185px !important;
}

.u-pb185 {
  padding-bottom: 185px !important;
}

.u-pl185 {
  padding-left: 185px !important;
}

.u-m190 {
  margin: 190px !important;
}

.u-mt190 {
  margin-top: 190px !important;
}

.u-mr190 {
  margin-right: 190px !important;
}

.u-mb190 {
  margin-bottom: 190px !important;
}

.u-ml190 {
  margin-left: 190px !important;
}

.u-p190 {
  padding: 190px !important;
}

.u-pt190 {
  padding-top: 190px !important;
}

.u-pr190 {
  padding-right: 190px !important;
}

.u-pb190 {
  padding-bottom: 190px !important;
}

.u-pl190 {
  padding-left: 190px !important;
}

.u-m195 {
  margin: 195px !important;
}

.u-mt195 {
  margin-top: 195px !important;
}

.u-mr195 {
  margin-right: 195px !important;
}

.u-mb195 {
  margin-bottom: 195px !important;
}

.u-ml195 {
  margin-left: 195px !important;
}

.u-p195 {
  padding: 195px !important;
}

.u-pt195 {
  padding-top: 195px !important;
}

.u-pr195 {
  padding-right: 195px !important;
}

.u-pb195 {
  padding-bottom: 195px !important;
}

.u-pl195 {
  padding-left: 195px !important;
}

.u-m200 {
  margin: 200px !important;
}

.u-mt200 {
  margin-top: 200px !important;
}

.u-mr200 {
  margin-right: 200px !important;
}

.u-mb200 {
  margin-bottom: 200px !important;
}

.u-ml200 {
  margin-left: 200px !important;
}

.u-p200 {
  padding: 200px !important;
}

.u-pt200 {
  padding-top: 200px !important;
}

.u-pr200 {
  padding-right: 200px !important;
}

.u-pb200 {
  padding-bottom: 200px !important;
}

.u-pl200 {
  padding-left: 200px !important;
}

@media screen and (max-width: 640px) {
  .u-sp-m-100 {
    margin: -100px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt-100 {
    margin-top: -100px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr-100 {
    margin-right: -100px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb-100 {
    margin-bottom: -100px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml-100 {
    margin-left: -100px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p-100 {
    padding: -100px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt-100 {
    padding-top: -100px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr-100 {
    padding-right: -100px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb-100 {
    padding-bottom: -100px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl-100 {
    padding-left: -100px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m-95 {
    margin: -95px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt-95 {
    margin-top: -95px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr-95 {
    margin-right: -95px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb-95 {
    margin-bottom: -95px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml-95 {
    margin-left: -95px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p-95 {
    padding: -95px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt-95 {
    padding-top: -95px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr-95 {
    padding-right: -95px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb-95 {
    padding-bottom: -95px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl-95 {
    padding-left: -95px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m-90 {
    margin: -90px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt-90 {
    margin-top: -90px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr-90 {
    margin-right: -90px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb-90 {
    margin-bottom: -90px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml-90 {
    margin-left: -90px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p-90 {
    padding: -90px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt-90 {
    padding-top: -90px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr-90 {
    padding-right: -90px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb-90 {
    padding-bottom: -90px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl-90 {
    padding-left: -90px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m-85 {
    margin: -85px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt-85 {
    margin-top: -85px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr-85 {
    margin-right: -85px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb-85 {
    margin-bottom: -85px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml-85 {
    margin-left: -85px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p-85 {
    padding: -85px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt-85 {
    padding-top: -85px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr-85 {
    padding-right: -85px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb-85 {
    padding-bottom: -85px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl-85 {
    padding-left: -85px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m-80 {
    margin: -80px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt-80 {
    margin-top: -80px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr-80 {
    margin-right: -80px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb-80 {
    margin-bottom: -80px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml-80 {
    margin-left: -80px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p-80 {
    padding: -80px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt-80 {
    padding-top: -80px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr-80 {
    padding-right: -80px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb-80 {
    padding-bottom: -80px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl-80 {
    padding-left: -80px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m-75 {
    margin: -75px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt-75 {
    margin-top: -75px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr-75 {
    margin-right: -75px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb-75 {
    margin-bottom: -75px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml-75 {
    margin-left: -75px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p-75 {
    padding: -75px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt-75 {
    padding-top: -75px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr-75 {
    padding-right: -75px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb-75 {
    padding-bottom: -75px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl-75 {
    padding-left: -75px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m-70 {
    margin: -70px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt-70 {
    margin-top: -70px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr-70 {
    margin-right: -70px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb-70 {
    margin-bottom: -70px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml-70 {
    margin-left: -70px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p-70 {
    padding: -70px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt-70 {
    padding-top: -70px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr-70 {
    padding-right: -70px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb-70 {
    padding-bottom: -70px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl-70 {
    padding-left: -70px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m-65 {
    margin: -65px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt-65 {
    margin-top: -65px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr-65 {
    margin-right: -65px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb-65 {
    margin-bottom: -65px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml-65 {
    margin-left: -65px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p-65 {
    padding: -65px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt-65 {
    padding-top: -65px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr-65 {
    padding-right: -65px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb-65 {
    padding-bottom: -65px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl-65 {
    padding-left: -65px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m-60 {
    margin: -60px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt-60 {
    margin-top: -60px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr-60 {
    margin-right: -60px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb-60 {
    margin-bottom: -60px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml-60 {
    margin-left: -60px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p-60 {
    padding: -60px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt-60 {
    padding-top: -60px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr-60 {
    padding-right: -60px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb-60 {
    padding-bottom: -60px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl-60 {
    padding-left: -60px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m-55 {
    margin: -55px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt-55 {
    margin-top: -55px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr-55 {
    margin-right: -55px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb-55 {
    margin-bottom: -55px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml-55 {
    margin-left: -55px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p-55 {
    padding: -55px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt-55 {
    padding-top: -55px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr-55 {
    padding-right: -55px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb-55 {
    padding-bottom: -55px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl-55 {
    padding-left: -55px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m-50 {
    margin: -50px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt-50 {
    margin-top: -50px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr-50 {
    margin-right: -50px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb-50 {
    margin-bottom: -50px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml-50 {
    margin-left: -50px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p-50 {
    padding: -50px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt-50 {
    padding-top: -50px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr-50 {
    padding-right: -50px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb-50 {
    padding-bottom: -50px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl-50 {
    padding-left: -50px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m-45 {
    margin: -45px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt-45 {
    margin-top: -45px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr-45 {
    margin-right: -45px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb-45 {
    margin-bottom: -45px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml-45 {
    margin-left: -45px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p-45 {
    padding: -45px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt-45 {
    padding-top: -45px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr-45 {
    padding-right: -45px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb-45 {
    padding-bottom: -45px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl-45 {
    padding-left: -45px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m-40 {
    margin: -40px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt-40 {
    margin-top: -40px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr-40 {
    margin-right: -40px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb-40 {
    margin-bottom: -40px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml-40 {
    margin-left: -40px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p-40 {
    padding: -40px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt-40 {
    padding-top: -40px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr-40 {
    padding-right: -40px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb-40 {
    padding-bottom: -40px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl-40 {
    padding-left: -40px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m-35 {
    margin: -35px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt-35 {
    margin-top: -35px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr-35 {
    margin-right: -35px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb-35 {
    margin-bottom: -35px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml-35 {
    margin-left: -35px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p-35 {
    padding: -35px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt-35 {
    padding-top: -35px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr-35 {
    padding-right: -35px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb-35 {
    padding-bottom: -35px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl-35 {
    padding-left: -35px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m-30 {
    margin: -30px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt-30 {
    margin-top: -30px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr-30 {
    margin-right: -30px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb-30 {
    margin-bottom: -30px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml-30 {
    margin-left: -30px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p-30 {
    padding: -30px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt-30 {
    padding-top: -30px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr-30 {
    padding-right: -30px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb-30 {
    padding-bottom: -30px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl-30 {
    padding-left: -30px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m-25 {
    margin: -25px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt-25 {
    margin-top: -25px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr-25 {
    margin-right: -25px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb-25 {
    margin-bottom: -25px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml-25 {
    margin-left: -25px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p-25 {
    padding: -25px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt-25 {
    padding-top: -25px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr-25 {
    padding-right: -25px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb-25 {
    padding-bottom: -25px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl-25 {
    padding-left: -25px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m-20 {
    margin: -20px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt-20 {
    margin-top: -20px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr-20 {
    margin-right: -20px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb-20 {
    margin-bottom: -20px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml-20 {
    margin-left: -20px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p-20 {
    padding: -20px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt-20 {
    padding-top: -20px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr-20 {
    padding-right: -20px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb-20 {
    padding-bottom: -20px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl-20 {
    padding-left: -20px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m-15 {
    margin: -15px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt-15 {
    margin-top: -15px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr-15 {
    margin-right: -15px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb-15 {
    margin-bottom: -15px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml-15 {
    margin-left: -15px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p-15 {
    padding: -15px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt-15 {
    padding-top: -15px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr-15 {
    padding-right: -15px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb-15 {
    padding-bottom: -15px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl-15 {
    padding-left: -15px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m-10 {
    margin: -10px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt-10 {
    margin-top: -10px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr-10 {
    margin-right: -10px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb-10 {
    margin-bottom: -10px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml-10 {
    margin-left: -10px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p-10 {
    padding: -10px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt-10 {
    padding-top: -10px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr-10 {
    padding-right: -10px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb-10 {
    padding-bottom: -10px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl-10 {
    padding-left: -10px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m-5 {
    margin: -5px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt-5 {
    margin-top: -5px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr-5 {
    margin-right: -5px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb-5 {
    margin-bottom: -5px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml-5 {
    margin-left: -5px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p-5 {
    padding: -5px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt-5 {
    padding-top: -5px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr-5 {
    padding-right: -5px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb-5 {
    padding-bottom: -5px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl-5 {
    padding-left: -5px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m0 {
    margin: 0px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt0 {
    margin-top: 0px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr0 {
    margin-right: 0px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb0 {
    margin-bottom: 0px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml0 {
    margin-left: 0px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p0 {
    padding: 0px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt0 {
    padding-top: 0px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr0 {
    padding-right: 0px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb0 {
    padding-bottom: 0px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl0 {
    padding-left: 0px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m5 {
    margin: 5px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt5 {
    margin-top: 5px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr5 {
    margin-right: 5px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb5 {
    margin-bottom: 5px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml5 {
    margin-left: 5px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p5 {
    padding: 5px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt5 {
    padding-top: 5px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr5 {
    padding-right: 5px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb5 {
    padding-bottom: 5px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl5 {
    padding-left: 5px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m10 {
    margin: 10px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt10 {
    margin-top: 10px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr10 {
    margin-right: 10px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb10 {
    margin-bottom: 10px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml10 {
    margin-left: 10px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p10 {
    padding: 10px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt10 {
    padding-top: 10px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr10 {
    padding-right: 10px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb10 {
    padding-bottom: 10px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl10 {
    padding-left: 10px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m15 {
    margin: 15px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt15 {
    margin-top: 15px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr15 {
    margin-right: 15px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb15 {
    margin-bottom: 15px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml15 {
    margin-left: 15px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p15 {
    padding: 15px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt15 {
    padding-top: 15px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr15 {
    padding-right: 15px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb15 {
    padding-bottom: 15px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl15 {
    padding-left: 15px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m20 {
    margin: 20px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt20 {
    margin-top: 20px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr20 {
    margin-right: 20px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb20 {
    margin-bottom: 20px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml20 {
    margin-left: 20px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p20 {
    padding: 20px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt20 {
    padding-top: 20px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr20 {
    padding-right: 20px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb20 {
    padding-bottom: 20px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl20 {
    padding-left: 20px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m25 {
    margin: 25px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt25 {
    margin-top: 25px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr25 {
    margin-right: 25px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb25 {
    margin-bottom: 25px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml25 {
    margin-left: 25px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p25 {
    padding: 25px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt25 {
    padding-top: 25px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr25 {
    padding-right: 25px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb25 {
    padding-bottom: 25px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl25 {
    padding-left: 25px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m30 {
    margin: 30px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt30 {
    margin-top: 30px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr30 {
    margin-right: 30px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb30 {
    margin-bottom: 30px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml30 {
    margin-left: 30px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p30 {
    padding: 30px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt30 {
    padding-top: 30px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr30 {
    padding-right: 30px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb30 {
    padding-bottom: 30px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl30 {
    padding-left: 30px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m35 {
    margin: 35px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt35 {
    margin-top: 35px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr35 {
    margin-right: 35px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb35 {
    margin-bottom: 35px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml35 {
    margin-left: 35px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p35 {
    padding: 35px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt35 {
    padding-top: 35px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr35 {
    padding-right: 35px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb35 {
    padding-bottom: 35px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl35 {
    padding-left: 35px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m40 {
    margin: 40px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt40 {
    margin-top: 40px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr40 {
    margin-right: 40px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb40 {
    margin-bottom: 40px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml40 {
    margin-left: 40px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p40 {
    padding: 40px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt40 {
    padding-top: 40px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr40 {
    padding-right: 40px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb40 {
    padding-bottom: 40px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl40 {
    padding-left: 40px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m45 {
    margin: 45px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt45 {
    margin-top: 45px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr45 {
    margin-right: 45px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb45 {
    margin-bottom: 45px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml45 {
    margin-left: 45px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p45 {
    padding: 45px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt45 {
    padding-top: 45px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr45 {
    padding-right: 45px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb45 {
    padding-bottom: 45px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl45 {
    padding-left: 45px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m50 {
    margin: 50px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt50 {
    margin-top: 50px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr50 {
    margin-right: 50px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb50 {
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml50 {
    margin-left: 50px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p50 {
    padding: 50px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt50 {
    padding-top: 50px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr50 {
    padding-right: 50px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb50 {
    padding-bottom: 50px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl50 {
    padding-left: 50px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m55 {
    margin: 55px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt55 {
    margin-top: 55px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr55 {
    margin-right: 55px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb55 {
    margin-bottom: 55px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml55 {
    margin-left: 55px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p55 {
    padding: 55px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt55 {
    padding-top: 55px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr55 {
    padding-right: 55px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb55 {
    padding-bottom: 55px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl55 {
    padding-left: 55px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m60 {
    margin: 60px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt60 {
    margin-top: 60px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr60 {
    margin-right: 60px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb60 {
    margin-bottom: 60px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml60 {
    margin-left: 60px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p60 {
    padding: 60px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt60 {
    padding-top: 60px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr60 {
    padding-right: 60px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb60 {
    padding-bottom: 60px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl60 {
    padding-left: 60px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m65 {
    margin: 65px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt65 {
    margin-top: 65px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr65 {
    margin-right: 65px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb65 {
    margin-bottom: 65px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml65 {
    margin-left: 65px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p65 {
    padding: 65px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt65 {
    padding-top: 65px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr65 {
    padding-right: 65px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb65 {
    padding-bottom: 65px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl65 {
    padding-left: 65px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m70 {
    margin: 70px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt70 {
    margin-top: 70px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr70 {
    margin-right: 70px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb70 {
    margin-bottom: 70px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml70 {
    margin-left: 70px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p70 {
    padding: 70px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt70 {
    padding-top: 70px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr70 {
    padding-right: 70px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb70 {
    padding-bottom: 70px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl70 {
    padding-left: 70px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m75 {
    margin: 75px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt75 {
    margin-top: 75px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr75 {
    margin-right: 75px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb75 {
    margin-bottom: 75px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml75 {
    margin-left: 75px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p75 {
    padding: 75px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt75 {
    padding-top: 75px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr75 {
    padding-right: 75px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb75 {
    padding-bottom: 75px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl75 {
    padding-left: 75px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m80 {
    margin: 80px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt80 {
    margin-top: 80px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr80 {
    margin-right: 80px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb80 {
    margin-bottom: 80px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml80 {
    margin-left: 80px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p80 {
    padding: 80px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt80 {
    padding-top: 80px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr80 {
    padding-right: 80px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb80 {
    padding-bottom: 80px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl80 {
    padding-left: 80px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m85 {
    margin: 85px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt85 {
    margin-top: 85px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr85 {
    margin-right: 85px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb85 {
    margin-bottom: 85px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml85 {
    margin-left: 85px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p85 {
    padding: 85px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt85 {
    padding-top: 85px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr85 {
    padding-right: 85px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb85 {
    padding-bottom: 85px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl85 {
    padding-left: 85px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m90 {
    margin: 90px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt90 {
    margin-top: 90px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr90 {
    margin-right: 90px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb90 {
    margin-bottom: 90px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml90 {
    margin-left: 90px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p90 {
    padding: 90px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt90 {
    padding-top: 90px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr90 {
    padding-right: 90px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb90 {
    padding-bottom: 90px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl90 {
    padding-left: 90px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m95 {
    margin: 95px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt95 {
    margin-top: 95px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr95 {
    margin-right: 95px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb95 {
    margin-bottom: 95px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml95 {
    margin-left: 95px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p95 {
    padding: 95px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt95 {
    padding-top: 95px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr95 {
    padding-right: 95px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb95 {
    padding-bottom: 95px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl95 {
    padding-left: 95px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-m100 {
    margin: 100px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mt100 {
    margin-top: 100px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mr100 {
    margin-right: 100px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-mb100 {
    margin-bottom: 100px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-ml100 {
    margin-left: 100px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-p100 {
    padding: 100px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pt100 {
    padding-top: 100px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pr100 {
    padding-right: 100px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pb100 {
    padding-bottom: 100px !important;
  }
}

@media screen and (max-width: 640px) {
  .u-sp-pl100 {
    padding-left: 100px !important;
  }
}

.u-fw100 {
  font-weight: 100;
}

.u-fw200 {
  font-weight: 200;
}

.u-fw300 {
  font-weight: 300;
}

.u-fw400 {
  font-weight: 400;
}

.u-fw500 {
  font-weight: 500;
}

.u-fw600 {
  font-weight: 600;
}

.u-fw700 {
  font-weight: 700;
}

.u-fw800 {
  font-weight: 800;
}

.u-fw900 {
  font-weight: 900;
}

.u-h10v {
  height: 10vh;
}

.u-h20v {
  height: 20vh;
}

.u-h30v {
  height: 30vh;
}

.u-h40v {
  height: 40vh;
}

.u-h50v {
  height: 50vh;
}

.u-h60v {
  height: 60vh;
}

.u-h70v {
  height: 70vh;
}

.u-h80v {
  height: 80vh;
}

.u-h90v {
  height: 90vh;
}

.u-h100v {
  height: 100vh;
}

.u-mauto {
  margin-left: auto;
  margin-right: auto;
}

.u-ta-l {
  text-align: left;
}

.u-ta-r {
  text-align: right;
}

.u-ta-c {
  text-align: center;
}

@media screen and (max-width: 640px) {
  .u-sp-block {
    display: block;
  }
}

.u-flexbox {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 640px) {
  .u-flexbox {
    flex-direction: column;
  }
}

.u-flex-h {
  display: flex;
  flex-direction: row;
}

.u-flex-v {
  display: flex;
  flex-direction: column;
}

.u-flex-1 {
  flex-grow: 1;
}

.u-zm1 {
  zoom: 1;
}

.u-onlysp {
  display: none;
}
@media screen and (max-width: 640px) {
  .u-onlysp {
    display: inline;
  }
}

@media screen and (max-width: 640px) {
  .u-onlypc {
    display: none;
  }
}

.u-fc-primary {
  color: #fe7b07;
}

.u-fc-danger {
  color: #e72f2f;
}

.u-fc-yellow {
  color: #ffee01;
}

.u-ff-nitalago_r {
  font-family: nitalago-ruika, sans-serif;
}

.u-clear-b {
  clear: both;
}

.u-underline-yellow {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #ffee01));
  background: linear-gradient(transparent 60%, #ffee01 0%);
}

.u-badge {
  display: inline-block;
  padding: 0.5em 0.8em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.u-badge.yellow {
  background-color: #ffee01;
}

.u-vertical-middle {
  vertical-align: middle;
}

/*! Emma.css 0.7.0 | emmet-like utility classes | MIT License | git.io/emma */
.u-pos-s {
  position: static !important;
}

.u-pos-a {
  position: absolute !important;
}

.u-pos-r {
  position: relative !important;
}

.u-pos-f {
  position: fixed !important;
}

.u-t-a {
  top: auto !important;
}

.u-t-0 {
  top: 0 !important;
}

.u-r-a {
  right: auto !important;
}

.u-r-0 {
  right: 0 !important;
}

.u-b-a {
  bottom: auto !important;
}

.u-b-0 {
  bottom: 0 !important;
}

.u-l-a {
  left: auto !important;
}

.u-l-0 {
  left: 0 !important;
}

.u-z-a {
  z-index: auto !important;
}

.u-z-0 {
  z-index: 0 !important;
}

.u-z-1 {
  z-index: 1 !important;
}

.u-z-2 {
  z-index: 2 !important;
}

.u-z-3 {
  z-index: 3 !important;
}

.u-z-4 {
  z-index: 4 !important;
}

.u-z-5 {
  z-index: 5 !important;
}

.u-z-6 {
  z-index: 6 !important;
}

.u-z-9999 {
  z-index: 9999 !important;
}

.u-fl-n {
  float: none !important;
}

.u-fl-l {
  float: left !important;
}

.u-fl-r {
  float: right !important;
}

.u-cl-n {
  clear: none !important;
}

.u-cl-l {
  clear: left !important;
}

.u-cl-r {
  clear: right !important;
}

.u-cl-b {
  clear: both !important;
}

.u-d-n {
  display: none !important;
}

.u-d-b {
  display: block !important;
}

.u-d-f {
  display: flex !important;
}

.u-d-if {
  display: inline-flex !important;
}

.u-d-i {
  display: inline !important;
}

.u-d-ib {
  display: inline-block !important;
}

.u-d-li {
  display: list-item !important;
}

.u-d-ri {
  display: run-in !important;
}

.u-d-cp {
  display: compact !important;
}

.u-d-tb {
  display: table !important;
}

.u-d-itb {
  display: inline-table !important;
}

.u-d-tbcp {
  display: table-caption !important;
}

.u-d-tbcl {
  display: table-column !important;
}

.u-d-tbclg {
  display: table-column-group !important;
}

.u-d-tbhg {
  display: table-header-group !important;
}

.u-d-tbfg {
  display: table-footer-group !important;
}

.u-d-tbr {
  display: table-row !important;
}

.u-d-tbrg {
  display: table-row-group !important;
}

.u-d-tbc {
  display: table-cell !important;
}

.u-d-rb {
  display: ruby !important;
}

.u-d-rbb {
  display: ruby-base !important;
}

.u-d-rbbg {
  display: ruby-base-group !important;
}

.u-d-rbt {
  display: ruby-text !important;
}

.u-d-rbtg {
  display: ruby-text-group !important;
}

.u-v-v {
  visibility: visible !important;
}

.u-v-h {
  visibility: hidden !important;
}

.u-v-c {
  visibility: collapse !important;
}

.u-ov-v {
  overflow: visible !important;
}

.u-ov-h {
  overflow: hidden !important;
}

.u-ov-s {
  overflow: scroll !important;
}

.u-ov-a {
  overflow: auto !important;
}

.u-ovx-v {
  overflow-x: visible !important;
}

.u-ovx-h {
  overflow-x: hidden !important;
}

.u-ovx-s {
  overflow-x: scroll !important;
}

.u-ovx-a {
  overflow-x: auto !important;
}

.u-ovy-v {
  overflow-y: visible !important;
}

.u-ovy-h {
  overflow-y: hidden !important;
}

.u-ovy-s {
  overflow-y: scroll !important;
}

.u-ovy-a {
  overflow-y: auto !important;
}

.u-bxz-cb {
  box-sizing: content-box !important;
}

.u-bxz-bb {
  box-sizing: border-box !important;
}

.u-bxsh-n {
  box-shadow: none !important;
}

.u-m-a {
  margin: auto !important;
}

.u-m-0 {
  margin: 0 !important;
}

.u-m-0_a {
  margin: 0 auto !important;
}

.u-m-xs {
  margin: 0.2rem !important;
}

.u-m-sm {
  margin: 0.5rem !important;
}

.u-m-md {
  margin: 1rem !important;
}

.u-m-lg {
  margin: 1.5rem !important;
}

.u-m-xl {
  margin: 3rem !important;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-xs {
  margin-top: 0.2rem !important;
}

.u-mt-sm {
  margin-top: 0.5rem !important;
}

.u-mt-md {
  margin-top: 1rem !important;
}

.u-mt-lg {
  margin-top: 1.5rem !important;
}

.u-mt-xl {
  margin-top: 3rem !important;
}

.u-mr-a {
  margin-right: auto !important;
}

.u-mr-0 {
  margin-right: 0 !important;
}

.u-mr-xs {
  margin-right: 0.2rem !important;
}

.u-mr-sm {
  margin-right: 0.5rem !important;
}

.u-mr-md {
  margin-right: 1rem !important;
}

.u-mr-lg {
  margin-right: 1.5rem !important;
}

.u-mr-xl {
  margin-right: 3rem !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-xs {
  margin-bottom: 0.2rem !important;
}

.u-mb-sm {
  margin-bottom: 0.5rem !important;
}

.u-mb-md {
  margin-bottom: 1rem !important;
}

.u-mb-lg {
  margin-bottom: 1.5rem !important;
}

.u-mb-xl {
  margin-bottom: 3rem !important;
}

.u-ml-a {
  margin-left: auto !important;
}

.u-ml-0 {
  margin-left: 0 !important;
}

.u-ml-xs {
  margin-left: 0.2rem !important;
}

.u-ml-sm {
  margin-left: 0.5rem !important;
}

.u-ml-md {
  margin-left: 1rem !important;
}

.u-ml-lg {
  margin-left: 1.5rem !important;
}

.u-ml-xl {
  margin-left: 3rem !important;
}

.u-p-0 {
  padding: 0 !important;
}

.u-p-xs {
  padding: 0.2rem !important;
}

.u-p-sm {
  padding: 0.5rem !important;
}

.u-p-md {
  padding: 1rem !important;
}

.u-p-lg {
  padding: 1.5rem !important;
}

.u-p-xl {
  padding: 3rem !important;
}

.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-xs {
  padding-top: 0.2rem !important;
}

.u-pt-sm {
  padding-top: 0.5rem !important;
}

.u-pt-md {
  padding-top: 1rem !important;
}

.u-pt-lg {
  padding-top: 1.5rem !important;
}

.u-pt-xl {
  padding-top: 3rem !important;
}

.u-pr-0 {
  padding-right: 0 !important;
}

.u-pr-xs {
  padding-right: 0.2rem !important;
}

.u-pr-sm {
  padding-right: 0.5rem !important;
}

.u-pr-md {
  padding-right: 1rem !important;
}

.u-pr-lg {
  padding-right: 1.5rem !important;
}

.u-pr-xl {
  padding-right: 3rem !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pb-xs {
  padding-bottom: 0.2rem !important;
}

.u-pb-sm {
  padding-bottom: 0.5rem !important;
}

.u-pb-md {
  padding-bottom: 1rem !important;
}

.u-pb-lg {
  padding-bottom: 1.5rem !important;
}

.u-pb-xl {
  padding-bottom: 3rem !important;
}

.u-pl-0 {
  padding-left: 0 !important;
}

.u-pl-xs {
  padding-left: 0.2rem !important;
}

.u-pl-sm {
  padding-left: 0.5rem !important;
}

.u-pl-md {
  padding-left: 1rem !important;
}

.u-pl-lg {
  padding-left: 1.5rem !important;
}

.u-pl-xl {
  padding-left: 3rem !important;
}

.u-w-a {
  width: auto !important;
}

.u-w-0 {
  width: 0 !important;
}

.u-w-1p {
  width: 1% !important;
}

.u-w-10p {
  width: 10% !important;
}

.u-w-20p {
  width: 20% !important;
}

.u-w-25p {
  width: 25% !important;
}

.u-w-30p {
  width: 30% !important;
}

.u-w-33p {
  width: 33% !important;
}

.u-w-40p {
  width: 40% !important;
}

.u-w-50p {
  width: 50% !important;
}

.u-w-60p {
  width: 60% !important;
}

.u-w-66p {
  width: 66% !important;
}

.u-w-70p {
  width: 70% !important;
}

.u-w-75p {
  width: 75% !important;
}

.u-w-80p {
  width: 80% !important;
}

.u-w-90p {
  width: 90% !important;
}

.u-w-100p {
  width: 100% !important;
}

.u-h-a {
  height: auto !important;
}

.u-h-0 {
  height: 0 !important;
}

.u-h-100p {
  height: 100% !important;
}

.u-maw-n {
  max-width: none !important;
}

.u-maw-1p {
  max-width: 1% !important;
}

.u-maw-10p {
  max-width: 10% !important;
}

.u-maw-20p {
  max-width: 20% !important;
}

.u-maw-25p {
  max-width: 25% !important;
}

.u-maw-30p {
  max-width: 30% !important;
}

.u-maw-33p {
  max-width: 33% !important;
}

.u-maw-40p {
  max-width: 40% !important;
}

.u-maw-50p {
  max-width: 50% !important;
}

.u-maw-60p {
  max-width: 60% !important;
}

.u-maw-66p {
  max-width: 66% !important;
}

.u-maw-70p {
  max-width: 70% !important;
}

.u-maw-75p {
  max-width: 75% !important;
}

.u-maw-80p {
  max-width: 80% !important;
}

.u-maw-90p {
  max-width: 90% !important;
}

.u-maw-100p {
  max-width: 100% !important;
}

.u-mah-n {
  max-height: none !important;
}

.u-mah-100p {
  max-height: 100% !important;
}

.u-miw-0 {
  min-width: 0 !important;
}

.u-mih-0 {
  min-height: 0 !important;
}

.u-ol-n {
  outline: none !important;
}

.u-olw-tn {
  outline-width: thin !important;
}

.u-olw-md {
  outline-width: medium !important;
}

.u-olw-tc {
  outline-width: thick !important;
}

.u-ols-n {
  outline-style: none !important;
}

.u-ols-dt {
  outline-style: dotted !important;
}

.u-ols-ds {
  outline-style: dashed !important;
}

.u-ols-s {
  outline-style: solid !important;
}

.u-ols-db {
  outline-style: double !important;
}

.u-ols-g {
  outline-style: groove !important;
}

.u-ols-r {
  outline-style: ridge !important;
}

.u-ols-i {
  outline-style: inset !important;
}

.u-ols-o {
  outline-style: outset !important;
}

.u-olc-i {
  outline-color: invert !important;
}

.u-bfv-h {
  backface-visibility: hidden !important;
}

.u-bfv-v {
  backface-visibility: visible !important;
}

.u-bd-n {
  border: none !important;
}

.u-bd-0 {
  border: 0 !important;
}

.u-bdcl-c {
  border-collapse: collapse !important;
}

.u-bdcl-s {
  border-collapse: separate !important;
}

.u-bdc-t {
  border-color: transparent !important;
}

.u-bdc-cc {
  border-color: currentColor !important;
}

.u-bdc-white {
  border-color: #ffffff !important;
}

.u-bdc-silver {
  border-color: #dddddd !important;
}

.u-bdc-gray {
  border-color: #aaaaaa !important;
}

.u-bdc-black {
  border-color: #111111 !important;
}

.u-bdc-navy {
  border-color: #001f3f !important;
}

.u-bdc-blue {
  border-color: #0074d9 !important;
}

.u-bdc-aqua {
  border-color: #7fdbff !important;
}

.u-bdc-teal {
  border-color: #39cccc !important;
}

.u-bdc-olive {
  border-color: #3d9970 !important;
}

.u-bdc-green {
  border-color: #2ecc40 !important;
}

.u-bdc-lime {
  border-color: #01ff70 !important;
}

.u-bdc-yellow {
  border-color: #ffdc00 !important;
}

.u-bdc-orange {
  border-color: #ff851b !important;
}

.u-bdc-red {
  border-color: #ff4136 !important;
}

.u-bdc-maroon {
  border-color: #85144b !important;
}

.u-bdc-fuchsia {
  border-color: #f012be !important;
}

.u-bdc-purple {
  border-color: #b10dc9 !important;
}

.u-bdc-primary {
  border-color: #0275d8 !important;
}

.u-bdc-success {
  border-color: #5cb85c !important;
}

.u-bdc-info {
  border-color: #5bc0de !important;
}

.u-bdc-warning {
  border-color: #f0ad4e !important;
}

.u-bdc-danger {
  border-color: #d9534f !important;
}

.u-bdi-n {
  border-image: none !important;
}

.u-bds-n {
  border-style: none !important;
}

.u-bds-h {
  border-style: hidden !important;
}

.u-bds-dt {
  border-style: dotted !important;
}

.u-bds-ds {
  border-style: dashed !important;
}

.u-bds-s {
  border-style: solid !important;
}

.u-bds-db {
  border-style: double !important;
}

.u-bds-w {
  border-style: wave !important;
}

.u-bds-g {
  border-style: groove !important;
}

.u-bds-r {
  border-style: ridge !important;
}

.u-bds-i {
  border-style: inset !important;
}

.u-bds-o {
  border-style: outset !important;
}

.u-bdw-0 {
  border-width: 0 !important;
}

.u-bdw-1 {
  border-width: 1px !important;
}

.u-bdw-2 {
  border-width: 2px !important;
}

.u-bdw-3 {
  border-width: 3px !important;
}

.u-bdw-4 {
  border-width: 4px !important;
}

.u-bdw-5 {
  border-width: 5px !important;
}

.u-bdw-6 {
  border-width: 6px !important;
}

.u-bdtw-0 {
  border-top-width: 0 !important;
}

.u-bdtw-1 {
  border-top-width: 1px !important;
}

.u-bdtw-2 {
  border-top-width: 2px !important;
}

.u-bdtw-3 {
  border-top-width: 3px !important;
}

.u-bdtw-4 {
  border-top-width: 4px !important;
}

.u-bdtw-5 {
  border-top-width: 5px !important;
}

.u-bdtw-6 {
  border-top-width: 6px !important;
}

.u-bdrw-0 {
  border-right-width: 0 !important;
}

.u-bdrw-1 {
  border-right-width: 1px !important;
}

.u-bdrw-2 {
  border-right-width: 2px !important;
}

.u-bdrw-3 {
  border-right-width: 3px !important;
}

.u-bdrw-4 {
  border-right-width: 4px !important;
}

.u-bdrw-5 {
  border-right-width: 5px !important;
}

.u-bdrw-6 {
  border-right-width: 6px !important;
}

.u-bdbw-0 {
  border-bottom-width: 0 !important;
}

.u-bdbw-1 {
  border-bottom-width: 1px !important;
}

.u-bdbw-2 {
  border-bottom-width: 2px !important;
}

.u-bdbw-3 {
  border-bottom-width: 3px !important;
}

.u-bdbw-4 {
  border-bottom-width: 4px !important;
}

.u-bdbw-5 {
  border-bottom-width: 5px !important;
}

.u-bdbw-6 {
  border-bottom-width: 6px !important;
}

.u-bdlw-0 {
  border-left-width: 0 !important;
}

.u-bdlw-1 {
  border-left-width: 1px !important;
}

.u-bdlw-2 {
  border-left-width: 2px !important;
}

.u-bdlw-3 {
  border-left-width: 3px !important;
}

.u-bdlw-4 {
  border-left-width: 4px !important;
}

.u-bdlw-5 {
  border-left-width: 5px !important;
}

.u-bdlw-6 {
  border-left-width: 6px !important;
}

.u-bdt-n {
  border-top: none !important;
}

.u-bdt-0 {
  border-top: 0 !important;
}

.u-bdtc-t {
  border-top-color: transparent !important;
}

.u-bdtc-cc {
  border-top-color: currentColor !important;
}

.u-bdr-n {
  border-right: none !important;
}

.u-bdr-0 {
  border-right: 0 !important;
}

.u-bdrc-t {
  border-right-color: transparent !important;
}

.u-bdrc-cc {
  border-right-color: currentColor !important;
}

.u-bdb-n {
  border-bottom: none !important;
}

.u-bdb-0 {
  border-bottom: 0 !important;
}

.u-bdbc-t {
  border-bottom-color: transparent !important;
}

.u-bdbc-cc {
  border-bottom-color: currentColor !important;
}

.u-bdl-n {
  border-left: none !important;
}

.u-bdl-0 {
  border-left: 0 !important;
}

.u-bdlc-t {
  border-left-color: transparent !important;
}

.u-bdlc-cc {
  border-left-color: currentColor !important;
}

.u-bdrs-xs {
  border-radius: 0.1rem !important;
}

.u-bdrs-sm {
  border-radius: 0.2rem !important;
}

.u-bdrs-md {
  border-radius: 0.25rem !important;
}

.u-bdrs-lg {
  border-radius: 0.3rem !important;
}

.u-bdrs-xl {
  border-radius: 0.4rem !important;
}

.u-bdrs-0 {
  border-radius: 0 !important;
}

.u-bdrs-1 {
  border-radius: 1px !important;
}

.u-bdrs-2 {
  border-radius: 2px !important;
}

.u-bdrs-3 {
  border-radius: 3px !important;
}

.u-bdrs-4 {
  border-radius: 4px !important;
}

.u-bdrs-5 {
  border-radius: 5px !important;
}

.u-bdrs-6 {
  border-radius: 6px !important;
}

.u-bdrs-100p {
  border-radius: 100% !important;
}

.u-bg-n {
  background: none !important;
}

.u-bgc-t {
  background-color: transparent !important;
}

.u-bgc-cc {
  background-color: currentColor !important;
}

.u-bgc-white {
  background-color: #ffffff !important;
}

.u-bgc-silver {
  background-color: #dddddd !important;
}

.u-bgc-gray {
  background-color: #aaaaaa !important;
}

.u-bgc-black {
  background-color: #111111 !important;
}

.u-bgc-navy {
  background-color: #001f3f !important;
}

.u-bgc-blue {
  background-color: #0074d9 !important;
}

.u-bgc-aqua {
  background-color: #7fdbff !important;
}

.u-bgc-teal {
  background-color: #39cccc !important;
}

.u-bgc-olive {
  background-color: #3d9970 !important;
}

.u-bgc-green {
  background-color: #2ecc40 !important;
}

.u-bgc-lime {
  background-color: #01ff70 !important;
}

.u-bgc-yellow {
  background-color: #ffdc00 !important;
}

.u-bgc-orange {
  background-color: #ff851b !important;
}

.u-bgc-red {
  background-color: #ff4136 !important;
}

.u-bgc-maroon {
  background-color: #85144b !important;
}

.u-bgc-fuchsia {
  background-color: #f012be !important;
}

.u-bgc-purple {
  background-color: #b10dc9 !important;
}

.u-bgc-primary {
  background-color: #0275d8 !important;
}

.u-bgc-success {
  background-color: #5cb85c !important;
}

.u-bgc-info {
  background-color: #5bc0de !important;
}

.u-bgc-warning {
  background-color: #f0ad4e !important;
}

.u-bgc-danger {
  background-color: #d9534f !important;
}

.u-bgi-n {
  background-image: none !important;
}

.u-bgr-n {
  background-repeat: no-repeat !important;
}

.u-bgr-x {
  background-repeat: repeat-x !important;
}

.u-bgr-y {
  background-repeat: repeat-y !important;
}

.u-bgr-sp {
  background-repeat: space !important;
}

.u-bgr-rd {
  background-repeat: round !important;
}

.u-bga-f {
  background-attachment: fixed !important;
}

.u-bga-s {
  background-attachment: scroll !important;
}

.u-bgp-t {
  background-position: top !important;
}

.u-bgp-r {
  background-position: right !important;
}

.u-bgp-b {
  background-position: bottom !important;
}

.u-bgp-l {
  background-position: left !important;
}

.u-bgp-c {
  background-position: center !important;
}

.u-bgsz-a {
  background-size: auto !important;
}

.u-bgsz-ct {
  background-size: contain !important;
}

.u-bgsz-cv {
  background-size: cover !important;
}

.u-c-i {
  color: inherit !important;
}

.u-c-white {
  color: #ffffff !important;
}

.u-c-silver {
  color: #dddddd !important;
}

.u-c-gray {
  color: #aaaaaa !important;
}

.u-c-black {
  color: #111111 !important;
}

.u-c-navy {
  color: #001f3f !important;
}

.u-c-blue {
  color: #0074d9 !important;
}

.u-c-aqua {
  color: #7fdbff !important;
}

.u-c-teal {
  color: #39cccc !important;
}

.u-c-olive {
  color: #3d9970 !important;
}

.u-c-green {
  color: #2ecc40 !important;
}

.u-c-lime {
  color: #01ff70 !important;
}

.u-c-yellow {
  color: #ffdc00 !important;
}

.u-c-orange {
  color: #ff851b !important;
}

.u-c-red {
  color: #ff4136 !important;
}

.u-c-maroon {
  color: #85144b !important;
}

.u-c-fuchsia {
  color: #f012be !important;
}

.u-c-purple {
  color: #b10dc9 !important;
}

.u-c-primary {
  color: #0275d8 !important;
}

.u-c-success {
  color: #5cb85c !important;
}

.u-c-info {
  color: #5bc0de !important;
}

.u-c-warning {
  color: #f0ad4e !important;
}

.u-c-danger {
  color: #d9534f !important;
}

.u-tbl-a {
  table-layout: auto !important;
}

.u-tbl-f {
  table-layout: fixed !important;
}

.u-lis-n {
  list-style: none !important;
}

.u-lisp-i {
  list-style-position: inside !important;
}

.u-lisp-o {
  list-style-position: outside !important;
}

.u-list-n {
  list-style-type: none !important;
}

.u-list-d {
  list-style-type: disc !important;
}

.u-list-c {
  list-style-type: circle !important;
}

.u-list-s {
  list-style-type: square !important;
}

.u-list-dc {
  list-style-type: decimal !important;
}

.u-list-dclz {
  list-style-type: decimal-leading-zero !important;
}

.u-list-lr {
  list-style-type: lower-roman !important;
}

.u-list-ur {
  list-style-type: upper-roman !important;
}

.u-lisi-n {
  list-style-image: none !important;
}

.u-va-sup {
  vertical-align: super !important;
}

.u-va-t {
  vertical-align: top !important;
}

.u-va-tt {
  vertical-align: text-top !important;
}

.u-va-m {
  vertical-align: middle !important;
}

.u-va-bl {
  vertical-align: baseline !important;
}

.u-va-b {
  vertical-align: bottom !important;
}

.u-va-tb {
  vertical-align: text-bottom !important;
}

.u-va-sub {
  vertical-align: sub !important;
}

.u-ta-l {
  text-align: left !important;
}

.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

.u-ta-j {
  text-align: justify !important;
}

.u-td-n {
  text-decoration: none !important;
}

.u-td-u {
  text-decoration: underline !important;
}

.u-td-o {
  text-decoration: overline !important;
}

.u-td-l {
  text-decoration: line-through !important;
}

.u-te-n {
  text-emphasis: none !important;
}

.u-te-ac {
  text-emphasis: accent !important;
}

.u-te-dt {
  text-emphasis: dot !important;
}

.u-te-c {
  text-emphasis: circle !important;
}

.u-te-ds {
  text-emphasis: disc !important;
}

.u-te-b {
  text-emphasis: before !important;
}

.u-te-a {
  text-emphasis: after !important;
}

.u-ti-0 {
  text-indent: 0 !important;
}

.u-ti--9999 {
  text-indent: -9999px !important;
}

.u-tov-e {
  text-overflow: ellipsis !important;
}

.u-tov-c {
  text-overflow: clip !important;
}

.u-tt-n {
  text-transform: none !important;
}

.u-tt-c {
  text-transform: capitalize !important;
}

.u-tt-u {
  text-transform: uppercase !important;
}

.u-tt-l {
  text-transform: lowercase !important;
}

.u-tsh-n {
  text-shadow: none !important;
}

.u-lh-nm {
  line-height: normal !important;
}

.u-lh-i {
  line-height: inherit !important;
}

.u-lh-0 {
  line-height: 0 !important;
}

.u-lh-1 {
  line-height: 1 !important;
}

.u-lh-2 {
  line-height: 2 !important;
}

.u-lh-3 {
  line-height: 3 !important;
}

.u-lh-4 {
  line-height: 4 !important;
}

.u-lh-5 {
  line-height: 5 !important;
}

.u-lh-6 {
  line-height: 6 !important;
}

.u-lh-xs {
  line-height: 1.25 !important;
}

.u-lh-sm {
  line-height: 1.33 !important;
}

.u-lh-md {
  line-height: 1.5 !important;
}

.u-lh-lg {
  line-height: 1.75 !important;
}

.u-lh-xl {
  line-height: 2 !important;
}

.u-whs-nm {
  white-space: normal !important;
}

.u-whs-p {
  white-space: pre !important;
}

.u-whs-nw {
  white-space: nowrap !important;
}

.u-whs-pw {
  white-space: pre-wrap !important;
}

.u-whs-pl {
  white-space: pre-line !important;
}

.u-wob-nm {
  word-break: normal !important;
}

.u-wob-k {
  word-break: keep-all !important;
}

.u-wob-ba {
  word-break: break-all !important;
}

.u-wow-nm {
  word-wrap: normal !important;
}

.u-wow-n {
  word-wrap: none !important;
}

.u-wow-u {
  word-wrap: unrestricted !important;
}

.u-wow-s {
  word-wrap: suppress !important;
}

.u-wow-bw {
  word-wrap: break-word !important;
}

.u-lts-nm {
  letter-spacing: normal !important;
}

.u-fw-nm {
  font-weight: normal !important;
}

.u-fw-b {
  font-weight: bold !important;
}

.u-fw-br {
  font-weight: bolder !important;
}

.u-fw-l {
  font-weight: 200 !important;
}

.u-fw-lr {
  font-weight: lighter !important;
}

.u-fw-100 {
  font-weight: 100 !important;
}

.u-fw-200 {
  font-weight: 200 !important;
}

.u-fw-300 {
  font-weight: 300 !important;
}

.u-fw-400 {
  font-weight: 400 !important;
}

.u-fw-500 {
  font-weight: 500 !important;
}

.u-fw-600 {
  font-weight: 600 !important;
}

.u-fw-700 {
  font-weight: 700 !important;
}

.u-fw-800 {
  font-weight: 800 !important;
}

.u-fw-900 {
  font-weight: 900 !important;
}

.u-fs-nm {
  font-style: normal !important;
}

.u-fs-i {
  font-style: italic !important;
}

.u-fs-o {
  font-style: oblique !important;
}

.u-fv-nm {
  font-variant: normal !important;
}

.u-fv-sc {
  font-variant: small-caps !important;
}

.u-fz-xs {
  font-size: 0.75rem !important;
}

.u-fz-sm {
  font-size: 0.875rem !important;
}

.u-fz-md {
  font-size: 1rem !important;
}

.u-fz-lg {
  font-size: 1.25rem !important;
}

.u-fz-xl {
  font-size: 1.5rem !important;
}

.u-fz-sr {
  font-size: smaller !important;
}

.u-fz-lr {
  font-size: larger !important;
}

.u-fz-10 {
  font-size: 10px !important;
}

.u-fz-11 {
  font-size: 11px !important;
}

.u-fz-12 {
  font-size: 12px !important;
}

.u-fz-13 {
  font-size: 13px !important;
}

.u-fz-14 {
  font-size: 14px !important;
}

.u-fz-15 {
  font-size: 15px !important;
}

.u-fz-16 {
  font-size: 16px !important;
}

.u-fz-17 {
  font-size: 17px !important;
}

.u-fz-18 {
  font-size: 18px !important;
}

.u-fz-19 {
  font-size: 19px !important;
}

.u-fz-20 {
  font-size: 20px !important;
}

.u-fz-h1 {
  font-size: 2.5rem !important;
}

.u-fz-h2 {
  font-size: 2rem !important;
}

.u-fz-h3 {
  font-size: 1.75rem !important;
}

.u-fz-h4 {
  font-size: 1.5rem !important;
}

.u-fz-h5 {
  font-size: 1.25rem !important;
}

.u-fz-h6 {
  font-size: 1rem !important;
}

.u-ff-s {
  font-family: serif !important;
}

.u-ff-ss {
  font-family: sans-serif !important;
}

.u-ff-c {
  font-family: cursive !important;
}

.u-ff-f {
  font-family: fantasy !important;
}

.u-ff-m {
  font-family: monospace !important;
}

.u-ff-a {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

.u-ff-t {
  font-family: "Times New Roman", Times, Baskerville, Georgia, serif !important;
}

.u-ff-v {
  font-family: Verdana, Geneva, sans-serif !important;
}

.u-ff-l {
  font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, "Helvetica Neue", Helvetica, sans-serif !important;
}

.u-ff-j {
  font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
}

.u-op-0 {
  opacity: 0 !important;
}

.u-op-0_1 {
  opacity: 0.1 !important;
}

.u-op-0_2 {
  opacity: 0.2 !important;
}

.u-op-0_3 {
  opacity: 0.3 !important;
}

.u-op-0_4 {
  opacity: 0.4 !important;
}

.u-op-0_5 {
  opacity: 0.5 !important;
}

.u-op-0_6 {
  opacity: 0.6 !important;
}

.u-op-0_7 {
  opacity: 0.7 !important;
}

.u-op-0_8 {
  opacity: 0.8 !important;
}

.u-op-0_9 {
  opacity: 0.9 !important;
}

.u-op-1 {
  opacity: 1 !important;
}

.u-rsz-n {
  resize: none !important;
}

.u-rsz-b {
  resize: both !important;
}

.u-rsz-h {
  resize: horizontal !important;
}

.u-rsz-v {
  resize: vertical !important;
}

.u-cur-a {
  cursor: auto !important;
}

.u-cur-d {
  cursor: default !important;
}

.u-cur-c {
  cursor: crosshair !important;
}

.u-cur-ha {
  cursor: hand !important;
}

.u-cur-he {
  cursor: help !important;
}

.u-cur-m {
  cursor: move !important;
}

.u-cur-p {
  cursor: pointer !important;
}

.u-cur-t {
  cursor: text !important;
}

.u-fxd-r {
  flex-direction: row !important;
}

.u-fxd-rr {
  flex-direction: row-reverse !important;
}

.u-fxd-c {
  flex-direction: column !important;
}

.u-fxd-cr {
  flex-direction: column-reverse !important;
}

.u-fxw-n {
  flex-wrap: nowrap !important;
}

.u-fxw-w {
  flex-wrap: wrap !important;
}

.u-fxw-wr {
  flex-wrap: wrap-reverse !important;
}

.u-jc-fs {
  justify-content: flex-start !important;
}

.u-jc-fe {
  justify-content: flex-end !important;
}

.u-jc-c {
  justify-content: center !important;
}

.u-jc-sb {
  justify-content: space-between !important;
}

.u-jc-sa {
  justify-content: space-around !important;
}

.u-ai-fs {
  align-items: flex-start !important;
}

.u-ai-fe {
  align-items: flex-end !important;
}

.u-ai-c {
  align-items: center !important;
}

.u-ai-b {
  align-items: baseline !important;
}

.u-ai-s {
  align-items: stretch !important;
}

.u-ac-fs {
  align-content: flex-start !important;
}

.u-ac-fe {
  align-content: flex-end !important;
}

.u-ac-c {
  align-content: center !important;
}

.u-ac-sb {
  align-content: space-between !important;
}

.u-ac-sa {
  align-content: space-around !important;
}

.u-ac-s {
  align-content: stretch !important;
}

.u-ord--1 {
  order: -1 !important;
}

.u-ord-0 {
  order: 0 !important;
}

.u-ord-1 {
  order: 1 !important;
}

.u-ord-2 {
  order: 2 !important;
}

.u-ord-3 {
  order: 3 !important;
}

.u-ord-4 {
  order: 4 !important;
}

.u-ord-5 {
  order: 5 !important;
}

.u-ord-6 {
  order: 6 !important;
}

.u-ord-9999 {
  order: 9999 !important;
}

.u-fx-n {
  flex: none !important;
}

.u-fx-1_1_a {
  flex: 1 1 auto !important;
}

.u-fx-1_0_a {
  flex: 1 0 auto !important;
}

.u-fx-1_1_1 {
  flex: 1 1 1px !important;
}

.u-as-a {
  align-self: auto !important;
}

.u-as-fs {
  align-self: flex-start !important;
}

.u-as-fe {
  align-self: flex-end !important;
}

.u-as-c {
  align-self: center !important;
}

.u-as-b {
  align-self: baseline !important;
}

.u-as-s {
  align-self: stretch !important;
}

.u-wfsm-a {
  -webkit-font-smoothing: antialiased !important;
}

.u-wfsm-sa {
  -webkit-font-smoothing: subpixel-antialiased !important;
}

.u-wfsm-n {
  -webkit-font-smoothing: none !important;
}

.u-obf-f {
  object-fit: fill !important;
}

.u-obf-ct {
  object-fit: contain !important;
}

.u-obf-cv {
  object-fit: cover !important;
}

.u-obf-n {
  object-fit: none !important;
}

.u-obf-sd {
  object-fit: scale-down !important;
}

.u-cf:before, .u-cf:after {
  content: " ";
  display: table;
}
.u-cf:after {
  clear: both;
}

.u-tetr {
  max-width: 100%;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  word-wrap: normal !important;
}

.u-tehi {
  overflow: hidden !important;
  text-indent: 200% !important;
  white-space: nowrap !important;
}

.u-reli {
  list-style: none;
  padding-left: 0;
}

.u-abce {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}

/**
 * Swiper 6.8.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 23, 2021
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-container-pointer-events {
  touch-action: pan-y;
}

.swiper-container-pointer-events.swiper-container-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-container-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#deprecated .inner_wrap {
  margin: 0;
  padding: 0;
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
}
#deprecated .mt10 {
  margin-top: 10px !important;
}
#deprecated .mt30 {
  margin-top: 30px !important;
}
#deprecated .mb10 {
  margin-bottom: 10px !important;
}
#deprecated .mb40 {
  margin-bottom: 40px !important;
}
#deprecated .mb50 {
  margin-bottom: 50px !important;
}
#deprecated .c-title {
  position: relative;
}
#deprecated .c-title--stars {
  margin: 1rem auto;
  padding: 38px 0 0;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2em;
  position: relative;
}
#deprecated .c-title--stars:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 92px;
  height: 28.7px;
  margin-left: -46px;
  background: url("/assets/img/common/5stars-60046547.svg") 50% no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 640px) {
  #deprecated .item_static .item_mv {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .item_feature_ttl {
    padding-left: 70px;
  }
}
#deprecated .item_static .static_base {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .static_base {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
#deprecated .item_static .static_base p {
  margin-bottom: 20px;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .static_base p {
    margin-bottom: 10px;
  }
}
#deprecated .item_static .static_base p .bold {
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .static_base p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#deprecated .item_static .static_base .tac {
  text-align: center;
}
#deprecated .item_static .static_base figure.tac {
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .static_base figure.tac {
    margin-bottom: 10px;
  }
  #deprecated .item_static .static_base figure.tac img {
    width: 100%;
  }
}
#deprecated .item_static .static_lead {
  padding-top: 0;
}
#deprecated .item_static .bg_gray {
  background-color: #f5f4f0;
}
#deprecated .item_static .col2_wrap {
  margin-bottom: 50px;
}
#deprecated .item_static .col2_wrap::after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .col2_wrap {
    margin-bottom: 10px;
  }
}
#deprecated .item_static .col2_wrap .float_l {
  float: left;
}
#deprecated .item_static .col2_wrap .float_r {
  float: right;
}
#deprecated .item_static .col2_wrap.l65r30 .float_l {
  width: 65%;
}
#deprecated .item_static .col2_wrap.l65r30 .float_r {
  width: 30%;
}
#deprecated .item_static .col2_wrap.l30r65 .float_l {
  width: 30%;
}
#deprecated .item_static .col2_wrap.l30r65 .float_r {
  width: 65%;
}
#deprecated .item_static .col2_wrap.l48r48 .float_l {
  width: 48%;
}
#deprecated .item_static .col2_wrap.l48r48 .float_r {
  width: 48%;
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .col2_wrap.l65r30 .float_l,
  #deprecated .item_static .col2_wrap.l65r30 .float_r, #deprecated .item_static .col2_wrap.l30r65 .float_l,
  #deprecated .item_static .col2_wrap.l30r65 .float_r, #deprecated .item_static .col2_wrap.l48r48 .float_l,
  #deprecated .item_static .col2_wrap.l48r48 .float_r {
    width: 100%;
  }
}
#deprecated .item_static .col2_wrap.l65r30 .ttl, #deprecated .item_static .col2_wrap.l30r65 .ttl, #deprecated .item_static .col2_wrap.l48r48 .ttl {
  margin-bottom: 10px;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .col2_wrap .float_l,
  #deprecated .item_static .col2_wrap .float_r {
    float: none;
  }
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .col2_wrap .float_l img,
  #deprecated .item_static .col2_wrap .float_r img {
    margin-bottom: 10px;
    width: 100%;
  }
}
#deprecated .item_static .static_table_01 {
  margin-bottom: 50px;
  width: 100%;
  background-color: #fff;
  border-right: 1px solid #9d9d9d;
  border-bottom: 1px solid #9d9d9d;
}
#deprecated .item_static .static_table_01 tr th,
#deprecated .item_static .static_table_01 tr td {
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 15px;
  text-align: left;
  vertical-align: top;
  border-left: 1px solid #d2d2d2;
  border-top: 1px solid #d2d2d2;
  box-sizing: border-box;
}
#deprecated .item_static .static_table_01 tr th:first-child,
#deprecated .item_static .static_table_01 tr td:first-child {
  border-left-color: #9d9d9d;
}
#deprecated .item_static .static_table_01 tr th p,
#deprecated .item_static .static_table_01 tr td p {
  margin-bottom: 0;
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .static_table_01 tr th p,
  #deprecated .item_static .static_table_01 tr td p {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .static_table_01 tr th,
  #deprecated .item_static .static_table_01 tr td {
    font-size: 13px;
    font-size: 0.8125rem;
    padding: 5px;
  }
}
#deprecated .item_static .static_table_01 tr th {
  background-color: #f9f8f3;
  font-weight: bold;
}
#deprecated .item_static .static_table_01 tr th.main_th {
  text-align: center;
  background-color: #e5e2db;
  font-weight: normal;
}
#deprecated .item_static .static_table_01 tr th.th_col2 {
  width: 50%;
  text-align: center;
}
#deprecated .item_static .static_table_01 tr th .normal {
  font-weight: normal;
}
#deprecated .item_static .static_table_01 tr th .font_s {
  font-size: 13px;
  font-size: 0.8125rem;
}
#deprecated .item_static .static_table_01 tr th.width_pat_01 {
  width: 34.5%;
}
#deprecated .item_static .static_table_01 tr th.width_pat_02 {
  width: 24%;
}
#deprecated .item_static .static_table_01 tr th.width_pat_03 {
  width: 14%;
}
#deprecated .item_static .static_table_01 tr th.width_pat_04 {
  width: 17%;
}
#deprecated .item_static .static_table_01 tr th.width_pat_05 {
  width: 33%;
}
#deprecated .item_static .static_table_01 tr td .img {
  width: 190px;
  float: right;
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .static_table_01 tr td .img {
    width: 100%;
    float: none;
  }
  #deprecated .item_static .static_table_01 tr td .img img {
    margin-bottom: 10px;
    width: 100%;
  }
}
#deprecated .item_static .static_table_01 tr:first-child th,
#deprecated .item_static .static_table_01 tr:first-child td {
  border-top-color: #9d9d9d;
}
#deprecated .item_static .static_table_01.w_60_per {
  margin-left: auto;
  margin-right: auto;
  width: 60%;
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .static_table_01.w_60_per {
    width: 100%;
  }
}
#deprecated .item_static .static_table_01.w_70_per {
  margin-left: auto;
  margin-right: auto;
  width: 70%;
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .static_table_01.w_70_per {
    width: 100%;
  }
}
#deprecated .item_static .static_table_01.w_80_per {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .static_table_01.w_80_per {
    width: 100%;
  }
}
#deprecated .item_static .static_table_01 .bg_gray {
  background-color: #eae7e2;
}
#deprecated .item_static .static_table_01 .cell_list li {
  margin-left: 20px;
  font-size: 14px;
  font-size: 0.875rem;
  list-style: disc;
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .static_table_01 .cell_list li {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
#deprecated .item_static .static_table_02 {
  margin-bottom: 20px;
  width: 100%;
  background-color: #fff;
  border-right: 1px solid #9d9d9d;
  border-bottom: 1px solid #9d9d9d;
}
#deprecated .item_static .static_table_02 tr td {
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 15px;
  text-align: left;
  vertical-align: top;
  border-left: 1px solid #d2d2d2;
  border-top: 1px solid #d2d2d2;
  box-sizing: border-box;
}
#deprecated .item_static .static_table_02 tr td:first-child {
  border-left-color: #9d9d9d;
}
#deprecated .item_static .static_table_02 tr td p {
  margin-bottom: 0;
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .static_table_02 tr td {
    font-size: 13px;
    font-size: 0.8125rem;
    padding: 5px;
  }
}
#deprecated .item_static .static_table_02 tr td .img {
  width: 190px;
  float: right;
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .static_table_02 tr td .img {
    width: 100%;
    float: none;
  }
  #deprecated .item_static .static_table_02 tr td .img img {
    margin-bottom: 10px;
    width: 100%;
  }
}
#deprecated .item_static .static_table_02 tr:first-child td {
  border-top-color: #9d9d9d;
}
#deprecated .item_static .static_table_02 .bg_gray {
  background-color: #eae7e2;
}
#deprecated .item_static .bold {
  font-weight: bold;
}
#deprecated .item_static .item_feature_col3 {
  margin-bottom: 50px;
}
#deprecated .item_static .item_feature_col3 .txt_caption {
  margin-top: 10px;
  font-weight: bold;
}
#deprecated .item_static .item_feature_col3 .txt_caption .normal {
  font-weight: normal;
}
#deprecated .item_static .item_feature_col3 .txt_caption .font_s {
  font-size: 13px;
  font-size: 0.8125rem;
}
#deprecated .item_static .ttl_static_01 {
  margin-bottom: 15px;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .ttl_static_01 {
    margin-top: 15px;
    font-size: 20px;
    font-size: 1.25rem;
  }
}
#deprecated .item_static .col2_img_list {
  margin-bottom: 50px;
  text-align: center;
  font-size: 0px;
  font-size: 0rem;
}
#deprecated .item_static .col2_img_list li {
  display: inline-block;
}
#deprecated .item_static .col2_img_list li:nth-child(1) {
  margin-right: 30px;
}
#deprecated .item_static .col2_img_list li:nth-child(2) {
  margin-left: 30px;
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .col2_img_list li {
    margin-left: 0;
    margin-right: 0;
    display: block;
    width: 100%;
  }
  #deprecated .item_static .col2_img_list li:nth-child(1) {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  #deprecated .item_static .col2_img_list li:nth-child(2) {
    margin-left: 0px;
  }
}
#deprecated .item_static .item_static_col2 {
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .item_static_col2 {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
#deprecated .item_static .item_static_col2 > div {
  width: 300px;
  display: inline-block;
  text-align: left;
  vertical-align: top;
}
#deprecated .item_static .item_static_col2 > div:nth-child(1) {
  margin-right: 75px;
}
#deprecated .item_static .item_static_col2 > div:nth-child(2) {
  margin-left: 75px;
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .item_static_col2 > div:nth-child(1), #deprecated .item_static .item_static_col2 > div:nth-child(2) {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .item_static_col2 > div {
    width: 100%;
  }
  #deprecated .item_static .item_static_col2 > div img {
    width: 100%;
  }
}
#deprecated .item_static .item_static_col2 .photo {
  position: relative;
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .item_static_col2 .photo {
    margin-bottom: 20px;
  }
}
#deprecated .item_static .item_static_col2 .name {
  margin: 13px 0 10px;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-weight: bold;
}
#deprecated .item_static .item_static_col2 .caption {
  margin-top: 10px;
  font-weight: bold;
}
#deprecated .item_static .item_static_col2 .caption_circle {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  background-color: #4a4a4a;
  border-radius: 100px;
  position: absolute;
  right: -45px;
  top: -35px;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .item_static_col2 .caption_circle {
    color: #333;
    font-weight: bold;
    text-align: left;
    background-color: transparent;
    border-radius: 0px;
    position: static;
  }
}
#deprecated .item_static .item_static_col2 .caption_circle span {
  padding: 0 15px;
  width: 124px;
  height: 124px;
  box-sizing: border-box;
  display: table-cell;
  vertical-align: middle;
}
@media screen and (max-width: 640px) {
  #deprecated .item_static .item_static_col2 .caption_circle span {
    margin: 5px 0 10px;
    padding: 0;
    width: auto;
    height: auto;
    display: block;
  }
  #deprecated .item_static .item_static_col2 .caption_circle span br {
    display: none;
  }
}
#deprecated .item_static .col2_img_list {
  margin-top: 30px;
  margin-bottom: 0;
}

#deprecated .item_feature {
  padding-top: 50px;
  padding-bottom: 50px;
  clear: both;
}
@media screen and (max-width: 640px) {
  #deprecated .item_feature {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
#deprecated .item_feature .figure img {
  display: block;
}
@media screen and (max-width: 640px) {
  #deprecated .item_feature .figure img {
    width: 100%;
  }
}
#deprecated .item_feature .text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 640px) {
  #deprecated .item_feature .text {
    line-height: 1.73;
    letter-spacing: 0.025em;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#deprecated .item_feature .text p {
  margin-top: 14px;
}
@media screen and (max-width: 640px) {
  #deprecated .item_feature .text p {
    margin-top: 8px;
  }
}
#deprecated .item_feature .text p:first-child {
  margin-top: 0;
}
@media screen and (max-width: 640px) {
  #deprecated .item_feature .text p:first-child {
    margin-top: 0;
  }
}

#deprecated .item_feature_ttl {
  position: relative;
  margin: 0 0 26px;
  padding: 2px 0 0 90px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-size: 23px;
  font-size: 1.4375rem;
}
@media screen and (max-width: 640px) {
  #deprecated .item_feature_ttl {
    margin-bottom: 10px;
    padding-top: 0;
    padding-left: 60px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 640px) {
  #deprecated .item_feature_ttl br {
    display: none;
  }
}
#deprecated .item_feature_ttl > span {
  position: absolute;
  z-index: 1;
  padding: 0 10px;
  left: 0;
  top: 0;
  height: 40px;
  color: #554e48;
  font-weight: normal;
  vertical-align: middle;
  line-height: 1;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 640px) {
  #deprecated .item_feature_ttl > span {
    font-size: 10px;
    font-size: 0.625rem;
    height: 26px;
    padding-left: 5px;
  }
}
#deprecated .item_feature_ttl > span:before, #deprecated .item_feature_ttl > span:after {
  content: "";
  z-index: -1;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -8px;
}
#deprecated .item_feature_ttl > span:before {
  left: 0;
  right: 10px;
  height: 16px;
  background-color: #f5e3c0;
}
#deprecated .item_feature_ttl > span:after {
  right: -8px;
  left: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 9px;
  border-color: transparent;
  border-left-color: #f5e3c0;
}
#deprecated .item_feature_ttl > span span {
  margin: 0 0 0 5px;
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (max-width: 640px) {
  #deprecated .item_feature_ttl > span span {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}

#deprecated .item_feature_imgleft,
#deprecated .item_feature_imgonly,
#deprecated .item_feature_misc {
  margin-bottom: 60px;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  #deprecated .item_feature_imgleft,
  #deprecated .item_feature_imgonly,
  #deprecated .item_feature_misc {
    margin-bottom: 30px;
    overflow: auto;
  }
}

#deprecated .item_feature_imgleft .figure {
  margin: 0 40px 0 0;
  float: left;
}
@media screen and (max-width: 640px) {
  #deprecated .item_feature_imgleft .figure {
    margin-right: 0;
    margin-bottom: 10px;
    float: none;
  }
}
#deprecated .item_feature_imgleft .figure img {
  width: 300px;
}
@media screen and (max-width: 640px) {
  #deprecated .item_feature_imgleft .figure img {
    width: 100%;
  }
}
#deprecated .item_feature_imgleft .text {
  margin: -5px 0 0 340px;
}
@media screen and (max-width: 640px) {
  #deprecated .item_feature_imgleft .text {
    margin: 0;
  }
}
#deprecated .item_feature_imgleft .text .button_primary_wrapper {
  text-align: left;
}
#deprecated .item_feature_imgleft .item_feature_ttl {
  float: right;
  width: 660px;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  #deprecated .item_feature_imgleft .item_feature_ttl {
    float: none;
    width: auto;
  }
}
#deprecated .item_feature_imgleft .item_feature_ttl + .figure {
  margin-top: 6px;
}
@media screen and (max-width: 640px) {
  #deprecated .item_feature_imgleft .item_feature_ttl + .figure {
    margin-top: 0;
  }
}

#deprecated .item_feature_misc > figure, #deprecated .item_feature_misc > div, #deprecated .item_feature_misc > dl {
  margin-top: 14px;
}
#deprecated .item_feature_misc > figure:first-child, #deprecated .item_feature_misc > div:first-child, #deprecated .item_feature_misc > dl:first-child {
  margin-top: 0;
}
#deprecated .item_feature_misc .item_feature_imgleft {
  margin-bottom: 0;
}
#deprecated .item_feature_misc .table_def_desc {
  margin-top: 30px;
}
@media screen and (max-width: 640px) {
  #deprecated .item_feature_misc .table_def_desc {
    margin-top: 20px;
  }
}

#deprecated .item_feature_col3 {
  overflow: hidden;
}
#deprecated .item_feature_col3 > div {
  float: left;
  margin: 0 0 0 45px;
  width: 300px;
}
@media screen and (max-width: 640px) {
  #deprecated .item_feature_col3 > div {
    float: none;
    margin: 20px 0 0;
    width: auto;
  }
}
#deprecated .item_feature_col3 > div:first-child {
  margin-left: 0;
}
@media screen and (max-width: 640px) {
  #deprecated .item_feature_col3 > div:first-child {
    margin-top: 0;
  }
}
#deprecated .item_feature_col3 .photo img {
  display: block;
}
@media screen and (max-width: 640px) {
  #deprecated .item_feature_col3 .photo img {
    width: 100%;
  }
}
#deprecated .item_feature_col3 .name {
  margin: 13px 0 10px;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  #deprecated .item_feature_col3 .name {
    margin-top: 8px;
    margin-bottom: 4px;
    font-size: 16px;
    font-size: 1rem;
  }
}

#deprecated .item_howto_detail.item_feature {
  background: #fff;
  padding-bottom: 0;
}
#deprecated .item_howto_detail.item_feature .intro {
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.73;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 640px) {
  #deprecated .item_howto_detail.item_feature .intro {
    letter-spacing: 0.025em;
    text-align: left;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#deprecated .item_howto_detail.item_feature .white,
#deprecated .item_howto_detail.item_feature .colored {
  padding-top: 60px;
  padding-bottom: 1px;
}
@media screen and (max-width: 640px) {
  #deprecated .item_howto_detail.item_feature .white,
  #deprecated .item_howto_detail.item_feature .colored {
    padding-top: 40px;
    padding-bottom: 10px;
  }
}
#deprecated .item_howto_detail.item_feature .colored {
  background-color: #fbf9f4;
}
#deprecated .item_howto_detail.item_feature .item_howto_detail_logo {
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  #deprecated .item_howto_detail.item_feature .item_howto_detail_logo {
    margin-bottom: 30px;
  }
}
#deprecated .item_howto_detail.item_feature .item_feature_ttl {
  padding-left: 96px;
}
@media screen and (max-width: 640px) {
  #deprecated .item_howto_detail.item_feature .item_feature_ttl {
    padding-left: 74px;
  }
}

#deprecated #header {
  padding-top: 15px;
  text-align: center;
  color: #333;
}
@media screen and (max-width: 640px) {
  #deprecated #header {
    padding-top: 8px;
  }
}
#deprecated #header:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

#deprecated dl.table_def_desc, #deprecated .table_def_desc dl {
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  background-color: #fbf9f4;
  border: 1px solid #a3a3a3;
}
#deprecated dl.table_def_desc, #deprecated dl.table_def_desc .text p, #deprecated .table_def_desc dl, #deprecated .table_def_desc dl .text p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.73;
  letter-spacing: 0.025em;
}
#deprecated dl.table_def_desc dt, #deprecated dl.table_def_desc dd, #deprecated .table_def_desc dl dt, #deprecated .table_def_desc dl dd {
  padding: 14px 20px;
  border-style: solid;
  border-color: #dedede;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  #deprecated dl.table_def_desc dt, #deprecated dl.table_def_desc dd, #deprecated .table_def_desc dl dt, #deprecated .table_def_desc dl dd {
    padding: 10px 16px;
  }
}
#deprecated dl.table_def_desc dt, #deprecated .table_def_desc dl dt {
  clear: left;
  float: left;
  width: 240px;
  font-weight: bold;
  border-width: 1px 0 0 0;
}
@media screen and (max-width: 640px) {
  #deprecated dl.table_def_desc dt, #deprecated .table_def_desc dl dt {
    float: none;
    width: auto;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#deprecated dl.table_def_desc dt:first-of-type, #deprecated .table_def_desc dl dt:first-of-type {
  border-top-width: 0;
}
#deprecated dl.table_def_desc dd, #deprecated .table_def_desc dl dd {
  margin-left: 240px;
  background-color: #fff;
  border-width: 1px 1px 0 1px;
}
@media screen and (max-width: 640px) {
  #deprecated dl.table_def_desc dd, #deprecated .table_def_desc dl dd {
    margin-left: 0;
    border-width: 0;
  }
}
#deprecated dl.table_def_desc dd:first-of-type, #deprecated .table_def_desc dl dd:first-of-type {
  border-top-width: 0;
}

#deprecated .table_def_desc_caption {
  margin: 0 0 10px;
  font-weight: bold;
  line-height: 1.73;
  letter-spacing: 0.025em;
  font-size: 15px;
  font-size: 0.9375rem;
}

#deprecated .item_basics_step strong {
  font-weight: bold;
}
#deprecated .item_basics_step dl.table_def_desc dd, #deprecated .item_basics_step div .table_def_desc dd {
  overflow: hidden;
}
#deprecated .item_basics_step dl.table_def_desc .figure, #deprecated .item_basics_step div .table_def_desc .figure {
  float: right;
  width: 180px;
  margin-right: -6px;
}
@media screen and (max-width: 640px) {
  #deprecated .item_basics_step dl.table_def_desc .figure, #deprecated .item_basics_step div .table_def_desc .figure {
    float: none;
    margin-bottom: 10px;
    margin-right: 0;
    width: auto;
  }
}
#deprecated .item_basics_step dl.table_def_desc .figure img, #deprecated .item_basics_step div .table_def_desc .figure img {
  display: block;
}
#deprecated .item_basics_step dl.table_def_desc .text, #deprecated .item_basics_step div .table_def_desc .text {
  margin-right: 200px;
}
@media screen and (max-width: 640px) {
  #deprecated .item_basics_step dl.table_def_desc .text, #deprecated .item_basics_step div .table_def_desc .text {
    margin-right: 0;
  }
}

#deprecated .button_solid {
  position: relative;
  display: inline-block;
  padding: 0 13px;
  background-color: #0467cc;
  border: 1px solid #0467cc;
  border-radius: 4px;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff !important;
  height: 26px;
  line-height: 26px;
  color: #fff;
  text-align: center;
  transition: background-color 0.15s ease-out;
}
#deprecated .button_solid:hover, #deprecated .button_solid:active, #deprecated .button_solid:focus {
  color: #0467cc;
}
#deprecated .button_solid svg {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -10px;
  height: 20px;
  width: 10px;
  vertical-align: middle;
}
@media screen and (max-width: 640px) {
  #deprecated .button_solid svg {
    right: 5px;
    margin-top: -7px;
    height: 14px;
    width: 7px;
  }
}
#deprecated .button_solid svg polyline {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-miterlimit: 10;
}

.account-form > .c-form--attention {
  display: block;
  margin: 0 0 5px 13px;
  padding-top: 0;
}
.account-form > .c-form--attention:last-of-type {
  margin-bottom: 20px;
}
.account-form > .c-form--attention::before {
  top: 0.25em;
}
.account-form > .c-form--attention {
  font-size: 16px;
  font-weight: 700;
}
.account-form > label {
  display: block;
  text-align: center;
  margin-bottom: 30px;
}
.account-form > label > input[type=checkbox] {
  height: 14px;
  margin-right: 5px;
}
