/*
 * ARIEL TOP 202607
 * Page-specific styles only.
 */

.ariel-top-main-202607 {
  min-width: 0;
  font-family:
    "Noto Sans JP",
    "Zen Kaku Gothic New",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    sans-serif;
}

/* =========================================================
   MAIN SWIPER
   ========================================================= */

.ariel-top-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(2, 175, 206, .26);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, .82),
      rgba(246, 253, 255, .64)
    ),
    conic-gradient(
      from 90deg,
      rgba(2, 175, 206, .055) 0 25%,
      rgba(255, 255, 255, .78) 0 50%,
      rgba(2, 175, 206, .055) 0 75%,
      rgba(255, 255, 255, .78) 0 100%
    );
  background-size:
    auto,
    44px 44px;
}

.ariel-top-hero-swiper {
  position: relative;
  width: 100%;
  height: clamp(340px, 46vw, 430px);
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  background: transparent;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.ariel-top-hero-swiper .swiper-wrapper {
  height: 100%;
}

.ariel-top-hero-slide {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: rgb(248 253 255);
}

.ariel-top-hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.ariel-top-hero-swiper:not(.swiper-initialized)
.ariel-top-hero-slide:not(:first-child) {
  display: none;
}

/* 中央の丸いドットのみ。左右矢印は設置しない。 */
.ariel-top-hero-pagination {
  position: absolute !important;
  z-index: 8;
  right: 0 !important;
  bottom: 14px !important;
  left: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  gap: 8px;
  line-height: 1;
  pointer-events: auto;
}

.ariel-top-hero-pagination
.swiper-pagination-bullet {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 9px;
  height: 9px;
  margin: 0 !important;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .94);
  border-radius: 50%;
  background: rgba(255, 255, 255, .62);
  box-shadow: none;
  opacity: 1;
  cursor: pointer;
  transition:
    background-color .24s ease,
    border-color .24s ease;

}

.ariel-top-hero-pagination
.swiper-pagination-bullet-active {
  border-color: rgba(255, 255, 255, 1);
  background: #e67dad;
}

/* =========================================================
   MOBILE LEFT CONTENT
   ========================================================= */

.ariel-top-mobile-left {
  display: none;
}

/* =========================================================
   TOP SECTIONS
   ========================================================= */

.ariel-top-section {
  padding:
    clamp(44px, 7vw, 72px)
    clamp(20px, 5vw, 46px);
  border-bottom: 1px solid rgb(220 242 247);
  background: rgb(255 255 255 / 94%);
}

.ariel-top-section-heading {
  margin-bottom: 24px;
  text-align: center;
}

.ariel-top-section-heading p {
  margin: 0 0 7px;
  color: #e67dad;
  font-family:
    "waverly-cf",
    "Times New Roman",
    Georgia,
    serif;
  font-size: clamp(23px, 4vw, 34px);
  font-weight: 600;
  letter-spacing: .08em;
}

.ariel-top-section-heading h2 {
  margin: 0;
  color: #02afce;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
}

.ariel-top-build-panel {
  padding: 28px 20px;
  border: 1px solid rgb(202 238 245);
  border-radius: 18px;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      rgb(248 254 255) 54%,
      rgb(255 247 251) 100%
    );
  color: rgb(76 103 113);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.ariel-top-main-202607
.center-contents-menu-section {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .ariel-top-mobile-left {
    display: block;
    padding: 22px 18px;
    border-bottom: 1px solid rgb(220 242 247);
    background: #fff;
  }

  .ariel-top-mobile-left a {
    display: grid;
    grid-template-columns:
      92px
      minmax(0, 1fr);
    grid-template-rows:
      auto
      auto;
    column-gap: 16px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgb(202 238 245);
    border-radius: 18px;
    background:
      linear-gradient(
        180deg,
        #ffffff 0%,
        rgb(248 254 255) 100%
      );
    color: #02afce;
    text-decoration: none;
  }

  .ariel-top-mobile-left img {
    grid-row: 1 / 3;
    display: block;
    width: 92px;
    height: 92px;
    border-radius: 14px;
    object-fit: cover;
  }

  .ariel-top-mobile-left span {
    align-self: end;
    font-family:
      "waverly-cf",
      "Times New Roman",
      Georgia,
      serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .06em;
  }

  .ariel-top-mobile-left strong {
    align-self: start;
    color: #e67dad;
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .ariel-top-hero {
    background-size:
      auto,
      36px 36px;
  }

  .ariel-top-hero-swiper {
    height: clamp(240px, 68vw, 330px);
    min-height: 240px;
  }

  .ariel-top-hero-pagination {
    bottom: 10px !important;
    gap: 7px;
  }

  .ariel-top-hero-pagination
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .ariel-top-section {
    padding: 42px 18px;
  }
}

/* ariel-top-design-demo-202607 START */

.ariel-top-main-202607
.ariel-top-design-demo-202607 {
  font-family:
    "Noto Sans JP",
    "Zen Kaku Gothic New",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    sans-serif;
}

.ariel-top-main-202607
.ariel-top-demo-concept-202607 {
  display: none;
}

.ariel-top-main-202607
.ariel-top-demo-section-202607 {
  position: relative;
  overflow: hidden;
  padding:
    clamp(52px, 7vw, 76px)
    clamp(15px, 4vw, 34px);
  border-bottom:
    1px solid
    rgb(202 238 245);
}

.ariel-top-main-202607
.ariel-top-demo-course-202607,
.ariel-top-main-202607
.ariel-top-demo-diary-202607,
.ariel-top-main-202607
.ariel-top-demo-blog-202607 {
  background:
    linear-gradient(
      180deg,
      rgb(255 255 255 / 98%) 0%,
      rgb(247 253 255 / 93%) 100%
    );
}

.ariel-top-main-202607
.ariel-top-demo-cast-202607,
.ariel-top-main-202607
.ariel-top-demo-review-202607 {
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      rgb(255 247 251 / 90%) 100%
    );
}

.ariel-top-main-202607
.ariel-top-demo-heading-202607 {
  margin: 0 auto 27px;
  text-align: center;
}

.ariel-top-main-202607
.ariel-top-demo-heading-202607 > p {
  margin: 0 0 7px;
  color: #02afce;
  font-family:
    "waverly-cf",
    "Times New Roman",
    Georgia,
    serif;
  font-size:
    clamp(24px, 4vw, 34px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .08em;
}

.ariel-top-main-202607
.ariel-top-demo-heading-202607 > h2 {
  margin: 0;
  color: #e67dad;
  font-size:
    clamp(18px, 3vw, 24px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .04em;
}

.ariel-top-main-202607
.ariel-top-demo-heading-202607 > span {
  display: block;
  margin-top: 9px;
  color: rgb(88 109 118);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
}

.ariel-top-main-202607
.ariel-top-demo-course-grid-202607 {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ariel-top-main-202607
.ariel-top-demo-course-card-202607 {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border:
    1px solid
    rgb(202 238 245);
  background: #ffffff;
  color: inherit;
  text-decoration: none;
}

.ariel-top-main-202607
.ariel-top-demo-course-card-202607 > img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.ariel-top-main-202607
.ariel-top-demo-course-card-202607::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 24%,
      rgb(24 45 54 / 12%) 52%,
      rgb(22 42 51 / 82%) 100%
    );
  pointer-events: none;
}

.ariel-top-main-202607
.ariel-top-demo-course-card-202607 > span {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border:
    1px solid
    rgb(255 255 255 / 88%);
  border-radius: 50%;
  background:
    rgb(255 255 255 / 18%);
  color: #ffffff;
  font-family:
    "waverly-cf",
    "Times New Roman",
    Georgia,
    serif;
  font-size: 12px;
}

.ariel-top-main-202607
.ariel-top-demo-course-card-202607 > div {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 18px;
  left: 16px;
}

.ariel-top-main-202607
.ariel-top-demo-course-card-202607 small {
  color:
    rgb(255 255 255 / 82%);
  font-family:
    "waverly-cf",
    "Times New Roman",
    Georgia,
    serif;
  font-size: 9px;
  letter-spacing: .13em;
}

.ariel-top-main-202607
.ariel-top-demo-course-card-202607 h3 {
  margin: 7px 0 5px;
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
}

.ariel-top-main-202607
.ariel-top-demo-course-card-202607 p {
  margin: 0;
  color:
    rgb(255 255 255 / 90%);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.65;
}

.ariel-top-main-202607
.ariel-top-demo-swipe-202607 {
  display: none;
  margin: 13px 0 0;
  color: #02afce;
  font-family:
    "waverly-cf",
    "Times New Roman",
    Georgia,
    serif;
  font-size: 10px;
  letter-spacing: .15em;
  text-align: center;
}

.ariel-top-main-202607
.ariel-top-demo-cast-grid-202607 {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ariel-top-main-202607
.ariel-top-demo-cast-card-202607 {
  overflow: hidden;
  border:
    1px solid
    rgb(255 229 242);
  background: #ffffff;
  color: inherit;
  text-align: center;
  text-decoration: none;
}

.ariel-top-main-202607
.ariel-top-demo-cast-card-202607 > div {
  position: relative;
  padding: 3px 3px 0;
}

.ariel-top-main-202607
.ariel-top-demo-cast-card-202607 img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4.65;
  border-radius:
    9px 9px 0 0;
  object-fit: cover;
}

.ariel-top-main-202607
.ariel-top-demo-cast-card-202607 > div > span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border:
    1px solid
    rgb(255 255 255 / 82%);
  border-radius: 999px;
  background:
    rgb(230 125 173 / 92%);
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
}

