@charset "UTF-8";
/* introAnimate ------------------*/

.introAnimate {
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    animation-duration: 4.5s;
    animation-fill-mode: both;
    animation-delay: 0;
    animation-name: bgTransparent;
}

.introAnimate .logo {
    background: url(../img/top/img_intro01.png) no-repeat center center;
    width: 227px;
    height: 260px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    animation-duration: 3.5s;
    animation-fill-mode: both;
    animation-delay: 0.3s;
    animation-name: chargeFadeIn;
    animation-timing-function: cubic-bezier(.645, .045, .355, 1);
}

.introAnimate .logo .energy01, .introAnimate .logo .energy02, .introAnimate .logo .energy03, .introAnimate .logo .energy04 {
    background: transparent;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.introAnimate .logo .energy01::before {
    content: "";
    background-color: #f6bfc8;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 78px;
    left: 0;
    border-radius: 100px;
    z-index: 1;
    animation-duration: 0.7s;
    animation-fill-mode: both;
    animation-delay: 0.9s;
    animation-name: chargeAnimate;
    animation-timing-function: cubic-bezier(.645, .045, .355, 1);
    transition: all 300ms cubic-bezier(.645, .045, .355, 1);
}

.introAnimate .logo .energy01::after {
    content: "";
    background-color: #b6def3;
    width: 12px;
    height: 12px;
    position: absolute;
    bottom: 81px;
    right: 0;
    border-radius: 100px;
    z-index: 1;
    animation-duration: 0.7s;
    animation-fill-mode: both;
    animation-delay: 0.9s;
    animation-name: chargeAnimate;
    animation-timing-function: cubic-bezier(.645, .045, .355, 1);
    transition: all 300ms cubic-bezier(.645, .045, .355, 1);
}

.introAnimate .logo .energy02::before {
    content: "";
    background-color: #b8d200;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 41px;
    left: 20px;
    border-radius: 100px;
    z-index: 1;
    animation-duration: 0.7s;
    animation-fill-mode: both;
    animation-delay: 1.5s;
    animation-name: chargeAnimate;
    animation-timing-function: cubic-bezier(.645, .045, .355, 1);
    transition: all 300ms cubic-bezier(.645, .045, .355, 1);
}

.introAnimate .logo .energy02::after {
    content: "";
    background-color: #fed400;
    width: 18px;
    height: 18px;
    position: absolute;
    bottom: 45px;
    right: 20px;
    border-radius: 100px;
    z-index: 1;
    animation-duration: 0.7s;
    animation-fill-mode: both;
    animation-delay: 1.5s;
    animation-name: chargeAnimate;
    animation-timing-function: cubic-bezier(.645, .045, .355, 1);
    transition: all 300ms cubic-bezier(.645, .045, .355, 1);
}

.introAnimate .logo .energy03::before {
    content: "";
    background-color: #fed400;
    width: 22px;
    height: 22px;
    margin: auto;
    position: absolute;
    top: 11px;
    left: 56px;
    border-radius: 100px;
    z-index: 1;
    animation-duration: 0.7s;
    animation-fill-mode: both;
    animation-delay: 2.1s;
    animation-name: chargeAnimate;
    animation-timing-function: cubic-bezier(.645, .045, .355, 1);
    transition: all 300ms cubic-bezier(.645, .045, .355, 1);
}

.introAnimate .logo .energy03::after {
    content: "";
    background-color: #b8d200;
    width: 22px;
    height: 22px;
    margin: auto;
    position: absolute;
    bottom: 15px;
    right: 56px;
    border-radius: 100px;
    z-index: 1;
    animation-duration: 0.7s;
    animation-fill-mode: both;
    animation-delay: 2.1s;
    animation-name: chargeAnimate;
    animation-timing-function: cubic-bezier(.645, .045, .355, 1);
    transition: all 300ms cubic-bezier(.645, .045, .355, 1);
}

.introAnimate .logo .energy04::before {
    content: "";
    background-color: #b6def3;
    width: 30px;
    height: 30px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 104px;
    border-radius: 100px;
    z-index: 1;
    animation-duration: 0.7s;
    animation-fill-mode: both;
    animation-delay: 2.7s;
    animation-name: chargeAnimate;
    animation-timing-function: cubic-bezier(.645, .045, .355, 1);
    transition: all 300ms cubic-bezier(.645, .045, .355, 1);
}

.introAnimate .logo .energy04::after {
    content: "";
    background-color: #f6bfc8;
    width: 30px;
    height: 30px;
    margin: auto;
    position: absolute;
    bottom: 1px;
    right: 104px;
    border-radius: 100px;
    z-index: 1;
    animation-duration: 0.7s;
    animation-fill-mode: both;
    animation-delay: 2.7s;
    animation-name: chargeAnimate;
    animation-timing-function: cubic-bezier(.645, .045, .355, 1);
    transition: all 300ms cubic-bezier(.645, .045, .355, 1);
}

@keyframes bgTransparent {
    from {
        background-color: #fff;
        opacity: 1;
        visibility: visible;
    }
    10% {
        background-color: #fff;
        opacity: 1;
        visibility: visible;
    }
    90% {
        background-color: #fff;
        opacity: 1;
        visibility: visible;
    }
    to {
        background-color: transparent;
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes chargeFadeIn {
    from {
        opacity: 1;
        transform: scale(1);
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.5);
    }
}

@keyframes chargeAnimate {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    60% {
        opacity: 1;
        transform: scale(1.2);
    }
    80% {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* keyVisual ------------------*/

#keyVisual {
    background-color: #f0f5fb;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 60px 0 10px;
    position: relative;
}

#keyVisual>.commBlc {
    z-index: 2;
}

#keyVisual .mainTtl01 {
    text-align: center;
    margin-bottom: 2%;
}

#keyVisual .ttl01 {
    font-size: 300%;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, 0px 2px 0 #fff, 0 -2px 0 #fff, -2px 0 0 #fff, 2px 0 0 #fff;
}

