@charset "UTF-8";
/** Colors */
/** Text */
/** Fonts */
/** Break Points */
header {
  font-family: sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
  color: #2c2d25;
}
header svg {
  vertical-align: bottom;
}
header a {
  color: #2c2d25;
  transition: none;
}
header hr {
  margin: 0;
}

.l-header {
  height: 80px;
  border-bottom: 1px solid #eaeae9;
}
@media screen and (max-width: 1295px) {
  .l-header {
    height: 64px;
  }
}
.l-header__inner {
  display: flex;
  align-items: center;
  max-width: 1440px;
  height: 80px;
  margin: 0 auto;
}
@media screen and (max-width: 1295px) {
  .l-header__inner {
    height: 64px;
  }
}

.c-breadcrumb-wrapper--above-footer {
  padding: 14px 0;
  border-top: 1px solid #eaeae9;
}

.c-breadcrumb {
  padding: 2px 0;
}
.c-breadcrumb__list {
  display: flex;
  white-space: nowrap;
}
.c-breadcrumb__item {
  display: flex;
  align-items: center;
}
.c-breadcrumb__item:not(:last-child):after {
  margin-right: 8px;
  margin-left: 8px;
  font-size: 12px;
  content: "/";
}
.c-breadcrumb__item-text {
  font-size: 12px;
}
.c-breadcrumb__item-text[aria-current=page] {
  font-weight: bold;
}

/**
  <hr class="c-divider">
 */
.c-divider {
  display: block;
  height: 1px;
  background: #eaeae9;
  border: none;
}

.c-loading,
.c-loading:before,
.c-loading:after {
  border-radius: 50%;
}

