@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: none;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header {
    height: 50px;
  }
}
.header__inner {
  position: relative;
  width: 100%;
  height: 112px;
}
@media screen and (max-width: 768px) {
  .header__inner {
    height: 50px;
  }
}
.header__logo {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 221px;
  height: 64px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    top: 5px;
    left: 16px;
    width: 166px;
    height: 48px;
  }
}
.header__logo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.header__access {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 221px;
  height: 42px;
}
@media screen and (max-width: 768px) {
  .header__access {
    top: 10px;
    right: 16px;
    width: 138px;
    height: 28px;
  }
}
.header__access-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}


/* MV画像(PC/SP)にヘッダー(ロゴ・アクセス)が焼き込まれるためHTMLヘッダーは常時非表示(二重回避) */
.header{ display:none; }

.footer {
  padding-top: 24px;
  padding-bottom: calc(154px + env(safe-area-inset-bottom, 0px));
  background-color: #111111;
  height: 50px;
}
.footer__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__copy {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 400;
}

.cta {
  color: #222;
}
.cta__inner {
  position: relative;
  z-index: 1;
  width: min(1000px, 100% - 40px);
  margin: 0 auto;
}
.cta--actions {
  background: transparent;
}
.cta--actions .cta__inner {
  padding: 0 0 31px;
}
.cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cta__actions-title {
  width: 100%;
  margin-bottom: 8px;
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
  transform: skewX(-6deg);
}
.cta__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 8px;
  width: 100%;
}
.cta__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 105px;
  padding: 16px 24px;
  border-radius: 9999px;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.3s, transform 0.3s;
}
.cta__btn::before {
  content: "";
  position: absolute;
  inset: -7px -13px;
  border-radius: inherit;
  filter: blur(18px);
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}
.cta__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.cta__btn--web {
  color: #fff;
  border: 1.5px solid #fff;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(153deg, #174e75 7%, #236ea3 30%, #52a3da 54%, #236ea3 77%, #174e75 101%);
}
.cta__btn--web::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), linear-gradient(96deg, #9f8246 0%, #d9caab 25%, #e8d0a0 50%, #d9caab 76%, #9f8246 100%);
}
.cta__btn--tel {
  color: #977514;
  border: 1.5px solid #664e09;
  background: #fff;
}
.cta__btn--tel::before {
  opacity: 0.3;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), linear-gradient(169deg, #71560a 3%, #bf992c 27%, #ffe28b 51%, #bf992c 75%, #71560a 100%);
}
.cta__btn-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.cta__btn-badge {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  color: #fff;
  text-shadow: 0 3px 6px rgba(255, 255, 255, 0.25);
}
.cta__btn-badge .brace {
  font-weight: 700;
  font-size: 9px;
}
.cta__btn-badge .label {
  font-size: 12px;
  letter-spacing: 0.06em;
}
.cta__btn-badge .label em {
  font-style: normal;
  font-size: 15px;
}
.cta__btn-main {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #fff;
}
.cta__btn-main img {
  width: 36px;
  height: 36px;
}
.cta__btn-lead {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  color: #977514;
}
.cta__btn-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  font-size: clamp(24px, 2.1vw, 30px);
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #977514;
}
.cta__btn-tel img {
  width: 29px;
  height: 30px;
}
.cta__btn-tel .hyphen {
  font-size: 0.6em;
}
.cta__btn-hours {
  display: flex;
  align-items: baseline;
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  color: #977514;
  text-shadow: 0 3px 6px rgba(255, 255, 255, 0.25);
}
.cta__btn-hours .label {
  font-size: 12px;
  letter-spacing: -0.02em;
}
.cta__btn-hours .time {
  font-size: 15px;
  letter-spacing: 0.06em;
}
.cta__closed {
  width: 100%;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}
