.SP {
    display: none;
}

.PC {
    display: block;
}

.container {
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1194px;
}

a {
    color: #278EFF;
    text-decoration: none;
}

a:hover {
    opacity: 0.7;
}

/* 
    Buttons 
*/
button {
    border: 0px;
    outline: 0px;
}
.btn {    
    color: #0182D4;
    padding: 18px 76px;
    font-size: 14px;
    line-height: 25px;
}
.btn:hover {
    opacity: .7;
}
.btnWrapper {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
.btnWhite {
    border: 1px solid #DDDDDD;
    background-color: #FFFFFF;
}
.btnGray {
    padding: 11px;
    display: flex;
    font-size: 12px;
    background: #EDEDED;
    font-weight: bold;
    line-height: 175%;
    align-items: center;
    justify-content: center;
}
.btnBlack {
    color: #FFFFFF;
    padding: 16px 104px;
    font-size: 14px;
    background: #666666;
    text-align: center;
    font-weight: bold;
}
.btnRed {
    color: #FFFFFF;
    padding: 16px 120px;
    font-size: 14px;
    background: #E70012;
    text-align: center;
    font-weight: bold;
}
.btnRed:hover {
    opacity: 1;
    background: #55BEDC;
}

.imgWrapper {
    position: relative;
}
.imgWrapper span {
    color: #FFFFFF;
    right: 6px;
    bottom: 3px;
    position: absolute;
    font-weight: bold;
    font-size: 12px;
    line-height: 150%;
    text-align: right;
    text-shadow: 0px 0px 3px #000000;
}
.imgWrapper span.copy::before {
    content: '©';
    font-size: 20px;
    display: inline-block;
    vertical-align: bottom;
    font-weight: 600;
}

p {
    font-size: 16px;
}

/* 
    Headings 
*/
h2 {
    font-size: 28px;
    line-height: 150%;
}
h3 {
    font-size: 20px;
    line-height: 150%;
}
.noBorder {
    border: 0px !important;
}
.quote {
    position: relative;
}

.headingQuote {    
    position: relative;
    font-size: 38px;
    padding-left: 55px;
    margin-bottom: 37px;
}
.headingQuote::before,
.quote::before {
    top: -26px;
    left: 0;
    width: 50px;
    height: 36px;
    content: '';
    position: absolute;
    background: url('/japan/localnposupport/images/icon_quote.png') no-repeat center;
}
.headingQuote span {
    color: #666666;
    display: block;
    font-size: 14px;
    margin-top: 9px;
}

.headingQuestion {
    position: relative;
    padding-left: 48px;
    padding-bottom: 16px;
    margin-bottom: 35px;
    border-bottom: 1px solid #DDDDDD;
}
.headingQuestion::before {
    top: 0;
    left: 0;
    width: 32px;
    color: #FFFFFF;
    height: 32px;
    content: 'Q';
    position: absolute;
    background-color: #DA291C;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.headingRedBorder {
    border-bottom: 1px solid #DDDDDD;
    position: relative;
    padding-bottom: 14px;
    padding-left: 20px;
}
.headingRedBorder::before {
    top: 0;
    left: 0;
    width: 4px;
    height: calc(100% - 14px);
    position: absolute;
    content: '';
    background-color: #DA291C;
}

h2.headingRedBorder {
    margin-bottom: 20px;
}

h3.headingRedBorder {
    font-size: 24px;
    padding-bottom: 20px;
    margin-bottom: 18px;
}
/* h3.headingRedBorder::before {
    width: 2px;
    height: 100%;
} */
.headingCenter {
    font-size: 28px;
    font-weight: 700;
    line-height: 150%;
    text-align: center;
    margin-bottom: 48px;
}
.headingCenter span {
    font-weight: normal;
    font-size: 16px;
    line-height: 175%;
    color: #333333;
    display: block;
}
.headingCenter span:first-child {
    margin-top: 48px;
}
.headingCenter span:last-child {
    margin-bottom: 58px;
}
.headingCenter span:not(:last-child) {
    margin-bottom: 5px;
}
.headingCenter span.txtSmaller {
    font-size: 14px;
}
.headingNumber {
    font-size: 24px;
    line-height: 150%;
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 14px;
    margin-bottom: 40px;
}
.headingNumber::before {
    color: #FFFFFF;
    background: #DA291C;
    justify-content: center;
    border-radius: 50%;
    box-sizing: border-box;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
}

.BgGray {
    background-color: #F5F5F5;
}
.BgGray2 {
    background-color: #EBE8E2;
}
.BgWhite {
    background-color: #FFFFFF;
}

/* .twoCol {
    padding: 24px;
    gap: 44px;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 300px auto;    
    align-items: center;
}
.twoCol img {
    width: 100%;
    height: auto;
}
.twoColButton {
    gap: 30px;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(2, 1fr);
}
.twoColButton a {
    gap: 18px;
    padding: 20px;
    display: grid;
    position: relative;
    grid-auto-flow: column;
    align-items: center;
}
.twoColButton a:hover {
    opacity: .7;
}
.twoColButton a.prev {
    padding-left: 40px;
}
.twoColButton a.next {
    padding-right: 40px;
    grid-column-start: 2;
}
.twoColButton a:hover span:last-child {
    text-decoration: underline;
}
.twoColButton a.next::before,
.twoColButton a.prev::before {
    top: calc(50% - 6px);
    width: 6px;
    height: 12px;
    content: '';
    position: absolute;
    background-size: contain;
    background-image: url('/japan/localnposupport/images/icon_arrow-black.png');
    background-repeat: no-repeat;
    background-position: center;
}
.twoColButton a.next::before {
    right: 20px;
    transform: rotate(180deg);
}
.twoColButton a.prev::before {
    left: 20px;
}
.twoColButton a img {
    width: 100%;
    height: 100%;
    max-width: 114px;
    object-fit: cover;
}
.twoColButton a span {
    color: #0182D4;
    font-size: 14px;
    line-height: 170%;
}
.twoColButton a span:first-child {
    color: #333333;
    line-height: 175%;
    margin-bottom: 1px;
}
.twoColButton a div {
    display: flex;
    flex-direction: column;
}
.decimalNoDot {    
    display: block;
    counter-reset: item;
    list-style-type: none;
}
.decimalNoDot .decimal {
    display: flex;
    align-items: center;
}
.decimalNoDot .decimal:before { 
    display: inline-flex;
    align-items: center;
    margin-right: 16px;
    justify-content: center;
    content: counter(item) "  "; 
    counter-increment: item 
} */
.columnList {
    margin-bottom: 78px;
}
.columnList section:not(:last-child) {
    margin-bottom: 32px;
}
.columnList li  {
    border: 1px solid #DDDDDD;
}
.columnList ul li p {
    font-size: 14px;
}
/* .twoColumn {
    gap: 84px 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.twoColumn p + figure {
    margin-top: 26px;
}
.twoColumn figure figcaption {
    margin: 16px auto 23px;
    font-weight: normal;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
}
.twoColumn figure img {
    width: 100%;
    height: auto;
    display: block;
}
.twoColumn figure p {
    color: #666666;
}
.columnList .twoColumn p {
    font-weight: normal;
    font-size: 16px;
} */
.threeColumn {
    gap: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 72px;
}
.threeColumn li,
.threeColumn li a.colWrapper {
    display: grid;
    grid-template-rows: max-content;
}
.threeColumn li a:hover .img,
.fourColumn a.colWrapper:hover img {
    opacity: 0.66;
}
/* .library .threeColumn li {
    display: flex;   
}
.library .threeColumn li a {
    display: grid;
    width: 100%;
} */
.threeColumn .description {
    padding: 19px 21px;
}
.threeColumn .description .title {
    padding-bottom: 20px;
    border-bottom: 1px solid #DDDDDD;
}
.threeColumn .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
}
.threeColumn li a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.threeColumn li a span.btn {
    margin: 0px 11px 11px;
    align-self: center;
    font-size: 18px;
}