.c-loading {
  position: relative;
  width: 10em;
  height: 10em;
  font-size: 11px;
  color: #fbff00;
  text-indent: -99999em;
  box-shadow: inset 0 0 0 1em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.c-loading--with-margin {
  margin: 40px auto;
}

.c-loading:before,
.c-loading:after {
  position: absolute;
  content: "";
}

.c-loading:before {
  top: -0.1em;
  left: -0.1em;
  width: 5.2em;
  height: 10.2em;
  background: #fbffc7;
  border-radius: 10.2em 0 0 10.2em;
  -webkit-transform-origin: 5.1em 5.1em;
  transform-origin: 5.1em 5.1em;
  -webkit-animation: load2 2s infinite ease 1.5s;
  animation: load2 2s infinite ease 1.5s;
}

.c-loading:after {
  top: -0.1em;
  left: 4.9em;
  width: 5.2em;
  height: 10.2em;
  background: #fbffc7;
  border-radius: 0 10.2em 10.2em 0;
  -webkit-transform-origin: 0.1em 5.1em;
  transform-origin: 0.1em 5.1em;
  -webkit-animation: load2 2s infinite ease;
  animation: load2 2s infinite ease;
}

@-webkit-keyframes load2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.c-filled-button {
  --text-color: #ffffff;
  display: inline-block;
  padding: 9px 16px;
  font-size: 16px;
  font-weight: bold;
  color: var(--text-color);
  background: #2c2d25;
  border-radius: 2px;
}
.c-filled-button:hover {
  color: var(--text-color);
}
.c-filled-button--full-width {
  width: 100%;
  text-align: center;
}
.c-filled-button--primary {
  --text-color: #2c2d25;
  background: #fbff00;
}
.c-filled-button--primary:hover {
  background: #e2e500;
}
@media screen and (max-width: 600px) {
  .c-filled-button {
    width: 100%;
    text-align: center;
  }
}

.c-small-filled-button {
  --text-color: #ffffff;
  display: inline-block;
  padding: 8.5px 16px;
  font-size: 14px;
  font-weight: bold;
  color: var(--text-color);
  background: #2c2d25;
  border-radius: 2px;
}
.c-small-filled-button:hover {
  color: var(--text-color);
}
.c-small-filled-button--full-width {
  width: 100%;
  text-align: center;
}
.c-small-filled-button--primary {
  --text-color: #2c2d25;
  background: #fbff00;
}
.c-small-filled-button--primary:hover {
  background: #e2e500;
}
@media screen and (max-width: 600px) {
  .c-small-filled-button {
    width: 100%;
    text-align: center;
  }
}

.c-outlined-button {
  display: inline-block;
  padding: 7.5px 16px;
  font-size: 16px;
  font-weight: bold;
  color: #2c2d25;
  border: 1.5px solid #eaeae9;
  border-radius: 2px;
}
.c-outlined-button:disabled {
  color: #c5c5c5;
  border-color: #f5f5f4;
}
.c-outlined-button--full-width {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .c-outlined-button {
    width: 100%;
    text-align: center;
  }
}

.c-small-outlined-button {
  display: inline-block;
  padding: 7px 16px;
  font-size: 14px;
  font-weight: bold;
  color: #2c2d25;
  border: 1.5px solid #eaeae9;
  border-radius: 2px;
}
.c-small-outlined-button:disabled {
  color: #c5c5c5;
  border-color: #f5f5f4;
}
.c-small-outlined-button--full-width {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .c-small-outlined-button {
    width: 100%;
    text-align: center;
  }
}

.c-text-button {
  display: inline-block;
  font-weight: bold;
}

.c-navigation-button-list {
  display: flex;
  gap: 12px;
}
.c-navigation-button-list__item-button {
  display: block;
  padding: 3.5px 16px;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #eaeae9;
  border-radius: 4px;
}
.c-navigation-button-list__item-button.is-active {
  padding-top: 4.5px;
  padding-bottom: 4.5px;
  color: #ffffff;
  background-color: #2c2d25;
  border: none;
}

.c-page-title {
  font-size: 30px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .c-page-title {
    font-size: 24px;
  }
}
.c-section-sub-title {
  font-size: 18px;
  font-weight: bold;
}

/**
<div class="c-section-sub-title-description">
  <h2 class="c-section-sub-title">セクションサブ見出し</h2>
  <a href="" class="c-section-sub-title-description__description">説明</a>
</div>
 */
.c-section-sub-title-description__description {
  margin-top: 4px;
  font-size: 14px;
  color: #80817c;
}
.c-section-sub-title-description--with-margin-bottom {
  margin-bottom: 16px;
}

@media screen and (max-width: 600px) {
  .c-section-title-button--with-margin-bottom {
    margin-bottom: 8px;
  }
}
.c-section-title {
  font-size: 24px;
  font-weight: bold;
}
.c-section-title--with-margin-bottom {
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .c-section-title {
    font-size: 18px;
  }
  .c-section-title--with-margin-bottom {
    margin-bottom: 8px;
  }
}
/**
<div class="c-section-title-button">
  <div class="c-section-title-button__title-wrapper">
      <h2 class="c-section-title">セクション見出し</h2>
  </div>
  <a href="" class="c-link-button">リンクタイトル</a>
</div>
 */
.c-section-title-button {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}
.c-section-title-button__title-wrapper {
  flex: 1;
}
.c-section-title-button--with-margin-bottom {
  margin-bottom: 12px;
}

@media screen and (max-width: 600px) {
  .c-section-title-button--with-margin-bottom {
    margin-bottom: 8px;
  }
}
.c-tab-link-list-wrapper {
  border-bottom: 1px solid #eaeae9;
}

.c-tab-link-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  white-space: nowrap;
}
.c-tab-link-list__item {
  display: inline-block;
  flex: 0 0 auto;
}
.c-tab-link-list__item.is-active .c-tab-link-list__item-link {
  color: #2c2d25;
}
.c-tab-link-list__item.is-active:after {
  display: block;
  width: 100%;
  height: 4px;
  margin-top: 9px;
  content: "";
  background-color: #2c2d25;
  border-radius: 100vmax;
}
.c-tab-link-list__item-link {
  font-size: 14px;
  font-weight: bold;
  color: #80817c;
}
.c-tab-link-list__item-link:hover {
  color: #80817c;
}

