html {
    font-size: 10px;  /* 中（デフォルト）10px */
}
body {
    position: relative;
    height: 100%;
    font-size: 1.6rem;
    background-color: #fff;
    color: #333;
    font-family: "Noto Sans JP", serif;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: #333;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
a:hover {
    opacity: 0.8;
}
p {
    line-height: 1.6;
}
h2, h3 {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
}
@media screen and (max-width: 1200px) {
    main {
        margin-top: 70px;
    }
}
@media screen and (max-width: 768px) {
    body {
        font-size: 1.5rem;
    }
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

/* ヘッダー */
header {
    position: relative;
    z-index: 99;
    padding: 50px 0;
    background-color: #fff;
}
header .block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 40px);
    max-width: 1200px;
    margin: auto;
}
header h1 {
    width: 20%;
}
header h1 img {
    width: 100%;
}
header .sp_nav {
    display: none;
}
header .block .pc_nav ul {
    display: flex;
    align-items: center;
}
header .pc_nav ul li {
    font-size: 1.4rem;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    margin-right: 30px;
}
header .pc_nav ul li:last-child {
    margin-right: 0;
}
header .pc_nav ul .is_current a {
    color: #87a976;
    display: flex;
    align-items: center;
}
header .pc_nav ul .is_current a::after {
    content: "→";
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    font-size: 1.0rem;
    color: #fff;
    background-color: #87a976;
    border-radius: 50%;
    margin-left: 5px;
}
header .sp_menu {
    display: none;
}
.h-right {
    display: flex;
    align-items: center;
}
.h-right .font {
    display: flex;
    align-items: center;
    margin-right: 10px;
}
.h-right .font p {
    color: #87a976;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
    text-align: center;
    margin-right: 10px;
}
.h-right .font ul {
    display: flex;
    align-items: center;
}
.h-right .font li {
    font-size: 1.2rem;
    margin-right: 5px;
    border: 1px solid #87a976;
    color: #87a976;
    font-weight: bold;
    border-radius: 5px;
    padding: 2px 5px;
    cursor: pointer;
    box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.3);
}
.h-right .font .active {
    background-color: #87a976;
    color: #fff;
}
.h-right a {
    color: #87a976;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: underline;
    display: flex;
    align-items: center;
    margin-left: 10px;
    font-family: "Noto Serif JP", serif;
}
.h-right a::after {
    content: "→";
    width: 15px;
    height: 15px;
    text-align: center;
    color: #fff;
    line-height: 15px;
    font-size: 1.0rem;
    background-color: #87a976;
    border-radius: 50%;
    margin-left: 5px;
}
@media screen and (max-width: 1200px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 0;
        height: 70px;
    }
    header .header_content {
        position: relative;
        z-index: 999;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #fff;
        height: 70px;
    }
    header .block {
        position: relative;
        align-items: center;
    }
    header h1 {
        width: 145px;
    }

    header .block .pc_nav ul {
        display: none;
    }
    header .h-right {
        display: none;
    }
    header .sp_menu {
        position: relative;
        display: flex;
        align-items: center;
    }
    header .sp_menu .item {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        margin-right: 8px;
        background-color: #87a976;
    }
    header .sp_menu .item.remove {
        display: none;
    }
    header .sp_menu .header__hamburger {
        width: 26px;
        height: 18px;
        margin-left: 22px;
    } 
    header .sp_menu .hamburger {
        background-color: transparent;
        border-color: transparent;
    }
    header .sp_menu .hamburger span {
        position: relative;
        display: block;
        width: 100%;
        height: 2px;
        background-color: #333;
        transition: ease .5s;
    }
    header .sp_menu .hamburger span:nth-child(1) {
        top: 0;
    }
    header .sp_menu .hamburger span:nth-child(2) {
        margin: 7px 0;
    } 
    header .sp_menu .hamburger span:nth-child(3) {
        top: 0;
    }
    header .sp_menu .header__nav.active {
        transform: translateX(0);
    }
    header .sp_menu .hamburger.active span:nth-child(1) {
        top: 7px;
        transform: rotate(45deg);
    }
    header .sp_menu .hamburger.active span:nth-child(2) {
        opacity: 0;  
    }
    header .sp_menu .hamburger.active span:nth-child(3) {
        top: -11px;
        transform: rotate(-45deg);
    } 

    header .sp_nav {
        position: absolute;
        z-index: 99;
        opacity: 0;
        pointer-events: none;
        top: 0;
        left: 0;
        width: 100%;
        min-height: calc(100vh - 70px);
		height: calc(100% - 70px);
        background-color: #fff;
        overflow-y: scroll;
        margin-top: 70px;
        transition: all .5s linear;
    }
    header .sp_nav.active {
        display: block;
        opacity: 1;
        transition: all .5s linear;
        pointer-events: all;
    }
    header .sp_nav .block {
        display: block;
        width: 100%;
        border-top: 1px solid #87A976;
        padding: 10px 20px 0 20px;
    }
    header .sp_nav .block .font {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
    }
    header .sp_nav .block .font p {
        color: #87A976;
        font-size: 1.5rem;
        font-weight: bold;
    }
    header .sp_nav .block .font ul {
        display: flex;
    }
    header .sp_nav .block .font ul li {
        width: 50px;
        text-align: center;
        font-size: 1.2rem;
        margin-right: 5px;
        border: 1px solid #87a976;
        color: #87a976;
        font-weight: bold;
        border-radius: 5px;
        padding: 6px 0;
        cursor: pointer;
        box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.3);
    }
    header .sp_nav .block .font ul .active {
        background-color: #87A976;
        color: #fff;
    }
    header .sp_nav .block .menu {
        margin-bottom: 30px;
    }
    header .sp_nav .block .menu li {
        font-family: "Noto Serif JP", serif;
        width: 100%;
        border-bottom: 1px solid #CFDDC8;
        padding: 13px 0;
    }
    header .sp_nav .block .menu .guaid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: none;
        padding-bottom: 0;
    }
    header .sp_nav .block .menu .guaid .cursor {
        background-color: #87A976;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    header .sp_nav .block .menu .guaid .cursor span {
        position: relative;
        display: block;
        width: 7px;
        height: 1px;
        background-color: #fff;
        transition: ease .5s;
    }
    header .sp_nav .block .menu .sub {
        pointer-events: none;
        opacity: 0;
        height: 0;
        transition: ease .5s;
    }
    header .sp_nav .block .menu .sub.active {
        pointer-events: all;
        height: auto;
        opacity: 1;
    }
    header .sp_nav .block .menu .guaid .cursor span:nth-child(1) {
        top: 1px;
    }
    header .sp_nav .block .menu .guaid .cursor span:nth-child(2) {
        transform: rotate(90deg);
    }
    header .sp_nav .block .menu .guaid .cursor.active span:nth-child(1) {
        opacity: 0;
    }
    header .sp_nav .block .menu .guaid .cursor.active span:nth-child(2) {
        transform: rotate(0);
    }
    header .sp_nav .block .menu li .main-nav {
        font-size: 1.5rem;
        font-weight: 600;
    }
    header .sp_nav .block .menu li .hash-nav {
        font-size: 1.5rem;
        font-weight: 600;
    }
    header .sp_nav .block .menu li .sub-nav {
        font-size: 1.4rem;
        margin-left: 1em;
        width: calc(100% - 1em);
    }
    header .sp_nav .block .menu li .sub-nav span {
        font-size: 0.9rem;
        margin-right: 5px;
    }
    header .sp_nav .block .menu li.is_current a {
        color: #87a976;
        display: flex;
        align-items: center;
    }
    header .sp_nav .block .menu li.is_current a::after {
        content: "→";
        display: inline-block;
        width: 14px;
        height: 14px;
        color: #fff;
        text-align: center;
        line-height: 14px;
        font-size: 1.0rem;
        background-color: #87a976;
        border-radius: 50%;
        margin-left: 5px;
    }
    header .sp_nav .block .for_familly {
        margin-bottom: 30px;
    }
    header .sp_nav .block .for_familly a {
        position: relative;
        display: block;
        font-family: "Noto Serif JP", serif;
        width: 100%;
        border-radius: 10px;
        background-color: #87A976;
        padding: 10px 20px;
        color: #fff;
        font-size: 1.5rem;
        box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.3);
    }
    header .sp_nav .block .for_familly a span {
        position: absolute;
        background-color: #fff;
        color: #87A976;
        width: 15px;
        height: 15px;
        line-height: 15px;
        text-align: center;
        font-size: 13px;
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        right: 16px;
    }
    header .sp_nav .block .contact .item {
        width: 100%;
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    header .sp_nav .block .contact .item img {
        width: 50px;
        margin-right: 10px;
    }
    header .sp_nav .block .contact .item h3 {
        font-family: "Noto Serif JP", serif;
        font-size: 1.8rem;
    }
    header .sp_nav .block .contact .item p {
        margin-top: 5px;
        font-size: 1.3rem;
    }
    header .sp_nav .block .contact .item h3 strong {
        font-weight: normal;
        font-size: 3.2rem;
        letter-spacing: 0.2rem;
    }
    header .sp_nav .copy {
        width: 100%;
        text-align: center;
        color: #fff;
        background-color: #87A976;
    }
    header .sp_nav .copy p {
        font-size: 0.8rem;
        padding: 10px 0;
    }
}

