@charset "UTF-8";
/* ページ全体のスタイル
------------------------------------------ */
html {
    box-sizing: border-box;
    font-family: "Noto Sans JP";
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Noto Sans JP";
}
img {
    width: 100%;
}

a {
    text-decoration: none;
    color: #ffffff;
}

.logo  img {
    width: 70%;
}

header {
    max-width: 1520px;
    margin: auto;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.logo {
    width: 250px;
    height: auto;
}
nav ul {
    display: flex;
    list-style-type: none;
    padding-inline-start : 0;
    gap: 50px;
}
nav li {
    position: relative;
}
.nav-item .bottom-line {
    position: absolute;
    height: 2px;
    width: 0;
    background: #ED6C00;
    bottom: 0;
    transition: 0.3s;
}
.nav-item li:hover > .bottom-line {
    width: 100%;
}
.nav-item a {
    color: #00A33F;
    font-size: 16px;
    text-decoration: none;
}

header .hamburgur {
    display: none;
}
.slick-next:before, .slick-prev:before {
    color: #ED6C00 !important;
}
@media screen and (max-width: 1120px) {
    header nav ul {
        display: none;
    }
    header .thick .nav-item {
      display: none;
    }
    header .thick .search.flex-between {
      display: none;
    }
    header .thick .bucket {
      display: none;
    }
    header .hamburgur {
      display: block;
      position: absolute;
      top: 40px;
      right: 30px;
    }
    header .hamburgur #hamburgur_icon .hamburgur_button {
      margin-left: auto;
      display: block;
    }
    header .hamburgur #hamburgur_icon .hamburgur_button span {
      display: block;
      height: 2px;
      width: 30px;
      background: #000;
    }
    header .hamburgur #hamburgur_icon .hamburgur_button span:nth-child(2) {
      margin-top: 10px;
    }
    header .hamburgur #hamburgur_icon .hamburgur_button span:last-child {
      margin-top: 10px;
    }
    header .hamburgur #hamburgur_menu {
      position: fixed;
      width: 100%;
      max-width: 240px;
      height: 100%;
      top: 0;
      z-index: 3;
      right: 0;
      background: rgba(255, 255, 255, 0.8);
      padding: 40px 20px 0 40px;
      transition: 0.3s;
      transform: translateX(100%);
    }
    header .hamburgur #hamburgur_menu.active {
      transform: translateX(0);
    }
    header .hamburgur #hamburgur_menu .hamburgur_close_button {
      width: -moz-fit-content;
      width: fit-content;
      display: block;
      margin-left: auto;
    }
    header .hamburgur #hamburgur_menu .hamburgur_close_button span {
      display: block;
      width: 70rem;
      height: 4px;
      background: #000;
      transform: rotate(45deg);
    }
    header .hamburgur #hamburgur_menu .hamburgur_close_button span:last-child {
      margin-top: -2rem;
      transform: rotate(-45deg);
      margin-top: -5px;
    }
    header .hamburgur #hamburgur_menu ul {
      margin-top: 5rem;
    }
    header .hamburgur #hamburgur_menu ul li {
      padding: 20rem 0;
      list-style: none;
    }
    header .hamburgur #hamburgur_menu ul li .menuitem {
      font-size: 17px;
      letter-spacing: 0.06em;
      color: #000;
    }
    header .hamburgur #hamburgur_menu ul li .menuitem .hove {
      font-size: 17px;
    }
    header .hamburgur #hamburgur_menu ul li .menuitem .hove:hover {
      color: #990000;
    }
    header .hamburgur #hamburgur_menu ul li .menuitem span {
      font-size: 13px;
    }
    header .hamburgur #hamburgur_menu ul .menuLink {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 40rem;
      margin-top: 10rem;
    }
    header .hamburgur #hamburgur_menu ul .menuLink img {
      width: 50rem;
    }
    header .hamburgur #hamburgur_menu ul .menuLink img:hover {
      animation: hovereft 0.3s linear forwards;
    }

}


