@charset "UTF-8";
/*
Theme Name: higashimaru
Description: higashimaru Template
Author: kashimura co.ltd..
*/
html {
  font-size: 15px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  /* 収まらない場合に折り返す */
  overflow-wrap: anywhere;
  /* 単語の分割はデフォルトに依存 */
  word-break: normal;
  /* 禁則処理を厳格に適用 */
  line-break: strict;
}

.in {
  margin: auto;
}

ul,
li {
  list-style: none;
}

a {
  display: inline-block;
  transition: 0.5s;
}

a:hover {
  opacity: 0.7;
}

img {
  display: inline-block;
  clear: both;
  max-width: 100%;
}

/* 背景色 */
#sidebar h2,
.table_block h3,
.post_category,
.bg_yellow {
  background: #ffff00;
}

.bg_gray {
  background: #f0f0f0;
}

/* 見出し */
h2 {
  font-size: 1.5em;
  font-weight: bold;
}

h3 {
  font-weight: 600;
}

.arial {
  font-family: "arial", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 4.5px;
}

.arrow::before {
  content: url(images/icon_arrow.svg);
  width: 1.2em;
  line-height: 1;
}

.flame {
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  position: relative;
}
.flame::before {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -11px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 14px;
  border-color: transparent transparent transparent #ffff00;
  transform: rotate(45deg);
  z-index: 2;
}
.flame::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent #000;
  transform: rotate(45deg);
  z-index: 1;
}
.flame.flame_white::before {
  border-color: transparent transparent transparent #fff;
}

#contact-info,
.home_section {
  padding: 3em 0 3.3em;
}

.heading_wrap {
  text-align: center;
  margin-bottom: 1.3em;
}
.heading_wrap .lead {
  line-height: 2;
  padding-top: 0.6em;
}
.heading_wrap h2 span {
  background: linear-gradient(transparent 83%, #ffff00 83%);
  padding: 0 0.3em;
}
.heading_wrap h2 span.border_white {
  background: linear-gradient(transparent 83%, #ffffff 83%);
}

#contact-info .heading_wrap {
  margin-bottom: 3em;
}

#base {
  margin-top: 1.17em;
}
#base:has(.page_recruit_container) {
  margin-top: 1.8em;
}
#base:has(.page_products_container) {
  margin-top: 2.4em;
}
#base:has(.page_access_container) {
  margin-top: 3.4em;
}

/* ===============
loading
=============== */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #fff;
  text-align: center;
}

#loading_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#loading .kvArea {
  width: 100%;
}

#loading .kvArea .img_box {
  text-align: center;
}

#loading .kvArea .img_box img {
  width: 80%;
}
/*
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.4s;
  animation-delay: 1.4s;
  animation-fill-mode: forwards;
  opacity: 1;
}
*/

@keyframes fadeUpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
/* ===============
header
=============== */
@keyframes add-shadow {
  to {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.26);
  }
}
.site_header {
  background: #fff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  animation: add-shadow linear both;
  animation-timeline: scroll();
  animation-range: 0 150px;
}
.site_header .in {
  height: 100%;
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: auto auto;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.site_header h1 {
  line-height: 0;
}
.site_header h1 .logo {
  width: 42.5555555556vw;
}
.site_header h1 .text {
  width: 27.6666666667vw;
  margin-left: 1em;
}

.header_list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 3em;
}
.header_list li {
  height: 100%;
}
.header_list a {
  display: grid;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.header_list a:hover {
  opacity: 1;
}

.bg_marker a {
  position: relative;
}
.bg_marker a::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #ffff00;
  width: 120%;
  height: 1.5em;
  z-index: -1;
}

.line a {
  position: relative;
}
.line a::before {
  content: "";
  background: #FFEE00;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.line a:hover::before {
  transform: scale(1, 1);
}

.header_list .line a::before {
  left: 0;
  top: 65%;
}

/* ナビゲーションメニュー */
.nab_b,
nav {
  position: fixed;
  top: 13.3333333333vw;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
}

.nab_b {
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  transition: 0.5s;
}

nav {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  transform: translateX(100%);
}

