.ken #mainCatch {
    font-size: 1.5rem;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
    line-height: 1.8;
    left: 150px;
    bottom: 50px;
}

.ken #menuLoad .menuWrap p a {
    padding: 11px 13px;
}

#infoArea {
    padding: 70px 0 100px;
}

#aboutusArea {
    display: flex;
    justify-content: center;
    align-items: center;
}

#aboutusArea > div {
  width: 50%;
  height: 300px;
  transition: all 0.5s;
}

#aboutusArea > div:hover {
  opacity: 0.9;
}

#aboutus1 {
  background: url(images/backGaiyo.jpg) center center;
  background-size: cover;
  border-right: 1px solid #FFF;
}

#aboutus2 {
  background: url(images/backGyomu.jpg) center center;
  background-size: cover;
}

#aboutusArea a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-decoration: none;
}

#aboutusArea p {
  display: inline-block;
  font-size: 1.125rem;
  padding: 18px 60px;
  position: relative;
  filter: drop-shadow(0 0 5px #00000099);
}

#aboutus1 p {
  background: #00403a;
}

#aboutus2 p {
  background: #00403a;
}

#aboutusArea p::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
}

#linkList {
    background: #F8F8F8;
}

#linkList > div {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 60px 0 50px;
}

#linkList ul {
    display: flex;
    justify-content: center;
    gap: 20px 15px;
    flex-wrap: wrap;
}

#linkList ul li a {
    display: block;
    background: #FFF;
    padding: 10px 10px 10px 20px;
    border-radius: 4px;
    border: 1px solid #EEE;
    color: #333;
    text-decoration: none;
    position: relative;
}

#linkList ul li a::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid #ffc72c;
    border-right: 0;
    position: absolute;
    top: 50%;
    left: 9px;
    transform: translateY(-50%);
}

#linkList ul li a:hover {
    background: #fcfde5;
}

#linkList hr {
    margin-top: 17px;
}


#linkArea {
    margin: 110px auto 180px;
    display: flex;
    justify-content: center;
    gap: 0 60px;
}

#linkArea a {
    display: inline-block;
    width: 400px;
    padding: 25px 0;
    background: #FFF;
    border: 1px solid #006259;
    border-radius: 10px;
    text-align: center;
    color: #006259;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.5s;
}

#linkArea a:hover {
    background: #F2F9EC;
}

#linkArea p {
    position: relative;
}

#linkArea p a::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #006259;
    border-right: 1px solid #006259;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 4px);
    right: 20px;
}

#toJA a::before {
    content: url(images/iconJA.svg);
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

#toATM a::before {
    content: url(images/iconATM.svg);
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.ken #footerMenu #toTopPage {
    position: fixed;
    top: initial;
    bottom: 20px;
}

.ken.gray #footerMenu #toTopPage {
    display: none !important;
}

#footerMenu ul {
    flex-wrap: wrap;
    gap: 15px 0;
}

#footerWrap h3 {
    margin-top: 20px;
}

#addressArea {
    margin: 10px 0;
}

#footerFlex {
    display: flex;
    justify-content: space-between;
    gap: 0 40px;
}

#footerFlex .whiteArea {
    background: #FFF;
    padding: 10px 20px;
    border-radius: 10px;
    margin-right: 100px;
}

#footerFlex .whiteArea p {
    font-size: 0.875rem;
    line-height: 1.6;
}

#footerIDWrap {
    display: flex;
    align-items: flex-end;
    gap: 0 2em;
}

#footerIDWrap p span {
    display: inline-block;
    color: #006259;
    background: #bad3a6;
    padding: 2px 10px 3px;
    border-radius: 6px;
    font-weight: bold;
}



@media screen and (max-width:599px) {
    #infoArea {
        padding: 30px 0 70px;
    }

    #aboutusArea {
        flex-direction: column;
        gap: 0 20px;
    }

    #aboutusArea > div {
        width: 100%;
        height: 200px;
    }

    #aboutus1 {
        border-right: none;
        border-bottom: 1px solid #FFF;
    }

    #linkList > div {
        padding: 60px 20px 50px;
    }

    #linkList ul {
        gap: 6px 0;
    }

    #linkList ul li {
        width: 100%;
        text-align: left;
    }

    #linkList ul li a {
        line-height: 1.5;
        font-size: 0.875rem;
        padding: 10px 10px 10px 30px;
    }

    #linkArea {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
        margin: 60px auto 100px;
    }

    #linkArea a {
        font-size: 1.25rem;
    }

    #footerFlex {
        flex-direction: column;
        gap: 50px;
    }

    #footerFlex h3,
    #footerFlex p {
        text-align: center;
    }

    #footerFlex .whiteArea {
        width: 100%;
        margin-right: 0;
        margin-bottom: 90px;
    }

    #footerFlex .whiteArea p {
        text-align: left;
        font-size: 0.75rem;
    }

    #footerIDWrap {
        flex-direction: column;
        align-items: center;
        gap: 20px 0;
        margin-bottom: 20px;
    }
}