#keyVisual .ttl02 {
    font-size: 180%;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}

#keyVisual .imgDeco01 {
    text-align: center;
    margin-top: -13vw;
    position: relative;
    z-index: 1;
    animation-delay: 0.4s;
}

#keyVisual .imgDeco01 img {
    width: 88vw;
}

@media screen and (max-width: 1440px) {
    #keyVisual .imgDeco01 img {
        width: 96vw;
    }
}

@media screen and (max-width: 1200px) {
    #keyVisual .mainTtl01 img {
        width: 78vw;
    }
    #keyVisual .ttl01 {
        font-size: 4vw;
    }
    #keyVisual .ttl02 {
        font-size: 2.4vw;
    }
}

@media screen and (max-width: 1000px) {
    #keyVisual .mainTtl01 img {
        width: 92vw;
    }
    #keyVisual .ttl01 {
        font-size: 5vw;
    }
    #keyVisual .ttl02 {
        font-size: 3.4vw;
    }
    #keyVisual .imgDeco01 {
        margin-top: -7vw;
    }
}

@media screen and (max-width: 767px) {
    #keyVisual {
        padding-top: 5vw;
    }
}

/* txtIntroBlc ------------------*/

.txtIntroBlc {
    font-size: 126%;
    text-align: center;
    padding: 2% 0;
}

.mainTtl span.highlight {
    color: #ffe600;
}

/* stepBlc ------------------*/

#stepBlc {
    background-color: #eee9e5;
    padding-bottom: 4%;
}

#stepBlc .mainTtl {
    background-color: #402c1a;
    color: #fff;
    font-size: 240%;
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
    padding: 30px 4%;
    margin-bottom: 4%;
}

#stepBlc .innerBlc {
    background-color: #fff;
    padding: 4% 0;
}

#stepBlc .list {
    counter-reset: stepnumber;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#stepBlc .list li {
    counter-increment: stepnumber;
    width: 33.33%;
    padding: 0 4%;
    margin-bottom: 4%;
    position: relative;
    box-sizing: border-box;
}

#stepBlc .list li::before {
    content: "";
    background-color: #d1c0a5;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 1px;
}

#stepBlc .list li:last-of-type::before, #stepBlc .list li:nth-of-type(3n+3)::before {
    display: none;
}

#stepBlc .list li::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 11px;
    border-color: transparent transparent transparent #d1c0a5;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -9px;
}

#stepBlc .list li:last-of-type::after, #stepBlc .list li:nth-of-type(3n+3)::after {
    display: none;
}

#stepBlc .list li:nth-last-of-type(1), #stepBlc .list li:nth-last-of-type(2), #stepBlc .list li:nth-last-of-type(3) {
    margin-bottom: 0;
}

