/**
 * s-007 アクセスセクション
 * ACCESS セクションのスタイル
 */

.s-007 {
  position: relative;
  padding-top: var(--wp--preset--spacing--2-xl);
  padding-bottom: var(--wp--preset--spacing--2-xl);
}

/* .alignfullで親要素を超えて横幅いっぱいに */
.s-007 .alignfull {
  z-index: -1;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* セクション内のヘッディング */
.s-007 .c-heading-001__08 {
  margin-bottom: var(--wp--preset--spacing--xl);
}

.s-007 .c-heading-001__08-title {
  text-align: center;
  font-size: var(--wp--preset--font-size--4-xl);
  font-weight: var(--wp--custom--font-weight--bold);
  padding: var(--wp--preset--spacing--lg);
  position: relative;
}

.s-007 .c-heading-001__08-title::after {
  content: "";
  display: block;
  width: 6rem;
  height: 0.1rem;
  background: var(--wp--preset--color--primary);
  left: 0;
  right: 0;
  margin: var(--wp--preset--spacing--base) auto 0 auto;
  border-radius: var(--wp--custom--border--radius--sm);
  position: absolute;
  bottom: 0;
}

.s-007 .c-heading-001__08-subtitle {
  text-align: center;
  font-size: var(--wp--preset--font-size--sm);
  color: var(--wp--preset--color--primary-dark);
  margin: 0;
  margin-top: var(--wp--preset--spacing--lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--wp--preset--spacing--xs);
}

.s-007 .c-heading-001__08-subtitle::before {
  content: "pets";
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 1.25em;
  line-height: 1;
  color: var(--wp--preset--color--primary);
  display: inline-block;
}

.s-007 .c-heading-001__08 .wp-block-preformatted {
  font-family: inherit;
  font-size: var(--wp--preset--font-size--lg);
  line-height: 1.8;
  color: var(--wp--preset--color--text);
  text-align: center;
  white-space: pre-wrap;
  background: none;
  border: none;
  padding: 0;
  margin-top: var(--wp--preset--spacing--base);
}

/* Googleマップ */
.s-007 iframe {
  width: 100%;
  max-width: 100%;
  height: 450px;
  border: 0;
  border-radius: var(--wp--custom--border--radius--md);
  box-shadow: var(--wp--custom--shadow--sm);
  margin: 0;
  display: block;
}

/* レスポンシブ対応 */
@media (max-width: 782px) {
  .s-007 {
    padding-top: var(--wp--preset--spacing--xl);
    padding-bottom: var(--wp--preset--spacing--xl);
  }

  .s-007 .c-heading-001__08-subtitle {
    font-size: var(--wp--preset--font-size--xl);
  }

  .s-007 iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .s-007 {
    padding-top: var(--wp--preset--spacing--lg);
    padding-bottom: var(--wp--preset--spacing--lg);
  }

  .s-007 .c-heading-001__08-title {
    font-size: var(--wp--preset--font-size--3-xl);
  }

  .s-007 .c-heading-001__08-subtitle {
    font-size: var(--wp--preset--font-size--lg);
  }

  .s-007 .c-heading-001__08 .wp-block-preformatted {
    font-size: var(--wp--preset--font-size--base);
  }

  .s-007 iframe {
    height: 300px;
  }
}
