@charset "UTF-8";
* {
  box-sizing: border-box;
}

.c-wrapper {
  width: 100%;
}

#main {
  background-image: none;
}

.c-breadcrumbs {
  width: 1000px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .c-breadcrumbs {
    width: 90.6666666667vw;
    margin-bottom: 0;
  }
}

.page-container {
  overflow: hidden;
  font-family: "Noto Sans JP", -apple-system, Roboto, Helvetica, sans-serif;
  color: #000;
  background: #fff;
}

.pet-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  width: 100%;
  overflow: hidden;
  background: #00246e;
}
@media (min-width: 1600px) {
  .pet-hero {
    min-height: 300px;
  }
}
.pet-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.pet-hero__inner {
  position: relative;
  z-index: 1;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 16px;
}
.pet-hero__title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .pet-hero {
    min-height: 58.6666666667vw;
  }
  .pet-hero__title {
    font-size: 6.9333333333vw;
  }
}

.pet-anchor-strip {
  background: #f6f6f6;
  padding: 50px 16px;
}
.pet-anchor-strip__inner {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .pet-anchor-strip__inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .pet-anchor-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .pet-anchor-strip {
    padding: 6.4vw 0;
  }
  .pet-anchor-strip__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.6666666667vw;
    width: 100%;
    padding: 0 4vw;
    box-sizing: border-box;
  }
  .pet-anchor-strip .pet-anchor-card {
    gap: 2.6666666667vw;
    padding: 4vw 1.3333333333vw;
    font-size: 3.7333333333vw;
    font-weight: 700;
    line-height: normal;
    align-self: stretch;
    height: auto;
    padding-bottom: 11vw;
  }
  .pet-anchor-strip .pet-anchor-card__arrow {
    width: 3.2vw;
    height: auto;
    border: none;
    margin-top: auto;
    flex-shrink: 0;
    display: block;
  }
}

