@charset "UTF-8";
/* 
本サイトにおける BEM の書式は以下の通り
.block {}
.block.--modifier {}
.block__element {}
.block__element.--modifier {}
.block__element.--css-property_css-value {} 
*/
/* ======================================== Pages ======================================== */
/* ==================== home (index) ==================== */
.home {}
/* ========== loading ========== */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: #EFEDE4;
    opacity: 1;
    visibility: visible;
    transition: opacity .4s, visibility .4s;
}
.loading.is-hide {
    opacity: 0;
    visibility: hidden;
}
.loading__img {
    position: relative;
    z-index: 1;
    width: 5rem;
    height: 5rem;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
.donut-svg {
  width: 5rem;
  height: 5rem;
}
.donut-shape {
  fill: #ba854a;
  animation: donutColor 2s linear infinite;
}
@keyframes donutColor {
  0% {
    fill: #ba854a;
  }
  33% {
    fill: #ba854a;
  }
  34% {
    fill: #78a0b9;
  }
  66% {
    fill: #78a0b9;
  }
  67% {
    fill: #7faf6e;
  }
  99% {
    fill: #7faf6e;
  }
  100% {
    fill: #ba854a;
  }
}

@media screen and (max-width: 1000px) {
    .loading {}
    .loading__img {
        width: 3rem;
        height: 3rem;
    }
}
/* ========== End loading ========== */
/* ========== home-kv ========== */
.home-kv {
    position: relative;
    padding: 12rem 0 7.5rem;
}
.home-slide {}
.home-slide__img {
    pointer-events: none;
}
.home-slide__body {
    padding: 2.2rem 0 0;
}
.home-slide__news-mark {
    display: inline-block;
    width: 55px;
    height: 28px;
    margin-right: 1.5rem;
    background-image: url('/10th/assets/img/common/new-mark.svg');
    background-size: 55px 28px;
    background-repeat: no-repeat;
}
.home-slide__date {
    display: inline-block;
    margin-top: 0.2rem;
    font-size: 1.4rem;
    font-weight: 700;
}
.home-slide__title {
    margin-top: 1.2rem;
    font-size: 1.8rem;
    line-height: 1.5;
}
.common-slide-controls {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* swiper reset */
.swiper-slide {
    box-sizing: border-box;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: unset;
    top: unset;
    left: 0;
    display: flex;
    justify-content: center;
    width: auto;
        gap: 1.2rem;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    box-sizing: border-box;
    margin: 0;
}
.swiper-pagination-bullet {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid #222;
    border-radius: 9999px;
    background-color: #E1E1D7;
    opacity: 1;
    transition: width .3s ease-in-out, background-color .4s ease;
}
.swiper-pagination-bullet.is-active {
    width: 30px;
    background-color: #CDAE6E;
    transition: width .3s .3s ease-in-out, background-color .4s ease;
}
/* =========================
ベースレイアウト
========================== */
.card-shuffler {
    display: flex;
    flex-direction: column; /* ボタン群を下に並べる */
    width: 82%;
    margin: 0 auto;

    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.8s ease;  
}
.card-shuffler.is-inview {
    opacity: 1;
    transform: translateY(0);
}
.card-stack {
    position: relative;
    z-index: 9;
    width: 100%;
    height: 450px;
    overflow: visible;
}
/* =========================
カード見た目
========================== */
.card {
    cursor: default;
    user-select: none;
    touch-action: pan-y;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: auto;
    padding: 3rem;
    border: 2px solid #222;
    border-radius: 2rem;
    background-color: #fff;
    transition: transform 0.35s ease;
}
.card img {
    cursor: default;
}
.card.--draggable {
  cursor: grabbing;
}
/* =========================
ボタン群・ドットインジケーター
========================== */
.card-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 5rem;
}
.card-dots {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.card-dot {
  box-sizing: border-box;
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid #222;
  border-radius: 9999px;
  background-color: #E1E1D7;
  opacity: 1;
  transition: width .3s ease-in-out, background-color .4s ease;
}
.card-dot:hover {
  transform: scale(1.15);
  border-color: #333;
}
.card-dot.is-active {
  width: 30px;
  background-color: #CDAE6E;
  transition: width .3s .3s ease-in-out, background-color .4s ease;
}
/* ===== End home-slider ===== */
/* ========== End home-kv ========== */
/* ========== home-section-ankers ========== */
.home-section-ankers-area {
    position: relative;
}
.home-section-ankers {
    overflow-x: hidden;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    display: block;
    width: 100%;
    padding: 2.2rem 0 0;
}
.home-section-ankers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    transition: background-color .2s;
}
.home-section-ankers.-fixed::before {
    background-color: #EFEDE4;
}
.home-section-ankers__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5.5%;
}
.home-section-ankers__link {
    display: flex;
    align-items: center;
}
.home-section-ankers__text {
    display: inline-block;
    width: calc(100% - 40px - 19px);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.75;
}
.br1100 {
    display: none;
}
@media screen and (max-width: 1100px) {
    .br1100 {
        display: block;
    }
}
.home-section-ankers__icon {
    box-sizing: border-box;
    position: relative;
    z-index: 0;
    display: inline-block;
    width: 40px;
    height: 26px;
    margin-left: 19px;
    border-radius: 50% / 50%;
    border: 2px solid #222;
    background-color: #222;
    transition: background-color .2s;
}
.home-section-ankers__link:hover .home-section-ankers__icon.--timeline {
    background-color: #78A0B9;
}
.home-section-ankers__link:hover .home-section-ankers__icon.--counter {
    background-color: #BA854A;
}
.home-section-ankers__link:hover .home-section-ankers__icon.--play {
    background-color: #7FAF6E;
}
.home-section-ankers__icon::before {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    left: 50%;
    z-index: 1;
    transform: translate(-50%,-50%) rotate(135deg);
    display: inline-block;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transition: top .2s;
}
@media (hover: hover) {
    .home-section-ankers__link:hover .home-section-ankers__icon::before {
        top: calc(50% + 2px);
    }
}
.home-section-ankers__hr-area {
    margin-top: 2rem;
}
.dots-hr {
    width: 100%;
    height: 6px;
    background-image: radial-gradient(circle, #222 1px, transparent 1px);
    background-size: 6px 6px;
    background-repeat: repeat-x;
    background-position: center;
}
/* ========== End home-section-ankers ========== */
/* ========== home-intro ========== */
.home-intro {
    padding: 8.5rem 0 11rem;
}
.home-intro__wrapper {
    width: 70%;
    max-width: 90rem;
    margin: 0 auto;
}
.home-intro__title {
    text-align: center;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.5;
}
.home-intro__text-area {
    margin-top: 4.8rem;
    text-align: center;
}
/* ========== End home-intro ========== */
/* ========== home-projects ========== */
.home-projects {}
.home-projects__section {}
.home-projects__section-title-area {
    width: 89%;
    margin: 0 auto 5.4rem;
}
/* ===== home-projects-common-section ===== */
.home-projects-common-section {
    position: relative;
    padding-top: 24rem;
    margin-top: -24rem;
}
.home-projects-common-section:nth-of-type(1) {
    /* ボタンを触れるように */
    z-index: 2;
}
.home-projects-common-section:nth-of-type(2) {
    /* ボタンを触れるように */
    z-index: 1;
}
.home-projects-common-section:nth-of-type(2),
.home-projects-common-section:nth-of-type(3) {
    padding-top: 15rem;
    margin-top: -15rem;
}
.home-projects-common-section__2columns-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    gap: 5.5%;
}
.home-projects-common-section__text-type-area {
    width: 41rem;
}
.home-projects-common-section__en-title-area {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.4rem;
}
.home-projects-common-section__number {
    position: relative;
    font-size: 3rem;
    font-weight: 600;
}
.home-projects-common-section__number::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 0.6rem;
    z-index: -1;
    display: block;
    width: 6.1rem;
    height: 2.7rem;
    background-image: url('/10th/assets/img/index/project-number-bg-line1.svg');
    background-size: 6.1rem 2.7rem;
    background-repeat: no-repeat;
}
.home-projects-common-section__number.--2::before {
    background-image: url('/10th/assets/img/index/project-number-bg-line2.svg');
}
.home-projects-common-section__number.--3::before {
    background-image: url('/10th/assets/img/index/project-number-bg-line3.svg');
}
.home-projects-common-section__en-title-img {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}
.home-projects-common-section__en-title-img.--timeline {
    width: 29.2rem;
}
.home-projects-common-section__en-title-img.--counter {
    width: 29.6rem;
}
.home-projects-common-section__en-title-img.--play {
    width: 22.9rem;
}
.home-projects-common-section__title {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.5;
}
.home-projects-common-section__texts-area {
    margin-top: 1.3rem;
}
.home-projects-common-section__right-area {
    width: calc(100% - 5.5% - 41rem);
}
.home-projects-common-section__button-link-area {
    display: flex;
    justify-content: end;
    margin-top: 4rem;
}
.home-projects-common-section__hr-area {
    margin-top: 8rem;
    margin-bottom: 8rem;
}
/* home-project-small-card */
.home-project-small-card {
    display: flex;
    align-items: start;
    gap: 2rem;
}
.home-project-small-card__thumb {
    overflow: hidden;
    position: relative;
    width: 30%;
}
.home-project-small-card__thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color .3s;
}
.home-project-small-card:hover .home-project-small-card__thumb::after {
    background-color: rgba(0, 0, 0, 0.4);
}
.home-project-small-card__thumb > img {
    transform: scale(1);
    transition: transform .3s;
}
.home-project-small-card:hover .home-project-small-card__thumb > img {
    transform: scale(1.1);
}
.home-project-small-card__body {
    width: calc(100% - 30% - 2rem);
}
.home-project-small-card__date {
    font-size: 1.4rem;
    font-weight: 700;
}
.home-project-small-card__news-mark {
    display: inline-block;
    width: fit-content;
    padding: 0.3rem 0.9rem;
    border: 2px solid #91570F;
    margin-left: 0.7rem;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    color: #91570F;
}
.home-project-small-card__title {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    line-height: 2;
}
.home-projects-common-section__item {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #E1E1D7;
    margin-bottom: 2.5rem;
}
.home-projects-common-section__item:last-child {
    margin-bottom: 0;
}
/* home-project-large-card */
.home-project-large-card {}
.home-project-large-card__thumb {
    overflow: hidden;
    position: relative;
}
.home-project-large-card__thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color .3s;
}
a:hover .home-project-large-card__thumb::before {
    background-color: rgba(0, 0, 0, 0.4);
}
.home-project-large-card__thumb > img {
    transform: scale(1);
    transition: transform .3s;
}
a:hover .home-project-large-card__thumb > img {
    transform: scale(1.1);
}
.home-project-large-card__meta-area {
    margin-top: 2rem;
}
.home-project-large-card__date {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
}
.home-project-large-card__news-mark {
    display: inline-block;
    width: fit-content;
    padding: 0.3rem 0.9rem;
    border: 2px solid #55784B;
    margin-left: 0.7rem;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    color: #55784B;
}
.home-project-large-card__title {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    line-height: 2;
}
/* ===== End home-projects-common-section ===== */
/* ========== End home-projects ========== */
/* ========== home-message ========== */
.home-message {}
.home-message__section {
    margin: 12rem 0 14.3rem;
}
.home-message__section-title-area {
    width: 89%;
    margin: 0 auto;
}
.home-message__text-area {
    margin-top: 5rem;
}
.home-message__list-area {
    margin-top: 8.2rem;
}
.home-message__button-link-area {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}
/* ========== End home-message ========== */
/* -------------------- home (index) responsive (1000) -------------------- */
@media screen and (max-width: 1000px) {
    /* ========== home-kv ========== */
    .home-kv {
        padding: 10.7rem 0 2.3rem;
    }
    .card-shuffler {
        width: 85%;
    }
    .card-stack {}
    .card {
        width: 83%;
        padding: 1.7rem;
    }
    .card-controls {
        margin-top: 3rem;
    }
    .home-slide {}
    .home-slide__body {
        padding: 1rem 0 0;
    }
    .home-slide__news-mark {
        width: 48px;
        height: 26px;
        margin-right: 1rem;
        background-size: 48px 26px;
    }
    .home-slide__date {
        margin-top: 0;
        font-size: 1.2rem;
    }
    .home-slide__title {
        margin-top: 0.4rem;
        font-size: 1.5rem;
    }
    .home-slider__controls-area {
        margin-top: 3rem;
    }
    .common-slide-prev {
        width: 40px;
        height: 26px;
        background-size: 40px 26px;
    }
    .common-slide-next {
        width: 40px;
        height: 26px;
        background-size: 40px 26px;
    }
    /* ===== End home-slider ===== */
    /* ========== End home-kv ========== */
    /* ========== home-section-ankers ========== */
    .home-section-ankers {}
    .home-section-ankers__list {
        gap: 4.5%;
    }
    .home-section-ankers__text {
        width: 6em;
        font-size: 1rem;
        font-size: clamp(1rem, 1.15vw, 1.4rem);
        line-height: 1.4;
    }
    .home-section-ankers__icon {
        width: 30px;
        height: 20px;
        margin-left: 0;
    }
    .home-section-ankers__icon.--timeline {
        background-color: #78A0B9;
    }
    .home-section-ankers__icon.--counter {
        background-color: #BA854A;
    }
    .home-section-ankers__icon.--play {
        background-color: #7FAF6E;
    }
    .home-section-ankers__icon::before {
        width: 5px;
        height: 5px;
    }
    @media (hover: hover) {
        .home-section-ankers__link:hover .home-section-ankers__icon::before {
            top: calc(50% + 1px);
        }
    }
    .home-section-ankers__hr-area {
        margin-top: 1rem;
    }
    /* ========== End home-section-ankers ========== */
    /* ========== home-intro ========== */
    .home-intro {
        padding: 3.8rem 0 5rem;
    }
    .home-intro__title {
        text-align: left;
        font-size: 3rem;
    }
    .home-intro__text-area {
        margin-top: 1.1rem;
        text-align: left;
    }
    /* ========== End home-intro ========== */
    /* ========== home-projects ========== */
    .home-projects {}
    .home-projects__section {}
    .home-projects__section-title-area {
        width: 85%;
        margin: 0 auto 2.4rem;
    }
    /* ===== home-projects-common-section ===== */
    .home-projects-common-section {
        padding-top: 25rem;
        margin-top: -25rem;
    }
    .home-projects-common-section:nth-of-type(2),
    .home-projects-common-section:nth-of-type(3) {
        padding-top: 12rem;
        margin-top: -12rem;
    }
    .home-projects-common-section__2columns-layout {
        gap: 2.8rem;
    }
    .home-projects-common-section__text-type-area {
        width: 100%;
    }
    .home-projects-common-section__en-title-area {
        margin-bottom: 1.4rem;
    }
    .home-projects-common-section__number {
        font-size: 2rem;
    }
    .home-projects-common-section__number::before {
        top: 1.4rem;
        left: 0.1rem;
        width: 4.1rem;
        height: 1.8rem;
        background-size: 4.1rem 1.8rem;
    }
    .home-projects-common-section__en-title-img {
        margin-top: 0.3rem;
    }
    .home-projects-common-section__en-title-img.--timeline {
        width: 19.2rem;
    }
    .home-projects-common-section__en-title-img.--counter {
        width: 19.6rem;
    }
    .home-projects-common-section__en-title-img.--play {
        width: 19.5rem;
    }
    .home-projects-common-section__title {
        font-size: 2.8rem;
    }
    .home-projects-common-section__texts-area {
        margin-top: 0.9rem;
    }
    .home-projects-common-section__right-area {
        width: 100%;
    }
    .home-projects-common-section__button-link-area {
        margin-top: 3rem;
    }
    .home-projects-common-section__hr-area {
        margin-top: 4.6rem;
        margin-bottom: 3.6rem;
    }
    .home-projects-common-section__item {
        padding-bottom: 2.5rem;
        border-bottom: 1px solid #E1E1D7;
        margin-bottom: 2.5rem;
    }
    .home-projects-common-section__item:last-child {
        margin-bottom: 0;
    }
    /* home-project-small-card */
    .home-project-small-card {
        display: flex;
        align-items: start;
        gap: 2rem;
    }
    .home-project-small-card__thumb {
        width: 40%;
    }
    .home-project-small-card__body {
        width: calc(100% - 40% - 2rem);
    }
    .home-project-small-card__meta-area {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }
    .home-project-small-card__news-mark {
        margin-left: 0;
    }
    .home-project-small-card__title {
        margin-top: 0.7rem;
        font-size: 1.5rem;
        line-height: 2;
    }
    /* home-project-large-card */
    .home-project-large-card {}
    .home-project-large-card__meta-area {
        margin-top: 1.5rem;
    }
    .home-project-large-card__date {
        display: inline-block;
        font-size: 1.4rem;
        font-weight: 700;
    }
    .home-project-large-card__title {
        margin-top: 0rem;
        font-size: 1.5rem;
        line-height: 2;
    }
    /* ===== End home-projects-common-section ===== */
    /* ========== End home-projects ========== */
    /* ========== home-message ========== */
    .home-message {}
    .home-message__section {
        margin: 5.8rem 0 10rem;
    }
    .home-message__section-title-area {
        width: 85%;
    }
    .home-message__text-area {
        margin-top: 2rem;
    }
    .home-message__list-area {
        margin-top: 4rem;
    }
    .home-message__button-link-area {
        margin-top: 4rem;
    }
    /* ========== End home-message ========== */
}
/* ==================== End home (index) ==================== */
/* ==================== timeline ==================== */
.timeline {}
.timeline__sticky-area {
    position: relative;
    padding-top: 6.6rem;
}
.timeline__sticky {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    display: block;
    width: 100%;
    padding: 2.5rem 0 0;
}
.timeline__sticky::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    transition: background-color .2s;
}
.timeline__sticky.-fixed::before {
    background-color: #EFEDE4;
}
.timeline__filters {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 5.5%;
    width: 100%;
}
.timeline__filters::before {
    content: '';
    position: absolute;
    left: 16rem;
    bottom: -2.6rem;
    z-index: 1;
    transform: scale(1,1);
    transform-origin: left;
    display: block;
    width: 5.5%;
    height: 1rem;
    background-color: #EFEDE4;
    transition: transform .2s;
}
.timeline__sticky.-fixed .timeline__filters::before {
    transform: scale(0,1);
}
/* ===== years-filter ===== */
.years-filter {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 16rem;
}
.years-filter__button {
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 1;
    transition: opacity .2s;
}
@media (hover: hover) {
    .years-filter__button:hover {
        opacity: .7;
    }
}
/* common-timelin-filter-icon */
.common-timelin-filter-icon {
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
    display: inline-block;
    width: 40px;
    height: 26px;
    border: 2px solid #111;
    border-top: 2px solid #111;
    border-bottom: 2px solid #111;
    margin-top: 0.1rem;
    margin-left: 19px;
    border-radius: 50% / 50%;
    color: #222;
    background-color: transparent;
    transition: background-color .2s;
}
.common-timelin-filter-icon::before {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    left: 50%;
    z-index: 1;
    transform-origin: center;
    transform: translate(-50%,-50%) rotate(135deg);
    display: inline-block;
    width: 7px;
    height: 7px;
    border-top: 2px solid #222;
    border-right: 2px solid #222;
    transition: top .2s, transform .2s;
}
.years-filter__button.is-open  .common-timelin-filter-icon::before,
.cats-filter__text-and-list-area.is-open .common-timelin-filter-icon::before {
    transform: translate(-50%, calc(-50% + 1px)) rotate(315deg);
}
.years-filter__dropdown {
    overflow-y: auto;
    position: absolute;
    top: 4rem;
    left: 0;
    z-index: 2;
    display: block;
    width: 100%;
    max-height: 50vh;
    padding: 1.3rem 2rem;
    border-radius: 0.5rem;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, visibility .2s;
}
.years-filter__dropdown.is-open {
    opacity: 1;
    visibility: visible;
}
.years-filter__item:not(:first) {
    margin-top: 0.4rem;
}
.years-filter__option {
    font-size: 1.5rem;
    font-weight: 700;
    transition: opacity .2s;
}
@media (hover: hover) {
    .years-filter__option:hover {
        opacity: 0.7;
    }
}
.years-filter__option.is-active {
    text-decoration: underline;
}
/* ===== End years-filter ===== */
/* ===== cats-filter ===== */
.cats-filter {
    position: relative;
    width: calc(100% - 16rem - 5.5%);
}
.cats-filter__text-and-list-area {
    display: flex;
    align-items: start;
    gap: 3rem;
}
.cats-filter__text {
    display: inline-block;
    width: 10.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2;
}
.cats-filter__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.6rem;
    width: 100%;
}
.cats-filter__button {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    padding: 0.3rem 1rem 0.3rem;
    border: 2px solid #222;
    border-radius: 9999px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #222;
    background-color: transparent;
    transition: border .3s, color .3s, background-color .3s;
}
.cats-filter__button.is-active {
    border: 2px solid #78A0B9;
    color: #fff;
    background-color: #78A0B9;
}
@media (hover: hover) {
    .cats-filter__button:hover {
        border: 2px solid #78A0B9;
        color: #fff;
        background-color: #78A0B9;
    }
}
.cats-filter__button::before {
    content: '#';
    box-sizing: border-box;
    position: relative;
    display: inline;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #222;
    transition: color .3s;
}
.cats-filter__button.is-active::before {
    color: #fff;
}
@media (hover: hover) {
    .cats-filter__button:hover::before {
        color: #fff;
    }
}
/* ===== End cats-filter ===== */
.timeline__hr-area {
    position: relative;
    width: 100%;
    margin-top: 1.8rem;
    transition: width .2s;
}
.timeline__sticky.-fixed .timeline__hr-area {
    width: 110%;
}
.timeline__hr-area .dots-hr {
    position: relative;
    left: 0;
    transition: left .2s;
}
.timeline__sticky.-fixed .timeline__hr-area .dots-hr {
    left: -5%;
}
.timeline__list-area {
    position: relative;
    padding-left: 1rem;
    margin: 8.5rem auto 7rem;
}
.timeline__list {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 7rem;
    border-left: 2px solid #222;
}
.timeline__list::before {
    content: '';
    position: absolute;
    top: 0;
    left: -0.5rem;
    z-index: 1;
    display: block;
    width: 1rem;
    height: 1.5rem;
    background-color: #EFEDE4;
}
.timeline__list::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -0.5rem;
    z-index: 1;
    display: block;
    width: 1rem;
    height: 3rem;
    background-color: #EFEDE4;
}
.timeline__item {
    min-width: 78rem;
    width: 75%;
}
.timeline__item:not(:first-child) {
    margin-top: 6rem;
}
/* ===== timeline-unit ===== */
.timeline-unit {
    padding: 0 0 0 7rem;
}
.timeline-unit__yyyy {
    position: relative;
    width: 13rem;
}
.timeline-unit .timeline-unit__yyyy-img {
    position: relative;
    display: inline-block;
    opacity: 1;
    transition: opacity .3s;
}
.timeline-unit .timeline-unit__yyyy-img.--active {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity .3s;
}
.timeline-unit.-active .timeline-unit__yyyy-img {
    opacity: 0;
}
.timeline-unit.-active .timeline-unit__yyyy-img.--active {
    opacity: 1;
}
.timeline-unit .timeline-unit__yyyy-img .img {
    transform: scale(1);
    transform-origin: left;
    transition: transform .3s, opacity .3s;
}
.timeline-unit.-active .timeline-unit__yyyy-img .img {
    transform: scale(1.3);
}
.timeline-unit__yyyy-img::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -5.8rem;
    z-index: 1;
    transform: translate(0, -50%);
    display: block;
    width: 4rem;
    height: 6px;
    background-image: radial-gradient(circle, #222 1px, transparent 1px);
    background-size: 6px 6px;
    background-repeat: repeat-x;
    background-position: center;
}
.timeline-unit .timeline-unit__yyyy-img::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -8.1rem;
    z-index: 1;
    transform: translate(0, -50%);
    display: block;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid #222;
    background-color: #EFEDE4;
}
.timeline-unit.-active .timeline-unit__yyyy-img::after {
    background-color: #222;
}
.timeline-unit__list-area {
    margin-top: 4rem;
}
.timeline-unit__list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}
.timeline-unit__item {
    display: block;
    width: 100%;
}
/* ===== End timeline-unit ===== */
.common-timeline-unit-cat {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    padding: 0.4rem 1rem 0.4rem;
    border: 2px solid #78A0B9;
    border-radius: 9999px;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #78A0B9;
    background-color: transparent;
}
.common-timeline-unit-cat::before {
    content: '#';
    box-sizing: border-box;
    position: relative;
    display: inline;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #78A0B9;
}
/* ===== timeline-title-only-block ===== */
.timeline-title-only-block {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    gap: 1rem 2rem;
    padding: 1.4rem 1.5rem 1.4rem;
    border-radius: 1rem;
    background-color: #F4F2E9;
}
.timeline-title-only-block__cats-area {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.2rem;
}
.timeline-title-only-block__title {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2;
}
.timeline-title-only-block__button-link-area {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 1rem;
    width: 100%;
    margin-top: 0;
}
.timeline-title-only-block.--strong {
    display: block;
    border: 2px solid #222;
    padding: 2.5rem 3rem 2.8rem;
}
.timeline-title-only-block.--strong .timeline-title-only-block__title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 1.3rem;
}
/* ===== End timeline-title-only-block ===== */
/* ===== timeline-card ===== */
.timeline-card {
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}
.timeline-card__inner,
.timeline-card__link {
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    gap: 3rem;
    width: 100%;
    padding: 2rem;
    border: 2px solid #222;
    border-radius: 1rem;
    background-color: #F4F2E9;
}
.timeline-card__inner::after,
.timeline-card__link::after {
    overflow: hidden;
    box-sizing: border-box;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    transform: translate(3px, -3px) scale(1.02);
    transform-origin: top right;
    display: block;
    border-radius: 0 0 0 10px;
    width: 6.1rem;
    height: 3.7rem;
    background-image: url('/10th/assets/img/pages/timeline-peel.jpg');
    background-repeat: no-repeat;
    background-size: 6.1rem 3.7rem;
    opacity: 1;
    transition: transform 0.4s .6s;
}
.timeline-card.inview.show .timeline-card__inner::after,
.timeline-card.inview.show .timeline-card__link::after {
    transform: translate(3px, -3px) scale(0);
}
.timeline-card__thumb {
    overflow: hidden;
    position: relative;
    z-index: 0;
    width: calc((100% - 3rem) / 2);
}
.timeline-card__thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color .3s;
}
@media (hover: hover) {
    a:hover .timeline-card__thumb::before {
        background-color: rgba(0, 0, 0, 0.4);
    }
}
.timeline-card__thumb > img {
    transform: scale(1.01);
    transition: transform .3s;
}
@media (hover: hover) {
    a:hover .timeline-card__thumb > img {
        transform: scale(1.1);
    }
}

