@import url('reset.css');

/*
 * CSS命名規則: プレフィックスについて
 *
 * l- (layout): ページ骨格・グリッド・レイアウトの枠組み（例: l-container, l-header, l-main）
 * c- (component): 再利用可能なUI部品（例: c-button, c-card, c-pagination）
 * p- (project): サイト固有のページセクション・パターン（例: p-filters, p-hero）
 */

body {
  color: #333333;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

/* 検索フォーム */
.p-searchContent {
  position: relative;
}
.p-searchContent__bg img,
.p-searchContent__bg source {
  width: 100%;
}
.p-searchContent__wrap {
  position: absolute;
  top: 36.3%;
  left: 120px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 999px) {
  .p-searchContent__wrap {
    left: 16px;
  }
}
@media screen and (max-width: 600px) {
  .p-searchContent__wrap {
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    gap: 12px;
    width: calc(100% - 32px);
  }
}
.p-searchContent__title {
  font-weight: 700;
  font-size: 36px;
}
@media screen and (max-width: 999px) {
  .p-searchContent__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .p-searchContent__title {
    font-size: 24px;
    text-align: center;
  }
}
.p-searchForm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
  border: 1px solid #D8DBDD;
  border-radius: 84px;
  width: 468px;
}
@media screen and (max-width: 999px) {
  .p-searchForm {
    width: 100%;
  }
}
.p-searchForm__input {
  padding: 16px 0 16px 16px;
  width: 100%;
  color: #92949B;
  font-weight: 400;
  font-size: 16px;
  outline: none;
}
@media screen and (max-width: 999px) {
  .p-searchForm__input {
    font-size: 14px;
    padding: 12px 0 12px 12px;
  }
}
.p-searchForm__button {
  display: flex;
  align-items: center;
  margin-right: 16px;
  flex-shrink: 0;
}
.p-searchForm__button > img {
  width: 24px;
  height: 24px;
}

/* パンくずリスト */
.c-breadcrumb {
  padding: 0 120px;
}
@media screen and (max-width: 999px) {
  .c-breadcrumb {
    padding: 0 16px;
  }
}
.c-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}
@media screen and (max-width: 999px) {
  .c-breadcrumb__list {
    gap: 4px;
    margin-bottom: 24px;
  }
}
.c-breadcrumb__item {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 12px;
  color: #686A6C;
}
@media screen and (max-width: 999px) {
  .c-breadcrumb__item {
    font-size: 10px;
  }
}
.c-breadcrumb__item a {
  display: flex;
  align-items: center;
  color: #2D8CE4;
}
.c-breadcrumb__item img {
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 999px) {
  .c-breadcrumb__item img {
    width: 14px;
    height: 14px;
  }
}

/* メインレイアウト */
.l-container {
  padding: 0 120px;
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
}
@media screen and (max-width: 999px) {
  .l-container {
    padding: 0;
  }
}
.l-main {
  flex: 1;
}

/* コンテンツタイトル */
.p-pageTitle {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 999px) {
  .p-pageTitle {
    padding: 0 16px;
    font-size: 20px;
    margin-bottom: 16px;
  }
}

/* 条件チップ */
.c-chips__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
@media screen and (max-width: 999px) {
  .c-chips__list {
    padding: 0 16px;
    margin-bottom: 16px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .c-chips__list::-webkit-scrollbar {
    display: none;
  }
}
.c-chips__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2D8CE4;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid #2D8CE4;
  border-radius: 9999px;
  background-color: #E7F0F9;
  padding: 4px 8px;
}
@media screen and (max-width: 999px) {
  .c-chips__item {
    flex-shrink: 0;
    font-size: 12px;
  }
}
.c-chips__item-clear {
  display: flex;
  align-items: center;
}
.c-chips__item-clear > img {
  width: 16px;
}
.c-chips__item-reset {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.05;
  color: #2D8CE4;
  min-width: 88px;
  margin-left: 6px;
}

/* SP版のみの条件チップ */
.c-chips__item-sp {
  display: none;
}
@media screen and (max-width: 999px) {
  .c-chips__item-sp {
    display: block;
  }
  .c-chips__item-filter {
    display: flex;
    align-items: center;
    min-width: 34px;
  }
  .c-chips__mage-filter img {
    height: 24px;
    width: 24px;
  }
  .c-chips__item-location {
    border: 1px solid #D8DBDD;
    border-radius: 100px;
    display: flex;
    align-items: center;
    min-width: 81px;
  }
  .c-chips__btn-location {
    padding: 8px 8px 8px 10px;
    font-weight: 400;
    font-size: 12px;
  }
  .c-chips__item-location img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
}