.pet-anchor-card {
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px 12px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  line-height: 1.3;
  position: relative;
}
.pet-anchor-card__icon {
  flex-shrink: 0;
}
.pet-anchor-card__arrow {
  background-image: url(/images/guide/pet/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 12px;
  height: 8px;
  position: absolute;
  bottom: 20px;
}
@media (max-width: 768px) {
  .pet-anchor-card {
    font-size: 3.7333333333vw;
    gap: 3.2vw;
    padding: 4.2666666667vw 2.6666666667vw;
  }
}

.pet-main-wrap {
  display: flex;
  justify-content: center;
  padding: 50px 16px 80px;
}
@media (max-width: 768px) {
  .pet-main-wrap {
    padding: 13.3333333333vw 4vw 2.6666666667vw;
  }
}

.pet-guide-main {
  width: 1000px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media (max-width: 768px) {
  .pet-guide-main {
    gap: 21.3333333333vw;
    width: 100%;
  }
  .pet-guide-main .pet-lead {
    margin-bottom: 8vw;
  }
  .pet-guide-main .pet-step-card {
    flex-direction: row;
    align-items: center;
    gap: 4vw;
    padding: 4vw;
  }
  .pet-guide-main .pet-step-card__txt {
    flex: 1 1 0;
    align-items: flex-start;
    width: auto;
    min-width: 0;
    text-align: left;
  }
}

.pet-section {
  scroll-margin-top: 24px;
}
.pet-section__heading {
  font-size: 30px;
  font-weight: 700;
  color: #00246e;
  border-bottom: 1px solid #00246e;
  padding-bottom: 16px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .pet-section__heading {
    font-size: 5.8666666667vw;
  }
}
.pet-section__body {
  padding-top: 30px;
}
.pet-section__body--flush {
  padding-top: 30px;
  margin-left: -2px;
  margin-right: -2px;
}
.pet-section--assistance {
  padding-bottom: 0;
}

.pet-lead {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

.pet-steps {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 15px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .pet-steps {
    flex-direction: column;
  }
}

.pet-step-card {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 30px;
  background: #fff;
  border: 2px solid #ebebeb;
  border-radius: 6px;
  box-sizing: border-box;
}
.pet-step-card__icon {
  display: block;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}
.pet-step-card__txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}
.pet-step-card__num {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #00246e;
  margin: 0;
}
.pet-step-card__label {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #000;
  margin: 0;
}
@media (max-width: 768px) {
  .pet-step-card {
    flex: 1 1 auto;
    width: 100%;
  }
}

.pet-note-center {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  margin: 10px 0 20px;
}

.pet-cta-wrap {
  text-align: center;
}

.pet-btn {
  width: 400px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 40px;
  border-radius: 25px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .pet-btn {
    width: 100%;
  }
}
.pet-btn--primary {
  background: #00246e;
  color: #fff;
}
.pet-btn--icon {
  width: 350px;
  line-height: 1.2;
}
.pet-btn__ico {
  flex-shrink: 0;
}

.pet-agreement-block {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 50px;
  align-items: flex-start;
  background: #fff;
  border-radius: 6px;
  padding: 0;
}
.pet-agreement-block__visual {
  flex: 0 0 290px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .pet-agreement-block__visual {
    flex-basis: auto;
    width: 58.6666666667vw;
    text-align: center;
    margin: 0 auto;
  }
}
.pet-agreement-block__img {
  display: block;
  width: 100%;
  height: auto;
}
.pet-agreement-block__text {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .pet-agreement-block__text {
    flex: none;
  }
}
.pet-agreement-block__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .pet-agreement-block__title {
    font-size: 5.3333333333vw;
  }
}
.pet-agreement-block__desc {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .pet-agreement-block__desc {
    font-size: 3.7333333333vw;
  }
}
@media (max-width: 768px) {
  .pet-agreement-block {
    flex-direction: column;
  }
}

.pet-text-danger {
  color: #ef4444;
  font-weight: 700;
}

.pet-inline-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}
.pet-inline-heading--spaced {
  margin-top: 30px;
}
.pet-inline-heading__ico {
  flex-shrink: 0;
  display: block;
}
.pet-inline-heading__text {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 768px) {
  .pet-inline-heading__text {
    font-size: 4.8vw;
    line-height: 1.4;
  }
}