@media screen and (max-width: 768px) {
  .c-tab-link-list {
    gap: 24px;
  }
  .c-tab-link-list__item.is-active:after {
    margin-top: 10.5px;
  }
}
@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes slideOut {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(100%);
  }
}
.p-drawer-menu {
  position: fixed;
  top: 64px;
  z-index: 19;
  display: none;
  width: 100%;
  height: 100%;
}
.p-drawer-menu.is-open {
  display: block;
}
.p-drawer-menu__overlay {
  position: fixed;
  top: 64px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 16;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 45, 37, 0.6);
}
.p-drawer-menu__overlay.is-close {
  background: unset;
}
.p-drawer-menu__container {
  position: absolute;
  top: 0;
  left: 17%;
  width: calc(100% - 17%);
  height: 100%;
  overflow-y: scroll;
  background: #ffffff;
}
.p-drawer-menu[aria-hidden=false] .p-drawer-menu__container {
  animation: slideIn 0.5s cubic-bezier(0.2, 1, 0.22, 1) 0s both;
}
.p-drawer-menu[aria-hidden=true] .p-drawer-menu__container {
  animation: slideOut 0.5s cubic-bezier(0, 0, 0.2, 1) 0s both;
}
.p-drawer-menu__inner {
  width: 100%;
  height: 100%;
}
.p-drawer-menu__navigation {
  padding: 24px 16px;
}
.p-drawer-menu__navigation-button-list-wrapper {
  margin-bottom: 24px;
}
.p-drawer-menu__navigation-button-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-drawer-menu__navigation-heading {
  margin-bottom: 12px;
}
.p-drawer-menu__navigation-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-drawer-menu__navigation-list-item {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22none%22%3E%3Cpath%20fill%3D%22%2380817C%22%20fill-rule%3D%22evenodd%22%20d%3D%22M6.708%203.567a.977.977%200%201%201%201.37-1.393l5.197%205.113a1%201%200%200%201%200%201.426l-5.197%205.113a.977.977%200%201%201-1.37-1.393L11.214%208%206.708%203.567Z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 16px;
}
.p-drawer-menu__navigation-list-item-link {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: bold;
}
.p-drawer-menu__divider-wrapper {
  margin: 24px 0;
}
.p-drawer-menu__age-link-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18.5px;
}

.is-drawer-open {
  overflow: hidden !important;
}

.p-header__inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 32px;
}
.p-header__global-menu-wrapper {
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid #eaeae9;
}
.p-header__global-menu-dropdown.is-active .p-header__global-menu-icon {
  fill: #f5f5f4;
}
.p-header__global-menu-button {
  display: flex;
  align-items: center;
  height: 100%;
}
.p-header__global-menu-icon {
  width: 32px;
  height: 32px;
}
.p-header__global-menu-dropdown-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
}
.p-header__global-menu-dropdown-item {
  padding: 4.5px 8px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
}
.p-header__global-menu-dropdown-item:hover {
  background: #f5f5f4;
}
.p-header__main-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.p-header__logo-and-navigation {
  display: flex;
  gap: 40px;
  align-items: center;
}
.p-header__logo-link {
  display: block;
}
.p-header__logo-sub-text {
  font-size: 10px;
  color: #80817c;
}
.p-header__logo-image {
  display: block;
  height: auto;
}
.p-header__logo-and-service-name {
  display: flex;
  gap: 8px;
  align-items: center;
  height: auto;
}
.p-header__service-name {
  font-size: 12px;
  font-weight: bold;
  color: #80817c;
}
.p-header__navigation-list {
  display: flex;
  gap: 16px;
}
.p-header__navigation-list-item-text {
  font-size: 14px;
  font-weight: bold;
}
.p-header__right-menu {
  display: flex;
  align-items: center;
}
.p-header__age-link-wrapper {
  display: flex;
  gap: 24px;
  align-items: center;
  height: 43px;
  padding-left: 24px;
  margin-left: 24px;
  border-left: 1px solid #eaeae9;
}
.p-header__age-link {
  font-size: 14px;
  font-weight: bold;
  color: #80817c;
}
.p-header__action-list {
  display: flex;
  gap: 24px;
  align-items: center;
}
.p-header__action-list-item--hidden-desktop {
  display: none;
}
.p-header__action-list-item-icon {
  height: auto;
}
.p-header__action-list-item-link {
  display: block;
}
.p-header__action-list-item-user-icon-outer {
  width: 40px;
  height: 40px;
}
.p-header__action-list-item-user-icon-wrapper {
  display: block;
  position: relative;
  padding-top: 100%;
}
.p-header__action-list-item-user-icon-wrapper > :first-child {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-50%);
  object-fit: cover;
}
.p-header__action-list-item-image {
  border-radius: 100vmax;
}
.p-header__notification-button.has-unread {
  position: relative;
}
.p-header__notification-button.has-unread::before {
  position: absolute;
  top: 3px;
  right: 6px;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #de262e;
  border-radius: 100vmax;
}
.p-header__notifications-menu {
  min-width: 21rem;
}
.p-header__notifications-menu-link {
  display: block;
}
.p-header__notifications-menu-link.is-unread {
  background-color: #feffd3;
}
.p-header__notifications-menu-link-html a {
  color: hsl(229deg, 53%, 53%);
}
.p-header__notifications-menu-image-wrapper {
  width: 64px;
  height: 64px;
}
.p-header__notifications-menu-image {
  width: 100%;
  height: 100%;
}
.p-header__dropdown-divider {
  margin: 0;
}

