@charset "utf-8";
/* ======================
common
========================= */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body {
    font-family: "游ゴシック体",
    Arial, 
    sans-serif;
    font-style: normal;
    color: #63592C;
    background-color: #FFFF;
    line-height: 1.5;
    
}
img {
    max-width: 100%;
    height: auto;
}

a:hover{
    cursor: pointer;
}
.section__header{
    text-align: center;
}
.section__topic {
    font-family:"Zen Maru Gothic",
     sans-serif; 
     font-weight: 700;
     font-size: 2.2rem;
     line-height: 2;
     
     
}
.section__topicSubtitle {
    font-family: Arial;
    font-weight: 400;
    font-size: 1.3rem;
    display: inline-block;
    background-color: #FEEBD4;
    border-radius: 10px;
    line-height: 0.8;
    padding: 5px 9px;
    
}
.btn{
    padding: 13px 0 13px;
    text-align: center;
    background-color: #a3b263;
    color: #FFFF;
    font-family: "Zen Maru Gothic", sans-serif ;
    font-size: 1.4rem;
    line-height: 1;
    margin: 30px auto 0;
    border-radius: 30px;
    max-width: 190px;
    position: relative;
}
.btn::after{
    display: block;
    content: '';
    width: 30px;
    height: 15px;
    background-image: url(../images/btn-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.btn:hover{
    opacity: 0.5;
}

.section{
    margin-top: 100px;
}
.content{
    background-color: #FFFBF0;
    border-radius: 20px;
    padding: 50px 6% 50px 6.5%;
    max-width: 1000px;
    margin: 0 auto;
}
@media screen and (min-width:769px) {
    .section__topic{
        font-size: 2.5rem;
    }
}
/* ======================
header
========================= */
.header {
    height: 100px;
    padding: 20px 6%;
    position: relative;
    z-index: 100;
}
.header__btn {
    font-size: 1.8rem;
    text-align: right;
}
.header__btn:hover{
    cursor: pointer;
}
.nav__header {
    text-align: center;
}

/* nav初期表示 */
.nav {
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100vh;
    padding: 24px 6.4%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    transform: translateX(-100%);
    transition: transform 0.4s

}
.nav__btn {
    font-size: 1.8rem;
    text-align: right;
}
.nav__btn:hover{
    cursor: pointer;
}
.nav__top {
    width: 100px;
    height: 100px;
    text-align: center;
}
.nav__list {
    margin: 20px 12%;
}
.nav__item-mail{
    min-width: 20px;
    width: 20px;
}
.nav__item {
    font-family: "Zen Maru Gothic",
     sans-serif;
    font-size: 2rem;
    line-height: 1;
    margin-top: 28px;
    padding:0 0 15px 15px;
    background-image: repeating-linear-gradient(90deg, #a3b263, #a3b263 12px, transparent 12px, transparent 20px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 2px;
    white-space:nowrap;
    position: relative;
}
.nav__list-right li:nth-last-child(-n+2){
    font-size: 1.6rem;
    padding: 12px  15px;
    text-align: center;
    background-color: #a3b263;
    color: #FFFF;
    line-height: 1;
    border-radius: 30px;
    max-width: 200px;
    position: relative;
    margin: 20px auto 0;
}
.nav__list-right li:nth-last-child(-n+2)::after{
    display: block;
    content: '';
    width: 30px;
    height: 15px;
    background-image: url(../images/btn-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.nav__list-right li:nth-last-child(-n+2):hover{
    opacity: 0.5;
}
.nav.active {
    transform: translateX(0);
}

.header__Logo {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}
.Logo__pic {
    width: 120px;
}

/* .header pc 769 */
@media screen and (min-width:769px) {
    .header{
        max-width: 1440px;
        margin: 0 auto;
        padding: 50px 30px;
    }
    .nav{
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
        display: flex;
        align-items: center;
    }
    .nav__list-left{
        position:absolute;
        right: 55%;
    }
    .nav__list-right{
        position: absolute;
        right: 20px;
        left: 58%;
    }
   
    .nav__list{
        display: flex;
        margin: 0;
        align-items: center;
    }
    .nav__item{
        margin-right:30px;
        margin-top: 0;
        background: transparent;
        padding: 0;
        font-size: 1.6rem;
        position: relative;
    }
    
    
    /* .nav__item:nth-last-child(n+4):before{
        content: "";
        position: absolute;
        top: 0;
        left: 100%;
        margin: 0 1rem;
        width: 1px;
        height: 100%;
        background-color: #63592C;
    } */

    /* https://shu-naka-blog.com/css/line/ */

    .nav__list-right li:nth-last-child(-n+2){
        max-width: 150px;
        margin: 0 20px 0 0;
    }
    .nav__list-right li:nth-last-child(-n+2)::after{
    display: none;
    }
    .nav__header{
        display: none;
    }
    .header__btn{
        display: none;
    }
}/* pc 769 */


/* ======================
main
========================= */
/* article header */
.article__header {
    height: 450px;
    background-color: #EBEEDD;
    position: relative;
}
.mainCopy{
    position: absolute;
    top: 10%;
    left: 60%;
    z-index: 90;
}
.mainCopy_pic {
    width: 200px;    
}
.main_building_pc{
    display: none;
}
.main_image-building-pic{
    width: 250px;
}
.main_image-building{
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%);
}
.main_pinkCar{
    position: absolute;
    bottom: 10%;
    left:75%
}
.main_pinkCar_pic{
    width: 50px;
}
.main_greenCar{
    display: none;
}

/* article header pc */
@media screen and (min-width:769px){
    .article__header{
        height: 550px;
    }
   .mainCopy_pic {
        width: 240px};
    
    .mainCopy{
        left: 60%;
    }
    .main_building_pc{
        display: block;
    }
    .main_building_pc_pic{
        width: 400px;
        position: absolute;
        bottom: 15%;
        left: 50%;
        transform: translate(-50%);
    }
    .main_image-building-pic{
        display: none;
    }
    .main_greenCar{
        display: block;
        position: absolute;
        bottom: 10%;
        right: 60%;
    }
    .main_greenCar_pic{
        width: 50px;
    }
}
/* pc 769 */


/* aboutUs */
.section--aboutUs{
    background-image: url(../images/rain.png),url(../images/clouds2.png);
    background-repeat: no-repeat;
    background-size: 400px;
    background-position: center 7%,center 95%;
    padding: 60px 5.3%;
    text-align: center;
    margin-top: 0;
}
.section__topicLead{
    font-family:"Zen Maru Gothic",sans-serif; 
    font-size: 1.8rem;
    margin-top: 35px;
    background-image: repeating-linear-gradient(90deg, #a3b263, #a3b263 11px, transparent 11px, transparent 18px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 1px;
    display: inline-block;
    padding-bottom: 7px;
}
.aboutUs{
    margin-top: 30px;
    font-size: 1.6rem;
    padding: 0 5%;
    line-height: 2;
   
}
.aboutUs__txt{
    padding-bottom: 30px;
}
.br-pc{
    display: none;
}
/* aboutUs pc */
@media screen and (min-width:769px){
.br-pc{
    display: inline-block;
}
.aboutUs{
    font-size: 1.8rem;
}
}
/* pc 769 */


/* message */
.section--message{
    margin-top: 0;
    padding: 0 5.3%;
}
.content--message{
    background-color: #FFFBF0;
    border-radius: 20px;
    padding: 50px;
    max-width: 1000px;
    margin: 0 auto;
}


.message__pic{
    width: 100%;
    min-width: 275px;
    max-width: 275px;
    margin: auto;
}
.message__name-contents{
    display: flex; 
    align-items: center;  
    justify-content: flex-end;
}

.message__house{
    width: 25px;
    margin-right: 10px;
}
.message__name{
    font-family:"Zen Maru Gothic",sans-serif; 
    font-size: 1.8rem;
}
.message__txt{
    margin-top: 10px;
    font-size: 1.6rem;
}
/* message pc */
@media screen and (min-width:769px){
.container--message{
    padding:50px 40px 50px 30px ;
}
 .massage__contents{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    
 }
.message__wrappar{
    margin: 20px auto;
    max-width: 500px;
}
.message__txt{
    font-size: 1.8rem;
}
}
/* pc 769 */



/* worried */
.worried{
    height: 500px;
    background-image: url(../images/birds.png),url(../images/city.png);
    background-repeat: no-repeat;
    background-size: 300px,800px;
    background-position:80% -65%, center 105%;;
    position: relative;
}
.worried__txt{
    text-align: center;
    font-family: "Zen Maru Gothic", sans-serif ;
    font-size: 1.6rem;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%)
}

/* activitiesDetails */
.section--activitiesDetails{
    background-color: #FFFBF0;
    padding: 60px 5.3%;
    margin-top: 0;
}

.activities__listItem{
    background-color: #FFFF;
    padding: 30px 25px 30px 28px;
    margin: 35px auto;
    border-radius: 40px;
    max-width: 320px;
}
.activities__topic{
    text-align: center;
}
.activities__number{
    font-size: 6rem;
    line-height: 1;
}
.activities__img{
    margin-top: 15px;
}
.activities_pic{
    height: 100px;
}
.activities__title{
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    background-image: repeating-linear-gradient(90deg, #a3b263, #a3b263 11px, transparent 11px, transparent 18px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 1px;
    display: inline-block;
    padding: 10px 0 5px;
}
.activities__txt{
    font-size: 1.6rem;
    margin-top: 10px;
    line-height: 1.7;
}



/* activitiesDetails pc */
@media screen and (min-width:769px){
.activities__list{
    display: flex;
    flex-wrap: wrap;
    gap: 0 50px;
    justify-content:center;
}
.activities__list-content{
    display: flex;
}
.activities__listItem{
    margin-right: 50px;
}
.activities__listItem:nth-child(2n){
    margin: 35px 0;
}
}
/* pc 769 */


/* news */
.section--news{
    padding: 0 5.3%;    
}
.news__img{
    max-width: 280px;
    margin: 0 auto;
}
.content--news{
    margin: 35px auto 0;
    background-color: #EBEEDD;
    padding: 30px 8.9% 40px;;
    border-radius: 50px;
}
.news__item{
    font-size: 1.3rem;
    margin-top: 30px;
    background-image: repeating-linear-gradient(90deg, #a3b263, #a3b263 11px, transparent 11px, transparent 18px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 1px;
    padding-bottom: 7px;
}
.news__post_information{
    display: flex;
    align-items: center;
}
.news__post_information time{
    margin-right: 10px;
    
}
.news__post_category{
    background: #F8D7D7;
    border-radius: 10px;
    line-height: 0.8;
    padding: 5px 9px;
}
.news__post_title{
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 10px;
    
}
/* news pc */
@media screen and (min-width:769px){
    .news__img{
        max-width: 350px;
    }
    .news__post_title{
        font-size: 1.8rem;
    }

}

/* event */
.section--event{
    padding: 0 5.3%;
    margin-top: 50px;
}
.event__top{
    max-width: 280px;
    margin: 0 auto;
}
.content--event{
    margin: 35px auto 0;
    padding: 50px 0 50px;
    border-radius: 50px;
    font-size: 1.6rem;
}

.event__detail{
    padding: 0 30px 30px;
}
.event__link{
    margin-top: 25px;
}
.event__information-content{
    margin: 0 auto 30px;
    padding: 20px 0 0 30px;
    background-image: url(../images/event_memo.png);
    background-repeat: no-repeat;
    background-size:contain;
    height: 200px;
    width: 310px;
}
.event__information-content:hover{
    
    transform: translateY(-5px);
    
}

.event__information_inner{
    font-weight: 700;
    font-size: 1.8rem;
}
.event__information-list{
    list-style-type:none;
    padding-left: 0;
}
.event__information-list li{
  position: relative;
  padding-left: 1em;
}
.event__information-list li::before{
    content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #63592C; 
}
.event__reserve{
    margin-top: 10px;
    font-size: 1.6rem;
    font-weight: 400;
}

.event__btn{
    font-weight: 400;
    font-size: 1.6rem;
    margin-top: 0;
}
.event__massage{
    margin-top: 15px;
}

/* event pc */
@media screen and (min-width:769px){
    .event__content{
        padding-bottom: 40px;
        height: auto;
    }
    .event__inner{
        display: flex;
       
    }
    .event__information-content{
        margin-left: 30px;
        min-width: 300px;
    }
}
/* pc 769 */
/* symptom */
.section--symptom_top{
    padding: 0 5.3%;
}
.content--symptom_top{
    background-color: #EBEEDD;
    padding: 60px 5.3%;
    z-index: 100;
    position: relative;
    border-radius: 50px;
}

.symptom_top_txt{
    margin-top: 20px;
    font-size: 1.6rem;
    line-height: 1.7;
}

/* symptom pc*/
@media screen and (min-width:769px){
.symptom_list {
    margin-right: 20px;
}
}
/* pc 769 */

/* links */

.section-container{
    padding: 0 5.3%;
    margin-top: 100px;
}
.section--links{
    margin-top: 0;
}
.content--Links{
    background-color: #EBEEDD;
    max-width: 1000px;
    margin: 35px auto 50px;
    border-radius: 50px;
    padding:60px 5.3%;;
}
.links_txt{
    margin-top: 20px;
    font-size: 1.6rem;
}
.links_txt_box{
    text-align: center;
    width: 250px;
    margin: 0 auto ;
}
.links_list{
    margin: 20px auto;
    width: 270px;
    padding: 15px 0 10px 20px;
    border-top:1px solid #63592C;
    border-bottom:1px solid #63592C;
}
.links_list_item{
    font-size: 1.6rem;
}
.orange--btn{
    background-color: #F79003;
    color: #FFFF;
    padding: 15px 0 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: 0.3s ease-in-out;
    filter: drop-shadow(0px 2px 4px #ccc);
    border: double 4px #FFFF;
    margin: 25px auto 0;
    max-width: 250px;
    
    font-size: 1.6rem;
}
.orange--btn::after{
    display:none;
}
.twitter-follow-button{
    margin-top: 29px;
}
/* links pc */
@media screen and (min-width:769px){
    
    
}

/* Donation */
.section--Donation{
    padding: 0 0 100px;
    margin-top: 0;
}
.content--Donation{
    max-width: 1000px;
    border-radius: 50px;
    margin: 35px auto 50px;
    padding: 60px 5.3%;
}
.donation_txt{
    font-family: "Zen Maru Gothic", sans-serif;
    margin-top: 20px;
    font-size: 1.6rem;
}
/* Donation pc */
@media screen and (min-width:769px){
    
}



/* ======================
footer
========================= */
.footer{
    padding: 50px 4.2%;
    background-color: #a3b263;
    position: relative;
    font-size: 1.6rem;
    width: 100%;
    
}
.footer__img-house{
    position: absolute;
    top: -15%;
    max-width: 300px;
    z-index: 100;
}
.footer__img-mountains{
    display: none;
    position: absolute;
    top:-15%;
    max-width: 400px;
}

.footer__group{
    padding: 0 4.2%;
}
.footer__topic{
    text-align: center;
    font-size: 1.8rem;
    color: #FFFF;
    font-family:"Zen Maru Gothic", sans-serif;
    margin-top: 20px;
}
.contact__list{
    text-align: center;
    color: #FFFF;
    font-family:"Zen Maru Gothic", sans-serif;
    margin-top: 20px;
}
.contact__item img{
    width: 30px; 
    margin-top: 10px;

}
.footer__logo{
    width: 80px;
    display: block;
    margin: 20px auto 0;
}
.menu__list{
    max-width: 700px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 20px;
    color: #FFFF;
    font-family:"Zen Maru Gothic", sans-serif;
    padding: 0 4.2%;
    margin: 20px auto 0;
}
 .page-top{
    font-family:"Zen Maru Gothic", sans-serif;
    position: absolute;
    top: 100px;
    right: 15%;
    font-weight: bold;
    padding: 0.8em 0.6em;
    text-align: center;
    background-color:#FFFF;
    width: 50px;
    height: 50px;
    border-radius: 5%;
    box-shadow: 2px 12px 8px -2px #777777;
 }   
 .page-top:hover{
    opacity: 0.8;
 }

 /* footer pc */
@media screen and (min-width:769px){
.footer__img-house{
    right: 70%;
    width: 400px;
}
 .footer__img-mountains{
    display: block;
    position: absolute;
    left: 50%;
    top:-15%;
  transform: translateX(-50%);
    max-width: 500px;
 }
 
 }

/* ======================
subPage
========================= */
/* symptom */
.section--symptom{
    padding: 50px 5.3% 100px;
    background-color:#EBEEDD;  
    margin-top: 0;
    background-image: url(../images/clouds.png),url(../images/rain.png),url(../images/rain.png),url(../images/birds.png);
    background-repeat: no-repeat;
    background-size: 400px,400px,400px,300px;
    background-position-x:left 30% ,right 50px,left 50px,right;
    background-position-y: 40px, 30%,55%,95%;
}
.content--symptom{
    background-color: #FFFF;
    padding: 30px 5.3% 50px;
    border-radius: 40px;
    max-width: 800px;
    margin: 30px auto 0;
    
    position: relative;
}

.symptom_txt{
    margin-top: 20px;
    font-size: 1.6rem;
    line-height: 1.7;
}
.symptom_list{
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
}
.symptom_list-item{
    background-color: #FFFF;
    padding: 10px 20px 30px;
    margin: 20px 20px 0;
    border-radius: 40px; 
    width: 245px;
    border:1px solid #63592C;
    text-align: center;
}
.symptom_list-item-topic{
    font-family: "Zen Maru Gothic", sans-serif ;
    font-size: 2rem;
    margin-bottom: 10px;
    background-image: repeating-linear-gradient(90deg, #a3b263, #a3b263 11px, transparent 11px, transparent 18px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 1.5px;
    display: inline-block;
    padding-bottom: 7px;
}
.symptom_list-item-txt{
    font-size: 1.6rem;
    font-family: "Zen Maru Gothic", sans-serif ;
    text-align: left;
    padding-left: 20px;
}
.symptom_scdMsa{
    margin-top: 30px;
}
.symptom_scdMsa-topic{
    font-size: 1.6rem;
    margin-top: 20px;
}
.symptom_scdMsa-txt{
    font-size: 1.6rem;
    line-height: 1.7;
}
.symptom_link{
    font-size: 1.4rem;
    margin-top: 40px;
}
.symptom_link:hover{
    text-decoration: underline;
}
.symptom_link-img{
    max-width: 270px;
    margin: 10px auto 0;
}

.symptom_link-img:hover{
    
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); 
}
.symptom_link-img img{
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.symptom_link-topic{
    text-align: center;
    font-size: 1.6rem;
    
}
/* symptom pc*/
@media screen and (min-width:769px){
.symptom_list {
    margin-right: 20px;
}
.section--symptom{
    background-size: 500px,500px,500px,300px;
}
}
/* pc 769 */


/* contact */
.contact_pic{
    width: 50px;
}
.section--contact{
    appearance: auto;
}

/* newslist */
.section--newslist{
    padding: 50px 5.3% 100px;
    background-color:#EBEEDD;  
    margin-top: 0;
    background-image: url(../images/clouds.png),url(../images/clouds.png);
    background-repeat: no-repeat;
    background-size: 400px;
    background-position-x:left 30% ,left 80%;
    background-position-y: 10%, 50%;
    
    text-align: center;
   

    
}

.newslist__item{
    background-color: #FFFF;
    padding: 20px 10px 20px 20px;
    margin: 30px auto 0;
    border-radius: 20px;
    font-size: 1.3rem;
    max-width: 800px;
}
.newslist__item_inner{
    display: flex;
}
.newslist__post_img{
    margin-right: 15px;
    min-width: 120px;
    width: 120px;
    height: 90px;
    overflow: hidden;
    
}
.newslist__post_pic{
    border-radius: 13px;
    border: #b0adad 0.5px solid;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.newslist__post_information{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}
.newslist__post_detection time{
    margin-right: 10px;
}
.newslist__post_category{
    background: #F8D7D7;
    border-radius: 10px;
    line-height: 0.8;
    padding: 5px 9px;
}
.newslist__post_title{
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 13px;
}


/* singlePost */
.section--singlePost{
    margin-top: 0;
    padding: 70px 5.3% 100px;
    background-color:#EBEEDD;  
}
.singlePost__container{
    background-color: #FFFF;
    padding: 30px 5% 50px 5.5%;
    border-radius: 40px;
    max-width: 800px;
    margin: 0 auto;
}
.singlePost__title{
    font-family:"Zen Maru Gothic", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
}
.singlePost__post_information{
    display: flex;
    font-size: 1.3rem;
    margin-top: 20px;
}
.singlePost__post_information time{margin-right: 20px;}

.singlePost__post_category{
    background: #F8D7D7;
    border-radius: 10px;
    line-height: 0.8;
    padding: 5px 9px;
}
.singlePost__img{
   width: 250px; 
   margin: 0 auto;
}
.singlePost__txt-box{
    margin-top: 20px;
    font-size: 1.6rem;
    line-height: 30px;
}
.singlePost__btn{
    margin-top:50px ;
}
.singlePost__btn::after{
    display:none;
}
.singlePost__btn::before{
    display: block;
    content: '';
    width: 30px;
    height: 15px;
    background-image: url(../images/btn-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 15px;
    transform:scaleX(-1) translateY(-50%);
}

/* singlePost_news02 */

.singlePost__entry-btn{
    background-color: #F79003;
    color: #FFFF;
    padding: 15px 0 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: 0.3s ease-in-out;
    filter: drop-shadow(0px 2px 4px #ccc);
    border: double 4px #FFFF;
    margin: 10px auto 0;
    max-width: 250px;
    font-family: "游ゴシック体",
    Arial, 
    sans-serif;
    font-size: 1.6rem;
}

.singlePost__entry-btn::after{
    display:none;
}
.singlePost__information-list{
    margin-top: 30px;
}
.singlePost__pdf{
    text-decoration: underline; 
    text-decoration-color: #63592C; 
    text-decoration-style: solid; 
    text-decoration-thickness: 1px;
    padding: 10px 0 ;
}
.singlePost__pdf::before{
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #63592C;
  transform: rotate(45deg); 
  margin-right: 10px;
}

