/**
 * s-008 スケジュールセクション
 * SCHEDULE セクションのスタイル
 */

.s-008 {
  position: relative;
  padding-top: var(--wp--preset--spacing--2-xl);
  padding-bottom: var(--wp--preset--spacing--2-xl);
  background-color: var(--wp--preset--color--background);
  padding-left: var(--wp--preset--spacing--base);
  padding-right: var(--wp--preset--spacing--base);
}

/* セクション内のヘッディング（左寄せバリエーション） */
.s-008 .c-heading-001__08 {
  margin-bottom: var(--wp--preset--spacing--xl);
}

.s-008 .c-heading-001__08-title {
  text-align: left;
  font-size: var(--wp--preset--font-size--4-xl);
  font-weight: var(--wp--custom--font-weight--bold);
  padding: var(--wp--preset--spacing--lg) 0;
  position: relative;
}

.s-008 .c-heading-001__08-title::after {
  content: "";
  display: block;
  width: 6rem;
  height: 0.1rem;
  background: var(--wp--preset--color--primary);
  margin: var(--wp--preset--spacing--base) 0 0 0;
  border-radius: var(--wp--custom--border--radius--sm);
  position: absolute;
  bottom: 0;
  left: 0;
}

.s-008 .c-heading-001__08-subtitle {
  text-align: left;
  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: flex-start;
  gap: var(--wp--preset--spacing--xs);
}

.s-008 .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-dark);
  display: inline-block;
}

/* Googleカレンダー */
.s-008 iframe {
  width: 100%;
  max-width: 900px;
  height: 600px;
  border: 0;
  border-radius: var(--wp--custom--border--radius--md);
  margin: 0 auto;
  display: block;
  background-color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--primary-lighter);
  box-shadow: var(--wp--custom--shadow--sm);
}

/* .alignfullで親要素を超えて横幅いっぱいに */
.s-008 .alignfull,
.s-008 iframe.alignfull {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* レスポンシブ対応 */
@media (max-width: 782px) {
  .s-008 {
    padding-top: var(--wp--preset--spacing--xl);
    padding-bottom: var(--wp--preset--spacing--xl);
    background-color: transparent;
  }

  .s-008 .c-heading-001__08-subtitle {
    font-size: var(--wp--preset--font-size--xl);
  }

  .s-008 iframe {
    height: 500px;
  }
}

@media (max-width: 480px) {
  .s-008 {
    padding-top: var(--wp--preset--spacing--lg);
    padding-bottom: var(--wp--preset--spacing--lg);
  }

  .s-008 .c-heading-001__08-title {
    font-size: var(--wp--preset--font-size--3-xl);
  }

  .s-008 .c-heading-001__08-subtitle {
    font-size: var(--wp--preset--font-size--lg);
  }

  .s-008 iframe {
    height: 400px;
  }
}
