/* common
----------------------------------------------------------- */
body {
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  color: #403423;
  overflow: hidden;
  animation: fadeIn 2s ease 0s 1 normal; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
#wrapper {
  width: auto;
  margin: 0 auto; }

@media screen and (min-width: 769px) {
  .sp {
    display: none; } }

p {
  line-height: 2.0; }

a {
  color: #403423;
  text-decoration: none;
  transition: all .3s; }

a:hover {
  text-decoration: none; }

.en {
  font-family: 'Inter', sans-serif; }

.num {
  font-family: 'Inter', sans-serif; }

::-moz-selection {
  background: #18ac38;
  color: #fff; }

::selection {
  background: #18ac38;
  color: #fff; }

@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none; } }
.btn-gr {
  width: 100%;
  max-width: 100%;
  background-image: linear-gradient(46deg, #abcd03 0%, #5dc473 100%);
  color: #FFF;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 2em;
  line-height: 1.0;
  border-radius: 100px;
  box-shadow: 0px 0px 21px 0px rgba(171, 205, 3, 0.5);
  outline: none;
  transition: all .3s;
  display: block;
  position: relative; }
  .btn-gr::after {
    content: '';
    position: absolute;
    background: url("../images/common/icon_arrow_w.svg") no-repeat center right;
    background-size: 25px;
    width: 25px;
    height: 18px;
    top: calc(50% - 9px);
    right: 30px; }
  .btn-gr:hover {
    filter: brightness(105%) saturate(120%); }

.js-fade_up {
  opacity: 0;
  transform: translateY(200px);
  transition: opacity 1.2s ease-in-out, transform 1.2s cubic-bezier(0.25, 1, 0.5, 1); }

.js-fade_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
  transition-delay: .1s; }

.js-fade_down {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 1.8s ease-in-out, transform 1.8s cubic-bezier(0.25, 1, 0.5, 1); }

.js-fade_down.is-show {
  transform: translate(0, 0);
  opacity: 1;
  transition-delay: .3s; }

.js-fade {
  opacity: 0;
  transform: scale(0.5, 0.5);
  transition: opacity 1.1s ease-in-out, transform 1.1s cubic-bezier(0.25, 1, 0.5, 1); }

.js-fade.is-show {
  transform: scale(1, 1);
  opacity: 1;
  transition-delay: .2s; }

/* header
----------------------------------------------------------- */
#top .head-wrap {
  width: 100%;
  position: relative; }
  #top .head-wrap::after {
    content: '';
    position: absolute;
    background: url("../images/common/tp_head_bg.jpg") top center repeat-x;
    width: 100%;
    height: 100%;
    top: 150px;
    left: 0;
    right: 0;
    margin: 0 auto; }

.top-head {
  width: 100%;
  position: relative; }

