@charset "UTF-8";
/**
 * Variables
 */
/**
 * フロントページ
 */
section {
  padding: 120px 0;
}
@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
}

.section-title {
  padding: 0;
}

.archive-content {
  padding: 0;
}

.front-about__btn .c-button__text,
.front-fv__btn .c-button__text {
  letter-spacing: 0.15em;
}

.front-all-posts__btn {
  text-align: center;
  margin-top: 60px;
}
.front-all-posts__btn .c-button .c-button__text {
  letter-spacing: 0.15em;
}

/**
 * front-fv
 */
.front-fv {
  background: url(../images/front/fv_bg.webp) no-repeat center top;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .front-fv {
    padding: 60px 0;
    height: calc(100vh - 80px);
  }
}
.front-fv__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 1400px;
}
@media (max-width: 768px) {
  .front-fv__inner {
    height: 100%;
  }
}
.front-fv__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  min-height: 500px;
}
@media (max-width: 768px) {
  .front-fv__content {
    justify-content: flex-end;
    min-height: 100%;
  }
}
.front-fv__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.front-fv__title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .front-fv__title {
    font-size: 2.25rem;
  }
}
.front-fv__text {
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .front-fv__text {
    font-size: 1.1rem;
  }
}
.front-fv .front-fv__btn .c-button {
  background-color: #fff;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.front-fv .front-fv__btn .c-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, #FF9300 0%, #FFB000 100%);
  transition: opacity 0.28s ease;
  opacity: 1;
  pointer-events: none;
}
.front-fv .front-fv__btn .c-button:hover::before {
  opacity: 0;
}

/**
  * front-about
  */
.front-about {
  background: url(../images/front/about_bg.webp) no-repeat center top;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.front-about__content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 60px;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 768px) {
  .front-about__content {
    gap: 40px;
  }
}
.front-about__main {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .front-about__main {
    width: 100%;
    gap: 20px;
  }
}
.front-about__heading h3 {
  font-size: 2rem;
  font-weight: 800;
}
@media (max-width: 768px) {
  .front-about__heading h3 {
    font-size: 1.5rem;
  }
}
.front-about__text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .front-about__text p {
    margin-bottom: 20px;
  }
}
.front-about__text p:last-child {
  margin-bottom: 0;
}

/**
 * front-column
 */
.front-column {
  background-color: rgba(225, 147, 0, 0.1490196078);
}

/**
 * front-ranking
 */
.front-ranking__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 120px;
}
@media (max-width: 768px) {
  .front-ranking__header {
    flex-direction: column;
    gap: 0;
  }
}
.front-ranking__tabs {
  display: flex;
  gap: 10px;
  flex: 1;
}
@media (max-width: 768px) {
  .front-ranking__tabs {
    width: 100%;
    margin-bottom: 24px;
  }
}
.front-ranking__tab {
  background: none;
  border: 1px solid #EBEBEB;
  background-color: #EBEBEB;
  padding: 0 12px;
  font-size: 1rem;
  font-weight: 400;
  color: #595757;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  border-radius: 999px;
  flex: 1;
}
.front-ranking__tab:hover {
  background-color: #fff;
  border: 1px solid #FF9300;
  color: #FF9300;
}
.front-ranking__tab--active {
  background: linear-gradient(to right, #FF9300, #FFB000);
  border: 1px solid #FF9300;
  color: #fff;
  pointer-events: none;
}
.front-ranking__list {
  display: none;
  flex-direction: column;
  gap: 32px;
}
.front-ranking__list--active {
  display: flex;
}

.popular-post-item {
  padding-bottom: 32px;
  border-bottom: 2px solid #EBEBEB;
}
.popular-post-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.popular-post-item__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #212028;
  line-height: 1.5;
  border-bottom: none;
  margin-bottom: 8px;
  padding-bottom: 0;
}
.popular-post-item__title a {
  color: #212028;
  text-decoration: none;
}
.popular-post-item__title a:hover {
  text-decoration: underline;
}
.popular-post-item__button {
  display: flex;
  justify-content: flex-end;
}
.popular-post-item__button .c-button span {
  font-size: 1rem;
  padding-bottom: 2px;
}
.popular-post-item__excerpt {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #212028;
  margin-bottom: 24px;
}/*# sourceMappingURL=front.css.map */