/* 絞り込み条件 */
.p-result {
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
  margin-bottom: 16px;
}
@media screen and (max-width: 999px) {
  .p-result {
    padding: 0 16px;
    padding-bottom: 0;
  }
}
.p-result__text {
  margin-top: 27px;
  font-weight: 400;
  font-size: 14px;
}
@media screen and (max-width: 999px) {
  .p-result__text {
    margin-top: 0;
    font-size: 12px;
    letter-spacing: 0.04;
  }
}
.c-result__sort {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 284px;
  border: 1px solid #D8DBDD;
  border-radius: 8px;
  box-shadow: 0px 0px 4px 0px #0000002B;
  font-weight: 400;
  font-size: 14px;
  padding: 4px 12px;
  width: 284px;
  height: 45px;
  cursor: pointer;
}
.c-result__sort-icon {
  display: none;
}
.p-result__sort-label {
  font-weight: 400;
  color: #686A6C;
  font-size: 11px;
  margin-bottom: -2px;
}
.p-result__sort-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 100%;
}
.p-result__sort-value {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}
.p-result__sort-arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.p-result__sort-button.__open .p-result__sort-arrow {
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 999px) {
  .c-result__sort {
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1px;
    width: fit-content;
    height: fit-content;
    padding: 0;
    cursor: pointer;
  }
  .p-result__sort-button {
    display: none;
  }
  .p-result__sort-label {
    color: #333333;
    font-size: 12px;
  }
  .c-result__sort-icon {
    display: block;
    width: 20px;
    height: 20px;
  }
}

