/* LOADING BTN */
.buttonLoading {
    cursor: pointer;
}

.buttonLoading.button--loader {
    display: inline-block;
}

.button--loading:after {
    content: " ";
    width: 0.75em;
    height: 0.75em;
    margin-left: 0.5em;
    border-radius: 50%;
    border: 3px solid #fff;
    border-color: #fff #fff #fff transparent;
    animation: loading-spinner-animation 1s linear infinite;
    display: inline-flex;
}

@keyframes loading-spinner-animation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.areaSubsidy .subsidyBox .subsidyList .subsidyWrap {
    margin: 7px 0 44px;
}

/* titleSmall */
.titleSmall {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #4484CE;
    padding: 8px 15px;
    border-radius: 10px 10px 0 0;
    height: 65px;
}

.titleSmall .iconSmall {
    transform: translate(25px, 2px);
    width: 37px;
}

.titleSmall .txtSmall {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    padding-left: 29px;
    letter-spacing: 0.9px !important;
}

/* areaPoint */
.areaPoint {
    margin-bottom: 42px;
}

.wrapPoint {
    background: #fff;
    padding: 32px 32px;
}

.areaPoint .wrapPoint .boxPoint {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.areaPoint .wrapPoint .boxPoint .pointPhoto {
    width: 371px;
}

.areaPoint .wrapPoint .boxPoint .pointPhoto img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.areaPoint .wrapPoint .boxPoint .contentPoint {
    width: calc(100% - 386px);
    margin-top: -2px;
}

.areaPoint .wrapPoint .boxPoint .fullWidth {
    width: 100%;
}

.areaPoint .wrapPoint .boxPoint .contentPoint .titlePoint {
    font-size: 20px;
    font-weight: bold;
    color: #37434C;
    margin-bottom: 7px;
}

.areaPoint .wrapPoint .boxPoint .contentPoint .txtPoint {
    font-size: 16px;
    font-weight: normal;
    text-align: justify;
    letter-spacing: 1.4px !important;
}

.areaPoint .listPoint {
    background: #EFF7FC;
    border: 1px solid #CFE3EE;
    border-radius: 10px;
    padding: 15px 14px 7px;
    margin-bottom: 33px;
}

.areaPoint .listPoint li {
    font-size: 16px;
    font-weight: bold;
    color: #37434C;
    position: relative;
    padding-left: 19px;
    letter-spacing: 1.5px !important;
    margin-bottom: 8px;
}

.areaPoint .listPoint li:after {
    content: "";
    position: absolute;
    background: #FBC500;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    left: 0;
    top: 7px;
}

.areaPoint .listPoint li a {
    color: #4484CE;
}

.areaPoint .boxUnder {
    display: flex;
    justify-content: space-between;
    padding: 14px 14px 0;
    background: #FFFAE3;
}

.areaPoint .boxUnder .underPhoto {
    width: 85px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.areaPoint .boxUnder .txtUnder {
    width: calc(100% - 97px);
    font-size: 16px;
    font-weight: bold;
    color: #37434C;
    text-align: justify;
    letter-spacing: 0.9px !important;
    line-height: 1.48;
    padding-bottom: 15px;
}

/* areaSupport */
.areaSupport {
    margin-bottom: 43px;
}

.wrapPoint table {
    border: 1px solid #CFE3EE;
    width: 100%;
}

.areaSupport th {
    font-size: 16px;
    font-weight: 500;
    background: #EFF7FC;
    border: 1px solid #CFE3EE;
    border-width: 0 1px 1px 0;
    width: 35.8%;
    padding: 15px 10px 14px;
    vertical-align: middle;
    line-height: 1.63;
}

.areaSupport td {
    font-size: 16px;
    font-weight: normal;
    border: 1px solid #CFE3EE;
    border-width: 0 0 1px 0;
    padding: 15px 16px 14px;
    vertical-align: middle;
    line-height: 1.63;
    text-align: justify;
    width: 64.2%;
}

/* areaExpenses */
.areaExpenses {}

.areaExpenses .titleSmall .iconSmall {
    width: 31px;
}

.areaExpenses .boxCal {
    margin-top: 30px;
    border: solid #D9D9D9;
    border-width: 1px 0 1px;
}

.areaExpenses .boxCal .titleCal {
    font-size: 16px;
    font-weight: bold;
    color: #37434C;
    background: #F4F4F4;
    padding: 16px 64px;
    position: relative;
    cursor: pointer;
}

.areaExpenses .boxCal .titleCal:before {
    content: "";
    position: absolute;
    background: url('../images/subsidy-detail/icon-calculation.svg') no-repeat;
    background-size: 100%;
    width: 34px;
    height: 34px;
    top: 50%;
    transform: translateY(-50%);
    left: 14px;
}

.areaExpenses .boxCal .titleCal:after {
    content: "";
    position: absolute;
    background: url('../images/subsidy-detail/icon-triangle.svg') no-repeat;
    background-size: 100%;
    width: 10px;
    height: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    right: 14px;
    transition: all 0.5s;
}

.areaExpenses .boxCal .titleCal.open:after {
    transform: translateY(-50%) rotate(180deg);
    transition: all 0.5s;
}

.areaExpenses .boxCal .contentCal {
    padding-left: 48px;
    /* display: none; */
    margin-top: 17px;
    padding-bottom: 14px;
}

.areaExpenses .boxCal .contentCal .wrapCal {
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: normal;
    color: #37434C;
}

.areaExpenses .boxCal .contentCal .wrapCal .textCal {
    margin-bottom: 1px;
}

.areaExpenses .boxCal .contentCal .wrapCal .listCal li {
    margin-bottom: 3px;
}

.areaExpenses .boxCal .contentCal .txtCal {
    font-size: 14px;
    font-weight: normal;
    color: #919191;
    line-height: 1.72;
    text-align: justify;
}

/* areDocumnents */
.areaDocuments {}

.areaDocuments .listDoc {
    margin-bottom: 3px;
}

.areaDocuments .listDoc li {}

.areaDocuments .listDoc li a {
    font-size: 16px;
    font-weight: normal;
    color: #4484CE;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.areaDocuments .txtDoc {
    color: #919191;
    font-size: 14px;
}

/* areaFlow */
.areaFlow {
    margin-bottom: 44px;
}

.areaFlow .listFlow {}

.areaFlow .listFlow li {
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 2px;
}

.areaFlow .listFlow li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.areaFlow .listFlow li:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 11px solid #D6D9DA;
    bottom: 0;
    left: 18px;
}

.areaFlow .listFlow li:last-child:after {
    display: none;
}

.areaFlow .listFlow li .boxFlow {
    display: flex;
    padding: 9px 14px 11px;
    justify-content: space-between;
    border-bottom: 1px solid #D6D9DA;
}

.areaFlow .listFlow li .boxFlow .wrapNumberFlow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #FBC500;
    padding: 5px 0;
}

