@charset "UTF-8";
/* ==========================================================================
  footer
========================================================================== */
.footer {
  border-top: 1px solid #000;
  background-color: #f0eae2;
  margin-top: 100px;
  padding: 50px;
  position: relative;
  z-index: 998;
}

@media (max-width: 767px) {
  .footer {
    padding: 30px 0 0;
  }
}

.footer__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10%;
}

@media (max-width: 1080px) {
  .footer__grid {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

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

.footer__grid .grid__row {
  display: block;
  text-align: center;
}

.footer__logo {
  width: 23%;
  display: block;
  height: 100%;
}

@media (max-width: 767px) {
  .footer__logo {
    width: 60%;
    margin-bottom: 30px;
    padding: 0 3% 3%;
  }
}

.footer__logoc {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.footer__logocandc {
  display: block;
  width: 61px;
}

@media (max-width: 767px) {
  .footer__logocandc {
    width: 41px;
  }
}

.footer__list {
  width: 35%;
  height: auto;
}

@media (max-width: 1080px) {
  .footer__list {
    width: 67%;
  }
}

@media (max-width: 767px) {
  .footer__list {
    width: 100%;
    margin-right: 0;
    padding: 0 3% 3%;
  }
}

.footer__item {
  width: 100%;
  border-top: 1px solid #000;
}

.footer__item:last-child, .footer__item.last {
  border-bottom: 1px solid #000;
}

@media (max-width: 767px) {
  .footer__item.about__item {
    border-bottom: 1px solid #000;
  }
}

.footer__link {
  display: block;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 300;
  text-align: left;
  letter-spacing: 0em;
  line-height: 1;
  padding: 10px 5px;
  position: relative;
}

.footer__link::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../../img/common/nav_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.footer__link.deadlink {
  background-color: gray;
  color: #666;
}

.footer__link.deadlink:hover {
  background-color: gray;
  color: #666;
}

.footer__link.deadlink:hover::after {
  right: 10px;
  background-image: url("../../img/common/nav_arrow.svg");
}

.footer__link:hover {
  opacity: 1;
  color: #fff;
  background-color: #000;
}

.footer__link:hover::after {
  right: 0;
  background-image: url("../../img/common/nav_arrow_wh.svg");
}

.footer .link__mail {
  color: #808080;
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 767px) {
  .footer .link__mail {
    font-size: 14px;
  }
}

.footer .footer__pp {
  margin-top: 40px;
}

.footer .footer__pp .pp__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 767px) {
  .footer .footer__pp .pp__list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}

.footer .footer__pp .pp__item {
  margin-right: 30px;
}

@media (max-width: 767px) {
  .footer .footer__pp .pp__item {
    margin-right: 10px;
  }
}

.footer .footer__pp .pp__item:last-child {
  margin-right: 0;
}

.footer .footer__pp .pp__link {
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .footer .footer__pp .pp__link {
    font-size: 12px;
  }
  .footer .footer__pp .pp__link.insta {
    display: block;
    width: 35px;
  }
}

.footer__insta {
  width: 45px;
  padding-top: 80px;
  margin-bottom: 80px;
}

.footer__copy {
  margin-top: 50px;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .footer__copy {
    margin: 10px 0;
    font-size: 10px;
    padding: 0 3% 3%;
  }
}

.footer__right {
  width: 30%;
}

@media (max-width: 1080px) {
  .footer__right {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .footer__right {
    width: 100%;
  }
}

.footer .gmap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 55%;
  /* 比率を4:3に固定 */
}

.footer .gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.en .footer .footer__pp .pp__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 上段は2列 */
  grid-template-rows: auto auto;
  /* 2行 */
  gap: 10px;
}

@media (max-width: 767px) {
  .en .footer .footer__pp .pp__list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}

.en .footer .footer__pp .pp__item {
  text-align: left;
  margin-right: 0;
}

@media (max-width: 767px) {
  .en .footer .footer__pp .pp__item {
    margin-right: 10px;
  }
}

.en .footer .footer__pp .pp__item:last-child {
  margin-right: 0;
}

.en .footer .footer__pp .pp__item:nth-child(3) {
  grid-column: 1 / 3;
  /* 3番目のアイテムは2列分を占有 */
}

.en .footer .footer__pp .pp__link {
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 767px) {
  .en .footer .footer__pp .pp__link {
    font-size: 12px;
  }
  .en .footer .footer__pp .pp__link.insta {
    display: block;
    width: 35px;
  }
}