.cta__note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  max-width: 901px;
  font-size: 14px;
  line-height: 1.4;
  color: #787575;
}
.cta__note img {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .cta__inner {
    width: min(100%, 100% - 40px);
  }
  .cta--actions .cta__inner {
    padding: 16px 0 40px;
  }
  .cta__actions {
    gap: 0;
  }
  .cta__buttons {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .cta__btn {
    height: 69px;
    min-height: auto;
    padding: 8px 16px;
  }
  .cta__btn::before {
    inset: -5px -9px;
    filter: blur(12px);
  }
  .cta__btn-badge {
    gap: 2px;
  }
  .cta__btn-badge .brace {
    font-size: 6px;
  }
  .cta__btn-badge .label {
    font-size: 8px;
    letter-spacing: 0.04em;
  }
  .cta__btn-badge .label em {
    font-size: 10px;
  }
  .cta__btn-main {
    gap: 6px;
    font-size: 17px;
    letter-spacing: -0.03em;
  }
  .cta__btn-main img {
    width: 24px;
    height: 24px;
  }
  .cta__btn-lead {
    font-size: 8px;
  }
  .cta__btn-tel {
    gap: 6px;
    font-size: 20px;
    letter-spacing: 0.05em;
  }
  .cta__btn-tel img {
    width: 20px;
    height: 21px;
  }
  .cta__btn-hours .label {
    font-size: 8px;
  }
  .cta__btn-hours .time {
    font-size: 10px;
  }
  .cta__closed {
    font-size: 9px;
    margin-top: 8px;
  }
  .cta__note {
    font-size: 10px;
    text-align: left;
    margin-top: 10px;
  }
  .cta__actions-title {
    font-size: 14px;
    margin-bottom: 4px;
  }
}

.fixed-cta {
  transition: opacity 0.3s, visibility 0.3s;
  position: fixed;
  right: 16px;
  bottom: 0;
  z-index: 200;
  width: min(352px, 25.1428571429vw);
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.18));
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .fixed-cta {
    display: none;
  }
}
.fixed-cta__inner {
  width: 100%;
  aspect-ratio: 352/194;
  box-sizing: border-box;
  background-image: url("../images/btn-bg.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center top;
  padding: min(51px, 3.6428571429vw) min(17px, 1.2142857143vw) min(17px, 1.2142857143vw);
}
.fixed-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: min(8px, 0.5714285714vw);
  line-height: 0;
}
.fixed-cta__btn {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 962/210;
}
.fixed-cta__btn img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.fixed-cta-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .fixed-cta-sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    filter: drop-shadow(0 -4px 4px rgba(0, 0, 0, 0.06));
  }
}
.fixed-cta-sp__notice {
  position: relative;
  z-index: 2;
  margin-bottom: -8px;
  padding: 4px 24px;
  border-radius: 100px;
  background: #f3f1e8;
  white-space: nowrap;
}
.fixed-cta-sp__notice span {
  display: inline-block;
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.44px;
  text-align: center;
  color: #222;
  transform: skewX(-10deg) scaleY(0.98);
}
.fixed-cta-sp__body {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  padding: 16px 12px 8px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  background: #d7cfb2;
}
.fixed-cta-sp__buttons {
  display: flex;
  gap: 4px;
}
.fixed-cta-sp__btn {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 51px;
  padding: 8px 16px;
  border-radius: 9999px;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.3s;
}
.fixed-cta-sp__btn:hover {
  opacity: 0.85;
}
.fixed-cta-sp__btn--web {
  border: 1px solid #fff;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(145deg, #174e75 7%, #236ea3 30%, #52a3da 54%, #236ea3 77%, #174e75 101%);
}
.fixed-cta-sp__btn--tel {
  border: 1px solid #664e09;
  background: #fff;
}
.fixed-cta-sp__btn-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.fixed-cta-sp__btn-icon--web {
  left: 20px;
  width: 16px;
  height: 16px;
}
.fixed-cta-sp__btn-icon--tel {
  left: 13px;
  width: 14px;
  height: 14px;
}
.fixed-cta-sp__btn-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.fixed-cta-sp__btn-badge {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  color: #fff;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.25);
}
.fixed-cta-sp__btn-badge .brace {
  font-weight: 700;
  font-size: 6px;
  line-height: 1;
  letter-spacing: -0.12px;
}
.fixed-cta-sp__btn-badge .label {
  font-weight: 400;
  font-size: 8px;
  line-height: 1.3;
  letter-spacing: 0.56px;
}
.fixed-cta-sp__btn-badge .label em {
  font-style: normal;
  font-size: 10px;
}
.fixed-cta-sp__btn-main {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: -0.42px;
  color: #fff;
}
.fixed-cta-sp__btn-tel {
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: 0.65px;
  color: #977514;
}
.fixed-cta-sp__btn-hours {
  display: flex;
  align-items: flex-end;
  font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  color: #977514;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.25);
}
.fixed-cta-sp__btn-hours .label {
  font-size: 8px;
  line-height: 1.3;
  letter-spacing: -0.16px;
}
.fixed-cta-sp__btn-hours .time {
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: 0.6px;
}
.fixed-cta-sp__closed {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
  color: #222;
}


.l-pc {
  display: block;
}

.l-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .l-pc {
    display: none;
  }
  .l-sp {
    display: block;
  }
}
.images {
  max-width: 1000px;
  width: 100%;
  height: auto;
  margin-inline: auto;
}

.img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: bottom;
}

.section {
  position: relative;
  overflow: hidden;
}
.section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.section__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.section__inner {
  position: relative;
  z-index: 1;
  width: min(1000px, 100% - 40px);
  margin: 0 auto;
}
.section__inner--full {
  width: 100%;
  max-width: none;
  margin: 0;
}

