@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Josefin+Slab:400i|Noto+Sans+JP|Noto+Serif+JP');
/* CSS Document */
html {
    font-size: 62.5%;
    font-family:'Montserrat-Medium', sans-serif;
    width: 100vw;
    /* プロポーショナルメトリクスを有効にする指定 */
    font-feature-settings: "palt" 1;
}
body {
    color: #707070;
    -webkit-text-size-adjust: 100%;
}
.inner {
    margin: 0 5%;
}
p {
    font-size: 16px;
    line-height: 1.7;
}
a {
    text-decoration: none;
    color : #707070;
}
@media only screen and (min-width: 768px) {
    header {
        padding-top: 50px;
    }
    .inner {
        width: 85%;
        max-width: 1024px;
        margin: 0 auto;
    }
}

/*フェードイン*/
.effect-fade {
    opacity : 0;
    transform : translate(0, 45px);
    transition : all 1s;
}
.effect-fade.effect-scroll {
    opacity : 1;
    transform : translate(0, 0);
}

/*メニュー*/
header {
    padding-bottom: 50px;
}
.logo {
    width: 100px;
    margin: 0 auto 0 5%;
    padding-top: 20px;
}
.menu li{
    display: none;
}
.logotop:hover {
    opacity: 0.5;
}
@media only screen and (min-width: 768px) {
    .logo {
        width: 150px;
        margin: 0 5% 0 auto;
        padding-top: 0;
    }
    .menu {
        text-align: right;
        position: fixed; top: 20%; right: 5%;
        z-index: 99999;
    }
    .menu li {
        font-family: 'Latienne Pro';
        font-size: 15px;
        padding-bottom: 50px;
        display: block;
    }

    .main_menu {
        display: inline-block;
        height: 15px;
        overflow:hidden;
        vertical-align: top;
    }
    .main_menu:hover {
        height: 100%;      
    }
    .sub_menu li {
        margin: 20px 0;
        font-size: 15px;
    }
}
/*ハンバーガー*/
.drawer {
    position: fixed;
    right: 0;
    z-index: 9999;
    color: #707070;
}
/* チェックボックスは非表示に */
.drawer-hidden {
    display: none;
}
/* ハンバーガーアイコンの設置スペース */
.drawer-open {
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;/* 重なり順を一番上に */
    cursor: pointer;
}
/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 35px;
    border-radius: 3px;
    background: #707070;
    transition: 0.5s;
    position: absolute;
}
.drawer-open span:before {
    bottom: 10px;
}
.drawer-open span:after {
    top: 10px;
}
#drawer-check:checked ~ .drawer-open span {
    background: rgba(255, 255, 255, 0);
}
#drawer-check:checked ~ .drawer-open span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#drawer-check:checked ~ .drawer-open span::after {
    top: 0;
    transform: rotate(-45deg);
}
/* メニューのデザイン*/
.drawer-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/* メニューを画面の外に飛ばす */
    z-index: 99;
    background: #fff;
    transition: .5s;
}
.drawer-list {
    font-family: 'Latienne Pro';
    font-size: 35px;
    margin: 60px 0 0 105px;
}
.drawer-list li {
    margin-bottom: 30px;
    color: #707070;
}
.service_section {
    border-left: 1px solid #707070;
    padding-left: 20px;
}
.service_menu {
    font-size: 20px;
}
/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
    left: 0;/* メニューを画面に入れる */
}
@media only screen and (min-width: 768px) {
    .drawer-open {
        display:none;
    }
}