/* common */
.ttl {
    text-align: center;
}
.ttl h2 {
    color: #87a976;
    font-size: 4.0rem;
    letter-spacing: 0.6rem;
    margin-bottom: 8px;
    font-weight: normal;
    line-height: 1.2;
}
.ttl h2 span {
    color: #d9b44a;
}
.ttl h2 strong {
    font-weight: 500;
    color: #d9b44a;
    font-size: 4.8rem;
}

.nav_link a {
    position: relative;
    display: block;
    border: 1px solid #87a976;
    border-radius: 30px;
    padding: 13px 0;
    font-size: 1.6rem;
    font-weight: bold;
    box-shadow: 0px 7px 7px -6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    text-align: center;
    color: #87a976;
}
.nav_link a img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 18px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #87a976;
}
.nav_link a span {
    position: absolute;
    width: 14px;
    height: 14px;
    font-size: 1.0rem;
    line-height: 14px;
    background-color: #87A976;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
    .nav_link a {
        font-size: 1.3rem;
    }
}

#page-top {
    max-width: 1200px;
    width: 86%;
    margin: auto;
}
#page-top .visual {
    position: relative;
}
#page-top .visual img {
    width: 100%;
    aspect-ratio: 24 / 11;
    object-fit: cover;
    border-radius: 20px;
}
#page-top .visual .vertical_ttl {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    border-radius: 0 0 0 20px;
    padding: 30px 30px 45px 12px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
