/*====================================================================================
[TABLE OF CONTENT]

1. COMPONENT.
   1.1. TITLE.
   1.2. BOX.
   1.3. HEADING.
   1.4. PANEL.
   1.5. LIST.
   1.6. ITEM.
   1.7. POST.
   1.8. TAG.
   1.9. CARD.
   1.10. GROUP.
   1.11. BOX.
   1.12. TABLE.
2. PROJECT.
   2.1. SLIDER.
3. SECTION MAIN VISUAL.
4. START SECTION TOP ABOUT.
5. START SECTION TOP INFORMATION.

====================================================================================*/
/*====================================================================================
1. COMPONENT.
====================================================================================*/
/*------------------------------------------------------------------------------------
1.1. TITLE.
------------------------------------------------------------------------------------*/
/*---------- TITLE MAIN VISUAL ----------*/
.c-title-mv__text {
  font-family: var(--theme-font-jp-secondary);
  line-height: 1;
  font-weight: 600;
}
.c-title-mv__text.-version-1 {
  display: block;
}
.c-title-mv__text.-version-2 {
  position: relative;
  display: inline-block;
  margin-block-start: var(--spacing-sp-15-pc-35);
}
.c-title-mv__text-main {
  font-weight: 600;
  letter-spacing: 0.05em;
}
.c-title-mv__text-quote {
  position: absolute;
}
.c-title-mv__text-quote.-version-1 {
  inset-block-start: -0.1em;
}