.ariel-top-main-202607
.ariel-top-demo-cast-card-202607 > strong {
  display: block;
  margin-top: 10px;
  color: #e67dad;
  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
  font-size: 17px;
  font-weight: 600;
}

.ariel-top-main-202607
.ariel-top-demo-cast-card-202607 > small {
  display: block;
  margin: 3px 0 11px;
  color: #02afce;
  font-family:
    "waverly-cf",
    "Times New Roman",
    Georgia,
    serif;
  font-size: 8px;
  letter-spacing: .12em;
}

.ariel-top-main-202607
.ariel-top-demo-cast-buttons-202607 {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.ariel-top-main-202607
.ariel-top-demo-button-blue-202607,
.ariel-top-main-202607
.ariel-top-demo-button-line-202607,
.ariel-top-main-202607
.ariel-top-demo-more-202607,
.ariel-top-main-202607
.ariel-top-demo-final-line-202607,
.ariel-top-main-202607
.ariel-top-demo-final-phone-202607,
.ariel-top-main-202607
.ariel-top-demo-concept-inner-202607 > a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.ariel-top-main-202607
.ariel-top-demo-button-blue-202607,
.ariel-top-main-202607
.ariel-top-demo-more-202607,
.ariel-top-main-202607
.ariel-top-demo-final-phone-202607,
.ariel-top-main-202607
.ariel-top-demo-concept-inner-202607 > a {
  border:
    1px solid
    rgb(2 175 206 / 58%);
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      rgb(248 254 255) 46%,
      rgb(239 251 255) 100%
    );
  color: #02afce;
}

.ariel-top-main-202607
.ariel-top-demo-button-line-202607,
.ariel-top-main-202607
.ariel-top-demo-final-line-202607 {
  border:
    1px solid
    rgb(67 191 180 / 72%);
  background:
    linear-gradient(
      180deg,
      #68d4ca 0%,
      #43bfb4 52%,
      #31aea5 100%
    );
  color: #ffffff;
}

.ariel-top-main-202607
.ariel-top-demo-diary-grid-202607 {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 5px;
}

.ariel-top-main-202607
.ariel-top-demo-diary-grid-202607 > a {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.18;
  background: rgb(241 249 251);
  color: #ffffff;
  text-decoration: none;
}

.ariel-top-main-202607
.ariel-top-demo-diary-grid-202607 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ariel-top-main-202607
.ariel-top-demo-diary-grid-202607 > a::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background:
    linear-gradient(
      180deg,
      transparent,
      rgb(18 39 47 / 72%)
    );
}

.ariel-top-main-202607
.ariel-top-demo-diary-grid-202607 > a > span {
  position: absolute;
  z-index: 2;
  top: 6px;
  left: 6px;
  padding: 3px 6px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 8px;
  font-weight: 700;
}

.ariel-top-main-202607
.ariel-top-demo-diary-grid-202607 .is-new {
  background:
    rgb(230 125 173 / 92%);
}

.ariel-top-main-202607
.ariel-top-demo-diary-grid-202607 .is-oshi {
  background:
    rgb(67 191 180 / 94%);
}

.ariel-top-main-202607
.ariel-top-demo-diary-grid-202607 .is-public {
  background:
    rgb(2 175 206 / 90%);
}

.ariel-top-main-202607
.ariel-top-demo-diary-grid-202607 strong {
  position: absolute;
  z-index: 2;
  right: 7px;
  bottom: 7px;
  left: 7px;
  color: #ffffff;
  font-size: 11px;
}

.ariel-top-main-202607
.ariel-top-demo-more-202607 {
  width: min(100%, 310px);
  margin: 22px auto 0;
}

.ariel-top-main-202607
.ariel-top-demo-review-202607 article {
  position: relative;
  margin: 0;
  padding: 36px 24px 22px;
  border:
    1px solid
    rgb(255 229 242);
  background:
    linear-gradient(
      145deg,
      #ffffff,
      rgb(255 248 252)
    );
}

.ariel-top-main-202607
.ariel-top-demo-review-202607 article > span {
  position: absolute;
  top: 4px;
  left: 18px;
  color:
    rgb(230 125 173 / 30%);
  font-family: Georgia, serif;
  font-size: 62px;
  line-height: 1;
}

.ariel-top-main-202607
.ariel-top-demo-review-202607 article > p {
  position: relative;
  margin: 0;
  color: rgb(62 81 90);
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

.ariel-top-main-202607
.ariel-top-demo-review-202607 footer {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 15px;
  border-top:
    1px solid
    rgb(255 229 242);
}

.ariel-top-main-202607
.ariel-top-demo-review-202607 footer small {
  color: #e67dad;
  font-size: 10px;
  font-weight: 700;
}

.ariel-top-main-202607
.ariel-top-demo-review-202607 footer a {
  color: #02afce;
  font-family:
    "waverly-cf",
    "Times New Roman",
    Georgia,
    serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-decoration: none;
}

.ariel-top-main-202607
.ariel-top-demo-blog-grid-202607 {
  display: grid;
  gap: 12px;
}

.ariel-top-main-202607
.ariel-top-demo-blog-grid-202607 > a {
  display: grid;
  grid-template-columns:
    120px minmax(0, 1fr);
  min-height: 120px;
  overflow: hidden;
  border:
    1px solid
    rgb(202 238 245);
  background: #ffffff;
  color: inherit;
  text-decoration: none;
}

.ariel-top-main-202607
.ariel-top-demo-blog-grid-202607 img {
  display: block;
  width: 120px;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
}

.ariel-top-main-202607
.ariel-top-demo-blog-grid-202607 > a > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 15px;
}

.ariel-top-main-202607
.ariel-top-demo-blog-grid-202607 small {
  color: #02afce;
  font-family:
    "waverly-cf",
    "Times New Roman",
    Georgia,
    serif;
  font-size: 9px;
  letter-spacing: .11em;
}