.threeColumn .details p {
    color: #000000;
    font-size: 16px; 
    padding-top: 20px;
    padding-bottom: 42px;
    line-height: 1.5;
}

.threeColumn li:nth-child(2) .details p {
    padding-bottom: 14px;
}

.threeColumn li:last-of-type .details p {
    padding-bottom: 20px;
}

.threeColumn .details:not(:first-child) {
    margin-top: 7px;
}
/* 
.fourColumn {
    gap: 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.fourColumn .img {
    height: 110px;
    margin: 11px 11px 0;
    box-sizing: border-box;
}
.fourColumn .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.fourColumn .description {
    padding: 16px 15px;
}
.fourColumn .description p {
    text-align: center;
} */
/* 
.anchorLink {
    margin-bottom: 78px;
}
.anchorLink li {
    display: flex;
    position: relative;
    background: #F5F5F5;
}
.anchorLink li::after {
    top: calc(50% - 5px);
    right: 20px;
    width: 11px;
    height: 11px;
    margin: 0 auto;
    cursor: pointer;
    display: block;
    content: '';
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; 
    background-image: url('/japan/localnposupport/images/icon_arrow-down.svg'); 
}
.anchorLink li a {
    width: 100%;
    margin: 0;
    padding: 20px 33px 20px 20px;
    align-self: center;
    text-align: center;
}
.anchorLink li a::before {
    color: #FFFFFF;
    width: 21px;
    height: 21px;
    font-size: 10px;
    background: #DA291C;
    font-weight: 700;
    border-radius: 50%;
    margin-right: 14px !important;
}
.anchorLink .decimalNoDot .decimal:hover {
    text-decoration: underline;
}
.anchorLink .decimalNoDot .decimal:before {
    text-decoration: underline;
    text-decoration: underline;
    text-decoration-color: #DA291C;
} */
/* 
.links {
    margin-top: 20px;
}
.links li {
    border: 0px solid transparent;
    position: relative;
    padding-left: 15px;
}
.links li a {
    font-size: 14px;
}
.links li::before {
    top: calc(50% - 5px);
    left: 0;
    width: 5px;
    height: 10px;
    content: '';
    position: absolute;
    background-size: cover;
    background-image: url('/japan/localnposupport/images/icon_arrow-red.svg');
    background-repeat: no-repeat;
    background-position: center;
}
.video.embed {
    width: 80%;
    height: 0;
    position: relative;
    margin-top: 35px;
    padding-bottom: 56.25%;
}
.video.embed iframe {
    top: 0;
    left: calc(0% + 10%);
    width: 100%;
    height: 100%;
    position: absolute;
} */
.targetBlank,
.arrowRight,
.download {
    position: relative;
}
.targetBlank::before {
    top: calc(50% - 6px);
    right: 17px;
    width: 12px;
    height: 12px;
    content: '';
    position: absolute;
    background-size: cover;
    background-image: url('/japan/localnposupport/images/icon_arrow-target-blank.svg');
    background-repeat: no-repeat;
    background-position: center;
}
.arrowRight::before {
    top: calc(50% - 5px);
    right: 17px;
    width: 10px;
    height: 10px;
    content: '';
    position: absolute;
    border: solid #FFFFFF;
    border-width: 0 1px 1px 0;
    display: inline-block;
    box-sizing: border-box;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.download::before {
    top: calc(50% - 6px);
    right: 17px;
    width: 12px;
    height: 13px;
    content: '';
    position: absolute;
    background-size: cover;
    background-image: url('/japan/localnposupport/images/icon_download-white.svg');
    background-repeat: no-repeat;
    background-position: center;
}

/* 
    Logo 
*/
.logo {
    padding: 15px 20px;
    max-height: 79px;
    box-sizing: border-box;
}
.logo a {
    display: inline-block;
}
.logo img {
    width: 240px;
}

/* 
    Header 
*/
.headerNav {
    display: grid;
    grid-auto-flow: column;
    background-color: #DA291C;
    grid-auto-columns: 1fr;
}
.headerNav li {
    display: flex;
    align-items: center;
    justify-content: center;
}
.headerNav li.active,
.headerNav li:hover {
    border-top: 0px;
    border-bottom: 0;
    background-color: #55BEDC;
}
.headerNav li a {
    color: #FFFFFF;
    width: 100%;
    display: block;
    padding: 18px 20px 19px;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    line-height: 24px;
    text-decoration: none;
}
.hamburger {
    gap: 10px;
    display: none;
    align-items: center;
    position: relative;
}
.hamburger span {
    width: 28px;
    height: 0;
    border-top: 1px solid #222221;
    box-sizing: border-box;
}

/* Key Visual */

.keyvisualWrapper img {
    width: 100%;
}

/* 
    Breadcrumb 
*/
.breadcrumb {
    padding: 15px 0 16px;
}
.breadcrumb ul li {
    display: inline-block;
    font-size: 11px;
}
.breadcrumb ul li a {
    color: #0182D4;
    text-decoration: none;
} 
.breadcrumb ul li a:hover {
    opacity: .7;
}
.breadcrumb ul li:first-child a {
    padding-left: 17px;
    position: relative;
}
.breadcrumb ul li:not(:first-child) {
    position: relative;
    padding-left: 22px;
}
.breadcrumb ul li:not(:first-child)::before {
    top: calc(10px - 8px);
    left: 8px;
    width: 6px;
    height: 16px;
    content: '';
    position: absolute;
    background-size: 6px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/japan/localnposupport/images/icon_arrow-lightGray.svg');
}
.breadcrumb ul li:first-child a::before {
    top: calc(50% - 5px);
    left: 0;
    width: 10px;
    height: 10px;
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 9px;
    background-image: url('/japan/localnposupport/images/icon_home.png');
}
/* 
    Content Area 
*/
/* .contentArea {
    padding-bottom: 120px;
} */
/* .contentArea p:first-of-type {
    padding-top: 96px;
}
.contentArea p:last-of-type {
    padding-bottom:70px;
} */
.contentArea div:last-child {
    margin-bottom: 0 !important;
}
.contentArea > .title {
    padding: 50px 0 0;
    margin-bottom: 73px;
}
/* .QandA section {
    margin-bottom: 73px;
}
.QandA section:last-child {
    margin-bottom: 74px;
}
.QandA section p:not(:last-child) {
    margin-bottom: 20px;
} */


/* 

.QandA section figure, 
.columnList section figure {
    width: 493px;
    margin: 35px auto 0;
}
.QandA section figure img, 
.columnList section figure img {
    width: 100%;
    margin: 0 auto;
    display: block;
}
.QandA section figcaption,
.columnList section figcaption {
    font-size: 14px;
    margin-top: 16px;
    text-align: center;
}
.QandA section figure + p,
.columnList section figure + p {
    margin-top: 24px;
}

.reference {
    border: 1px solid #DDDDDD;
    padding: 21px 24px;
    box-sizing: border-box;
    margin-bottom: 74px;
}
.reference ol { 
    counter-reset: item;
    list-style-type: none;
}
.reference ol li, 
.reference ul li {
    font-size: 12px;
}
.reference ol li {
    position: relative;
    padding-left: 27px;
    margin-bottom: 8px;
}
.reference ol li { display: block; }
.reference ol li:before { 
    top: 0;
    left: 0;
    position: absolute;
    content: '＊' counter(item) "  "; 
    counter-increment: item 
}
.reference ul li {
    position: relative;
    padding-left: 15px;
}
.reference ul li::before {
    top: 0;
    left: 0;
    position: absolute;
    content: '・';
}
.reference a:hover,
.links li a:hover {
    text-decoration: underline;
}

.relatedInterview {
    text-align: center;
}
.relatedInterview .btnWhite {
    display: inline-block;
    padding: 15px 76px;
    margin-top: 64px;
}
.relatedInterview .btnWhite:hover {
    background: #E6F3FB;
    border: 1px solid #DDDDDD;
    opacity: 1;
} */

#scrollTop {
    width: 65px;
    height: 65px;
    border: none;
    padding: 0;
    box-sizing: border-box;
    background-color: #222221;
    right: 0px;
    bottom: 0px;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 99;
    display: none;
    outline: none;
    position: fixed;
}
#scrollTop.end {
    bottom: 57px;
}
#scrollTop.show {
    display: block !important;
    animation: show 2s ease;
}
#scrollTop:hover {
    opacity: .5;
}
.iconTop {
    width: 25px;
    height: 25px;
    margin: 0 auto;
    display: block;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; 
    background-image: url('/japan/localnposupport/images/icon_arrow-top.svg'); 
}