.pet-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.pet-cards--3 .pet-info-card,
.pet-cards--3 .pet-deny-card {
  flex: 1 1 calc(33.333% - 10px);
  min-width: 200px;
}
.pet-cards--4 .pet-info-card {
  flex: 1 1 calc(25% - 12px);
  min-width: 180px;
}
.pet-cards--allowed-pets.pet-cards--3 {
  align-items: stretch;
  min-height: 264px;
}
.pet-cards--allowed-pets.pet-cards--3 .pet-info-card {
  flex: 1 1 0;
  min-width: 0;
  gap: 10px;
  padding: 30px;
  min-height: 264px;
  box-sizing: border-box;
}
.pet-cards--allowed-pets .pet-info-card__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  text-align: center;
}
.pet-cards--allowed-pets .pet-info-card__title--stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}
.pet-cards--allowed-pets .pet-info-card__title-line {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
}
.pet-cards--allowed-pets .pet-info-card__title-line .pet-text-danger {
  font-weight: 700;
}
.pet-cards--allowed-pets .pet-info-card__desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  width: 100%;
}
.pet-cards--allowed-pets .pet-info-card__desc .pet-text-danger {
  font-weight: 400;
}
.pet-cards--allowed-pets .pet-info-card__desc-p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}
.pet-cards--notice.pet-cards--4 {
  /* 同乗中の注意・4カード（Figma node 11553:1491） */
  align-items: stretch;
}
.pet-cards--notice .pet-info-card {
  gap: 10px;
  padding: 30px;
  flex: 1 1 0;
  min-width: 0;
  box-sizing: border-box;
}
.pet-cards--notice .pet-info-card__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}
.pet-cards--notice .pet-info-card__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 6px;
  text-align: center;
  box-sizing: border-box;
}
.pet-cards--notice .pet-info-card__text--notice-split {
  gap: 20px;
}
.pet-cards--notice .pet-info-card__title--stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  width: 100%;
}
.pet-cards--notice .pet-info-card__title-line {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  color: #000;
}
.pet-cards--notice .pet-info-card__title-line--danger {
  color: #ef4444;
  font-weight: 800;
}
.pet-cards--notice .pet-info-card__title-line .pet-text-danger {
  font-weight: 800;
}
.pet-cards--notice .pet-info-card__desc--small {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0;
}
.pet-cards--notice .pet-info-card__desc--small .pet-info-card__desc-p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}
.pet-cards--notice .pet-info-card__desc--small .pet-text-danger {
  font-weight: 400;
}
.pet-cards--deny .pet-deny-card {
  border-color: #ef4444;
}
.pet-cards--deny.pet-cards--3 {
  align-items: stretch;
}
.pet-cards--deny.pet-cards--3 .pet-deny-card {
  flex: 1 1 0;
  min-width: 0;
}
@media (max-width: 768px) {
  .pet-cards--3 .pet-info-card,
  .pet-cards--3 .pet-deny-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  .pet-cards--deny.pet-cards--3 {
    /* 貸し出し拒否カード（SP幅・Figma node 11553:402） */
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 15px;
  }
  .pet-cards--deny.pet-cards--3 .pet-deny-card {
    flex: none;
    width: 100%;
    min-width: 0;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
    padding: 15px;
    height: auto;
    text-align: left;
  }
  .pet-cards--deny.pet-cards--3 .pet-deny-card__icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: block;
  }
  .pet-cards--deny.pet-cards--3 .pet-deny-card__text {
    flex: 1 1 0;
    min-width: 0;
    align-items: flex-start;
    align-self: stretch;
    justify-content: center;
    text-align: left;
    padding-bottom: 0;
  }
  .pet-cards--deny.pet-cards--3 .pet-deny-card__line {
    text-align: left;
    color: #333;
    font-weight: 800;
    width: 100%;
  }
  .pet-cards--deny.pet-cards--3 .pet-deny-card__line .pet-text-danger {
    font-weight: 800;
  }
  .pet-cards--4 .pet-info-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  .pet-cards--allowed-pets.pet-cards--3 {
    min-height: 0;
  }
  .pet-cards--allowed-pets.pet-cards--3 .pet-info-card {
    flex: 1 1 100%;
    min-width: 100%;
    min-height: 0;
  }
  .pet-cards--allowed-pets .pet-info-card {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 4vw;
    padding: 4vw;
    min-height: 0;
    box-sizing: border-box;
    text-align: left;
  }
  .pet-cards--allowed-pets .pet-info-card__icon {
    flex-shrink: 0;
    width: 21.3333333333vw;
    height: 21.3333333333vw;
  }
  .pet-cards--allowed-pets .pet-info-card__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5.3333333333vw;
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    padding-bottom: 0;
    text-align: left;
  }
  .pet-cards--allowed-pets .pet-info-card__title--stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    width: 100%;
  }
  .pet-cards--allowed-pets .pet-info-card__title-line {
    margin: 0;
    font-size: 4.2666666667vw;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
  }
  .pet-cards--allowed-pets .pet-info-card__title-line .pet-text-danger {
    font-weight: 700;
  }
  .pet-cards--allowed-pets .pet-info-card__desc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
    width: 100%;
  }
  .pet-cards--allowed-pets .pet-info-card__desc .pet-text-danger {
    font-weight: 400;
  }
  .pet-cards--allowed-pets .pet-info-card__desc-p {
    margin: 0;
    font-size: 3.7333333333vw;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
  }
  .pet-cards--notice.pet-cards--4 {
    /* 同乗中の注意・4カード SP（Figma node 11553:428） */
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .pet-cards--notice.pet-cards--4 .pet-info-card {
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
    padding: 15px;
    min-width: 0;
    text-align: left;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .pet-cards--notice.pet-cards--4 .pet-info-card {
    padding: 4vw;
  }
}
@media (max-width: 768px) {
  .pet-cards--notice.pet-cards--4 .pet-info-card__icon {
    width: 80px;
    height: 80px;
  }
  .pet-cards--notice.pet-cards--4 .pet-info-card__text {
    align-items: center;
    text-align: left;
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    padding-bottom: 0;
  }
  .pet-cards--notice.pet-cards--4 .pet-info-card__text--notice-split {
    gap: 15px;
  }
  .pet-cards--notice.pet-cards--4 .pet-info-card__title--stack {
    align-items: flex-start;
    width: 100%;
  }
  .pet-cards--notice.pet-cards--4 .pet-info-card__title-line {
    text-align: left;
    width: 100%;
    color: #333;
  }
  .pet-cards--notice.pet-cards--4 .pet-info-card__desc--small {
    align-items: flex-start;
    width: 100%;
  }
  .pet-cards--notice.pet-cards--4 .pet-info-card__desc--small .pet-info-card__desc-p {
    color: #333;
  }
}

.pet-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 16px;
  background: #fff;
  border: 2px solid #ebebeb;
  border-radius: 6px;
  text-align: center;
}
.pet-info-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
.pet-info-card__desc {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.pet-info-card__desc--small {
  font-size: 12px;
}

.pet-deny-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 30px;
  background: #fff;
  border: 2px solid #ef4444;
  border-radius: 6px;
  text-align: center;
  box-sizing: border-box;
  height: 100%;
}
.pet-deny-card__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 6px;
  box-sizing: border-box;
  margin: 0;
  text-align: center;
}
.pet-deny-card__line {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  color: #000;
}
.pet-deny-card__line .pet-text-danger {
  font-weight: 800;
}