/*プロフィール*/
.profile {
    padding-bottom: 50px;
}
.profile_title h1 {
    font-weight: 500;
    font-family: 'Geometria-MediumItalic';
    font-size: 30px;
    padding-top: 30px;
    padding-bottom: 15px;
    margin-bottom: 50px;
    width: 80%;
    border-bottom:solid 1px #707070;
    letter-spacing: 1px;
}
.profile_main {
    padding-bottom: 30px;
}
.profile_name {
    margin: 10px 0;
}
.profile_image img {
    width: 130px;
    height: auto;
}
.profile_text p{
    font-size: 18px;
    text-align: justify;
}
.profile_text {
    padding: 20px 0;
}
.career p {
    font-size: 14px;
}
.profile_box h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 16px;
}
.profile_box li {
    list-style: none;
    font-size: 14px;
    padding-bottom: 5px;
    line-height: 1.7;
}
.career {
    padding-bottom: 20px;
}

@media only screen and (min-width: 768px) {
    .profile {
        width: 95%;
        padding-bottom: 150px;
    }
    .profile_title h1{
        font-size: 90px;
        width: 100%;
        padding-bottom: 70px;
        border-bottom:solid 1px #707070;
        margin-bottom: 145px;
    } 
    .profile_name {
        margin: 30px 0;
    }
    .profile_name p {
        font-size: 20px;
    }
    .profile_text p{
        font-size: 22px;
    }
    .profile_text {
        padding-top: 30px;
        padding-bottom: 50px;
    }
    .profile_box {
        font-size: 15px;
    }
    .profile_box h3 {
        margin-top: 40px;
        margin-bottom: 25px;
        font-size: 18px;
    }
    .profile_box li {
        font-size: 16px;
        padding-bottom: 10px;
    }
    .profile_image img {
        width: 170px;
    }
    .career p {
        font-size: 16px;
    }
    .profile_box li {
        list-style: none;
    }
    .career {
        padding-bottom: 16px;
        display: flex;
    }
    .year {
        width: 25%;
    }
    .career_txt {
        width: 75%;
        text-align: justify;
    }
}

/*創業したい*/
.founded {
    padding-bottom: 50px;
}
.founded_title {
    padding-bottom: 15px;
    margin-bottom: 50px;
    width: 90%;
    border-bottom:solid 1px #707070;
    letter-spacing: 1px;
    display: flex;
    align-items: flex-end;
}
.founded_title h1 {
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 35px;
}
.founded_title p {
    font-size: 13px;
    font-weight: 100;
    font-family: 'Geometria-MediumItalic';
    padding-bottom: 3px;
    padding-left: 15px;
}
.founded_titlebox img {
    display: none;
}
.founded_main {
    padding-bottom: 50px;
   /*
    background-image: url("../images/founded.svg"); 
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    background-color:rgba(255,255,255,0.8);
    background-blend-mode:lighten;
    */
}
.founded_main p {
    font-size: 16px;
    padding-bottom: 40px;
    text-align: justify;
    letter-spacing: 2px;
}
.founded_info {
    padding-bottom: 30px;
}
.founded_info p{
    font-size: 18px;
    padding-bottom: 5px;
}
.founded_list p {
    background-color: #5F5F63;
    display: inline-block;
    color: #fff;
    padding: 10px 15px;
    margin-bottom: 10px;
}
.list_item a {
    font-size: 15px;
}
.list_item p{
    font-size: 13px;
    margin-top: 10px;
    margin-bottom: 30px;
}
.founded_text {
    padding-bottom: 20px;
}
.founded_text a {
    margin: 15px 0;
    font-size: 15px;
    border-bottom: solid 1px  #5F5F63;
}