/* 
    Footer 
*/
footer {
    margin: 0 auto;
    padding: 16px;
    text-align: center;
    background-color: #DA291C;
}
footer .copyright {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
}

.local .columnList .btnWrapper .btnBlack,
.local .columnList .btnWrapper .btnRed  {
    padding: 15px 45px 16px 30px;
}
.local .contentArea > .title {
    padding-top: 71px;
}
.local .contentArea {
    padding-bottom: 0px;
}

/* .twoCol.addPadding{
    padding-top: 40px;
    padding-bottom: 40px;
} */

@keyframes show {
    0% {opacity: 0;}
    100% {opactiy: 1;}
}  

.headingContent {
    font-size: 16px;
    font-weight: normal;
    color: #000000;
    text-align: left;
    padding-top: 96px;
    padding-bottom: 70px;
}

.headingNote {
    font-size: 10px;
    vertical-align: super;
}

p.headingNote {
    padding-top: 20px;
}


.columnList {
    margin-bottom: 0;
    padding-bottom: 60px;
}

.columnList h2.headingRedBorder {
    font-size: 28px;
}

.columnList:last-child {
    padding-bottom: 142px;
}

.columnList p {
    padding-bottom: 20px;
}

.columnList li {
    border: none;
    list-style-type: disc;
    margin-left: 25px;
    padding-bottom: 20px;
}