/* 並べ替えモーダル */
.sort-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.sort-modal.__show {
  display: block;
}
.sort-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}
.sort-modal__content {
  position: absolute;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0px 4px 12px 4px rgba(0, 0, 0, 0.1);
  width: 275px;
  overflow: hidden;
}
.sort-modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sort-modal__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: #686A6C;
  background-color: #FFFFFF;
  height: 40px;
  box-sizing: border-box;
}
.sort-modal__item:hover {
  background-color: #F5F5F5;
}
.sort-modal__item.__selected {
  color: #333333;
  background-color: #E7F0F9;
  font-weight: 700;
}
.sort-modal__check {
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.sort-modal__item.__selected .sort-modal__check {
  opacity: 1;
}

/* 企業カード一覧 */
.p-cardList {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 999px) {
  .p-cardList {
    padding: 0 16px;
  }
}
.c-companyCard {
  border: 1px solid #D8DBDD;
  border-radius: 8px;
  padding: 24px 16px 16px;
}
@media screen and (max-width: 999px) {
  .c-companyCard {
    padding: 16px;
  }
}
.c-companyCard__media {
  border: 1px solid #E4E8ED;
  max-width: 120px;
  max-height: 120px;
}
@media screen and (max-width: 999px) {
  .c-companyCard__media {
    border: 0.4px solid #E4E8ED;
    max-width: 80px;
    max-height: 80px;
  }
}
.c-companyCard__logo {
  width: 100%;
  height: 100%;
}
.c-companyCard__info {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
.c-companyCard__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.c-companyCard__category {
  color: #92949B;
  font-weight: 400;
  font-size: 12px;
}
.c-companyCard__title {
  font-weight: 700;
  font-size: 20px;
}
@media screen and (max-width: 999px) {
  .c-companyCard__title {
    font-size: 16px;
  }
}
.c-companyCard__status {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.c-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  .c-rating {
    width: 100%;
  }
}
.c-rating__stars {
  display: flex;
  align-items: center;
}
.c-rating__star {
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 999px) {
  .c-rating__star {
    width: 12px;
    height: 12px;
  }
}
.c-rating__score {
  color: #F88F07;
  font-weight: 700;
  font-size: 20px;
}
@media screen and (max-width: 999px) {
  .c-rating__score {
    font-size: 16px;
  }
}
.c-comment,
.c-bag,
.c-money {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 8px;
}
.c-comment > img,
.c-bag > img,
.c-money > img {
  width: 16px;
}
@media screen and (max-width: 999px) {
  .c-comment,
  .c-bag,
  .c-money {
    gap: 1px;
  }
}
.c-comment__count,
.c-bag__count,
.c-money__count {
  font-weight: 700;
  font-size: 14px;
  color: #2D8CE4;
}
@media screen and (max-width: 999px) {
 .c-comment__count,
  .c-bag__count,
  .c-money__count {
    font-size: 12px;
  }
}
.c-companyCard__submeta {
  display: flex;
  flex-wrap: wrap;
  font-weight: 400;
  font-size: 12px;
  color: #92949B;
  gap: 16px;
}
@media screen and (max-width: 999px) {
  .c-companyCard__submeta {
    font-size: 12px;
  }
}
.p-submeta-sep {
  position: relative;
}
.p-submeta-sep::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 18px;
  background-color: #E4E8ED;
  top: 50%;
  transform: translateY(-50%);
  right: -8px;
}
.c-latestComment {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.c-latestComment__title {
  display: inline;
  color: #686A6C;
  font-weight: 700;
  font-size: 14px;
}
@media screen and (max-width: 999px) {
  .c-latestComment__title {
    font-size: 12px;
  }
}
.c-latestComment__excerpt {
  display: inline;
  color: #686A6C;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 999px) {
  .c-latestComment__excerpt {
    font-size: 12px;
  }
}
.kebab-menu-sp {
  display: none;
}
@media screen and (max-width: 999px) {
  .kebab-menu-sp {
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }
  .kebab-menu-sp img {
    width: 8px;
    height: 50px;
  }
}

/* ページネーション */
.c-pagination {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 999px) {
  .c-pagination {
    margin-top: 16px;
  }
}
.c-pagination__list {
  display: flex;
  align-items: center;
  gap: 16px;
}
.c-pagination__item {
  width: 24px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pagination__item:has(.is-active) {
  border-bottom: 1px solid #333333;
}
.c-pagination__link {
  color: #2D8CE4;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pagination__link--disabled {
  cursor: default;
}
.c-pagination__link.is-active {
  color: #333333;
  padding-bottom: 2px;
}

/* サイドバー */
.l-sidebar {
  background-color: #F9FAFB;
  border: 1px solid #E4E8ED;
  border-radius: 8px;
  min-width: 320px;
  height: fit-content;
  flex-shrink: 0;
  width: 320px;
}
@media screen and (max-width: 999px) {
  .l-sidebar {
    display: none;
  }
}
.p-filters__title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
summary {
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
.sidebar_arrowUp {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
details:not([open]) .sidebar_arrowUp {
  transform: rotate(180deg);
}

/* 企業名検索・勤務地選択 */
.p-filters__company {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #E4E8ED;
}
.p-sideBar__searchForm,
.p-filters__selectPref {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
  border: 1px solid #D8DBDD;
  border-radius: 9999px;
}
.p-sideBar__input {
  padding: 9.5px 0 9.5px 12px;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  outline: none;
}
.p-sideBar__searchBtn {
  display: flex;
  align-items: center;
}
.c-select__control {
  padding: 9.5px 0 9.5px 12px;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  outline: none;
}
.p-filters__selectBtn {
  display: flex;
  align-items: center;
}
.p-sideBar__searchBtn-icon,
.p-sideBar__selectBtn-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  flex-shrink: 0;
}

/* 業種 */
.p-filtersInd__section {
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E4E8ED;
}
.p-filtersInd__title {
  font-weight: 700;
  font-size: 14px;
  padding-left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.p-industry__item {
  position: relative;
  font-weight: 400;
  font-size: 12px;
}
.p-industry__link {
  display: inline-block;
  width: 100%;
  padding: 4px 0 4px 16px;
}
.p-industry__item:hover {
  color: #FFFFFF;
  background-color: #2D8CE4;
}
.p-industry__item::after {
  position: absolute;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url('/img/reviews/sidebar_right.webp');
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
}
.p-industry__item:hover::after {
  filter: brightness(0) invert(1);
}
.p-industry__item.is-active {
  color: #FFFFFF;
  background-color: #2D8CE4;
}
.p-industry__item.is-active::after {
  filter: brightness(0) invert(1);
}

/* 都道府県から口コミを探す */
.p-prefecture__list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 4px;
  max-height: 400px;
  overflow-y: auto;
}
.p-prefecture__item {
  position: relative;
  font-weight: 400;
  font-size: 12px;
}
.p-prefecture__link {
  display: inline-block;
  width: 100%;
  padding: 4px 0 4px 16px;
}
.p-prefecture__item:hover {
  color: #FFFFFF;
  background-color: #2D8CE4;
}
.p-prefecture__item::after {
  position: absolute;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url('/img/reviews/sidebar_right.webp');
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
}
.p-prefecture__item:hover::after {
  filter: brightness(0) invert(1);
}
.p-prefecture__item.is-active {
  color: #FFFFFF;
  background-color: #2D8CE4;
}
.p-prefecture__item.is-active::after {
  filter: brightness(0) invert(1);
}

/* 企業の規模 */
.p-filters__section {
  padding: 16px;
  border-bottom: 1px solid #E4E8ED;
}
.p-scaleFilter__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.p-scaleFilter__item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px;
  background-color: #FFFFFF;
  border-radius: 8px;
  font-weight: 400;
  font-size: 12px;
}
.p-scaleFilter__item:has(input[type="radio"]:checked),
.p-scaleFilter__item.is-checked {
  background-color: #2D8CE4;
  color: #FFFFFF;
}
.p-scaleFilter__item input[type="radio"] {
  display: none;
}
.p-scaleFilter__checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid #D8DBDD;
  border-radius: 3px;
  background-color: #FFFFFF;
  position: relative;
}
.p-scaleFilter__item input[type="radio"]:checked + .p-scaleFilter__checkbox::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 10px;
  background-image: url("/img/reviews/check-blue.webp");
}

/* 総合評価 */
.c-ratingFilter__list {
  display: flex;
  gap: 4px;
}
.c-ratingFilter__item {
  border: 1px solid #D8DBDD;
  background-color: #FFFFFF;
  border-radius: 8px;
  font-weight: 400;
  font-size: 14px;
  color: #92949B;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  width: 44px;
  height: 37px;
}
.c-ratingFilter__item:has(input[type="radio"]:checked),
.c-ratingFilter__item.is-checked {
  background-color: #E7F0F9;
  border: 1px solid #2D8CE4;
}
.c-ratingFilter__item span {
  margin-right: 3px;
}
.c-star {
  width: 16px;
  height: 16px;
}
.c-ratingFilter__item input[type="radio"]:checked + span,
.c-ratingFilter__item.is-checked span {
  color: #2D8CE4;
  font-weight: 700;
  font-size: 14px;
}
.c-ratingFilter__item input[type="radio"]:checked ~ img,
.c-ratingFilter__item.is-checked img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(18%) saturate(1000%) hue-rotate(218deg) brightness(95%) contrast(86%);
}

