@charset "utf-8";

/* common */
body {
  font-family:
    'Noto Sans JP',
    -apple-system,
    BlinkMacSystemFont,
    'Helvetica Neue',
    'Segoe UI',
    'Hiragino Sans',
    Meiryo,
    sans-serif;
  line-height: 1.6;
  color: #333;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
  margin: 0;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
}

ol,
ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  opacity: 0.7;
}

a:link,
a:visited {
  text-decoration: none;
}

.Main {
  margin: auto;
  background: #fff;
}

.Responsive {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

@media (width >= 751px) {
  .Main {
    width: 100%;
  }

  .Responsive {
    max-width: 1080px;
  }
}

.u-sp {
  display: block;
}

.u-pc {
  display: none;
}
@media (width >= 751px) {
  .u-sp {
    display: none;
  }

  .u-pc {
    display: block;
  }
}

/* END: commnon */

.Header {
  display: flex;
}

.Header-top {
  width: 100%;
  padding-left: 15px;
}

.Header-top img {
  width: 180px;
}

.Header-plan {
  flex: 0 0 200px;
}

.Header-plan img {
  width: 100%;
}

.Hero {
  margin-bottom: 0;
}

.Hero-plan {
  padding: 15px 18px 60px;
  text-align: center;
  background-color: #e2edc1;
}

.Hero-plan__img {
  width: 100%;
}

.Hero-note {
  padding: 20px;
  font-size: 12px;
}

.Hero-note__item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}

.Hero-note__item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '※';
}

@media (width >= 751px) {
  .Header-top {
    padding-left: 30px;
  }

  .Header-top img {
    width: 200px;
  }

  .Header-plan {
    flex: 0 0 220px;
  }

  .Hero-plan__img {
    width: 500px;
  }

  .Hero-note {
    font-size: 14px;
  }
}

.Index {
  padding: 30px 10px;
  background-color: #8fb130;
}

.Index-question {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.Index-question__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  max-width: 32%;
  padding: 5px;
  margin: 0 5px;
  font-size: 12px;
  font-weight: bold;
  color: #333;
  background-color: #fff;
  border-radius: 8px;
}