.container {
    width: 100%;
    position: relative;
}
.bg_img {
    height: 980px;
    overflow: hidden;
}
.bg_img img {
    width: 100%;
    height: 980px;
}
.container .title {
    position: absolute;
    top: 550px;
    left: 250px;
    background-color: #ED6C00;
    border-radius: 15px;
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    padding: 50px;
    line-height: 60px;
    margin-left: 20px;
}
.container .title hr {
    border: 2px solid;
    border-color: #ffffff
}
.overview {
    background: url(./img/istockphoto-619260962-2048x2048-transformed.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 250px;
    text-align: center;
}
.overview .title {
    font-size: 48px;
    color: #ED6C00;
    text-align: center;
}
.overview .desc {
    line-height: 40px;
    margin-top: 50px;
    color: #000000;
    font-size: 19px;
    text-align: center;
}
.overview_more {
    margin-top: 70px;
    background-color: #ED6C00;
    border-radius: 10px;
    padding: 16px 70px;
    font-size: 20px;
    font-weight: Medium;
    display: inline-block;
}
.overview .buttons {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
}
.buttons a {
    gap: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 30px;
    font-weight: Medium;
    padding: 10px;
    border-radius: 20px;
}
.buttons a img {
    display: flex;
    align-items: center;
}
.buttons a:nth-child(1) {
    background-color: #ED6C00;
}
.buttons a:nth-child(2) {
    background-color: #FDB03C;
}
.buttons a:nth-child(3) {
    background-color: #00A33F;
}

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

.box span{
	display: block;
	width: 20px;
	height: 20px;
	border-bottom: 2px solid white;
	border-right: 2px solid white;
	transform: rotate(45deg);
	margin: -10px;
	animation: animate 2s infinite;
}

.box span:nth-child(2)
{
	animation-delay: -0.2s;
}

.box span:nth-child(3)
{
	animation-delay: -0.4s;
}

@keyframes animate{
	
	0%{
		opacity: 0;
		transform: rotate(45deg) translate(-20px, -20px);
	}
	50%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		transform: rotate(45deg) translate(20px, 20px);
	}
}

