@charset "UTF-8";
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*============================================================
	Base
============================================================*/
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

ul, li {
  list-style: none;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}
@media only screen and (max-width: 767px) {
  html,
  body {
    min-height: 100vh;
  }
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
     -moz-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #000;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 4vw;
    -webkit-text-size-adjust: 100%;
  }
}
html * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
          animation: fadeIn 1.5s ease 0s 1 normal;
  max-width: 750px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  body {
    width: 100%;
  }
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
img[src$=".svg"] {
  max-width: 100%;
}

a,
a * {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: #0071b9;
  text-decoration: underline;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover {
  text-decoration: none;
}

header,
nav,
main,
section,
footer {
  width: 100%;
}

header, footer {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  min-height: 1px;
}

article {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767px) {
  article {
    max-width: 89.3333333333%;
    margin: 0 auto 2.6666666667rem;
  }
}

p {
  line-height: 1.8;
  text-align: justify;
}
p strong {
  color: #f00;
}

table {
  border-collapse: collapse;
}

/*============================================================
	Commmon
============================================================*/
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.inner {
  width: 86.6666666667%;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .inner {
    max-width: 89.3333333333%;
  }
}

/*  buttons
-------------------------------------------------*/
.btn {
  display: block;
  width: 100%;
  height: 4rem;
  line-height: 4rem;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.7rem;
  font-weight: 700;
  border-radius: 1rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#39b24a), to(#008f45));
  background-image: -webkit-linear-gradient(top, #39b24a, #008f45);
  background-image: linear-gradient(to bottom, #39b24a, #008f45);
  position: relative;
}
@media only screen and (max-width: 767px) {
  .btn {
    font-size: 1.1333333333rem;
  }
}
.btn::before, .btn::after {
  position: absolute;
  content: "";
}
.btn::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.625rem 0 0.625rem 0.75rem;
  border-color: transparent transparent transparent #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .btn::before {
    border-width: 0.4166666667rem 0 0.4166666667rem 0.5rem;
    right: 0.8333333333rem;
  }
}
.btn::after {
  background: #006837;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  left: 0;
  bottom: -0.5rem;
  z-index: -1;
}

/*  headings
-------------------------------------------------*/
h2 {
  width: 100%;
  height: 2.5rem;
  line-height: 2.25rem;
  background: #0071b9;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding-left: 1.75rem;
  margin-bottom: 2.5rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 1rem;
    height: auto;
    line-height: 1.2;
    padding: 0.5rem 0.5rem 0.5rem 1.3333333333rem;
    margin-bottom: 1.6666666667rem;
  }
}
h2::before {
  position: absolute;
  content: "";
  width: 0.5rem;
  height: 1.5rem;
  background: #fff;
  left: 0.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  h2::before {
    width: 0.5rem;
    height: 70%;
    left: 0.5rem;
  }
}

/*  続きを読む
-------------------------------------------------*/
.content {
  position: relative;
}
.content.hide {
  overflow: hidden;
}
.content .more {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-bottom: 1.5rem;
  text-align: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(90%, rgb(255, 255, 255)));
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 90%);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 90%);
  cursor: pointer;
}
.content .more.open {
  display: none;
}

/*============================================================
	Layout
============================================================*/
/*  mv
-------------------------------------------------*/
#mv {
  margin-bottom: 4.5rem;
}
@media only screen and (max-width: 767px) {
  #mv {
    max-width: 100%;
    margin-bottom: 3rem;
  }
}
#mv h1 {
  display: block;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
  #mv h1 {
    margin-bottom: 1.6666666667rem;
  }
}
@media print, screen and (min-width: 768px) {
  #mv .inner {
    width: 100%;
    max-width: 100%;
  }
}
#mv .inner .btn {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f8ad3b), to(#f4901e));
  background-image: -webkit-linear-gradient(top, #f8ad3b, #f4901e);
  background-image: linear-gradient(to bottom, #f8ad3b, #f4901e);
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  #mv .inner .btn {
    margin-top: 2.6666666667rem;
  }
}
#mv .inner .btn::before {
  border-width: 0.75rem 0.625rem 0 0.625rem;
  border-color: #fff transparent transparent transparent;
}
@media only screen and (max-width: 767px) {
  #mv .inner .btn::before {
    border-width: 0.5rem 0.4166666667rem 0 0.4166666667rem;
  }
}
#mv .inner .btn::after {
  background: #ee5a24;
}