.areaFlow .listFlow li .boxFlow .wrapNumberFlow span {
    display: block;
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 0.9;
}

.areaFlow .listFlow li .boxFlow .wrapNumberFlow .txtNumFlow {
    font-size: 9px;
}

.areaFlow .listFlow li .boxFlow .wrapNumberFlow .numberFlow {
    font-size: 18px;
}

.areaFlow .listFlow li .boxFlow .contentFlow {
    width: calc(100% - 50px);
    padding-top: 1px;
}

.areaFlow .listFlow li .boxFlow .contentFlow .titleFlow {
    font-size: 16px;
    font-weight: bold;
    color: #37434C;
    margin-bottom: 8px;
}

.areaFlow .listFlow li .boxFlow .contentFlow .txtFlow {
    font-size: 14px;
    font-weight: normal;
    color: #37434C;
    text-align: justify;
    line-height: 1.57;
}

/* areaRecept */
.areaRecept {}

.areaRecept .titleSmall .iconSmall {
    transform: translate(21px, 4px);
    width: 26px;
}

.areaSupport.areaRecept td .txtLink a {
    color: #4484CE;
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-all;
}

/* areaReputa */
.areaReputa {
    margin-bottom: 47px;
}

.areaReputa .titleSmall .iconSmall {
    width: 35px;
}

.areaReputa .boxReputa {
    display: flex;
    align-items: flex-start;
    margin-bottom: -30px;
}

.areaReputa .boxReputa .reputaLeft {
    background: #FFFCF0;
    border-radius: 10px;
    padding: 28px 28px;
    width: 294px;
    margin-right: 20px;
    border: 1px solid #F9CE00;
}

.areaReputa .boxReputa .reputaLeft .txtReputaLeft {
    font-size: 12px;
    font-weight: normal;
    color: #919191;
    margin-bottom: 4px;
}

.areaReputa .boxReputa .reputaLeft .titleRepLeft {
    font-size: 20px;
    font-weight: bold;
}

.areaReputa .boxReputa .listReputa {
    display: flex;
    width: calc(100% - 314px);
    flex-wrap: wrap;
    transform: translateY(-27px);
}

.areaReputa .boxReputa .listReputa li {
    /* width: calc((100% / 4) - 7px); */
    margin-right: 10px;
    position: relative;
}

.areaReputa .boxReputa .listReputa li:last-child {
    margin-right: 0;
}

.areaReputa .boxReputa .listReputa li .txtChart {
    position: absolute;
    font-size: 12px;
    font-weight: bold;
    color: #37434C;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    line-height: 1.45;
    z-index: 1;
}

.apexcharts-datalabel-value {
    fill: rgb(248 212 36);
    font-weight: bold;
    font-size: 18px;
    transform: translate(2px, 11px);
}

.areaReputa .areaTitle {
    margin-bottom: 5px;
}

#apexcharts-radialbarTrack-0 {
    stroke: #EAE8F0;
}

.areaReputa .areaTitle .titleMain {
    line-height: 1;
}

.areaReputa .areaTitle .titleJp {
    font-size: 14px;
    bottom: inherit;
    top: -24px;
    position: relative;
    padding-bottom: 7px;
}

.areaReputa .areaTitle .titleJp:after {
    content: "";
    position: absolute;
    background-size: 100%;
    width: 100.4%;
    height: 1px;
    bottom: 0;
    left: -8px;
    background: #707070;
}

.areaReputa .areaReview {
    margin-bottom: 0;
    display: none;
    margin-top: 20px;
}

.areaReputa .areaReview .reviewBox {
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
}

.areaReputa .wrapFormReview {}

.areaReputa .wrapFormReview .btnReview {
    max-width: 337px;
    margin: 0 auto;
}

.areaReputa .wrapFormReview .btnReview a {
    display: block;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background: #F19F4D;
    padding: 19px 5px 19px 10px;
    border-radius: 12px;
    letter-spacing: 1px !important;
}

.areaReputa .wrapFormReview .btnReview a span {
    position: relative;
    padding-left: 37px;
}

.areaReputa .wrapFormReview .btnReview a span:before {
    content: "";
    position: absolute;
    background: url('../images/subsidy-detail/icon-review.png') no-repeat;
    background-size: 100%;
    width: 27px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.areaReputa .boxIcon {
    margin-top: 30px;
}

.areaReputa .boxIcon .iconLink {
    margin-bottom: 30px;
    text-align: right;
}

.areaReputa .boxIcon .iconLink a {
    font-size: 14px;
    font-weight: normal;
    color: #4484CE;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-align: right;
    display: inline-block;
    letter-spacing: 0.5px !important;
}

.areaReputa .boxIcon .contentIcon {}

.areaReputa .boxIcon .contentIcon .caseIcon {
    margin-bottom: 20px;
}

.areaReputa .boxIcon .contentIcon .wrapIcon {
    display: flex;
    justify-content: space-between;
}

.areaReputa .boxIcon .contentIcon .wrapIcon .iconLeft {
    width: 105px;
}

.areaReputa .boxIcon .iconLeft .iconPhoto {
    text-align: center;
}

.areaReputa .boxIcon .iconLeft .iconPhoto img {}

.areaReputa .boxIcon .iconLeft .txtIconLeft {
    font-size: 12px;
    font-weight: normal;
    text-align: center;
    line-height: 1.75;
}

.bgSkin {
    background: #FFF8DD;
    position: relative;
}

.bgSkin:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-right: 20px solid #FFF8DD;
    left: -19px;
    top: 16px;
}

.bgBlue {
    background: #EFF7FC;
    position: relative;
}

.bgBlue:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-right: 20px solid #EFF7FC;
    left: -19px;
    top: 16px;
}

.bgSkin .wrapQuick {
    border-bottom: 1px solid #FFFFFF;
}

.bgBlue .wrapQuick {
    border-bottom: 1px solid #BAD7EB;
}

.areaReputa .boxIcon .contentIcon .wrapIcon .iconRight {
    border-radius: 10px;
    width: calc(100% - 113px);
    padding: 15px 12px 16px 16px;
}

.areaReputa .boxIcon .iconRight .wrapQuick {
    padding-bottom: 8px;
    margin-bottom: 9px;
}