.images--mv {
  max-width: none;
  width: 100%;
  aspect-ratio: 2880/1632;
}
.images--mv .img {
  object-fit: cover;
  object-position: center;
}

.section--pc01 {
  background: #EFF2F1;
}
.images--pc01 {
  max-width: 1440px;
  aspect-ratio: 2880/982;
  margin: 0 auto;
}

.images--pc02 {
  max-width: 1440px;
  aspect-ratio: 2880/2889;
}

.images--pc03 {
  max-width: 1000px;
  aspect-ratio: 3128/5000;
}

.images--pc04 {
  max-width: 1100px;
  aspect-ratio: 4428/4276;
  padding-top: 20px;
}
.images--pc04 .img {
  margin-bottom: 48px;
}

.images--pc05 {
  max-width: 1200px;
  aspect-ratio: 2880/1690;
}

.images--pc06 {
  max-width: 1300px;
  aspect-ratio: 5000/3998;
}

.images--pc07 {
  max-width: 1200px;
  aspect-ratio: 2880/2591;
}

.images--pc08 {
  max-width: 1100px;
  aspect-ratio: 4355/2805;
  padding-top: 81px;
}

.images--pc09 {
  max-width: 1000px;
  aspect-ratio: 2898/5000;
  padding-top: 51px;
  padding-bottom: 53px;
}

.images--pc10 {
  max-width: 1000px;
  aspect-ratio: 3974/5000;
  padding-bottom: 41px;
}

.images--pc11 {
  max-width: 1200px;
  aspect-ratio: 3115/4999;
  padding: 60px 0;
}