.ariel-top-main-202607
.ariel-top-demo-blog-grid-202607 h3 {
  margin: 7px 0 10px;
  color: rgb(61 81 89);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.ariel-top-main-202607
.ariel-top-demo-blog-grid-202607 span {
  color: #e67dad;
  font-family:
    "waverly-cf",
    "Times New Roman",
    Georgia,
    serif;
  font-size: 9px;
  letter-spacing: .1em;
}

.ariel-top-main-202607
.ariel-top-demo-final-202607 {
  padding:
    clamp(58px, 8vw, 88px)
    clamp(18px, 5vw, 42px)
    96px;
  border-top:
    1px solid
    rgb(202 238 245);
  background:
    radial-gradient(
      circle at 12% 15%,
      rgb(230 125 173 / 11%),
      transparent 38%
    ),
    radial-gradient(
      circle at 88% 80%,
      rgb(2 175 206 / 10%),
      transparent 42%
    ),
    #ffffff;
  text-align: center;
}

.ariel-top-main-202607
.ariel-top-demo-final-202607 > p {
  margin: 0;
  color: #02afce;
  font-family:
    "waverly-cf",
    "Times New Roman",
    Georgia,
    serif;
  font-size:
    clamp(26px, 5vw, 38px);
  font-weight: 600;
  letter-spacing: .07em;
}

.ariel-top-main-202607
.ariel-top-demo-final-202607 > h2 {
  margin: 10px 0 0;
  color: #e67dad;
  font-size:
    clamp(19px, 3.5vw, 25px);
}

.ariel-top-main-202607
.ariel-top-demo-final-202607 > span {
  display: block;
  margin: 15px auto 0;
  color: rgb(80 101 110);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.9;
}

.ariel-top-main-202607
.ariel-top-demo-final-202607 > div {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 25px auto 0;
}

@media (max-width: 720px) {
  .ariel-top-main-202607
  .ariel-top-demo-course-grid-202607 {
    grid-auto-columns: 84%;
    grid-template-columns: none;
    grid-auto-flow: column;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 9px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .ariel-top-main-202607
  .ariel-top-demo-course-grid-202607::-webkit-scrollbar {
    display: none;
  }

  .ariel-top-main-202607
  .ariel-top-demo-course-card-202607 {
    scroll-snap-align: center;
  }

  .ariel-top-main-202607
  .ariel-top-demo-swipe-202607 {
    display: block;
  }
}

@media (max-width: 520px) {
  .ariel-top-main-202607
  .ariel-top-demo-news-link-202607 {
    grid-template-columns:
      auto
      minmax(0, 1fr);
    gap: 11px;
    min-height: 58px;
    padding:
      9px
      14px;
  }

  .ariel-top-main-202607
  .ariel-top-demo-news-live-202607 {
    font-size: 9px;
    letter-spacing: .09em;
  }

  .ariel-top-main-202607
  .ariel-top-demo-news-marquee-202607,
  .ariel-top-main-202607
  .ariel-top-demo-news-group-202607 > strong {
    font-size: 11px;
  }

  .ariel-top-main-202607
  .ariel-top-demo-news-group-202607 {
    gap: 14px;
    padding:
      0
      20px;
  }

  .ariel-top-main-202607
  .ariel-top-demo-news-link-202607 > small {
    display: none;
  }

  .ariel-top-main-202607
  .ariel-top-demo-section-202607 {
    padding:
      50px
      14px;
  }

  .ariel-top-main-202607
  .ariel-top-demo-course-card-202607,
  .ariel-top-main-202607
  .ariel-top-demo-course-card-202607 > img {
    min-height: 320px;
    height: 320px;
  }

  .ariel-top-main-202607
  .ariel-top-demo-cast-grid-202607 {
    gap: 8px;
  }

  .ariel-top-main-202607
  .ariel-top-demo-cast-buttons-202607,
  .ariel-top-main-202607
  .ariel-top-demo-final-202607 > div {
    grid-template-columns: 1fr;
  }

  .ariel-top-main-202607
  .ariel-top-demo-blog-grid-202607 > a {
    grid-template-columns:
      106px minmax(0, 1fr);
  }

  .ariel-top-main-202607
  .ariel-top-demo-blog-grid-202607 img {
    width: 106px;
  }
}

/* ariel-top-design-demo-202607 END */

/* ariel-top-public-news-ticker-202607 START */

.ariel-top-main-202607
.ariel-top-public-news-202607 {
  display: grid;
  grid-template-columns:
    auto
    minmax(0, 1fr)
    auto;
  gap: 15px;
  align-items: center;
  min-height: 62px;
  padding:
    10px
    20px;
  overflow: hidden;
  border-bottom:
    1px solid
    rgb(202 238 245);
  background:
    linear-gradient(
      90deg,
      rgb(245 253 255) 0%,
      #ffffff 48%,
      rgb(255 247 251) 100%
    );
}

.ariel-top-main-202607
.ariel-top-public-news-live-202607 {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: #e67dad;
  font-family:
    "waverly-cf",
    "Times New Roman",
    Georgia,
    serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .12em;
  white-space: nowrap;
}

.ariel-top-main-202607
.ariel-top-public-news-live-202607 > i {
  display: block;
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e67dad;
  box-shadow:
    0 0 0 4px
    rgb(230 125 173 / 14%);
}

.ariel-top-main-202607
.ariel-top-public-news-window-202607 {
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent 0,
      #000 20px,
      #000 calc(100% - 20px),
      transparent 100%
    );
  mask-image:
    linear-gradient(
      90deg,
      transparent 0,
      #000 20px,
      #000 calc(100% - 20px),
      transparent 100%
    );
}

.ariel-top-main-202607
.ariel-top-public-news-track-202607 {
  display: flex;
  width: max-content;
  will-change: transform;
  animation:
    arielTopPublicNewsTicker202607
    28s
    linear
    infinite;
}

.ariel-top-main-202607
.ariel-top-public-news-group-202607 {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
  align-items: center;
  padding-right: 18px;
  white-space: nowrap;
}

.ariel-top-main-202607
.ariel-top-public-news-group-202607 > a {
  color: rgb(67 88 98);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
  text-decoration: none;
}

.ariel-top-main-202607
.ariel-top-public-news-group-202607 > a:hover,
.ariel-top-main-202607
.ariel-top-public-news-group-202607 > a:focus-visible {
  color: #e67dad;
}

.ariel-top-main-202607
.ariel-top-public-news-group-202607 > i {
  color:
    rgb(230 125 173 / 58%);
  font-size: 7px;
  font-style: normal;
}

.ariel-top-main-202607
.ariel-top-public-news-latest-202607 {
  color: #02afce;
  font-family:
    "waverly-cf",
    "Times New Roman",
    Georgia,
    serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .1em;
  text-decoration: none;
  white-space: nowrap;
}

.ariel-top-main-202607
.ariel-top-public-news-202607:hover
.ariel-top-public-news-track-202607,
.ariel-top-main-202607
.ariel-top-public-news-202607:focus-within
.ariel-top-public-news-track-202607 {
  animation-play-state: paused;
}

@keyframes arielTopPublicNewsTicker202607 {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 520px) {
  .ariel-top-main-202607
  .ariel-top-public-news-202607 {
    grid-template-columns:
      auto
      minmax(0, 1fr);
    gap: 11px;
    min-height: 58px;
    padding:
      9px
      14px;
  }

  .ariel-top-main-202607
  .ariel-top-public-news-live-202607 {
    font-size: 9px;
    letter-spacing: .08em;
  }

  .ariel-top-main-202607
  .ariel-top-public-news-group-202607 {
    gap: 14px;
    padding-right: 14px;
  }

  .ariel-top-main-202607
  .ariel-top-public-news-group-202607 > a {
    font-size: 11px;
  }

  .ariel-top-main-202607
  .ariel-top-public-news-latest-202607 {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ariel-top-main-202607
  .ariel-top-public-news-track-202607 {
    display: block;
    width: 100%;
    animation: none;
    transform: none;
  }

  .ariel-top-main-202607
  .ariel-top-public-news-group-202607 {
    display: block;
    width: 100%;
    padding: 0;
  }

  .ariel-top-main-202607
  .ariel-top-public-news-group-202607:nth-child(2),
  .ariel-top-main-202607
  .ariel-top-public-news-group-202607 > a:not(:first-of-type),
  .ariel-top-main-202607
  .ariel-top-public-news-group-202607 > i {
    display: none;
  }

  .ariel-top-main-202607
  .ariel-top-public-news-group-202607 > a:first-of-type {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* ariel-top-public-news-ticker-202607 END */

/* ariel-top-play-coverflow-202607 START */

.ariel-top-main-202607
.ariel-top-play-style-202607 {
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgb(255 255 255 / 98%) 0%,
      rgb(248 253 255 / 95%) 52%,
      rgb(255 248 252 / 94%) 100%
    );
}

.ariel-top-main-202607
.ariel-top-play-coverflow-shell-202607 {
  position: relative;
  width: 100%;
  margin-top: 28px;
}

.ariel-top-main-202607
.ariel-top-play-coverflow-202607 {
  overflow: visible;
  width: 100%;
  padding:
    22px
    0
    34px;
}

.ariel-top-main-202607
.ariel-top-play-coverflow-202607
.swiper-wrapper {
  align-items: center;
}

.ariel-top-main-202607
.ariel-top-play-coverflow-slide-202607 {
  width: min(60vw, 410px);
  min-width: 270px;
  opacity: .5;
  filter: saturate(.72) brightness(.9);
  transition:
    opacity .45s ease,
    filter .45s ease;
}

.ariel-top-main-202607
.ariel-top-play-coverflow-slide-202607.swiper-slide-active {
  opacity: 1;
  filter: none;
}

.ariel-top-main-202607
.ariel-top-play-coverflow-card-202607 {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: inherit;
  text-decoration: none;
  box-shadow: none;
}

.ariel-top-main-202607
.ariel-top-play-coverflow-card-202607::after {
  content: none;
}

.ariel-top-main-202607
.ariel-top-play-coverflow-card-202607 > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1080 / 1528;
  object-fit: cover;
  border-radius: 10px;
}

.ariel-top-main-202607
.ariel-top-play-coverflow-caption-202607 {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 48px 18px 17px;
  background:
    linear-gradient(
      180deg,
      rgb(255 255 255 / 0%) 0%,
      rgb(255 255 255 / 72%) 46%,
      rgb(255 255 255 / 96%) 100%
    );
  text-align: left;
  border-radius:
    0
    0
    10px
    10px;
}

.ariel-top-main-202607
.ariel-top-play-coverflow-caption-202607 > span {
  display: block;
  color: #02afce;
  font-family:
    "waverly-cf",
    "Times New Roman",
    Georgia,
    serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .13em;
}

.ariel-top-main-202607
.ariel-top-play-coverflow-caption-202607 > h3 {
  margin: 6px 0 0;
  color: #e67dad;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .025em;
}

.ariel-top-main-202607
.ariel-top-play-coverflow-prev-202607,
.ariel-top-main-202607
.ariel-top-play-coverflow-next-202607 {
  position: absolute;
  top: 50%;
  z-index: 12;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgb(2 175 206 / 38%);
  border-radius: 50%;
  background: rgb(255 255 255 / 90%);
  color: #02afce;
  cursor: pointer;
  transform: translateY(-50%);
}

.ariel-top-main-202607
.ariel-top-play-coverflow-prev-202607 {
  left: 2px;
}

.ariel-top-main-202607
.ariel-top-play-coverflow-next-202607 {
  right: 2px;
}

.ariel-top-main-202607
.ariel-top-play-coverflow-prev-202607 > span,
.ariel-top-main-202607
.ariel-top-play-coverflow-next-202607 > span {
  display: block;
  margin-top: -3px;
  font-family: Arial, sans-serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
}

.ariel-top-main-202607
.ariel-top-play-coverflow-prev-202607:focus-visible,
.ariel-top-main-202607
.ariel-top-play-coverflow-next-202607:focus-visible,
.ariel-top-main-202607
.ariel-top-play-coverflow-card-202607:focus-visible,
.ariel-top-main-202607
.ariel-top-play-coverflow-detail-202607:focus-visible {
  outline: 2px solid rgb(2 175 206 / 55%);
  outline-offset: 3px;
}

.ariel-top-main-202607
.ariel-top-play-coverflow-pagination-202607 {
  position: static;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  margin: 0 auto 20px;
}

.ariel-top-main-202607
.ariel-top-play-coverflow-pagination-202607
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: rgb(2 175 206 / 30%);
  opacity: 1;
}

.ariel-top-main-202607
.ariel-top-play-coverflow-pagination-202607
.swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 999px;
  background: #e67dad;
}

