/*
Theme Name: Stars HP
Template: twentytwentyfive
Version: 1.0
*/

@charset "UTF-8";

/* | 数値（weight） | 呼称（一般的な英語名）               | 日本語でのイメージ | CSS指定例              |
| ---------- | ------------------------- | --------- | ------------------- |
| **100**    | Thin                      | 超極細       | `font-weight: 100;` |
| **200**    | Extra Light / Ultra Light | とても細い     | `font-weight: 200;` |
| **300**    | Light                     | 細め        | `font-weight: 300;` |
| **400**    | Regular / Normal          | 標準        | `font-weight: 400;` |
| **500**    | Medium                    | 少し太め      | `font-weight: 500;` |
| **600**    | Semi Bold / Demi Bold     | 中太        | `font-weight: 600;` |
| **700**    | Bold                      | 太い（見出し向け） | `font-weight: 700;` |
| **800**    | Extra Bold / Ultra Bold   | かなり太い     | `font-weight: 800;` |
| **900**    | Black / Heavy             | 極太（強調用）   | `font-weight: 900;` |
 */

/***************************************
          共通
*****************************************/
body#stars_hp {
  font-family: 'M PLUS 1p', sans-serif;
  color: #070707;
  font-weight: 500;
  overflow-x: hidden;
}

:root {
  /* 調整用変数（Figma 値を当てはめて試せます） */
  --glass-radius: 16px;
  --glass-blur: 18px;
  /* 屈曲100 に近似 -> blur */
  --glass-frost: 0;
  /* フロスト0 -> ノイズなし */
  --glass-depth-y: 18px;
  /* 奥行き100 に近似 -> シャドウの高さ */
  --light-angle: 0deg;
  /* Light 0° */
  --light-intensity: 0.8;
  /* Light 80% を反映するシェインの不透明度 */
}

/***************************************
          共通
*****************************************/
#stars_hp a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
  cursor: pointer;
}

#stars_hp a:hover {
  opacity: 0.7;
}

#stars_hp img {
  width: 100%;
  object-fit: contain;
}

#stars_hp section {
  position: relative;
}

#stars_hp .container {
  width: 1100px;
  margin: 0 auto;
}

#stars_hp .pc {
  display: block;
}

#stars_hp .sp {
  display: none;
}

#stars_hp h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 70px;
  letter-spacing: 0.05em;
  margin-top: -7px;
  background: linear-gradient(to bottom, #00A0E6 0%, #008CDB 39%, #0063B6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  /* 文字部分にだけ背景を反映 */
  -webkit-text-fill-color: transparent;
  /* 背景を見せるため文字色を透明に */
  position: relative;
  display: inline-block;
}

#stars_hp h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
  height: 2px;
  background: #0175C6;
}

#stars_hp p.sub_title {
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 40px;
  font-weight: 500;
}

#stars_hp .bold {
  font-weight: bold;
  color: #070707;
}

#stars_hp .blue_text {
  font-weight: bold;
  background: linear-gradient(to bottom, #0485EB 0%, #0E56D7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* #stars_hp .cta_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 345px;
  height: 87px;
  margin: 30px auto 0;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 50px;
  text-align: center;
  position: relative;
  background: #FF6A2E;
  box-shadow: 0 7px 10px 0 rgba(0, 0, 0, 0.17);
  font-size: 20px;
  letter-spacing: 0.07em;
  overflow: hidden;
}

#stars_hp .cta_btn:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, #FF883E 0%, #FF4800 100%);
  box-shadow: inset 0 4px 0 0 rgba(255, 255, 255, 0.70);
  border-radius: 50px;
  filter: blur(7px);
}

#stars_hp .cta_btn span {
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.17);
}

#stars_hp .cta_btn .arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 17px;
  height: 17px;
  box-shadow: 0 1px 1px 0 rgba(255, 255, 255, 0.27);
  border-radius: 50%;
  background: #fff;
}

#stars_hp .cta_btn .arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-right: 0 solid transparent;
  border-left: 6px solid #FF6A2E;
  border-bottom: 5px solid transparent;
} */