.pet-subheading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

.pet-alert-box {
  margin-top: 30px;
  padding: 20px 40px;
  border: 1px solid #ef4444;
  background: #fff;
}
@media (max-width: 768px) {
  .pet-alert-box {
    padding: 5.3333333333vw;
  }
}
.pet-alert-box__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #ef4444;
}
@media (max-width: 768px) {
  .pet-alert-box__text {
    font-size: 3.7333333333vw;
  }
}

.pet-fee-panel {
  background: #f6f6f6;
  border-radius: 10px;
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.pet-fee-panel__title {
  font-size: 22px;
  font-weight: 700;
  color: #00246e;
  margin: 0;
  padding-bottom: 15px;
}
@media (max-width: 768px) {
  .pet-fee-panel__title {
    font-size: 4.8vw;
  }
}
.pet-fee-panel__cols {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px;
}
@media (max-width: 768px) {
  .pet-fee-panel__cols {
    flex-direction: column;
  }
}
.pet-fee-panel__box {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  background: #fff;
  border-radius: 6px;
  padding: 30px;
}
@media (max-width: 768px) {
  .pet-fee-panel__box {
    flex: none;
    padding: 4vw 2.6666666667vw;
  }
}
.pet-fee-panel__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 768px) {
  .pet-fee-panel__text {
    font-size: 3.7333333333vw;
  }
}
.pet-fee-panel__text--stacked {
  color: #000;
  width: 100%;
}
.pet-fee-panel__line {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #000;
}
@media (max-width: 768px) {
  .pet-fee-panel {
    padding: 6.4vw 4.2666666667vw;
  }
}