.ariel-top-main-202607
.ariel-top-play-coverflow-detail-202607 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 320px);
  min-height: 50px;
  margin: 0 auto;
  padding: 0 20px;
  border: 1px solid rgb(2 175 206 / 55%);
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      rgb(244 253 255) 100%
    );
  color: #02afce;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.ariel-top-main-202607
.ariel-top-play-coverflow-guide-202607 {
  margin: 14px 0 0;
  color: rgb(108 139 149);
  font-family:
    "waverly-cf",
    "Times New Roman",
    Georgia,
    serif;
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .16em;
  text-align: center;
}

@media (max-width: 720px) {
  .ariel-top-main-202607
  .ariel-top-play-coverflow-prev-202607,
  .ariel-top-main-202607
  .ariel-top-play-coverflow-next-202607 {
    display: none;
  }
}

@media (max-width: 520px) {
  .ariel-top-main-202607
  .ariel-top-play-coverflow-shell-202607 {
    margin-top: 20px;
  }

  .ariel-top-main-202607
  .ariel-top-play-coverflow-202607 {
    padding: 14px 0 25px;
  }

  .ariel-top-main-202607
  .ariel-top-play-coverflow-slide-202607 {
    width: 78vw;
    min-width: 248px;
    max-width: 320px;
  }

  .ariel-top-main-202607
  .ariel-top-play-coverflow-card-202607,
  .ariel-top-main-202607
  .ariel-top-play-coverflow-card-202607 > img {
    border-radius: 10px;
  }

  .ariel-top-main-202607
  .ariel-top-play-coverflow-caption-202607 {
    padding: 40px 15px 14px;
    border-radius:
      0
      0
      10px
      10px;
  }

  .ariel-top-main-202607
  .ariel-top-play-coverflow-caption-202607 > h3 {
    font-size: 18px;
  }

  .ariel-top-main-202607
  .ariel-top-play-coverflow-detail-202607 {
    width: min(100%, 290px);
    min-height: 48px;
    font-size: 12px;
  }
}

/* ariel-top-play-coverflow-202607 END */

/* ariel-top-play-mobile-display-fix-202607 START */

.ariel-top-main-202607
.ariel-top-play-coverflow-slide-202607,
.ariel-top-main-202607
.ariel-top-play-coverflow-card-202607,
.ariel-top-main-202607
.ariel-top-play-coverflow-card-202607 > img {
  visibility: visible !important;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

.ariel-top-main-202607
.ariel-top-play-coverflow-card-202607 {
  transform:
    translateZ(0);
  -webkit-transform:
    translateZ(0);
}

.ariel-top-main-202607
.ariel-top-play-coverflow-card-202607 > img {
  opacity: 1 !important;
  transform:
    translateZ(0);
  -webkit-transform:
    translateZ(0);
}

@media (max-width: 520px) {
  .ariel-top-main-202607
  .ariel-top-play-coverflow-shell-202607 {
    min-height:
      clamp(
        370px,
        122vw,
        510px
      );
  }

  .ariel-top-main-202607
  .ariel-top-play-coverflow-202607 {
    display: block !important;
    min-height:
      clamp(
        350px,
        116vw,
        485px
      );
    overflow: visible;
  }

  .ariel-top-main-202607
  .ariel-top-play-coverflow-202607
  .swiper-wrapper {
    min-height:
      clamp(
        350px,
        116vw,
        485px
      );
    align-items: center;
  }

  .ariel-top-main-202607
  .ariel-top-play-coverflow-slide-202607 {
    display: block !important;
    width:
      min(
        74vw,
        300px
      ) !important;
    min-width: 230px;
    max-width: 300px;
    height: auto !important;
    aspect-ratio:
      1080 / 1528;
  }

  .ariel-top-main-202607
  .ariel-top-play-coverflow-card-202607 {
    display: block !important;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    background: transparent;
  }

  .ariel-top-main-202607
  .ariel-top-play-coverflow-card-202607 > img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 1px;
    border-radius: 10px;
    object-fit: cover;
  }
}

/* ariel-top-play-mobile-display-fix-202607 END */

/* ariel-top-play-style-bg-heading-tune-202607 START */

.ariel-top-main-202607
.ariel-top-play-style-202607 {
  background: none !important;
}

.ariel-top-main-202607
#ariel-top-play-style-title-202607 {
  font-size: 14px !important;
  line-height: 1.5;
}

/* ariel-top-play-style-bg-heading-tune-202607 END */

/* ariel-top-cast-real-data-202607 START */

.ariel-top-main-202607
.ariel-top-cast-grid-202607 {
  display: grid;
  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );
  gap: 8px;
}

.ariel-top-main-202607
.ariel-top-cast-card-202607 {
  overflow: hidden;
  min-width: 0;
  border:
    1px solid
    rgb(255 229 242);
  border-radius: 14px;
  background: #ffffff;
}

.ariel-top-main-202607
.ariel-top-cast-card-202607 > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.ariel-top-main-202607
.ariel-top-cast-photo-202607 {
  overflow: hidden;
  width: 100%;
  margin: 0;
  aspect-ratio:
    3 / 4.65;
  background:
    rgb(249 253 255);
}

.ariel-top-main-202607
.ariel-top-cast-photo-202607 > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position:
    center top;
}

.ariel-top-main-202607
.ariel-top-cast-body-202607 {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding:
    13px
    12px
    14px;
  text-align: center;
}

.ariel-top-main-202607
.ariel-top-cast-roman-202607 {
  margin: 0;
  color: #02afce;
  font-family:
    "waverly-cf",
    "Times New Roman",
    Georgia,
    serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .12em;
}

.ariel-top-main-202607
.ariel-top-cast-name-202607 {
  display: flex;
  gap: 5px;
  align-items: baseline;
  justify-content: center;
  margin-top: 7px;
}

.ariel-top-main-202607
.ariel-top-cast-name-202607 > h3 {
  margin: 0;
  color: #e67dad;
  font-family:
    "Noto Sans JP",
    "Zen Kaku Gothic New",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.ariel-top-main-202607
.ariel-top-cast-name-202607 > small {
  color: #e67dad;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.ariel-top-main-202607
.ariel-top-cast-spec-202607 {
  margin:
    5px
    0
    0;
  color: rgb(70 91 99);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
}

.ariel-top-main-202607
.ariel-top-cast-copy-202607 {
  display: -webkit-box;
  overflow: hidden;
  min-height: 3.4em;
  margin:
    9px
    0
    0;
  color: rgb(79 91 97);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ariel-top-main-202607
.ariel-top-cast-status-202607 {
  margin-top: 10px;
  padding:
    9px
    8px
    10px;
  border:
    1px solid
    rgb(2 175 206 / 16%);
  border-radius: 10px;
  background:
    linear-gradient(
      180deg,
      rgb(255 255 255) 0%,
      rgb(249 253 255) 100%
    );
}

.ariel-top-main-202607
.ariel-top-cast-status-label-202607 {
  margin: 0;
  color: #02afce;
  font-family:
    "waverly-cf",
    "Times New Roman",
    Georgia,
    serif;
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .12em;
}

.ariel-top-main-202607
.ariel-top-cast-status-main-202607 {
  margin:
    6px
    0
    0;
  color: rgb(72 93 101);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.ariel-top-main-202607
.ariel-top-cast-status-sub-202607 {
  margin:
    4px
    0
    0;
  color: rgb(110 131 140);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.45;
}

.ariel-top-main-202607
.ariel-top-cast-status-202607.is-guide {
  border-color:
    rgb(230 125 173 / 24%);
  background:
    linear-gradient(
      180deg,
      rgb(255 255 255) 0%,
      rgb(255 246 251) 100%
    );
}

.ariel-top-main-202607
.ariel-top-cast-status-202607.is-guide
.ariel-top-cast-status-label-202607,
.ariel-top-main-202607
.ariel-top-cast-status-202607.is-guide
.ariel-top-cast-status-main-202607 {
  color: #e67dad;
}

.ariel-top-main-202607
.ariel-top-cast-status-202607.is-today {
  border-color:
    rgb(2 175 206 / 20%);
}

.ariel-top-main-202607
.ariel-top-cast-status-202607.is-adjusting {
  border-color:
    rgb(2 175 206 / 13%);
  background:
    linear-gradient(
      180deg,
      rgb(255 255 255) 0%,
      rgb(251 252 253) 100%
    );
}

.ariel-top-main-202607
.ariel-top-cast-status-202607.is-adjusting
.ariel-top-cast-status-main-202607 {
  color: rgb(108 126 135);
}

.ariel-top-main-202607
.ariel-top-cast-link-202607 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 12px;
  padding:
    0
    10px;
  border:
    1px solid
    rgb(2 175 206 / 38%);
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      rgb(244 253 255) 100%
    );
  color: #02afce;
  font-family:
    "Noto Sans JP",
    "Zen Kaku Gothic New",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .02em;
}

.ariel-top-main-202607
.ariel-top-cast-card-202607 > a:focus-visible {
  outline:
    2px solid
    rgb(2 175 206 / 52%);
  outline-offset: -3px;
}

.ariel-top-main-202607
.ariel-top-cast-buttons-202607 {
  display: grid;
  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );
  gap: 10px;
  margin-top: 24px;
}

.ariel-top-main-202607
.ariel-top-cast-buttons-202607 > a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding:
    0
    16px;
  border:
    1px solid
    rgb(2 175 206 / 50%);
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      rgb(244 253 255) 100%
    );
  color: #02afce;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.ariel-top-main-202607