.areaReputa .boxIcon .iconRight .wrapQuick .boxQuick {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    align-items: flex-start;
}

.areaReputa .boxIcon .iconRight .boxQuick .contentQuick {
    width: calc(100% - 230px);
    display: flex;
}

.areaReputa .boxIcon .iconRight .contentQuick .txtQuick {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: #FBC500;
    border-radius: 4px;
    text-align: center;
    padding: 2px 19px;
    display: inline-block;
}

.areaReputa .boxIcon .iconRight .boxQuick .txtReviewLink {
    /* max-width: 134px;
    width: 100%; */
    min-width: 134px;
    max-width: 200px;
    display: flex;
    margin: 0 0 0 auto;
    text-align: right;
    justify-content: flex-end;
}

.areaReputa .boxIcon .iconRight .boxQuick .txtReviewLink a {
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    background: #4484CE;
    text-align: center;
    border-radius: 99px;
    display: block;
    /* padding: 5px 8px 6px 7px; */
    padding: 5px 12px 6px 11px;
    position: relative;
}

.areaReputa .boxIcon .iconRight .boxQuick .txtReviewLink a:before {
    content: "＼コピー完了！／";
    position: absolute;
    color: #69a9d4;
    top: -22px;
    font-size: 13px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    z-index: -999999;
    transition: all .6s;
    width: 100%;
}

.areaReputa .boxIcon .iconRight .boxQuick .txtReviewLink a.completed:before {
    opacity: 1;
    z-index: 1;
    visibility: visible;
}

.areaReputa .boxIcon .iconRight .boxQuick .txtReviewLink a span {
    padding-left: 14px;
    position: relative;
}

.areaReputa .boxIcon .iconRight .boxQuick .txtReviewLink a span:before {
    content: "";
    position: absolute;
    background: url('../images/subsidy-detail/icon-reviewlink.png') no-repeat;
    background-size: 100%;
    width: 10px;
    height: 11px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.areaReputa .boxIcon .iconRight .wrapQuick .titleQuick {
    font-size: 16px;
    font-weight: bold;
    color: #37434C;
    text-align: justify;
}

.areaReputa .boxIcon .iconRight .textQuick {
    font-size: 16px;
    font-weight: normal;
    color: #37434C;
}

.areaReputa .boxIcon .contentIcon .dateIcon {
    font-size: 10px;
    font-weight: normal;
    color: #407DBF;
    text-align: right;
    padding-right: 4px;
}

.areaReputa .boxIcon .showMore {
    max-width: 170px;
    margin: 30px auto 0;
    width: 100%;
}

.areaReputa .boxIcon .showMore a {
    font-size: 18px;
    font-weight: bold;
    background: #4484CE;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    padding: 9px 5px;
    display: block;
}

.about-icon {
    background: #fff;
    position: relative;
    padding: 30px 20px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: none;
}

.aboutIconHeading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px
}

.aboutIconLead {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 30px
}

.aboutIconMain {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px
}

.aboutIconItem {
    max-width: 303px;
    margin: 0 auto 20px
}

.about-icon__wrap {
    background-color: #f9f9f9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 57px
}

.aboutIconImage {
    width: 46px;
    display: block;
    margin-right: 24px
}

.about-icon__detail {
    font-size: 1.3rem
}

.aboutIconClose {
    width: 160px;
    height: 40px;
    border-radius: 2px;
    background-color: #eff7fc;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1077ba
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
    background-color: #37434c80;
}

.fancybox__content>.carousel__button.is-close {
    display: none;
}


/* areaSheetQues */
.areaSheetQues {
    margin-bottom: 42px;
    position: relative;
}

.areaSheetQues:before {
    content: "";
    position: absolute;
    background: url('../images/subsidy-detail/sheetQues-bf.png') no-repeat;
    background-size: 100%;
    width: 162px;
    height: 216px;
    left: -43px;
    bottom: 0;
}

.areaSheetQues:after {
    content: "";
    position: absolute;
    background: url('../images/subsidy-detail/sheetQues-afterrr.png') no-repeat;
    background-size: 100%;
    width: 147px;
    height: 220px;
    right: -11px;
    bottom: 0;
}

.areaSheetQues .txtSheetQues {
    font-size: 16px;
    font-weight: bold;
    color: #37434C;
    text-align: justify;
    margin-bottom: 26px;
}

.areaSheetQues .listQuestion {
    max-width: 605px;
    width: 100%;
    margin: 0 auto;
}

.areaSheetQues .listQuestion li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.areaSheetQues .listQuestion li:last-child {
    margin-bottom: 0;
}

.areaSheetQues .listQuestion li .increase {
    width: 28px;
    height: 26px;
    display: inline-block;
}

.areaSheetQues .listQuestion li .increase a {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 6px;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.16);
}

.areaSheetQues .listQuestion li .increase a.disabled {
    background: #BCBCBC;
    /* pointer-events: none; */
    box-shadow: none;
}

.areaSheetQues .listQuestion li .increaseLeft a {
    background: #FBC500;
}

.areaSheetQues .listQuestion li .increaseRight a {
    background: #4484CE;
}

.areaSheetQues .listQuestion li .contentSheetQues {
    display: inline-block;
    width: calc(100% - 50px);
    margin: 0 11px;
}

.areaSheetQues .listQuestion li .contentSheetQues table {
    border: none;
}

.areaSheetQues .listQuestion li .contentSheetQues td {
    font-size: 14px;
    font-weight: bold;
    color: #37434C;
}

.areaSheetQues .listQuestion li .contentSheetQues td span {
    font-size: 10px;
}

.areaSheetQues .listQuestion li .contentSheetQues td.txtQuesLeft {
    width: 40%;
    background: #FBC500;
    padding: 10px 11px;
    text-align: left;
}

.areaSheetQues .listQuestion li .contentSheetQues td.txtQuesLeft.active {
    border: 3px solid #F58D26;
}

.areaSheetQues .listQuestion li:nth-child(2) .contentSheetQues td.txtQuesLeft {
    width: 58%;
}

.areaSheetQues .listQuestion li:nth-child(3) .contentSheetQues td.txtQuesLeft {
    width: 43%;
}

.areaSheetQues .listQuestion li:nth-child(4) .contentSheetQues td.txtQuesLeft {
    width: 48%;
}

.areaSheetQues .listQuestion li .contentSheetQues td.txtQuesRight {
    background: #F4F4F4;
    text-align: right;
    padding: 10px 15px;
}

.areaSheetQues .listQuestion li .contentSheetQues td.txtQuesRight.active {
    border: 3px solid #4484CE;
}