/* 店舗一覧・アコーディオン（PC: Figma 11553:1536 / SP: Figma 11553:473） */
.pet-shop-accordion {
  border: 1px solid #e0e0e0;
  background: #fff;
}
.pet-shop-accordion:not(.is-expanded) .pet-shop-tbody--expand {
  display: none;
}
.pet-shop-accordion__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0;
  background: #f6f6f6;
  border-top: none;
}
@media (max-width: 768px) {
  .pet-shop-accordion__footer {
    border-left: 2px solid #e0e0e0;
    border-right: 2px solid #e0e0e0;
  }
}
.pet-shop-accordion__toggle {
  box-sizing: border-box;
  width: 100%;
  max-width: 270px;
  min-height: 38px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  background: transparent;
  border: none;
  font-size: 14px;
  line-height: 1.3;
  font-family: inherit;
  font-weight: 400;
  cursor: pointer;
  color: #333;
}
@media (max-width: 768px) {
  .pet-shop-accordion__toggle {
    max-width: none;
  }
}
.pet-shop-accordion__toggle:hover, .pet-shop-accordion__toggle:focus {
  text-decoration: none;
  outline: none;
}
.pet-shop-accordion__toggle:focus-visible {
  box-shadow: inset 0 0 0 2px #00246e;
}

@media (max-width: 768px) {
  .pet-shop-table-wrap {
    overflow-x: visible;
    margin: 0;
  }
}

.pet-shop-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
@media (min-width: 769px) {
  .pet-shop-table thead + tbody tr:first-child .pet-shop-table__area,
  .pet-shop-table thead + tbody tr:first-child .pet-shop-table__name,
  .pet-shop-table thead + tbody tr:first-child .pet-shop-table__action {
    border-top: 2px solid #e0e0e0;
  }
  .pet-shop-table tbody + tbody tr:first-child .pet-shop-table__area,
  .pet-shop-table tbody + tbody tr:first-child .pet-shop-table__name,
  .pet-shop-table tbody + tbody tr:first-child .pet-shop-table__action {
    border-top: 2px solid #e0e0e0;
  }
  .pet-shop-table .pet-shop-tbody:last-child tr:last-child .pet-shop-table__area,
  .pet-shop-table .pet-shop-tbody:last-child tr:last-child .pet-shop-table__name,
  .pet-shop-table .pet-shop-tbody:last-child tr:last-child .pet-shop-table__action {
    border-bottom: 2px solid #e0e0e0;
  }
}
@media (max-width: 768px) {
  .pet-shop-table thead + tbody tr:first-child .pet-shop-table__area,
  .pet-shop-table thead + tbody tr:first-child .pet-shop-table__name,
  .pet-shop-table thead + tbody tr:first-child .pet-shop-table__action {
    border-top: 2px solid #e0e0e0;
  }
  .pet-shop-table tbody + tbody tr:first-child .pet-shop-table__area,
  .pet-shop-table tbody + tbody tr:first-child .pet-shop-table__name,
  .pet-shop-table tbody + tbody tr:first-child .pet-shop-table__action {
    border-top: 2px solid #e0e0e0;
  }
  .pet-shop-table .pet-shop-tbody:last-child tr:last-child .pet-shop-table__area,
  .pet-shop-table .pet-shop-tbody:last-child tr:last-child .pet-shop-table__name,
  .pet-shop-table .pet-shop-tbody:last-child tr:last-child .pet-shop-table__action {
    border-bottom: 2px solid #e0e0e0;
  }
}
.pet-shop-table__tr {
  vertical-align: middle;
}
.pet-shop-table__th {
  background: #f6f6f6;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-top: 1px solid #e0e0e0;
  border-bottom: none;
  padding: 14px 12px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #00246e;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .pet-shop-table__th {
    min-height: 84px;
    padding: 14px 5px;
    font-size: 14px;
    box-sizing: border-box;
  }
}
@media (min-width: 769px) {
  .pet-shop-table__th {
    padding: 15px 12px;
  }
}
.pet-shop-table__th--area {
  width: 270px;
}
@media (max-width: 768px) {
  .pet-shop-table__th--area {
    width: 70px;
  }
}
.pet-shop-table__th--name {
  width: auto;
}
.pet-shop-table__th--action {
  width: auto;
}
.pet-shop-table__area, .pet-shop-table__name, .pet-shop-table__action {
  padding: 12px 15px;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  line-height: 1.3;
  color: #333;
  text-align: center;
  vertical-align: middle;
  min-height: 54px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .pet-shop-table__area, .pet-shop-table__name, .pet-shop-table__action {
    padding: 2.6666666667vw 1.3333333333vw;
    font-size: 3.7333333333vw;
  }
}
.pet-shop-table__area {
  font-weight: 400;
  background: #fff;
}
@media (max-width: 768px) {
  .pet-shop-table__area {
    width: 70px;
  }
}
.pet-shop-table__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 40px;
  padding: 12px 50px;
  background: #00246e;
  color: #fff !important;
  font-size: 14px;
  line-height: normal;
  font-weight: 700;
  border-radius: 25px;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .pet-shop-table__btn {
    min-height: 0;
    line-height: 1;
    font-size: 3.3vw;
    width: 100%;
  }
}
.pet-shop-table__btn:hover, .pet-shop-table__btn:focus {
  opacity: 0.92;
  text-decoration: none;
  color: #fff !important;
}