#stepBlc .list li .num {
    background-color: #412d1b;
    color: #fff;
    width: 55px;
    line-height: 1.2;
    text-align: center;
    padding: 4px 0;
    margin: 0 auto 30px;
}

#stepBlc .list li .num::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 11px 13px;
    border-color: transparent transparent transparent #d1c0a5;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -11px;
}

#stepBlc .list li:last-of-type .num::before, #stepBlc .list li:nth-of-type(3n+3) .num::before {
    display: none;
}

#stepBlc .list li .num::after {
    content: counter(stepnumber);
    font-size: 140%;
}

#stepBlc .list li .num .txt01 {
    display: block;
}

#stepBlc .list li .txtBlc {
    font-size: 126%;
    margin-top: 2%;
}

@media screen and (max-width: 1000px) {
    #stepBlc {
        padding-bottom: calc(4% + 29px);
    }
    #stepBlc .mainTtl {
        font-size: 170%;
    }
}

@media screen and (max-width: 767px) {
    #stepBlc .mainTtl {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    #stepBlc .list li {
        width: 50%;
    }
    #stepBlc .list li:nth-last-of-type(2), #stepBlc .list li:nth-last-of-type(3) {
        margin-bottom: 4%;
    }
    #stepBlc .list li:nth-of-type(3n+3)::before {
        display: block;
    }
    #stepBlc .list li:last-of-type:before, #stepBlc .list li:nth-of-type(2n+2)::before {
        display: none;
    }
    #stepBlc .list li:nth-of-type(3n+3)::after {
        display: block;
    }
    #stepBlc .list li:last-of-type::after, #stepBlc .list li:nth-of-type(2n+2)::after {
        display: none;
    }
    #stepBlc .list li:nth-of-type(3n+3) .num::before {
        display: block;
    }
    #stepBlc .list li:last-of-type .num::before, #stepBlc .list li:nth-of-type(2n+2) .num::before {
        display: none;
    }
    #stepBlc .list li .txtBlc {
        font-size: 100%;
    }
}

/* choiceBlc ------------------*/

#choiceBlc .mainTtl {
    max-width: 410px;
    margin: 80px auto 0;
}

#choiceBlc .txtCatch {
    margin-top: -70px;
    margin-bottom: 4%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

#choiceBlc .txtCatch .txt01 {
    color: #1d1d1f;
    font-size: 300%;
    font-weight: bold;
    line-height: 1.8;
    margin-right: 20px;
}

#choiceBlc .txtCatch .txt01 .highlight {
    color: #fa6668;
}

#choiceBlc .txtCatch .imgDeco01 {
    width: 350px;
}

#choiceBlc .txtCatch .imgDeco01 img {
    flex: 0 0 auto;
}

#choiceBlc .list {
    counter-reset: choicenumber;
}

#choiceBlc .list li {
    counter-increment: choicenumber;
    margin-bottom: 4%;
}

#choiceBlc .list li .subj {
    border: 3px solid #402c1a;
    border-radius: 8px;
    display: flex;
}

#choiceBlc .list li .subj .num {
    background-color: #402c1a;
    color: #fff;
    font-size: 300%;
    width: 100px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

#choiceBlc .list li .subj .num::before {
    content: counter(choicenumber);
}

#choiceBlc .list li .subj .num .arrow {
    width: 0;
    height: 0;
    border-left: 20px solid #402c1a;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    position: absolute;
    top: 0;
    left: 100%;
}

#choiceBlc .list li .subj .txt01 {
    font-size: 180%;
    font-weight: bold;
    padding: 20px 4% 20px 40px;
    flex: 1;
    line-height: 1.5;
    display: flex;
    align-items: center;
    color: #422e1c;
}

#choiceBlc .list li .partBlc {
    padding: 2%;
    display: flex;
    flex-wrap: wrap;
}

#choiceBlc .list li .partBlc .imgBlc {
    text-align: center;
    width: 35%;
    margin-right: 2%;
}

#choiceBlc .list li .partBlc .imgBlc img {
    border: 1px solid #d2d2d2;
    flex: 0 0 auto;
    box-sizing: border-box;
}

#choiceBlc .list li .partBlc .txtBlc {
    font-size: 126%;
    width: 63%;
}

#choiceBlc .list li .partBlc .txtBlc .highlight {
    color: #fa6668;
}