.ariel-top-cast-buttons-202607 > a:first-child {
  border-color:
    rgb(230 125 173 / 52%);
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      rgb(255 246 251) 100%
    );
  color: #e67dad;
}

@media (max-width: 520px) {
  .ariel-top-main-202607
  .ariel-top-cast-grid-202607 {
    gap: 8px 6px;
  }

  .ariel-top-main-202607
  .ariel-top-cast-card-202607 {
    border-radius: 12px;
  }

  .ariel-top-main-202607
  .ariel-top-cast-body-202607 {
    padding:
      11px
      8px
      12px;
  }

  .ariel-top-main-202607
  .ariel-top-cast-name-202607 > h3 {
    font-size: 16px;
  }

  .ariel-top-main-202607
  .ariel-top-cast-spec-202607 {
    font-size: 8px;
  }

  .ariel-top-main-202607
  .ariel-top-cast-copy-202607 {
    font-size: 9px;
  }

  .ariel-top-main-202607
  .ariel-top-cast-status-202607 {
    margin-top: 9px;
    padding:
      8px
      6px
      9px;
  }

  .ariel-top-main-202607
  .ariel-top-cast-status-label-202607 {
    font-size: 7px;
  }

  .ariel-top-main-202607
  .ariel-top-cast-status-main-202607 {
    font-size: 10px;
  }

  .ariel-top-main-202607
  .ariel-top-cast-status-sub-202607 {
    font-size: 9px;
  }

  .ariel-top-main-202607
  .ariel-top-cast-link-202607 {
    min-height: 31px;
    padding:
      0
      6px;
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: 0;
  }

  .ariel-top-main-202607
  .ariel-top-cast-buttons-202607 {
    grid-template-columns:
      1fr;
  }
}

/* ariel-top-cast-real-data-202607 END */

/* ariel-top-cast-title-tune-202607 START */

.ariel-top-main-202607
#ariel-top-cast-title-202607 {
  font-size: 14px !important;
  line-height: 1.5;
}

/* ariel-top-cast-title-tune-202607 END */

/* ariel-top-cast-wide-cards-202607 START */

.ariel-top-main-202607
.ariel-top-cast-real-202607 {
  padding-right: 8px;
  padding-left: 8px;
}

.ariel-top-main-202607
.ariel-top-cast-real-202607
.ariel-top-cast-grid-202607 {
  column-gap: 6px;
  row-gap: 10px;
}

@media (max-width: 520px) {
  .ariel-top-main-202607
  .ariel-top-cast-real-202607 {
    padding-right: 6px;
    padding-left: 6px;
  }

  .ariel-top-main-202607
  .ariel-top-cast-real-202607
  .ariel-top-cast-grid-202607 {
    column-gap: 4px;
    row-gap: 8px;
  }
}

/* ariel-top-cast-wide-cards-202607 END */

/* ariel-top-cast-outer-radius-202607 START */

.ariel-top-main-202607
.ariel-top-cast-card-202607 {
  border-radius: 10px !important;
  overflow: hidden;
}

@media (max-width: 520px) {
  .ariel-top-main-202607
  .ariel-top-cast-card-202607 {
    border-radius: 10px !important;
  }
}

/* ariel-top-cast-outer-radius-202607 END */

/* ariel-top-cast-background-none-202607 START */

.ariel-top-main-202607
.ariel-top-cast-real-202607 {
  background: none !important;
  background-image: none !important;
  background-color: transparent !important;
}

/* ariel-top-cast-background-none-202607 END */

/* ariel-top-photo-diary-reference-202607 START */

.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607 {
  padding-right: 0 !important;
  padding-left: 0 !important;
  background: none !important;
  background-image: none !important;
  background-color: transparent !important;
}

.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607
> .ariel-top-demo-heading-202607 {
  padding-right: 15px;
  padding-left: 15px;
}

.ariel-top-main-202607
#ariel-top-photo-diary-title-202607 {
  font-size: 14px !important;
  line-height: 1.5;
}

.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607
.ariel-diary-ig-grid-202607 {
  display: grid !important;
  grid-template-columns:
    repeat(
      3,
      minmax(0, 1fr)
    ) !important;
  gap: 2px !important;
  margin-top: 24px;
  background: #ffffff !important;
}

.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607
.ariel-diary-ig-item-202607 {
  min-width: 0 !important;
  background: #ffffff !important;
}

.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607
.ariel-diary-ig-button-202607 {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: #f3f4f6 !important;
  color: inherit;
  text-decoration: none;
  box-shadow: none !important;
  appearance: none;
}

.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607
.ariel-diary-ig-thumb-202607 {
  display: block;
  aspect-ratio: 1 / 1 !important;
  background: #eef2f5 !important;
}

.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607
.ariel-diary-ig-thumb-202607 > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center !important;
}

.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607
.ariel-diary-ig-item-202607.is-favorite-locked-202607
.ariel-diary-ig-thumb-202607 > img {
  filter:
    blur(12px)
    saturate(.45)
    brightness(.70) !important;
  transform:
    scale(1.14) !important;
}

.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607
.ariel-diary-ig-badge-202607 {
  position: absolute;
  top: 7px !important;
  right: 7px !important;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 22px !important;
  padding:
    4px
    8px !important;
  border-radius: 999px !important;
  background:
    rgb(255 255 255 / 94%) !important;
  color: #02afce !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: .02em !important;
  box-shadow:
    0
    2px
    8px
    rgb(15 23 42 / 8%) !important;
}

.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607
.ariel-diary-ig-item-202607.is-favorite-locked-202607
.ariel-diary-ig-badge-202607 {
  background:
    linear-gradient(
      135deg,
      rgb(230 125 173 / 96%),
      rgb(216 106 159 / 96%)
    ) !important;
  color: #ffffff !important;
}

.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607
.ariel-diary-ig-overlay-202607 {
  position: absolute;
  inset:
    auto
    0
    0;
  z-index: 2;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: space-between;
  padding:
    24px
    7px
    7px !important;
  background:
    linear-gradient(
      180deg,
      rgb(15 23 42 / 0%),
      rgb(15 23 42 / 55%)
    ) !important;
  color: #ffffff;
}

.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607
.ariel-diary-ig-overlay-202607 > strong,
.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607
.ariel-diary-ig-overlay-202607 > time {
  display: block;
  min-width: 0;
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 900;
  line-height: 1.2;
  text-shadow:
    0
    1px
    3px
    rgb(0 0 0 / 45%) !important;
}

.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607
.ariel-diary-ig-overlay-202607 > strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607
.ariel-diary-ig-button-202607:focus-visible {
  outline:
    2px solid
    rgb(2 175 206 / 52%);
  outline-offset: -2px;
}

.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607
.ariel-top-photo-diary-more-202607 {
  display: flex;
  align-items: center;
  justify-content: center;
  width:
    min(
      calc(100% - 30px),
      320px
    );
  min-height: 49px;
  margin:
    24px
    auto
    0;
  padding:
    0
    18px;
  border:
    1px solid
    rgb(2 175 206 / 52%);
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      rgb(244 253 255) 100%
    );
  color: #02afce;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}

@media (max-width: 520px) {
  .ariel-top-main-202607
  .ariel-top-photo-diary-reference-202607
  .ariel-diary-ig-grid-202607 {
    gap: 1px !important;
    margin-top: 20px;
  }

  .ariel-top-main-202607
  .ariel-top-photo-diary-reference-202607
  .ariel-top-photo-diary-more-202607 {
    width:
      min(
        calc(100% - 30px),
        290px
      );
    min-height: 47px;
    font-size: 11px;
  }
}

/* ariel-top-photo-diary-reference-202607 END */

/* ariel-top-photo-diary-time-tune-202607 START */

.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607
.ariel-diary-ig-overlay-202607 > strong {
  flex: 1 1 auto;
  min-width: 0;
}