#page-top .visual .vertical_ttl h2 {
    color: #87a976;
    font-size: 4.0rem;
    letter-spacing: 0.6rem;
}
#page-top .visual .vertical_ttl h2 span {
    font-size: 1.6rem;
    color: #d9b44a;
    letter-spacing: 0.3rem;
    font-weight: 600;
}
#page-top ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}
#page-top ul li {
    position: relative;
    width: 15%;
    min-width: 155px;
    font-size: 2.0rem;
    border-bottom: 1px solid #87a976;
    text-align: center;
    padding-bottom: 10px;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    margin-right: 1.5%;
}
#page-top ul li a {
    padding-bottom: 10px;
    color: #87a976;
}
#page-top ul li a span {
    position: absolute;
    right: 10px;
    top: calc(50% - 10px);
    transform: translateY(-50% + 10px);
    background-color: #87a976;
    color: #fff;
    font-size: 1.0rem;
    width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

/* 採用フッター */
#top-recruit {
    margin-bottom: 140px;
}
#top-recruit .block {
    width: 75%;
    max-width: 980px;
    margin: auto;
    background-color: #d9b44a;
    border-radius: 20px;
    display: flex;
    /* align-items: center; */
    box-shadow: 0px 7px 7px -6px rgba(0, 0, 0, 0.3);
}
#top-recruit .block .txt {
    width: 50%;
    padding: 40px 30px 30px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}