@media only screen and (min-width: 768px) {
    .founded {
        padding-bottom: 100px;
    }
    .founded_titlebox {
        display: flex;
    }
    .founded_titlebox img {
        display: block;
        width: 280px;
    }
    .founded_title {
        margin-top: 90px;
        padding-bottom: 30px;
        margin-bottom: 100px;
        width: 60%;
    }
    .founded_title h1 {
        font-size: 60px;
    }
    .founded_title p {
        padding-bottom: 15px;
        padding-left: 60px;
    }
    .founded_main {
        padding-top: 50px;
        padding-bottom: 100px;
        width: 87%;
        background-image: none;
    }
    .founded_main p {
        font-size: 20px;
        line-height: 2;
        padding-bottom: 35px;
    }
    .founded_main br {
        display: none;
    }
    .founded_info {
        padding-bottom: 30px;
    }
    .founded_info p{
        font-size: 24px;
        padding-bottom: 10px;
    }
    .list_item a br {
        display: none;
    }
    .list_item a {
        font-size: 18px;
    }
    .list_item p{
        font-size: 15px;
        margin-top: 10px;
        margin-bottom: 40px;
    }
    .founded_text {
        padding-bottom: 30px;
    }
    .founded_text a {
        font-size: 20px;
    }
}
/* 想定通りにいかない */
.expected {
    padding-bottom: 50px;
}
.expected_title {
    padding-top: 30px;
    padding-bottom: 15px;
    margin-bottom: 50px;
    width: 90%;
    border-bottom:solid 1px #707070;
    letter-spacing: 3px;
    display: flex;
    align-items: flex-end;
}
.expected_title h1 {
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 30px;
}
.expected_main {
    padding-bottom: 50px;
    /*
    background-image: url("../images/expected.svg"); 
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    background-color:rgba(255,255,255,0.8);
    background-blend-mode:lighten;
    */
}
.expected_main p {
    font-size: 16px;
    padding-bottom: 40px;
    text-align: justify;
    letter-spacing: 2px;
}
.expected_info {
    padding-bottom: 30px;
}
.expected_info p {
    font-size: 18px;
    padding-bottom: 5px;
}
.expected_info img {
    display: none;
}
@media only screen and (min-width: 768px) {
    .expected {
        padding-bottom: 100px;
    }
    .expected_title {
        padding-bottom: 30px;
        margin-bottom: 150px;
        width: 90%;
    }
    .expected_title br {
        display: none;
    }
    .expected_title h1 {
        font-size: 50px;
    }
    .expected_title p {
        padding-bottom: 15px;
        padding-left: 60px;
    }
    .expected_main {
        width: 87%;
        padding-bottom: 0;
        background-image: none;
    }
    .expected_main p {
        font-size: 20px;
        line-height: 2;
        padding-bottom: 10px;
    }
    .expected_info {
        padding-bottom: 30px;
        display: flex;
        align-items: flex-end;
    }
    .expected_info p{
        font-size: 24px;
        padding-bottom: 10px;
    }
    .expected_info img {
        display: block;
        width: 300px;
        margin-left: 130px;
    }
}
/* 新しいことを始めたい*/
.start {
    padding-bottom: 50px;
}
.start_title {
    padding-top: 30px;
    padding-bottom: 15px;
    margin-bottom: 50px;
    width: 90%;
    letter-spacing: 3px;
    display: flex;
    align-items: flex-end;
    border-bottom:solid 1px #707070;
}
.start_title h1 {
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 28px;
    line-height: 1.2;
}
.start_title img {
    display: none;
}
.start_main {
    padding-bottom: 50px;
    /*
    background-image: url("../images/start.svg"); 
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    background-color:rgba(255,255,255,0.8);
    background-blend-mode:lighten;
    */
}
.start_main p {
    font-size: 16px;
    padding-bottom: 40px;
    text-align: justify;
    letter-spacing: 2px;
}
.start_info {
    padding-bottom: 30px;
}
.start_info p{
    font-size: 18px;
    padding-bottom: 5px;
}
@media only screen and (min-width: 768px) {
    .start {
        padding-bottom: 100px;
    }
    .start_title {
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 150px;
        width: 93%;
        border-bottom:solid 2px #707070;
    }
    .start_title h1 {
        font-size: 50px;
        padding-bottom: 30px;
    }
    .start_title img {
        display: block;
        width: 290px;
        margin-bottom: -2px;
        margin-left: 20px;
    }
    .start_main {
        padding-bottom: 100px;
        width: 87%;
        background-image: none;
    }
    .start_main p {
        font-size: 20px;
        line-height: 2;
        padding-bottom: 35px;
    }
    .start_info {
        padding-bottom: 30px;
    }
    .start_info p{
        font-size: 24px;
        padding-bottom: 10px;
    }
}
/*資金繰りに困っている*/
.trouble {
    padding-bottom: 50px;
    position: relative;
}
.trouble img {
    display: none;
}
.trouble_title {
    padding-top: 30px;
    padding-bottom: 15px;
    margin-bottom: 50px;
    width: 90%;
    border-bottom:solid 1px #707070;
    letter-spacing: 3px;
}
.trouble_title h1 {
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 28px;
    line-height: 1.2;
}
.trouble_main {
    padding-bottom: 50px;
    /*
    background-image: url("../images/trouble.svg"); 
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    background-color:rgba(255,255,255,0.8);
    background-blend-mode:lighten;
    */
}
.trouble_main p {
    font-size: 16px;
    padding-bottom: 40px;
    text-align: justify;
    letter-spacing: 2px;
}
.trouble_info {
    padding-bottom: 30px;
}
.trouble_info p{
    font-size: 18px;
    padding-bottom: 5px;
}
.trouble_text  {
    margin-top: 10px;
    margin-bottom: 10px;
}
.trouble_text P {
    font-size: 16px;
}
.trouble_box {
    margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
    .trouble {
        padding-bottom: 100px;
    }
    .trouble img {
        display: block;
        width: 300px;
        position: absolute;
        top: -10px;
        left: 58%;
    }
    .trouble_title {
        padding-bottom: 30px;
        margin-bottom: 150px;
        width: 90%;
    }
    .trouble_title h1 {
        font-size: 55px;
    }
    .trouble_title p {
        padding-bottom: 15px;
        padding-left: 60px;
    }
    .trouble_main {
        background-image: none;
        padding-bottom: 100px;
        width: 87%;
    }
    .trouble_main p {
        font-size: 20px;
        line-height: 2;
        padding-bottom: 35px;
    }
    .trouble_info {
        padding-bottom: 30px;
    }
    .trouble_info p {
        font-size: 24px;
        padding-bottom: 10px;
    }
    .trouble_text  {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .trouble_text P {
        font-size: 20px;
    }
    .trouble_box {
        margin-bottom: 50px;
    }
}
/*セミナー*/
.seminar {
    padding-bottom: 50px;
}
.seminar_title {
    padding-top: 30px;
    padding-bottom: 15px;
    margin-bottom: 50px;
    width: 90%;
    border-bottom:solid 1px #707070;
    letter-spacing: 3px;
    display: flex;
    align-items: flex-end;
}
.seminar_title h1 {
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 35px;
}
.seminar_main {
    padding-bottom: 40px;
    position: relative;
    /*
    background-image: url("../images/seminar.svg"); 
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    background-color:rgba(255,255,255,0.8);
    background-blend-mode:lighten;
    */
}
.seminar_main p {
    font-size: 16px;
    padding-bottom: 15px;
    text-align: justify;
    letter-spacing: 2px;
}
.seminar img {
    display: none;
}
.seminar_list {
    margin-bottom: 50px;
}
.seminar_list p {
    font-size: 20px;
    margin-bottom: 30px;
}
.seminar_list li {
    font-size: 13px;
    margin-left: 5%;
    margin-bottom: 10px;
    line-height: 1.7;
}
@media only screen and (min-width: 768px) {
    .seminar {
        padding-bottom: 100px;
    }
    .seminar_title {
        padding-bottom: 30px;
        margin-bottom: 150px;
        width: 90%;
    }
    .seminar_title h1 {
        font-size: 60px;
    }
    .seminar_title p {
        padding-bottom: 15px;
        padding-left: 60px;
    }
    .seminar_main {
        padding-bottom: 100px;
        width: 87%;
        background-image: none;
    }
    .seminar_main p {
        font-size: 20px;
        padding-bottom: 20px;
    }
    .seminar img {
        display: block;
        width: 300px;
        position: absolute;
        top: 630px;
        left: 55%;
    }
    .seminar_list {
        margin-bottom: 100px;
    }
    .seminar_list p {
        font-size: 30px;
        margin-bottom: 50px;
    }
    .seminar_list li {
        font-size: 16px;
        margin-left: 3%;
        margin-bottom: 16px;
    }
}
/*コンタクト*/
.contact {
    padding-bottom: 50px;
}
.contact_title h1 {
    font-weight: 500;
    font-family: 'Geometria-MediumItalic';
    font-size: 30px;
    padding-top: 30px;
    padding-bottom: 15px;
    margin-bottom: 30px;
    width: 80%;
    border-bottom:solid 1px #707070;
    letter-spacing: 1px;
}
.contact_text p {
    font-size: 20px;
    margin-bottom: 15px;
}
.qa_box {
    padding: 20px 0 50px;
}
.qa_box p {
    font-size: 15px;
}
.question {
    background-color: #CFCED3;
    padding: 5px;
    border-radius: 5px;
    margin-bottom:  15px;
}
.answer {
    padding: 5px;
    text-align: justify;
}
.answer p {
    padding-bottom: 50px;
}
.contact_form p{
    font-size: 20px;
    margin-bottom: 20px;
}
.contact_mail p{
    border-bottom: solid 1px #707070;
    display: inline;
    padding-bottom: 5px;
}
.contact_privacy {
    background-color: #5F5F63;
    display: inline-block;
    padding: 20px;
    margin-top: 50px;
    border-radius: 5px;
}
.contact_privacy a {
    font-size: 18px;
    color: #fff;
}
@media only screen and (min-width: 768px) {
    .contact {
        width: 95%;
        padding-bottom: 50px;
    }
    .contact_title h1{
        font-size: 90px;
        width: 100%;
        padding-bottom: 30px;
        border-bottom:solid 1px #707070;
        margin-bottom: 145px;
    } 
    .contact_text p {
        font-size: 28px;
    }
    .qa_box p {
        font-size: 20px;
        line-height: 2;
    }
    .question {
        padding: 15px;
        margin-bottom: 20px;
    }
    .answer {
        padding: 15px;
    }
    .answer p {
        padding-bottom: 90px;
    }
    .contact_form p{
        font-size: 24px;
        margin-bottom: 30px;
    }
    .contact_privacy {
        margin-top: 150px;
    }
    .contact_privacy a {
        font-size: 24px;
    }
}

/*プライバシーポリシー*/
.privacy {
    padding-bottom: 50px;
    text-align: justify;
}
.privacy_title {
    padding-top: 30px;
    padding-bottom: 15px;
    margin-bottom: 50px;
    width: 90%;
    font-weight: 500;
    font-family: 'Geometria-MediumItalic';
    border-bottom:solid 1px #707070;
    letter-spacing: 1px;
}
.privacy_title h1 {
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 35px;
}
.privacy_title p {
    font-size: 13px;
    font-weight: 100;
    font-family: 'Geometria-MediumItalic';
    padding-top: 5px;
}
.privacy_main {
    margin: 20px 0;
}
.privacy_lesson h2 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 5px;
}
.privacy_lesson ul {
    margin-left: 23px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.privacy_lesson li {
    font-size: 16px;
}
.privacy_info h2 {
    font-size :16px;
    margin: 50px 0 20px;
}
.privacy_info p {
    font-size: 20px;
}
@media only screen and (min-width: 768px) {
    .privacy {
        width: 95%;
        padding-bottom: 50px;
        line-height: 2;
    }
    .privacy_title {
        padding-bottom: 30px;
        margin-bottom: 150px;
        width: 90%;
        display: flex;
    align-items: flex-end;
    }
    .privacy_title h1 {
        font-size: 60px;
    }
    .privacy_title p {
        padding-bottom: 35px;
        padding-left: 60px;
    }
    .privacy_main {
        margin: 100px 0;
    }
    .privacy_lesson h2 {
        font-size: 30px;
        margin-top: 50px;
        margin-bottom: 5px;
    }
    .privacy_lesson ul {
        margin-left: 23px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .privacy_lesson li {
        font-size: 16px;
    }
    .privacy_info h2 {
        font-size :24px;
        margin: 50px 0 20px;
    }
    .privacy_info p {
        font-size: 20px;
    }
}
.section_2 { 
    height: 30px;
    width: auto;
    background-color: #EAEAEC;
}
@media only screen and (min-width: 768px) {
    .section_2 {
        height: 50px;
        width: auto;
        background-color:#EAEAEC;
    }
}
/*カレンダー*/
.online iframe {
    background-color: #CFCED3;
    width: 100%;
    height: 500px;
}

@media only screen and (min-width: 768px) {
    .online iframe {
        background-color: #CFCED3;
        width: 100%;
        height: 1000px;
    }
}
/* トップに戻るボタン */
.totop {
    width: 40px;
    height: 40px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}
.totop img {
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 50%;
}

/*フッター*/
footer {
    background: #B1B1B7;
    color:white;
    padding:50px 5% 30px;
    position: relative;
}
.footer_form {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 15px;
}
.arrow {
    width: 60px;
    padding-bottom: 16px;
    padding-right: 100px;
    margin: 0 auto;
}
.arrow img {
    width: 60px;
}
.footer_form h2 {
    font-weight: 400;
    font-family: 'Geometria-MediumItalic';
    font-size: 30px;
    letter-spacing: 3px;
    color: #fff;
}
.footer_form p {
    color: #fff;
    font-size: 14px;
}
.footer_message {
    padding-bottom: 40px;
    color: #fff;
}
.footer_message br{
    display: none;
}
.footer_left:hover {
    opacity: 0.5;
}
.logo_footer {
    width: 250px;
    margin: 0 auto;
}
.address_text {
    display: flex;
    justify-content: center;
}
.address {
    margin-top: 15px;
}
.address p {
    font-size: 13px;
}
.footer_right {
    display: none;
}
.footer_box {
    padding-bottom: 10px;
}

@media only screen and (min-width: 768px) {
    .footer {
        padding-top: 100px;
        padding-left: 10%;
        padding-bottom: 50px;
        display: flex;
        justify-content: space-between;
        position: relative;
    }
    .footer_text {
        display: flex;
        align-items: flex-end;
    }
    .footer_form {
        display: flex;
        align-items: flex-end;
        padding-bottom: 40px;
    }
    .footer_form h2 {
        font-size: 40px;
        letter-spacing: 5px;
        padding-right: 20px;
        color: #fff;
        font-family: 'Geometria-MediumItalic';
        font-weight: 400;
    }
    .footer_form p {
        font-size: 15px;
        padding-bottom: 6px;
        color: #fff;
    }
    .footer_left {
        width: 700px;
    }
    .footer_message {
        padding-bottom: 100px;
    }
    .footer_message br{
        display: block;
    }
    .arrow {
        background-color: #707070;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        position: absolute;
        top: 32%;
        right: 25%;
        padding-right: 0;
    }
    .arrow img{
        width: 26px;
        padding-top: 27.5px;
        margin-left:18px;
    }
    .footer_box {
        padding: 50px 0;
    }
    .logo_footer {
        width: 400px;
    }
    .address p{
        font-size: 16px;
    }
    .address {
        padding-top: 5px;
    }
    .footer_right {
        display: block;
        padding-top: 50px;
        padding-left: 40px;
        padding-bottom: 45px;
        margin-bottom: auto;
        border-left: solid 1px #5F5F63;
        border-top: 0;
    }
    .footer_right li{
        font-family: 'Latienne Pro';
        font-size: 14px;
        padding-bottom: 28px;
        display: block;
    }
    .footer_right a{
        color: white;
    }
}


