:root {
    /* back colors */
    --main_color: #a0c238;
    --sec_color: #56a764;
    --thd_color: #56a76420;
    --shadow_color: #a0c23850;
    /* text colors */
    --text_color:  #666666;
    --gray_color: #B8B9BA;
    --black_color: #3E3A39;
    --base_text: #333333;
    --white: #ffffff;
}

body {
    font-family: "Noto Sans", sans-serif;
}
.top_new_btn {
    width: 350px;
    height: 80px;
    background-color: var(--sec_color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
}
.top_new_btn span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    display: flex;
    flex-direction: row;
    align-items: center;
}
.top_new_btn span::after {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background-image: url('../img/btn_icon.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 30px;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
@media screen and (min-width:768px) and ( max-width:1100px) {
}
/* -- mobile style -- */
@media screen and (max-width:767px) {
    body.no_scroll{
        overflow: hidden;
    }
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    h1 {
        z-index: 9999;
    }
    .top_new_btn {
        width: 90%;
        height: 60px;
        border-radius: 30px;
    }
    .top_new_btn span {
        font-size: 1.25rem;
    }
    .top_new_btn span::after {
        width: 40px;
        height: 40px;
        margin-left: 20px;
    }
}


/* -- top header -- */
header.sp_header {
    display: none;
}
.top_pc_header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 10px 40px;
    z-index: 100;
    transition: .3s;
    box-sizing: border-box;
}
.top_pc_header.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
}
.top_logo img {
    width: 230px;
}
.top_hd_nav {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.top_hd_nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 40px;
}
.top_hd_nav ul li {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--main_color);
}
.top_hd_nav ul li:not(:last-child) {
    margin-right: 20px;
}
.top_hd_link {
    width: 180px;
    height: 50px;
    background-color: var(--main_color);
    color: var(--white);
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.top_hd_link span {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 1.625rem;
    font-weight: bold;
}
.top_hd_link span::after {
    content: "→";
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--main_color);
    width: 35px;
    height: 35px;
    background-color: var(--white);
    border-radius: 50%;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media screen and (min-width:768px) and ( max-width:1100px) {
}
/* -- mobile style -- */
@media screen and (max-width:767px) {
    header.top_pc_header {
        display: none;
    }
    header.sp_header {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: fixed;
        box-sizing: border-box;
        padding: 5px 0;
        z-index: 1000;
        background-color: rgba(255,255,255,.8);
    }
    .header_inner {
        width: 100%;
        padding: 0 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    .logo img {
        height: 30px;
        width: auto;
    }
    .header_nav {
        position: absolute;
        right: 0;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        transform: translateX(-100%);
        background-color: var(--white);
        transition: ease .4s;
    }
    .header_hamburger {
        width: 30px;
    }
    .hamburger {
        background-color: transparent;
        border-color: transparent;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .hamburger span {
        width: 100%;
        height: 1px;
        background-color: #000;
        position: relative;
        transition: ease .4s;
        display: block;
    }
    .hamburger span:nth-child(2) {
        width: 80%;
    }
    .hamburger span:nth-child(3) {
        width: 60%;
    }
    .hamburger span:nth-child(1) {
        top: 0;
    }
    .hamburger span:nth-child(2) {
        margin: 8px 0;
    }
    .hamburger span:nth-child(3) {
        top: 0;
    }
    .header_nav.active {
        transform: translateX(0);
        margin-top: -5px;
    }
    .hamburger.active span:nth-child(1) {
        top: 5px;
        transform: rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        width: 100%;
        top: -13px;
        transform: rotate(-45deg);
    }
    .nav-items {
        padding: 0;
        width: 80%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
      }
    .nav-items_item a {
        color: black;
        width: 100%;
        display: block;
        text-align: center;
        font-size: 20px;
        margin-bottom: 24px;
    }
    .nav-items_item:last-child a {
        margin-bottom: 0;
    }
    .cta_links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cta_links li:first-child {
        margin-bottom: 20px;
    }
    .cta_links li a {
        box-sizing: border-box;
        padding: 15px;
        background-color: var(--main_color);
        color: var(--white);
    }
}


/* -- main visual -- */
.main_visual {
    width: 100%;
    height: auto;
}
.main_visual img {
    width: 100%;
}
.main_visual img.sp_main {
    display: none;
}
/* -- tablet style -- */
@media screen and (min-width:768px) and ( max-width:1100px) {
}
/* -- mobile style -- */
@media screen and (max-width:767px) {
    .main_visual img.pc_main {
        display: none;
    }
    .main_visual img.sp_main {
        display: block;
    }
}


/* -- concept section -- */
#Concept {
    width: 100%;
    position: relative;
}
#Concept .concept_bg_img {
    width: 100%;
    height: 550px;
    filter: brightness(80%);
    object-fit: cover;
}
.concept_inner {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translate(-50%, 0px);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    max-width: 1200px;
}
.section_bg_ttl {
    height: 140px;
    align-self: flex-end;
}
.section_bg_ttl img {
    height: 100%;
}
.concept_content {
    margin-top: -50px;
}
.section_ttl {
    font-size: 2.81rem;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--white);
    margin-bottom: 30px;
    z-index: 1;
    align-self: flex-start;
}
.section_ttl::before {
    content: "";
    display: block;
    width: 3px;
    height: 45px;
    background-color: var(--white);
    margin-right: 20px;
}
.section_desc {
    width: 800px;
    font-size: 1.625rem;
    line-height: 3.125rem;
    color: var(--white);
}
/* -- tablet style -- */
@media screen and (min-width:768px) and ( max-width:1100px) {
}
/* -- mobile style -- */
@media screen and (max-width:767px) {
    #Concept .concept_bg_img {
        width: 100%;
        height: 500px;
    }
    .concept_inner {
        top: 30px;
        align-items: center;
        box-sizing: border-box;
        max-width: 600px;
    }
    .section_bg_ttl {
        height: 50px;
        align-self: center;
    }
    .concept_content {
        width: 100%;
        margin-top: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .section_ttl {
        font-size: 1.5rem;
        line-height: 2rem;
        margin-bottom: 20px;
        z-index: 1;
        align-self: center;
        text-align: center;
    }
    .section_ttl::before {
        display: none;
    }
    .section_desc {
        width: calc(100% - 40px);
        font-size: 1rem;
        line-height: 1.8rem;
        text-align: center;
    }
}