#top-recruit .block .txt h2 {
    width: 100%;
    position: relative;
    color: #fff;
    text-align: center;
    font-size: 3.4rem;
    line-height: 0.7;
    margin-bottom: 20px;
}
#top-recruit .block .txt h2 span {
    font-size: 1.4rem;
    font-weight: normal;
}
#top-recruit .block .txt h2:before,
#top-recruit .block .txt h2:after {
    position: absolute;
    top: 20%;
    width: 22.4%;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 1.5px 0;
    content: '';
}
#top-recruit .block .txt h2:before {
    left: 0;
}
#top-recruit .block .txt h2:after {
    right: 0;
}
#top-recruit .block .txt p {
    margin-bottom: 20px;
    font-family: "Noto Sans JP", serif;
}
#top-recruit .block .txt .nav_link {
    width: 100%;
}
#top-recruit .block .txt .nav_link a {
    color: #333;
    border: none;
}
#top-recruit .block .txt .nav_link a span {
    background-color: #d9b44a;
}
#top-recruit .block .image {
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
#top-recruit .block .image img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 0 20px 20px 0;
}
#top-recruit .block .image .message {
    position: absolute;
    bottom: 25px;
    right: 5%;
    text-align: right;
}
#top-recruit .block .image .message p {
    font-family: "Noto Serif JP", serif;
    display: block;
    margin: 0 0 0 auto;
    width: fit-content;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 2.4rem;
    padding: 3px 5px;
    letter-spacing: 0.36rem;
    background-color: #ffffffbc;
}
@media screen and (max-width: 1080px) {
    #top-recruit .block .txt h2 {
        font-size: 2.6rem;
    }
    #top-recruit .block .image .message p {
        font-size: 2.0rem;
    }
}
@media screen and (max-width: 768px) {
    #top-recruit {
        margin-bottom: 80px;
        padding: 0 20px;
    }
    #top-recruit .block {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
    }
    #top-recruit .block .image {
        position: relative;
        width: 100%;
    }
    #top-recruit .block .image img {
        width: 100%;
        aspect-ratio: 67 / 50;
        object-fit: cover;
        border-radius: 20px 20px 0 0;
    }
    #top-recruit .block .image .message {
        bottom: 3px;
        right: 10px;
    }
    #top-recruit .block .image .message p {
        margin-bottom: 10px;
        font-weight: 600;
        font-size: 2.0rem;
        letter-spacing: 0.16rem;
    }
    #top-recruit .block .txt {
        width: 100%;
        padding: 20px 20px 30px 20px;
    }
    #top-recruit .block .txt h2 {
        font-size: 2.8rem;
        line-height: 0.9;
    }
    #top-recruit .block .txt h2 span {
        font-size: 1.2rem;
        font-weight: normal;
    }
    #top-recruit .block .txt h2:before,
    #top-recruit .block .txt h2:after {
        width: 25%;
    }
    #top-recruit .block .txt .nav_link {
        width: 260px;
        margin: auto;
    }
}

/* お問い合わせフッター */
#top-contact {
    width: 86%;
    max-width: 1200px;
    margin: 0 auto 145px;
}
#top-contact .block {
    width: 100%;
    background-color: #f3f6f1;
    margin: auto;
    padding: 60px 5.2%;
}
#top-contact .block h2 {
    text-align: center;
    font-size: 3.4rem;
    margin-bottom: 40px;
    color: #87a976;
}
#top-contact .block .tool {
    width: 100%;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
}
#top-contact .block .tool .address {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50%;
}
#top-contact .block .tool .address:last-child {
    justify-content: flex-end;
}
#top-contact .block .tool .address img {
    width: 14.2%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: #87a976;
    margin-right: 15px;
}
#top-contact .block .tool .address h3 a {
    font-size: 2.6rem;
    line-height: 1.2;
    font-weight: normal;
}
#top-contact .block .tool .address h3 a strong {
    font-size: 4.2rem;
    letter-spacing: 0.63rem;
    font-weight: normal;
}
#top-contact .block .tool .address:first-child h3 {
    margin-top: calc(1.2 * 1.6rem);
}
#top-contact .block .nav {
    display: flex;
    justify-content: center;
}
#top-contact .block .nav .nav_link {
    width: 36%;
    min-width: 300px;
    margin: 0 10px;
}
#top-contact .block .nav .nav_link a {
    width: 100%;
    border: none;
    color: #fff;
}
#top-contact .block .nav .nav_link .recruit {
    background-color: #d9b44a;
}
#top-contact .block .nav .nav_link .mail {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #87a976;
}
#top-contact .block .nav .nav_link .recruit span {
    background-color: #fff;
    color: #333;
}
#top-contact .block .nav .nav_link .mail img {
    position: relative;
    left: 0 !important;
    top: 0;
    transform: none;
    width: 18px;
    height: auto;
    border-radius: 0;
    margin-left: -10px;
    margin-right: 10px;
}
@media screen and (max-width: 1280px) {
    #top-contact .block .tool .address h3 a strong {
        font-size: 4.2rem;
        letter-spacing: 0.1rem;
    }
}
@media screen and (max-width: 1080px) {
    #top-contact .block .tool .address h3 a strong {
        font-size: 3.6rem;
    }
}
@media screen and (max-width: 768px) {
    #top-contact {
        width: 100%;
        margin-bottom: 50px;
    }
    #top-contact .block {
        padding: 45px 25px;
    }
    #top-contact .block h2 {
        font-size: 2.4rem;
        margin-bottom: 15px;
    }
    #top-contact .block .tool {
        margin: 0 auto 35px;
        flex-direction: column;
    }
    #top-contact .block .tool .address {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-bottom: 10px;
    }
    #top-contact .block .tool .address:last-child {
        justify-content: center;
    }
    #top-contact .block .tool .address img {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }
    #top-contact .block .tool .address h3 a {
        font-size: 1.8rem;
        font-weight: normal;
    }
    #top-contact .block .tool .address h3 a strong {
        font-size: 3.2rem;
        letter-spacing: 0;
        font-weight: normal;
    }
    #top-contact .block .nav {
        flex-direction: column;
        align-items: center;
    }
    #top-contact .block .nav .nav_link {
        margin: 0 auto;
    }
    #top-contact .block .nav .nav_link {
        width: 260px;
    }
    #top-contact .block .nav .nav_link .mail {
        margin-bottom: 20px;
    }
    #top-contact .block .nav .nav_link .recruit img {
        padding: 4px;
    }
    #top-contact .block .nav .nav_link .mail img {
        left: 25px;
    }
}

