@charset "UTF-8";
/* base
----------------------------------------- */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Serif JP", serif;
  color: #171a1f;
  background: #fff;
  line-height: 1.6;
}

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

img {
  width: 100%;
  vertical-align: top;
}

ul,
ol {
  list-style: none;
}

/* common
----------------------------------------- */
.red {
  color: #d30000;
  font-weight: 700;
}

.inner {
  max-width: 1280px;
  width: 100%;
  padding: 0 4rem;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .inner {
    padding: 0 3rem;
  }
}
@media (max-width: 767px) {
  .inner {
    padding: 0 2rem;
  }
}

.flex__wrap {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .flex__wrap {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .flex__wrap {
    flex-direction: column;
  }
}

.sec__head .en {
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 8%;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
@media (max-width: 767px) {
  .sec__head .en {
    font-size: 2.8rem;
  }
}
.sec__head .ja {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .sec__head .ja {
    font-size: 1.4rem;
  }
}

.icon svg {
  width: 100%;
  height: 100%;
}

.br-pc {
  display: none;
}
@media (min-width: 1200px) {
  .br-pc {
    display: block;
  }
}

.br-tab {
  display: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .br-tab {
    display: block;
  }
}

.br-sp {
  display: none;
}
@media (max-width: 767px) {
  .br-sp {
    display: block;
  }
}

@media (min-width: 1200px) {
  .pc-none {
    display: none;
  }
}

@media (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

/* header
----------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
}

.header__logo {
  position: absolute;
  top: 10px;
  left: 10px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header__logo {
    width: 80px;
  }
}
@media (max-width: 767px) {
  .header__logo {
    width: 70px;
    top: 0;
  }
}
.header__logo .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.drawer .drawer__icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: #2b2b2b;
  cursor: pointer;
  z-index: 1000;
}
@media (max-width: 767px) {
  .drawer .drawer__icon {
    width: 70px;
    height: 70px;
  }
}
.drawer .drawer__icon.is-active .drawer__icon-bar1,
.drawer .drawer__icon.is-active .drawer__icon-bar2,
.drawer .drawer__icon.is-active .drawer__icon-bar3 {
  top: 40px;
}
@media (max-width: 767px) {
  .drawer .drawer__icon.is-active .drawer__icon-bar1,
.drawer .drawer__icon.is-active .drawer__icon-bar2,
.drawer .drawer__icon.is-active .drawer__icon-bar3 {
    top: 35px;
  }
}
.drawer .drawer__icon.is-active .drawer__icon-bar1 {
  transform: rotate(45deg);
}
.drawer .drawer__icon.is-active .drawer__icon-bar2 {
  display: none;
}
.drawer .drawer__icon.is-active .drawer__icon-bar3 {
  transform: rotate(-45deg);
}
.drawer .drawer__icon-bars {
  display: block;
  position: relative;
}
.drawer .drawer__icon-bar1,
.drawer .drawer__icon-bar2,
.drawer .drawer__icon-bar3 {
  position: absolute;
  width: 30px;
  height: 1px;
  background: #fff;
  border-radius: 4px;
  top: 0;
  left: 25px;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .drawer .drawer__icon-bar1,
.drawer .drawer__icon-bar2,
.drawer .drawer__icon-bar3 {
    left: 20px;
  }
}
.drawer .drawer__icon-bar1 {
  top: 32px;
}
@media (max-width: 767px) {
  .drawer .drawer__icon-bar1 {
    top: 27px;
  }
}
.drawer .drawer__icon-bar2 {
  top: 40px;
}
@media (max-width: 767px) {
  .drawer .drawer__icon-bar2 {
    top: 35px;
  }
}
.drawer .drawer__icon-bar3 {
  top: 48px;
}
@media (max-width: 767px) {
  .drawer .drawer__icon-bar3 {
    top: 43px;
  }
}
.drawer .drawer__content {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100vh;
  background: #fff;
  transition: all 0.4s;
  padding: 3rem;
  opacity: 0;
  visibility: hidden;
  z-index: 299;
}
@media (max-width: 767px) {
  .drawer .drawer__content {
    width: 100%;
    padding: 2rem 2rem 4rem;
  }
}
.drawer .drawer__content.is-active {
  opacity: 1;
  visibility: visible;
}
.drawer .logo {
  width: 100px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .drawer .logo {
    width: 80px;
  }
}
@media (max-width: 767px) {
  .drawer .logo {
    width: 80px;
  }
}
.drawer .drawer__nav {
  margin-top: 2rem;
}
.drawer .drawer__nav li {
  border-bottom: 1px solid #2b2b2b;
  padding: 2rem 1rem;
}
.drawer .drawer__nav li a {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}
.drawer .sns {
  margin-top: 6rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .drawer .sns {
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .drawer .sns {
    margin-top: 4rem;
  }
}
.drawer .sns .text {
  text-align: center;
  font-size: 1.4rem;
}
.drawer .sns .sns__list {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.drawer .sns .sns__list a {
  transition: all 0.4s;
}
.drawer .sns .sns__list a:hover {
  opacity: 0.8;
}
.drawer .drawer__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 298;
}
.drawer .drawer__bg.is-active {
  opacity: 1;
  visibility: visible;
}

/* mv
----------------------------------------- */
.mv {
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .mv {
    margin-top: 70px;
  }
}
.mv .mv__img {
  position: relative;
  background: url(../img/top_img_pc.webp) no-repeat top center/cover;
  width: 100%;
  height: 95vh;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mv .mv__img {
    background: url(../img/top_img_tab.webp) no-repeat top center/cover;
    height: 88vh;
  }
}
@media (max-width: 767px) {
  .mv .mv__img {
    background: url(../img/top_img_sp.webp) no-repeat top center/cover;
    height: 72vh;
  }
}
.mv .mv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media (max-width: 767px) {
  .mv .mv__content {
    width: 300px;
  }
}
.mv .mv__content .sub__title {
  font-size: 2rem;
  color: #fff;
}
@media (max-width: 767px) {
  .mv .mv__content .sub__title {
    font-size: 1.6rem;
  }
}
.mv .mv__content .main__title {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .mv .mv__content .main__title {
    width: 100%;
  }
}

/* service
----------------------------------------- */
.service {
  position: relative;
  top: -12rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .service {
    top: -8rem;
  }
}
.service .service__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .service .service__list {
    width: 97%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .service .service__list {
    flex-direction: column;
    gap: 1rem;
  }
}
.service .service__list .service__item a {
  display: block;
  width: 320px;
  transition: all 0.4s;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .service .service__list .service__item a {
    width: 100%;
  }
}
.service .service__list .service__item a:hover {
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}

.top__service {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .top__service {
    margin-top: 4rem;
  }
}
.top__service .inner {
  max-width: 1120px;
}
.top__service .sec__head {
  text-align: center;
}
.top__service .service__list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .top__service .service__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .top__service .service__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.top__service .service__list .service__item .service__link {
  position: relative;
  display: block;
  transition: all 0.4s;
  border-radius: 12px;
}
.top__service .service__list .service__item .service__link:hover {
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}
.top__service .service__list .service__item .service__link:hover .img__wrap::after {
  background: rgba(0, 0, 0, 0.25);
}
.top__service .service__list .service__item .service__link .img__wrap {
  position: relative;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .top__service .service__list .service__item .service__link .img__wrap {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .top__service .service__list .service__item .service__link .img__wrap {
    height: 280px;
  }
}
.top__service .service__list .service__item .service__link .img__wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  transition: all 0.4s;
}
.top__service .service__list .service__item .service__link .img__wrap img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.top__service .service__list .service__item .service__link .text__wrap {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 10;
  letter-spacing: 5%;
}
.top__service .service__list .service__item .service__link .text__wrap .title__en {
  display: block;
  color: #c9a96a;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.top__service .service__list .service__item .service__link .text__wrap .title__ja {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.top__service .service__list .service__item .service__link .text__wrap .text {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.6rem;
}
.top__service .service__list .service__item .service__link .text__wrap .link {
  color: #c9a96a;
  font-size: 1.5rem;
  text-decoration: underline;
  font-weight: 600;
}

/* concept
----------------------------------------- */
.concept__sec {
  position: relative;
  margin-top: 4rem;
  padding-bottom: 10rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .concept__sec {
    padding-bottom: 8rem;
  }
}
@media (max-width: 767px) {
  .concept__sec {
    margin-top: -4rem;
    padding-bottom: 6rem;
  }
}
.concept__sec .inner {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .concept__sec .inner {
    padding: 0 2rem;
  }
}
@media (max-width: 767px) {
  .concept__sec .inner {
    padding: 0 2vw;
  }
}
.concept__sec::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 88%;
  background: #f5f5f5;
  z-index: -1;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .concept__sec::before {
    height: 80%;
  }
}
.concept__sec .flex__wrap {
  align-items: flex-end;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .concept__sec .flex__wrap {
    align-items: center;
  }
}
.concept__sec .flex__wrap .img__wrap {
  position: relative;
  width: 45%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .concept__sec .flex__wrap .img__wrap {
    width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .concept__sec .flex__wrap .img__wrap {
    width: 85%;
    margin: 0 auto;
  }
}
.concept__sec .flex__wrap .text__wrap {
  position: relative;
  width: 47%;
  margin-bottom: 4vw;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .concept__sec .flex__wrap .text__wrap {
    width: 57%;
    margin-top: 4rem;
    margin-bottom: 0;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .concept__sec .flex__wrap .text__wrap {
    width: 100%;
    margin-top: 4rem;
    margin-bottom: 0;
    text-align: center;
  }
}
.concept__sec .flex__wrap .text__wrap .en {
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 5%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .concept__sec .flex__wrap .text__wrap .en {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .concept__sec .flex__wrap .text__wrap .en {
    font-size: 2.8rem;
  }
}
.concept__sec .flex__wrap .text__wrap .ja {
  font-size: 1.8rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .concept__sec .flex__wrap .text__wrap .ja {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .concept__sec .flex__wrap .text__wrap .ja {
    font-size: 1.6rem;
    margin-top: 0.5rem;
    margin-bottom: 3rem;
  }
}
.concept__sec .flex__wrap .text__wrap .text {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .concept__sec .flex__wrap .text__wrap .text {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .concept__sec .flex__wrap .text__wrap .text {
    font-size: 1.4rem;
  }
}

.top__concept {
  margin-top: 10rem;
  background: #2b2b2b;
  padding: 10rem 0 12rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .top__concept {
    margin-top: 8rem;
    padding: 6rem 0 8rem;
  }
}
@media (max-width: 767px) {
  .top__concept {
    margin-top: 8rem;
    padding: 5rem 0 6rem;
  }
}
@media (max-width: 767px) {
  .top__concept .inner {
    padding: 0 1rem;
  }
}
.top__concept .text__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.top__concept .text__wrap .en {
  color: #c9a96a;
  font-size: 3.6rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .top__concept .text__wrap .en {
    font-size: 2.8rem;
  }
}
.top__concept .text__wrap .ja {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 4rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .top__concept .text__wrap .ja {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
}
.top__concept .text__wrap .text {
  font-size: 1.6rem;
  color: #fff;
  line-height: 2;
}
@media (max-width: 767px) {
  .top__concept .text__wrap .text {
    font-size: 1.3rem;
  }
}

/* sns
----------------------------------------- */
.sns__sec {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .sns__sec {
    margin-top: 6rem;
  }
}
.sns__sec .sec__head {
  text-align: center;
}
.sns__sec .sns__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  width: 620px;
  margin: 2rem auto 0;
}
@media (max-width: 767px) {
  .sns__sec .sns__list {
    width: 100%;
  }
}
.sns__sec .sns__list .sns__item {
  width: 200px;
}
@media (max-width: 767px) {
  .sns__sec .sns__list .sns__item {
    width: 100%;
  }
}
.sns__sec .sns__list .sns__item a {
  border: 1px solid #e2e2e2;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .sns__sec .sns__list .sns__item a .icon {
    width: 36px;
    height: 36px;
  }
}
.sns__sec .sns__list .sns__item a:hover {
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}

/* contact
----------------------------------------- */
.top__contact {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .top__contact {
    margin-top: 5rem;
  }
}
.top__contact .sec__head {
  text-align: center;
}
.top__contact .sec__head .ja {
  font-size: 2.4rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .top__contact .sec__head .ja {
    font-size: 2rem;
  }
}
.top__contact .contact__btns {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
@media (max-width: 767px) {
  .top__contact .contact__btns {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.top__contact .contact__btns .contact__btn a {
  display: inline-block;
  width: 280px;
  font-size: 1.6rem;
  padding: 2rem 0;
  text-align: center;
  letter-spacing: 8%;
  border-radius: 6px;
  transition: all 0.4s;
}
.top__contact .contact__btns .contact__btn a:hover {
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}
.top__contact .contact__btns .line a {
  background: #c9a96a;
  color: #fff;
  border: 1px solid transparent;
}
.top__contact .contact__btns .line a:hover {
  background: #fff;
  color: #c9a96a;
  border: 1px solid #c9a96a;
}
.top__contact .contact__btns .tel a {
  color: #c9a96a;
  border: 1px solid #c9a96a;
}
.top__contact .contact__btns .tel a:hover {
  background: #c9a96a;
  color: #fff;
}

/* access
----------------------------------------- */
.access__sec {
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .access__sec {
    margin-top: 8rem;
  }
}
.access__sec .sec__head {
  text-align: center;
}
.access__sec .access__map {
  margin-top: 4rem;
  max-width: 100%;
}
@media (max-width: 767px) {
  .access__sec .access__map {
    margin-top: 2rem;
  }
}
.access__sec .access__map .map__wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 33.3333333333%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .access__sec .access__map .map__wrap {
    padding-top: 50%;
  }
}
@media (max-width: 767px) {
  .access__sec .access__map .map__wrap {
    padding-top: 80%;
  }
}
.access__sec .access__map .map__wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* footer
----------------------------------------- */
.footer {
  padding: 10rem 0 2.4rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer {
    padding: 8rem 0 2rem;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 6rem 0 2rem;
  }
}
.footer .inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer .flex__wrap {
    gap: 4rem;
  }
}
@media (max-width: 767px) {
  .footer .flex__wrap {
    gap: 4rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer .order__wrap {
    gap: 0;
  }
}
@media (max-width: 767px) {
  .footer .order__wrap {
    gap: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer .order__wrap .left {
    width: 100%;
    display: contents;
  }
}
@media (max-width: 767px) {
  .footer .order__wrap .left {
    width: 100%;
    display: contents;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer .order__wrap .left .logo {
    order: 1;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 767px) {
  .footer .order__wrap .left .logo {
    order: 1;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer .order__wrap .left .info {
    order: 2;
    margin-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .footer .order__wrap .left .info {
    order: 2;
    margin-bottom: 3rem;
  }
}
.footer .order__wrap .left .sns__list {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer .order__wrap .left .sns__list {
    order: 4;
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .footer .order__wrap .left .sns__list {
    order: 4;
    margin-top: 4rem;
  }
}
.footer .order__wrap .left .sns__list a {
  transition: all 0.4s;
}
.footer .order__wrap .left .sns__list a:hover {
  opacity: 0.8;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer .order__wrap .right {
    width: 100%;
    order: 3;
  }
}
@media (max-width: 767px) {
  .footer .order__wrap .right {
    width: 100%;
    order: 3;
  }
}
.footer .order__wrap .right .lead {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .footer .order__wrap .right .lead {
    font-size: 1.3rem;
  }
}
.footer .left {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer .left {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer .left {
    width: 100%;
  }
}
.footer .left .logo {
  width: 80%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer .left .logo {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .footer .left .logo {
    width: 90%;
  }
}
.footer .left .info {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .footer .left .info {
    font-size: 1.5rem;
  }
}
.footer .right {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer .right {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer .right {
    width: 100%;
  }
}
.footer .right .lead {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .footer .right .lead {
    font-size: 1.3rem;
  }
}
.footer .copy-right {
  margin-top: 6rem;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 5%;
}
@media (max-width: 767px) {
  .footer .copy-right {
    font-size: 1.1rem;
  }
}
.footer .copyright {
  margin-top: 8rem;
  padding-top: 6rem;
  border-top: 1px solid #d9d9d9;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 5%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer .copyright {
    margin-top: 4rem;
    padding-top: 4rem;
  }
}
@media (max-width: 767px) {
  .footer .copyright {
    margin-top: 3rem;
    padding-top: 4rem;
  }
}