/* 特徴 */
.p-charFilter__topic {
  font-weight: 700;
  font-size: 12px;
  padding-bottom: 8px;
}
.p-charFilter__list {
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.p-charFilter__list:last-of-type {
  margin-bottom: 0;
}
.p-charFilter__item {
  border: 1px solid #D8DBDD;
  border-radius: 9999px;
  background-color: #FFFFFF;
  font-weight: 400;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.p-charFilter__item:hover {
  border-color: #2D8CE4;
  color: #2D8CE4;
}
.p-charFilter__link {
  display: block;
  padding: 4px 8px;
  color: inherit;
  text-decoration: none;
}
.is-active__charFilterItem {
  color: #2D8CE4;
  border: 2px solid #2D8CE4;
  background-color: #E7F0F9;
  font-weight: 700;
  position: relative;
}
.is-active__charFilterItem .p-charFilter__link {
  padding: 4px 28px 4px 8px;
}
.is-active__charFilterItem::after {
  position: absolute;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url('/img/reviews/clear.webp');
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
  pointer-events: none;
}

/* 都道府県選択 */
.c-prefecture__select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
  border: 1px solid #D8DBDD;
  border-radius: 9999px;
  cursor: pointer;
}
.c-prefecture__select.__open {
  border-color: #1967D2;
}
.c-prefecture__select-value {
  padding: 9.5px 0 9.5px 12px;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}
.c-prefecture__select-arrow {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.c-prefecture__select.__open .c-prefecture__select-arrow {
  transform: rotate(180deg);
}

/* 都道府県モーダル */
.prefecture-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.prefecture-modal.__show {
  display: block;
}
.prefecture-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.prefecture-modal__content {
  position: absolute;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0px 4px 12px 4px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1001;
}
.prefecture-modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.prefecture-modal__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
  color: #333333;
  transition: background-color 0.2s ease;
}
.prefecture-modal__item:first-child {
  border-radius: 8px 8px 0 0;
}
.prefecture-modal__item:last-child {
  border-radius: 0 0 8px 8px;
}
.prefecture-modal__item:hover {
  background-color: #F5F5F5;
}
.prefecture-modal__item.__selected {
  color: #333333;
  background-color: #E7F0F9;
  font-weight: 700;
}
.prefecture-modal__check {
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.prefecture-modal__item.__selected .prefecture-modal__check {
  opacity: 1;
}

@media screen and (max-width: 999px) {
  .c-prefecture__select {
    display: none;
  }
  .prefecture-modal {
    display: none !important;
  }
}
