@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  background: #fefefe;
  color: #333;
}

html {
  font-size: 62.5%; /* デフォルトの16px × 62.5% ＝ 10px となるように設定 */
}

body {
  font-size: 1.6rem; /* 10px × 1.6 ＝ 16px */
  margin: 1rem; /* 10px */
  background: #e7e7e7;
}

* a {
  text-decoration: none;
}

* h2 {
  font-weight: normal;
}

ul {
  list-style: none;
}

.form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 56px;
  padding: 0 32px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #3B82F6, #2563EB);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.25s, box-shadow 0.25s, opacity 0.25s;
  position: relative;
  overflow: hidden;
}
.form__submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s;
}
.form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.form__submit:hover::before {
  left: 140%;
}
.form__submit:active {
  transform: translateY(1px);
}

.top {
  width: 100%;
  max-width: 600px;
  margin: auto;
}
@media screen and (max-width: 500px) {
  .top {
    width: 100%;
    max-width: initial;
  }
}
.top__img {
  display: block;
  margin: auto;
  margin-bottom: 1rem;
}
.top__img i {
  display: block;
  font-size: 2.4rem;
  text-align: center;
  margin: auto;
}

.post {
  width: 100%;
  max-width: 800px;
  margin: auto;
}
@media screen and (max-width: 500px) {
  .post {
    width: 100%;
    max-width: initial;
  }
}
.post__list__item {
  margin-bottom: 2rem;
  background: #fff;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding: 1rem 1rem;
  border-radius: 0.5rem;
}
.post__list__item a {
  padding: 1rem;
  color: #202020;
  display: block;
}
.post__list__item a h2 {
  font-size: 2rem;
}
.post__list__item .exp {
  font-size: 1.3rem;
  margin: 0rem 0 1rem;
}
.post__list__item .date {
  font-size: 1.2rem;
  opacity: 0.6;
}
.post__list__item .cate {
  font-size: 1.2rem;
  line-height: 1.2rem;
  margin: 1rem 0;
}
.post__list__item .cate i {
  color: #BA955B;
}
.post__list__item .cate {
  border: 1px solid #BA955B;
  border-radius: 2rem;
  padding: 0.6rem 1rem;
  width: -moz-fit-content;
  width: fit-content;
}
.post__content {
  padding: 2rem 1rem;
  font-size: 1.4rem;
  background: #fff;
}
.post__content__button i {
  color: #BA955B;
}
.post__content__button {
  cursor: pointer;
  max-width: 24rem;
  margin: auto;
  display: block;
  border: 1px solid #BA955B;
  border-radius: 0.2rem;
  text-align: center;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
}
.post__content__des {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.p-search-form {
  width: 100%;
  max-width: 560px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #E5E7EB;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: 0.3s;
  margin-bottom: 2rem;
}
.p-search-form:focus-within {
  border-color: #3B82F6;
  box-shadow: 0 10px 35px rgba(59, 130, 246, 0.18), 0 2px 10px rgba(59, 130, 246, 0.12);
}
.p-search-form__input {
  flex: 1;
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  background: #F9FAFB;
}
.p-search-form__input i {
  font-size: 16px;
  color: #6B7280;
  margin-right: 12px;
}
.p-search-form__input input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: #111827;
}
.p-search-form__input input::-moz-placeholder {
  color: #9CA3AF;
}
.p-search-form__input input::placeholder {
  color: #9CA3AF;
}
.p-search-form button {
  flex-shrink: 0;
  min-width: 10rem;
  height: 56px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #3B82F6, #2563EB);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
}
.p-search-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}
.p-search-form button:active {
  transform: translateY(1px);
}

.search__fin {
  width: 100%;
  max-width: 80rem;
  margin: auto;
}
@media screen and (max-width: 500px) {
  .search__fin {
    width: 100%;
    max-width: initial;
  }
}
.search__fin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #EFF6FF, #FFFFFF);
  border: 1px solid #DBEAFE;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .search__fin {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
}
.search__fin div {
  position: relative;
  padding-left: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111827;
}
.search__fin div::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 70%;
  border-radius: 999px;
  background: #3B82F6;
  transform: translateY(-50%);
}
.search__fin div span {
  color: #2563EB;
}
.search__fin p {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 5.2rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  background: #3B82F6;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
}

.back__top {
  padding: 1rem 2rem;
  margin: 0 auto 3rem;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #BA955B;
  border-radius: 2rem;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  color: #1a1a1a;
}
.back__top i {
  color: #BA955B;
  margin-right: 1rem;
}

.footer {
  width: 100%;
  max-width: 80rem;
  margin: auto;
}
@media screen and (max-width: 500px) {
  .footer {
    width: 100%;
    max-width: initial;
  }
}
.footer {
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  padding: 4% 2%;
}
@media screen and (max-width: 500px) {
  .footer {
    padding: 6rem 10%;
  }
}
.footer {
  color: #fff;
}
.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer__section-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ff6b9d;
}
.footer__section-text, .footer__section-link {
  color: #bbb;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer__section-link:hover {
  color: #ff6b9d;
}
.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6b9d, #ffa500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  cursor: pointer;
}
.footer__social-icon:hover {
  transform: translateY(-3px);
}
.footer__bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #444;
  color: #888;
}/*# sourceMappingURL=style.css.map */