/* ページネーション */
.page-wrap {
    display: flex;
    justify-content: center;
}
.page-wrap .wp-pagenavi {
    display: flex;
    align-items: center;
}
.page-wrap .pages {
    display: none;
}
.page-wrap .current {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #87A976;
    border: none;
    color: #fff;
    margin: 0 8px;
    font-size: 1.6rem;
}
.page-wrap .page,
.page-wrap .first,
.page-wrap .last {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    text-align: center;
    border: 1px solid #87A976;
    color: #87A976;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 8px;
    font-size: 1.6rem;
}
.page-wrap .nextpostslink {
    font-size: 24px;
    margin-left: 10px;
    color: #87A976;
}
.page-wrap .previouspostslink {
    font-size: 24px;
    margin-right: 10px;
    color: #87A976;
}

@media screen and (max-width: 768px) {
    .ttl h2 {
        color: #87a976;
        font-size: 2.6rem;
        line-height: 1.2;
        margin-bottom: 10px;
        font-weight: normal;
    }
    .ttl h2 strong {
        font-size: 4.2rem;
    }


    #page-top {
        width: 100%;
    }
    #page-top .visual img {
        border-radius: 0;
        aspect-ratio: 25 / 16;
        object-fit: cover;
    }
    #page-top .visual .vertical_ttl {
        padding: 5px 10px 15px 10px;
    }
    #page-top .visual .vertical_ttl h2 {
        font-size: 2.2rem;
    }
    #page-top .visual .vertical_ttl h2 span {
        font-size: 1.0rem;
    }
    #page-top ul {
        padding: 0 20px;
    }
    #page-top ul li {
        width: 155px;
        font-size: 1.5rem;
        padding-bottom: 0;
        margin-bottom: 20px;
    }
    #page-top ul li a span {
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        font-size: 0.8rem;
    }

    .page-wrap .current,
    .page-wrap .page,
    .page-wrap .first,
    .page-wrap .last {
        width: 24px;
        height: 24px;
        margin: 0 4px;
        font-size: 1.4rem;
    }
}

/* フッター */
footer {
    width: 100%;
    font-family: "Noto Serif JP", serif;
}
footer .block {
    display: flex;
    max-width: 1200px;
    width: 86%;
    margin: 0 auto 50px;
}