.Index__answer {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.Index__answer::before {
  margin-right: 10px;
  content: '------';
}

.Index__answer::after {
  margin-left: 10px;
  content: '------';
}

.Index__caption {
  margin: 20px 0 50px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.Index-list {
  display: flex;
  flex-direction: column;
}

.Index-list-item {
  position: relative;
  display: flex;
  flex-direction: row;
  max-width: 100%;
  min-height: 120px;
  margin: 0 10px 60px;
  cursor: pointer;
  counter-increment: index;
  background-color: #fff;
  border-radius: 8px;
}

.Index-list-item::before {
  position: absolute;
  top: -30px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 5px;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  content: '0' counter(index);
  background-color: #f27b22;
  border-radius: 50%;
  transform: translateX(-50%);
}

.Index-list-item::after {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 8px;
  height: 8px;
  content: '';
  border-right: 2px solid #f27b22;
  border-bottom: 2px solid #f27b22;
  transform: rotate(45deg) translateX(-50%);
}

.Index-list-item__ico {
  display: flex;
  flex: 0 0 80px;
  align-items: center;
  padding: 12px;
}

.Index-list-item--eval {
  margin-bottom: 20px;
}

.Index-list-item--eval .Index-list-item__ico {
  padding: 25px 0 25px 25px;
}

.Index-list-item__img {
  width: 100%;
  height: auto;
}

.Index-list-item__txt {
  width: 100%;
  padding-left: 10px;
  margin: auto;
  font-weight: bold;
  line-height: 26px;
}

.Index-list-item__txt--highlight {
  color: #8fb130;
  text-decoration: underline;
  text-decoration-thickness: 6px;
  text-decoration-color: #ede154;
  text-decoration-skip-ink: none;
  text-underline-offset: -1px;
}

@media (width >= 361px) {
  .Index-list-item__ico {
    flex: 0 0 110px;
    padding: 25px;
  }
}

@media (width >= 751px) {
  .Index-question__item {
    font-size: 15px;
  }

  .Index__answer {
    font-size: 31px;
  }

  .Index__caption {
    font-size: 36px;
  }

  .Index-list {
    flex-direction: row;
    justify-content: center;
  }

  .Index-list-item {
    flex-direction: column;
    width: 33%;
    max-width: 280px;
    margin-bottom: 40px;
  }

  .Index-list-item::before {
    top: -10px;
    left: 20px;
  }

  .Index-list-item::after {
    bottom: 15px;
  }

  .Index-list-item:hover {
    opacity: 0.7;
  }

  .Index-list-item__ico {
    flex: 0 0 180px;
    justify-content: center;
    width: 100%;
  }

  .Index-list-item__img {
    max-width: 96px;
  }

  .Index-list-item--eval {
    margin-bottom: 40px;
  }

  .Index-list-item--eval .Index-list-item__ico {
    padding: 50px 25px 0;
  }

  .Index-list-item--eval .Index-list-item__img {
    max-width: 160px;
  }

  .Index-list-item__txt {
    padding: 0 0 30px;
    font-size: 18px;
    text-align: center;
  }
}

.Feature {
  padding: 60px 15px 20px;
  background-color: #f1f5e5;
}

.Feature-item {
  position: relative;
  padding: 50px 15px 15px;
  counter-increment: feature;
  background-color: #fff;
  border-radius: 20px;
}

.Feature-item::before {
  position: absolute;
  top: -45px;
  left: 50%;
  font-size: 52px;
  font-weight: bold;
  color: #f27b22;
  content: '0' counter(feature);
  transform: translateX(-50%);
}

.Feature-item__ttl {
  font-size: 22px;
  font-weight: bold;
  line-height: 32px;
  text-align: center;
}

.Feature-item__ttl--highlight {
  color: #8fb130;
}

.Feature-item__ttl--num {
  font-size: 150%;
}

.Feature-item__ttl--note {
  margin: 0 5px;
}

.Feature-item__hr {
  width: 95px;
  margin: 5px auto 25px;
  border: none;
  border-top: 6px dotted #8fb130;
}

.Feature-item__img {
  width: 100%;
  height: auto;
}

.Feature-item-point {
  padding: 40px 15px 20px;
  margin-bottom: 20px;
  background-color: #f4f6f7;
  border-radius: 12px;
}

.Feature-item-right--custom {
  display: flex;
  padding: 16px 0;
  background-color: #fff;
  border-radius: 12px;
}

.Feature-item-right--custom .Feature-item__img {
  max-width: 96px;
  margin: auto;
}

.Feature-item-right .Feature-item-point__txt {
  margin: 16px 0 0;
}

.Feature-item--flex {
  display: flex;
  flex-direction: column;
}

.Feature-item--contact {
  flex-direction: column;
}

.Feature-item-left {
  width: 100%;
}

.Feature-item-right {
  width: 100%;
}

.Feature-item-point__no {
  font-size: 20px;
  font-weight: bold;
  color: #f27b22;
}

.Feature-item-point__no--highlight {
  font-size: 150%;
}

.Feature-item-point__no--center {
  text-align: left;
}

.Feature-item-point__ttl {
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
  color: #333;
}

.Feature-item-point__ttl--highlight {
  color: #8fb130;
}

.Feature-item-point__ttl--center {
  text-align: left;
}

.Feature-item-point__ttl sup {
  margin: 0 5px;
}

.Feature-item-point__eval {
  display: block;
  height: auto;
  margin: auto;
}

.Feature-item__contact-img {
  display: block;
  max-width: 80%;
  margin: auto;
}

.Feature-item__mypage-img {
  display: block;
  width: 100%;
  margin: auto;
}

.Feature-item-point__txt {
  font-size: 15px;
  line-height: 26px;
  text-align: justify;
}

.Feature-item-point__note {
  font-size: 12px;
  line-height: 22px;
  text-align: justify;
}

.Feature-item-point-product {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.Feature-item-point-product-item {
  flex: 0 0 49%;
  margin-bottom: 10px;
}

.Feature-item-point-product__img {
  width: 100%;
  height: auto;
}

.Feature-item__method {
  margin-top: 15px;
  font-size: 20px;
  font-weight: bold;
}

.Feature-item__method--underline {
  border-bottom: 2px solid #8fb130;
}

.Feature-item__method--highlight {
  color: #8fb130;
}

.Feature-item__example {
  position: relative;
  display: inline-block;
  padding: 5px 25px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #fff;
  background-color: #f27b22;
  border-radius: 24px;
}

.Feature-item__example::before {
  position: absolute;
  top: 100%;
  left: 20px;
  width: 0;
  height: 0;
  content: '';
  border-width: 6px;
  border-top: solid #f27b22;
  border-right: solid transparent;
  border-bottom: solid transparent;
  border-left: solid transparent;
}

.Feature-item-list {
  margin-bottom: 20px;
}

.Feature-item-list__item {
  position: relative;
  padding-left: 27px;
  margin-bottom: 5px;
  font-size: 15px;
}

.Feature-item-list__item::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  content: '';
  background-image: url(/ad/019/product/img/ico_check.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.Feature-item__more {
  margin-top: 25px;
  margin-bottom: 8px;
  font-weight: bold;
  color: #f27b22;
}

.Feature-item__mypage {
  font-size: 18px;
  font-weight: bold;
  line-height: 26px;
}

.Feature-item__mypage--highlight {
  color: #8fb130;
}

.Feature-item__txt {
  margin-top: 15px;
}

@media (width >= 361px) {
  .Feature-item__ttl {
    font-size: 24px;
  }
}

@media (width >= 751px) {
  .Feature-item {
    padding: 40px 40px 15px;
  }

  .Feature-item::before {
    top: -47px;
    font-size: 56px;
  }

  .Feature-item--flex {
    flex-direction: row;
  }

  .Feature-item--contact {
    flex-direction: row-reverse;
    margin: 50px 0 30px;
  }

  .Feature-item-left {
    width: 50%;
  }

  .Feature-item-right {
    width: 50%;
  }

  .Feature-item__ttl {
    margin-top: 15px;
    font-size: 32px;
    line-height: 44px;
    letter-spacing: 2px;
  }

  .Feature-item__hr {
    margin: 30px auto 45px;
  }

  .Feature-item-point {
    padding: 40px 40px 20px;
  }

  .Feature-item-point__ttl {
    font-size: 28px;
    line-height: 38px;
  }

  .Feature-item-point__no--center {
    text-align: center;
  }

  .Feature-item-point__ttl--center {
    margin-bottom: 40px;
    text-align: center;
  }

  .Feature-item-point__txt {
    font-size: 18px;
  }

  .Feature-item-point__note {
    font-size: 13px;
  }

  .Feature-item-point-product {
    flex-flow: row wrap;
    justify-content: center;
    max-width: 700px;
    margin: auto;
  }

  .Feature-item-point-product-item {
    flex: 0 0 200px;
  }

  .Feature-item-point-product__img {
    width: 100%;
    height: auto;
  }

  .Feature-item-point__eval {
    max-width: 100%;
    padding: 0 0 0 20px;
  }

  .Feature-item__more {
    margin-top: 0;
    font-size: 22px;
  }

  .Feature-item__contact-img {
    margin: 0;
  }

  .Feature-item__mypage {
    font-size: 24px;
    line-height: 38px;
  }

  .Feature-item__mypage-img {
    margin: 0;
  }

  .Feature-item__method {
    font-size: 24px;
  }

  .Feature-item__method--underline {
    border-bottom-width: 3px;
  }

  .Feature-item-list__item {
    font-size: 16px;
  }

  .Feature-item-list__item::before {
    top: 6px;
  }

  .Feature-item--sum .Feature-item-right {
    padding-left: 30px;
  }

  .Feature-item--sum .Feature-item-right--custom {
    padding: 0;
    margin: 0 0 40px 60px;
  }
}

@media (width >= 920px) {
  .Feature-item-point__eval {
    padding: 0;
    max-width: 350px;
  }

  .Feature-item--sum .Feature-item-right--custom {
    margin: 0 0 0 60px;
  }
}

.Plan-btn {
  max-width: 400px;
  margin: 30px auto 60px;
}

@media (width >= 751px) {
  .Plan-btn {
    max-width: 600px;
    margin: 40px auto 100px;
  }
}

.Eval {
  padding: 25px 15px 50px;
  background-color: #fff;
}

.Eval-content {
  display: flex;
  flex-direction: column;
  padding: 20px 15px;
  border: 1px solid #efefef;
  border-radius: 12px;
}

.Eval-content-detail {
  width: 100%;
  padding-right: 20px;
}

.Eval-content-detail__ttl {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: bold;
  line-height: 32px;
}

.Eval-content-detail__ttl--company {
  color: #8fb130;
}

.Eval-content-detail__ttl--highlight {
  color: #f27b22;
}

.Eval-content-detail__txt {
  font-size: 14px;
  line-height: 28px;
}

.Eval-content__img {
  display: block;
  width: 80%;
  margin: 0 auto 20px;
}

.Eval-content__figcaption {
  font-size: 13px;
  text-align: center;
}

@media (width >= 751px) {
  .Eval {
    padding: 60px 20px;
  }

  .Eval-content {
    flex-direction: row;
    padding: 50px;
  }

  .Eval-content-detail__ttl {
    margin-bottom: 25px;
    font-size: 34px;
    line-height: 50px;
  }

  .Eval-content-fig {
    flex: 0 0 300px;
  }
}

.Net {
  padding: 50px 15px 30px;
  background-color: #f4f6f7;
}

.Net__ttl {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2.2px;
}

.Net__ttl--highlight {
  color: #8fb130;
}

.Net-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.Net-item {
  padding: 25px 20px;
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 8px;
}

.Net-item img {
  margin-bottom: 15px;
}

.Net-item p:last-child {
  margin-bottom: 0;
}

.Net-item--24h .Net__txt {
  text-align: center;
}

.Net__txt {
  font-size: 15px;
  font-weight: bold;
}

.Net__note {
  margin-top: 15px;
  font-size: 13px;
}

@media (width >= 751px) {
  .Net {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .Net__ttl {
    margin-bottom: 35px;
    font-size: 32px;
  }

  .Net-list {
    flex-direction: row;
    justify-content: space-evenly;
  }

  .Net-item {
    width: 40%;
    padding: 35px;
    margin-bottom: 0;
  }
}

.Flow {
  padding: 40px 15px;
  background-color: #fff;
}

.Flow__ttl {
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.Flow-list {
  display: flex;
  flex-direction: column;
}

.Flow-item {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  counter-increment: flow;
  border: 2px solid #8fb130;
  border-radius: 8px;
}

.Flow-item__ttl {
  position: relative;
  padding: 12px 10px;
  font-size: 23px;
  color: #fff;
  text-align: center;
  background-color: #8fb130;
}

.Flow-item__ttl::before {
  position: absolute;
  top: 50%;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 28px;
  font-weight: bold;
  color: #f27b22;
  content: counter(flow);
  background-color: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}

.Flow-item--customer {
  border-color: #566a1d;
}

.Flow-item--customer .Flow-item__ttl {
  background-color: #566a1d;
}

.Flow-item-content {
  padding: 25px 15px;
}

.Flow-item-content__img {
  display: block;
  width: 25%;
  margin: 0 auto 15px;
}

.Flow-item-content__lead {
  font-size: 21px;
  font-weight: bold;
  text-align: center;
}

.Flow-item-content__txt {
  font-size: 15px;
  text-align: center;
}

.Flow-item-content__attention {
  position: relative;
  padding: 5px 5px 5px 40px;
  font-size: 13px;
  background-color: #fff4f6;
  border: 2px solid #f03;
  border-radius: 4px;
}

.Flow-item-content__attention::before {
  position: absolute;
  top: 50%;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 20px;
  font-weight: bold;
  color: #f03;
  content: '!';
  border: 2px solid #f03;
  border-radius: 50%;
  transform: translateY(-50%);
}

.Flow-item__next {
  position: relative;
  height: 40px;
}

.Flow-item__next::before {
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  content: '';
  border: 15px solid transparent;
  border-top-color: #f27b22;
  transform: translateX(-50%);
}

@media (width >= 751px) {
  .Flow__ttl {
    margin: 30px 0 40px;
    font-size: 32px;
  }

  .Flow-list {
    flex-direction: row;
  }

  .Flow-item {
    width: calc((100% - (64px * 2)) / 3);
    border-width: 3px;
  }

  .Flow-item-content {
    display: flex;
    flex-direction: column;
  }

  .Flow-item-content-fig {
    height: 96px;
  }

  .Flow-item-content__img {
    width: 70px;
  }

  .Flow-item-content__img--verify {
    width: 56px;
  }

  .Flow-item__next {
    flex: 0 0 64px;
    height: auto;
  }

  .Flow-item__next::before {
    top: 45%;
    left: 60%;
    border-top-color: transparent;
    border-left-color: #f27b22;
    transform: translate(-50%);
  }
}

.Estimate {
  padding: 40px 20px;
  text-align: center;
  background-color: #f1f5e5;
}

.Estimate__txt {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1.5px;
}

.Estimate__caption {
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
}

.Estimate__caption--company {
  color: #8fb130;
}

.Estimate__caption--highlight {
  color: #f27b22;
}

@media (width >= 751px) {
  .Estimate {
    padding: 60px 20px;
  }

  .Estimate__img {
    width: 550px;
  }

  .Estimate__caption {
    margin: 25px 0;
    font-size: 36px;
  }
}

.Faq {
  padding: 30px 15px;
  background-color: #fff;
}

.Faq__ttl {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.Faq-item {
  margin-bottom: 15px;
  counter-increment: faq;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}

.Faq-item__question {
  position: relative;
  padding: 10px 30px 10px 52px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  background-color: #fbfcf8;
  border-radius: 8px;
}

.Faq-item__question::before {
  position: absolute;
  top: 50%;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  content: 'Q' counter(faq);
  background-color: #8fb130;
  border-radius: 50%;
  transform: translateY(-50%);
}

.Faq-item__question::after {
  position: absolute;
  top: 45%;
  right: 15px;
  width: 8px;
  height: 8px;
  content: '';
  border-right: 2px solid #8fb130;
  border-bottom: 2px solid #8fb130;
  transform: rotate(45deg) translateY(-50%);
}

.Faq-item--expanded .Faq-item__question {
  border-bottom: 1px solid #e5e5e5;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.Faq-item--expanded .Faq-item__question::after {
  top: 55%;
  border-top: 2px solid #8fb130;
  border-right: unset;
  border-bottom: unset;
  border-left: 2px solid #8fb130;
}

.Faq-item-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  transition: 0.3s max-height ease;
}

.Faq-item-answer__txt {
  padding: 30px 15px;
  font-size: 16px;
  line-height: 24px;
}

.Faq-item-answer__note {
  margin-top: 15px;
}

.Faq-item--expanded .Faq-item-answer {
  max-height: 1000px;
}

.Faq .Faq-item__lnk {
  color: #04c;
  text-decoration: underline;
}

.Faq__lnk {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 10px;
  margin-top: 40px;
  color: #333;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
}

.Faq__lnk::after {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  content: '';
  border-top: 2px solid #8fb130;
  border-right: 2px solid #8fb130;
  transform: rotate(45deg) translateY(-50%);
}

@media (width >= 751px) {
  .Faq__ttl {
    font-size: 32px;
  }

  .Faq-item__question {
    padding: 20px 30px 20px 65px;
    font-size: 18px;
  }

  .Faq-item__question::before {
    width: 44px;
    height: 44px;
    font-size: 21px;
  }

  .Faq-item__question::after {
    border-right-width: 3px;
    border-bottom-width: 3px;
  }

  .Faq-item--expanded .Faq-item__question::after {
    border-top-width: 3px;
    border-left-width: 3px;
  }

  .Faq__lnk {
    max-width: 450px;
    margin: 40px auto;
  }
}

.Footer {
  padding: 25px 20px 80px;
  background-color: #92b729;
}

.Footer-info {
  display: flex;
  flex-direction: column;
}

.Footer-info-item {
  padding: 25px 15px;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 8px;
}

.Footer-info-item--company {
  text-align: center;
}

.Footer-info-item__ttl {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.Footer-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.Footer-tel__ico {
  width: 36px;
  height: 36px;
  margin-right: 8px;
}

.Footer-tel__lnk {
  font-size: 32px;
  font-weight: bold;
  color: #333;
}

.Footer-info-item__time {
  font-size: 13px;
}

.Footer-info-item__coop {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
}

.Footer-info-item__company {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
}

.Footer-info-item__address {
  font-size: 14px;
}

.Footer-info-item__address--nowrap {
  white-space: nowrap;
}

.Footer__rt {
  color: #fff;
  text-align: center;
}

.Footer-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 14px;
  color: #fff;
}

.Footer-nav__lnk {
  color: #fff;
  text-decoration: none;
}

.Footer-nav__lnk:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.Footer-nav__hr {
  height: 16px;
  padding: 0;
  margin: 4px 10px 0;
  border: none;
  border-left: 1px solid #fff;
}

.Footer__copyright {
  font-size: 12px;
  color: #fff;
  text-align: center;
}

@media (width >= 361px) {
  .Footer-tel__ico {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }

  .Footer-tel__lnk {
    font-size: 36px;
  }

  .Footer-info-item__ttl {
    font-size: 20px;
  }

  .Footer-info-item__coop {
    font-size: 20px;
  }

  .Footer-info-item__company {
    font-size: 22px;
  }

  .Footer-nav {
    font-size: 16px;
  }

  .Footer-nav__hr {
    margin: 4px 15px 0;
  }

  .Footer__copyright {
    font-size: 14px;
  }
}

@media (width >= 751px) {
  .Footer {
    padding-bottom: 140px;
  }

  .Footer-info {
    flex-direction: row;
    justify-content: space-evenly;
  }

  .Footer-info-item {
    width: 45%;
  }

  .Footer-tel__ico {
    width: 64px;
    height: auto;
  }

  .Footer-tel__lnk {
    font-size: 44px;
  }

  .Footer-info-item__time {
    width: fit-content;
    margin: auto;
    font-size: 14px;
    line-height: 24px;
  }

  .Footer-info-item__coop {
    font-size: 20px;
  }

  .Footer-info-item__company {
    font-size: 30px;
    font-weight: normal;
  }

  .Footer-info-item__address {
    font-size: 16px;
  }

  .Footer__rt {
    padding-right: 35px;
    text-align: right;
  }

  .Footer-nav {
    justify-content: flex-start;
    padding-left: 35px;
    margin-top: -38px;
  }
}

.Float-plan {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  padding: 15px 25px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 0 4px #ccc;
  opacity: 0;
  transition: 0.2s opacity ease;
}

.Float-plan--show {
  z-index: 3;
  opacity: 1;
}

.Float-plan__img {
  width: 100%;
}

@media (width >= 751px) {
  .Float-plan {
    padding: 20px;
  }

  .Float-plan__img {
    width: 550px;
    border-radius: 50px;
  }
}
