body {
    background-color: #fff;
    color: #262C35;
    font-family: "Noto Sans", sans-serif;
}
a {
    color: #262C35;
    text-decoration: none;
}
a:hover {
    opacity: 0.6;
}
input {
    background-color: #fff;
}
h2, h3 {
    font-weight: bold;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
@media screen and (max-width: 768px) {
    main {
        margin-top: 75px;
    }
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

#map {
    width: 100%;
    aspect-ratio: 64 / 17;
    margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
    #map {
        aspect-ratio: 25 / 14;
        margin-bottom: 35px;
    }
}

#menu-btn {
    position: fixed;
    z-index: 300;
    top: 32px;
    right: 20px;
    width: 130px;
    border-radius: 50px;
    background-color: #00A048;
    color: #fff;   
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 0;
    transition: ease .5s;
    cursor: pointer;
}
#menu-btn.active {
    background-color: #fff;
    border: 1px solid #262C35;
    color: #262C35;
}
header .header__hamburger {
    display: block;
    width: 24px;
    height: 21.5px;
    margin-left: 7px;
} 
header .hamburger {
    background-color: transparent;
    border-color: transparent;
}
header .hamburger span {
    position: relative;
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: #fff;
    transition: ease .5s;
}
header .hamburger span:nth-child(1) {
    top: 0;
}
header .hamburger span:nth-child(2) {
    margin: 7px 0;
} 
header .hamburger span:nth-child(3) {
    top: 0;
}
header .header__nav.active {
    transform: translateX(0);
}
header .hamburger.active span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
    background-color: #262C35;
}
header .hamburger.active span:nth-child(2) {
    opacity: 0;  
}
header .hamburger.active span:nth-child(3) {
    top: -10px;
    transform: rotate(-45deg);
    background-color: #262C35;
} 

@media screen and (max-width: 768px) {
    header {
        position: fixed;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 300;
        padding: 15px 20px;
        top: 0;
        left: 0;
        width: 100%;
        height: 75px;
        background-color: #fff;
    }
    header .image {
        width: 57px;
    }
    header .txt {
        width: 134px;
    }
    #menu-btn {
        width: 45px;
        height: 45px;
        position: relative;
        border-radius: 50%;
        top: 0;
        left: 0;
    }
    #menu-btn p {
        display: none;
    }
    header .header__hamburger {
        display: block;
        width: 27px;
        height: 20.5px;
        margin-left: 0;
    } 
}

#navigation {
    opacity: 0;
    position: fixed;
    top: 0;
    right: -20px;
    z-index: 200;
    height: 100vh;
    width: 400px;
    background-color: #fff;
    padding: 57px 50px;
    overflow-y: scroll;
    transition: ease .5s;
    pointer-events: none;
}
#navigation.active {
    opacity: 1;
    right: 0;
    pointer-events: all;
}
#navigation .flex-end {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
#navigation .home {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
#navigation .home img {
    width: 30px;
    margin-right: 10px;
}
#navigation .home h2 {
    font-size: 14px;
}
#navigation .item {
    margin-bottom: 20px;
}
#navigation .item ul .ttl {
    color: #CBC4BB;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1;
}
#navigation .item ul li {
    line-height: 1.8;
}
#navigation .item ul li a {
    font-weight: bold;
}
#navigation .item ul li a.is-current {
    color: #00A048;
}
#navigation .item ul .sub {
    margin-left: 1em;
    line-height: 1.7;
}
#navigation .item ul .sub a {
    font-weight: 500;
}
#navigation .sns {
    display: flex;
}
#navigation .sns a {
    width: 40px;
    margin-right: 10px;
}
#navigation .sns a img {
    width: 100%;
}
#navigation .pickups {
    position: absolute;
    bottom: 40px;
    right: 30px;
}
#navigation .pickups .blog {
    width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 0 auto;
    margin-bottom: 10px;
}
#navigation .pickups .blog p {
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}
#navigation .pickups .bottom {
    display: flex;
}
#navigation .pickups .bottom a {
    width: 60px;
    margin-left: 10px;
}
@media screen and (max-width: 768px) {
    #navigation {
        width: 100%;
        top: 75px;
        height: calc(100vh - 75px);
        padding-right: 25px;
    }
    #navigation .item ul li {
        font-size: 14px;
    }
    #navigation .pickups .blog {
        width: 80px;
    }
    #navigation .pickups .bottom a {
        width: 55px;
    }
    #navigation .pickups {
        position: relative;
        bottom: 0;
        right: 0;
    }
}