@media only screen and (max-width: 767px) {
  .c-title-mv {
    text-align: center;
  }
  .c-title-mv__text.-version-2 {
    padding-inline: 0.6em;
  }
  .c-title-mv__text-main {
    font-size: clamp(3.5rem, 5.7vw, 5.5rem);
  }
  .c-title-mv__text-sub {
    font-size: clamp(2.2rem, 4vw, 2.6rem);
  }
  .c-title-mv__text-quote {
    font-size: clamp(2rem, 7vw, 4rem);
  }
  .c-title-mv__text-quote.-version-1 {
    inset-inline-start: -0.65em;
  }
  .c-title-mv__text-quote.-version-2 {
    inset-inline-end: -0.65em;
    inset-block-end: -0.1em;
  }
}
@media only screen and (min-width: 768px) {
  .c-title-mv__text.-version-2 {
    padding-inline: 0.8em;
  }
  .c-title-mv__text-main {
    font-size: 6rem;
  }
  .c-title-mv__text-sub {
    font-size: 4rem;
  }
  .c-title-mv__text-quote {
    font-size: 3.9rem;
  }
  .c-title-mv__text-quote.-version-1 {
    inset-inline-start: -0.6em;
  }
  .c-title-mv__text-quote.-version-2 {
    inset-inline-end: -0.65em;
    inset-block-end: -0.2em;
  }
}
/*------------------------------------------------------------------------------------
1.2. BOX.
------------------------------------------------------------------------------------*/
/*---------- LIST BOX MAIN VISUAL ----------*/
.c-list-box-mv {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/*---------- BOX MAIN VISUAL ----------*/
.c-box-mv {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  color: var(--theme-color-secondary);
  line-height: 1.5;
  text-align: center;
  background: url("./../images/common/circle-radial-green.svg") no-repeat center center/100% 100%;
}

@media only screen and (max-width: 575px) {
  .c-box-mv {
    font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  }
}
@media only screen and (min-width: 768px) {
  .c-box-mv {
    font-size: 1.6rem;
  }
}
/*------------------------------------------------------------------------------------
1.3. HEADING.
------------------------------------------------------------------------------------*/
/*---------- HEADING MAIN VISUAL ----------*/
.c-heading-mv {
  margin-inline-start: 0.3rem;
  border-radius: 3rem;
  text-align: center;
  position: relative;
  background-color: var(--theme-color-secondary);
}
.c-heading-mv::before {
  position: absolute;
  content: "";
  inset-block-start: -0.3rem;
  inset-inline-start: -0.3rem;
  width: 100%;
  height: 100%;
  border-radius: 3rem;
  border: 1px solid var(--theme-color-primary);
}
.c-heading-mv__text {
  line-height: 1;
  font-weight: 400;
}
.c-heading-mv__text-main {
  font-weight: 400;
}

@media only screen and (max-width: 575px) {
  .c-heading-mv {
    padding: 0.2rem 1rem 1.1rem 0.5rem;
  }
  .c-heading-mv__text {
    font-size: 1.6rem;
  }
  .c-heading-mv__text-main {
    font-size: 2.3rem;
  }
}
@media only screen and (min-width: 576px) {
  .c-heading-mv {
    padding: 0 1rem 1rem 0.5rem;
  }
  .c-heading-mv__text {
    font-size: 1.8rem;
  }
  .c-heading-mv__text-main {
    font-size: 2.5rem;
  }
}
/*------------------------------------------------------------------------------------
1.4. PANEL.
------------------------------------------------------------------------------------*/
/*---------- LIST PANEL TOP ----------*/
@media only screen and (max-width: 767px) {
  .c-list-panel-top .c-panel-top:not(:first-child) {
    margin-block-start: 6.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-list-panel-top {
    display: flex;
    justify-content: space-between;
  }
  .c-list-panel-top .c-panel-top {
    width: calc(50% - 2rem);
  }
}
/*---------- PANEL TOP ----------*/
.c-panel-top {
  position: relative;
  z-index: 2;
  border-radius: 1.5rem;
  background-color: var(--theme-color-secondary);
  box-shadow: var(--theme-shadow-primary);
}
.c-panel-top__deco {
  inset-inline-start: 0;
  width: 100%;
  text-align: center;
}
.c-panel-top__header {
  position: relative;
  margin-block-start: -1.2rem;
  border-block-end: 1px solid var(--theme-color-fifth);
}
.c-panel-top__header .c-title {
  text-align: center;
}
.c-panel-top__body {
  padding-block-start: 0.5rem;
}
.c-panel-top__footer {
  margin-block-start: var(--spacing-sp-25-pc-30);
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .c-panel-top {
    padding: 0.1rem 2rem 3rem 2rem;
  }
  .c-panel-top__deco {
    inset-block-start: -3.5rem;
  }
  .c-panel-top__deco img {
    height: 3.6rem;
  }
  .c-panel-top__header {
    padding-block-end: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-panel-top {
    margin-block-start: 4.1rem;
    padding: 0 3.5rem 3.5rem 3.5rem;
  }
  .c-panel-top__deco {
    inset-block-start: -4.1rem;
  }
  .c-panel-top__deco img {
    height: 4.2rem;
  }
  .c-panel-top__header {
    padding-block-end: 2.3rem;
  }
}
/*------------------------------------------------------------------------------------
1.5. LIST.
------------------------------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
  .c-list-item-top {
    max-height: 22rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-list-item-top {
    max-height: 18.5rem;
  }
}
/*------------------------------------------------------------------------------------
1.6. ITEM.
------------------------------------------------------------------------------------*/
.c-item-top {
  border-block-end: 1px solid rgba(196, 196, 196, 0.5);
}
.c-item-top__link {
  position: relative;
  padding: 1.5rem 1.2rem 1.5rem 0;
  text-decoration: none;
}
.c-item-top__link::before {
  position: absolute;
  content: "";
  inset-block: 0;
  inset-inline-end: 0;
  width: 0.8rem;
  height: 1.2rem;
  margin-block: auto;
  background-image: url("./../images/common/arrow-right-brown.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
.c-item-top__left {
  font: 500 1.4rem var(--theme-font-jp-tertiary);
  letter-spacing: 0.05em;
}
.c-item-top__right p {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .c-item-top__link {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .c-item-top__link {
    display: flex;
  }
  .c-item-top__link:hover {
    color: var(--theme-color-quaternary);
  }
  .c-item-top__link:hover::before {
    background-image: url("./../images/common/arrow-right-green.webp");
  }
  .c-item-top__left {
    width: 8.6rem;
    padding-block-start: 0.6rem;
  }
  .c-item-top__right {
    flex: 1;
    min-width: 1px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
}
/*------------------------------------------------------------------------------------
1.7. POST.
------------------------------------------------------------------------------------*/
/*---------- LIST POST TOP ----------*/
@media only screen and (max-width: 575px) {
  .c-list-post-top {
    padding-inline: 1rem;
  }
  .c-list-post-top .c-post-top:not(:first-child) {
    margin-block-start: 3.5rem;
  }
}
@media only screen and (min-width: 576px) {
  .c-list-post-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .c-list-post-top {
    margin: -1.5rem;
  }
  .c-list-post-top .c-post-top {
    width: calc(50% - 3rem);
    margin: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-list-post-top {
    margin: -2rem;
  }
  .c-list-post-top .c-post-top {
    width: calc(25% - 4rem);
    margin: 2rem;
  }
}
/*---------- POST TOP ----------*/
.c-post-top .c-tag-top {
  inset-block-start: 0;
}
.c-post-top__header {
  text-align: center;
}
.c-post-top__figure {
  position: relative;
  display: inline-block;
  margin-block-end: 2rem;
  padding-block-start: var(--spacing-sp-20-pc-25);
}
.c-post-top__img {
  width: 100%;
  border-radius: 50%;
  box-shadow: var(--theme-shadow-primary);
}
.c-post-top__desc strong {
  color: var(--theme-color-quaternary);
  font-weight: 600;
}
.c-post-top__btn {
  text-align: center;
}

@media only screen and (max-width: 575px) {
  .c-post-top__btn {
    margin-top: 2.4rem;
  }
}
@media only screen and (min-width: 576px) {
  .c-post-top {
    position: relative;
  }
  .c-post-top__btn {
    position: absolute;
    inset-block-end: 0;
    inset-inline: 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-post-top .c-tag-top {
    inset-inline-start: 0;
  }
  .c-post-top__desc strong {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-post-top .c-tag-top {
    inset-inline-start: -2rem;
  }
  .c-post-top__desc {
    margin-inline: -0.5rem;
    font-size: 1.6rem;
  }
  .c-post-top__desc strong {
    font-size: 2rem;
  }
}
/*------------------------------------------------------------------------------------
1.8. TAG.
------------------------------------------------------------------------------------*/
.c-tag-top {
  position: absolute;
  display: inline-block;
}
.c-tag-top__number {
  color: var(--theme-color-fifth);
  font: 400 6.1rem/1 var(--theme-font-en-primary);
  letter-spacing: 0.05em;
}
.c-tag-top__text {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
}

@media only screen and (max-width: 767px) {
  .c-tag-top {
    padding: 1.6rem 0 0 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-tag-top {
    padding: 1.8rem 0 0 1rem;
  }
}
/*------------------------------------------------------------------------------------
1.9. CARD.
------------------------------------------------------------------------------------*/
/*---------- LIST CARD TOP ----------*/
@media only screen and (max-width: 575px) {
  .c-list-card-top .c-card-top:not(:first-child) {
    margin-block-start: 3rem;
  }
}
@media only screen and (min-width: 576px) {
  .c-list-card-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .c-list-card-top {
    margin: -0.75rem;
  }
  .c-list-card-top .c-card-top {
    width: calc(50% - 1.5rem);
    margin: 0.75rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-list-card-top {
    margin-inline: -1.2rem;
  }
  .c-list-card-top .c-card-top {
    width: calc(33.333% - 2.4rem);
    margin-inline: 1.2rem;
  }
}
/*---------- CARD TOP ----------*/
.c-card-top {
  position: relative;
  z-index: 3;
  overflow: hidden;
  box-shadow: var(--theme-shadow-primary);
  background-color: var(--theme-color-secondary);
}
.c-card-top__header img {
  width: 100%;
}
.c-card-top__body {
  position: relative;
  z-index: 2;
}
.c-card-top__body .c-title {
  margin: -2rem -1rem 1.4rem -1rem;
  text-align: center;
}
.c-card-top__deco {
  inset-block-start: -2.1rem;
  inset-inline-start: 0;
  width: 100%;
  text-align: center;
}
.c-card-top__desc {
  margin-block-end: 1.5rem;
}
.c-card-top__subtitle {
  margin-block-end: 0.5rem;
  font-size: 1.6rem;
  font-weight: 600;
}
.c-card-top__lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-inline: -1rem;
}
.c-card-top__lists .c-list-circle {
  margin-inline: 1rem;
}
.c-card-top__lists .c-list-circle:last-child {
  width: calc(50% - 2rem);
}
.c-card-top__lists .c-list-circle > li:not(:first-child) {
  margin-block-start: 0.4rem;
}
.c-card-top__btn {
  position: absolute;
  inset-inline-start: 0;
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .c-card-top {
    padding-block-end: 10rem;
    border-radius: 1.2rem;
  }
  .c-card-top__body {
    padding-inline: 1.5rem;
  }
  .c-card-top__btn {
    inset-block-end: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-card-top {
    padding-block-end: 11rem;
    border-radius: 1.5rem;
  }
  .c-card-top__body {
    padding-inline: 3rem;
  }
  .c-card-top__btn {
    inset-block-end: 3.5rem;
  }
}
/*------------------------------------------------------------------------------------
1.10. GROUP.
------------------------------------------------------------------------------------*/
.c-group-top__link {
  position: relative;
  display: block;
  z-index: 2;
  border-radius: 1.5rem;
  box-shadow: var(--theme-shadow-primary);
  overflow: hidden;
  text-decoration: none;
  background-color: var(--theme-color-fourteenth);
}
.c-group-top__deco.-version-1 {
  inset-block-start: 0;
  inset-inline-start: 0;
}
.c-group-top__deco.-version-2 {
  inset-inline-end: 0;
  inset-block-end: 0;
}
.c-group-top__left {
  border-radius: 1rem;
  overflow: hidden;
}
.c-group-top__left img {
  width: 100%;
}
.c-group-top__right .c-title {
  margin-block-end: var(--spacing-sp-15-pc-20);
}
.c-group-top__desc {
  font-size: 1.4rem;
}

@media only screen and (max-width: 575px) {
  .c-group-top__deco.-version-1 {
    width: 50%;
  }
  .c-group-top__deco.-version-2 {
    width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .c-group-top__link {
    padding: 2rem 2rem 3rem 2rem;
  }
  .c-group-top__left {
    margin-block-end: 2.5rem;
  }
  .c-group-top__desc {
    margin-block-end: 1.5rem;
  }
  .c-group-top .c-circle-base {
    inset-block-end: 1.5rem;
    inset-inline-end: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-group-top__link {
    padding: 3.5rem;
  }
  .c-group-top__link:hover .c-circle-base::before {
    width: 0;
    height: 0;
  }
  .c-group-top__link:hover .c-circle-base__arrow::before {
    opacity: 0;
  }
  .c-group-top__link:hover .c-circle-base__arrow::after {
    opacity: 1;
  }
  .c-group-top__row {
    display: flex;
    align-items: center;
  }
  .c-group-top__left {
    width: 31.8rem;
  }
  .c-group-top__right {
    flex: 1;
    padding-inline-start: 3.5rem;
  }
  .c-group-top__desc {
    margin-block-end: 1.8rem;
  }
  .c-group-top .c-circle-base {
    inset-block: 0;
    inset-inline-end: 3.5rem;
    margin-block: auto;
  }
}
/*------------------------------------------------------------------------------------
1.11. BOX.
------------------------------------------------------------------------------------*/
/*---------- LIST BOX TOP ----------*/
@media only screen and (max-width: 767px) {
  .c-list-box-top .c-box-top:not(:first-child) {
    margin-block-start: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-list-box-top {
    display: flex;
    flex-wrap: wrap;
  }
  .c-list-box-top .c-box-top:not(:first-child) {
    margin-inline-start: 3.5rem;
  }
}
/*---------- BOX TOP ----------*/
.c-box-top__title {
  margin-block-end: 0.7rem;
  font-size: 1.6rem;
}
.c-box-top__lists .c-list-circle {
  font-size: 1.4rem;
}
.c-box-top__lists .c-list-circle > li:not(:first-child) {
  margin-block-start: 0.4rem;
}

@media only screen and (max-width: 575px) {
  .c-box-top__lists .c-list-circle:not(:first-child) {
    margin-block-start: 0.4rem;
  }
}
@media only screen and (min-width: 576px) {
  .c-box-top__lists {
    display: flex;
    flex-wrap: wrap;
  }
  .c-box-top__lists .c-list-circle:not(:first-child) {
    margin-inline-start: 2.2rem;
  }
}
/*====================================================================================
2. PROJECT.
====================================================================================*/
/*------------------------------------------------------------------------------------
2.1. SLIDER.
------------------------------------------------------------------------------------*/
.p-slider-mv .splide__slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 820/550;
}
.p-slider-mv .splide__pagination {
  justify-content: flex-end;
  inset-block-end: var(--spacing-sp-10-pc-25);
  padding-inline: var(--spacing-sp-10-pc-25);
}
.p-slider-mv .splide__pagination__page {
  opacity: 1;
  background-color: var(--theme-color-secondary);
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.7);
}
.p-slider-mv .splide__pagination__page.is-active {
  transform: scale(1);
  background-color: var(--theme-color-quaternary);
}
.p-slider-mv__note {
  position: absolute;
  font-family: var(--theme-font-jp-secondary);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 767px) {
  .p-slider-mv .splide__slide img {
    border-radius: 2rem 0 0 2rem;
  }
  .p-slider-mv .splide__pagination__page {
    width: 1rem;
    height: 1rem;
    margin-inline: 0.6rem;
  }
  .p-slider-mv__note {
    top: 1rem;
    right: 1rem;
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-slider-mv .splide__slide img {
    border-radius: 4rem 0 0 4rem;
  }
  .p-slider-mv .splide__pagination__page {
    width: 1.2rem;
    height: 1.2rem;
    margin-inline: 0.8rem;
  }
  .p-slider-mv__note {
    top: 1.5rem;
    right: 1.5rem;
  }
}
/*====================================================================================
3. SECTION MAIN VISUAL.
====================================================================================*/
.p-mv {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.p-mv__inner {
  width: 100%;
  max-width: 43rem;
}
.p-mv__inner .c-title-mv {
  margin-block-end: var(--spacing-sp-20-pc-25);
}
.p-mv__inner .c-list-box-mv {
  margin-block-end: var(--spacing-sp-20-pc-30);
}

@media only screen and (max-width: 767px) {
  .p-mv {
    background: url("./../images/common/bg-sp.webp") no-repeat center top -2px/100% auto, var(--theme-color-sixteenth);
  }
  .p-mv__deco {
    inset-block-start: -10vw;
    inset-inline-start: -25vw;
    width: 50vw;
  }
  .p-mv__header {
    padding-block: 2rem 7rem;
  }
  .p-mv__body {
    padding-block-end: calc(20vw + 5rem);
  }
  .p-mv__left {
    padding-inline-start: 1.5rem;
  }
  .p-mv__right {
    margin-block-start: 3rem;
    padding-inline: 1.5rem;
  }
  .p-mv__inner {
    margin-inline: auto;
  }
}
@media only screen and (min-width: 768px) {
  .p-mv {
    background: url("./../images/bg-top-img.webp") no-repeat center center/cover;
  }
  .p-mv__deco {
    inset-block-start: -38.5rem;
    inset-inline-end: calc(50% + 24.5rem);
    width: 85.2rem;
  }
  .p-mv__header {
    padding-block: 3.5rem 5rem;
  }
  .p-mv__body {
    padding-block-end: 48.5rem;
  }
  .p-mv__row {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
  }
  .p-mv__right {
    padding-inline-end: 5.5rem;
  }
  .p-mv__inner {
    margin-inline-start: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1299px) {
  .p-mv__left {
    flex: 1;
  }
  .p-mv__right {
    flex: 0 0 auto;
    padding-inline-start: 1.5rem;
  }
}
@media only screen and (min-width: 1300px) {
  .p-mv__left {
    width: calc(50% + 13.7rem);
  }
  .p-mv__right {
    flex: 1;
  }
}
/*====================================================================================
4. START SECTION TOP ABOUT.
====================================================================================*/
.p-top.-about {
  padding-block: var(--spacing-sp-55-pc-115) var(--spacing-sp-60-pc-120);
}
.p-top.-about .p-top__btns {
  margin-block-start: var(--spacing-sp-30-pc-45);
}

@media only screen and (max-width: 575px) {
  .p-top.-about .p-top__btns {
    text-align: center;
  }
  .p-top.-about .p-top__btns .c-btn:not(:first-child) {
    margin-block-start: 2rem;
  }
}
@media only screen and (min-width: 576px) {
  .p-top.-about .p-top__btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .p-top.-about .p-top {
    margin-inline: -2rem;
  }
  .p-top.-about .p-top__btns .c-btn {
    margin-inline: 2rem;
    width: calc(50% - 4rem);
  }
}
@media only screen and (max-width: 767px) {
  .p-top.-about {
    margin-block-start: -20vw;
  }
}
@media only screen and (min-width: 768px) {
  .p-top.-about {
    margin-block-start: -42rem;
  }
  .p-top.-about .p-top {
    margin-inline: -5rem;
  }
  .p-top.-about .p-top__btns .c-btn {
    width: calc(50% - 10rem);
    margin-inline: 5rem;
  }
}
/*====================================================================================
5. START SECTION TOP INFORMATION.
====================================================================================*/
.p-top.-information .p-top__desc {
  text-align: center;
}
.p-top.-information .c-list-card-top {
  margin-block-start: var(--spacing-sp-30-pc-65);
}
.p-top.-information .c-group-top {
  margin-block-start: var(--spacing-sp-45-pc-90);
}

@media only screen and (max-width: 767px) {
  .p-top.-information {
    background: url("./../images/common/bg-sp.webp") no-repeat center top -2px/100% auto, var(--theme-color-sixteenth);
  }
  .p-top.-information .p-top__desc {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-top.-information {
    background: url("./../images/bg-top-img2.webp") no-repeat center top/cover;
  }
  .p-top.-information .p-top__desc {
    font-size: 1.8rem;
    line-height: 2;
  }
}