@media (max-width: 1280px) {
  #stars_hp .container {
    width: 95%;
  }

  #stars_hp .page_front .case_studies .case_studies_list {
    flex-direction: column;
    gap: 120px;
  }

  #stars_hp .page_front .front_company .front_company_list {
    gap: 20px;
  }

}

@media (max-width: 768px) {
  #stars_hp .container {
    width: calc(100% - 32px);
  }

  #stars_hp .pc {
    display: none;
  }

  #stars_hp .sp {
    display: block;
  }

  #stars_hp h2 {
    font-size: 35px;
  }

  #stars_hp p.sub_title {
    font-size: 16px;
  }

  #stars_hp h2::after {
    width: 100px;
    bottom: -5px;
  }
}

/***************************************
          FV
*****************************************/
#stars_hp .fv {
  background: url(img/fv.png) no-repeat center center;
  background-size: cover;
  height: 92vw;
}

#stars_hp .fv_cta {
  display: block;
  width: 365px;
  height: 50px;
  position: absolute;
  top: 48.4%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#stars_hp .fv_button_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: unset;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  gap: 20px;
  width: 500px;
  height: 100px;
  /* background: url(img/fv_button_bg.png) no-repeat center center; */
  /* === ガラスエフェクト === */
  background: rgba(255, 255, 255, 0.1);
  /* 半透明の白 */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  backdrop-filter: blur(12px) saturate(120%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 70px;
  background-size: contain;
  transition: all 0.3s ease;
  opacity: 0;
}

/* PC版でスクロール追従時のスタイル */
@media (min-width: 769px) {
  #stars_hp .fv_button_box.is-sticky {
    opacity: 1;
  }
}

#stars_hp .fv_button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 60px;
}

@media (max-width: 768px) {
  #stars_hp .fv {
    height: 147vw;
    background: url(img/fv_sp.png) no-repeat center center;
    background-size: cover;
  }

  #stars_hp .fv_button_box {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 14px 14px;
    /* === ガラスエフェクト === */
    background: rgba(255, 255, 255, 0.1);
    /* 半透明の白 */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    backdrop-filter: blur(12px) saturate(120%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    /* 位置関係 - 追従表示 */
    position: fixed;
    top: unset;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: calc(100% - 32px);
    height: 68px;
    border-radius: 70px;
    opacity: 1;
  }

  #stars_hp .fv_button {
    width: 50%;
    height: 40px;
  }

  #stars_hp .fv_cta {
    width: 190px;
    height: 35px;
    top: 50%;
  }
}


/***************************************
          SERVICES
*****************************************/
#stars_hp .page_front .front_services {
  background: linear-gradient(to bottom right, #3D90F1, #0E56D7);
  color: #fff;
  padding: 80px 0 100px;
  overflow-x: hidden;
}

#stars_hp .page_front .front_services h2 {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  color: #fff;
}

#stars_hp .page_front .front_services h2::after {
  background: #fff;
}

#stars_hp .page_front p.sub_title {
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 40px;
  font-weight: bold;
}

#stars_hp .page_front p.front_services_title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 200px;
  letter-spacing: 0.05em;
  position: absolute;
  top: 144px;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #EDF6FF;
  /* background: linear-gradient(to bottom, #EDF6FF, #EEF7FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; */
  opacity: 0.07;
  text-wrap: nowrap;
}

#stars_hp .page_front .front_services_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 29px;
  margin-top: 40px;
}

#stars_hp .page_front .front_services_item {
  width: 535px;
  height: 301px;
  border-radius: 70px;
}

#stars_hp .page_front .front_services_item p {
  position: relative;
  font-size: 22px;
  letter-spacing: 0.1em;
  line-height: 40px;
  font-weight: 500;
  background: #fff;
  padding: 20px 54px;
  border-radius: 0 0 70px 70px;
  font-weight: bold;
}

#stars_hp .page_front .front_services_item p::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 56px;
  width: 30px;
  height: 30px;
  margin: auto;
  border-radius: 20px;
  background-color: #2C7CE8;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.27));
}