/* -- philosophy style -- */
#Philosophy {
    width: 100%;
    background-image: url('../img/philosophy_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}
.section_inner {
    background-color: var(--shadow_color);
    box-sizing: border-box;
    padding: 50px 0 100px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#Philosophy .section_ttl {
    margin-top: -50px;
    margin-bottom: 80px;
}
.top_philosophy_list {
    width: calc(100% - 40px);
    margin: 0 auto 50px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    align-self: flex-start;
    max-width: 1200px;
}
.top_philosophy_item {
    width: calc((100% - 60px) / 3);
    height: 500px;
    position: relative;
}
.top_philosophy_item_inner {
    height: 100%;
}
.top_philosophy_item_inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top_philosophy_content {
    position: absolute;
    height: 100%;
    top: 0;
    background-image: url('../img/philosophy_item_bg-black.png');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 65% 10px 0;
}
.top_philosophy_item_ttl {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: bold;
    margin-bottom: 15px;
}
.top_philosophy_content p {
    line-height: 1.56rem;
    color: var(--white);
}
/* -- tablet style -- */
@media screen and (min-width:768px) and ( max-width:1100px) {
}
/* -- mobile style -- */
@media screen and (max-width:767px) {
    .section_inner {
        padding: 30px 0 20px;
    }
    #Philosophy .section_ttl {
        margin-top: 15px;
        margin-bottom: 30px;
        font-size: 1.5rem;
        line-height: 2rem;
        text-align: center;
    }
    .top_philosophy_list {
        width: calc(100% - 40px);
        margin: 0 auto 30px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        align-self: center;
        max-width: 600px;
    }
    .top_philosophy_item {
        width: 100%;
        height: auto;
    }
    .top_philosophy_item:not(:last-child) {
        margin-bottom: 20px;
    }
    .top_philosophy_item_inner img {
        width: 100%;
        object-fit: cover;
    }
    .top_philosophy_content {
        padding: 60% 10px 0;
    }
    .top_philosophy_item_ttl {
        font-size: 1.25rem;
    }
    .top_philosophy_content p {
        line-height: 0.95rem;
        line-height: 1.5rem;
    }
}


