
/*====================================
  00. Edit css
    ----------------------------------
    Structure
    ----------------------------------
    - 1. Global
    - 2. Component
    - 3. Top
    
    ----------------------------------
    Introduction
    ----------------------------------
    scss弄れない人用CSS
    極力scssでお願いします。
    
    ----------------------------------
    Constitution
    ----------------------------------
    
    ----------------------------------
    Change Log
    ----------------------------------
    - 2022/07/28   Founding
    
====================================*/
/*====================================

  - 1. Global
--------------------------------------
  「グローバル」用 style

====================================*/
.contact-section__content .c-tell p.tb-txt {
  margin-top: .8rem;
  padding-top: .5rem;
  border-top: 1px solid rgba(255,255,255,.3);
  line-height: 1.8;
}

.footer-section__banner li p {
  margin-bottom: 5px;
  font-size: .875rem;
  color: #fff;
}
.footer-section__banner li+li {
  margin-top: 10px;
}

.contact-section__content .c-logo img {
  width: 300px;
}

.global-header-banner__brand img {
  width: 310px;
}

.footer-section__banner img {
  background-color: #fff;
  margin-right: 0;
  text-align: right;
  width: 320px;
}

/*====================================

  - 2. Component
--------------------------------------
  「コンポーネント」用 style

====================================*/
.u-about__cell .item-box1,
.u-about__cell .item-box2 {
  display: inline-block;
}
.u-about__cell .item-box1 {
  width: 120px;
  text-align: center;
}

.link-arrow a {
  padding-left: 1rem;
}
.link-arrow a::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid #009a53;
  border-left-color: transparent;
  border-top-color: transparent;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -2px;
  transition: all .5s;
}
.link-arrow a:hover::before {
  border: 1px solid #ea5420;
  border-left-color: transparent;
  border-top-color: transparent;
}
.text-link {
  position: relative;
  color: #009a53;
}
.text-link:hover {
  color: #ea5420;
}
.text-link::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background: url(../fonts/pdf-icon.svg) no-repeat left top / 100% auto;
}
.text-link small {
  font-size: 80%;
  color: #555;
}



/*====================================

  - 3. Top
--------------------------------------
  「トップ」用 style

====================================*/