.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607
.ariel-diary-ig-overlay-202607 > time {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .ariel-top-main-202607
  .ariel-top-photo-diary-reference-202607
  .ariel-diary-ig-overlay-202607 {
    gap: 4px;
  }

  .ariel-top-main-202607
  .ariel-top-photo-diary-reference-202607
  .ariel-diary-ig-overlay-202607 > time {
    font-size: 9px !important;
  }
}

/* ariel-top-photo-diary-time-tune-202607 END */

/* ariel-top-photo-diary-overlay-align-fix-202607 START */

.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607
.ariel-diary-ig-overlay-202607 {
  display: flex !important;
  width: 100% !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  text-align: left !important;
}

.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607
.ariel-diary-ig-overlay-202607 > strong {
  flex:
    0
    1
    auto !important;
  min-width: 0;
  margin-right: auto !important;
  text-align: left !important;
  line-height: 1 !important;
}

.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607
.ariel-diary-ig-overlay-202607 > time {
  flex:
    0
    0
    auto !important;
  margin-left: auto !important;
  text-align: right !important;
  line-height: 1 !important;
  white-space: nowrap;
}

/* ariel-top-photo-diary-overlay-align-fix-202607 END */

/* ariel-top-photo-diary-font-match-202607 START */

.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607
.ariel-diary-ig-overlay-202607 > strong,
.ariel-top-main-202607
.ariel-top-photo-diary-reference-202607
.ariel-diary-ig-overlay-202607 > time {
  font-family:
    "Noto Sans JP",
    "Zen Kaku Gothic New",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    sans-serif !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 520px) {
  .ariel-top-main-202607
  .ariel-top-photo-diary-reference-202607
  .ariel-diary-ig-overlay-202607 > strong {
    font-size: 10px !important;
  }

  .ariel-top-main-202607
  .ariel-top-photo-diary-reference-202607
  .ariel-diary-ig-overlay-202607 > time {
    font-size: 8px !important;
  }
}

/* ariel-top-photo-diary-font-match-202607 END */

/* ariel-top-review-real-202607 START */

.ariel-top-main-202607
.ariel-top-review-real-202607 {
  padding-right: 10px;
  padding-left: 10px;
  background: none !important;
  background-image: none !important;
  background-color: transparent !important;
  font-family:
    "Noto Sans JP",
    "Zen Kaku Gothic New",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    sans-serif;
}

.ariel-top-main-202607
#ariel-top-review-title-202607 {
  font-size: 14px !important;
  line-height: 1.5;
}

.ariel-top-main-202607
.ariel-top-review-real-202607
> .ariel-top-demo-heading-202607 {
  margin-right: 5px;
  margin-left: 5px;
}

.ariel-top-main-202607
.ariel-top-review-card-202607 {
  width: 100%;
  max-width: 520px;
  margin: 18px auto 0;
  overflow: hidden;
  border:
    1px solid
    rgb(2 175 206 / 25%);
  border-radius: 10px;
  background: #ffffff;
  box-sizing: border-box;
}

.ariel-top-main-202607
.ariel-top-review-card-head-202607 {
  display: grid;
  grid-template-columns:
    92px
    minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 12px 12px 11px;
  background: #ffffff;
}

.ariel-top-main-202607
.ariel-top-review-photo-202607 {
  width: 92px;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #fff7fb;
}

.ariel-top-main-202607
.ariel-top-review-photo-202607 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ariel-top-main-202607
.ariel-top-review-head-text-202607 {
  min-width: 0;
}

.ariel-top-main-202607
.ariel-top-review-roman-202607,
.ariel-top-main-202607
.ariel-top-review-mini-label-202607 {
  margin: 0;
  color: #02afce;
  font-family:
    "waverly-cf",
    "Times New Roman",
    Georgia,
    serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .18em;
}

.ariel-top-main-202607
.ariel-top-review-cast-name-202607 {
  margin: 6px 0;
  color: #e67dad;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .04em;
}

.ariel-top-main-202607
.ariel-top-review-cast-name-202607 strong,
.ariel-top-main-202607
.ariel-top-review-cast-name-202607 small {
  color: #e67dad;
}

.ariel-top-main-202607
.ariel-top-review-cast-name-202607 small {
  margin-left: 1px;
  font-size: 13px;
  font-weight: 800;
}

.ariel-top-main-202607
.ariel-top-review-meta-202607,
.ariel-top-main-202607
.ariel-top-review-published-202607 {
  margin: 0;
  color: #111111;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: .03em;
}

.ariel-top-main-202607
.ariel-top-review-body-202607 {
  padding: 15px 15px 16px;
  border-top:
    1px solid
    rgb(2 175 206 / 20%);
  background:
    rgb(251 255 255 / 86%);
  box-sizing: border-box;
}

.ariel-top-main-202607
.ariel-top-review-body-202607 h4 {
  margin: 9px 0;
  color: #111111;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .04em;
}

.ariel-top-main-202607
.ariel-top-review-text-202607 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #000000;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.95;
  letter-spacing: .03em;
  word-break: break-word;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.ariel-top-main-202607
.ariel-top-review-more-202607 {
  display: flex;
  align-items: center;
  justify-content: center;
  width:
    min(
      calc(100% - 20px),
      320px
    );
  min-height: 49px;
  margin: 20px auto 0;
  padding: 0 18px;
  border:
    1px solid
    rgb(2 175 206 / 58%);
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      rgb(248 254 255) 46%,
      rgb(239 251 255) 100%
    );
  color: #02afce;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .06em;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

.ariel-top-main-202607
.ariel-top-review-more-202607:hover,
.ariel-top-main-202607
.ariel-top-review-more-202607:focus-visible {
  border-color:
    rgb(2 175 206 / 76%);
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      rgb(244 253 255) 48%,
      rgb(231 249 255) 100%
    );
}

@media (max-width: 520px) {
  .ariel-top-main-202607
  .ariel-top-review-real-202607 {
    padding-right: 8px;
    padding-left: 8px;
  }

  .ariel-top-main-202607
  .ariel-top-review-card-head-202607 {
    grid-template-columns:
      82px
      minmax(0, 1fr);
    gap: 11px;
    padding: 11px;
  }

  .ariel-top-main-202607
  .ariel-top-review-photo-202607 {
    width: 82px;
  }

  .ariel-top-main-202607
  .ariel-top-review-cast-name-202607 {
    font-size: 18px;
  }

  .ariel-top-main-202607
  .ariel-top-review-meta-202607,
  .ariel-top-main-202607
  .ariel-top-review-published-202607 {
    font-size: 11px;
  }

  .ariel-top-main-202607
  .ariel-top-review-body-202607 {
    padding: 14px 14px 15px;
  }

  .ariel-top-main-202607
  .ariel-top-review-more-202607 {
    width:
      min(
        calc(100% - 20px),
        290px
      );
    min-height: 47px;
    font-size: 11px;
  }
}

/* ariel-top-review-real-202607 END */

/* ariel-top-review-count-202607 START */

.ariel-top-main-202607
.ariel-top-review-count-202607 {
  display: flex;
  width: 160px;
  min-height: 48px;
  margin: 12px auto 0;
  padding: 8px 13px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border:
    1px solid
    rgb(2 175 206 / 20%);
  border-radius: 10px;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f5fcff 100%
    );
  box-sizing: border-box;
}