/* -- recruitment style -- */
#Recruitment {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 50px 0 100px 40px;
}
#Recruitment .recruitment_inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#Recruitment .section_bg_ttl {
    align-self: flex-end;
}
#Recruitment .section_ttl {
    color: var(--main_color);
    margin-top: -50px;
    margin-bottom: 80px;
    align-self: flex-start;
}
#Recruitment .section_ttl::before {
    background-color: var(--main_color);
}
.top_recruitment_list {
    width: calc(100% - 40px);
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
    align-self: flex-start;
}
.top_recruitment_item {
    width: calc((100% - 30px) / 3);
    box-shadow: 5px 5px 10px var(--shadow_color);
}
.top_recruitment_item:not(:nth-last-child(-n + 3)) {
    margin-bottom: 20px;
}
.top_recruitment_item img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}
.top_recruitment_item_content {
    box-sizing: border-box;
    padding: 20px 20px 30px;
    background-color: var(--main_color);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 0 0 10px 10px;
}
.top_recruitment_item_icon {
    font-size: 0.75rem;
    margin-bottom: 10px;
}
.top_recruitment_item_ttl {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 10px 0 50px;
}
.top_new_more_btn {
    width: 145px;
    height: 40px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    align-self: flex-end;
}
.top_new_more_btn span {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--main_color);
    display: flex;
    flex-direction: row;
    align-items: center;
}
.top_new_more_btn span::after {
    content: "→";
    display: block;
    font-size: 20px;
    color: var(--white);
    width: 30px;
    height: 30px;
    background-color: var(--main_color);
    border-radius: 50%;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* -- tablet style -- */
@media screen and (min-width:768px) and ( max-width:1100px) {
}
/* -- mobile style -- */
@media screen and (max-width:767px) {
    #Recruitment {
        width: 100%;
        padding: 30px 20px;
    }
    #Recruitment .recruitment_inner {
        max-width: 600px;
    }
    #Recruitment .section_bg_ttl {
        align-self: center;
    }
    #Recruitment .section_ttl {
        margin-top: 15px;
        margin-bottom: 50px;
        align-self: center;
    }
    #Recruitment .section_ttl::before {
        display: none;
    }
    .top_recruitment_list {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 30px;
        align-self: center;
    }
    .top_recruitment_item {
        width: 100%;
    }
    .top_recruitment_item:not(:last-child) {
        margin-bottom: 20px;
    }
    .top_recruitment_item_content {
        padding: 20px 15px;
    }
    .top_recruitment_item_icon {
        font-size: 1rem;
    }
}


/* -- interview style -- */
#Interview {
    width: 100%;
    background-image: url('../img/philosophy_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}
#Interview .section_inner {
    padding: 50px 0 150px 40px;
}
#Interview .section_ttl {
    align-self: flex-start;
    margin-top: -50px;
    margin-bottom: 100px;
}
.top_interview_list {
    width: calc(100% - 40px);
    height: 500px;
    /* display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; */
    align-self: flex-start;
}
.top_interview_item {
    width: 100%;
    position: relative;
}
.top_interview_item_number {
    position: absolute;
    font-family: 'Impact';
    color: var(--sec_color);
    font-size: 7rem;
    left: 10px;
    top: -30px;
    z-index: 1;
}
.top_interview_item_img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    clip-path: polygon(0px 0px, calc(100% - 3rem) 0px, 100% 3rem, 100% 100%, 0px 100%);
}
.top_interview_content {
    width: 100%;
    height: 240px;
    position: absolute;
    bottom: 0;
    background-color: rgba(255,255,255,.75);
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.top_interview_item_ttl,
.name_main {
    font-size: 2.25rem;
    color: var(--main_color);
    font-weight: bold;
    margin-bottom: 30px;
}
.name_sub {
    font-size: 1.125rem;
}
.name_main {
    margin-top: 10px;
}

/* slick style */
.slick-slide {
    width: calc((100% - 60px) / 3);
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}
/* slide dot */
.slick-dots {
    width: auto;
    bottom: -50px;
    right: 20px;
    text-align: right;
}
.slick-dots li {
    margin: 0;
    width: 50px;
}
.slick-dots li button {
background-color: var(--white);
width: 100%;
height: 10px;
transition: background-color 0.3s ease;
}
.slick-dots li button::before {
    display: none;
}
.slick-dots li.slick-active button {
    background-color: var(--sec_color);
}
/* slide next prev btn */
.custom-prev, .custom-next {
    display: block;
    position: absolute;
    bottom: -120px;
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}
.custom-prev {
    left: 89%;
    background-image: url('../img/prev_btn.png');
}

.custom-next {
    right: 1.5%;
    background-image: url('../img/next_btn.png');
}
.slick-slider {
    position: relative;
}
/* -- tablet style -- */
@media screen and (min-width:768px) and ( max-width:1100px) {
}
/* -- mobile style -- */
@media screen and (max-width:767px) {
    #Interview .section_inner {
        padding: 30px 0 100px;
    }
    #Interview .section_ttl {
        align-self: center;
        margin-top: 15px;
        margin-bottom: 30px;
    }
    .top_interview_list {
        width: 100%;
        height: auto;
    }
    .top_interview_item {
        width: 100%;
        position: relative;
    }
    .top_interview_item_number {
        font-size: 5rem;
        left: 20px;
        top: -30px;
    }
    .top_interview_item_img {
        height: 400px;
    }
    .top_interview_content {
        height: 200px;
        padding: 10px;
    }
    .top_interview_item_ttl,
    .name_main {
        font-size: 2rem;
        line-height: 2.5rem;
        margin-bottom: 30px;
    }
    .name_sub {
        font-size: 1rem;
    }
    .name_main {
        margin-top: 15px;
    }

    /* slick style */
    .slick-slide {
        padding: 20px;
    }
    /* slide dot */
    .slick-dots {
        bottom: -30px;
    }
    /* slide next prev btn */
    .custom-prev,
    .custom-next {
        bottom: -90px;
        width: 40px;
        height: 40px;
    }
    .custom-prev {
        left: 70%;
    }
    .custom-next {
        right: 4%;
    }
}