.timeline-card__body {
    width: calc((100% - 3rem) / 2);
    margin-top: 1rem;
}
.timeline-card__cats-area {
    margin-bottom: 1.3rem;
}
.common-timeline-unit-cats-area {
    margin-bottom: 1.2rem;
}
.timeline-card__title {
    font-size: 2rem;
    line-height: 1.5;
}
.timeline-card__text-area {
    margin-top: 0.7rem;
}
.timeline-card__button-link-area {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 1rem;
    width: 100%;
    margin-top: 3rem;
}
/* ===== End timeline-card ===== */
/* -------------------- timeline responsive (1000) -------------------- */
@media screen and (max-width: 1000px) {
    .timeline {}
    .timeline__sticky-area {
        padding-top: 1.8rem;
    }
    .timeline__filters {
        gap: 2.3rem;
    }
    .timeline__filters::before {
        left: 13.6rem;
        bottom: -2.2rem;
        width: 2.7rem;
    }
    /* ===== years-filter ===== */
    .years-filter {
        width: 13.8rem;
    }
    .years-filter__button {
        font-size: 1.3rem;
        line-height: 2;
    }
    .years-filter__text {
        margin-top: 0.2rem;
    }
    /* common-timelin-filter-icon */
    .common-timelin-filter-icon {
        margin-left: 15px;
    }
    .common-timelin-filter-icon::before {
        content: '';
        position: absolute;
        top: calc(50% - 1px);
        left: 50%;
        z-index: 1;
        transform-origin: center;
        transform: translate(-50%,-50%) rotate(135deg);
        display: inline-block;
        width: 7px;
        height: 7px;
        border-top: 2px solid #222;
        border-right: 2px solid #222;
        transition: top .2s, transform .2s;
    }
    .years-filter__button.is-active .common-timelin-filter-icon::before {
        transform: translate(-50%,-50%) rotate(315deg);
    }
    .years-filter__dropdown {
        top: 4rem;
        max-height: 70vh;
        padding: 1.3rem 2rem;
    }
    .years-filter__item:not(:first) {
        margin-top: 0.4rem;
    }
    .years-filter__option {
        font-size: 1.5rem;
        font-weight: 700;
    }
    .years-filter__option:hover,
    .years-filter__option.is-active {
        text-decoration: underline;
    }
    /* ===== End years-filter ===== */
    /* ===== cats-filter ===== */
    .cats-filter {
        width: calc(100% - 14.2rem - 2.3rem);
    }
    .cats-filter__text-and-list-area {
        cursor: pointer;
        align-items: center;
        gap: 0;
        width: fit-content;
        opacity: 1;
        transition: opacity .2s;
    }
    .cats-filter__text-and-list-area:hover {
        opacity: .7;
    }
    .cats-filter__text {
        width: 9rem;
        margin-top: 0.2rem;
        font-size: 1.3rem;
    }
    .cats-filter__list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem 1.6rem;
        width: 100%;
    }
    .cats-filter__button {
        box-sizing: border-box;
        position: relative;
        display: inline-block;
        padding: 0.5rem 1rem 0.3rem;
        border: 1px solid #222;
        border-radius: 9999px;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.2;
        color: #222;
        background-color: transparent;
        transition: border .3s, color .3s, background-color .3s;
    }
    .cats-filter__button.is-active {
        border: 1px solid #78A0B9;
        color: #fff;
        background-color: #78A0B9;
    }
    @media (hover: hover) {
        .cats-filter__button:hover {
            border: 1px solid #78A0B9;
            color: #fff;
            background-color: #78A0B9;
        }
    }
    .cats-filter__button::before {
        content: '#';
        box-sizing: border-box;
        position: relative;
        display: inline;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.2;
        color: #222;
        transition: color .3s;
    }
    .cats-filter__button.is-active::before {
        color: #fff;
    }
    @media (hover: hover) {
        .cats-filter__button:hover::before {
            color: #fff;
        }
    }
    /* cats-filter-dropdown */
    .cats-filter-dropdown {
        overflow-y: auto;
        position: absolute;
        top: 4rem;
        left: 0;
        z-index: 2;
        display: block;
        width: auto;
        max-height: 50vh;
        padding: 1.3rem 2rem;
        border-radius: 0.5rem;
        background-color: #fff;
        opacity: 0;
        visibility: hidden;
        transition: opacity .2s, visibility .2s;
    }
    .cats-filter-dropdown.is-open {
        opacity: 1;
        visibility: visible;
    }
    .cats-filter-dropdown__item:not(:first-child) {
        margin-top: 1.4rem;
    }
    .cats-filter-dropdown__option {
        box-sizing: border-box;
        position: relative;
        display: inline-block;
        padding: 0.5rem 1rem 0.4rem;
        border: 1px solid #222;
        border-radius: 9999px;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.2;
        color: #222;
        background-color: transparent;
        transition: border .3s, color .3s, background-color .3s;
    }
    .cats-filter-dropdown__option.is-active {
        border: 1px solid #78A0B9;
        color: #fff;
        background-color: #78A0B9;
    }
    @media (hover: hover) {
        .cats-filter-dropdown__option:hover {
            border: 1px solid #78A0B9;
            color: #fff;
            background-color: #78A0B9;
        }
    }
    .cats-filter-dropdown__option::before {
        content: '#';
        box-sizing: border-box;
        position: relative;
        display: inline;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.2;
        color: #222;
        transition: color .3s;
    }
    .cats-filter-dropdown__option.is-active::before {
        color: #fff;
    }
    @media (hover: hover) {
        .cats-filter-dropdown__option:hover::before {
            color: #fff;
        }
    }
    /* ===== End cats-filter ===== */
    .timeline__hr-area {
        margin-top: 1.4rem;
    }
    .timeline__sticky.-fixed .timeline__hr-area {
        width: 100%;
    }
    .timeline__sticky.-fixed .timeline__hr-area .dots-hr {
        left: 0;
        width: 100%;
    }
    .timeline__list-area {
        margin: 5rem auto 7rem;
    }
    .timeline__list {
        border-left: 2px solid #222;
        padding-bottom: 7rem;
    }
    .timeline__list::before {
        content: '';
        position: absolute;
        top: 0;
        left: -0.5rem;
        z-index: 1;
        display: block;
        width: 1rem;
        height: 1.5rem;
        background-color: #EFEDE4;
    }
    .timeline__list::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: -0.5rem;
        z-index: 1;
        display: block;
        width: 1rem;
        height: 3rem;
        background-color: #EFEDE4;
    }
    .timeline__item {
        min-width: unset;
        width: 100%;
    }
    /* ===== timeline-unit ===== */
    .timeline-unit {
        padding: 0 0 0 3.5rem;
    }
    .timeline-unit__yyyy {
        width: 9.2rem;
    }
    .timeline-unit.-active .timeline-unit__yyyy-img .img {
        transform: scale(1.25);
    }
    .timeline-unit__yyyy-img::before {
        left: -3.5rem;
        width: 2.6rem;
    }
    .timeline-unit .timeline-unit__yyyy-img::after {
        left: -4.4rem;
        width: 1.7rem;
        height: 1.7rem;
    }
    .timeline-unit__list-area {
        margin-top: 1rem;
    }
    .timeline-unit__list {
        gap: 4rem;
    }
    /* ===== End timeline-unit ===== */
    .common-timeline-unit-cat {
        box-sizing: border-box;
        position: relative;
        display: inline-block;
        padding: 0.4rem 1rem 0.4rem;
        border: 1px solid #78A0B9;
        border-radius: 9999px;
        font-size: 1.2rem;
        font-weight: 700;
        line-height: 1.2;
        color: #78A0B9;
        background-color: transparent;
    }
    .common-timeline-unit-cat::before {
        content: '#';
        box-sizing: border-box;
        position: relative;
        display: inline;
        font-size: 1.2rem;
        font-weight: 700;
        line-height: 1.2;
        color: #78A0B9;
    }
    /* ===== timeline-title-only-block ===== */
    .timeline-title-only-block {
        display: flex;
        flex-wrap: wrap;
        align-items: start;
        gap: 1rem 2rem;
        padding: 1.4rem 1.5rem 1.4rem;
        border-radius: 1rem;
        background-color: #F4F2E9;
    }
    .timeline-title-only-block__cats-area {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 0.2rem;
    }
    .timeline-title-only-block__title {
        font-size: 1.5rem;
        font-weight: 500;
        line-height: 2;
    }
    .timeline-title-only-block.--strong {
        padding: 2rem 1.5rem 2.5rem;
    }
    .timeline-title-only-block.--strong .timeline-title-only-block__title {
        font-size: 2.3rem;
        margin-top: 1rem;
    }
    /* ===== End timeline-title-only-block ===== */
    /* ===== timeline-card ===== */
    .timeline-card {}
    .timeline-card__inner, .timeline-card__link {
        box-sizing: border-box;
        display: flex;
        flex-wrap: wrap;
        align-items: start;
        gap: 0 2.5rem;
        width: 100%;
        padding: 1.5rem 1.5rem 2.5rem;
        border: 2px solid #222;
        border-radius: 1rem;
        background-color: #F4F2E9;
    }
    .timeline-card__thumb {
        width: calc((100% - 2.5rem) / 2);
    }
    .timeline-card__body {
        width: calc((100% - 2.5rem) / 2);
    }
    .timeline-card__title {
        margin-top: 0.1rem;
    }
    .timeline-card__button-link-area {
        margin-top: 1.7rem;
    }
    /* ===== End timeline-card ===== */
}
/* -------------------- timeline responsive (750) -------------------- */
@media screen and (max-width: 750px) {
    .timeline {}
    /* ===== timeline-card ===== */
    .timeline-card {}
    .timeline-card__thumb {
        width: 100%;
    }
    .timeline-card__body {
        width: 100%;
        margin-top: 1.8rem;
    }
    .timeline-card__cats-area {
        margin-bottom: 0.6rem;
    }
    /* ===== End timeline-card ===== */
}