/* areaFaq */
.areaFaq .titleSmall .iconSmall {
    width: 32px;
}

.areaFaq .scrollQa li {
    font-size: 18px;
    text-align: justify;
    border: solid #D9D9D9;
    border-width: 0 0 1px;
}

.areaFaq .scrollQa li:first-child {
    border-width: 1px 0 1px;
}

.areaFaq .scrollQa li .question {
    position: relative;
    display: flex;
    background-color: #F4F4F4;
    cursor: pointer;
    padding: 15px 35px 8px 15px;
    font-weight: bold;
    color: #37434C;
}

.areaFaq .scrollQa li .question:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 7px solid #37434C;
    top: 23px;
    right: 15px;
    transition: transform .3s;
}

.areaFaq .scrollQa li .question.open:before {
    content: "";
    transform: rotate(180deg);
}

.areaFaq .scrollQa li .question .alphabet {
    color: #fff;
    font-weight: bold;
    vertical-align: top;
    width: 34px;
    height: 34px;
    background: #FBC500;
    font-size: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 50%;
    transform: translateY(-4.5px);
    margin-right: 18px;
    padding-bottom: 2px;
}

.areaFaq .scrollQa li .question .questionTitle {
    font-size: 16px;
    font-weight: bold;
    width: calc(100% - 52px);
}

.areaFaq .scrollQa li .answer {
    display: none;
    padding: 13px 16px 14px 49px;
}

.areaFaq .scrollQa li .answer .txt {
    line-height: 1.65;
    display: inline-block;
    font-weight: normal;
    font-size: 16px;
    letter-spacing: 1.8px !important;
}

/* subsidySideBar */
.areaSubsidy .subsidySideBar {
    width: 27%;
    max-width: 270px;
    margin-top: 7px;
}

.areaSubsidy .subsidySideBar .sidePopular {
    font-size: 16px;
    padding: 20px 5px 20px;
    background-color: #4484CE;
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
    border-radius: 10px 10px 0 0;
    letter-spacing: 2.7px !important;
}

.subsidySideBar .listSidebar {
    background: #fff;
    padding: 17px 14px 8px;
}

.subsidySideBar .listSidebar {}

.subsidySideBar .listSidebar>li {
    margin-bottom: 8px;
}

.subsidySideBar .listSidebar li a {
    font-size: 16px;
    font-weight: normal;
    color: #4484CE;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.subsidySideBar .listSidebar>li .listSubSide {
    padding-left: 17px;
    margin-top: 8px;
}

.subsidySideBar .listSidebar>li .listSubSide li {
    margin-bottom: 8px;
}

.subsidySideBar .listSidebar>li .listSubSide li a {}

/* areaCta */
.areaCta {
    position: relative;
    background-color: #EFF7FC;
    padding: 36px 20px 20px;
    overflow: hidden;
    margin-top: 44px;
}

.areaCta:before,
.areaCta:after {
    content: "";
    position: absolute;
    top: 35px;
    width: 28px;
    height: 33px;
    background: url(../images/subsidy-detail/cta-photo-02.png)no-repeat;
    background-size: 100%;
}

.areaCta:before {
    left: 15px;
}

.areaCta:after {
    top: 33px;
    right: 15px;
    transform: rotate(90deg);
}

.areaCta .ctaPhoto {
    position: absolute;
    left: 43px;
    bottom: 4px;
}

.areaCta .ctaSub {
    float: right;
    width: 100%;
    max-width: 521px;
    text-align: center;
    margin: 0 10px 9px 0;
}

.areaCta .ctaSub .subPropose {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.6px !important;
    margin-bottom: 1px;
}

.areaCta .ctaSub .subPropose:before,
.areaCta .ctaSub .subPropose:after {
    content: "";
    position: absolute;
    bottom: 4px;
    width: 13px;
    height: 16px;
    background: url(../images/subsidy-detail/cta-photo-03.png)no-repeat;
    background-size: 100%;
}

.areaCta .ctaSub .subPropose:before {
    left: -19px;
}

.areaCta .ctaSub .subPropose:after {
    right: -20px;
    transform: rotate(70deg);
}

.areaCta .ctaSub .subPropose span {
    position: relative;
}

.areaCta .ctaSub .subPropose span:before {
    content: "";
    position: absolute;
    top: -2px;
    left: 40%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background-color: #DF481F;
    border-radius: 50%;
}

.areaCta .ctaSub .subFree {
    font-size: 31px;
    font-weight: bold;
    line-height: 1.45;
    letter-spacing: 0.5px !important;
    margin-bottom: 6px;
}

.areaCta .ctaSub .subFree span {
    background: linear-gradient(0deg, rgba(249, 206, 0, 1) 20%, rgba(255, 255, 255, 0) 20%);
}

.areaCta .ctaSub .subSupport {
    font-weight: bold;
    color: #4484CE;
    letter-spacing: 1px !important;
}

.areaCta .ctaWrap {
    float: left;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px 20px;
}

.areaCta .ctaWrap .ctaPhone {
    width: 335px;
    background: url(../images/common/icon-phone-orange.svg)no-repeat top 12px left 1px/ 50px;
    text-align: center;
    margin-right: 11px;
}

.areaCta .ctaWrap .ctaPhone>span {
    display: inline-block;
    width: 100%;
    font-size: 12px;
    padding-right: 15px;
}

.areaCta .ctaWrap .ctaPhone a {
    font-size: 35px;
    font-weight: bold;
    color: #F19F4D;
    padding-left: 46px;
    line-height: 1.05;
    letter-spacing: -0.1px !important;
}

.areaCta .ctaWrap .ctaMail {
    display: inline-block;
}

.areaCta .ctaWrap .ctaMail a {
    display: inline-block;
    width: 100%;
    display: block;
    width: 241px;
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 5px;
    background: #4484CE;
    letter-spacing: 0.5px !important;
}

.areaCta .ctaWrap .ctaMail span {
    display: inline-block;
    background: url(../images/common/icon-messenger-white.svg)no-repeat center left -2px/ 32px 17px;
    padding: 14px 15px 14px 45px;
}