.top-head-inner {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: space-between;
  position: relative;
  background: #fff; }

@media screen and (min-width: 769px) {
  .top-head-inner {
    display: flex !important; } }
.head-logo {
  padding-top: 42px;
  padding-left: calc((90 / 1920) * 100vw);
  padding-right: 40px;
  flex-shrink: 0; }

@media screen and (max-width: 1280px) {
  .head-logo {
    padding-left: calc((40 / 1920) * 100vw); }
    .head-logo .logo {
      width: 180px; } }
.global-nav {
  height: 120px;
  padding-top: 48px;
  padding-right: 320px; }
  .global-nav .menu {
    display: flex;
    gap: calc((60 / 1920) * 100vw); }
    .global-nav .menu a {
      color: #403423;
      font-size: 16px;
      font-size: 1.6rem;
      font-weight: 600;
      letter-spacing: 0.05em; }
      .global-nav .menu a:hover {
        color: #18ac38;
        text-shadow: 0px 0px 10px rgba(171, 205, 3, 0.3); }

.head-contact {
  width: 240px;
  height: 150px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2; }
  .head-contact a {
    width: 240px;
    height: 150px;
    background-image: linear-gradient(46deg, #abcd03 0%, #18ac38 70%);
    color: #fff;
    text-align: center;
    position: relative;
    display: block;
    padding-top: 72px;
    border-radius: 120px 0 120px 0; }
    .head-contact a::before {
      content: '';
      position: absolute;
      background: url("../images/common/icon_mail.svg") no-repeat top center;
      background-size: 30px;
      width: 30px;
      height: 22px;
      top: 32px;
      left: 0;
      right: 0;
      text-align: center;
      margin: 0 auto; }
    .head-contact a:hover {
      filter: brightness(105%) saturate(120%); }
  .head-contact .ja {
    font-size: 20px;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.05em; }
  .head-contact .en {
    display: block;
    font-size: 12px;
    font-size: 1.2rem;
    color: #fff471;
    letter-spacing: 0.1em;
    margin-top: 1.2em; }

@media screen and (min-width: 769px) {
  .top-head-inner.fixed {
    height: 80px;
    position: fixed;
    top: 0;
    z-index: 999; }
    .top-head-inner.fixed .head-logo {
      padding-top: 22px; }
    .top-head-inner.fixed .global-nav {
      padding-top: 30px;
      padding-right: 200px; }
    .top-head-inner.fixed .head-contact {
      width: 160px;
      position: absolute;
      top: 0;
      right: 0;
      z-index: 2; }
      .top-head-inner.fixed .head-contact a {
        width: 160px;
        height: 100px;
        padding-top: 45px;
        border-radius: 80px 0 80px 0; }
        .top-head-inner.fixed .head-contact a::before {
          background-size: 20px;
          width: 20px;
          top: 18px; }
      .top-head-inner.fixed .head-contact .ja {
        font-size: 16px;
        font-size: 1.6rem; }
      .top-head-inner.fixed .head-contact .en {
        font-size: 10px;
        font-size: 1rem;
        margin-top: 1em; } }
/* visual
----------------------------------------------------------- */
#tp-visual {
  width: 100%;
  clear: both;
  position: relative;
  z-index: 1; }

.tp-visual-inner {
  max-width: 1600px;
  width: calc((1600 / 1920) * 100vw);
  height: 820px;
  margin: 0 auto;
  background: url("../images/tp_visual_img.jpg") no-repeat top center/cover;
  position: relative; }

.tp-visual-copy {
  position: absolute;
  top: 160px;
  left: calc((250 / 1920) * 100vw);
  padding-right: 40px;
  z-index: 2; }

.tp-visual-circle {
  position: absolute;
  top: 40px;
  left: calc((50 / 1920) * 100vw);
  z-index: 1;
  animation: recycle 10s linear infinite; }

@keyframes recycle {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.scrolldown {
  position: absolute;
  top: 70%;
  right: 5%;
  z-index: 3; }
  .scrolldown span {
    position: absolute;
    left: -0.5em;
    top: 10px;
    color: #18ac38;
    font-size: 12px;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.0;
    letter-spacing: 0.05em;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl; }
  .scrolldown::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3.3px;
    background: url("../images/scroll_down.svg") no-repeat;
    width: 7px;
    height: 23px;
    z-index: 1;
    animation: circlemove 2s ease-in-out infinite, cirlemovehide 2s ease-out infinite; }
  .scrolldown::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 80px;
    background-color: #18ac38; }

@keyframes circlemove {
  0% {
    bottom: 100px; }
  100% {
    bottom: -20px; } }
@keyframes cirlemovehide {
  0% {
    opacity: 0; }
  40% {
    opacity: 0; }
  50% {
    opacity: 0.8; }
  80% {
    opacity: 0.3; }
  100% {
    opacity: 0; } }
/* .tp-intro
----------------------------------------------------------- */
.tp-intro {
  width: 100%;
  clear: both;
  position: relative;
  background: #f8faf2;
  padding: 0 5% 280px;
  padding-top: calc((370 / 1920) * 100vw); }

@media screen and (max-width: 1420px) {
  .tp-intro {
    padding-bottom: 360px; } }
.tp-intro-ttl {
  z-index: 3;
  position: relative;
  display: flex;
  padding-left: calc((200 / 1920) * 100vw); }

.tp-intro-lead {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #18ac38;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  z-index: 2;
  position: relative; }
  .tp-intro-lead::before {
    content: '';
    position: absolute;
    background: url("../images/tp_info_kine.svg") no-repeat top left;
    width: 13px;
    height: 650px;
    top: -1em;
    right: -1.2em; }
  .tp-intro-lead p {
    font-weight: 600; }

.tp-intro-copy {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: clamp(30px, 2.34375vw, 45px);
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-left: 1.6em; }
  .tp-intro-copy span {
    display: block;
    font-weight: 600; }
  .tp-intro-copy .line02 {
    margin-top: 1.1em; }
  .tp-intro-copy .line03 {
    margin-top: 2.2em; }
  .tp-intro-copy strong {
    color: #18ac38;
    font-weight: 600; }

.tp-intro-txt {
  position: absolute;
  top: calc((800 / 1920) * 100vw);
  left: calc((740 / 1920) * 100vw);
  width: calc((380 / 1920) * 100vw);
  z-index: 3; }
  .tp-intro-txt p {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 2.0; }

@media screen and (max-width: 1280px) {
  .tp-intro-txt {
    top: calc((1000 / 1920) * 100vw); }
    .tp-intro-txt p {
      font-size: 16px;
      font-size: 1.6rem; } }
.tp-intro-img {
  position: absolute;
  top: 100px;
  right: 0;
  z-index: 2; }

@media screen and (max-width: 1420px) {
  .tp-intro-img {
    top: calc((100 / 1920) * 100vw);
    width: 70vw; } }
.tp-mission {
  position: absolute;
  top: calc((200 / 1920) * 100vw);
  left: 0;
  z-index: 1; }

/* .tp-service
----------------------------------------------------------- */
.tp-service {
  width: 100%;
  position: relative;
  padding: 60px 5% 140px; }
  .tp-service::before {
    content: '';
    position: absolute;
    background: url("../images/tp_service_circle.svg") no-repeat top center;
    width: 505px;
    height: 88px;
    top: -88px;
    left: 0;
    right: 0;
    margin: 0 auto; }
  .tp-service::after {
    content: '';
    position: absolute;
    background: url("../images/tp_service_bg.jpg") no-repeat top center/cover;
    width: 100%;
    height: 900px;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1; }

.ttl-green {
  text-align: center;
  background: url("../images/common/icon_green@2x.png") no-repeat top center;
  background-size: 30px;
  padding-top: 48px; }
  .ttl-green .en {
    font-size: 16px;
    font-size: 1.6rem;
    color: #abcd03;
    letter-spacing: 0.1em; }
  .ttl-green .ja {
    font-size: 45px;
    font-size: 4.5rem;
    color: #18ac38;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-top: 0.3em; }

.tp-service-lead {
  text-align: center;
  margin-top: 5em; }

.tp-service-list {
  margin-top: 100px; }
  .tp-service-list ul {
    display: flex;
    justify-content: center; }
  .tp-service-list li {
    width: 50%;
    max-width: 730px; }
    .tp-service-list li a {
      display: block;
      position: relative; }
      .tp-service-list li a:hover {
        filter: brightness(105%) saturate(130%); }

.tp-service-item {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: #18ac38;
  opacity: 0.9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding-top: 20px; }
  .tp-service-item h3 {
    color: #fff;
    font-size: 35px;
    font-size: 3.5rem;
    margin-top: 0.6em;
    letter-spacing: 0.1em; }
  .tp-service-item .en {
    color: #fff;
    font-size: 11px;
    font-size: 1.1rem;
    margin-top: 2em;
    letter-spacing: 0.1em;
    display: inline-block; }

.tp-service-txt {
  padding: 32px 108px 0; }

.tp-service-btn {
  width: 460px;
  margin: 100px auto 0; }

/* .tp-works
----------------------------------------------------------- */
.tp-works {
  width: 100%;
  padding: 100px 0 220px;
  background: url("../images/tp_works_bg.jpg") no-repeat top left;
  display: flex;
  justify-content: space-between;
  position: relative; }

.tp-works-ttl {
  width: 720px;
  text-align: center;
  position: relative;
  z-index: 1; }
  .tp-works-ttl::after {
    content: '';
    position: absolute;
    background: url("../images/parts_eco.svg") no-repeat top center;
    width: 510px;
    height: 511px;
    top: -50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1; }

.ttl-green-tate {
  text-align: center;
  background: url("../images/common/icon_green@2x.png") no-repeat top center;
  background-size: 30px;
  padding-top: 48px; }
  .ttl-green-tate .en {
    font-size: 16px;
    font-size: 1.6rem;
    color: #abcd03;
    letter-spacing: 0.1em; }
  .ttl-green-tate .ja {
    font-size: 45px;
    font-size: 4.5rem;
    color: #18ac38;
    font-weight: 600;
    letter-spacing: 0.1em;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin: 0.3em auto 0; }

.tp-works-lead {
  margin-top: 80px; }

.tp-works-btn {
  width: 360px;
  margin: 64px auto 0; }

.tp-works-img {
  width: auto;
  padding-top: 100px;
  padding-right: 200px; }
  .tp-works-img ul {
    display: flex;
    justify-content: space-between;
    gap: 10px; }
  .tp-works-img li {
    width: calc(33.33% - 10px);
    text-align: center;
    position: relative; }
    .tp-works-img li.works02 {
      margin-top: 120px; }
    .tp-works-img li.works03 {
      margin-top: 60px; }
  .tp-works-img .tp-works-thum {
    position: relative; }
  .tp-works-img .tp-works-list {
    background: linear-gradient(to bottom, rgba(47, 40, 31, 0) 0%, rgba(47, 40, 31, 0.8) 60%, rgba(47, 40, 31, 0.9) 100%);
    color: #fff;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 600;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 3em 0 2em; }

.works02 .js-fade_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
  transition-delay: .4s; }

.works03 .js-fade_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
  transition-delay: .8s; }

/* .tp-contents
----------------------------------------------------------- */
.tp-contents {
  width: 100%;
  display: flex;
  justify-content: space-between; }

.tp-company {
  background: url("../images/tp_company_bg01.jpg") no-repeat center right/cover;
  width: 50%;
  height: 602px;
  transition: all .3s; }
  .tp-company:hover {
    filter: brightness(110%) saturate(130%); }
  .tp-company a {
    width: 100%;
    height: 100%;
    display: block;
    padding-top: 170px;
    padding-left: 230px;
    position: relative; }
  .tp-company .tp-company-txt {
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    max-width: 400px;
    margin-top: 5em; }

.ttl-sub {
  position: relative; }
  .ttl-sub::before {
    content: '';
    position: absolute;
    background: url("../images/common/icon_green@2x.png") no-repeat top left/20px;
    width: 20px;
    height: 15px;
    top: -12px;
    left: -16px; }
  .ttl-sub .en {
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.1em; }
  .ttl-sub .ja {
    color: #fff;
    font-size: 36px;
    font-size: 3.6rem;
    margin-top: 0.3em;
    letter-spacing: 0.1em; }

.tp-grec {
  width: 50%; }

.tp-greeting {
  background: url("../images/tp_company_bg02.jpg") no-repeat center left/cover;
  height: 300px;
  transition: all .3s; }
  .tp-greeting:hover {
    filter: brightness(110%) saturate(130%); }
  .tp-greeting a {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    padding-top: 100px;
    padding-left: 110px; }

.tp-recruit {
  background: url("../images/tp_company_bg03.jpg") no-repeat center left/cover;
  height: 300px;
  margin-top: 2px;
  transition: all .3s; }
  .tp-recruit:hover {
    filter: brightness(110%) saturate(130%); }
  .tp-recruit a {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    padding-top: 100px;
    padding-left: 110px; }

.arrow-gr {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-image: linear-gradient(46deg, #abcd03 0%, #5dc473 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: calc(50% - 40px);
  right: 90px; }

/* .tp-news
----------------------------------------------------------- */
.tp-news {
  width: 100%;
  clear: both;
  position: relative;
  padding: 180px 5% 160px; }

.tp-news-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; }

.tp-news-ttl {
  width: 260px;
  position: relative; }
  .tp-news-ttl .en {
    color: #abcd03;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.1em; }
  .tp-news-ttl .ja {
    font-size: 28px;
    font-size: 2.8rem;
    letter-spacing: 0.1em;
    margin-top: 0.3em; }
  .tp-news-ttl .tp-news-btn {
    /*position: absolute;
    left: 0;
    bottom: 10px;*/
    margin-top: 100px; }

.tp-news-list {
  width: auto;
  flex: 1; }
  .tp-news-list li {
    margin-bottom: 0.5em; }
  .tp-news-list a {
    background: #f8faf2;
    border-radius: 10px;
    padding: 1.2em 2.4em;
    display: flex;
    align-items: center; }
    .tp-news-list a:hover {
      background: #fff;
      color: #18ac38; }
  .tp-news-list .__date {
    color: #abcd03;
    font-size: 15px;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.0;
    width: 16%; }
  .tp-news-list .__ttl {
    font-size: 16px;
    font-size: 1.6rem;
    width: auto;
    flex: 1;
    line-height: 1.8;
    padding-left: 1em; }

.btn-more {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: block;
  background-image: linear-gradient(46deg, #abcd03 0%, #5dc473 100%);
  position: relative;
  text-align: center;
  padding-top: 42px;
  box-shadow: 0px 0px 21px 0px rgba(171, 205, 3, 0.5); }
  .btn-more:hover {
    filter: brightness(105%) saturate(120%); }
  .btn-more .en {
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 18px;
    padding-left: 0.1em; }

/* .ft-contact 
----------------------------------------------------------- */
.ft-contact {
  background: url("../images/common/ft_contact_bg.jpg") no-repeat top center/cover;
  width: 100%;
  padding: 140px 5% 120px;
  position: relative;
  border-radius: 100px 100px 0 0; }

.ft-contact-ttl {
  color: #fff;
  font-weight: 600;
  font-size: 48px;
  font-size: 4.8rem;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 100px;
  position: relative; }
  .ft-contact-ttl::after {
    content: '';
    position: absolute;
    background: url("../images/common/ft_contact_ttl.png") no-repeat top center;
    width: 1005px;
    height: 150px;
    top: 10px;
    left: 0;
    right: 0;
    margin: 0 auto; }

.ft-contact-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 30px;
  padding: 60px 5% 72px;
  /*text-align: center;*/
  position: relative; }

.ft-contact-ad {
  display: flex;
  justify-content: center;
  margin-top: 48px; }
  .ft-contact-ad .__tel {
    width: 480px;
    height: 110px;
    background: #f6faec;
    border-radius: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.8em; }
    .ft-contact-ad .__tel a {
      color: #18ac38;
      font-size: 36px;
      font-size: 3.6rem;
      position: relative;
      padding-left: 50px; }
      .ft-contact-ad .__tel a::before {
        content: '';
        position: absolute;
        background: url("../images/common/icon_tel.svg") no-repeat left center;
        width: 40px;
        height: 40px;
        top: calc(50% - (40 / 2));
        left: 0; }
  .ft-contact-ad .__form {
    width: 480px;
    height: 110px;
    margin-left: 0.8em; }
    .ft-contact-ad .__form a {
      width: 100%;
      height: 100%;
      display: block;
      background-image: linear-gradient(46deg, #abcd03 0%, #5dc473 100%);
      border-radius: 55px;
      color: #FFF;
      font-size: 22px;
      font-size: 2.2rem;
      letter-spacing: 0.1em;
      padding-left: 0.5em;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: all .3s; }
      .ft-contact-ad .__form a span {
        padding-left: 40px;
        font-weight: 600;
        position: relative; }
        .ft-contact-ad .__form a span::before {
          content: '';
          position: absolute;
          background: url("../images/common/icon_mail.svg") no-repeat left center;
          width: 30px;
          height: 22px;
          top: calc(50% - (22 / 2));
          left: 0; }
      .ft-contact-ad .__form a:hover {
        filter: brightness(105%) saturate(120%); }

.parts-green {
  position: absolute;
  top: -150px;
  right: 140px;
  z-index: 0; }

/* footer
----------------------------------------------------------- */
.foot-wrap {
  width: 100%;
  clear: both;
  background: #f8faf2; }

.ft-top {
  width: 100%;
  padding-top: 140px;
  padding-bottom: 270px;
  background: url("../images/common/ft_bg.png") no-repeat bottom center;
  background-size: 100%;
  position: relative; }

.ft-top-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; }

.ft-info {
  width: 50%; }
  .ft-info .ft-logo {
    margin-bottom: 48px; }
  .ft-info dt {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1em; }
  .ft-info dd {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.8; }

.ft-link {
  width: 50%; }
  .ft-link ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap; }
  .ft-link li {
    width: calc(100% / 4);
    margin-bottom: 2em; }
    .ft-link li a {
      font-size: 16px;
      font-size: 1.6rem;
      font-weight: 600;
      position: relative;
      padding-left: 16px;
      line-height: 1.6; }
      .ft-link li a:hover {
        color: #18ac38; }
      .ft-link li a::before {
        content: '';
        position: absolute;
        background: #abcd03;
        width: 8px;
        height: 8px;
        border-radius: 100px;
        top: calc(50% - 3px);
        left: 0; }

.ft-btm {
  width: 100%;
  background: #18ac38;
  margin-top: -5px;
  padding-top: 48px;
  padding-bottom: 100px; }

.ft-btm-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse; }

.ft-copy {
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem; }

.ft-sublink {
  display: flex;
  justify-content: flex-end; }
  .ft-sublink li::before {
    content: "/";
    color: #fff;
    padding-left: 1em; }
  .ft-sublink li:first-child::before {
    display: none; }
  .ft-sublink a {
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    padding-left: 1em; }
    .ft-sublink a:hover {
      text-decoration: underline; }