#side-menu {
    position: fixed;
    right: 20px;
    top: 110px;
    z-index: 100;
}
#side-menu ul li a {
    position: relative;
    padding: 12px 6px;
    margin-bottom: 20px;
    width: 48px;
    color: #00A048;
    font-size: 14px;
    display: flex;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: mixed; 
    font-feature-settings: "pkna"; 
    font-weight: bold;
    background-color: #FFFFFF;
    border-radius: 10px;
}
#side-menu ul li a::before{
    content: "";
    position: absolute;
    inset: -7px;              /* にじみの広がり */
    background: #fff;
    filter: blur(5px);        /* ぼかし量 */
    border-radius: inherit;
    z-index: -1;
    pointer-events: none;
}
#side-menu ul li a img {
    width: 32px;
    margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
    #side-menu {
        display: none;
    }
}

#side-bar {
    width: 200px;
    background-color: #fff;
    padding: 30px 0;
}
#side-bar .logo {
    display: block;
    width: 60%;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    #side-bar {
        display: none;
    }
}

#sub-mv .block {
    display: flex;
}
#sub-mv .image {
    position: relative;
    width: calc(100% - 200px);
    height: 80vh;
}
#sub-mv .image .thumb img {
    width: 100%;
    object-fit: cover;
    height: 80vh;
}
#sub-mv .image .txt {
    position: absolute;
    bottom: 10px;
    left: 20px;
}
#sub-mv .image .txt p {
    font-size: 55px;
    font-weight: bold;
    line-height: 1.3;
    color: #fff;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}
#sub-mv .image .rain {
    width: 20%;
    max-width: 266px;
    position: absolute;
    right: 0;
    bottom: 0;
}
#sub-mv .ttl {
    margin: 60px auto 55px;
    text-align: center;
    font-weight: bold;
}
#sub-mv .ttl h2 {
    font-size: 40px;
    letter-spacing: 4px;
}
#sub-mv .ttl p {
    font-size: 18px;
    line-height: 1.7;
}
#sub-mv .description {
    padding-top: 35px;
    padding-bottom: 100px;
}
#sub-mv .description p {
    text-align: center;
    line-height: 2;
}
@media screen and (max-height: 800px) {
    #sub-mv .image .txt p {
        font-size: 45px;
        font-weight: bold;
        line-height: 1.3;
        color: #fff;
        text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.6);
        letter-spacing: 1px;
    }
}
@media screen and (max-width: 768px) {
    #sub-mv .block {
        display: block;
    }
    #sub-mv .image {
        width: 100%;
        height: 430px;
    }
    #sub-mv .image.long {
        width: 100%;
        height: 470px;
    }
    #sub-mv .image.short {
        width: 100%;
        height: 300px;
    }
    #sub-mv .image .thumb {
        height: 100%;
    }
    #sub-mv .image .thumb .sp {
        height: 100%;
    }
    #sub-mv .image .thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: unset;
    }
    #sub-mv .image .txt {
        height: max-content;
        writing-mode: vertical-rl;
        text-orientation: mixed; 
        font-feature-settings: "pkna";
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    #sub-mv .image .txt p {
        font-size: 27.5px;
    }
    #sub-mv .image .rain {
        width: 38.6%;
        max-width: 400px;
        position: absolute;
        right: 0;
        bottom: 21px;
    }
    #sub-mv .image.short .rain {
        width: 32.6%;
        max-width: 400px;
        position: absolute;
        right: 0;
        bottom: 0;
    }
    #sub-mv .ttl h2 {
        font-size: 25px;
    }
    #sub-mv .ttl p {
        font-size: 12px;
    }
    #sub-mv .description {
        padding-top: 0;
        padding-bottom: 50px;
    }
    #sub-mv .description p {
        text-align: center;
        line-height: 2;
        font-size: 14px;
    }
}