#stars_hp .page_front .front_services_item p::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 63px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 7px solid transparent;
  border-right: 0 solid transparent;
  border-left: 12px solid #fff;
  border-bottom: 7px solid transparent;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  #stars_hp .page_front .front_services {
    padding: 40px 0 63px;
  }

  #stars_hp .page_front p.sub_title {
    font-size: 16px;
  }

  #stars_hp .page_front p.front_services_title {
    font-size: 62px;
    top: 78px;
  }

  #stars_hp .page_front .front_services_item {
    height: 234px;
    width: 100%;
    border-radius: 40px;
  }

  #stars_hp .page_front .front_services_item>img {
    height: 172px;
    object-fit: cover;
    border-radius: 40px 40px 0 0;
  }

  #stars_hp .page_front .front_services_item p {
    font-size: 14px;
    padding: 20px 30px;
    border-radius: 0 0 40px 40px;
    line-height: normal;
  }

  #stars_hp .page_front .front_services_item p::before {
    right: 30px;
    width: 20px;
    height: 20px;
  }

  #stars_hp .page_front .front_services_item p::after {
    right: 35px;
    border-top: 5px solid transparent;
    border-right: 0 solid transparent;
    border-left: 8px solid #fff;
    border-bottom: 5px solid transparent;
    box-sizing: border-box;
  }
}


/***************************************
          CASE STUDIES
*****************************************/
#stars_hp .page_front .front_bg {
  background: url(img/front_bg.png) no-repeat center center;
}

#stars_hp .page_front .case_studies {
  padding: 100px 0 206px;
}

#stars_hp .page_front .case_studies .case_studies_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 69px;
}

#stars_hp .page_front .case_studies .case_studies_item {
  width: 330px;
  /* height: 440px; */
  border-radius: 50px;
  border: 1px solid #DFDFDF;
  position: relative;
}

#stars_hp .page_front .case_studies .case_studies_item_title {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.07em;
  position: relative;
  height: 80px;
  background: linear-gradient(to bottom, #0485EB 0%, #0E56D7 100%);
  color: #fff;
  font-weight: bold;
  border-radius: 50px 50px 0 0;
  display: flex;
  align-items: center;
  padding-left: 91px;
}

#stars_hp .page_front .case_studies .case_studies_item_title span {
  font-size: 14px;
}

#stars_hp .page_front .case_studies .case_studies_item_title img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -50px;
  width: 100px;
  height: 100px;
}

#stars_hp .page_front .case_studies .case_studies_item_content {
  font-size: 22px;
  letter-spacing: 0.1em;
  background: #fff;
  padding: 15px 15px 30px;
  border-radius: 0 0 50px 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#stars_hp .page_front .case_studies .case_studies_item_content dl {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  height: 66px;
}

#stars_hp .page_front .case_studies .case_studies_item_content_border {
  width: 100%;
  height: 2px;
  background: #DFDFDF;
}

#stars_hp .page_front .case_studies .case_studies_item_content dt {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #fff;
  background: #606060;
  border-radius: 50px;
  padding: 5px 8px 6px;
  display: inline-block;
}

#stars_hp .page_front .case_studies .case_studies_item_content dd {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.04em;
  width: 220px;
}

#stars_hp .page_front .case_studies .case_studies_item_content dd span {
  background: linear-gradient(to bottom, #0485EB 0%, #0E56D7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  /* 文字部分にだけ背景を反映 */
  -webkit-text-fill-color: transparent;
  /* 背景を見せるため文字色を透明に */
  font-weight: bold;
}

#stars_hp .page_front .case_studies .case_studies_item_bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 10px;
  border-radius: 10px;
  background: linear-gradient(to bottom, #0485EB 0%, #0E56D7 100%);
}

#stars_hp .page_front .case_studies .case_studies_item_shadow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
}