@media screen and (max-width: 1200px) {
    #choiceBlc .txtCatch {
        margin-top: 0;
    }
    #choiceBlc .txtCatch .txt01 {
        font-size: 250%;
    }
}

@media screen and (max-width: 1000px) {
    #choiceBlc .txtCatch .txt01 {
        font-size: 200%;
    }
    #choiceBlc .txtCatch .imgDeco01 {
        width: 200px;
    }
    #choiceBlc .list li .subj .txt01 {
        font-size: 140%;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    #choiceBlc .list li .partBlc .txtBlc {
        font-size: 100%;
    }
}

@media screen and (max-width: 767px) {
    #choiceBlc .mainTtl {
        margin-bottom: 4%;
    }
    #choiceBlc .txtCatch .txt01 {
        font-size: 200%;
    }
    #choiceBlc .txtCatch .imgDeco01 {
        width: 24vw;
    }
    #choiceBlc .list li .subj .num {
        width: 60px;
    }
}

@media screen and (max-width: 640px) {
    #choiceBlc .list li .subj .num {
        font-size: 250%;
    }
    #choiceBlc .txtCatch .imgDeco01 {
        display: none;
    }
    #choiceBlc .txtCatch .txt01 {
        font-size: 150%;
        width: 100%;
        text-align: center;
        margin-right: 0;
    }
}

@media screen and (max-width: 480px) {
    #choiceBlc .list li .partBlc {
        padding: 4% 2%;
    }
    #choiceBlc .list li .partBlc .imgBlc {
        width: auto;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2%;
    }
    #choiceBlc .list li .partBlc .txtBlc {
        width: 100%;
    }
    #choiceBlc .mainTtl {
        max-width: 300px;
        margin: 40px auto 4%;
    }
}

/* searchBlc ------------------*/

#searchBlc {
    background-color: #f1f1f1;
    padding-bottom: 4%;
}

#searchBlc .mainTtl {
    background-color: #402c1a;
    color: #fff;
    font-size: 240%;
    line-height: 1.6;
    text-align: center;
    padding: 30px 4%;
    margin-bottom: 2%;
    font-weight: bold;
}

#searchBlc .innerBlc {
    background-color: #fff;
    padding: 4%;
    box-shadow: -2px 3px 7px 0px rgba(0, 0, 0, 0.35);
}

#searchBlc .attention {
    color: #fa6668;
    font-size: 140%;
    margin-bottom: 4%;
}

#searchBlc .partBlc {
    display: flex;
    justify-content: space-between;
}

#searchBlc .partBlc>.search {
    width: 50%;
    margin-right: 2%;
    display: flex;
    flex-wrap: wrap;
}

#searchBlc .partBlc>.search li {
    width: 48%;
    margin: 0 4% 4% 0;
}

#searchBlc .partBlc>.search li:nth-of-type(2n+2) {
    margin-right: 0;
}

#searchBlc .partBlc>.search li .ttl {
    font-weight: 500;
}

#searchBlc .partBlc>.search li .detail {
    color: #888;
    font-size: 90%;
    padding: 3px 0px 0px 17px;
}

#searchBlc .partBlc>.map {
    width: 418px;
}

#searchBlc .partBlc>.map map area {
    cursor: pointer
}

@media screen and (max-width: 1000px) {
    #searchBlc .mainTtl {
        font-size: 170%;
    }
    #searchBlc .partBlc>.search {
        width: 100%;
        margin-right: 0;
    }
    #searchBlc .partBlc>.map {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    #searchBlc .mainTtl {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    #searchBlc .attention {
        font-size: 126%;
    }
}

@media screen and (max-width: 480px) {
    #searchBlc .mainTtl {
        margin-bottom: 4%;
    }
    #searchBlc {
        padding-bottom: calc(4% + 29px);
    }
}

/* searchResultBlc ------------------*/

#searchResultBlc {
    padding-bottom: 4%;
}

#searchResultBlc .mainTtl {
    background-color: #402c1a;
    color: #fff;
    font-size: 240%;
    line-height: 1.6;
    text-align: center;
    padding: 30px 4%;
    margin-bottom: 2%;
    font-weight: bold;
}

#searchResultBlc .result {
    display: flex;
    flex-wrap: wrap;
}

