.appear.up .item {
  transform: translateY(30px);
}

.appear.down .item {
  transform: translateY(-40px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear .item {
  transition: all 0.6s ease;
  transform: translate3d(0, 0, 0);
  opacity: 0;
}
.appear.inview .item {
  transform: none;
  opacity: 1;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.2s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 1s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 1.2s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 1.4s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 1.6s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 1.8s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 2s;
}

.scaleDown {
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.4s;
}
.scaleDown.inview {
  opacity: 1;
  transform: scale(1);
}

.fadein {
  opacity: 0;
  transition: all 0.4s 0.4s;
}
.fadein.inview {
  opacity: 1;
}

.rotate3D {
  opacity: 0;
  transform: scale(0) rotateY(0deg);
  transform-style: preserve-3d;
  transition: 0.8s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.rotate3D.inview {
  opacity: 1;
  transform: scale(1) rotateY(360deg);
}

.animate-txt .char {
  opacity: 0;
  transform: translateY(-10px);
}

.animate-txt.inview .char {
  animation-name: kf-animate-chars;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-delay: 0.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.animate-txt.inview .char:nth-child(1) {
  animation-delay: 0.54s;
}
.animate-txt.inview .char:nth-child(2) {
  animation-delay: 0.58s;
}
.animate-txt.inview .char:nth-child(3) {
  animation-delay: 0.62s;
}
.animate-txt.inview .char:nth-child(4) {
  animation-delay: 0.66s;
}
.animate-txt.inview .char:nth-child(5) {
  animation-delay: 0.7s;
}
.animate-txt.inview .char:nth-child(6) {
  animation-delay: 0.74s;
}
.animate-txt.inview .char:nth-child(7) {
  animation-delay: 0.78s;
}
.animate-txt.inview .char:nth-child(8) {
  animation-delay: 0.82s;
}
.animate-txt.inview .char:nth-child(9) {
  animation-delay: 0.86s;
}
.animate-txt.inview .char:nth-child(10) {
  animation-delay: 0.9s;
}
.animate-txt.inview .char:nth-child(11) {
  animation-delay: 0.94s;
}
.animate-txt.inview .char:nth-child(12) {
  animation-delay: 0.98s;
}
.animate-txt.inview .char:nth-child(13) {
  animation-delay: 1.02s;
}
.animate-txt.inview .char:nth-child(14) {
  animation-delay: 1.06s;
}
.animate-txt.inview .char:nth-child(15) {
  animation-delay: 1.1s;
}
.animate-txt.inview .char:nth-child(16) {
  animation-delay: 1.14s;
}
.animate-txt.inview .char:nth-child(17) {
  animation-delay: 1.18s;
}
.animate-txt.inview .char:nth-child(18) {
  animation-delay: 1.22s;
}
.animate-txt.inview .char:nth-child(19) {
  animation-delay: 1.26s;
}
.animate-txt.inview .char:nth-child(20) {
  animation-delay: 1.3s;
}
.animate-txt.inview .char:nth-child(21) {
  animation-delay: 1.34s;
}
.animate-txt.inview .char:nth-child(22) {
  animation-delay: 1.38s;
}
.animate-txt.inview .char:nth-child(23) {
  animation-delay: 1.42s;
}
.animate-txt.inview .char:nth-child(24) {
  animation-delay: 1.46s;
}
.animate-txt.inview .char:nth-child(25) {
  animation-delay: 1.5s;
}
.animate-txt.inview .char:nth-child(26) {
  animation-delay: 1.54s;
}
.animate-txt.inview .char:nth-child(27) {
  animation-delay: 1.58s;
}
.animate-txt.inview .char:nth-child(28) {
  animation-delay: 1.62s;
}
.animate-txt.inview .char:nth-child(29) {
  animation-delay: 1.66s;
}
.animate-txt.inview .char:nth-child(30) {
  animation-delay: 1.7s;
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 0vw;
}

html {
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
}

body {
  font-weight: 400;
  font-size: clamp(1.4rem, 1.354rem + 0.21vw, 1.6rem);
  font-family: "Noto Sans JP", sans-serif;
  color: #3C3C3C;
  overflow-x: hidden;
}

.wrapper {
  position: relative;
}

.section_content {
  margin: 80px 0 100px;
}
@media screen and (max-width: 960px) {
  .section_content {
    margin: 40px 0 50px;
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

a {
  text-decoration: none;
  transition: 0.5s all;
}

.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

.lg-inner {
  width: min(1000px, 95%);
  margin: 0 auto;
}

.inner {
  width: min(750px, 90%);
  margin: 0 auto;
}

.highlight {
  background: linear-gradient(transparent 70%, #FFFF00 70%);
}

.flex {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 960px) {
  .flex {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

.pc {
  display: inline-block;
}
@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .sp {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: text;
    text-decoration: none;
  }
}
@media screen and (max-width: 960px) {
  img {
    image-rendering: auto;
  }
}
.mv {
  position: relative;
  z-index: 0;
  padding: 120px 0 0;
  width: 100%;
  background: url(../images/mv_bg.png) no-repeat center/cover;
  text-align: center;
}
.mv::before {
  position: absolute;
  content: "";
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(70, 69, 68, 0) 0%, rgba(70, 69, 68, 0.15) 100%);
}
@media screen and (max-width: 960px) {
  .mv {
    padding: 100px 0 0;
  }
}

.catch {
  width: 950px;
  max-width: 100%;
  margin: 0 auto;
}

.example_img {
  position: relative;
  z-index: -1;
  max-width: 70%;
  margin: 0 auto -10px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .example_img {
    margin: 0 auto -5vw;
  }
}
@media screen and (max-width: 600px) {
  .example_img {
    margin: 0 auto -10vw;
  }
}
.example_img img {
  display: inline-block;
}

.example-ttl {
  font-size: clamp(2rem, 1.815rem + 0.82vw, 2.8rem);
  line-height: 1.3;
  font-weight: 800;
  padding: 4rem 0;
  border-radius: 50%;
  text-align: center;
  background: #FFE5E5;
}
@media screen and (max-width: 600px) {
  .example-ttl {
    padding: 2rem 0;
  }
}
.example-ttl span {
  margin-bottom: 0.5rem;
  font-size: clamp(2.4rem, 2.169rem + 1.03vw, 3.4rem);
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  color: #E22020;
  display: block;
}
@media screen and (max-width: 960px) {
  .example-ttl span {
    text-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
  }
}

.example-subttl {
  color: #003E92;
  font-size: clamp(2.4rem, 2.169rem + 1.03vw, 3.4rem);
  font-weight: 800;
  text-align: center;
  margin: 5rem 0 1.5rem;
}
@media screen and (max-width: 960px) {
  .example-subttl {
    margin: 4rem 0 1.5rem;
  }
}

.example_list li {
  padding: 3rem;
  display: flex;
  background: #EDEDED;
  margin-bottom: 3rem;
}
@media screen and (max-width: 960px) {
  .example_list li {
    padding: 3rem 2rem;
    width: 500px;
    max-width: 90%;
    margin: 0 auto 3rem;
    flex-direction: column;
  }
}
.example_list .l_box {
  width: 55%;
  margin-right: 3rem;
}
@media screen and (max-width: 960px) {
  .example_list .l_box {
    width: 100%;
  }
}
.example_list .r_box {
  width: 45%;
}
@media screen and (max-width: 960px) {
  .example_list .r_box {
    width: 100%;
  }
}

.car-model {
  font-size: clamp(1.8rem, 1.708rem + 0.41vw, 2.2rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 960px) {
  .car-model {
    margin: 0.5rem 0 1.5rem;
  }
}

.car-details {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.car-details dt,
.car-details dd {
  font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem) rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
}
.car-details dt {
  width: 40%;
  text-align: center;
  background: white;
  margin-bottom: 1rem;
}
.car-details dd {
  width: 60%;
}

.purchase-price-ttl {
  margin-top: 1rem;
  font-size: clamp(2rem, 1.908rem + 0.41vw, 2.4rem);
  background: #E22020;
  color: white;
  text-align: center;
}

.purchase-date {
  font-weight: 500;
  margin-top: 0.5rem;
}

.purchase-price {
  font-size: clamp(4rem, 3.631rem + 1.64vw, 5.6rem);
  line-height: 1;
  font-weight: 600;
  color: #E22020;
}
.purchase-price span {
  font-size: clamp(2.6rem, 2.415rem + 0.82vw, 3.4rem);
}

.service {
  padding: 80px 0 100px;
  background: #EDF8FF;
}
@media screen and (max-width: 960px) {
  .service {
    padding: 40px 0 60px;
  }
}

.service-ttl {
  font-weight: 800;
  line-height: 1.3;
  color: #003E92;
  text-align: center;
  margin-bottom: 4rem;
}
.service-ttl span {
  font-size: clamp(3rem, 2.862rem + 0.62vw, 3.6rem);
}

.service_list {
  margin-top: 8rem;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .service_list {
    margin-top: 4rem;
  }
}
.service_list li {
  margin-bottom: 6rem;
}
@media screen and (max-width: 960px) {
  .service_list li {
    margin-bottom: 4rem;
  }
}
.service_list img {
  display: inline-block;
}

.service_img {
  max-width: 70%;
  margin: 0 auto;
}

.service-txt {
  margin-top: 2rem;
  font-size: clamp(1.8rem, 1.708rem + 0.41vw, 2.2rem);
  font-weight: 800;
}
@media screen and (max-width: 960px) {
  .service-txt {
    margin-top: 1.5rem;
  }
}
.service-txt .highlight {
  font-size: clamp(3rem, 2.585rem + 1.85vw, 4.8rem);
  color: #E22020;
  display: inline-block;
}

.sub_img {
  text-align: center;
  max-width: 60%;
  margin: 0 auto;
}
.sub_img img {
  display: inline-block;
}

.info_box {
  display: block;
  background: #003E92;
  color: white;
  text-align: center;
  font-weight: 800;
  padding: 3rem;
  border: 10px solid white;
  border-radius: 25px;
  box-shadow: 4px 6px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 960px) {
  .info_box {
    padding: 1.5rem 2rem;
    border: 5px solid white;
  }
}

.info-txtWrap {
  display: inline-block;
}

.info-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: clamp(1.8rem, 1.662rem + 0.62vw, 2.4rem);
  color: #FFFF00;
  padding: 0 1.5em;
  line-height: 1.4;
  vertical-align: middle;
}
@media screen and (max-width: 960px) {
  .info-txt {
    flex-direction: column;
    line-height: 1.2;
    padding: 0 2em;
  }
}
.info-txt span {
  font-size: clamp(2.6rem, 2.415rem + 0.82vw, 3.4rem);
  margin-left: 0.25rem;
}
.info-txt::before, .info-txt::after {
  position: absolute;
  content: "";
  background: url(../images/deco_l.svg) no-repeat center/contain;
  width: 1.25em;
  height: 1.25em;
  bottom: 0;
  top: 0;
  margin: auto;
}
@media screen and (max-width: 960px) {
  .info-txt::before, .info-txt::after {
    width: 1.75em;
    height: 1.75em;
    top: auto;
  }
}
.info-txt::before {
  left: 0;
}
.info-txt::after {
  right: 0;
  transform: scaleX(-1);
}

.info-subtxt {
  font-size: clamp(2rem, 1.908rem + 0.41vw, 2.4rem);
}
@media screen and (max-width: 960px) {
  .info-subtxt {
    margin-top: 0.5rem;
  }
}

.info-subtxt {
  margin-bottom: 1.5rem;
}

.contact-btn {
  display: inline-block;
  background: white;
}

.contact-btn {
  position: relative;
  padding: 1.5rem 5rem;
  border-radius: 50px;
  box-shadow: 4px 6px 0 rgba(0, 0, 0, 0.4);
  transition: 0.3s all;
}
.contact-btn:hover {
  transform: translateY(6px);
  box-shadow: none;
  opacity: 0.8;
}
.contact-btn:hover::before {
  right: 0.75em;
}
@media screen and (max-width: 960px) {
  .contact-btn {
    padding: 1rem 3rem;
  }
}
.contact-btn::before {
  position: absolute;
  content: "";
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/arrows2.svg) no-repeat center/contain;
  transition: 0.3s all;
}
@media screen and (max-width: 960px) {
  .contact-btn::before {
    right: 0.75em;
    width: 1rem;
    height: 1rem;
  }
}

.contact_img {
  width: 300px;
  max-width: 100%;
}

.sdgs {
  background: #F8FFEB;
  padding: 0 0 100px;
}
.sdgs .sub-txt {
  margin-bottom: 2rem;
}
@media screen and (max-width: 960px) {
  .sdgs {
    padding: 0 0 50px;
  }
}

.sdgs-ttl {
  font-size: clamp(2.4rem, 2.308rem + 0.41vw, 2.8rem);
  font-weight: 800;
  color: white;
  background: #38B26C;
  padding: 1.5rem 1rem;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .sdgs-ttl {
    margin-bottom: 30px;
  }
}

.sdgs-txt {
  text-align: center;
  font-size: clamp(2rem, 1.862rem + 0.62vw, 2.6rem);
  font-weight: 800;
  color: white;
  text-shadow: 0 0 5px #1D9A52, 0 0 5px #1D9A52, 0 0 10px #1D9A52, 0 0 10px #1D9A52, 0 0 10px #1D9A52, 0 0 15px #1D9A52, 0 0 15px #1D9A52, 0 0 15px #1D9A52;
  margin: 4rem 0;
}
@media screen and (max-width: 960px) {
  .sdgs-txt {
    line-height: 1.8;
    margin: 3rem 0;
  }
}

.sdgs-subttl {
  font-size: clamp(2rem, 1.908rem + 0.41vw, 2.4rem);
  color: #003E92;
  margin: 4rem 0 0.5rem;
}
@media screen and (max-width: 960px) {
  .sdgs-subttl {
    margin: 3rem 0 0.5rem;
  }
}

.sdgs_img {
  background: white;
  text-align: center;
  padding: 4rem 2rem;
}
@media screen and (max-width: 960px) {
  .sdgs_img {
    padding: 3rem 2rem;
  }
}
.sdgs_img img {
  display: inline-block;
}

.contact {
  padding: 60px 0 100px;
  background: #003E92;
}
@media screen and (max-width: 960px) {
  .contact {
    padding: 30px 0 60px;
  }
}

.contact-txt {
  text-align: center;
  font-size: clamp(2rem, 1.862rem + 0.62vw, 2.6rem);
  font-weight: 800;
  color: white;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 480px) {
  .contact-txt {
    font-size: 5.5vw;
  }
}
.contact-txt span {
  font-size: clamp(2.8rem, 2.615rem + 0.82vw, 3.6rem);
  line-height: 1.4;
  text-shadow: 0 7px 0 rgba(0, 0, 0, 0.4);
  display: block;
  color: #FFFF00;
}
@media screen and (max-width: 960px) {
  .contact-txt span {
    margin-top: 0.5rem;
    text-shadow: 0 5px 0 rgba(0, 0, 0, 0.4);
  }
}
@media screen and (max-width: 480px) {
  .contact-txt span {
    font-size: 7vw;
  }
}

.form {
  background: white;
  text-align: center;
  padding: 6rem;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 960px) {
  .form {
    padding: 4rem 2rem 5rem;
  }
}

.contact-ttl {
  display: inline-block;
  margin-bottom: 3rem;
}

.form-ttl {
  font-size: clamp(1.6rem, 1.508rem + 0.41vw, 2rem);
  text-align: left;
  background: #E4E4E4;
  padding: 0.75rem 2rem;
}

.form-table {
  width: 100%;
  text-align: left;
  margin-bottom: 5rem;
}
@media screen and (max-width: 960px) {
  .form-table {
    margin-bottom: 4rem;
  }
}

.form-header {
  font-size: clamp(1.5rem, 1.431rem + 0.31vw, 1.8rem);
  font-weight: 600;
  position: relative;
  margin: 2rem 0 1rem 1rem;
  display: block;
  padding: 0 0 0 1rem;
}
.form-header::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 1em;
  background: #949494;
}

.form-data {
  display: block;
}

.form_select,
input[type=text] {
  border: 1px solid #C6C6C6;
  width: 100%;
  height: 3.5em;
  border-radius: 5px;
  padding: 0 2rem;
}
.form_select:focus,
input[type=text]:focus {
  outline: none;
}

.form_select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("../images/arrow_down.svg") no-repeat right 1em center;
  background-size: 12px;
  cursor: pointer;
}

input[type=text]::-moz-placeholder {
  color: #C6C6C6;
}

input[type=text]::placeholder {
  color: #C6C6C6;
}

.small {
  font-size: 1.6rem;
  font-weight: 400;
  margin-left: 0.5rem;
}

.input-btn {
  max-width: 100%;
  display: inline-block;
  position: relative;
  transition: 0.3s all;
}
.input-btn input {
  font-weight: 600;
  letter-spacing: 0.1rem;
  padding: 1em 0;
  width: 320px;
  max-width: 100%;
  border: none;
  cursor: pointer;
  border-radius: 50px;
}
.input-btn._submit::before {
  background: url(../images/arrows.svg) no-repeat center/contain;
}
.input-btn._submit input {
  color: white;
  background: #3C3C3C;
}
.input-btn._back {
  margin-top: 2.5rem;
}
.input-btn._back::before {
  background: url(../images/arrows_gray.svg) no-repeat center/contain;
}
.input-btn._back input {
  background: #E4E4E4;
  color: #6d6d6d;
}
.input-btn:hover {
  opacity: 0.6;
}
.input-btn::before {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  top: 0;
  bottom: 0;
  right: 1.5em;
  margin: auto;
}

.required {
  font-size: clamp(1.2rem, 1.177rem + 0.1vw, 1.3rem);
  font-weight: 500;
  border-radius: 50px;
  padding: 0 1rem 0.1rem;
  color: white;
  background: #E22020;
  margin-left: 1rem;
  line-height: 1.3;
}

.confirmation {
  padding: 120px 0;
  background: #003E92;
}
@media screen and (max-width: 960px) {
  .confirmation {
    padding: 80px 0;
  }
}
.confirmation .main-ttl {
  text-align: center;
  margin: 4rem 0;
}
@media screen and (max-width: 960px) {
  .confirmation .main-ttl {
    line-height: 1.3;
    margin: 3rem 0;
  }
}
.confirmation .main-ttl span {
  font-size: clamp(2.4rem, 2.262rem + 0.62vw, 3rem);
  padding: 0 1.5rem;
  display: inline-block;
  color: #FFFF00;
}

.confirmation-ttl {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
}

.confirmation-txt {
  line-height: 1.6;
}

.form-table-confirm {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  margin: 60px 0 30px;
}
@media screen and (max-width: 960px) {
  .form-table-confirm {
    margin: 40px 0 20px;
  }
}
.form-table-confirm th {
  color: #003E92;
  display: block;
  padding-left: 1em;
  margin-bottom: 0.25em;
}
.form-table-confirm td {
  padding-left: 1em;
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
  display: block;
  border-bottom: 1px solid #E4E4E4;
}

header {
  position: absolute;
  z-index: 1;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  padding: 20px;
}
@media screen and (max-width: 960px) {
  header {
    padding: 15px;
  }
}

.logo {
  width: 350px;
  transition: 0.3s all;
}
.logo:hover {
  opacity: 0.5;
}
@media screen and (max-width: 960px) {
  .logo {
    width: 250px;
  }
}

.footer {
  background: #E22020;
  color: #3C3C3C;
  text-align: center;
  padding: 40px 0 0;
}
.footer a:hover {
  opacity: 0.5;
}

.logo_list {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  padding: 20px 40px;
  margin-left: -4rem;
}
@media screen and (max-width: 960px) {
  .logo_list {
    flex-direction: column;
  }
}
.logo_list li {
  margin-left: 4rem;
}
@media screen and (max-width: 960px) {
  .logo_list li {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

.foot-tel {
  margin-top: 1rem;
  font-size: clamp(3rem, 2.769rem + 1.03vw, 4rem);
  color: white;
  font-weight: 800;
  text-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 960px) {
  .foot-tel {
    margin-top: 2rem;
    text-shadow: 0 5px 0 rgba(0, 0, 0, 0.2);
  }
}
@media screen and (max-width: 480px) {
  .foot-tel {
    font-size: 6.5vw;
  }
}
.foot-tel a {
  font-size: clamp(4.6rem, 3.954rem + 2.87vw, 7.4rem);
  color: white;
}
@media screen and (max-width: 480px) {
  .foot-tel a {
    font-size: 11vw;
  }
}

.foot-address {
  font-size: clamp(1.4rem, 1.308rem + 0.41vw, 1.8rem);
  font-weight: 500;
  color: white;
  margin-bottom: 3rem;
}
@media screen and (max-width: 960px) {
  .foot-address {
    margin-top: 0.5rem;
  }
}

.foot-logoWrap {
  margin-top: 60px;
  background: white;
  padding: 30px 0;
}

.foot-logo {
  width: 400px;
  max-width: 100%;
  padding: 3rem;
  border: 5px solid #E4E4E4;
  margin: 1.5rem auto 2rem;
}
@media screen and (max-width: 960px) {
  .foot-logo {
    padding: 2rem;
  }
}
.foot-logo img {
  width: 100%;
}

@media screen and (max-width: 960px) {
  .gmap {
    height: 300px;
  }
}

.backtotop a {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #003E92;
  width: 60px;
  height: 60px;
  z-index: 1000;
  border-radius: 50px;
  transition: 0.3s all;
  opacity: 0.9;
}
@media screen and (max-width: 480px) {
  .backtotop a {
    width: 50px;
    height: 50px;
  }
}
.backtotop a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1em;
  height: 1em;
  border: 3px solid white;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}
@media screen and (max-width: 480px) {
  .backtotop a::before {
    width: 0.75em;
    height: 0.75em;
  }
}
.backtotop a:hover {
  opacity: 0.5;
}

.copy {
  margin-top: 3rem;
  font-size: clamp(1rem, 0.954rem + 0.21vw, 1.2rem);
}/*# sourceMappingURL=style.css.map */