.columnList li:last-child {
    padding-bottom: 0;
}

.columnList li .listTitle {
    font-weight: bold;
}

.columnList li .listBody {
    margin-left: 10px;
}

.columnList li .listBody a {
    text-decoration: underline;
}

.subHeading {
    display: inline-block;
    font-size: 16px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-80 {
    padding-bottom: 80px;
}

.redBoldText {
    font-size: 24px;
    font-weight: bold;
    color: #E70012;
}

.redBoldText a {
    text-decoration: underline;
    color: #E70012;
    font-weight: bold;
}

.blackBoldText {
    font-size: 24px;
    font-weight: bold;
    padding-top: 20px;
}

/* Arrow Labels */

.arrowContainer {
    display: flex;
    gap: 40px;
}

.c-arrow-label {
    width: 100%;
    max-width: 248px;
    height: 107px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url("/japan/localnposupport/images/img_red_arrow_1.png");
    background-size: 100%;
    background-repeat: no-repeat;
}

.c-arrow-label p {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: bold;
    text-align: center;
}

.c-arrow-label:nth-child(2) {
    background-image: url("/japan/localnposupport/images/img_red_arrow_2.png");

}

.c-arrow-label:nth-child(3) {
    background-image: url("/japan/localnposupport/images/img_red_arrow_3.png");

}

.c-arrow-label:nth-child(4) {
    background-image: url("/japan/localnposupport/images/img_red_arrow_4.png");

}

.c-arrow-label:nth-child(5) {
    background-image: url("/japan/localnposupport/images/img_red_arrow_5.png");

}
/* .c-arrow-label__item {
    color: #FFFFFF;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    width: 100%;
} */

/* 
.c-arrow-label__item {
    position: relative;
    background-color: #DA291C;
    color: #fff;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    width: 100%;
    padding: 33px 0;
    text-align: center;
}

.c-arrow-label:nth-child(2) .c-arrow-label__item {
    background-color: #CF271B;
}

.c-arrow-label:nth-child(3) .c-arrow-label__item {
    background-color: #C42519;
}

.c-arrow-label:nth-child(4) .c-arrow-label__item {
    background-color: #B92318;
} */


/* Arrow Head */
/* 
.c-arrow-label__item:before {
    content: '';
    position: absolute;
    top: 0px;
    right: -15.5px;
    border-top: solid 64.9px transparent;
    border-bottom: solid 64.9px transparent;
    border-left: solid 16.8px #DA291C;
}

.c-arrow-label:nth-child(2) .c-arrow-label__item:before {
  border-left: solid 16px #CF271B;
}

.c-arrow-label:nth-child(3) .c-arrow-label__item:before {
  border-left: solid 16px #C42519;
}

.c-arrow-label:nth-child(4) .c-arrow-label__item:before {
  border-left: solid 16px #B92318;
}
 */


/* Arrow Tail */
/* 
.c-arrow-label:not(:first-child) .c-arrow-label__item:after  {
    content : '' ;
    position : absolute;
    top : 0 ;
    left : -15px ;
    border-top : solid 64px #DA291C ; 
    border-bottom : solid 65px #DA291C;  
    border-left : solid 16px transparent;
}

.c-arrow-label:nth-child(2) .c-arrow-label__item:after {
  border-top : solid 64px #CF271B ; 
  border-bottom : solid 65px #CF271B; 
}

.c-arrow-label:nth-child(3) .c-arrow-label__item:after {
  border-top : solid 64px #C42519 ; 
  border-bottom : solid 65px #C42519; 
}

.c-arrow-label:nth-child(4) .c-arrow-label__item:after {
  border-top : solid 64px #B92318 ; 
  border-bottom : solid 65px #B92318; 
} */



/* Table */

table {
    width: 100%;
    margin-bottom: 40px;
    margin-top: 40px;
}

th {
    background: #F2F2F2;
    width: 20%;
    text-align: center;
    vertical-align: middle;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
}

td {
    padding: 10px;
}

table, th, td {
  border: 1px solid #777777;
  border-collapse: collapse;
  vertical-align: middle;
}

table span {
  font-weight: bold;
}

table a {
    text-decoration: underline;
}

table p {
    margin-bottom: 20px;
}

table td p:last-of-type {
    margin-bottom: 0;
}

/* Download Links */

.downloadForms {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 20px;
    padding-bottom: 40px;
}

.downloadForms::after {
    display: block;
    content:"";
    width: 305px;
}

.downloadLink {
  background: #EDEDED;
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
  width: 305px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.downloadLink:after {
    content: '';
    width: 20px;
    height: 20px;
    margin: 0 auto;
    display: block;
    position: absolute;
    top: 20px;
    right: 15px;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(/japan/localnposupport/images/ico_download.png)
}

.downloadLink.noIcon:after {
    display: none;
}

.downloadText {
    padding-left: 10px;
    color: #0182D4;
    font-weight: 600;
}

.fileIcon {
    width: 19px;
    height: 13px;
}

.fileSize {
    color: #0182D4;
}

.downloadLink:hover span {
    text-decoration: underline;
}

.formHeading {
    font-size: 20px;
    font-weight: bold;
}

.contactContainer {
    max-width: 1152px;
    padding-bottom: 20px;
}
.contactHeading {
    font-size: 24px;
    font-weight: bold;
}

.contactContainer p {
    padding-bottom: 30px;
}

.grantsContainer h2 {
    margin-bottom: 40px;
}

.grantsContainer h3 {
    margin-bottom: 40px;
}

.grantRow {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    padding-bottom: 40px;
}

.grantRow a {
    display: flex;
    flex-direction: column;
}

.grantRowLeft {
    justify-content: left;
}

.grantCard {
    display: flex;
    flex-direction: column;
    max-width: 260px;
    padding: 11px;
    border: 1px solid #DDDDDD;
    min-height: 284px;
    flex-grow: 1;
}

.threeGrantRow .grantCard {
    max-width: 362px;
}

.grantCard .cardTitle {
    font-size: 14px;
    font-weight: bold;
    color: #0182D4;
    padding-bottom: 5px;
}

a:hover .cardTitle {
    text-decoration: underline;
}

.grantCard img {
    padding-bottom: 9px;
}

.grantCard .cardBody {
    font-size: 14px;
}

.grantsContainer h4 {
    margin-bottom: 20px;
}

.btnBlue {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 276px;
    height: 16px;
    background-color: #3B5998;
    color: #FFFFFF;
    text-decoration: underline;
    padding: 12px 0;
    margin-bottom: 40px;
}

.pastAppContainer {
    display: flex;
    flex-direction: column;
}

.pastAppContainer h2 {
    margin-bottom: 40px;
}


.pastAppContainer p {
    font-weight: bold;
    margin-bottom: 20px;
}

.pastAppContainer .downloadLink {
    width: 225px;
    padding: 10px 0;
}

.pastAppContainer .downloadLink .textContainer{
    display: flex;
    flex-direction: column;
}

.pastAppContainer .downloadLink:after {
    top: 25px;
}

.pastAppContainer .downloadLink:before {
    content: '';
    width: 20px;
    height: 20px;
    margin: 0 auto;
    display: block;
    position: absolute;
    top: 25px;
    left: 35px;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.pastAppContainer .downloadLink.pdf:before {
    background-image: url(/japan/localnposupport/images/ico_pdf.png)
}

.pastAppContainer .downloadLink.doc:before {
    background-image: url(/japan/localnposupport/images/ico_doc.png)
}

.pastAppContainer .downloadLink.xls:before {
    background-image: url(/japan/localnposupport/images/ico_xls.png)
}

.pastAppContainer .downloadText {
    padding-left: 0;
}

.imageContainer {
    display: flex;
    justify-content: space-evenly;
    padding-bottom: 60px;
}