@media (max-width: 1300px) and (min-width: 769px) {
    .areaSheetQues:before {
        width: 130px;
        height: 170px;
        left: -28px;
        transition: all 0.5s;
    }

    .areaSheetQues:after {
        width: 117px;
        height: 170px;
        transition: all 0.5s;
    }

    .areaReputa .areaTitle .titleJp:after {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 1266px) and (min-width: 769px) {
    .areaReputa .boxReputa {
        align-items: center;
        transform: translateY(0);
    }

    .areaReputa .boxReputa .listReputa {
        justify-content: center;
    }

    .areaReputa .boxReputa .listReputa li {
        margin-right: 80px;
    }

    .areaReputa .boxReputa .listReputa li:nth-child(2n) {
        margin-right: 0;
    }
}

@media (max-width: 1265px) and (min-width: 769px) {
    .areaReputa .boxReputa .listReputa li:nth-child(2n) {
        margin-right: 0;
    }

    .areaReputa .boxReputa .listReputa {
        justify-content: center;
    }

}

@media (max-width: 1264px) and (min-width: 769px) {
    .areaReputa .boxReputa .listReputa li {
        margin-right: 17%;
    }
}

@media(max-width:1250px) and (min-width:769px) {
    .areaCta .ctaPhoto {
        left: 30px;
        bottom: 7px;
        width: 220px;
    }
}

@media (max-width: 1210px) and (min-width: 769px) {
    .areaSheetQues:before {
        width: 110px;
        height: 140px;
        transition: all 0.5s;
    }

    .areaSheetQues:after {
        width: 96px;
        height: 140px;
        transition: all 0.5s;
    }
}

@media(max-width:1190px) and (min-width:769px) {
    .areaCta .ctaSub .subFree {
        display: inline-block;
        font-size: 28px;
    }

    .areaCta .ctaWrap .ctaPhone {
        background-size: 40px;
        background-position: top 12px left 15px;
    }
}

@media (max-width: 1150px) and (min-width: 769px) {
    .areaPoint .wrapPoint .boxPoint .pointPhoto {
        width: 50%;
    }

    .areaPoint .wrapPoint .boxPoint .contentPoint {
        width: 47%;
    }

    .areaSheetQues:before {
        width: 90px;
        height: 120px;
        transition: all 0.5s;
    }

    .areaSheetQues:after {
        width: 86px;
        height: 129px;
        transition: all 0.5s;
    }

    .areaCta .ctaSub {
        max-width: 481px;
        margin-right: 0;
    }

    .areaCta .ctaPhoto {
        width: 180px;
    }

    .areaCta .ctaWrap .ctaPhone {
        width: 290px;
        background-size: 35px;
        background-position: top 18px left 10px;
    }

    .areaCta .ctaWrap .ctaPhone a {
        font-size: 32px;
        padding-left: 40px;
    }

    .areaCta .ctaWrap .ctaMail a {
        width: 220px;
    }

    .areaCta .ctaWrap .ctaMail span {
        padding: 10px 5px 10px 36px;
    }
}

@media (max-width: 1100px) and (min-width: 769px) {
    .areaReputa .boxReputa .listReputa li {
        margin-right: 7%;
    }
}

@media (max-width: 1070px) and (min-width: 769px) {

    .areaSheetQues:before,
    .areaSheetQues:after {
        display: none;
        transition: all 0.5s;
    }
}

@media (max-width: 1050px) and (min-width: 769px) {
    .areaReputa .boxReputa {
        flex-direction: column;
        width: 100%;
    }

    .areaReputa .boxReputa .listReputa {
        width: 100%;
        transform: translateY(0);
    }

    .areaReputa .boxReputa .listReputa li {
        margin-right: 6%;
    }

    .areaReputa .boxReputa .listReputa li:nth-child(2n) {
        margin-right: 6%;
    }

    .areaReputa .boxReputa .listReputa li:last-child {
        margin-right: 0;
    }
}

@media(max-width:1040px) and (min-width:769px) {
    .areaCta .ctaPhoto {
        width: 150px;
    }

    .areaCta .ctaWrap {
        padding: 15px;
    }

    .areaCta .ctaWrap .ctaMail a {
        width: 200px;
    }

    .areaCta .ctaWrap .ctaMail span {
        background-size: 28px 15px;
        background-position: center left 8px;
    }
}

@media (max-width: 950px) and (min-width: 769px) {
    .areaPoint .wrapPoint .boxPoint {
        flex-direction: column;
    }

    .areaPoint .wrapPoint .boxPoint.boxPointTwo {
        flex-direction: column-reverse;
    }

    .areaPoint .wrapPoint .boxPoint .pointPhoto {
        width: 100%;
        margin-bottom: 10px;
    }

    .areaPoint .wrapPoint .boxPoint .pointPhoto img {
        height: auto;
    }

    .areaPoint .wrapPoint .boxPoint .contentPoint {
        width: 100%;
    }
}

@media (max-width: 970px) and (min-width: 769px) {
    .wrapPoint {
        padding: 30px 20px;
    }

    .areaCta .ctaPhoto {
        bottom: 97px;
    }

    .areaCta .ctaWrap {
        justify-content: center;
    }

    .areaCta .ctaSub {
        max-width: calc(100% - 140px);
    }

    .areaCta .ctaSub .subFree {
        font-size: 24px;
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    .areaSubsidy .inner {
        flex-direction: column;
    }

    .areaSubsidy .subsidyBox {
        margin-bottom: 81px;
        width: 100%;
    }

    .areaSubsidy .subsidySideBar {
        width: 40%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 895px) and (min-width: 769px) {
    .areaReputa .boxReputa .listReputa li {
        margin-right: 2%;
    }

    .areaReputa .boxReputa .listReputa li:nth-child(2n) {
        margin-right: 2%;
    }

    .areaReputa .boxReputa .listReputa li:last-child {
        margin-right: 0;
    }
}

@media(max-width:890px) and (min-width:769px) {
    .areaCta .ctaPhoto {
        width: 130px;
    }

    .areaCta .ctaSub .subPropose {
        font-size: 14px;
    }

    .areaCta .ctaSub .subPropose span:before {
        width: 3px;
        height: 3px;
    }

    .areaCta .ctaSub .subFree {
        font-size: 22px;
    }

    .areaCta .ctaSub .subSupport {
        font-size: 12px;
    }

    .areaCta .ctaWrap .ctaPhone {
        width: 270px;
        background-size: 30px;
    }

    .areaCta .ctaWrap .ctaPhone a {
        font-size: 28px;
    }

    .areaCta .ctaWrap .ctaPhone>span {
        padding: 0 0 0 30px;
    }

    .areaCta .ctaWrap .ctaMail a {
        width: 180px;
        font-size: 16px;
    }

    .areaCta .ctaWrap .ctaMail span {
        padding: 8px 5px 8px 36px;
    }
}

@media(max-width:840px) and (min-width:769px) {
    .areaCta .ctaSub {
        max-width: calc(100% - 125px);
    }

    .areaCta .ctaSub .subFree {
        font-size: 20px;
    }
}

@media(max-width:780px) and (min-width:769px) {

    .areaCta .ctaWrap .ctaPhone a {
        font-size: 26px;
    }
}

@media (min-width: 769px) {
    .areaDocuments .listDoc li a:hover {
        text-decoration: none;
    }

    .subsidySideBar .listSidebar li a:hover,
    .areaSupport.areaRecept td .txtLink a:hover,
    .areaReputa .boxIcon .iconLink a:hover {
        text-decoration: none;
    }

    .areaSupport.areaRecept td .txtMail a:hover {
        color: #4484CE;
    }

    .areaReputa .boxIcon .contentIcon .wrapIcon .iconRight .wrapQuick .boxQuick .txtReviewLink a:hover,
    .areaReputa .boxIcon .showMore a:hover,
    .areaSheetQues .listQuestion li .increaseRight a:hover {
        box-shadow: 0 0 10px #2669B5;
    }

    .areaReputa .wrapFormReview .btnReview a:hover,
    .areaSheetQues .listQuestion li .increaseLeft a:hover {
        box-shadow: 0 0 10px #F58D26;
    }

    .areaCta .ctaWrap .ctaPhone a {
        pointer-events: none;
    }

    .areaCta .ctaWrap .ctaMail a:hover {
        box-shadow: 0 0 10px #4484CE;
    }

    .areaPoint .listPoint li a:hover {
        text-decoration: underline;
        text-underline-offset: 2px;
    }
}

@media (max-width: 768px) {
    .areaSubsidy {
        margin-top: 20px;
    }

    .areaSubsidy .subsidyBox .subsidyList .subsidyWrap {
        margin: 15px 0 26px;
    }

    /* titleSmall */
    .titleSmall {
        padding: 8px 15px;
        border-radius: 8px 8px 0 0;
        height: 46px;
    }

    .titleSmall .iconSmall {
        transform: translate(-4px, 3px);
        width: 24px;
    }

    .titleSmall .txtSmall {
        font-size: 14px;
        padding-left: 1px;
        letter-spacing: 0.4px !important;
    }

    /* areaPoint */
    .areaPoint {
        margin-bottom: 27px;
    }

    .wrapPoint {
        padding: 17px 7px 17px;
    }

    .areaPoint .titleSmall .iconSmall {
        transform: translate(0px, -1px);
    }

    .areaPoint .wrapPoint .boxPoint {
        flex-direction: column;
        margin-bottom: 17px;
    }

    .areaPoint .wrapPoint .boxPoint.boxPointTwo {
        flex-direction: column-reverse;
    }

    .areaPoint .wrapPoint .boxPoint .pointPhoto {
        width: 100%;
        margin-bottom: 2px;
    }

    .areaPoint .wrapPoint .boxPoint .pointPhoto img {
        height: auto;
    }

    .areaPoint .wrapPoint .boxPoint .contentPoint {
        width: 100%;
        margin-top: 0;
    }

    .areaPoint .wrapPoint .boxPoint .contentPoint .titlePoint {
        font-size: 14px;
        text-align: justify;
        letter-spacing: 0.5px !important;
    }

    .areaPoint .wrapPoint .boxPoint .contentPoint .txtPoint {
        font-size: 11px;
        letter-spacing: 1.7px !important;
    }

    .areaPoint .listPoint {
        padding: 18px 13px 13px;
        margin-bottom: 17px;
    }

    .areaPoint .listPoint li {
        font-size: 11px;
        padding-left: 16px;
        letter-spacing: 1.2px !important;
        margin-bottom: 7px;
    }

    .areaPoint .listPoint li:after {
        width: 9px;
        height: 9px;
        top: 1px;
    }

    .areaPoint .boxUnder {
        padding: 16px 9px 0;
    }

    .areaPoint .boxUnder .underPhoto {
        height: inherit;
        width: 73px;
    }

    .areaPoint .boxUnder .txtUnder {
        font-size: 11px;
        width: calc(100% - 80px);
        margin-top: -3px;
        line-height: 1.5;
        padding-bottom: 9px;
    }

    /* areaSupport */
    .areaSupport {
        margin-bottom: 25px;
    }

    #areaSupport .titleSmall .iconSmall {
        width: 25px;
    }

    .areaSupport th {
        font-size: 11px;
        padding: 8px 10px 7px;
        line-height: 1.55;
    }

    .areaSupport td {
        font-size: 11px;
        padding: 8px 9px 7px;
        line-height: 1.55;
    }

    /* areaExpenses */
    .areaExpenses .titleSmall .iconSmall {
        width: 24px;
    }

    .areaExpenses .boxCal {
        margin-top: 17px;
    }

    .areaExpenses .boxCal .titleCal {
        font-size: 12px;
        padding: 15px 43px;
    }

    .areaExpenses .boxCal .titleCal:before {
        width: 27px;
        height: 27px;
        left: 9px;
    }

    .areaExpenses .boxCal .titleCal:after {
        width: 9px;
        height: 7px;
        right: 6px;
    }

    .areaExpenses .boxCal .contentCal {
        padding-left: 44px;
        padding-right: 18px;
        margin-top: 11px;
        padding-bottom: 5px;
    }

    .areaExpenses .boxCal .contentCal .wrapCal {
        font-size: 11px;
    }

    .areaExpenses .boxCal .contentCal .wrapCal .listCal li {
        font-size: 11px;
        margin-bottom: 1px;
    }

    .areaExpenses .boxCal .contentCal .txtCal {
        font-size: 10px;
    }

    /* areDocumnents */
    .areaDocuments .listDoc li a {
        font-size: 11px;
    }

    .areaDocuments .txtDoc {
        font-size: 10px;
    }

    /* areaFlow */
    .areaFlow {
        margin-bottom: 26px;
    }

    .areaFlow .listFlow li {
        margin-bottom: 9px;
    }

    .areaFlow .listFlow li:after {
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        left: 17px;
    }

    .areaFlow .listFlow li .boxFlow {
        padding: 0px 9px 6px;
    }

    .areaFlow .listFlow li .boxFlow .wrapNumberFlow {
        width: 28px;
        height: 28px;
    }

    .areaFlow .listFlow li .boxFlow .wrapNumberFlow .txtNumFlow {
        font-size: 6px;
    }

    .areaFlow .listFlow li .boxFlow .wrapNumberFlow .numberFlow {
        font-size: 14px;
    }

    .areaFlow .listFlow li .boxFlow .contentFlow {
        width: calc(100% - 34px);
        padding-top: 4px;
    }

    .areaFlow .listFlow li .boxFlow .contentFlow .titleFlow {
        font-size: 12px;
        margin-bottom: 1px;
    }

    .areaFlow .listFlow li .boxFlow .contentFlow .txtFlow {
        font-size: 13px;
        line-height: 1.47;
    }

    /* areaRecept */
    .areaRecept .titleSmall .iconSmall {
        transform: translate(-4px, 3px);
        width: 20px;
    }

    /* areaReputa */
    .areaReputa {
        margin-bottom: 26px;
    }

    .areaReputa .titleSmall .iconSmall {
        width: 24px;
    }

    .areaReputa .wrapPoint {
        padding-top: 18px;
    }

    .areaReputa .boxReputa {
        margin-bottom: 0px;
    }

    .areaReputa .boxReputa .reputaLeft {
        padding: 16px 60px;
    }

    .areaReputa .boxReputa .reputaLeft .txtReputaLeft {
        font-size: 10px;
        margin-bottom: 3px;
    }

    .areaReputa .boxReputa .reputaLeft .titleRepLeft {
        font-size: 14px;
    }

    .areaReputa .boxReputa .listReputa {
        /* transform: translateY(0); */
    }

    .areaReputa .boxReputa .listReputa li {
        margin-right: 2px;
    }

    .areaReputa .boxReputa .listReputa li .txtChart {
        font-size: 8px;
        line-height: 1.5;
        top: 43%;
    }

    .apexcharts-datalabel-value {
        font-size: 12px;
        transform: translate(0px, 2px);
    }

    .areaReputa .areaTitle {
        margin-bottom: -1px;
        margin-top: -5px;
    }

    .areaReputa .areaTitle .titleJp {
        font-size: 12px;
        top: -19px;
        padding-bottom: 7px;
    }

    .areaReputa .wrapFormReview .btnReview {
        max-width: 297px;
    }

    .areaReputa .wrapFormReview .btnReview a {
        font-size: 14px;
        padding: 13px 10px;
        letter-spacing: 0.8px !important;
    }

    .areaReputa .wrapFormReview .btnReview a span {
        padding-left: 25px;
        letter-spacing: 0.8px !important;
    }

    .areaReputa .wrapFormReview .btnReview a span:before {
        width: 17px;
        height: 15px;
        left: 0;
    }

    .areaReputa .boxIcon {
        margin-top: 14px;
    }

    .areaReputa .boxIcon .iconLink {
        margin-bottom: 10px;
    }

    .areaReputa .boxIcon .iconLink a {
        font-size: 11px;
        letter-spacing: 1px !important;
    }

    .areaReputa .boxIcon .contentIcon .caseIcon {
        margin-bottom: 8px;
    }

    .areaReputa .boxIcon .contentIcon .wrapIcon {
        margin-bottom: 1px;
    }

    .areaReputa .boxIcon .contentIcon .wrapIcon .iconLeft {
        width: 30px;
    }

    .areaReputa .boxIcon .contentIcon .wrapIcon .iconRight {
        width: calc(100% - 47px);
        padding: 10px 7px 8px 8px;
    }

    .bgSkin:before {
        border-top: 14px solid transparent;
        border-bottom: 14px solid transparent;
        border-right: 13px solid #FFF8DD;
        left: -12px;
        top: 14px;
    }

    .bgBlue:before {
        border-top: 14px solid transparent;
        border-bottom: 14px solid transparent;
        border-right: 13px solid #EFF7FC;
        left: -12px;
        top: 14px;
    }

    .areaReputa .boxIcon .iconRight .wrapQuick {
        padding-bottom: 6px;
        margin-bottom: 6px;
    }

    .areaReputa .boxIcon .iconRight .wrapQuick .boxQuick {
        margin-bottom: 6px;
    }

    .areaReputa .boxIcon .iconRight .boxQuick .contentQuick {
        /* width: calc(100% - 135px); */
        width: calc(100% - 140px);
    }

    .areaReputa .boxIcon .iconRight .contentQuick .txtQuick {
        padding: 3px 6px;
        font-size: 9px;
    }

    .areaReputa .boxIcon .iconRight .boxQuick .txtReviewLink {
        /* max-width: 117px; */
        min-width: 117px;
        max-width: 135px;
    }

    .areaReputa .boxIcon .iconRight .boxQuick .txtReviewLink a {
        font-size: 8px;
        /* padding: 4px 2px 3px 3px; */
        padding: 4px 10px 3px 10px;
    }

    .areaReputa .boxIcon .iconRight .boxQuick .txtReviewLink a:before {
        display: none;
    }

    .areaReputa .boxIcon .iconRight .boxQuick .txtReviewLink a span {
        /* padding-left: 2px; */
        padding-left: 11px;
        letter-spacing: 0.8px !important;
    }

    .areaReputa .boxIcon .iconRight .boxQuick .txtReviewLink a span:before {
        width: 9px;
        height: 10px;
        /* left: -11px; */
        left: 0;
    }

    .areaReputa .boxIcon .iconRight .wrapQuick .titleQuick {
        font-size: 12px;
    }

    .areaReputa .boxIcon .iconRight .textQuick {
        font-size: 11px;
        line-height: 1.6;
    }

    .areaReputa .boxIcon .contentIcon .caseIcon .dateIcon {
        font-size: 8px;
        padding-right: 8px;
    }

    .areaReputa .boxIcon .showMore {
        max-width: 149px;
        margin: 18px auto 0;
    }

    .areaReputa .boxIcon .showMore a {
        font-size: 15px;
        padding: 9px 5px 8px;
    }

    .about-icon {
        width: 95%;
        overflow-y: auto;
        /* height: 60vh; */
    }

    .modal__content__close {
        display: none;
    }

    /* areaSheetQues */
    .areaSheetQues {
        margin-bottom: 26px;
    }

    .areaSheetQues:before {
        width: 51px;
        height: 68px;
        left: -10px;
        bottom: inherit;
        top: 39px;
    }

    .areaSheetQues:after {
        width: 45px;
        height: 68px;
        right: 0px;
        bottom: inherit;
        top: 40px;
    }

    .areaSheetQues .txtSheetQues {
        padding: 0 45px;
        font-size: 12px;
        margin-bottom: 16px;
        min-height: 36px;
    }

    .areaSheetQues .listQuestion li {
        margin-bottom: 7px;
    }

    .areaSheetQues .listQuestion li .increase {
        width: 16px;
        height: 16px;
    }

    .areaSheetQues .listQuestion li .increase a {
        border-radius: 50%;
        box-shadow: none;
    }

    .areaSheetQues .listQuestion li .increase a img {
        width: 10px;
        height: 10px;
    }

    .areaSheetQues .listQuestion li .contentSheetQues {
        width: calc(100% - 46px);
        margin: 0 7px;
    }

    .areaSheetQues .listQuestion li .contentSheetQues td {
        font-size: 11px;
    }

    .areaSheetQues .listQuestion li .contentSheetQues td span {
        font-size: 8px;
    }

    .areaSheetQues .listQuestion li .contentSheetQues td.txtQuesLeft {
        padding: 10px 5px 7px;
    }

    .areaSheetQues .listQuestion li .contentSheetQues td.txtQuesLeft.active {
        border: 2px solid #F58D26;
    }

    .areaSheetQues .listQuestion li .contentSheetQues td.txtQuesRight {
        padding: 10px 6px 7px;
    }

    .areaSheetQues .listQuestion li .contentSheetQues td.txtQuesRight.active {
        border: 2px solid #4484CE;
    }

    /* areaFaq */
    .areaFaq .titleSmall .iconSmall {
        width: 24px;
    }

    .areaFaq .scrollQa li .question {
        padding: 15px 35px 3px 7px;
    }

    .areaFaq .scrollQa li .question:before {
        top: 19px;
        right: 8px;
    }

    .areaFaq .scrollQa li .question .alphabet {
        font-size: 20px;
        width: 27px;
        height: 27px;
        transform: translateY(-5.5px);
        margin-right: 7px;
    }

    .areaFaq .scrollQa li .question .questionTitle {
        font-size: 11px;
        width: calc(100% - 34px);
    }

    .areaFaq .scrollQa li .answer {
        padding: 9px 18px 4px 34px;
    }

    .areaFaq .scrollQa li .answer .txt {
        font-size: 11px;
        line-height: 1.6;
        letter-spacing: 1.6px !important;
    }

    /* areaCta */
    .areaCta {
        padding: 44px 8px 9px 14px;
        margin-top: 26px;
    }

    .areaCta:before,
    .areaCta:after {
        top: 7px;
        width: 17px;
        height: 22px;
    }

    .areaCta:before {
        left: 7px;
    }

    .areaCta:after {
        top: 72px;
        right: auto;
        left: 106px;
        transform: rotate(360deg);
    }

    .areaCta .ctaPhoto {
        left: 23px;
        bottom: 80px;
        width: 104px;
    }

    .areaCta .ctaSub {
        max-width: calc(100% - 115px);
        text-align: center;
        margin: 0 0 3px;
    }

    .areaCta .ctaSub .subPropose {
        font-size: 10px;
    }

    .areaCta .ctaSub .subPropose:before,
    .areaCta .ctaSub .subPropose:after {
        bottom: 2px;
        width: 9px;
        height: 11px;
    }

    .areaCta .ctaSub .subPropose:before {
        left: -9px;
    }

    .areaCta .ctaSub .subPropose:after {
        right: -12px;
    }

    .areaCta .ctaSub .subPropose span:before {
        top: -1px;
        width: 3px;
        height: 3px;
    }

    .areaCta .ctaSub .subFree {
        text-align: left;
        font-size: 21px;
        line-height: 1.5;
        margin-top: -4px;
    }

    .areaCta .ctaWrap {
        flex-wrap: wrap;
        padding: 8px 7px;
    }

    .areaCta .ctaWrap .ctaPhone {
        width: calc(100%/2 - 4px);
        margin-right: 8px;
        background: transparent;
    }

    .areaCta .ctaWrap .ctaPhone>span {
        display: none;
    }

    .areaCta .ctaWrap .ctaPhone a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        color: #fff;
        padding: 5px 0px 5px 5px;
        border-radius: 5px;
        background-color: #F19F4D;
    }

    .areaCta .ctaWrap .ctaPhone a .sp {
        display: inline-block;
        font-size: 13px;
        letter-spacing: 1.3px !important;
        background: url(../images/common/icon-phone-white.svg)no-repeat center left 1px/18px;
        padding: 11px 3px 10px 26px;
    }

    .areaCta .ctaWrap .ctaMail {
        width: calc(100%/2 - 4px);
    }

    .areaCta .ctaWrap .ctaMail a {
        display: inline-block;
        width: 100%;
        border-radius: 5px;
        font-size: 13px;
        padding: 5px 0px 5px 5px;
        letter-spacing: 1.3px !important;
    }

    .areaCta .ctaWrap .ctaMail span {
        padding: 8px 2px 7px 27px;
        background-size: 23px 13px;
        background-position: center left;
        letter-spacing: 1.4px !important;
    }

    .areaCta .ctaWrap .ctaNote {
        width: 100%;
        text-align: center;
        font-size: 9px;
        margin-top: 3px;
    }

    /* subsidySideBar */
    .subsidySideBar {
        display: none;
    }
}

@media (max-width: 725px) {
    .areaReputa .boxReputa {
        flex-direction: column;
    }

    .areaReputa .boxReputa .reputaLeft {
        margin: 0 auto;
    }

    .areaReputa .boxReputa .listReputa {
        width: 100%;
        justify-content: center;
        transform: translateY(0);
    }

    .areaReputa .boxReputa .listReputa li {
        margin-right: 15px;
    }

    /* .about-icon {
        width: 95%;
        overflow-y: auto;
        height: 83vh;
    } */
}

@media (max-width: 550px) {
    .areaReputa .boxReputa {
        flex-direction: column;
    }

    .areaReputa .boxReputa .listReputa {
        width: 100%;
        justify-content: center;
    }

    .areaReputa .boxReputa .listReputa li {
        margin-right: 4.3px;
    }
}

@media (max-width: 414px) {
    .areaReputa .boxReputa {
        flex-direction: column;
    }

    .areaReputa .boxReputa .reputaLeft {
        width: 100%;
        margin-right: 0;
        margin-bottom: -6px;
        padding: 16px 81px;
    }

    .areaReputa .boxReputa .listReputa {
        width: 101.4%;
        transform: translate(-3px, 0px);
    }

    .areaCta {
        padding-top: 15px;
    }

    /* .about-icon {
        width: 95%;
        overflow-y: auto;
        height: 83vh;
    } */
}

@media (max-width: 360px) {
    .areaReputa .boxReputa .listReputa li {
        margin-right: 13px;
    }
}

@media (max-width: 320px) {
    .areaReputa .boxReputa .listReputa li {
        margin-right: -1px;
    }
}

@media (min-width: 769px) {
    .MacOS .areaReputa .boxReputa .reputaLeft {
        padding: 28px 15px;
    }
}