.nav-btn {
    position: relative;
    display: block;
    background-color: #00A048;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    border-radius: 30px;
    padding: 12px 0;
}
.nav-btn.disabled {
    background-color: #D9D9D9;
}
.nav-btn:hover {
    opacity: 0.6;
}
.nav-btn img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 43px !important;
    height: 43px !important;
}

.cat p {
    display: inline-block;
    position: relative;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    color: #FFF;
    box-sizing: border-box;
    padding: 0 30px;
    font-weight: bold;
}
.cat p:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

.cat p:after {
  top: 0;
  right: -1px;
  border-width: 15px 15px 15px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}

#ft-recruit {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 0;
}
#ft-recruit .human {
    width: 130px;
    margin-right: 25px;
}
#ft-recruit .recruit {
    width: 240px;
}
#ft-recruit a:hover {
    opacity: 0.6;
}
#ft-recruit .txt h2 {
    font-size: 40px;
    margin-bottom: 30px;
    line-height: 1;
}
#ft-recruit .txt p {
    line-height: 1;
}
#ft-recruit .sp-humans {
    display: none;
}
@media screen and (max-width: 768px) {
    #ft-recruit {
        display: block;
    }
    #ft-recruit .txt h2 {
        text-align: center;
        font-size: 25px;
        margin-bottom: 20px;
        line-height: 1;
    }
    #ft-recruit .txt p {
        text-align: center;
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    #ft-recruit .sp-humans {
        margin: auto;
        display: flex;
        justify-content: center;
    }
    #ft-recruit .sp-humans .human {
        width: 24%;
        margin-right: 0;
    }
    #ft-recruit .sp-humans a {
        width: 48%;
    }
}

#ft-contact {
    padding: 100px 0;
    position: relative;
    z-index: 15;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FEF2E2;
}
#ft-contact a {
    width: 17.5%;
    margin: 0 30px;
}
#ft-contact a:hover {
    opacity: 0.8;
}
#ft-contact img {
    position: relative;
    z-index: 10;
    width: 100%;
}
#ft-contact .logo {
    position: absolute;
    z-index: 1;
    top: -70px;
    left: 0;
}
@media screen and (max-width: 768px) {
    #ft-contact {
        padding: 55px 0;
    }
    #ft-contact a {
        width: 40%;
        margin: 0 20px;
    }
    #ft-contact .logo {
        top: -35px;
    }
}

.page-wrap {
    width: 100%;
    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: 50px;
    height: 50px;
    border-radius: 5px;
    background: #469461;
    color: #fff;
    border: none;
    font-size: 24px;
    font-weight: bold;
    margin: 0 8px;
}
.page-wrap .page,
.page-wrap .first,
.page-wrap .last {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    text-align: center;
    margin: 0 8px;
    font-size: 24px;
    font-weight: bold;
    background: #D9D9D9;
}
.page-wrap .nextpostslink {
    font-size: 42px;
    margin-left: 10px;
    color: #469461;
}
.page-wrap .previouspostslink {
    font-size: 42px;
    margin-right: 10px;
    color: #469461;
}
@media screen and (max-width: 768px) {
    .page-wrap .current {
        width: 35px;
        height: 35px;
        margin: 0 4px;
        font-size: 15px;
    }
    .page-wrap .page,
    .page-wrap .first,
    .page-wrap .last {
        width: 35px;
        height: 35px;
        margin: 0 4px;
        font-size: 15px;
    }
    .page-wrap .nextpostslink {
        font-size: 24px;
    }
    .page-wrap .previouspostslink {
        font-size: 24px;
    }
}