.images--cta04,
.images--cta08,
.images--cta11 {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

.images--cta04 {
  aspect-ratio: 2880/2862;
}

.images--cta08 {
  aspect-ratio: 2880/2202;
}

.images--cta11 {
  aspect-ratio: 2880/3114;
}

.cta-hotspot {
  position: absolute;
  display: block;
  z-index: 2;
  pointer-events: auto;
}

.cta-hotspot[href^="tel:"] {
  pointer-events: auto;
}

/* ホットスポットはCTA画像内のボタン実測位置に合わせる（Web=x16-49% / TEL=x51-84%） */
.cta-hotspot--web {
  left: 15%;
  width: 35%;
}
.cta-hotspot--tel {
  left: 50%;
  width: 35%;
}
/* y位置はCTA画像ごとに異なる */
.images--cta04 .cta-hotspot { top: 84%; height: 7.5%; }
.images--cta08 .cta-hotspot { top: 80%; height: 9%; }
.images--cta11 .cta-hotspot { top: 75%; height: 7.5%; }

.images--pc12 {
  max-width: 1000px;
  aspect-ratio: 4000/2148;
  margin: 64px auto;
  position: relative;
}

.images--pc13 {
  max-width: 1300px;
  aspect-ratio: 4000/1716;
  padding-bottom: 84px;
}

.images--pc14 {
  max-width: 1000px;
  aspect-ratio: 2929/5000;
  padding: 64px 0;
}

.section--pc02 .section__inner {
  width: min(1440px, 100%);
}

.section--pc03 {
  padding: 64px 0;
}

.section--pc07 {
  padding-bottom: 40px;
}

.section--pc05 .section__bg img,
.section--pc09 .section__bg img,
.section--pc11 .section__bg img {
  object-position: center bottom;
}

.section--pc04 .section__inner,
.section--pc05 .section__inner,
.section--pc08 .section__inner {
  width: min(1100px, 100% - 40px);
}


.section--pc06 .section__inner{
  width: min(1300px, 100% - 40px);
  margin-left: auto;
  margin-right: auto;
}
.section--pc04 .section__inner--full,
.section--pc05 .section__inner--full,
.section--pc08 .section__inner--full {
  width: 100%;
  max-width: none;
}

.section--cta .cta--actions {
  margin-top: 48px;
}

.l-sp .section__inner {
  width: min(750px, 100%);
  padding: 0;
}

.images--spmv {
  max-width: 750px;
  aspect-ratio: 750/1022;
}

.images--sp01 {
  max-width: 750px;
  aspect-ratio: 1125/1512;
}

.images--sp03 {
  max-width: 750px;
  aspect-ratio: 1125/4578;
}

.section--sp03 .section__inner {
  padding-inline: 0;
}

.images--sp04 {
  max-width: 750px;
  aspect-ratio: 1125/2643;
}

.images--sp05 {
  max-width: 750px;
  aspect-ratio: 1125/3807;
}

.images--sp06 {
  max-width: 750px;
  aspect-ratio: 1383/5000;
}

.images--sp07 {
  max-width: 750px;
  aspect-ratio: 1125/3933;
}

.section--sp07 .section__inner {
  padding-inline: 0;
}

.images--sp08 {
  max-width: 750px;
  aspect-ratio: 1125/2100;
}

.images--sp10 {
  max-width: 750px;
  aspect-ratio: 1125/5082;
}

.images--spcta {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.images--spcta04 {
  aspect-ratio: 1125/2643;
}

.images--spcta08 {
  aspect-ratio: 1125/3282;
}

.images--spcta11 {
  aspect-ratio: 1125/3282;
}

/* SP CTAボタンは全幅・縦積み。y位置はCTA画像ごとに実測 */
.l-sp .cta-hotspot--web,
.l-sp .cta-hotspot--tel {
  left: 6%;
  width: 84%;
}
.images--spcta04 .cta-hotspot--web { top: 69%; height: 7.5%; }
.images--spcta04 .cta-hotspot--tel { top: 77%; height: 7.5%; }
.images--spcta08 .cta-hotspot--web { top: 64%; height: 9.5%; }
.images--spcta08 .cta-hotspot--tel { top: 74%; height: 9.5%; }
.images--spcta11 .cta-hotspot--web { top: 67%; height: 6.5%; }
.images--spcta11 .cta-hotspot--tel { top: 74%; height: 6.5%; }

.images--sp12 {
  max-width: 750px;
  aspect-ratio: 1500/2656;
  position: relative;
}

/* アクセス・医院概要の地図：内装写真の上に position:absolute で重ねる。
   幅・位置は画像に対する比率(%)指定。数値は写真領域の実測値に対応。 */
.section__map {
  position: absolute;
  z-index: 2;
}
.section__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
/* PC（pc/14_access：内装写真は左側） */
.section__map--pc {
  left: 0;
  top: 13.7%;
  width: 49.3%;
  height: 60%;
}
/* SP（sp/14_access：内装写真は上部の横長） */
.section__map--sp {
  left: 2.6%;
  top: 9.3%;
  width: 94.8%;
  height: 32%;
}

.images--sp13 {
  max-width: 750px;
  aspect-ratio: 1125/2145;
}

.images--sp14 {
  max-width: 750px;
  aspect-ratio: 1218/5000;
}

.images--sp02-01 {
  max-width: 750px;
  aspect-ratio: 996/859;
  padding-inline: 15px;
}

.images--sp02-02 {
  max-width: 750px;
  aspect-ratio: 1125/1386;
}

.images--sp02-03 {
  max-width: 750px;
  aspect-ratio: 1125/1275;
}

.images--sp02-04 {
  max-width: 750px;
  aspect-ratio: 1125/2280;
  padding-bottom: 40px;
}

.images--sp09-01 {
  max-width: 750px;
  aspect-ratio: 1381/1860;
}

.images--sp09-02 {
  max-width: 750px;
  aspect-ratio: 1389/2100;
}

.images--sp09-03 {
  max-width: 750px;
  aspect-ratio: 1391/1836;
}

.images--sp09-04 {
  max-width: 750px;
  aspect-ratio: 1411/1836;
}

.images--sp09-05 {
  max-width: 750px;
  aspect-ratio: 1392/1776;
}

.images--sp11-01 {
  max-width: 750px;
  aspect-ratio: 1026/3268;
}

.images--sp11-01a {
  max-width: 750px;
  aspect-ratio: 1026/1140;
}

.images--sp11-01b {
  max-width: 750px;
  aspect-ratio: 1026/1588;
}

.images--sp11-02 {
  max-width: 750px;
  aspect-ratio: 1368/4504;
}

.section--sp02,
.section--sp09,
.section--sp11 {
  background: #fff;
}

.section--sp09 .section__inner,
.section--sp11 .section__inner {
  padding-inline: 15px;
}

.section--sp09 {
  padding-top: 40px;
}

.section--sp09 .section__bg img {
  object-position: center bottom;
}

.section--sp-split .section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.section--sp-split-lg .section__inner {
  gap: 64px;
}

.section--sp11.section--sp-split-lg .section__inner {
  gap: 24px;
}

.section--sp11 .cta--buttons-only {
  width: 100%;
}
.section--sp11 .cta--buttons-only .cta__inner {
  width: 100%;
  max-width: none;
  padding: 0;
}
.section--sp11 .cta--buttons-only .cta__actions {
  gap: 12px;
}
.section--sp11 .cta--buttons-only .cta__buttons {
  width: 100%;
}

.section--sp04,
.section--sp08 {
  position: relative;
}

.section--sp04 .cta--actions,
.section--sp08 .cta--actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