/* 補助犬 */
.pet-assistance__head {
  background: #00246e;
  border-radius: 10px 10px 0 0;
  padding: 12px 20px 16px;
}
.pet-assistance__title {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
@media (max-width: 768px) {
  .pet-assistance__title {
    font-size: 5.8666666667vw;
  }
}
.pet-assistance__body {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 50px;
  border: 2px solid #00246e;
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 30px 50px 40px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .pet-assistance__body {
    padding: 8vw 5.3333333333vw 10.6666666667vw 5.3333333333vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 8vw;
    text-align: left;
  }
}
.pet-assistance__visual {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 768px) {
  .pet-assistance__visual {
    width: 32vw;
    height: 32vw;
    margin: 0 auto;
    align-self: center;
  }
}
.pet-assistance__img {
  display: block;
  width: 150px;
  height: 150px;
  max-width: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .pet-assistance__img {
    width: 100%;
    height: 100%;
  }
}
.pet-assistance__content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 0 25px;
  border-radius: 10px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .pet-assistance__content {
    width: 100%;
    padding: 0;
  }
}
.pet-assistance__lead {
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  color: #00246e;
  margin: 0;
}
@media (max-width: 768px) {
  .pet-assistance__lead {
    font-size: 4.8vw;
  }
}

.pet-assistance-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}
.pet-assistance-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}
.pet-assistance-list__ico {
  flex-shrink: 0;
  display: block;
  width: 12px;
  height: 12px;
}
.pet-assistance-list__text {
  flex: 1 1 0;
  min-width: 0;
  color: #000;
}

/* Back to Top Button */
.back-to-top {
  border-radius: 35px;
  background-color: rgb(0, 36, 110);
  box-shadow: 0px 2px 6px rgb(153, 153, 153);
  align-self: start;
  display: flex;
  margin-top: 580px;
  min-height: 70px;
  flex-direction: column;
  align-items: stretch;
  color: rgb(255, 255, 255);
  white-space: nowrap;
  text-align: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  font: 700 16px "Noto Sans JP", -apple-system, Roboto, Helvetica, sans-serif;
  cursor: pointer;
  text-decoration: none;
  position: fixed;
  bottom: 110px;
  right: 20px;
  z-index: 100;
}
@media (max-width: 768px) {
  .back-to-top {
    font-size: 3vw;
    width: 13.3333333333vw;
    height: 13.3333333333vw;
    min-height: 13.3333333333vw;
    bottom: 15vw;
  }
}
.back-to-top .back-to-top-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 20px;
  align-self: center;
}
@media (max-width: 768px) {
  .back-to-top {
    margin-top: 40px;
    white-space: initial;
  }
}

.part-reserve.part-reserve--compact .part-reserve__layout {
  grid-template-columns: 1fr 1fr;
}

.c-wrapper .part-reserve-sp {
  margin-left: -4vw;
  margin-right: -4vw;
}

/*# sourceMappingURL=style.css.map */