nav.active {
  right: 0;
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.nav_box {
  position: absolute;
  z-index: 10;
  background-color: #9fa0a0;
  color: #fff;
  top: 0;
  bottom: 0;
  padding: 48px 27px 110px;
  width: 100%;
  min-width: 310px;
}

.nav_list a {
  display: block;
  font-size: 26px;
  line-height: 2;
  border-bottom: 1px solid #edf0f2;
  padding-top: 5px;
}

nav.active,
nav.active .nab_b {
  visibility: visible;
  opacity: 1;
}

nav.active .nav_box {
  transform: translateX(0);
}

/* ハンバーガーボタン */
.hamburger_wrapper {
  background: #9fa0a0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13.3333333333vw;
  height: 13.3333333333vw;
}

.navbotn {
  cursor: pointer;
  width: 48%;
  position: relative;
  z-index: 5;
}

.navbotn .hamburger {
  position: relative;
  width: 100%;
  padding-top: 100%;
  display: block;
  margin: 0 auto;
  z-index: 2;
  pointer-events: none;
  cursor: pointer;
}

.navbotn .hamburger span {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #fff;
  margin: auto;
  transition: 0.5s;
  left: 0;
  border-radius: 10px;
}

.navbotn .hamburger span:nth-child(1) {
  top: 0;
}

.navbotn .hamburger span:nth-child(2) {
  top: 0;
  bottom: 0;
}

.navbotn .hamburger span:nth-child(3) {
  bottom: 0;
}

.navbotn.active .hamburger span:nth-child(1) {
  transform: rotate(45deg);
  /* 水平中央に調整 */
  top: 50%;
  /* spanの高さの半分だけ上へ移動 */
  margin-top: -2px;
}

.navbotn.active .hamburger span:nth-child(2) {
  opacity: 0;
  left: 50%;
}

.navbotn.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  /* 水平中央に調整 */
  bottom: 50%;
  /* spanの高さの半分だけ下へ移動 */
  margin-bottom: -2px;
}

.nav_box .navbotn {
  margin: auto;
  margin-bottom: 30px;
}

@media screen and (max-width: 480px) {
  .navbotn .hamburger span {
    height: 2px;
  }
  .navbotn.active .hamburger span:nth-child(1) {
    margin-top: -1px;
  }
  .navbotn.active .hamburger span:nth-child(3) {
    margin-bottom: -1px;
  }
}
/* ===============
footer
=============== */
.contact_info_wrap {
  display: grid;
}
.contact_info_wrap .contact-details,
.contact_info_wrap .contact-link {
  width: 100%;
  height: 100%;
  display: grid;
  align-items: start;
  justify-content: center;
  grid-auto-rows: auto;
  gap: 0.5em;
  text-align: center;
}
.contact_info_wrap .contact-details img,
.contact_info_wrap .contact-link img {
  margin: auto;
  width: 2.8em;
}
.contact_info_wrap .contact-details strong,
.contact_info_wrap .contact-link strong {
  font-size: 1.53em;
  font-weight: 800;
  transition: 0.5s;
}
.contact_info_wrap .contact-link:hover strong {
  transform: translateY(-5px);
}

#footer {
  margin-top: 2.26em;
}
#footer .in {
  width: 85%;
}

.footer_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.3em;
}
.footer_list a {
  padding-bottom: 5px;
}
.footer_list a:hover {
  opacity: 1;
}

.office-addresses .logo_higashimaru {
  width: 62%;
  margin-bottom: 1.3em;
}
.office-addresses .text_higashimaru {
  width: 40%;
}

.office_wrap {
  display: grid;
  gap: 2em;
  margin-top: 1.3em;
  margin-bottom: 2em;
}

.copyright {
  font-size: 0.7em;
  text-align: center;
}

/* ===============
sidebar
=============== */
.sidebar_heading {
  font-size: 1.2em;
  padding: 5px 0.5em;
}

div:has(> .sidebar_heading):not(:first-child) {
  margin-top: 2em;
}

.sidebar_post_cat a,
.sidebar_new_post a {
  width: 100%;
  padding: 1em 0;
  border-bottom: 1px solid #E0E0E0;
}

/* ===============
home 
=============== */
.mv_lead {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 2.8888888889vw;
}
.mv_lead::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  display: block;
  width: 71%;
  height: 100%;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 79.6875% 100%, 0% 100%);
  z-index: 1;
}
.mv_lead .in {
  position: relative;
  z-index: 1;
}