#form {
    background-color: #FEF2E2;
    padding: 55px 0 60px 0;
}
#form h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 55px;
}
#form form {
    width: 70%;
    max-width: 880px;
    margin: auto;
}
.wpcf7 p {
    display: inline;
}
#form input, #form textarea {
    background-color: #fff;
}
#form .field {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 60px 60px 60px;
    margin-bottom: 40px;
}
#form .field .item {
    display: flex;
    margin-bottom: 60px;
}
#form .event .field .item {
    justify-content: space-between;
}
#form .event .field.confirm .item {
    justify-content: flex-start;
}
#form .field .item label {
    font-size: 16px;
    font-weight: bold;
}
#form .field .item .label {
    width: 17%;
    margin-right: 30px;
    text-align: left;
}
#form .field .item .nessesary {
    color: #C21919;
}
#form .field .item.multi .nessesary {
    font-size: 12px;
}
.wpcf7-form-control-wrap {
    width: 78%;
}
#form .field .item input[type=text],
#form .field .item input[type=email],
#form .field .item input[type=tel] {
    width: 100%;
    border: none;
    border-bottom: 1px solid #262D35;
    padding: 7px 10px;
}
#form .field .item select {
    background-color: #FCFFFD;
    border: 1px solid #D9D9D9;
    font-weight: bold;
    margin-right: 10px;
    border-radius: 3px;
}
#form .field .item textarea {
    width: 100%;
}
#form .field .item textarea {
    border: 1px solid #262D35;
    padding: 7px 10px;
    border-radius: 10px;
}
#form .field .item input::placeholder {
    color: #CBC4BB;
    font-weight: bold;
}
#form .field .item .flex {
    display: flex;
    margin-bottom: 20px;
}
#form .field .item .time {
    margin-right: 13px;
}
#form .field .item input[type="date"] {
    position: relative;
    background-color: #00A048;
    color: #fff;
    color: #333;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    padding: 3px 5px;
}

/* Safari の内部フィールドも白く */
#form .field .item input::-webkit-datetime-edit-year-field, 
#form .field .item input::-webkit-datetime-edit-month-field, 
#form .field .item input::-webkit-datetime-edit-day-field, 
#form .field .item input::-webkit-datetime-edit-hour-field, 
#form .field .item input::-webkit-datetime-edit-minute-field, 
#form .field .item input::-webkit-datetime-edit-second-field, 
#form .field .item input::-webkit-datetime-edit-millisecond-field, 
#form .field .item input::-webkit-datetime-edit-meridiem-field {
    color: #fff !important;
}
input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.8;
}

#form .field .item .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    column-gap: 40px;
    row-gap: 15px;
}
#form .field.confirm .item .grid {
    display: block;
}
#form .field .item .grid.three {
    grid-template-columns: repeat(3, 1fr); 
}
#form .field .item .radio_item {
    display: flex;
    align-items: center;
}
#form .field .item .radio_item label {
    margin-left: 20px;
    cursor: pointer;
}
#form .field .item .radio_item input[type="radio"],
#form .field .item .radio_item input[type="checkbox"] {  
    display: none;
    /* accent-color: #00A048;
    border: initial;
    padding: 0;
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform-origin: left center;
    vertical-align: middle;
    line-height: 1;
    margin-right: .4rem; */
}
#form .field .item .radio_item input[type="radio"] + label,
#form .field .item .radio_item input[type="checkbox"] + label {
    position: relative;
}
#form .field .item .radio_item input[type="radio"] + label:before,
#form .field .item .radio_item input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -31px;
  display: inline-block;
  width: 25px;
  height: 25px;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  padding: 4px;
  background-clip: content-box;
}

#form .field .item .radio_item input[type="radio"]:not(:checked) + label:before,
#form .field .item .radio_item input[type="checkbox"]:not(:checked) + label:before {
  border-color: #333;
}

#form .field .item .radio_item input[type="radio"]:checked + label:before,
#form .field .item .radio_item input[type="checkbox"]:checked + label:before {
  border-color: #00A048;
  background-color: #00A048;
}
/* #form .field .item .radio_item input[type="radio"]:checked + label,
#form .field .item .radio_item input[type="checkbox"]:checked + label {
    color: #00A048;
    font-weight: bold;
} */
#form .field .item .radio_item label {
    display: flex;
}
#form .field .item .radio_item label span {
    margin-left: 20px;
}
#form .field .term {
    display: flex;
    justify-content: center;
    font-weight: bold;
}
#form .field .term input[type="checkbox"] {
  display: none;
}

#form .field .term input[type="checkbox"] + span {
  position: relative;
  cursor: pointer;
}