.ariel-top-main-202607
.ariel-top-review-count-202607 > span {
  color: #02afce;
  font-family:
    "Noto Sans JP",
    "Zen Kaku Gothic New",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.ariel-top-main-202607
.ariel-top-review-count-202607 > p {
  display: flex;
  margin: 0;
  align-items: baseline;
  gap: 2px;
}

.ariel-top-main-202607
.ariel-top-review-count-202607 strong {
  color: #e67dad;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.ariel-top-main-202607
.ariel-top-review-count-202607 small {
  color: #e67dad;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

/* ariel-top-review-count-202607 END */

/* ariel-top-official-blog-real-202607 START */

.ariel-top-main-202607
.ariel-top-official-blog-real-202607 {
  padding-right: 10px;
  padding-left: 10px;
  background: none !important;
  background-image: none !important;
  background-color: transparent !important;
  font-family:
    "Noto Sans JP",
    "Zen Kaku Gothic New",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    sans-serif;
}

.ariel-top-main-202607
.ariel-top-official-blog-real-202607
> .ariel-top-demo-heading-202607 {
  margin-right: 5px;
  margin-left: 5px;
}

.ariel-top-main-202607
#ariel-top-official-blog-title-202607 {
  font-size: 14px !important;
  line-height: 1.5;
}

.ariel-top-main-202607
.ariel-top-blog-manager-202607 {
  display: grid;
  grid-template-columns:
    78px
    minmax(0, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 520px;
  margin: 18px auto 0;
  padding: 13px;
  align-items: center;
  border:
    1px solid
    rgb(211 239 245);
  border-radius: 10px;
  background:
    rgb(255 255 255 / 94%);
  box-sizing: border-box;
}

.ariel-top-main-202607
.ariel-top-blog-manager-icon-202607 {
  width: 78px;
  height: 78px;
  margin: 0;
}

.ariel-top-main-202607
.ariel-top-blog-manager-icon-202607 img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  background: #ffffff;
}

.ariel-top-main-202607
.ariel-top-blog-manager-body-202607 {
  min-width: 0;
}

.ariel-top-main-202607
.ariel-top-blog-manager-body-202607 > p {
  margin: 0 0 5px;
  color: #e67dad;
  font-family:
    "waverly-cf",
    "Times New Roman",
    Georgia,
    serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .14em;
}

.ariel-top-main-202607
.ariel-top-blog-manager-body-202607 h3 {
  margin: 0;
  color: #334a55;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .04em;
}

.ariel-top-main-202607
.ariel-top-blog-manager-body-202607 > span {
  display: block;
  margin-top: 5px;
  color: #65747c;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
}

.ariel-top-main-202607
.ariel-top-blog-count-202607 {
  display: flex;
  margin: 13px auto 14px;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.ariel-top-main-202607
.ariel-top-blog-count-202607 > span {
  color: #e67dad;
  font-family:
    "waverly-cf",
    "Times New Roman",
    Georgia,
    serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}

.ariel-top-main-202607
.ariel-top-blog-count-202607 > strong {
  display: inline-flex;
  min-height: 30px;
  padding: 0 14px;
  align-items: center;
  justify-content: center;
  border:
    1px solid
    rgb(211 239 245);
  border-radius: 999px;
  background:
    rgb(255 255 255 / 94%);
  color: #334a55;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .05em;
}

.ariel-top-main-202607
.ariel-top-blog-list-202607 {
  display: grid;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  gap: 11px;
}

.ariel-top-main-202607
.ariel-top-blog-card-202607 {
  overflow: hidden;
  border:
    1px solid
    rgb(255 229 242);
  border-radius: 10px;
  background:
    rgb(255 255 255 / 94%);
}

.ariel-top-main-202607
.ariel-top-blog-card-link-202607 {
  display: grid;
  grid-template-columns:
    118px
    minmax(0, 1fr);
  min-height: 118px;
  color: inherit;
  text-decoration: none;
}

.ariel-top-main-202607
.ariel-top-blog-thumb-202607 {
  min-width: 0;
  margin: 0;
  border-right:
    1px solid
    rgb(234 246 249);
  background: #f7fbfd;
}

.ariel-top-main-202607
.ariel-top-blog-thumb-202607 img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 118px;
  object-fit: cover;
}

.ariel-top-main-202607
.ariel-top-blog-card-body-202607 {
  display: flex;
  min-width: 0;
  padding: 12px 13px;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.ariel-top-main-202607
.ariel-top-blog-meta-202607 {
  display: flex;
  margin-bottom: 7px;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.ariel-top-main-202607
.ariel-top-blog-meta-202607 span,
.ariel-top-main-202607
.ariel-top-blog-meta-202607 time {
  display: inline-flex;
  min-height: 20px;
  padding: 0 8px;
  align-items: center;
  justify-content: center;
  border:
    1px solid
    rgb(211 239 245);
  border-radius: 999px;
  background: #ffffff;
  color: #02a5c2;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
}

.ariel-top-main-202607
.ariel-top-blog-card-body-202607 h3 {
  margin: 0;
  overflow: hidden;
  color: #334a55;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: .03em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ariel-top-main-202607
.ariel-top-blog-card-body-202607 > p {
  display: -webkit-box;
  margin: 6px 0 0;
  overflow: hidden;
  color: #65747c;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ariel-top-main-202607
.ariel-top-blog-read-202607 {
  display: inline-flex;
  margin-top: 7px;
  align-items: center;
  color: #e67dad;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .05em;
}

.ariel-top-main-202607
.ariel-top-blog-more-202607 {
  display: flex;
  width:
    min(
      calc(100% - 20px),
      320px
    );
  min-height: 49px;
  margin: 20px auto 0;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border:
    1px solid
    rgb(2 175 206 / 58%);
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      rgb(248 254 255) 46%,
      rgb(239 251 255) 100%
    );
  color: #02afce;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .06em;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

.ariel-top-main-202607
.ariel-top-blog-more-202607:hover,
.ariel-top-main-202607
.ariel-top-blog-more-202607:focus-visible {
  border-color:
    rgb(2 175 206 / 76%);
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      rgb(244 253 255) 48%,
      rgb(231 249 255) 100%
    );
}

@media (max-width: 520px) {
  .ariel-top-main-202607
  .ariel-top-official-blog-real-202607 {
    padding-right: 8px;
    padding-left: 8px;
  }

  .ariel-top-main-202607
  .ariel-top-blog-manager-202607 {
    grid-template-columns:
      68px
      minmax(0, 1fr);
    gap: 11px;
    padding: 11px;
  }

  .ariel-top-main-202607
  .ariel-top-blog-manager-icon-202607 {
    width: 68px;
    height: 68px;
  }

  .ariel-top-main-202607
  .ariel-top-blog-manager-body-202607 h3 {
    font-size: 14px;
  }

  .ariel-top-main-202607
  .ariel-top-blog-manager-body-202607 > span {
    font-size: 10px;
  }

  .ariel-top-main-202607
  .ariel-top-blog-card-link-202607 {
    grid-template-columns:
      104px
      minmax(0, 1fr);
    min-height: 108px;
  }

  .ariel-top-main-202607
  .ariel-top-blog-thumb-202607 img {
    min-height: 108px;
  }

  .ariel-top-main-202607
  .ariel-top-blog-card-body-202607 {
    padding: 10px 11px;
  }

  .ariel-top-main-202607
  .ariel-top-blog-card-body-202607 h3 {
    font-size: 12px;
  }

  .ariel-top-main-202607
  .ariel-top-blog-card-body-202607 > p {
    font-size: 9px;
  }

  .ariel-top-main-202607
  .ariel-top-blog-more-202607 {
    width:
      min(
        calc(100% - 20px),
        290px
      );
    min-height: 47px;
    font-size: 11px;
  }
}

/* ariel-top-official-blog-real-202607 END */

/* ariel-top-contents-menu-top-border-remove-202607 START */
.ariel-top-main-202607
.ariel-base-standard-bg-only-202607
> section.center-contents-menu-section#contents-menu {
  border-top: 0 !important;
}
/* ariel-top-contents-menu-top-border-remove-202607 END */


/* ariel-top-official-blog-bottom-line-off-202607 START */
.ariel-top-main-202607
#official-blog.ariel-top-demo-section-202607 {
  border-bottom: 0 !important;
}
/* ariel-top-official-blog-bottom-line-off-202607 END */

/* ariel-top-member-limited-gap-zero-20260713 START */
/*
  TOP中央コンテンツ末尾とMEMBER LIMITED間の外側余白だけを削除。
  CONTENTS MENU内部の余白・背景・カード・青線には触れない。
*/
html body .main-story.ariel-center-v1.ariel-top-main-202607 {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
/* ariel-top-member-limited-gap-zero-20260713 END */

/* ariel-top-managed-event-slides-202607 START */
.ariel-top-managed-slide-202607 {
  background: #ffffff;
}

.ariel-top-managed-slide-link-202607 {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  text-decoration: none;
}

.ariel-top-managed-slide-link-202607 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}
/* ariel-top-managed-event-slides-202607 END */

/* ariel-top-slider-full-bleed-square-20260714 START */
/*
  TOP中央スライダー：
  管理画面登録の960×960px画像を1:1で表示する。

  上・左右の余白をなくし、画像をスライダー全面へ表示。
  LIVE UPDATE以降のセクションには影響させない。
*/

html body
.main-story.ariel-center-v1.ariel-top-main-202607
.ariel-top-hero {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

html body
.main-story.ariel-center-v1.ariel-top-main-202607
.ariel-top-hero-swiper {
  display: block;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1 / 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  background: transparent !important;
}

html body
.main-story.ariel-center-v1.ariel-top-main-202607
.ariel-top-hero-swiper
.swiper-wrapper,
html body
.main-story.ariel-center-v1.ariel-top-main-202607
.ariel-top-hero-slide,
html body
.main-story.ariel-center-v1.ariel-top-main-202607
.ariel-top-managed-slide-202607,
html body
.main-story.ariel-center-v1.ariel-top-main-202607
.ariel-top-managed-slide-link-202607 {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  background: transparent !important;
}

html body
.main-story.ariel-center-v1.ariel-top-main-202607
.ariel-top-hero-slide img,
html body
.main-story.ariel-center-v1.ariel-top-main-202607
.ariel-top-managed-slide-link-202607 img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 0 !important;
  background: transparent !important;
}

@media screen and (max-width: 520px) {
  html body
  .main-story.ariel-center-v1.ariel-top-main-202607
  .ariel-top-hero-swiper {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
  }
}
/* ariel-top-slider-full-bleed-square-20260714 END */

/* ariel-top-manual-hero-slider-202607 START */

html body
.main-story.ariel-center-v1.ariel-top-main-202607
.ariel-top-hero-swiper.ariel-top-manual-ready-202607 {
  display: block !important;
  overflow: hidden !important;
}

html body
.main-story.ariel-center-v1.ariel-top-main-202607
.ariel-top-hero-swiper.ariel-top-manual-ready-202607
.swiper-wrapper {
  display: flex !important;
  width: 100% !important;
  height: 100% !important;
  align-items: stretch !important;
  transition-property: transform !important;
  transition-duration: 700ms;
  transition-timing-function: ease;
  will-change: transform;
}

html body
.main-story.ariel-center-v1.ariel-top-main-202607
.ariel-top-hero-swiper.ariel-top-manual-ready-202607
.ariel-top-hero-slide {
  display: block !important;
  flex: 0 0 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
}

html body
.main-story.ariel-center-v1.ariel-top-main-202607
.ariel-top-hero-swiper.ariel-top-manual-ready-202607
.ariel-top-managed-slide-link-202607 {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

html body
.main-story.ariel-center-v1.ariel-top-main-202607
.ariel-top-hero-swiper.ariel-top-manual-ready-202607
.ariel-top-managed-slide-link-202607 img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
}

/* ariel-top-manual-hero-slider-202607 END */

/* ariel-top-manual-track-overflow-fix-20260716 START */
/*
  TOPメインスライダー専用。

  表示領域のクリップは
  .ariel-top-hero-swiper 側で行う。

  手動translate3d方式では、wrapperの右側へ並ぶ
  2枚目以降をwrapper自身で切り取らない。
  PLAYスライダーには適用しない。
*/
html body
.main-story.ariel-center-v1.ariel-top-main-202607
.ariel-top-hero-swiper.ariel-top-manual-ready-202607
> .swiper-wrapper {
  overflow: visible !important;
}
/* ariel-top-manual-track-overflow-fix-20260716 END */

/* ariel-top-desktop-mouse-drag-20260716 START */
/*
  TOPメインスライダー限定。
  PCではマウスを押したまま左右へドラッグする。
  PLAYスライダーには適用しない。
*/
@media (hover: hover) and (pointer: fine) {
  html body
  .main-story.ariel-center-v1.ariel-top-main-202607
  .ariel-top-hero-swiper.ariel-top-desktop-drag-ready-202607 {
    cursor: grab;
  }

  html body
  .main-story.ariel-center-v1.ariel-top-main-202607
  .ariel-top-hero-swiper.ariel-top-desktop-drag-ready-202607.is-pointer-dragging {
    cursor: grabbing;
  }
}

html body
.main-story.ariel-center-v1.ariel-top-main-202607
.ariel-top-hero-swiper.ariel-top-desktop-drag-ready-202607
.ariel-top-managed-slide-link-202607,
html body
.main-story.ariel-center-v1.ariel-top-main-202607
.ariel-top-hero-swiper.ariel-top-desktop-drag-ready-202607
.ariel-top-managed-slide-link-202607 img {
  user-select: none !important;
  -webkit-user-select: none !important;
  -webkit-user-drag: none !important;
}
/* ariel-top-desktop-mouse-drag-20260716 END */

/* ariel-top-contents-menu-final-design-20260717 START */
/* TOP中央のCONTENTS MENUだけを完成済み共通デザインへ統一 */

html body
.main-story.ariel-center-v1.ariel-top-main-202607
.ariel-base-standard-bg-only-202607
> section.center-contents-menu-section#contents-menu {
  position: relative !important;
  width: 100% !important;
  margin: 8px auto 0 !important;
  padding: 34px 10px 58px !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;

  background-color: #fff !important;
  background-image:
    linear-gradient(
      45deg,
      rgba(245,252,254,.82) 25%,
      transparent 25%,
      transparent 75%,
      rgba(245,252,254,.82) 75%,
      rgba(245,252,254,.82)
    ),
    linear-gradient(
      45deg,
      rgba(245,252,254,.82) 25%,
      transparent 25%,
      transparent 75%,
      rgba(245,252,254,.82) 75%,
      rgba(245,252,254,.82)
    ) !important;

  background-size: 44px 44px, 44px 44px !important;
  background-position: 0 0, 22px 22px !important;
  background-repeat: repeat !important;
}

html body
.main-story.ariel-center-v1.ariel-top-main-202607
#contents-menu::before,

html body
.main-story.ariel-center-v1.ariel-top-main-202607
#contents-menu::after {
  content: none !important;
  display: none !important;
}

html body
.main-story.ariel-center-v1.ariel-top-main-202607
#contents-menu .center-contents-menu-grid {
  position: relative !important;
  z-index: 2 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

html body
.main-story.ariel-center-v1.ariel-top-main-202607
#contents-menu .center-contents-menu-card,

html body
.main-story.ariel-center-v1.ariel-top-main-202607
#contents-menu .center-contents-menu-card:nth-child(n),

html body
.main-story.ariel-center-v1.ariel-top-main-202607
#contents-menu .center-contents-menu-card:last-child {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  grid-column: auto !important;
  grid-row: auto !important;

  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 82px !important;

  margin: 0 !important;
  padding: 10px 4px !important;

  border: 1px solid rgba(2,175,206,.42) !important;
  border-radius: 10px !important;

  background: rgba(255,255,255,.18) !important;
  box-shadow: none !important;

  text-align: center !important;
  text-decoration: none !important;
  overflow: hidden !important;
}