.section {
    max-width: 1520px;
    width: 80%;
    margin: auto;
    margin-top: 100px;
}
.paragraph1 {
    display: flex;
    align-items: center;
}
.col1 {
    width: 70%;    
    padding: 80px 0px 115px 0px;
    font-size: 19px;
    color: #000000;
    line-height: 40px;

}
.paragraph1 .col1 {
    background-color: #ED6C00;
}
.col1 .title {
    font-size: 30px;
    color: #ffffff;
    line-height: 44px;
    display: inline-block;
    margin-left: 120px;
}
.col1 .desc {
    margin-left: 120px;
    letter-spacing: 2px;
}
.col2 {
    width: 50%;    
}
.paragraph1 .col2 {
    margin-left: -20.53%;
}
.paragraph2 {
    display: flex;
}
.paragraph2 .col1 {
    background-color: #FDB03C;
    padding-bottom: 150px;
}
.paragraph2 .col2 {
    margin-right: -20.53%;
    position: relative;
    z-index: 1;
}
.paragraph2 .col1 .title {
    margin-left: 427px;    
}
.paragraph2 .col1 .desc {
    margin-left: 427px;    
}
.paragraph3 {
    display: flex;
    margin-bottom: 100px;
}
.paragraph3 .col1 {
    background-color: #00A33F;
    padding-bottom: 200px;
}
.paragraph3 .col2 {
    margin-left: -20.53%;
}
.section1 {
    margin-top: 10rem;
    background: url(./img/istockphoto-880217102-612x612.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 85px;
}
.news {
    max-width: 1520px;
    width: 80%;
    margin-top: 85px;
    margin-right: auto;
    margin-left: auto;    
    display: flex;
    justify-content: space-between;
}
.news .col {
    width: 48%;
    display: flex !important;
    align-items: center;    
    border-color: #ED6C00;
    background-color: #ffffff;
    margin: 0 15px;
}
.new {
    border-color: #ED6C00;
    padding: 0 30px 0rem 45px;
    font-size: 19px;
    line-height: 28px;
    width: 45%;
    height: 360px;
}
.news .col .img {
    width: 50%;    
}
.sign {
    background-color: #ED6C00;
    padding: 7px 13px 10px 18px;
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
}
.new .title {
    margin-top: 30px ;
    color: #ED6C00;
    font-size: 20px;
    font-weight: Medium;
    line-height: 35px;
}
.new hr {
    border-color: #ED6C00;
}
.news_more {
    max-width: 300px;
    margin: auto;
    background-color: #ED6C00;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0 16px 0;
    border-radius: 20px;
    font-size: 20px;
    margin-top: 80px;
}
.tire_title {
    margin-top: 70px;
    font-size: 48px;
    color: #00A33F;
    text-align: center;
}
.tire_desc {
    text-align: center;
    margin-top: 50px;
    color: #000000;
    line-height: 30px;
    font-size: 19px;
}
.tire {
    max-width: 1520px;
    width: 80%;
    margin: auto;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.tire .col {
    width: 33%;
    background-color: #ffffff;
    margin-bottom: 50px;
}
.col .detail {
    max-width: 390px;
    height: 220px;
    width: 80%;
    margin: auto;
    margin-top: -68px;
    background-color: #ffffff;
    position: relative;
    padding-top: 28px;
}
.detail .title {
    margin: 0px 40px 0 50px;
    font-size: 20px;
    font-weight: bold;
    color: #00A33F;
}
.detail .title hr {
    border-color: #004684;
}
.detail .desc {
    margin: 43px 40px 0 50px;
    font-size: 19px;
}

/*------------------------footer------------------------*/
footer {
    padding-top: 80px;
}
.sitemap {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;    
}
.map {
    width: 67%;
}
.site_map {
    width: 18.5%;
}
.site_map ul {
    margin-top: 50px; 
    font-size: 20px;
    color: #00A33F;  
    padding-inline-start: 0px; 
}
.site_map li {
    margin-bottom: 40px;
    list-style-type: none;
}
.site_map a {
    color: #00A33F;
}
.copyright {
    width: 80%;
    margin: auto;
    margin-top: 35px;
    margin-bottom: 40px;
    font-size: 14px;
}

@media only screen and (max-width: 1900px) and (min-width: 769px) {
    html,
    body {
      font-size: 0.0520833333333vw;
    }
    .container {
        width: 100%;
        position: relative;
    }
    .bg_img {
        height: 980rem;
        overflow: hidden;
    }
    .bg_img img {
        width: 100%;
        height: 980rem;
    }
    .container .title {
        position: absolute;
        top: 550rem;
        left: 250rem;
        background-color: #ED6C00;
        border-radius: 15rem;
        color: #ffffff;
        font-size: 32rem;
        font-weight: bold;
        padding: 50rem;
        line-height: 60rem;
        margin-left: 20rem;
    }
    .container .title hr {
        border-color: #ffffff
    }
    .overview {
        background: url(./img/istockphoto-619260962-2048x2048-transformed.png);
        background-repeat: no-repeat;
        background-size: cover;
        padding: 100rem 250rem;
        text-align: center;
    }
    .overview .title {
        font-size: 48rem;
        color: #ED6C00;
        text-align: center;
    }
    .overview .desc {
        line-height: 40rem;
        margin-top: 50rem;
        color: #000000;
        font-size: 15rem;
        text-align: center;
    }
    .overview_more {
        margin-top: 70rem;
        background-color: #ED6C00;
        border-radius: 10rem;
        padding: 16rem 70rem;
        font-size: 20rem;
        font-weight: Medium;
        display: inline-block;
    }
    .overview .buttons {
        margin-top: 100rem;
        display: flex;
        justify-content: space-between;
    }
    .buttons a {
        gap: 50rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 30rem;
        font-weight: Medium;
        padding: 10rem;
        border-radius: 20rem;
    }
    .buttons a img {
        display: flex;
        align-items: center;
    }
    .buttons a:nth-child(1) {
        background-color: #ED6C00;
    }
    .buttons a:nth-child(2) {
        background-color: #FDB03C;
    }
    .buttons a:nth-child(3) {
        background-color: #00A33F;
    }
    .section {
        max-width: 1520rem;
        width: 80%;
        margin: auto;
        margin-top: 100rem;
    }
    .paragraph1 {
        display: flex;
        align-items: center;
    }
    .col1 {
        width: 70%;    
        padding: 80rem 0rem 115rem 0rem;
        font-size: 16rem;
        color: #000000;
        line-height: 40rem;
    }
    .paragraph1 .col1 {
        background-color: #ED6C00;
    }
    .col1 .title {
        font-size: 30rem;
        color: #ffffff;
        line-height: 44rem;
        display: inline-block;
        margin-left: 120rem;
    }
    .col1 .desc {
        margin-left: 120rem;
        letter-spacing: 2rem;
    }
    .col2 {
        width: 50%;    
    }
    .paragraph1 .col2 {
        margin-left: -20.53%;
    }
    .paragraph2 {
        display: flex;
    }
    .paragraph2 .col1 {
        background-color: #FDB03C;
        padding-bottom: 150rem;
    }
    .paragraph2 .col2 {
        margin-right: -20.53%;
        position: relative;
        z-index: 1;
    }
    .paragraph2 .col1 .title {
        margin-left: 427rem;    
    }
    .paragraph2 .col1 .desc {
        margin-left: 427rem;    
    }
    .paragraph3 {
        display: flex;
        margin-bottom: 100rem;
    }
    .paragraph3 .col1 {
        background-color: #00A33F;
        padding-bottom: 200rem;
    }
    .paragraph3 .col2 {
        margin-left: -20.53%;
    }
    .section1 {
        margin-top: 10rem;
        background: url(./img/istockphoto-880217102-612x612.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        padding-top: 8.5rem;
    }
    .news {
        max-width: 1520rem;
        width: 80%;
        margin-top: 85rem;
        margin-right: auto;
        margin-left: auto;    
        display: flex;
        justify-content: space-between;
    }
    .news .col {
        width: 48%;
        display: flex;
        align-items: center;    
        border-color: #ED6C00;
        background-color: #ffffff;
        
    }
    .new {
        border-color: #ED6C00;
        padding: 0 30rem 0rem 45rem;
        font-size: 16rem;
        line-height: 28rem;
        width: 45%;
        height: 355rem;
    }
    .news .col .img {
        width: 50%;    
    }
    .sign {
        background-color: #ED6C00;
        padding: 7rem 13rem 10rem 18rem;
        display: inline-block;
        color: #ffffff;
        font-size: 16rem;
    }
    .new .title {
        margin-top: 30rem ;
        color: #ED6C00;
        font-size: 20rem;
        font-weight: Medium;
        line-height: 35rem;
    }
    .new hr {
        border-color: #ED6C00;
    }
    .news_more {
        max-width: 300rem;
        margin: auto;
        background-color: #ED6C00;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16rem 0 16rem 0;
        border-radius: 20rem;
        font-size: 20rem;
        margin-top: 80rem;
    }
    .tire_title {
        margin-top: 70rem;
        font-size: 48rem;
        color: #00A33F;
        text-align: center;
    }
    .tire_desc {
        text-align: center;
        margin-top: 50rem;
        color: #000000;
        line-height: 30rem;
        font-size: 16rem;
    }
    .tire {
        max-width: 1520rem;
        width: 80%;
        margin: auto;
        margin-top: 50rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .tire .col {
        width: 33%;
        background-color: #ffffff;
        margin-bottom: 50rem;
    }
    .col .detail {
        max-width: 390rem;
        height: 220rem;
        width: 80%;
        margin: auto;
        margin-top: -68rem;
        background-color: #ffffff;
        position: relative;
        padding-top: 28rem;
    }
    .detail .title {
        margin: 0rem 40rem 0 50rem;
        font-size: 20rem;
        font-weight: bold;
        color: #00A33F;
    }
    .detail .title hr {
        border-color: #004684;
    }
    .detail .desc {
        margin: 43rem 40rem 0 50rem;
        font-size: 16rem;
    }
    footer {
        padding-top: 80rem;
    }
    .sitemap {
        width: 80%;
        margin: auto;
        display: flex;
        justify-content: space-between;    
    }
    .map {
        width: 67%;
    }
    .site_map {
        width: 18.5%;
    }
    .site_map ul {
        margin-top: 50rem; 
        font-size: 20rem;
        color: #00A33F;  
        padding-inline-start: 0rem; 
    }
    .site_map li {
        margin-bottom: 40rem;
        list-style-type: none;
    }
    .site_map a {
        color: #00A33F;
    }
    .copyright {
        width: 80%;
        margin: auto;
        margin-top: 35rem;
        margin-bottom: 40rem;
        font-size: 14px;
    }
    
}

@media only screen and (max-width: 768px) {
    html,
    body {
      font-size: 0.07vw;
      overflow-x: hidden;
    }

    .logo img {
        width: 70%;
    }
    .container {
        width: 100%;
        position: relative;
    }
    .bg_img {
        height: 980rem;
        overflow: hidden;
    }
    .bg_img img {
        width: 100%;
        height: 980rem;
    }
    .container .title {
        position: initial;
        background-color: #ED6C00;
        border-radius: 15rem;
        color: #ffffff;
        font-size: 20px;
        font-weight: bold;
        padding: 50rem;
        line-height: 131rem;
        margin-left: auto;
    }
    .container .title hr {
        border-color: #ffffff
    }
    .overview {
        background: url(./img/istockphoto-619260962-2048x2048-transformed.png);
        background-repeat: no-repeat;
        background-size: cover;
        padding: 100rem 100rem;
        text-align: center;
    }
    .overview .title {
        font-size: 24px;
    color: #ED6C00;
    text-align: center;
    }
    .overview .desc {
        line-height: 20px;
    margin-top: 50rem;
    color: #000000;
    font-size: 12px;
    text-align: left;
    }
    .overview_more {
        margin-top: 70rem;
    background-color: #ED6C00;
    border-radius: 10rem;
    padding: 40rem 137rem;
    font-size: 20px;
    font-weight: Medium;
    display: inline-block;
    }
    .overview .buttons {
        margin-top: 100rem;
    display: grid;
    justify-content: center;
    }
    .buttons a {
        gap: 50rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        font-weight: Medium;
        padding: 20rem 30rem;
        border-radius: 20rem;
        margin-bottom: 10px;
    }
    .buttons a div:last-child img {
        max-width: 20px;
    }
    .buttons a img {
        display: flex;
        align-items: center;
    }
    .buttons a:nth-child(1) {
        background-color: #ED6C00;
    }
    .buttons a:nth-child(2) {
        background-color: #FDB03C;
    }
    .buttons a:nth-child(3) {
        background-color: #00A33F;
    }
    .section {
        width: 80%;
        margin: auto;
        margin-top: 100rem;
    }
    .paragraph1 {
        display: block;
        align-items: center;
    }
    .col1 {
        width: 100%;
    padding: 80rem 0rem 115rem 0rem;
    font-size: 16px;
    color: #000000;
    line-height: 40rem;
    }
    .paragraph1 .col1 {
        background-color: #ED6C00;
    }
    .col1 .title {
        font-size: 18px;
        color: #ffffff;
        display: inline-block;
        margin: 0 60rem;
        text-align: center;
    }
    .col1 .title hr {
        margin: 0;
        margin-bottom: 10px;
    }
    .col1 .desc {
        margin: 0 60rem;
        letter-spacing: 2px;
        line-height: 20px;
        text-align: left;
        font-size: 12px;
    }
    .col2 {
        width: 100%;    
    }
    .paragraph1 .col2 {
        margin-left: auto;
    }
    .paragraph2 {
        display: flex;
        flex-direction: column-reverse;
    }
    .paragraph2 .col1 {
        background-color: #FDB03C;
        padding-bottom: 150rem;
    }
    .paragraph2 .col2 {
        margin-right: -20.53%;
        position: relative;
        z-index: 1;
    }
    .paragraph2 .col1 .title {
        margin-left: 70rem;    
    }
    .paragraph2 .col1 .desc {
        margin-left: 70rem;    
    }
    .paragraph3 {
        display: block;
        margin-bottom: 95rem;
    }
    .paragraph3 .col1 {
        background-color: #00A33F;
        padding-bottom: 200rem;
    }
    .paragraph3 .col2 {
        width: 100%;
        margin: 0;
    }
    .paragraph1, 
    .paragraph2, 
    .paragraph3 {
        margin-bottom: 20px;
    }
    .section1 {
        margin-top: 10rem;
        background: url(./img/istockphoto-880217102-612x612.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        padding-top: 8.5rem;
    }
    .news {
        max-width: 1520rem;
        width: 80%;
        margin-top: 85rem;
        margin-right: auto;
        margin-left: auto;    
        display: block;
        justify-content: space-between;
    }
    .news .col {
        width: 50%;
    display: block !important;
    align-items: center;
    border-color: #ED6C00;
    background-color: #ffffff;
    margin: auto;
    height: 300px;
    }
    .new {
        border-color: #ED6C00;
        padding: 0 10px;
        font-size: 16rem;
        line-height: 28rem;
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }
    .news .col .img {
        width: 80%;
        margin: auto;    
    }
    .sign {
        background-color: #ED6C00;
        padding: 5px 7px;
        display: inline-block;
        color: #ffffff;
        font-size: 10px;
    }
    .new .title {
        margin-top: 30rem ;
        color: #ED6C00;
        font-size: 12px;
        font-weight: Medium;
        line-height: 1.7;
    }
    .new hr {
        border-color: #ED6C00;
    }
    .news_more {
        max-width: 670rem;
        margin-top: 70rem;
        background-color: #ED6C00;
        border-radius: 10rem;
        padding: 40rem 137rem;
        font-size: 16px;
        font-weight: Medium;
        display: flex;
    }
    .tire_title {
        margin-top: 70rem;
    font-size: 24px;
    color: #00A33F;
    text-align: center;
    }


    .buttons img {
        max-width: 50px;
    }

    .new .desc {
        font-size: 10px;
        line-height: 1.7;
    }

    .tire_desc {
        text-align: left;
        margin-top: 50rem;
        color: #000000;
        line-height: 30px;
        font-size: 12px;
        padding: 0 150rem;
    }
    .tire {
        max-width: 1520rem;
        width: 80%;
        margin: auto;
        margin-top: 50rem;
        display: grid;
        flex-wrap: wrap;
        grid-template-columns: 1fr;
        justify-content: space-between;
    }
    .tire .col {
        width: 95%;
    background-color: #ffffff;
    margin-bottom: 50rem;
    }
    .col .detail {
        max-width: 945rem;
        height: 560rem;
        width: 92%;
        margin: auto;
        margin-top: -170rem;
        background-color: #ffffff;
        position: relative;
        padding-top: 28rem;
    }
    .detail .title {
        margin: 3rem 40rem 0 50rem;
    font-size: 20px;
    font-weight: bold;
    color: #00A33F;
    }
    .detail .title hr {
        border-color: #004684;
    }
    .detail .desc {
        margin: 43rem 40rem 0 50rem;
        font-size: 12px;
    }
    footer {
        padding-top: 80rem;
    }
    footer .logo img {
        width: 300rem;
    } 
    .sitemap {
        width: 80%;
        margin: auto;
        display: block;
        justify-content: space-between;    
    }
    .map {
        width: 100%;
    }
    .map iframe {
        border: 2px solid #ED6C00;
    }
    .site_map {
        width: 18.5%;
    }
    .site_map ul {
        width: max-content;
        margin-top: 50rem; 
        font-size: 12px;
        color: #00A33F;  
        padding-inline-start: 0rem; 
    }
    .site_map li {
        margin-bottom: 40rem;
        list-style-type: none;
    }
    .site_map a {
        color: #00A33F;
    }
    .copyright {
        width: 80%;
        margin: auto;
        margin-top: 35rem;
        margin-bottom: 40rem;
        font-size: 14px;
    }
    
}