footer .block .contact {
    width: 25%;
    border-right: 1px solid #87a976;
    padding-right: 4%;
}
footer .block ul li .space {
    display: none;
}
footer .block .contact img {
    width: 100%;
    max-width: 240px;
    margin-bottom: 25px;
}
footer .block .contact .tel,
footer .block .contact .fax {
    font-size: 1.6rem;
}
footer .block .contact .tel span,
footer .block .contact .fax span {
    font-size: 2.6rem;
    letter-spacing: 0.3rem;
}
footer .block .footer_nav {
    width: 71%;
    padding-left: 4%;
}
footer .block .footer_flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
footer .block .footer_nav li {
    font-size: 1.4rem;
    line-height: 2.1;
}
footer .block .footer_nav li span {
    font-size: 1.0rem;
    margin-right: 5px;
}
footer .block .footer_nav .main-nav,
footer .block .footer_nav .hash-nav {
    font-size: 1.6rem;
    line-height: 2;
    font-weight: 600;
}
footer .block .footer_nav .is_current a {
    color: #87a976;
    display: flex;
    align-items: center;
}
footer .block .footer_nav .is_current a::after {
    content: "→";
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: #87a976;
    border-radius: 50%;
    color: #fff;
    font-size: 1.0rem;
    text-align: center;
    line-height: 1.5rem;
    margin-left: 5px;
}
footer .block .footer_nav .indent {
    margin-top: calc(1.6rem * 2);
}
footer .block .footer_nav .bottom {
    display: flex;
    justify-content: flex-end;
}
footer .block .footer_nav .bottom .main-nav {
    margin-left: 20px;
}
footer .block .footer_nav_sp {
    display: none;
}
footer .copy {
    width: 100%;
    background-color: #87a976;
    color: #fff;
    text-align: center;
    padding: 3px 0;
}
footer .copy p {
    font-size: 1.0rem;
    line-height: 2.6;
}
@media screen and (max-width: 1200px) {
    footer .block {
        max-width: 1200px;
        width: calc(100% - 40px);
        margin: 0 auto 50px;
    }
}
@media screen and (max-width: 1000px) {
    footer .block {
        display: block;
        width: 100%;
        padding: 48px 20px 80px 20px;
    }
    footer .block .contact {
        width: 90%;
        margin: auto;
        border-right: none;
        border-bottom: 1px solid #87a976;
        padding-right: 0;
        padding-bottom: 30px;
        text-align: center;
    }
    footer .block ul li .space {
        display: inline;
    }
    footer .block .contact img {
        width: 240px;
        margin: 0 auto 30px;
    }
    footer .block .contact .tel,
    footer .block .contact .fax {
        font-size: 1.5rem;
    }
    footer .block .contact .tel span,
    footer .block .contact .fax span {
        font-size: 2.8rem;
        letter-spacing: 0.3rem;
    }
    footer .block .footer_nav {
        display: none;
    }
    footer .block .footer_nav_sp {
        display: block;
        width: 90%;
        margin: auto;
        padding-left: 0;
        padding-top: 25px;
    }
    footer .block .footer_nav_sp li {
        width: 100%;
        border-bottom: 1px solid #CFDDC8;
        padding: 10px 0;
        font-size: 1.5rem;
    }
    footer .block .footer_nav_sp .main-nav,
    footer .block .footer_nav_sp .hash-nav {
        font-weight: 600;
        font-size: 1.5rem;
        line-height: 2;
    }
    footer .block .footer_nav_sp .sub-nav {
        font-size: 1.4rem;
        line-height: 1.8;
        margin-left: 1em;
        width: calc(100% - 1em);
    }
    footer .block .footer_nav_sp .sub-nav:last-child {
        width: 100%;
        padding-left: 1em;
        margin-left: 0;
    }
    footer .block .footer_nav_sp .sub-nav span {
        font-size: 0.9rem;
        margin-right: 5px;
    }
    footer .block .footer_nav_sp .guaid {
        border-bottom: none;
        padding-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    footer .block .footer_nav_sp .sub {
        pointer-events: none;
        display: none;
        opacity: 0;
        height: 0;
        transition: ease .5s;
    }
    footer .block .footer_nav_sp .sub.active {
        pointer-events: all;
        height: auto;
        opacity: 1;
        display: block;
    }
    footer .block .footer_nav_sp .guaid .cursor {
        background-color: #87A976;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    footer .block .footer_nav_sp .guaid .cursor span {
        position: relative;
        display: block;
        width: 7px;
        height: 1px;
        background-color: #fff;
        transition: ease .5s;
    }
    footer .block .footer_nav_sp .guaid .cursor span:nth-child(1) {
        top: 1px;
    }
    footer .block .footer_nav_sp .guaid .cursor span:nth-child(2) {
        transform: rotate(90deg);
    }
    footer .block .footer_nav_sp .guaid .cursor.active span:nth-child(1) {
        opacity: 0;
    }
    footer .block .footer_nav_sp .guaid .cursor.active span:nth-child(2) {
        transform: rotate(0);
    }
    footer .block .footer_nav_sp .is_current a {
        color: #87a976;
        display: flex;
        align-items: center;
    }
    footer .block .footer_nav_sp .is_current a::after {
        content: "→";
        display: inline-block;
        width: 14px;
        height: 14px;
        text-align: center;
        line-height: 14px;
        color: #fff;
        font-size: 1.0rem;
        background-color: #87a976;
        border-radius: 50%;
        margin-left: 5px;
    }
    footer .copy p {
        font-size: 0.8rem;
        line-height: 3.2;
    }
}