@media (max-width: 768px) {
  #stars_hp .page_front .case_studies {
    padding: 79px 0 103px;
  }

  #stars_hp .page_front .front_bg {
    background: url(img/front_bg_sp.png) no-repeat center top / cover;
  }

  #stars_hp .page_front .case_studies .case_studies_item {
    width: 320px;
    border-radius: 40px;
  }

  #stars_hp .page_front .case_studies .case_studies_list {
    flex-direction: column;
    justify-content: center;
    gap: 142px;
    margin-top: 54px;
  }

  #stars_hp .page_front .case_studies .case_studies_item_title img {
    left: -30px;
  }

  #stars_hp .page_front .case_studies .case_studies_item_title {
    font-size: 15px;
    padding-left: 95px;
    border-radius: 40px 40px 0 0;
  }

  #stars_hp .page_front .case_studies .case_studies_item_title span {
    font-size: 13px;
  }

  #stars_hp .page_front .case_studies .case_studies_item_content {
    font-size: 14px;
    border-radius: 0 0 40px 40px;
  }

  #stars_hp .page_front .case_studies .case_studies_item_content dt {
    font-size: 11px;
  }

  #stars_hp .page_front .case_studies .case_studies_item_content dd {
    width: 210px;
    font-size: 13px;
  }
}


/***************************************
          COMPANY
*****************************************/
#stars_hp .page_front .front_company {
  padding: 100px 0 305px;
  overflow: hidden;
}

#stars_hp .page_front .front_company .front_company_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 59px;
}

#stars_hp .page_front .front_company .front_company_list a {
  width: 535px;
  height: 280px;
}

#stars_hp .page_front .front_company .front_company_about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 188px;
  position: relative;
}

#stars_hp .page_front .front_company .front_company_about_title {
  writing-mode: vertical-rl;
  text-orientation: upright;
  background: linear-gradient(to bottom, #0B93CF 0%, #0478B9 30%, #005BA8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: 50px;
  letter-spacing: 0.15em;
  line-height: 57px;
  padding-left: 169px;
  position: relative;
  z-index: 1;
}

#stars_hp .page_front .front_company .front_company_about_title p:last-child {
  margin-right: 24px;
  margin-top: 1.15em;
}

#stars_hp .page_front .front_company .front_company_about_content {
  background: url(img/front_company_about_bg.png) no-repeat center center / contain;
  width: 700px;
  height: 550px;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.07em;
  line-height: 40px;
  font-weight: 500;
  padding: 96px 96px;
  position: relative;
  transform: translateY(233px);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

#stars_hp .page_front .front_company .front_company_about_content p:first-child {
  margin-bottom: 20px;
}

#stars_hp .page_front .front_company .front_company_about_content a {
  position: absolute;
  bottom: 130px;
  right: 100px;
  width: 295px;
  height: 56px;
}

#stars_hp .page_front .front_company .front_company_about_bg {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 200px;
  letter-spacing: 0.05em;
  position: absolute;
  top: 215px;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #EDF6FF;
  opacity: 0.7;
  text-wrap: nowrap;
  z-index: 0;
}

@media (max-width: 768px) {
  #stars_hp .page_front .front_company {
    padding: 60px 0 37px;
  }

  #stars_hp .page_front .front_company .front_company_list a {
    width: 45%;
    height: 117px;
  }

  #stars_hp .page_front .front_company .front_company_list {
    margin-top: 47px;
  }

  #stars_hp .page_front .front_company .front_company_about {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 79px;
  }

  #stars_hp .page_front .front_company .front_company_about_title {
    font-size: 27px;
    /* line-height: 32px; */
    /* line-height: normal; */
    padding-left: 50px;
  }

  #stars_hp .page_front .front_company .front_company_about_title p:last-child{
    margin-right: 0;
  }

  #stars_hp .page_front .front_company .front_company_about_bg {
    font-size: 62px;
    top: 100px;
  }

  #stars_hp .page_front .front_company .front_company_about_content {
    background: url(img/front_company_about_bg_sp.png) no-repeat center center / contain;
    width: 110%;
    height: 100vw;
    font-size: 14px;
    padding: 25% 0% 25% 11%;
    letter-spacing: 0.02em;
    line-height: 25px;
    margin-top: 0px;
    transform: translateX(-5%);
  }

  #stars_hp .page_front .front_company .front_company_about_content a {
    width: 230px;
    height: 35px;
    bottom: 22%;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }
}


/***************************************
          NEWS
*****************************************/
#stars_hp .page_front .news {
  padding: 100px 0 200px;
}