.text_mv01 {
  display: block;
  width: 66%;
}

.text_mv02 {
  display: block;
  width: 52%;
  margin-top: 3.3333333333vw;
}

.mv01 {
  margin-top: 2em;
}
.mv01 .slide-media {
  width: 100%;
  height: auto;
  aspect-ratio: 900/532;
  position: relative;
}
.mv01 .slide-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv01 .slide-media.home-slide img {
  transition: 7s 1s ease-out;
}
.mv01 .splide__slide[class*=-active] .slide-media.home-slide img {
  transition-delay: 0s;
  transform: scale(1.05);
}
.mv01 .splide__track--fade>.splide__list>.splide__slide.is-active{
  transform: translateX(0%)!important;
}

/*vision*/
#home-vision h2{
  text-align: center;
}
/*Advantage*/
.home_advantage{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 361px), 1fr));
  grid-gap: 3em 5em;
}
.home_advantage dt{
  background-color: #fe0;
  text-align: center;
  font-size: 25px;
  margin-bottom: 0.5em;
  padding: 0.2em 0.5em;
}
.home_advantage dd{
  line-height: 2;
  font-size: 20px;
}
.home_advantage dd img{
  display: block;
  margin: auto;
}



#home-topics .post_item {
  line-height: 2.5;
}

.topics_list_btn {
  width: 60%;
  margin: 3em auto 0;
  text-align: center;
}
.topics_list_btn a {
  width: 100%;
  border: 1px solid #E0E0E0;
  background-color: #fafafa;
  border-radius: 4px;
  padding: 0.5em 0;
}
.topics_list_btn a:hover {
  color: #000;
  font-weight: 600;
  background-color: #ffff00;
  letter-spacing: 0.15em;
}

.post_date {
  letter-spacing: 4.5px;
}

.post_category {
  width: 8.6em;
  display: inline-block;
  text-align: center;
  line-height: 1.7;
  margin-left: 1.6em;
}

#home-products .scf_list {
  display: grid;
  gap: 5.8em;
}
#home-products .scf_list .scf_item {
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}
#home-products .scf_list .scf_item::after {
  transform: rotate(45deg) scale(1);
  transition: transform 1s ease;
}
#home-products .scf_list .scf_item.hovering::after {
  transform: rotate(45deg) scale(1.2);
}
#home-products .scf_list a {
  width: 100%;
  border-right: solid 2px transparent;
  border-bottom: solid 2px transparent;
  transition: 1s;
}
#home-products .scf_list a:hover {
  border-right: solid 2px #000;
  border-bottom: solid 2px #000;
}
#home-products .product_img {
  width: 95%;
}
#home-products .product_img img {
  width: 100%;
  height: auto;
  aspect-ratio: 795/298;
  -o-object-fit: cover;
     object-fit: cover;
}
#home-products .product_text_wrap {
  display: flex;
  align-items: center;
  margin-top: 1.3em;
  margin-bottom: 0.8em;
}
#home-products .product_text_wrap > span {
  width: 50%;
  letter-spacing: 1.25px;
}
#home-products .product_cat {
  display: flex;
  align-items: center;
  gap: 1em;
}
#home-products .product_cat_eng {
  font-size: 0.83em;
}

/*ホーム取り扱いメーカー*/
.maker_list a{
  height: 100%;
  max-height: 100px;
  min-height: 5em;
  background-color: #fff;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 10px;
  border: 1px solid #000;
  
}
.maker_list img{
  max-height: 100%;
}

/* ===============
会社概要
=============== */
.table_block li {
  padding: 1.23em 0;
}
.table_block li:not(:last-child) {
  border-bottom: 1px solid #000;
}
.table_block li:nth-child(even) {
  background: #fafafa;
}
.table_block li > h3 {
  text-align: center;
}
.table_block li > p {
  line-height: 1.9;
}
.table_block li > p::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.9) * 0.5em);
}

