.page {
  padding-bottom: 85px;
}

.navigation {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-top: 70px;
flex-wrap: wrap;
}
.navigation_link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background: url(./images/navigation-arrow.svg) center bottom 11px no-repeat,#F6BB2C;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  font-family: "Zen Maru Gothic", serif;
  color: #00285C;
  font-size: 20px;
  gap: 2px;
  padding-bottom: 28px;
}
@media screen and (max-width: 600px) {
  .navigation {
    gap: 16px;
  }
  .navigation_link {
    zoom: .8;
  }
}

.franchise {
  max-width: var(--innerWidth);
  margin: 64px auto 0;
}
.franchise_title {
  font-size: 40px;
  text-align: center;
  background: url(../common/images/bar-01.svg) center bottom no-repeat;
  padding-bottom: 20px;
  font-weight: bold;
  color: #00285C;
  margin-bottom: 46px;
  font-family: "Zen Maru Gothic", serif;
}
.franchise_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 50px;
}
.franchise_list_item {
  background: #EEEEEE;
  border-radius: 30px;
  padding: 22px;
}
.franchise_list_item_img {
  border-radius: 20px;
}
.franchise_list_item_title {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 0.5em;
}
.franchise_list_item_text {
  font-weight: bold;
}
.franchise_list_item_link {
  display: block;
  background: url(./images/link-arrow.svg) center right 20px no-repeat,#2E61B1;
  color: #fff;
  border-radius: 9999px;
  font-weight: bold;
  padding: 16px 18px;
  margin-top: 40px;
}
.franchise_map {
  text-align: center;
  margin-top: 64px;
}
.franchise_map iframe {
  aspect-ratio: 3 / 2;
  max-width: 100%;
  width: 800px;
}
@media screen and (max-width: 1200px)  {
  .franchise {
    max-width: calc(var(--innerWidth) + 60px);
    padding: 0 30px;
  }
  .franchise_title {
    font-size: 32px;
  }
  .franchise_list_item_img {
    width: 100%;
  }
  .franchise_link {
    font-size: 20px;
    max-width: none;
  }
}
@media screen and (max-width: 900px) {
  .franchise_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}
@media screen and (max-width: 600px) {
  .franchise_list {
    grid-template-columns: 1fr;
    gap: 20px 30px;
  }
}
