@charset "UTF-8";
/* ブレイクポイント設定 */
/* 色設定 */
/* フォント */
/* 配置 */
/* transition */
/* 擬似要素の共通基盤 */
/* レスポンシブ */
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/* 基盤 */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3037809648vw;
  }
}

body {
  color: black;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  width: 100%;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

a {
  position: relative;
  text-decoration: none;
  color: #4B4949;
  display: block;
  -webkit-tap-highlight-color: transparent;
}

li {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

/* レイアウト */
.l-search-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.l-search-inner {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding: 6rem 0;
}

.l-search-container {
  position: relative;
  max-width: 63rem;
  border-radius: 0.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 1rem 6rem 6rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .l-search-container {
    padding: 2rem;
  }
}

/* コンポーネント */
.c-dark-red {
  color: #4B4949;
}

.c-bg-white {
  background: #fff;
}

.c-font-400 {
  font-weight: 400;
}

.c-font-700 {
  font-weight: 700;
}

/* ヘッダー(タイトル) */
.header {
  height: 12rem;
  color: white;
  background: green;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .header {
    height: 14rem;
    font-size: 2.2rem;
  }
}

.page-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.l-main {
  height: calc(100vh - 12rem);
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .l-main {
    height: calc(100vh - 14rem);
    padding: 6.5rem 0 6rem;
  }
}

.c-search__button {
  position: fixed;
  bottom: 4.5rem;
  right: 4.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 9rem;
  height: 9rem;
  background: #4B4949;
  border-radius: 50%;
}
.c-search__button img {
  width: 60%;
}

.c-close__button {
  position: absolute;
  top: -3rem;
  right: -54rem;
  width: 5rem;
  height: 5rem;
  color: #fff;
  background: #4B4949;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}
.c-close__button::before, .c-close__button::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  width: 0.2rem;
  height: 2.2rem;
  background: #fff;
  border-radius: 0.4rem;
}
.c-close__button::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-close__button::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-search__title {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .c-search__title {
    text-align: center;
    margin-top: -5rem;
  }
}

.c-search__form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
  border: solid 1px #bbb;
  border-radius: 0.3rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-search__form {
    height: 4.5rem;
  }
}
.c-search__form label {
  width: 100%;
  height: 100%;
}
.c-search__form label input {
  width: 100%;
  height: 100%;
  font-size: 1.2rem;
  vertical-align: middle;
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-search__form label input {
    padding: 1.1rem 1.5rem;
  }
}
.c-search__form label input::-moz-placeholder {
  color: #4B4949;
}
.c-search__form label input::placeholder {
  color: #4B4949;
}
.c-search__form button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.8rem;
  height: 4.8rem;
  cursor: pointer;
}
.c-search__form button::after {
  content: "";
  width: 2.25rem;
  height: 2.25rem;
  background: url(../images/ico_mushimegane.svg) no-repeat 50% 50%/100% auto;
}

.c-search__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 3.9rem;
}
@media screen and (max-width: 767px) {
  .c-search__lists {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    margin-bottom: 2rem;
  }
}
.c-search__lists .c-search__list a {
  font-size: 1.4rem;
  border-bottom: solid 1px #CBCBCB;
  padding: 1.72rem 0;
}

.c-search-keyword__title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.c-keyword__taglist {
  margin-bottom: 2rem;
}
.c-keyword__taglist .c-keyword__tag {
  display: inline-block;
  margin-right: 0.35rem;
  margin-bottom: 0.5rem;
}
.c-keyword__taglist .c-keyword__tag a {
  font-size: 1.4rem;
  line-height: 1;
  background: #EDEDED;
  border-radius: 1.6rem;
  padding: 0.9rem 1rem;
}

.c-search__attention .c-attention__text {
  font-size: 1.2rem;
  line-height: 1.75;
  text-indent: -1em;
  padding-left: 1em;
}

.click {
  position: fixed;
  bottom: 7rem;
  right: 15rem;
  font-size: 3rem;
}

/* js */
.js-modal {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.open {
  opacity: 1;
  visibility: visible;
}

body, .js-main {
  transition: 0.3s;
}

.dark {
  background: rgba(0, 0, 0, 0.5);
  filter: brightness(50%);
}

body.fixed {
  height: 100%;
  overflow: hidden;
}/*# sourceMappingURL=style.css.map */