@media screen and (min-width: 901px) {
  .table_block li > p {
    line-height: 3.1333333333;
  }
  .table_block li > p::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 3.1333333333) * 0.5em);
  }
}
/* ===============
取扱一覧
=============== */
.page_products_container .scf_list {
  width: 90%;
  margin: auto;
}
.page_products_container .product_img {
  margin-bottom: 1em;
}
.page_products_container .product_img img {
  width: 100%;
  height: auto;
  aspect-ratio: 750/215;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_products_container .product_cat {
  font-weight: 600;
  line-height: 2;
  padding: 0 1em;
}
.page_products_container .product_name_wrap {
  width: 92%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 0.6666666667em;
       column-gap: 0.6666666667em;
  margin: 1em auto 1.5em;
}
.page_products_container .product_name li {
  line-height: 1.8;
}
.page_products_container .product_name li::before {
  content: "●";
  color: #dcdcdc;
}

.main_manufacturers_container {
  padding: 2em 0 1.3em;
  margin-top: 3.2em;
}
.main_manufacturers_container .copy,
.main_manufacturers_container h3 {
  text-align: center;
}

.main_manufacturers_list {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  grid-template-rows: repeat(22, auto);
  gap: 10px 4.5em;
  margin: 1em 0 1.5em;
}

.page_products_container .scf_list .scf_item{
  animation: test .8s;
  display: none;
}
@keyframes test {
  0% {
    transform: scale(.1);
  }
  100% {
    transform: none;
  }
}
.page_products_container .scf_list .scf_item.active{
  display: block;
}
.tab_button{
  margin-bottom: 2em;
}
.tab_button ul{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 12em), 1fr));
  grid-gap: 1rem;
}
.tab_button ul a{
  display: block;
  text-align: center;
  padding: 1em;
  border: 2px solid #000;
}
.tab_button ul .active a{
  background-color: #ffff00;
}
.tab_button ul a span{
  display: block;
  transition: 0.5s;
}
.tab_button ul .active a span{
  transform: scale(1.2);
  font-weight: 500;
}
.maker_list:has(.maker_box){
  margin-top: 2em;
}
.maker_box ul{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  grid-gap: 1rem;
}

/* ===============
アクセス
=============== */
.google_map_container article {
  padding-top: 2.5em;
}

.google_map_wrap {
  border: 1px solid #000;
  position: relative;
  overflow-y: hidden;
  width: 100%;
  padding-top: 58.61%;
}
.google_map_wrap iframe {
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  height: calc(100% + 300px);
}

/* ===============
採用情報
=============== */
.page_recruit_container .copy {
  text-align: center;
  margin-bottom: 2.3em;
}
.page_recruit_container .copy strong {
  font-size: 1.3em;
  line-height: 1.375;
}
.page_recruit_container .copy p + p {
  margin-top: 1em;
}

.interview {
  padding: 1.5em 0 4.2em;
}
.interview .heading_wrap h2 {
  letter-spacing: 6.75px;
}

.interview_thumb_wrap ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.67em;
}
.interview_thumb_wrap ul li img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  clip-path: polygon(14.2857142857% 0, 100% 0, 100% 100%, 0 100%, 0 13.671875%);
}
.interview_thumb_wrap ul li .thumb_number {
  font-size: 0.9em;
  font-weight: 800;
  line-height: 1;
}

.interview_copy {
  text-align: center;
  font-weight: 600;
  position: relative;
  margin: 3.83em auto 3.1em;
  width: -moz-fit-content;
  width: fit-content;
}
.interview_copy::before, .interview_copy::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background: #000;
  bottom: 0;
}
.interview_copy::before {
  left: 0;
  transform: rotate(-22deg);
  transform-origin: bottom left;
}
.interview_copy::after {
  right: 0;
  transform: rotate(22deg);
  transform-origin: bottom right;
}

.interview_card {
  padding-bottom: 1em;
}
.interview_card:not(:first-child) {
  margin-top: 5em;
}
.interview_card ._inner {
  width: 97.3311092577%;
}

.interview_img {
  margin-bottom: 0.67em;
}
.interview_img img {
  width: 100%;
  height: auto;
  aspect-ratio: 812/353;
  -o-object-fit: cover;
     object-fit: cover;
}

.interview_text_wrap {
  position: relative;
}
.interview_text_wrap.arrow::before {
  position: absolute;
  left: 0;
  top: 5px;
  width: 0.8em;
}

.interview_meta {
  font-size: 0.93em;
}
.interview_meta .year {
  margin-left: 1em;
}