/* ==================== End play ==================== */
/* ==================== counter ページ ==================== */
.counter {}
.counter__list-area {
    margin: 9.5rem 0 13rem;
}
.counter__list {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem 4%;
}
.counter__item {
    width: calc((100% - 4%) / 2);
}
/* counter-card */
.counter-card {}
.counter-card__link {
    display: block;
}
.counter-card__thumb {
    overflow: hidden;
    position: relative;
}
.counter-card__thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color .3s;
}
a:hover .counter-card__thumb::before {
    background-color: rgba(0, 0, 0, 0.4);
}
a .counter-card__thumb > img {
    transform: scale(1.01);
    transition: transform .3s;
}
a:hover .counter-card__thumb > img {
    transform: scale(1.1);
}
.counter-card__meta-area {
    margin-top: 2rem;
}
.counter-card__date {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
}
.counter-card__news-mark {
    display: inline-block;
    width: fit-content;
    padding: 0.3rem 0.9rem;
    border: 2px solid #91570F;
    margin-left: 0.7rem;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    color: #91570F;
}
.counter-card__title {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    line-height: 2;
}

/* -------------------- counter responsive (1000) -------------------- */
@media screen and (max-width: 1000px) {
    .counter {}
    .counter__list-area {
        margin: 3.2rem 0 11rem;
    }
    .counter__list {
        gap: 4rem 4%;
    }
    .counter__item {
        width: 100%;
    }
    /* counter-card */
    .counter-card {}
    .counter-card__meta-area {
        margin-top: 1.5rem;
    }
    .counter-card__date {
        display: inline-block;
        font-size: 1.4rem;
        font-weight: 700;
    }
    .counter-card__title {
        margin-top: 0rem;
        font-size: 1.5rem;
        line-height: 2;
    }
}

