@charset "UTF-8";
.main .headline .catch::before, .main .cont .item .image .note::before, .main .headline .catch::after, .main .cont .item .image .note::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.main .headline .catch::before, .main .cont .item .image .note::before {
  margin-bottom: calc((1em - 1lh) / 2);
}
.main .headline .catch::after, .main .cont .item .image .note::after {
  margin-top: calc((1em - 1lh) / 2);
}

.main .headline .ticker, .main .headline .item .num, .main .cont .item .num {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.main {
  overflow: hidden;
}
.main .pageHeader {
  position: relative;
  z-index: 1;
}
.main .pageHeader .image::after {
  top: 0.3rem;
  right: 0.3rem;
}
.main .headline {
  padding: 2.2rem 0 1.4rem;
  position: relative;
  background: #f4f4f1;
  overflow-x: clip;
}
@supports not (overflow: clip) {
  .main .headline {
    overflow-x: hidden;
  }
}
.main .headline .ticker {
  overflow-x: clip;
  overflow-y: visible;
  width: 100%;
  position: absolute;
  top: 1rem;
  right: 0;
  left: 0;
  color: #fff;
  font-size: 0.6rem;
  line-height: 1;
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .main .headline .ticker {
    top: 0.8rem;
  }
}
.main .headline .ticker .inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  /* 1行にする（&nbsp;でも確実に折り返さない） */
  display: inline-block;
}
.main .headline .catch {
  font-size: 0.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6666666667;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .main .headline .catch {
    font-size: 0.36rem;
  }
}
.main .headline p {
  padding: 0.5rem 0 0;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .main .headline p {
    padding: 0.4rem 0 0;
  }
}
.main .headline .item {
  counter-increment: num;
  position: relative;
}
.main .headline .items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
  padding: 0.6rem 0 0;
}
@media screen and (max-width: 750px) {
  .main .headline .items {
    grid-template-columns: 1fr;
    padding: 0 0.4rem;
    gap: 0.6rem;
    margin-top: 0.6rem;
  }
}
@media screen and (max-width: 750px) {
  .main .headline .item {
    display: grid;
    grid-template-columns: 40% auto;
    gap: 0.4rem;
  }
}
.main .headline .item .image img {
  border-radius: 0.1rem;
}
.main .headline .item .num {
  border-radius: 50%;
  background: #d6e077;
  width: 0.8rem;
  aspect-ratio: 1;
  text-align: center;
  place-content: center;
  position: absolute;
  top: -0.3rem;
  left: -0.3rem;
}
@media screen and (max-width: 750px) {
  .main .headline .item .num {
    font-size: 0.18rem;
  }
}
.main .headline .item .num:after {
  content: counter(num);
  display: block;
  text-align: center;
  line-height: 1;
  font-size: 200%;
  position: relative;
  top: -0.07rem;
}
.main .headline .item .text {
  text-align: center;
  line-height: 1.6;
  font-size: 0.21rem;
  padding-top: 0.2rem;
}
@media screen and (max-width: 750px) {
  .main .headline .item .text {
    font-size: 0.3rem;
    text-align: left;
  }
}
.main .headline .item:nth-child(2) .num, .main .headline .item:nth-child(5) .num {
  background: #66bc7b;
}
.main .headline .item:nth-child(3) .num, .main .headline .item:nth-child(6) .num {
  background: #5ac3e9;
}
.main .cont {
  padding: 1.8rem 0;
  position: relative;
}
.main .cont::before {
  content: "";
  display: block;
  width: 13rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: 2rem;
  right: calc(50% - 0.5rem);
  z-index: -1;
  background: #f4f4f1;
  border-radius: 50% 0 50% 50%;
  scale: 0;
  transform-origin: 0 0;
}
@media screen and (max-width: 750px) {
  .main .cont::before {
    width: 7.5rem;
    top: 3rem;
    right: 20%;
  }
}
.main .cont::after {
  content: "";
  display: block;
  width: 13rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: 18rem;
  left: calc(50% - 0.5rem);
  z-index: -1;
  background: #f4f4f1;
  border-radius: 50% 0 50% 50%;
  scale: 0;
  transform-origin: 0 0;
}
@media screen and (max-width: 750px) {
  .main .cont::after {
    width: 7.5rem;
    top: 26rem;
    right: 20%;
  }
}
.main .cont.scrollIn::before, .main .cont.scrollIn:after {
  scale: 1;
  transition: scale 2s 0.4s;
}
.main .cont .item {
  counter-increment: num;
}
.main .cont .items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  padding: 0 0.7rem;
}
@media screen and (max-width: 750px) {
  .main .cont .items {
    padding: 0;
    gap: 1.2rem;
  }
}
@media screen and (min-width: 751px) {
  .main .cont .item {
    display: grid;
    grid-template-columns: auto 7.6rem;
    grid-template-areas: "text image";
    gap: 1rem;
  }
}
@media screen and (max-width: 750px) {
  .main .cont .item {
    position: relative;
  }
}
.main .cont .item .image {
  grid-area: image;
}
.main .cont .item .image img {
  border-radius: 0.1rem;
}
.main .cont .item .image .note {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 0.12rem;
  font-weight: 500;
  line-height: 1.5;
  padding-top: 0.2rem;
}
@media screen and (max-width: 750px) {
  .main .cont .item .image .note {
    font-size: 0.2rem;
    line-height: 1.75;
  }
}
.main .cont .item .text {
  grid-area: text;
}
@media screen and (min-width: 751px) {
  .main .cont .item .text {
    position: relative;
  }
}
.main .cont .item .num {
  border-radius: 50%;
  background: #d6e077;
  width: 0.8rem;
  aspect-ratio: 1;
  text-align: center;
  place-content: center;
  position: relative;
  left: -0.3rem;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 750px) {
  .main .cont .item .num {
    position: absolute;
    top: -0.4rem;
    width: 1.2rem;
  }
}
.main .cont .item .num:after {
  content: counter(num);
  display: block;
  text-align: center;
  line-height: 1;
  font-size: 200%;
  position: relative;
  top: -0.07rem;
}
.main .cont .item .title {
  font-size: 0.35rem;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  .main .cont .item .title {
    font-size: 0.4rem;
    padding-top: 0.4rem;
  }
}
.main .cont .item p {
  padding-top: 0.4rem;
}
.main .cont .item:nth-child(even) {
  grid-template-columns: 7.6rem auto;
  grid-template-areas: "image text";
}
.main .cont .item:nth-child(2) .num, .main .cont .item:nth-child(5) .num {
  background: #66bc7b;
}
.main .cont .item:nth-child(3) .num, .main .cont .item:nth-child(6) .num {
  background: #5ac3e9;
}/*# sourceMappingURL=unique.css.map */