.interview_name {
  font-size: 1.1666666667em;
  font-weight: 600;
}

.voice_number {
  color: #fff;
  font-size: 2.3666666667em;
  font-weight: 800;
}

.interview_title {
  font-size: 1.1666666667em;
}

.interview_content {
  margin-top: 0.5em;
  text-align: justify;
}

.recruit_info {
  margin: 2.7em 0 1.4em;
}
.page_recruit_container .copy h3{
  font-size: 1.2em;
  margin: 1em 0;
}
.page_recruit_container .copy h3 span{
  background: linear-gradient(transparent 55%, #ffff00 55%);
}
.page_recruit_container .copy2{
  max-width: 700px;
  margin: auto;
  margin-bottom: 5em;
}
.page_recruit_container .copy_text{
  text-align: left;
  line-height: 2;
}
.page_recruit_container .copy3 .copy_text{
  margin: auto;
  margin-bottom: 5em;
  text-align: center;
}
.copy_text h4{
  font-size: 1.1em;
  margin: 1em 0 0.5em;
  font-weight: 500;
}

/* ===============
お問い合わせ
=============== */
.pcbox + .pcbox {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #000;
}

.contact01,
.contact02 .lead {
  text-align: center;
}
.contact01 > h3,
.contact02 .lead > h3 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
.contact01 p,
.contact02 .lead p {
  line-height: 2;
}

.contact01_nobox {
  margin-top: 30px;
}
.contact01_nobox li + li {
  margin-top: 20px;
}

.contactbox {
  margin-bottom: 80px;
}

.contact01_notaitl {
  display: inline-block;
  padding: 7px 20px;
  line-height: 1;
  background-color: #ffff00;
  border-radius: 6px;
  margin-right: 1em;
  vertical-align: middle;
}

.contact01_no {
  font-size: 1.8em;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.foomhedkom {
  margin: 2em 0 1em;
}
.foomhedkom span {
  color: #cf2e2e;
}

.contactfomw li h3 span {
  color: #cf2e2e;
  font-size: 80%;
}
.contactfomw li input,
.contactfomw li textarea {
  background-color: #fafafa;
  padding: 10px;
  width: 100%;
  border: 1px solid #E0E0E0;
}
.contactfomw li .posto {
  display: inline-block;
  max-width: 200px;
  margin: 0 5px;
  width: 40%;
}
.contactfomw li input[type=checkbox] {
  width: auto;
}
.contactfomw li .postolink {
  display: inline-block;
  margin-left: 1em;
  vertical-align: middle;
}
.contactfomw li .postolink a {
  color: #fff;
  background-color: #0079f0;
  border-radius: 6px;
  padding: 7px 20px;
  font-size: 13px;
  margin-top: 20px;
}
.contactfomw li .addressbox {
  margin-top: 10px;
}

.contact_btn {
  margin-top: 40px;
  text-align: center;
}
.contact_btn input {
  font-size: 20px;
  padding: 10px 30px;
  background-color: #000;
  color: #fff;
}

/* ===============
お知らせ一覧
=============== */
.pagnav {
  margin-top: 3em;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pagination > * {
  border: 1px solid #000;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination > span {
  background: #000;
  color: #fff;
}

.page_newslist_container .news_list > li + li {
  margin-top: 3em;
}
.page_newslist_container .post_title {
  font-size: 1.3em;
  padding-bottom: 0.3em;
  margin-top: 5px;
  margin-bottom: 0.3em;
  border-bottom: 1px solid #E0E0E0;
}
.page_newslist_container .post_content {
  text-align: justify;
}/*# sourceMappingURL=style.css.map */

/* ===============
会社概要
=============== */

.heading_content{
  position: relative;
  padding: 2em 3em 0 0;
  max-width: 15em;
  min-width: 14em;
  width: 11%;
}
.heading_content::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #fcb900;
  border-radius: 50%;
}
.heading_content:not(:nth-last-child(1))::after{
  content: "";
  display: block;
  background-color: #999;
  position: absolute;
  z-index: -1;
  
}
.heading_content h4{
  font-size: 1.5em;
  color: #fcb900;
  font-weight: 600;
  margin-bottom: 0.4em;
}