html body
.main-story.ariel-center-v1.ariel-top-main-202607
#contents-menu .center-contents-menu-card::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 6px !important;
  z-index: 1 !important;

  border: 1px solid rgba(2,175,206,.22) !important;
  border-radius: 7px !important;

  background: transparent !important;
  box-shadow: none !important;
  pointer-events: none !important;
}

html body
.main-story.ariel-center-v1.ariel-top-main-202607
#contents-menu .center-contents-menu-card::after {
  content: none !important;
  display: none !important;
}

html body
.main-story.ariel-center-v1.ariel-top-main-202607
#contents-menu .center-contents-menu-card em {
  position: relative !important;
  z-index: 2 !important;
  display: block !important;

  margin: 0 0 6px !important;
  color: #02afce !important;

  font-family:
    "waverly-cf",
    "Times New Roman",
    Georgia,
    serif !important;

  font-size: 13px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: .08em !important;
}

html body
.main-story.ariel-center-v1.ariel-top-main-202607
#contents-menu .center-contents-menu-card strong {
  position: relative !important;
  z-index: 2 !important;
  display: block !important;

  margin: 0 !important;
  color: #333 !important;

  font-family:
    "Noto Sans JP",
    "Zen Kaku Gothic New",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    sans-serif !important;

  font-size: 13px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  letter-spacing: .01em !important;
}

@media (max-width: 520px) {
  html body
  .main-story.ariel-center-v1.ariel-top-main-202607
  .ariel-base-standard-bg-only-202607
  > section.center-contents-menu-section#contents-menu {
    padding: 30px 10px 48px !important;
  }

  html body
  .main-story.ariel-center-v1.ariel-top-main-202607
  #contents-menu .center-contents-menu-grid {
    gap: 6px !important;
  }

  html body
  .main-story.ariel-center-v1.ariel-top-main-202607
  #contents-menu .center-contents-menu-card {
    min-height: 78px !important;
    padding: 9px 3px !important;
  }

  html body
  .main-story.ariel-center-v1.ariel-top-main-202607
  #contents-menu .center-contents-menu-card em {
    margin-bottom: 5px !important;
    font-size: 10px !important;
    letter-spacing: .06em !important;
  }

  html body
  .main-story.ariel-center-v1.ariel-top-main-202607
  #contents-menu .center-contents-menu-card strong {
    font-size: 11px !important;
    line-height: 1.28 !important;
  }
}
/* ariel-top-contents-menu-final-design-20260717 END */

/* ariel-top-contents-menu-10-cards-202607 START */

/*
 * TOPコンテンツメニュー
 * PC：5列×2段
 * スマホ：2列×5段
 */
#contents-menu
.center-contents-menu-grid {
  grid-template-columns:
    repeat(
      5,
      minmax(0, 1fr)
    ) !important;
}

#contents-menu
.center-contents-menu-grid
> .center-contents-menu-card,
#contents-menu
.center-contents-menu-grid
> .center-contents-menu-card:last-child {
  grid-column: auto !important;

  width: auto !important;
  max-width: none !important;

  justify-self: stretch !important;
}

@media (max-width: 767px) {
  #contents-menu
  .center-contents-menu-grid {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      ) !important;
  }

  #contents-menu
  .center-contents-menu-grid
  > .center-contents-menu-card,
  #contents-menu
  .center-contents-menu-grid
  > .center-contents-menu-card:last-child {
    grid-column: auto !important;

    width: auto !important;
    max-width: none !important;

    justify-self: stretch !important;
  }
}

/* ariel-top-contents-menu-10-cards-202607 END */

/* ariel-top-favorite-badge-color-202607 START */
.ariel-top-photo-diary-reference-202607
.ariel-diary-ig-badge-202607.is-favorite-202607 {
  background: #e67dad !important;
  background-image: none !important;
  border-color: #e67dad !important;
  color: #ffffff !important;
  text-shadow: none !important;
  box-shadow:
    0 4px 12px rgba(230, 125, 173, 0.34) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
/* ariel-top-favorite-badge-color-202607 END */