/*  目次
-------------------------------------------------*/
nav {
  background: #efefef;
  padding: 2.5rem;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767px) {
  nav {
    padding: 1rem;
    margin-bottom: 2.6666666667rem;
  }
}
nav ul li {
  line-height: 1.8;
}
nav ul li::before {
  color: #0071b9;
  content: "■";
}

/*  目的別　おすすめリースバック業者3選
-------------------------------------------------*/
#purpose small {
  color: #999;
  text-align: center;
  display: block;
  margin-bottom: 0.5em;
  font-size: 0.6666666667rem;
}
@media only screen and (max-width: 767px) {
  #purpose .table_wrap {
    overflow-x: auto;
  }
}
@media only screen and (max-width: 767px) {
  #purpose .table_wrap table {
    width: 150%;
  }
}
#purpose .table_wrap table th,
#purpose .table_wrap table td {
  padding: 0.75rem 0.5rem;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #purpose .table_wrap table th,
  #purpose .table_wrap table td {
    padding: 0.5rem;
  }
}
#purpose .table_wrap table th {
  width: 14.6666666667%;
}
#purpose .table_wrap table td {
  width: 28.4444444444%;
}
#purpose .table_wrap table thead th {
  padding-top: 0;
}
#purpose .table_wrap table thead td {
  padding-top: 0;
}
#purpose .table_wrap table thead td span {
  display: block;
  background: #008f45;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.5rem;
  position: relative;
  font-size: 0.9rem;
}
@media only screen and (max-width: 767px) {
  #purpose .table_wrap table thead td span {
    padding: 0.3333333333rem;
  }
}
#purpose .table_wrap table thead td span::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem 0.75rem 0 0.75rem;
  border-color: #008f45 transparent transparent transparent;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -0.75rem;
}
@media only screen and (max-width: 767px) {
  #purpose .table_wrap table thead td span::after {
    border-width: 0.5rem 0.5rem 0 0.5rem;
    bottom: -0.4666666667rem;
  }
}
#purpose .table_wrap table thead td span strong {
  color: #ff0;
}
#purpose .table_wrap table tbody th, #purpose .table_wrap table tbody td {
  border: solid 1px #0071b9;
}
#purpose .table_wrap table tbody th {
  background: #0071b9;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #purpose .table_wrap table tbody th {
    font-size: 0.8333333333rem;
  }
}
#purpose .table_wrap table tbody tr:not(:first-of-type):not(:nth-of-type(2)):not(:nth-last-of-type(2)):not(:last-of-type) th {
  border-bottom-color: #fff;
}
#purpose .table_wrap table tbody tr:first-of-type td {
  font-weight: 700;
  color: #f00;
  border-bottom: none;
}
#purpose .table_wrap table tbody tr:nth-of-type(2) td {
  border-top: none;
  border-bottom: none;
}
#purpose .table_wrap table tbody tr:nth-of-type(3) td {
  border-top: none;
  color: #008f45;
  font-weight: 700;
  font-size: 0.9rem;
}
@media only screen and (max-width: 767px) {
  #purpose .table_wrap table tbody tr:nth-of-type(3) td {
    font-size: 0.8333333333rem;
  }
}
#purpose .table_wrap table tbody tr:nth-of-type(3) td span {
  color: #666;
  font-size: 0.7rem;
  display: block;
  margin-bottom: 0.5em;
  white-space: nowrap;
}
#purpose .table_wrap table tbody tr:nth-last-of-type(2) th {
  padding-bottom: 0;
}
#purpose .table_wrap table tbody tr:nth-last-of-type(2) td {
  border-bottom: none;
  vertical-align: top;
  padding-bottom: 0;
}
#purpose .table_wrap table tbody tr:last-of-type td {
  border-top: none;
}
#purpose .table_wrap table tbody tr:last-of-type td .btn {
  height: 2.4rem;
  line-height: 2.4rem;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
#purpose .table_wrap table tbody tr:last-of-type td .btn::before {
  display: none;
}
#purpose .table_wrap table tbody tr:last-of-type td .btn::after {
  bottom: -0.25rem;
  border-radius: 0.5rem;
}

/*  リースバックとは
-------------------------------------------------*/
#leaseback p {
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
  #leaseback p {
    margin-bottom: 1.6666666667rem;
  }
}