/* -- workstyle style -- */
#Workstyle {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 50px 0 100px 40px;
}
.workstyle_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
#Workstyle .section_bg_ttl {
    align-self: flex-end;
}
#Workstyle .section_ttl {
    color: var(--main_color);
    margin-top: -50px;
    margin-bottom: 80px;
    align-self: flex-start;
}
#Workstyle .section_ttl::before {
    background-color: var(--main_color);
}
.top_workstyle_list {
    width: calc(100% - 40px);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    align-self: flex-start
}
.top_workstyle_item {
    width: calc((100% - 20px) / 2);
    height: 255px;
    border: 1px solid var(--main_color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    padding-top: 60px;
}
.top_workstyle_item:nth-last-child(-n + 2) {
    margin-top: 80px;
}
.top_workstyle_item_icon {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Material Symbols Outlined';
    font-size: 3.75rem;
    font-weight: bold;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--main_color);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.top_workstyle_item_ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--main_color);
    margin-bottom: 20px;
}
.top_workstyle_item_ttl span {
    color: #606060;
    font-size: 1.5rem;
    margin-top: 10px;
}
.workstyle_content_wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.workstyle_content_wrap .workstyle_content:first-child {
    margin-right: 50px;
}
.workstyle_content {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    font-size: 1.5rem;
}
.workstyle_content span {
    font-size: 4rem;
    line-height: 3.2rem;
    color: var(--main_color);
    font-weight: bold;
    margin: 0 10px;
}
/* -- tablet style -- */
@media screen and (min-width:768px) and ( max-width:1100px) {
}
/* -- mobile style -- */
@media screen and (max-width:767px) {
    #Workstyle {
        padding: 30px 0 50px;
    }
    .workstyle_inner {
        max-width: 600px;
        padding-left: 0;
    }
    #Workstyle .section_bg_ttl {
        align-self: center;
    }
    #Workstyle .section_ttl {
        margin-top: 15px;
        margin-bottom: 80px;
        align-self: center;
    }
    #Workstyle .section_ttl::before {
        display: none;
    }
    .top_workstyle_list {
        width: 90%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        align-self: center;
    }
    .top_workstyle_item {
        width: 100%;
        height: 185px;
        border-radius: 5px;
        padding-top: 35px;
    }
    .top_workstyle_item:not(:first-child) {
        margin-top: 50px;
    }
    .top_workstyle_item_icon {
        top: -25px;
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    .top_workstyle_item_ttl {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    .top_workstyle_item_ttl span {
        font-size: 1.125rem;
        margin-top: 10px;
    }
    .workstyle_content_wrap .workstyle_content:first-child {
        margin-right: 30px;
    }
    .workstyle_content {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        font-size: 1rem;
    }
    .workstyle_content span {
        font-size: 3.5rem;
        line-height: 2.5rem;
    }
}


/* -- footer -- */
.top_footer {
    width: 100%;
}
.entry_cta {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.cta_left {
    width: 50%;
    height: 400px;
    background-color: var(--main_color);
    box-sizing: border-box;
    padding: 30px 0 0 40px;
    color: var(--white);
}
.cta_left .footer_title {
    font-size: 2.81rem;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px;
}
.cta_left .footer_title::before {
    content: "";
    display: block;
    width: 3px;
    height: 40px;
    background-color: var(--white);
    margin-right: 20px;
}
.cta_left .footer_desc {
    font-size: 1.125rem;
    line-height: 1.5rem;
    margin-bottom: 50px;
}
.cta_left_links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.cta_left_links .ft_links_entry {
    width: 400px;
    height: 60px;
    border-radius: 30px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cta_left_links .ft_links_entry span{
    color: var(--main_color);
    font-size: 1.875rem;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.cta_left_links .ft_links_entry span::after {
    content: "→";
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    width: 50px;
    height: 50px;
    background-color: var(--main_color);
    border-radius: 50%;
    margin-left: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cta_left_links .ft_links_entry.top {
    margin-bottom: 30px;
}
.cta_right {
    width: 50%;
    height: 400px;
    overflow: hidden;
}
.cta_right img {
    width: 100%;
    object-fit: cover;
}

/* -- footer navigation -- */
.top_footer_navi {
    width: 80%;
    margin: 50px auto 80px;
}
.top_footer_navi li a{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.top_footer_navi li a.use_icon::after {
    content: "";
    width: 15px;
    height: 15px;
    background-image: url('../img/footer_link_icon.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 10px;
}
.top_footer_navi_list {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}
.top_footer_navi_item {
    font-size: 1.25rem;
    font-weight: bold;
}
.top_footer_navi_child_list {
    margin-top: 15px;
    margin-left: 20px;
}
.top_footer_navi_child_item {
    font-weight: 400;
}
.top_footer_navi_child_item:not(:last-child) {
    margin-bottom: 5px;
}
.top_footer_copyright {
    background-color: var(--main_color);
    box-sizing: border-box;
    padding: 10px 0;
    text-align: center;
    font-size: 0.75rem;
    color: var(--white);
}
/* -- tablet style -- */
@media screen and (min-width:768px) and ( max-width:1100px) {
}
/* -- mobile style -- */
@media screen and (max-width:767px) {
    .entry_cta {
        flex-direction: column;
    }
    .cta_left {
        width: 100%;
        height: 300px;
        padding: 20px 5%;
        color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cta_left .footer_title {
        font-size: 2.5rem;
        font-weight: bold;
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 15px;
    }
    .cta_left .footer_title::before {
        display: none;
    }
    .cta_left .footer_desc {
        text-align: center;
        font-size: 0.7rem;
        line-height: 1.3rem;
        margin-bottom: 30px;
    }
    .cta_left_links {
        width: 80%;
    }
    .cta_left_links .ft_links_entry {
        width: 100%;
        height: 50px;
    }
    .cta_left_links .ft_links_entry span{
        font-size: 1.25rem;
    }
    .cta_left_links .ft_links_entry span::after {
        font-size: 1rem;
        width: 30px;
        height: 30px;
        margin-left: 50px;
    }
    .cta_left_links .ft_links_entry.top {
        margin-bottom: 20px;
    }
    .cta_right {
        width: 100%;
        height: auto;
    }

    /* -- footer navigation -- */
    .top_footer_navi {
        width: 90%;
        margin: 30px auto;
    }
    .top_footer_navi li a.use_icon::after {
        content: "";
        width: 15px;
        height: 15px;
        background-image: url('../img/footer_link_icon.png');
        background-repeat: no-repeat;
        background-size: cover;
        margin-left: 10px;
    }
    .top_footer_navi_list {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .top_footer_navi_item {
        width: 50%;
        font-size: 0.85rem;
    }
    .top_footer_navi_item:not(:last-child) {
        margin-bottom: 15px;
    }
    .top_footer_navi_child_list {
        margin-top: 5px;
        margin-left: 10px;
    }
    .top_footer_navi_child_item {
        font-size: 0.75rem;
    }
    .top_footer_copyright {
        padding: 5px 0;
    }
}


/* javascript animation */