#stars_hp .page_front .news .news_container {
  display: flex;
  gap: 54px;
}

#stars_hp .page_front .news .news_container .news_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
}

#stars_hp .page_front .news .news_container .news_list .news_item {
  display: flex;
  gap: 25px;
  align-items: baseline;
  border-top: 2px solid #DFDFDF;
  padding-top: 25px;
  padding-left: 37px;
}

#stars_hp .page_front .news .news_container .news_list .news_item div:first-child {
  display: flex;
  gap: 25px;
  align-items: center;
}

#stars_hp .page_front .news .news_container .news_list .news_item:last-child {
  border-bottom: 2px solid #DFDFDF;
  padding-bottom: 25px;
}

#stars_hp .page_front .news .news_container .news_list .news_item .news_date {
  font-size: 20px;
  letter-spacing: 0.07em;
  line-height: 40px;
  font-weight: bold;
}

#stars_hp .page_front .news .news_container .news_list .news_item .news_category {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 30px;
  color: #0181D1;
  border: 2px solid #0181D1;
  border-radius: 50px;
  padding: 0px 12px;
  display: flex;
  align-items: center;
  text-wrap: nowrap;
}

#stars_hp .page_front .news .news_container .news_list .news_item .news_title {
  font-size: 20px;
  letter-spacing: 0.07em;
  line-height: 40px;
  font-weight: bold;
  display: block;
  margin-bottom: 12px;
}

#stars_hp .page_front .news .news_container .news_list .news_item .news_desc {
  font-size: 16px;
  letter-spacing: 0.07em;
  line-height: 30px;
  color: #606060;
}

@media (max-width: 768px) {
  #stars_hp .page_front .news {
    padding: 50px 0 100px;
    gap: 19px;
  }

  #stars_hp .page_front .news .news_container {
    flex-direction: column;
  }

  #stars_hp .page_front .news .news_container .news_list .news_item {
    flex-direction: column;
    padding-top: 12px;
    padding-left: 0px;
    gap: 0;
  }

  #stars_hp .page_front .news .news_container .news_list .news_item div:first-child {
    gap: 8px;
  }

  #stars_hp .page_front .news .news_container .news_list .news_item .news_date {
    font-size: 12px;
  }

  #stars_hp .page_front .news .news_container .news_list .news_item .news_category {
    font-size: 10px;
    padding: 0px 8px;
    height: 20px;
  }

  #stars_hp .page_front .news .news_container .news_list .news_item .news_title {
    font-size: 14px;
    letter-spacing: 0.04em;
    margin-bottom: 0;
  }

  #stars_hp .page_front .news .news_container .news_list .news_item .news_desc {
    font-size: 12px;
    letter-spacing: 0em;
  }
}

/***************************************
          SINGLE
*****************************************/
#stars_hp .single_main {
  padding: 200px 0 200px;
}

#stars_hp .single_main .container {
  width: 1100px;
}

#stars_hp .single_main h1 {
  font-size: 50px;
}

#stars_hp .single_main .post-meta {
  font-size: 16px;
}

#stars_hp .single_main h2 {
  font-size: 30px;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  font-weight: bold;
  margin-bottom: 5px;
}

#stars_hp .single_main h2::after {
  display: none;
}

#stars_hp .single_main h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

#stars_hp .single_main p {
  font-size: 16px;
  margin-bottom: 5px;
}

#stars_hp .single_main .post-content {
  margin-top: 20px;
}

#stars_hp .single_main .wp-block-post-excerpt {
  display: none;
}

@media (max-width: 1280px) {
  #stars_hp .single_main .container {
    width: 95%;
  }
}

@media (max-width: 768px) {
  #stars_hp .single_main .container {
    width: calc(100% - 32px);
  }

  #stars_hp .single_main h1 {
    font-size: 30px;
  }

  #stars_hp .single_main .post-meta {
    font-size: 14px;
  }

  #stars_hp .single_main h2 {
    font-size: 20px;
  }

  #stars_hp .single_main h3 {
    font-size: 16px;
  }

  #stars_hp .single_main p {
    font-size: 14px;
  }

  #stars_hp .single_main .post-content {
    margin-top: 20px;
  }
}