#searchResultBlc .result li {
    box-shadow: 3px -3px 5px rgb(0 0 0 / 10%);
    background-color: #f1f1f1;
    width: 23.5%;
    padding: 15px;
    margin: 0 2% 2% 0;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
}

#searchResultBlc .result li:nth-of-type(4n+4) {
    margin-right: 0;
}

#searchResultBlc .result li>div {
    width: 100%;
}

#searchResultBlc .result li .img {
    text-align: center;
}

#searchResultBlc .result li .company {
    font-weight: 600;
    margin-top: 2%;
    padding: 0 5px;
}

#searchResultBlc .result li .name {
    padding: 0 5px;
}

#searchResultBlc .result li .area {
    margin-top: 2%;
}

#searchResultBlc .result li .area .hd {
    background-color: #402c1a;
    color: #fff;
    text-align: center;
    padding: 2px 5px;
}

#searchResultBlc .result li .area .txt {
    background-color: #fff;
    padding: 2px 5px;
}

#searchResultBlc .result li p {
    padding: 0 5px;
    margin-top: 2%;
}

#searchResultBlc .result li .btn {
    margin-top: 10px;
    align-self: flex-end;
}

#searchResultBlc .result li .btn a {
    background-color: #fff;
    color: #402c1a;
    text-align: center;
    text-decoration: none;
    border: 1px solid #402c1a;
    padding: 2px 5px;
    display: block;
    transition: all 400ms cubic-bezier(.25, .46, .45, .94);
}

#searchResultBlc .result li .btn a:hover {
    background-color: #402c1a;
    color: #fff;
}

#searchResultBlc .btnStyle02 {
    text-align: center;
    padding: 2% 0;
}

@media screen and (max-width: 1000px) {
    #searchResultBlc .mainTtl {
        font-size: 170%;
    }
    #searchResultBlc .result li {
        width: 32%;
    }
    #searchResultBlc .result li:nth-of-type(4n+4) {
        margin-right: 2%;
    }
    #searchResultBlc .result li:nth-of-type(3n+3) {
        margin-right: 0;
    }
}

@media screen and (max-width: 767px) {
    #searchResultBlc .mainTtl {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 640px) {
    #searchResultBlc .result li {
        width: 49%;
    }
    #searchResultBlc .result li:nth-of-type(3n+3) {
        margin-right: 2%;
    }
    #searchResultBlc .result li:nth-of-type(2n+2) {
        margin-right: 0;
    }
}

@media screen and (max-width: 480px) {
    #searchResultBlc .result li {
        padding: 10px;
    }
    #searchResultBlc .mainTtl {
        margin-bottom: 4%;
    }
    #searchResultBlc {
        padding-bottom: calc(4% + 29px);
    }
}

/* recordBlc ------------------*/

#recordBlc {
    padding-bottom: 4%;
}

#recordBlc .innerBlc {
    background-color: #f8f5ec;
    padding: 25px;
}

#recordBlc .mainTtl {
    color: #1d1d1f;
    font-size: 240%;
    font-weight: bold;
    line-height: 1.8;
    text-align: center;
}

#recordBlc .mainTtl+.txt {
    text-align: center;
}

#recordBlc .list {
    background-color: #fff;
    padding: 2% 4%;
    margin-top: 2%;
}

#recordBlc .list dl {
    margin-bottom: 2%;
    display: flex;
    flex-wrap: wrap;
}

#recordBlc .list dl dt {
    width: 110px;
    border-bottom: 1px solid #eee;
}

#recordBlc .list dl dd {
    border-bottom: 1px solid #eee;
    padding-left: 4%;
    padding-bottom: 2%;
    flex: 1;
    box-sizing: border-box;
}

@media screen and (max-width: 1000px) {
    #recordBlc .mainTtl {
        font-size: 170%;
    }
}

@media screen and (max-width: 767px) {
    #recordBlc .innerBlc {
        padding: 2%;
    }
}

@media screen and (max-width: 480px) {
    #recordBlc .list dl dt {
        width: 100%;
        border-bottom: none;
    }
    #recordBlc .list dl dd {
        width: 100%;
        padding-left: 0;
    }
}

/* problemBlc ------------------*/

#problemBlc {
    border-bottom: 20px solid #f0e0c8;
}

#problemBlc .mainTtl {
    background-color: #402c1a;
    color: #fff;
    font-size: 240%;
    line-height: 1.6;
    text-align: center;
    padding: 30px 4%;
    margin-bottom: 2%;
    font-weight: bold;
}