/* ボックス本体 */
#form .field .term input[type="checkbox"] + span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid #333;
    border-radius: 3px;
    background-color: #fff;
    box-sizing: border-box;
}

/* 未チェック時（任意で色変更も可） */
#form .field .term input[type="checkbox"]:not(:checked) + span::before {
  border-color: #999;
  background-color: #f9f9f9;
}

/* チェック時のボックス背景など */
#form .field .term input[type="checkbox"]:checked + span::before {
  background-color: #00A048;
  border-color: #00A048;
}

/* ✅ チェックマーク（ここがポイント） */
#form .field .term input[type="checkbox"]:checked + span::after {
    content: "";
    position: absolute;
    top: 45%;
    left: -24px;
    width: 8px;
    height: 14px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: translateY(-50%) rotate(45deg);
}
#form form .nav-btn img {
    right: 5px;
    margin-right: 5px;
}
#form .caution {
    margin-bottom: 40px;
    text-align: center;
}
#form .caution p {
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}
#form .caution img {
    display: block;
    width: 18px;
    margin: 0 auto 20px;
}
#form .submit-btns {
    display: flex;
}
#form input[type="submit"] {
    position: relative;
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    border-radius: 30px;
    padding: 12px 0;
    border: none;
    width: 320px;
    margin: auto;
    background: url("../img/arrow-right-orange.png") no-repeat right 15px center / 43px auto, #f78c00; 
    text-align: center;
    cursor: pointer;
}
#form input[type="button"] {
    position: relative;
    display: block;
    background-color: #333;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    border-radius: 30px;
    padding: 12px 0;
    border: none;
    width: 320px;
    margin: auto;
    text-align: center;
    cursor: pointer;
}
#form input[type="submit"]:hover {
    opacity: 0.6;
}
#form .wpcf7-submit:disabled {
    background: url("../img/arrow-right-bl.png") no-repeat right 15px center / 43px auto, #ccc; 
}
#form .wpcf7-list-item-label a {
    color: #0000ee;
    text-decoration: underline;
}
@media screen and (max-width: 768px) {
    #form {
        padding: 57px 0 50px 0;
    }
    #form h2 {
        font-size: 25px;
        text-align: center;
    }
    #form form {
        width: 100%;
    }
    #form .field {
        border-radius: 0;
        padding: 50px 20px 50px 20px;
    }
    #form .field .item {
        flex-direction: column;
        margin-bottom: 40px;
    }
    #form .field .item label {
        font-size: 15px;
        margin-bottom: 10px;
    }
    #form .field .item .label {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .wpcf7-form-control-wrap {
        width: 100%;
    }
    #form .field .item .flex {
        display: block;
        margin-bottom: 20px;
    }
    #form .field .item .time {
        margin-right: 0;
        margin-bottom: 20px;
    }
    #form .field .item .radio_item label {
        display: flex;
        margin-bottom: 0;
    }
    #form .field .item .grid.three {
        grid-template-columns: repeat(1, 1fr); 
        column-gap: 0px;
    }
    #form .field .term {
        font-size: 14px;
    }
    #form .caution {
        padding: 0 20px;
    }
}