/* ==================== End counter ==================== */
/* ==================== play ==================== */
.play {}
.play__x-area {
    margin: 8.3rem 0 0;
}
.play__slider-area {
    margin-top: 2rem;
}
.x-slider {
    padding: 4.5rem 0 7rem;
}
.x-slide {
    z-index: -1;
    transform: scale(1);
    transition: transform .2s;
}
.x-slide.swiper-slide-active {
    z-index: 6;
    transform: scale(1.1) !important;
}
.x-slide__embed {
    padding: 2rem 2.5rem;
    border: 2px solid #222;
    border-radius: 2rem;
    background-color: #fff;
    transition: border-color .1s, background-color .1s;
}
.twitter-tweet {
    overflow-y: auto;
    max-height: 50.5rem;
    margin: 0 !important;
}
.twitter-tweet::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
/* バーのトラック部分（背景） */
.twitter-tweet::-webkit-scrollbar-track {
    border-radius: 999px;
    background: #E8E8E8;
}
/* つまむ部分（つまみ） */
.twitter-tweet::-webkit-scrollbar-thumb {
    background: #D1D1D1;
    border-radius: 999px;
}
/* ホバー時 */
.twitter-tweet::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.play__x-link-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: 8rem auto 9.6rem;
}
.play__x-link-area-dots-line {
    width: 100%;
    height: 6px;
    margin-top: 1.5rem;
    background-image: radial-gradient(circle, #55784B 1px, transparent 1px);
    background-size: 6px 6px;
    background-repeat: repeat-x;
    background-position: center;
}
.play__list-area {
    margin-bottom: 14rem;
}
.play__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10rem;
}
.play__item {
    width: 100%;
}
.play-card {}
.play-card.--reverse {}
.play-card__link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}
.play-card.--reverse .play-card__link {
    flex-direction: row-reverse;
}
.play-card__thumb {
    overflow: hidden;
    position: relative;
    z-index: 0;
    width: calc((100% - 4rem) / 2);
}
.play-card__thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transform: scale(1,1);
    transform-origin: left;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #EFEDE4;
    transition: transform .7s .4s;
}
.play-card.play-card.--reverse .play-card__thumb::before {
    transform-origin: right;
}
.inview.--like-tree.show .play-card__thumb::before {
    transform: scale(0,1);
}
.play-card__thumb > img {
    transform: scale(1.01);
    transition: transform .3s;
}
a:hover .play-card__thumb > img {
    transform: scale(1.1);
}
.play-card__body {
    width: calc((100% - 4rem) / 2);
}
.play-card__meta-area {}
.play-card__date {
    font-size: 1.4rem;
    font-weight: 700;
}
.play-card__news-mark {
    display: inline-block;
    width: fit-content;
    padding: 0.3rem 0.9rem;
    border: 2px solid #55784B;
    margin-left: 0.7rem;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    color: #55784B;
}
.play-card__title {
    margin-top: 0.5rem;
    font-size: 2rem;
    line-height: 2;
}
.play-card__button-link-area {
    margin-top: 3rem;
}
/* -------------------- play responsive (1000) -------------------- */
@media screen and (max-width: 1000px) {
    .play {}
    .play__x-area {
        margin: 5.3rem 0 0;
    }
    .play__slider-area {
        margin-top: 0.8rem;
    }
    .x-slider {
        padding: 4.5rem 0 5.5rem;
    }
    .x-slide {}
    .x-slide__embed {
        padding: 1.5rem 2rem;
    }
    .twitter-tweet {}
    .twitter-tweet::-webkit-scrollbar {
        width: 4px;
    }
    .play__x-link-area {
        width: 100%;
        margin: 5rem 0 5.6rem;
    }
    .play__list-area {
        margin-bottom: 10rem;
    }
    .play__list {
        gap: 4rem;
    }
    .play-card {}
    .play-card.--reverse {}
    .play-card__link {
        gap: 1.5rem 2.5rem;
    }
    .play-card__thumb {
        width: calc((100% - 2.5rem) / 2);
    }
    .play-card__body {
        width: calc((100% - 2.5rem) / 2);
    }
    .play-card__title {
        margin-top: 0.1rem;
        font-size: 1.5rem;
    }
    .play-card__button-link-area {
        margin-top: 1.7rem;
    }
}
/* -------------------- play responsive (750) -------------------- */
@media screen and (max-width: 750px) {
    .play {}
    .play-card__link {
        flex-direction: column;
    }
    .play-card.--reverse .play-card__link {
        flex-direction: column;
    }
    .play-card__thumb {
        width: 100%;
    }
    .play-card__body {
        width: 100%;
    }
}
@media screen and (max-width: 600px) {
    .x-slider {
        padding: 4.5rem 0 5.4rem;
    }
    .x-slide {}
    .x-slide__embed {
        padding: 2rem 1rem;
    }
    .twitter-tweet {
        max-height: 35.5rem;
    }
}
/* ==================== End play ==================== */
/* ==================== message ==================== */
.message {}
.message-hero {
    padding: 18.2rem 0 11rem;
}
.message-hero__title {
    font-size: 5rem;
    font-weight: 600;
}
.message-hero__text-area {
    max-width: 90rem;
    margin-top: 4rem;
}
.message__pickup-area {
    margin-bottom: 10rem;
}
.message__pickup-area-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
    color: #D23C00;
}
.message-slider {
    padding: 4.4rem 0 7rem;
}
.message-slide {
    overflow: hidden;
    position: relative;
    transform: scale(1);
    padding: 4.2rem 4rem 7.2rem;
    border: 2px solid #222;
    border-radius: 2rem;
    background-color: #fff;
    transition: transform .2s, visiblity .2s;
}
.message-slide.swiper-slide-active {
    z-index: 6;
    transform: scale(1.1) !important;
}
.message-slide::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: block;
    width: calc(100% - 2rem);
    height: 11px;
    background-image: url('/10th/assets/img/pages/text-line-unit-10th-anniversary.png');
    background-repeat: repeat-x;
    background-size: 137px 11px;
}
.message-slide::after {
    content: '';
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    transform: scale(-1,-1);
    display: block;
    width: calc(100% - 2rem);
    height: 11px;
    background-image: url('/10th/assets/img/pages/text-line-unit-10th-anniversary.png');
    background-repeat: repeat-x;
    background-size: 137px 11px;
}
.message-slide__link {
    display: inline-block;
}
.message-slide__head {
    display: flex;
    align-items: center;
    gap: 0 8%;
}
.message-slide__img {
    overflow: hidden;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
}
.message-slide__head-texts-area {
    width: calc(100% - 8% - 10rem);
}
.message-slide__role {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
}
.message-slide__name {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
}
.message-slide__body {
    margin-top: 3.4rem;
}
.message-slide__body.--margin-top-small {
    margin-top: 1.9rem;
}
.message-slide__celebrate-img {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 20rem;
}
.message__list-area.--1 {
    margin-bottom: 9.3rem;
}
.message__list-area.--2 {
    margin-bottom: 18rem;
}
/* -------------------- message responsive (1000) -------------------- */
@media screen and (max-width: 1000px) {
    .message {}
    .message-hero {
        padding: 11rem 0 4rem;
    }
    .message-hero__title {
        font-size: 4rem;
    }
    .message-hero__text-area {
        margin-top: 1rem;
    }
    .message__pickup-area {
        margin-bottom: 8rem;
    }
    .message__pickup-area-title {
        font-size: 3rem;
    }
    .message-slider {
        padding: 4.4rem 0 5.6rem;
    }
    .message-slide {
        padding: 3.5rem 2rem 4rem;
    }
    .message-slide::before {
        height: 10px;
        background-size: 118px 10px;
    }
    .message-slide::after {
        height: 10px;
        background-size: 118px 10px;
    }
    .message-slide__head {
        gap: 0 1.8rem;
    }
    .message-slide__head-texts-area {
        width: calc(100% - 2.5rem - 10rem);
    }
    .message-slide__role {
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    .message-slide__name {
        font-size: 1.5rem;
    }
    .message-slide__body {
        margin-top: 2.4rem;
    }
    .message-slide__celebrate-img {
        width: 14.2rem;
    }
    .message__list-area.--1 {
        margin-bottom: 7rem;
    }
    .message__list-area.--2 {
        margin-bottom: 13rem;
    }
}
/* ==================== End message ==================== */
/* ==================== error404 ==================== */
.error404 {}
.error404__sec {
    padding: 30rem 0;
}
.error404__title {
    font-size: 5.5rem;
    color: #fff;
}
.error404__text {
    padding-top: 2.3rem;
    font-size: 2rem;
    font-weight: 900;
    line-height: 2;
    letter-spacing: 0.2em;
    color: #fff;
}
.error404__archive-link-wrap {
    margin-top: 3rem;
}
.error404__archive-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.6rem;
    width: fit-content;
}
.error404__archive-link-icon {
    position: relative;
    top: 0;
    left: 0;
    z-index: 0;
    transform: scale(1);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4.8rem;
    height: 4.8rem;
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: transparent;
    transition: transform .3s;
}
.error404__archive-link:hover .error404__archive-link-icon {
    transform: scale(1.1);
}
.error404__archive-link-icon::before {
    content: '';
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    transform: scale(-1,1);
    display: inline-block;
    width: 22px;
    height: 13px;
    background-image: url('/10th/assets/images/common/icon-arrow.svg');
    background-repeat: no-repeat;
    background-size: 22px 13px;
}
.error404__archive-link-text {
    position: relative;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
}
.error404__archive-link-text::after {
    content: '';
    position: absolute;
    bottom: -0.4rem;
    left: 0;
    transform: scale(0,1);
    transform-origin: right;
    display: block;
    width: 100%;
    padding-top: 2px;
    background-color: #fff;
    transition: transform .3s;
}
.error404__archive-link:hover .error404__archive-link-text::after {
    transform: scale(1,1);
    transform-origin: left;
}

@media screen and (max-width: 1000px) {
    .error404__sec {
        padding: 16rem 0 7rem;
    }
    .error404__title {
        font-size: 3.1rem;
    }
    .error404__text {
        padding-top: 2rem;
        font-size: 1.6rem;
    }
    .error404__archive-link-text {
        font-size: 1.8rem;
    }
}
/* ==================== End error404 ==================== */
/* ======================================== End Pages ======================================== */