#problemBlc .list {
    display: flex;
    flex-wrap: wrap;
}

#problemBlc .list li {
    text-align: center;
    width: 33.33%;
    padding: 0 2%;
    box-sizing: border-box;
}

@media screen and (max-width: 1000px) {
    #problemBlc .mainTtl {
        font-size: 170%;
    }
}

@media screen and (max-width: 767px) {
    #problemBlc .mainTtl {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 640px) {
    #problemBlc {
        border-bottom: none;
    }
    #problemBlc .list li {
        width: 100%;
        border-bottom: 10px solid #f0e0c8;
        margin-bottom: 4%;
    }
    #problemBlc .list li img {
        width: 280px;
    }
}

/* contactBlc ------------------*/

#contactBlc {
    padding-top: 4%;
}

#contactBlc .mainTtl {
    background-color: #ffe600;
    color: #402c1a;
    font-weight: bold;
    font-size: 240%;
    text-align: center;
    padding: 2px 10px;
    position: relative;
}

#contactBlc .mainTtl::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 12px 0;
    border-color: transparent #ceba00 transparent transparent;
    position: absolute;
    top: 100%;
    left: 0;
}

#contactBlc .mainTtl::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 30px 0 0;
    border-color: #ceba00 transparent transparent transparent;
    position: absolute;
    top: 100%;
    right: 0;
}

#contactBlc .partBlc {
    background-color: #fff;
    border-left: 2px solid #fefdf2;
    border-right: 15px solid #fefdf2;
    border-bottom: 10px solid #fefdf2;
    margin: 0 30px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

#contactBlc .partBlc::before {
    content: "";
    background-color: #fff;
    width: 12px;
    height: 7px;
    position: absolute;
    bottom: -10px;
    left: -2px;
}

#contactBlc .partBlc .imgBlc {
    width: 19.5%;
    align-self: flex-end;
    position: absolute;
    right: 70px;
}

#contactBlc .partBlc .txtBlc {
    font-size: 140%;
    width: 92%;
    margin-right: auto;
    padding: 4% 4% 4% 8%;
    box-sizing: border-box;
    position: relative;
}

#contactBlc .partBlc .txtBlc .highlight {
    color: #fa6668;
}

@media screen and (max-width: 1200px) {
    #contactBlc .partBlc .imgBlc {
        width: 17vw;
        right: 3%;
    }
}

@media screen and (max-width: 1000px) {
    #contactBlc .mainTtl {
        font-size: 170%;
    }
    #contactBlc .partBlc .txtBlc {
        font-size: 110%;
    }
}

@media screen and (max-width: 767px) {
    #contactBlc .mainTtl {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media screen and (max-width: 640px) {
    #contactBlc .partBlc {
        border-left: 2px solid #fff9ca;
        border-right: 10px solid #fff9ca;
        border-bottom: 5px solid #fff9ca;
        margin-left: 10px;
        margin-right: 10px;
    }
    #contactBlc .partBlc::before {
        width: 7px;
        height: 3px;
        bottom: -5px;
    }
    #contactBlc .partBlc .imgBlc {
        display: none;
    }
    #contactBlc .partBlc .txtBlc {
        width: 100%;
        padding-left: 4%;
    }
}

/* voiceBlc ------------------*/

#voiceBlc {
    background-color: #f1efed;
    padding-bottom: 2%;
    margin-bottom: 2%;
}

#voiceBlc .mainTtl {
    background-color: #402c1a;
    color: #fff;
    font-size: 240%;
    line-height: 1.6;
    text-align: center;
    padding: 30px 4%;
    margin-bottom: 2%;
    font-weight: bold;
}

#voiceBlc .txtCatch {
    font-size: 140%;
    text-align: center;
    margin-bottom: 2%;
}

#voiceBlc .list li {
    background-color: #fff;
    padding: 4%;
    margin-bottom: 2%;
    display: flex;
    flex-wrap: wrap;
    box-shadow: -3px 6px 10px 0px rgba(149, 149, 149, 0.35);
}

#voiceBlc .list li .imgBlc {
    width: 70px;
    margin-right: 2%;
}

#voiceBlc .list li .imgBlc img {
    flex: 0 0 auto;
}

#voiceBlc .list li .txtBlc {
    flex: 1;
}

