body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.u-fv {
  padding: 124rem 0 86rem;
  background-image: url('/company/torikumi/manzoku/action/images/fv .png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

.u-fv__ttl {
  width: 422rem;
  height: 130rem;
}

.u-fv__txt {
  margin-top: 20rem;
  color: #212121;
  font-family: "Noto Sans JP";
  font-size: 14rem;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.56px;
}

@media screen and (max-width: 768px) {
  .u-fv {
    padding: 80rem 0rem 60rem;
    background-image: url('/company/torikumi/manzoku/action/images/fv_sp.png');
    width: 100%;
  }

  .u-fv__ttl {
    width: 430rem;
    height: 126rem;
  }

  .u-fv__txt {
    margin-top: 12rem;
    color: #212121;
    text-shadow:
      -1px -1px 0 #F6FCFE,
      1px -1px 0 #F6FCFE,
      -1px 1px 0 #F6FCFE,
      1px 1px 0 #F6FCFE;
    font-family: "Noto Sans JP";
    font-size: 22rem;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    letter-spacing: 0.44px;
  }

}

/* ==================================================
   category
================================================== */
.u-category-filter {
  margin-top: 64rem;
  padding-bottom: 80rem;
}

.c-tab {
  display: flex;
  gap: 6rem;
}

.c-tab__item {
  cursor: pointer;
  /* マウスカーソルをポインターに */
  user-select: none;
  width: 100%;
  padding: 11rem 0;
  border: 1rem solid #D9D9D9;
  background: #FFF;
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 15rem;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.c-tab__item.is-active {
  border: 1px solid #D9D9D9;
  background: #000;
  color: #FFF;
}

.c-tab__item.is-disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

/* ------- filter -------*/
.c-filter {
  margin-top: 20rem;
  position: relative;
  width: 174rem;
  font-size: 14rem;
}

.c-filter__selectBox {
  background: #fff;
  border: 1px solid #DEDEDE;
  padding: 13rem 10rem 13rem 28rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-wrap: nowrap;
}

.c-filter__selectedText {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 15rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 15px */
}

.c-filter__arrow {
  margin-left: 8px;
  width: 20rem;
  height: 20rem;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.c-filter__dropdown {
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-top: none;
  border-right: 1rem solid #ccc;
  border-bottom: 1rem solid inherit;
  border-left: 1rem solid #ccc;
  background: #fff;
  z-index: 10;
  transition: max-height 0.3s ease, opacity 0.3s ease, border 0.3s ease;
}

.c-filter.is-open .c-filter__dropdown {
  max-height: 500rem;
  pointer-events: auto;
  border-top: none;
  border-right: 1rem solid #ccc;
  border-bottom: 1rem solid #ccc;
  border-left: 1rem solid #ccc;
}

.c-filter__dropdown li {
  padding: 10px 14px;
  cursor: pointer;
}

.c-filter__dropdown li:hover {
  background: #eee;
}




.c-filter.is-open .c-filter__arrow {
  transform: rotate(180deg);
}

/* ------- card -------*/

.u-card__wrap {
  margin-top: 40rem;
  display: flex;
  flex-wrap: wrap;
  gap: 80rem 32rem;
}

.c-card__item {
  cursor: pointer;
  background-image: url('/company/torikumi/manzoku/action/images/item_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 276rem;
  height: 195rem;
  padding: 18rem 18rem 16rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.c-card__label {
  padding: 3rem 14rem 5rem;
  border-radius: 50px;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 10rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  color: #FFF;
  /* 13px */
}

.u-card__title-wrap {
  display: block;
  margin-top: 10rem;
}

.c-card__title {
  margin-top: 110em;
  padding: 2rem 6rem 3rem;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  white-space: break-spaces;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 14rem;
  font-style: normal;
  font-weight: 600;
  line-height: 210%;
}

.c-card__label.--route {
  border: 1px solid #ADADAD;
  color: #ADADAD;
}

.c-card__label.--category.--road,
.c-card__title.--road {
  background: #00A2A2;
}

.c-card__label.--category.--pa,
.c-card__title.--pa {
  background: #E8B200;
}

.c-card__label.--category.--info,
.c-card__title.--info {
  background: #D97B7B;
}

.c-card__pictogram {
  width: 80rem;
  height: 80rem;
  margin: auto auto 0;
}

.u-card__wrap {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.u-card__wrap.is-fading {
  opacity: 0;
  pointer-events: none;
}

@media screen and (max-width: 768px) {

  .c-tab {
    display: flex;
    flex-direction: column;
    gap: 16rem;
    text-align: left;
  }

  .c-tab__item {
    width: 100%;
    padding: 36rem 40rem;
    text-align: left;
    border: 2rem solid #D9D9D9;
    background: #FFF;
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 32rem;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
  }

  .c-filter {
    margin-top: 16rem;
    position: relative;
    width: 278rem;
    font-size: 26rem;
  }

  .c-filter__selectedText {
    color: #333;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 26rem;
    font-style: normal;
    font-weight: 700;
    line-height: 36rem;
  }

  .c-filter__selectBox {
    padding: 18rem 13rem 18rem 27rem;
    color: #333;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 26rem;
    font-style: normal;
    font-weight: 700;
    line-height: 36rem;
    /* 138.462% */
  }

  .c-filter__arrow {
    margin-left: 8px;
    width: 36rem;
    height: 36rem;
  }

  .u-card__wrap {
    margin-top: 80rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 40rem;
  }

  .c-card__item {
    width: 100%;
    height: 474rem;
    padding: 40rem 40rem 40rem;
  }

  .c-card__label {
    padding: 6rem 30rem 10rem;
    border-radius: 100rem;
    text-align: center;
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 22rem;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
  }

  .c-card__label.--route {
    border: 2rem solid #ADADAD;
  }

  .u-card__title-wrap {
    display: block;
    margin-top: 28rem;
  }

  .c-card__title {
    margin-top: 110em;
    padding: 4rem 12rem 6rem;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    white-space: break-spaces;
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 30rem;
    font-style: normal;
    font-weight: 600;
    line-height: 200%;
  }



  .c-card__pictogram {
    width: 160rem;
    height: 160rem;
    margin: auto auto 0;
  }


}

/* ==================================================
    modal
================================================== */
.u-modal {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  /* 常にflexでOK、非表示時は opacity:0 + visibility:hidden で制御 */
  justify-content: center;
  align-items: center;
  pointer-events: none;
  /* 非表示時はクリック不可に */
}

.u-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.u-modal.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.u-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.56);
  cursor: pointer;
}

.u-modal__content {
  position: relative;
  width: 100%;
  max-width: 1152rem;
  padding: 40rem;
  background: #FFF;
  border-radius: 8rem;
}

.u-modal__close {
  display: block;
  font-size: 16rem;
  cursor: pointer;
  width: 16rem;
  height: 16rem;
  margin: 0 0 0 auto;
}

.u-modal__inner {
  margin-top: 24rem;
  display: flex;
  gap: 32rem;
}

.u-modal__year {
  text-align: center;
  padding: 3rem 16rem 5rem;
  background: #000;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 13rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-right: 16rem;
}

.u-modal__meta {
  display: flex;
  justify-content: flex-start;
}

.u-modal__category {
  text-align: center;
  padding: 3rem 14rem 5rem;
  justify-content: center;
  border-radius: 50px;
  color: #FFF;
  margin-right: 6rem;
  font-family: "Noto Sans JP";
  font-size: 10rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

.u-modal__category.--road {
  background-color: #00A2A2;
}

.u-modal__category.--pa {
  background-color: #E8B200;
}

.u-modal__category.--info {
  background-color: #D97B7B;
}

.u-modal__route {
  border-radius: 50px;
  border: 1rem solid #ADADAD;
  padding: 3rem 14rem 5rem;
  text-align: center;
  color: #ADADAD;
  font-family: "Noto Sans JP";
  font-size: 10rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-right: 16rem;
}


.u-modal__feedback-title-icon {
  width: 22rem;
  height: 16rem;
}

.u-modal__feedback-icon {
  width: 38rem;
  height: 38rem;
}

.u-modal__title {
  margin-top: 10rem;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 20rem;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}

.u-modal__desc {
  margin-top: 12rem;
  border: 1rem solid #E5E5E5;
  padding: 16rem 20rem;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 14rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.u-modal__feedback-title {
  margin-top: 20rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6rem;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 14rem;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
}

.u-modal__feedback-wrap {
  background: #F0F0F0;
  margin-top: 12rem;
  padding: 16rem 20rem;
  display: flex;
  align-items: center;
  gap: 10rem;
}

.u-modal__feedback {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 13rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.u-modal__annotation {
  margin-top: 7rem;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 12rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.u-modal__link-block {
  display: flex;
  margin: 20rem 0 0;
}

.u-modal__link-connection {
  margin-right: 8rem;
  color: #666;
  font-family: "Noto Sans JP";
  font-size: 12rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

.u-modal__link-wrap {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8rem;
}

.u-modal__link-inner {

}



.u-modal__link1,
.u-modal__link2 {
  display: inline;
  align-items: center;
  color: #666;
  font-family: "Noto Sans JP";
  font-size: 12rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  text-decoration: underline;
  text-underline-offset: 2rem;
  cursor: pointer;
  max-width: 100%;
}

.js-modal-link1-text,
.js-modal-link2-text {
  margin-right: 4rem;
}

.u-modal_link-img {
  margin: 0 0 2rem;
  width: 11rem;
  height: 10rem;
}

.u-modal__images img {
  height: auto;
  width: 580rem;
}

.u-modal__wrap {
  width: 100%;
}

.u-modal__link-area {
  margin-top: 9rem;
  display: block;
}

.u-modal__link-area .u-modal__link2 {
  margin-top: 8rem;
}

@media screen and (max-width: 768px) {


  .u-modal__content {
    position: relative;
    padding: 40rem;
    max-height: 90vh;
    /* ← ここポイント！ */
    overflow: hidden;
  }

  .u-modal__close {
    position: absolute;
    top: 40rem;
    right: 40rem;
    display: block;
    cursor: pointer;
    width: 44rem;
    height: 44rem;
  }

  .u-modal__inner {
    margin-top: 0;
  }

  .u-modal__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20rem;
  }

  .u-modal__year {
    padding: 6rem 32rem 10rem;
    font-size: 26rem;

  }

  .u-modal__category,
  .u-modal__route {
    display: inline-block;
  }

  .u-modal__meta-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 12rem;
  }

  .u-modal__category {
    text-align: center;
    padding: 6rem 30rem 10rem;
    border-radius: 50px;
    color: #FFF;
    margin-right: 0;
    font-size: 26rem;
  }

  .u-modal__route {
    border-radius: 50px;
    border: 2rem solid #ADADAD;
    padding: 6rem 30rem 10rem;
    text-align: center;
    font-size: 26rem;
    margin-right: 0;
  }

  .u-modal__title {
    margin-top: 20rem;
    font-size: 36rem;
  }

  .u-modal__images {
    margin-top: 24rem;
  }

  .u-modal__desc {
    margin-top: 24rem;
    border: 2rem solid #E5E5E5;
    padding: 32rem 40rem;
    font-size: 28rem;
  }

  .u-modal__feedback-title-icon {
    width: 44rem;
    height: 32rem;
  }

  .u-modal__feedback-title {
    margin-top: 40rem;
    gap: 12rem;
    font-size: 28rem;
  }

  .u-modal__feedback-wrap {
    margin-top: 16rem;
    padding: 32rem 40rem;
    gap: 20rem;
  }

  .u-modal__feedback {
    font-size: 26rem;
  }

  .u-modal__feedback-icon {
    width: 76rem;
    height: 76rem;
  }

  .u-modal__annotation {
    margin-top: 12rem;
    font-size: 24rem;
  }

  .u-modal__scroll {
    max-height: 60vh;
    /* ヘッダーやcloseボタン分だけ余白を確保 */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-grow: 1;
    padding-right: 10rem;
  }

  .u-modal__link-block {
    margin: 40rem 0 0;
    display: block;
  }


  .u-modal__link-wrap {
    margin-top: 16rem;
    gap: 16rem;
  }

  .u-modal__link-connection {
    font-size: 26rem;
  }


  .u-modal__link1,
  .u-modal__link2 {
    font-size: 26rem;
    max-width: 100%;
    text-underline-offset: 2rem;
  }

  .u-modal_link-img {
    margin: 0 0 4rem 8rem;
    width: 24rem !important;
    height: 22rem !important;
  }

  .u-modal__link-area .u-modal__link2 {
    margin-top: 18rem;
  }

}