/*  お悩み別　リースバックの利用が適しているタイプ
-------------------------------------------------*/
#type ol {
  counter-reset: type;
}
#type ol li:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
  #type ol li:not(:last-child) {
    margin-bottom: 1.6666666667rem;
  }
}
#type ol li dl dt {
  padding-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #008f45;
  font-weight: 700;
  border-bottom: solid 3px #008f45;
  cursor: pointer;
  position: relative;
  counter-increment: type;
}
@media only screen and (max-width: 767px) {
  #type ol li dl dt {
    font-size: 0.9333333333rem;
  }
}
#type ol li dl dt::before {
  content: counter(type) ". ";
}
#type ol li dl dt::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem 0.625rem 0 0.625rem;
  border-color: #008f45 transparent transparent transparent;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  #type ol li dl dt::after {
    right: 0;
  }
}
#type ol li dl dt.open::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}
#type ol li dl dd {
  display: none;
  background: rgba(0, 143, 69, 0.1);
  padding: 1.5rem;
  text-align: justify;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #type ol li dl dd {
    padding: 1rem;
  }
}
#type ol li dl dd small {
  color: #008f45;
  font-size: 0.75rem;
}

/*  おすすめリースバック業者3選を比較
-------------------------------------------------*/
#recommend section:not(:last-child) {
  padding-bottom: 4rem;
  border-bottom: solid 5px #ccc;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767px) {
  #recommend section:not(:last-child) {
    padding-bottom: 2.6666666667rem;
    margin-bottom: 2.6666666667rem;
  }
}
#recommend section h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ee5a24;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  #recommend section h3 {
    font-size: 1.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
#recommend section h3 img {
  width: 9rem;
}
@media only screen and (max-width: 767px) {
  #recommend section h3 img {
    margin-top: 0.6666666667rem;
    margin-left: auto;
  }
}
#recommend section h4 {
  text-align: center;
  border-bottom: solid 3px #008f45;
  color: #008f45;
  font-size: 1.3rem;
  font-weight: 700;
  padding-bottom: 0.5rem;
  margin: 1.5rem 0 2.5rem;
}
@media only screen and (max-width: 767px) {
  #recommend section h4 {
    font-size: 1.3333333333rem;
    line-height: 1.4;
    margin: 1rem 0 1.6666666667rem;
  }
}
#recommend section h4 span {
  font-size: 1rem;
  color: #666;
  margin-right: 1em;
}
@media only screen and (max-width: 767px) {
  #recommend section h4 span {
    display: block;
    margin-bottom: 0.5em;
    margin-right: 0;
  }
}
@media print, screen and (min-width: 768px) {
  #recommend section table {
    width: 86.6666666667%;
    margin: 2.5rem auto;
  }
}
@media only screen and (max-width: 767px) {
  #recommend section table {
    width: 100%;
    margin: 1.6666666667rem 0;
  }
}
#recommend section table th, #recommend section table td {
  text-align: left;
  border: solid 1px #0071b9;
  padding: 0.75rem;
}
@media only screen and (max-width: 767px) {
  #recommend section table th, #recommend section table td {
    vertical-align: middle;
    line-height: 1.4;
    padding: 0.5rem;
  }
}
#recommend section table th {
  background: #0071b9;
  color: #fff;
}
#recommend section table tr:not(:last-of-type) th {
  border-bottom-color: #fff;
}
#recommend section .recommend {
  background: #d3edfb;
  padding: 1.5rem;
  margin: 2.5rem 0;
}
@media only screen and (max-width: 767px) {
  #recommend section .recommend {
    padding: 1rem;
    margin: 1.6666666667rem 0;
  }
}
#recommend section .recommend h5 {
  color: #0071b9;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  border-bottom: solid 3px #0071b9;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  #recommend section .recommend h5 {
    font-size: 1.0666666667rem;
    padding-bottom: 0.3333333333rem;
    margin-bottom: 0.6666666667rem;
  }
}
#recommend section .recommend ul {
  padding-left: 1.5rem;
}
@media only screen and (max-width: 767px) {
  #recommend section .recommend ul {
    padding-left: 0;
  }
}
#recommend section .recommend ul li {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #recommend section .recommend ul li {
    font-size: 0.9333333333rem;
    margin-left: 1em;
    text-indent: -1em;
    line-height: 1.4;
  }
  #recommend section .recommend ul li:not(:last-child) {
    margin-bottom: 0.5em;
  }
}
#recommend section .recommend ul li::before {
  content: "●";
}
@media only screen and (max-width: 767px) {
  #recommend section .inner {
    width: 100%;
    max-width: 100%;
  }
}
#recommend section .inner .btn {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  #recommend section .inner .btn {
    margin-top: 1.6666666667rem;
  }
}
#recommend section .review {
  background: rgba(0, 143, 69, 0.2);
  padding: 1.5rem;
  margin: 2.5rem 0;
}
@media only screen and (max-width: 767px) {
  #recommend section .review {
    padding: 1rem;
    margin: 1.6666666667rem 0;
  }
}
#recommend section .review h5 {
  color: #008f45;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  border-bottom: solid 3px #008f45;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  #recommend section .review h5 {
    font-size: 1.0666666667rem;
    padding-bottom: 0.3333333333rem;
    margin-bottom: 0.6666666667rem;
  }
}
#recommend section .review > ul {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 767px) {
  #recommend section .review > ul {
    margin-bottom: 1rem;
  }
}
#recommend section .review ul li {
  background: #fff;
  padding: 1.5rem;
}
@media only screen and (max-width: 767px) {
  #recommend section .review ul li {
    padding: 1rem;
  }
}
#recommend section .review ul li:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 767px) {
  #recommend section .review ul li:not(:last-child) {
    margin-bottom: 1rem;
  }
}
#recommend section .review ul li dl dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-weight: 700;
  font-size: 1.2rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: solid 1px #000;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #recommend section .review ul li dl dt {
    font-size: 1.2rem;
  }
}
#recommend section .review ul li dl dd {
  font-size: 0.9rem;
  line-height: 1.8;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  #recommend section .review ul li dl dd {
    font-size: 0.8rem;
  }
}
#recommend section .review ul li dl dd span {
  display: block;
  margin-bottom: 0.5em;
  color: #008f45;
  text-align: right;
}
#recommend section .review .review_content.hide {
  overflow: hidden;
  height: 3em;
}
#recommend section .review .review_content .more {
  display: block;
  width: 100%;
  border: solid 1px #008f45;
  text-align: center;
  padding: 0.75rem;
  cursor: pointer;
  margin-bottom: 1.5rem;
  color: #008f45;
  text-decoration: none;
}
#recommend section .review .review_content .more.open {
  display: none;
}
#recommend section .review > small {
  display: block;
  text-align: right;
  font-size: 0.8rem;
  margin-top: 1em;
}