#voiceBlc .list li .txtBlc .ttl {
    font-size: 140%;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    padding-bottom: 4px;
    margin-bottom: 4px;
    color: #412d1b;
}

#voiceBlc .list li .txtBlc .txt {
    font-size: 126%;
}

#voiceBlc .list li .txtBlc .txt .highlight {
    color: #e60033;
}

@media screen and (max-width: 1000px) {
    #voiceBlc .mainTtl {
        font-size: 170%;
    }
    #voiceBlc .txtCatch {
        font-size: 126%;
    }
}

@media screen and (max-width: 767px) {
    #voiceBlc .mainTtl {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    #voiceBlc .list li .txtBlc .ttl {
        font-size: 126%;
    }
    #voiceBlc .list li .txtBlc .txt {
        font-size: 100%;
    }
}

@media screen and (max-width: 480px) {
    #voiceBlc .txtCatch {
        font-size: 100%;
    }
    #voiceBlc .list li .imgBlc {
        width: 45px;
    }
    #voiceBlc .mainTtl , #voiceBlc .txtCatch {
        margin-bottom: 4%;
    }
    #voiceBlc {
        padding-bottom: calc(4% + 29px);
        margin-bottom: 4%;
    }
}

/* shikieneBlc ------------------*/

@media screen and (min-width:560px) {
    br.brRevert {
        display: none;
    }
}

#shikieneBlc .mainTtl {
    font-size: 240%;
    line-height: 1.6;
    text-align: center;
    padding: 30px 4%;
    margin-top: 2%;
}

#shikieneBlc .innerBlc {
    background-color: #e7f6e5;
    border-radius: 20px;
    padding: 4%;
    width: 100%;
    max-width: 94%;
    margin: auto;
}

#shikieneBlc .innerBlc .txtBlc {
    font-size: 126%;
    display: block;
}

#shikieneBlc {
    margin-bottom: 4%;
}

#shikieneBlc .btnStyle02 {
    text-align: center;
    padding: 4% 0 0;
}

@media screen and (max-width: 1000px) {
    #shikieneBlc .mainTtl {
        font-size: 170%;
    }
}

@media screen and (max-width: 767px) {
    #shikieneBlc .mainTtl {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    #shikieneBlc .innerBlc .txtBlc {
        font-size: 100%;
    }
    #shikieneBlc {
        margin-bottom: calc(20px + 2%);
    }
}

@media screen and (max-width: 480px) {
    #shikieneBlc .btnStyle02 a {
        padding-right: 20vw;
        padding-left: 10vw;
    }
    #shikieneBlc .btnStyle02 {
        padding-top: 6%;
    }
}

/* bnrRight ------------------*/

#bnrRight {
    background: #fff url(../img/top/bg_bnr01.jpg) no-repeat -20px 110px;
    background-size: 310px;
    width: 280px;
    padding-bottom: 42px;
    /* height: 250px; */
    -webkit-box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 20%);
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 999;
    transition: all 800ms ease-in-out;
    opacity: 0;
    -webkit-transform: translateZ(0);
    border: 5px solid #f39801;
}

#bnrRight .inner {
    padding: 25px 15px;
}

#bnrRight .inner .txt {
    color: #000;
    line-height: 1.6;
}

#bnrRight .inner .btn a {
    background-color: #f39801;
    color: #fff;
    font-size: 90%;
    text-decoration: none;
    padding: 4px 20px;
    margin-top: 20px;
    display: inline-block;
    box-sizing: border-box;
}

#bnrRight .btm {
    background-color: #f39801;
    font-size: 90%;
    width: 100%;
    padding: 7px 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
}

#bnrRight .btm>p {
    color: #fff;
    text-align: center;
}

#bnrRight .btm>p .txtSmall {
    font-size: 75%;
}

#bnrRight .ttlBlc h3 {
    padding: 10px 15px;
    background-color: #f39801;
    color: #fff;
    font-size: 150%;
    text-align: center;
    border-bottom: 5px solid #f39801;
}

@media screen and (max-width: 767px) {
    #bnrRight {
        margin: 40px auto;
        position: relative;
        bottom: auto !important;
        right: auto;
        opacity: 1;
    }
    #bnrRight .inner .btn a {
        font-size: 100%;
    }
    #bnrRight .btm {
        font-size: 100%;
    }
}