footer {
    background-image: url('../img/fotter-bg.png');
    background-position: center bottom;
    background-size: 100%;
    background-repeat: no-repeat;
    padding: 60px 0 15px 0;
}
footer .block {
    width: 80%;
    max-width: 1024px;
    margin: 0 auto 75px;
}
footer .block .content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}
footer .block .item {
    width: 23%;
}
footer .block .info img {
    margin-bottom: 20px;
    width: 72.5%;
}
footer .block .info p {
    font-weight: bold;
    margin-bottom: 30px;
}
footer .block .info ul {
    margin-bottom: 15px;
}
footer .block .info ul .tel {
    margin-top: 10px;
    font-weight: bold;
}
footer .block .info .sns {
    display: flex;
}
footer .block .info .sns a {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
footer .block .info .sns a:hover {
    opacity: 0.6;
}
footer .block .info .sns a img {
    width: 100%;
}
footer .block .nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
footer .block .nav ul .ttl {
    color: #CBC4BB;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1;
}
footer .block .nav ul li {
    line-height: 1.8;
}
footer .block .nav ul li a {
    font-weight: bold;
}
footer .block .nav ul .sub {
    margin-left: 1em;
    line-height: 1.5;
}
footer .block .nav ul .btn {
    display: block;
    width: 100%;
    background-color: #00A048;
    color: #fff;
    padding: 10px 0;
    font-weight: bold;
    border-radius: 8px;
    text-align: center;
    margin-top: 10px;
}
footer .block .nav ul .btn:hover {
    opacity: 0.6;
}
footer .block .privacy {
    display: flex;
    justify-content: flex-end;
    font-size: 14px;
}
footer .copy {
    text-align: center;
}
footer .copy h3 {
    font-size: 26px;
}
footer .copy p {
    font-size: 14px;
}
@media screen and (max-width: 768px) {
    footer {
        padding: 0;
    }
    footer .top {
        padding: 30px;
    }
    footer .top .logo {
        display: block;
        width: 42.7%;
        margin: 0 auto 50px;
    }
    footer .top .tel {
        display: block;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        margin: 0 auto 26px;
    }
    footer .top .sns {
        display: flex;
        justify-content: center;
        margin-bottom: 25px;
    }
    footer .top .sns a {
        width: 40px;
        margin: 0 12.5px;
    }
    footer .top .sns a img {
        width: 100%;
    }
    footer .top .name {
        font-weight: bold;
        font-size: 14px;
        text-align: center;
        margin-bottom: 10px;
    }
    footer .top .address {
        font-size: 13px;
        text-align: center;
    }
    footer .menu .item {
        margin-bottom: 5px;
    }
    footer .menu .item .accordion {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 25px 20px;
        font-size: 20px;
        color: #CBC4BB;
        font-weight: bold;
        background-color: #FBFAF6;
    }
    footer .menu .item .accordion img {
        width: 18px;
        transform: rotate(-90deg);
        transition: all 0.4s ease;
    }
    .menu .item.open .accordion img {
        transform: rotate(0);
    }
    footer .menu .item ul {
        padding: 0 35px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease;
    }
    .menu .item.open ul {
        max-height: 400px;
        opacity: 1;
    }
    footer .menu .item ul li {
        margin-top: 20px;
    }
    footer .menu .item ul li:last-child {
        margin-bottom: 20px;
    }
    footer .menu .item ul li a {
        font-size: 15px;
        font-weight: bold;
    }
    footer .menu .item ul li .btn {
        display: block;
        width: 170px;
        margin: 0 auto;
        border-radius: 8px;
        color: #fff;
        text-align: center;
        padding: 13px 0;
        font-size: 16px;
        font-weight: bold;
        background-color: #00A048;
    }
    footer .privacy {
        margin-top: 30px;
        font-size: 12px;
        text-align: right;
        margin-right: 20px;
        margin-bottom: 80px;
    }
    footer .copy {
        text-align: center;
        padding-bottom: 20px;
    }
    footer .copy h3 {
        font-size: 21px;
    }
    footer .copy p {
        font-size: 14px;
    }
}

#footer-nav {
    display: none;
}
@media screen and (max-width: 768px) {
    #footer-nav {
        position: -webkit-sticky;
        position:         sticky;
        display: block;
        z-index: 100;
        width: 100%;
        bottom: 0;
        left: 0;
        padding: 0 5px;
    }
    #footer-nav a {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #00A048;
        color: #fff;
        font-size: 20px;
        text-align: center;
        font-weight: bold;
        border-radius: 5px;
    }
    #footer-nav .blog-nav a {
        margin-bottom: 5px;
        padding: 5px 0;
    }
    #footer-nav .blog-nav img {
        position: relative;
        z-index: 300;
        width: 27.5px;
        margin-right: 15px;
    }
    #footer-nav .flex {
        display: flex;
        justify-content: space-between;
    }
    #footer-nav .flex a {
        width: 49.5%;
        padding: 0 7px;
    }
    #footer-nav .flex a:first-child {
        text-align: left;
    }
    #footer-nav .flex img {
        width: 35px;
        margin-right: 15px;
    }
}