.overlap {
  background-color: var(--graybackground);
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 1440px) {
  .overlap {
    justify-content: start;
  }
}

.overlap-2 {
  min-width: 1440px;
  width: 1440px;
}

@media screen and (max-width: 767px) {
  .overlap-2 {
    min-width: 100%;
    width: 100%;
  }
}

.abc {
  height: 1000px;
}

.footer {
  background-color: var(--translucent-white);
  backdrop-filter: blur(20px) brightness(100%);
  padding: 80px 72px 50px;
  position: relative;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .footer {
    /* 変更 */
    /* padding: 50px 24px; */
    padding: 60px 20px 20px 20px;
  }
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 215px;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .footer-container {
    gap: 0;
  }
}

.top-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 80px;
}

@media screen and (max-width: 1024px) {
  .top-footer {
    flex-direction: column;
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .top-footer {
    flex-direction: column;
    gap: 20px;
  }
}

.logo-wrapper {
  width: 128px;
  height: fit-content;
  object-fit: cover;
}

.image {
  width: 100%;
}

.footer-contents {
  display: flex;
  width: 915px;
  height: 350px;
  align-items: flex-start;
  justify-content: space-between;
  margin: auto;
}

@media screen and (min-width: 1025px) {
  .footer-contents {
    gap: 40px;
  }
}

@media screen and (max-width: 1024px) {
  .footer-contents {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 0;
  }
}

.column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex: 1 0 0;
}

@media screen and (max-width: 1024px) {
  .column {
    width: 100%;
    gap: 0;
  }
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: stretch;
}

@media screen and (max-width: 1024px) {
  .footer-content {
    border-bottom: 1px solid var(--grayline);
    gap: 0;
  }
}

/* 変更 */
.content-title p {
  color: var(--blackheading);
  font-family: Noto Sans JP, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 155%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .content-title {
    /* 変更（追加） */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;

    padding: 20px 0;
  }
}

.rectangle {
  position: relative;
  display: none;
  width: 20px;
  height: 20px;
}

.rectangle::before {
  content: "";
  width: 2px;
  height: 18px;
  background-color: var(--vivid-orange);
  position: absolute;
  left: 9px;
  top: 1px;
}

.rectangle.active::before {
  height: 0;
  width: 0;
}

.rectangle::after {
  content: "";
  width: 18px;
  height: 2px;
  background-color: var(--vivid-orange);
  position: absolute;
  left: 1px;
  top: 9px;
}

@media screen and (max-width: 1024px) {
  .rectangle {
    display: block;
  }
}

@keyframes show {
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}

@media screen and (max-width: 1024px) {
  .list-container {
    display: none;
  }

  .list-container.active {
    margin-bottom: 12px;
    height: 100%;
    display: block;
    animation: show .3s linear 0s;
  }
}

.content-lists {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-list {
  color: var(--graybody);
  font-family: Noto Sans JP, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%;
}

.sns-icon {
  display: flex;
  gap: 20px;
  margin-right: 75px;
}

@media screen and (max-width: 1024px) {
  .sns-icon {
    padding: 40px 0;
  }
}

.sns-img {
  width: 28px;
  height: 28px;
}

.img-link {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.bottom-footer {
  display: flex;
  flex-direction: row;
  /* margin: auto; */
  gap: 120px;
}

@media screen and (min-width: 1025px) {
  .bottom-footer {
    margin: auto;
  }
}

@media screen and (max-width: 767px) {
  .bottom-footer {
    flex-direction: column;
    gap: 40px;
  }
}

@media screen and (max-width: 1024px){
  .bottom-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.footer-nav-items {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

@media screen and (max-width: 1024px){
  .footer-nav-items {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .footer-nav-items {
    flex-direction: column;
  }
}

.footer-nav-item {
  color: var(--graybody);
  font-family: Noto Sans JP, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
}

.footer-nav-item a {
  color: var(--graybody) !important;
}

.footer-nav-item a:hover {
  color: var(--vivid-orange) !important;
  text-decoration-line: none;
}

.copyright p {
  color: var(--graycaption);
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.back-container {
  position: absolute;
  width: 48px;
  height: 48px;
  top: -24px;
  /* 変更（追加） */
  /* left: 1320px; */
  right: 72px;
}

@media screen and (max-width: 767px) {
  .back-container {
    display: none;
  }
}

.back-to-top {
  height: 100%;
  border-radius: 50%;
  background-color: var(--vivid-orange);
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-contents a {
  color: var(--graybody) !important;
}

.footer-contents a:hover {
  color: var(--vivid-orange) !important;
  text-decoration-line: none;
}