/*  リースバックで売却すると損をするって本当？
-------------------------------------------------*/
#loss .content.hide {
  height: 10em;
}
#loss .content .more {
  padding-top: 10em;
}

/*  リースバックを契約する前に気を付けておきたいポイント
-------------------------------------------------*/
#point h3 {
  color: #ee5a24;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1em;
}
#point h3::before {
  content: "■";
}
#point .content {
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
  #point .content {
    margin-bottom: 1.6666666667rem;
  }
}
#point .content.hide {
  height: 15em;
}
#point .content div {
  padding: 1.5rem;
  background: rgba(238, 90, 36, 0.1);
  margin: 1em 0;
}
#point .content div h4 {
  font-weight: 700;
  margin-bottom: 0.5em;
}
#point .content .more {
  padding-top: 15em;
}
#point dl {
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
  #point dl {
    margin-bottom: 1.6666666667rem;
  }
}
#point dl:first-of-type {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  #point dl:first-of-type {
    margin-top: 1.6666666667rem;
  }
}
#point dl dt {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1em;
}
#point dl dd {
  line-height: 1.8;
  text-align: justify;
}
#point > h4 {
  color: #0071b9;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1em;
  margin-top: 2.5rem;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #point > h4 {
    margin-top: 1.6666666667rem;
  }
}
#point figure {
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
  #point figure {
    margin-bottom: 1.6666666667rem;
  }
}

.floating {
  display: none;
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  padding: 1.1111111111rem 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .floating {
    padding: 0.6666666667rem 0;
  }
}
.floating a {
  display: block;
  background-image: linear-gradient(to bottom, #39b24a, #008f45);
  color: #fff;
  padding: 1.1111111111rem 2.2222222222rem;
  border-radius: 1.1111111111rem;
  text-align: center;
  font-size: 1.3333333333rem;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .floating a {
    padding: 0.6666666667rem 1.3333333333rem;
    font-size: 1rem;
  }
}
.floating a span {
  color: #fff;
  display: block;
  margin-bottom: 0.5em;
  text-decoration: none;
}
.floating a strong {
  color: #ff0;
  text-decoration: none;
}

/*  footer
-------------------------------------------------*/
footer {
  background: #efefef;
  text-align: center;
  padding: 1.5rem 0;
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 1rem 0;
  }
}