/* src/assets/scss/project_25.scss */
:root {
  --color-pink-dark: #E75A7A;
  --color-pink: #E95274;
  --color-pink-light: #E9AEBB;
  --color-gray: #666;
  --color-gray-dark: #D9D9D9;
}
:root {
  --font-noto-sans: "Noto Sans JP", sans-serif;
  --font-noto-serif: "Noto Serif JP", serif;
  --font-neulis: "neulis-sans", sans-serif;
}
.is-accessed .js-switch-lead [data-switch-lead=default] {
  display: none;
}
.js-switch-lead [data-switch-lead=accessed] {
  display: none;
}
.is-accessed .js-switch-lead [data-switch-lead=accessed] {
  display: block;
}
.l-hero img {
  width: 100%;
  height: auto;
}
.l-lead {
  padding-block: 110px;
  text-align: center;
  font-family: var(--font-noto-serif);
  letter-spacing: 0;
  line-height: 2.1;
}
body:not(.is-accessed) .l-lead.is-play [data-effect] {
  opacity: 1;
}
.l-lead [data-effect] {
  transition: opacity 0.8s linear;
}
body:not(.is-accessed) .l-lead [data-effect] {
  opacity: 0;
  transition-delay: var(--delay, 0s);
}
.l-lead p {
  font-size: 20px;
}
.l-lead p:not(:first-child) {
  margin-top: 1em;
}
.l-lead strong {
  font-weight: normal;
  color: var(--color-pink);
}
@media screen and (max-width: 767px) {
  .l-lead {
    padding-block: 40px 0;
    line-height: 2;
  }
  .l-lead p {
    font-size: 14px;
  }
}
.l-lead__logo {
  max-width: 420px;
  margin-top: 80px;
  margin-inline: auto;
}
.l-lead__logo img {
  max-width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .l-lead__logo {
    margin-top: 36px;
  }
  .l-lead__logo img {
    height: 70px;
  }
}
.l-lead__button {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  min-width: 300px;
  height: 80px;
  margin-top: 80px;
  padding: 18px 28px;
  border: 1px solid var(--color-pink);
  border-radius: 40px;
  font-size: 20px;
  font-family: var(--font-noto-serif);
  line-height: 1.1;
  color: var(--color-pink);
  text-align: left;
  box-sizing: border-box;
  transition: 0.2s ease-out;
  transition-property:
    color,
    background-color,
    border-color;
}
.l-lead__button span {
  height: 24px;
  aspect-ratio: 1;
  mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNCAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMgOC4yODUyNkwzLjg2MTQzIDcuNDIzODNMMTIgMTUuNTYyNEwyMC4xMzg2IDcuNDIzODNMMjEgOC4yODUyNkwxMiAxNy4yODUzTDMgOC4yODUyNloiIGZpbGw9IiNFOTUyNzQiLz4KPC9zdmc+Cg==);
  background-color: var(--color-pink);
  transition: background-color 0.2s ease-out;
}
@media (any-hover: hover) {
  .l-lead__button:hover {
    color: #fff;
    background-color: var(--color-pink-light);
    border-color: var(--color-pink-light);
  }
  .l-lead__button:hover span {
    background-color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .l-lead__button {
    margin-top: 42px;
  }
}
.l-index {
  max-width: 1050px;
  margin-inline: auto;
  padding-inline: 25px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .l-index {
    margin-top: 84px;
  }
}
.l-index__heading {
  display: flex;
  width: fit-content;
  align-items: center;
  font-size: 34px;
  font-family: var(--font-noto-serif);
  line-height: 1.76;
  text-align: center;
  margin-inline: auto;
}
.l-index__heading img {
  height: 36px;
  margin-right: 18px;
}
@media screen and (max-width: 767px) {
  .l-index__heading {
    flex-direction: column;
    font-size: 20px;
    line-height: 1.7;
  }
  .l-index__heading img {
    height: 24px;
    margin-right: 0;
    margin-bottom: 7px;
  }
}
.l-index__items {
  counter-reset: anchor-num;
  counter-set: anchor-num;
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-top: 54px;
}
@media screen and (max-width: 767px) {
  .l-index__items {
    gap: 20px 0;
    flex-wrap: wrap;
    margin-top: 28px;
  }
}
.l-index__item {
  display: flex;
  align-items: center;
  width: 100%;
  flex-direction: column;
  counter-increment: anchor-num;
  padding: 17px 27px 24px;
  font-family: var(--font-noto-sans);
  border: 1px solid var(--color-pink);
  border-radius: 20px;
  box-sizing: border-box;
}
.l-index__item::before {
  content: counter(anchor-num);
  color: var(--color-pink);
  font-size: 38px;
  font-family: var(--font-neulis);
  line-height: 1;
  margin-bottom: 3px;
  transition: opacity 0.2s ease-out;
}
@media screen and (max-width: 767px) {
  .l-index__item::before {
    margin-bottom: 14px;
  }
}
@media (any-hover: hover) {
  .l-index__item:hover::before,
  .l-index__item:hover .l-index__item__copy,
  .l-index__item:hover .l-index__item__heading {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .l-index__item {
    width: 100%;
    min-width: 0;
    padding: 24px 20px;
  }
  .l-index__item::before {
    font-size: 36px;
    line-height: 0.6;
  }
}
.l-index__item__copy {
  font-family: var(--font-noto-sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-gray);
  letter-spacing: 0.1em;
  transition: opacity 0.2s ease-out;
}
@media screen and (max-width: 767px) {
  .l-index__item__copy {
    font-size: 14px;
    line-height: 1.61;
    text-align: center;
  }
}
.l-index__item__heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
  font-family: var(--font-neulis);
  font-size: 34px;
  color: var(--color-pink-light);
  line-height: 1;
  margin-top: 18px;
  letter-spacing: 0.03em;
  transition: opacity 0.2s ease-out;
}
.l-index__item__heading img {
  height: 24px;
}
@media screen and (max-width: 767px) {
  .l-index__item__heading {
    flex-direction: column;
    gap: 8px;
    font-size: 28px;
    line-height: 1;
    margin-top: 19px;
    text-align: center;
  }
  .l-index__item__heading img {
    height: 20px;
  }
}
.l-index__item__arrow {
  width: 36px;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .l-index__item__arrow {
    width: 28px;
    margin-top: 11px;
  }
}
.l-content-group {
  counter-reset: num;
  counter-set: num;
  margin-top: 108px;
}
@media screen and (max-width: 767px) {
  .l-content-group {
    margin-top: 70px;
  }
}
.l-content {
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: 32px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .l-content {
    padding-inline: 25px;
  }
  .l-content.-no-side-sp {
    padding-inline: 0;
  }
}
.l-section {
  padding-block: 90px 144px;
  background:
    linear-gradient(
      113deg,
      #F5ECEE 28.41%,
      #F6EFF1 87.09%);
}
@media screen and (max-width: 767px) {
  .l-section {
    padding-block: 56px 84px;
  }
  .l-section.-no-bottom-sp {
    padding-bottom: 0;
  }
}
.l-heading-section {
  display: flex;
  width: fit-content;
  align-items: center;
  flex-direction: column;
  margin-inline: auto;
  counter-increment: num;
}
.l-heading-section::before {
  content: counter(num);
  color: var(--color-pink);
  font-size: 68px;
  font-family: var(--font-neulis);
  margin-bottom: 27px;
  align-self: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-heading-section::before {
    font-size: 42px;
    margin-bottom: 14px;
  }
}
.l-heading-section__sub {
  font-size: 21px;
  font-family: var(--font-noto-sans);
  line-height: 1.31;
  letter-spacing: 0.03em;
  font-weight: 600;
  color: var(--color-gray);
}
@media screen and (max-width: 767px) {
  .l-heading-section__sub {
    font-size: 16px;
  }
}
.l-heading-section__heading {
  font-family: var(--font-neulis);
  font-size: 50px;
  color: var(--color-pink);
  margin-top: 40px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-heading-section__heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 30px;
    margin-top: 28px;
    text-align: center;
    line-height: 1.06;
  }
  .l-heading-section__heading img {
    height: 21px;
  }
}
.l-heading-section__copy {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-noto-sans);
  line-height: 1.66;
  letter-spacing: 0.1em;
  color: var(--color-gray);
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-heading-section__copy {
    font-size: 13px;
    margin-top: 28px;
    line-height: 1.84;
  }
}
.l-section__content {
  margin-top: 80px;
}
.l-section__content img {
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .l-section__content {
    margin-top: 40px;
  }
  .l-section__content img.-sp-full-width {
    width: 100%;
  }
}
.l-about {
  padding-block: 108px;
}
@media screen and (max-width: 767px) {
  .l-about {
    padding-block: 70px;
  }
}
.l-about__header {
  width: fit-content;
  margin-inline: auto;
}
.l-about__logo-chacott {
  text-align: center;
  margin-top: 32px;
}
.l-about__logo-chacott img {
  max-height: 100px;
}
@media screen and (max-width: 767px) {
  .l-about__logo-chacott img {
    max-height: 70px;
  }
}
.l-about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 75px;
  margin-inline: auto;
  font-size: 20px;
  font-family: var(--font-noto-serif);
  color: #000;
  line-height: 2.1;
}
@media screen and (max-width: 767px) {
  .l-about__content {
    font-size: 14px;
    line-height: 2;
    margin-top: 42px;
  }
}
.l-about__logo {
  margin-top: 80px;
}
.l-about__logo img {
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .l-about__logo {
    margin-top: 42px;
  }
  .l-about__logo img {
    height: 70px;
  }
}
.l-dialogue-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  counter-reset: dialogue-num;
  counter-set: dialogue-num;
}
@media screen and (max-width: 767px) {
  .l-dialogue-grid {
    grid-template-columns: 1fr;
  }
}
.o-concept-item {
  padding: 40px 50px;
  border-radius: 30px;
  background:
    linear-gradient(
      0deg,
      #FFF 0%,
      #FFF 100%),
    linear-gradient(
      113deg,
      #EEE2E5 28.41%,
      #F8F5F5 87.09%);
}
.o-concept-item + .o-concept-item {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .o-concept-item + .o-concept-item {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .o-concept-item {
    margin-inline: -10px;
    padding: 30px 15px;
  }
}
.o-concept-item__heading {
  font-size: 24px;
  font-family: var(--font-noto-sans);
  line-height: 1;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--color-gray-dark);
}
@media screen and (max-width: 767px) {
  .o-concept-item__heading {
    font-size: 20px;
    padding-bottom: 24px;
    margin-bottom: 30px;
  }
}
.o-concept-item__content {
  display: flex;
  gap: 40px;
  padding-inline: 30px;
}
@media screen and (max-width: 767px) {
  .o-concept-item__content {
    gap: 28px;
    flex-direction: column;
    padding-inline: 0;
  }
}
.o-concept-item__img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.o-concept-item__img img {
  max-height: 250px;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .o-concept-item__img img {
    max-height: 200px;
  }
}
.o-concept-item__detail {
  flex: 1;
  min-width: 460px;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-noto-sans);
  line-height: 2;
  text-align: center;
  padding-block: 33px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .o-concept-item__detail {
    min-width: 0;
    padding: 0;
    font-size: 14px;
    line-height: 2;
  }
}
.o-concept-item__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 80px;
  padding: 26px 42px;
  gap: 10px;
  color: var(--color-pink);
  font-size: 22px;
  font-family: var(--font-noto-serif);
  line-height: 1;
  border-radius: 40px;
  border: 1px solid var(--color-pink);
  box-sizing: border-box;
  margin-top: 32px;
  margin-inline: auto;
  transition: 0.2s ease-out;
  transition-property:
    color,
    background-color,
    border-color;
}
@media (any-hover: hover) {
  .o-concept-item__button:hover {
    color: #fff;
    background-color: var(--color-pink-light);
    border-color: var(--color-pink-light);
  }
  .o-concept-item__button:hover span {
    background-color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .o-concept-item__button {
    height: 64px;
    font-size: 20px;
    padding: 8px;
  }
}
.o-concept-item__coming-soon {
  color: #C2C3C3;
  font-size: 27px;
  line-height: 2.22;
  font-family: var(--font-noto-serif);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .o-concept-item__coming-soon {
    font-size: 20px;
    line-height: 1.2;
    padding-bottom: 10px;
  }
}
.c-heading-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  font-family: var(--font-noto-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--color-pink);
  line-height: 1;
}
.c-heading-mini::after {
  content: "";
  width: 50px;
  height: 1px;
  background-color: var(--color-gray);
}
@media screen and (max-width: 767px) {
  .c-heading-mini {
    gap: 18px;
    font-size: 24px;
  }
  .c-heading-mini::after {
    width: 32px;
  }
}
.c-dialogue-card {
  --number-width: 65px;
  counter-increment: dialogue-num;
  position: relative;
  display: flex;
  height: auto;
  min-height: 0;
  background: var(--bg-color);
}
.c-dialogue-card > * {
  width: 50%;
}
.c-dialogue-card.-coming-soon {
  pointer-events: none;
  background:
    linear-gradient(
      270deg,
      #FAD5DD 0%,
      #E9AEBB 100%);
}
@media screen and (min-width: 768px) {
  .c-dialogue-card {
    aspect-ratio: 1;
  }
}
@media screen and (max-width: 767px) {
  .c-dialogue-card {
    --number-width: 45px;
    height: 308px;
  }
  .c-dialogue-card:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media (any-hover: hover) {
  .c-dialogue-card:hover .c-dialogue-card__image img {
    opacity: 0.8;
  }
}
.c-dialogue-card__image {
  overflow: hidden;
}
.c-dialogue-card__image img {
  height: 100%;
  object-fit: cover;
  object-position: calc(50% + var(--image-offset-x, 0)) var(--image-offset-y, 0);
  transform: scale(var(--image-scale, 1));
}
.c-dialogue-card__content {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-noto-sans);
  font-size: 18px;
  color: #fff;
  padding-left: calc(var(--number-width) / 2 + 15px);
  padding-right: 15px;
  box-sizing: border-box;
}
.c-dialogue-card__content:first-child:last-child {
  width: 100%;
  flex-direction: column;
  gap: 15px;
}
.c-dialogue-card__content:first-child:last-child .c-dialogue-card__meta,
.c-dialogue-card__content:first-child:last-child .c-dialogue-card__name {
  position: static;
  transform: none;
}
.c-dialogue-card__content:first-child:last-child .c-dialogue-card__name {
  position: static;
  writing-mode: initial;
  line-height: 1.64;
}
@media screen and (max-width: 767px) {
  .c-dialogue-card__content:first-child:last-child {
    gap: 19px;
  }
}
@media screen and (max-width: 767px) {
  .c-dialogue-card__content {
    font-size: 13px;
  }
}
.c-dialogue-card__meta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-dialogue-card__number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 37px;
  font-weight: 600;
  font-family: var(--font-neulis);
  color: var(--num-color, #E9AEBB);
  background-color: #fff;
  width: var(--number-width);
  aspect-ratio: 1;
  line-height: 1;
}
.c-dialogue-card__number::before {
  content: "0" counter(dialogue-num);
}
@media screen and (max-width: 767px) {
  .c-dialogue-card__number {
    font-size: 25px;
  }
}
.c-dialogue-card__name {
  font-size: 18px;
  position: absolute;
  -webkit-writing-mode: sideways-lr;
  writing-mode: vertical-rl;
  transform: scaleY(-1);
  margin-top: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: calc(var(--number-width) - 0.9em);
}
.c-dialogue-card__name span {
  display: inline-flex;
  transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .c-dialogue-card__name {
    font-size: 14px;
  }
}
.c-dialogue-card__text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.94;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-dialogue-card__text {
    font-size: 13px;
    line-height: 1.76;
  }
}
.-coming-soon .c-dialogue-card__text {
  position: absolute;
  font-size: 18px;
  transform: translateY(calc(100% + 0.97em + 15px));
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  .-coming-soon .c-dialogue-card__text {
    font-size: 14px;
    line-height: 1.64;
    transform: translateY(calc(100% + 0.82em + 19.58px));
  }
}
.u-hr {
  display: block;
  border: none;
  height: 1px;
  margin: 0;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .u-hidden-desktop {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-hidden-mobile {
    display: none;
  }
}
/*# sourceMappingURL=project_25.css.map */

.static-contents a {
  text-decoration: none;
}