@media screen and (max-width: 1295px) {
  .p-header__global-menu-wrapper {
    padding: 4px;
    margin-right: 8px;
    border-right: unset;
  }
  .p-header__inner {
    padding: 0 16px;
  }
  .p-header__navigation {
    display: none;
  }
  .p-header__logo-image {
    width: 96px;
  }
  .p-header__age-link-wrapper {
    display: none;
  }
  .p-header__action-list {
    gap: 16px;
  }
  .p-header__action-list-item--hidden-mobile {
    display: none;
  }
  .p-header__action-list-item--hidden-desktop {
    display: block;
  }
  .p-header__action-list-item-icon {
    width: 24px;
  }
  .p-header__notification-button.has-unread::before {
    top: 4px;
    right: 2px;
  }
  .p-header__notifications-menu {
    min-width: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .p-header {
    position: fixed;
    top: 0;
    z-index: 16;
    width: 100%;
    height: 64px;
    background: #ffffff;
    transition: top 0.1s ease-in-out;
  }
  .p-header.is-offscreen {
    top: -64px;
  }
  .p-header + * {
    margin-top: 64px;
  }
}
@media screen and (max-width: 600px) {
  .p-header__global-menu-dropdown-menu {
    width: calc(100vw - 32px);
  }
  .p-header__logo-and-service-name {
    gap: 4px;
  }
  .p-header__service-name {
    font-size: 10px;
  }
}
.p-chichi-pui-generated-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 32px;
}
.p-chichi-pui-generated-header__logo-and-navigation {
  display: flex;
  gap: 40px;
  align-items: center;
}
.p-chichi-pui-generated-header__logo-link {
  display: block;
}
.p-chichi-pui-generated-header__logo-text {
  font-size: 22px;
  font-weight: bold;
}
.p-chichi-pui-generated-header__logo-sub-text {
  font-size: 10px;
  color: #80817c;
}
.p-chichi-pui-generated-header__logo-image {
  display: block;
  height: auto;
}
.p-chichi-pui-generated-header__navigation-list {
  display: flex;
  gap: 16px;
}
.p-chichi-pui-generated-header__navigation-list-item-text {
  font-size: 14px;
  font-weight: bold;
}

@media screen and (max-width: 1295px) {
  .p-chichi-pui-generated-header__inner {
    padding: 0 16px;
  }
  .p-chichi-pui-generated-header__logo-and-navigation {
    gap: 22px;
  }
  .p-chichi-pui-generated-header__logo-text {
    font-size: 18px;
  }
}
.p-header-registration-buttons {
  display: none;
}

@media screen and (max-width: 600px) {
  .p-header-registration-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 8px 16px;
  }
}
