@charset "UTF-8";

html{
    /* -webkit-overflow-scrolling: touch; */
}

.debug{
    position: fixed;
    color: #fff;
    margin: 10px;
    z-index: 9999;
}

body{
    font-size: 0.875rem;
    line-height: 1.7;
    background-color: #fff;
}

a{
	text-decoration: none;
	transition: 0.3s;
}

a img:hover{
	transition: 0.5s;
}


/************************************************************/
/*   Wrapper   */
/************************************************************/
#CRC_wrap{
}


/************************************************************/
/*   Navigation Section   */
/************************************************************/

.headerMenuBtn{
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 910;
}

.headerMenuBtn span{
    display: block;
    width: 35px;
    height: 5px;
    background-color: #e4041b;
    margin-bottom: 7px;
    transition: 0.3s ease;
}

.headerMenuBtn span:last-of-type{margin-bottom: 0;}

.headerMenuBtn.open span:nth-of-type(1){
    -webkit-transform: translate(0px,15px) rotate(45deg);
    transform: translate(0px,15px) rotate(45deg);
}

.headerMenuBtn.open span:nth-of-type(2){
    opacity: 0;
}

.headerMenuBtn.open span:nth-of-type(3){
    -webkit-transform: translate(0px,-9px) rotate(-45deg);
    transform: translate(0px,-9px) rotate(-45deg);
}

#navigationSection{
    opacity: 0;
    -webkit-overflow-scrolling: touch;
    background-color:rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0px;
    right:-100%;
    width:95%;
    height:100%;
    z-index: 900;
    padding-top: 70px;
    overflow: auto;
    transition: 0.3s ease;
/*    display: none;*/
}

#navigationSection.active{
    opacity: 1;
    right: 0;
}

.navigationList ul{
    padding: 0 15px;
    color: #1a1a1a;
    font-weight: bold;
    display: none;
}

#navigationSection.active ul{display: block;}

.navigationList li{
    text-align: left;
    border-bottom: 1px solid #ccc;
    opacity: 0;
}

.navigationList li.Hd_nav01{animation: gNavMove 1s ease 0.2s 1 forwards;}
.navigationList li.Hd_nav02{animation: gNavMove 1s ease 0.3s 1 forwards;}
.navigationList li.Hd_nav03{animation: gNavMove 1s ease 0.4s 1 forwards;}
.navigationList li.Hd_nav04{animation: gNavMove 1s ease 0.5s 1 forwards;}
.navigationList li.Hd_nav05{animation: gNavMove 1s ease 0.6s 1 forwards;}
.navigationList li.Hd_nav06{animation: gNavMove 1s ease 0.7s 1 forwards;}
.navigationList li.Hd_nav07{animation: gNavMove 1s ease 0.8s 1 forwards;}
.navigationList li.Hd_nav08{animation: gNavMove 1s ease 0.9s 1 forwards;}

@keyframes gNavMove {
    0% { opacity: 0.0; transform: translate(30px, 0px); }
    100% { opacity: 1.0; transform: translate(0px, 0px); }
}

.navigationList li a{
    box-sizing: border-box;
    color: #e4041b;
    padding: 10px 5px 10px 0px;
    display: block;
    position: relative;
}

.navigationList li a::after{
  content: '';
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 2px #e4041b;
  border-right: solid 2px #e4041b;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -6px;
}

.navigationWrap h1{
    padding-left: 15px;
    line-height: 0.9;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #e4041b;
}

.navigationWrap h1 span{
    font-size: 1.25rem;
    font-weight: normal;
}

.navigationWrap h1 a{
    color: #e4041b;
}


/************************************************************/
/*   footer Section   */
/************************************************************/
#footerSection{
    width: 100%;
    background-color: #e4041b;
    padding: 40px 0px 40px 0px;
}

.footerContents{
}

.footerTitle{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    margin-bottom: 30px;
}

.footerTitle h2{
    line-height: 1.0;
    font-size: 2.5rem;
}

.footerTitle h2 span{
    font-size: 2.0rem;
    font-weight: normal;
}

.footerTitle a{color: #fff;}

.footerDesc{
    color: #fff;
}

.footerDesc a{
    color: #fff;
    position: relative;
}

.footerSNSLink{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}

.footerSNSLink li{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin: 0px 10px 15px;
}

.footerSNSLink img{
    width: 20px;
    margin-right: 10px;
}

.footerSNSLink a{
    position: relative;
    display: inline-block;
    transition: .3s;
}

.footerSNSLink a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: .3s;
}

.footerSNSLink a:hover::after {
    width: 100%;
}

.footerMenuLink{
    display: none;
    flex-wrap: nowrap;
    justify-content: flex-end;
    font-size: 0.85rem;
}

.footerMenuLink li{
    padding: 0px 8px;
    border-right: 1px solid #fff;
}

.footerMenuLink li:last-child{
    border-right: none;
    padding-right: 0px;
}

.footerMenuLink a{
    position: relative;
    display: inline-block;
    transition: .3s;
}

.footerMenuLink a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: .3s;
}

.footerMenuLink a:hover::after {
    width: 100%;
}

.ftCopy{
    color: #fff;
    font-size: 0.75rem;
    text-align: center;
}


/************************************************************/
/*   Common   */
/************************************************************/

.titleStyle01{
    text-align: center;
    font-size: 1.0rem;
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: 30px;
}

.titleStyle01 span{
    font-size: 2.5rem;
    line-height: 1;
    color: #e4041b;
}


/*------------ Modal Window -----------*/
.modal-overlay {
	z-index:101;
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100vh;
	background-color:rgba(0,0,0,.5);
}
	
a.modalOpen:hover {cursor:pointer}

.modalContent {
	position:fixed;
	display:none;
	z-index:102;
	margin:10px;
	padding:15px;
	border-radius:20px;
	background:#fff;
}
.modalContent img {width:100%;}

a.modalClose {
	position:absolute;
	top:10px;
	right:10px;
	color:#e4041b;
	background-color: #fff;
	font-size:35px;
	line-height:1;
	font-weight:bold;
	text-decoration:none;
}

a.modalClose:hover {cursor:pointer}


/*------------ PAGE TOP -----------*/
.pageTop {
    position: fixed;
	width: 50px;
	height: 50px;
    bottom: 0px;
    right: 0px;
	margin: auto;
    padding: 0;
    display: block;
	overflow: hidden;
	background-color: #e4041b;
	box-sizing: border-box;
	text-decoration:none;
	text-align: center;
	z-index: 999;
	border: 2px solid #FFF;
    transition: all .2s;
}

.pageTop::after{
    content: '';
    width: 10px;
    height: 10px;
    border: 0px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 53%;
    right: 17px;
    margin-top: -6px;
}

.pageTop:hover {
	background-color: #fff;
    cursor: pointer;
    border: 2px solid #e4041b;
}

.pageTop:hover::after {
	border-top: solid 2px #e4041b;
    border-right: solid 2px #e4041b;
}


/************************************************************/
/*   Toppage Common   */
/************************************************************/


/************************************************************/
/*   Main Image Section   */
/************************************************************/

#topMainSection{
    width: 100%;
    height: 100vh;
    background-image: url(../image/top/mainImg.jpg);
    background-size:cover;
    background-position: top 0px left 25%;
    background-repeat: no-repeat;
    position: relative;
}

.topMainTitleBox{
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 5%;
    width: 100%;
/*    height: 100%;*/
    display: flex;
    align-items: center;
}

.topMainTitleInr{
    padding: 20px;
}

.topMainTitleInr h2{
    font-size: 6vw;
    line-height: 1.4;
    margin-bottom: 30px;
    text-shadow:1px 1px 1px #FFF, -1px -1px 1px #FFF, -1px 1px 1px #FFF, 1px -1px 1px #FFF, 0px 1px 1px #FFF,  0 -1px 1px #FFF, -1px 0 1px #FFF, 1px 0 1px #FFF; 
}

.topMainTitleInr h2 span{
    font-size: 5.2vw;
    display: block;
    margin-top: 10px;
    position: relative;
}

/*
.topMainTitleInr h2 span::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 18%;
    height: 2px;
    background-color: #1a1a1a;
}
*/

.topMainTitleInr h3{
    font-size: 18vw;
    line-height: 1.5;
    color: #e4041b;
}


/************************************************************/
/*   Top Information Section   */
/************************************************************/

#topInfoSection{
    padding: 50px 0px 50px;
}

.topInfoSNS{
    padding: 0px 0px;
}

.topInfo_fb h4,
.topInfo_tw h4{
    text-align: center;
    font-size: 1.5rem;
    font-weight: normal;
    color: #fff;
}

.topInfo_fb h4{background-color: #004BAB;}
.topInfo_tw h4{background-color: #1DA1F2;}

.topInfo_fbBox{
    width: 100%;
    margin-bottom: 50px;
}

.topInfo_twBox{
    width: 100%;
}


.topinfo_youTubeLink{
    display: block;
    width: 100%;
    margin: 30px auto 0px;
    color: #E4041B;
    position: relative;
}

.topinfo_youTubeLink:hover{
    background-color: #FCE6E8;
}

.topinfo_youTubeLink:hover img{opacity: 1;}

.topinfo_youTubeLink::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 3px solid #E4041B;
    border-right: 3px solid #E4041B;
}

.topinfo_youTubeLinkInr{
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    border:5px solid #E4041B;
}

.topinfo_youTubeImg{
    width: 35%;
    padding-right: 10px;
}

.topinfo_youTubeTitle{
    width: 15%;
}

.topinfo_youTubeTitle img{vertical-align: middle;}

.topinfo_youTubeText{
    width: 50%;
    padding: 0px 30px 0px 20px;
    font-weight: normal;
    font-size: 3vw;
    line-height: 1.3;
}


/************************************************************/
/*   Top Information Section   */
/************************************************************/

#topMessageSection{
    padding: 50px 0px 0px;
    background-color: #FCE6E8;
}

.topMessageWrap{
    margin: 30px 0px 50px 0px;
    width: 100%;
    height: 100%;
}

.topMessageBox01L{
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.topMessageBox01R{
    width: 100%;
    box-sizing: border-box;
}

.topMessageBox02L{
    width: 100%;
    box-sizing: border-box;
}

.topMessageBox02R{
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.topMsgBoxInr01{
    background-color: #fff;
    padding: 40px 20px 20px;
    margin:0px 20px 0px 20px;
    box-shadow: 0 0 8px #ccc;
    position: relative;
}

.topMsgBoxInr02{
    background-color: #fff;
    padding: 40px 20px 20px;
    margin:0px 20px 0px 20px;
    position: relative;
}

.topMessageWrap h4{
    font-size: 5.0rem;
    color: #e71e33;
    display: inline-block;
    background: linear-gradient(90deg, #fce6e8, #e71e33);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
}

.topMessageWrap h5{
    font-size: 1.25rem;
    color: #E4041B;
    margin-bottom: 20px;
}

.topMessageBox01L h4{
    top: -70px;
    right: 0;
    left: 0;
    margin: auto;
    width: 70px;
}

.topMessageBox02R h4{
    top: -70px;
    right: 0;
    left: 0;
    margin: auto;
    width: 70px;
}

.topMsgImg01{
    text-align: right;
    padding: 0px 20px;
}

.topMsgImg01 p{
    margin-top: 15px;
    font-weight: bold;
}

.topMsgImg01 p img{
    width: 16px;
    height: auto;
    vertical-align: middle;
    margin-right: 10px;
}

.topMsgImg01 a{
    color: #E4041B;
    position: relative;
    padding-right: 15px;
}

.topMsgImg01 a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 2px solid #E4041B;
    border-right: 2px solid #E4041B;
    transition: 0.2s;
}

.topMsgImg01 a:hover::after {
    right: -5px;
}



/************************************************************/
/*   Top Profile Section   */
/************************************************************/

#topProfileSection{
    padding: 50px 0px 50px;
}

.topProfBox{
    margin-bottom: 50px;
}

.topProfBox_L{
}

.topProfBox_R{
    box-sizing: border-box;
}

.topProfTitle{
    font-size: 1.25rem;
    color: #E4041B;
    padding-top: 30px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.topProDesc{
    margin-top: auto;
}

.topProDesc dl{
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-top: 10px;
}

.topProDesc dt{
    width: 25%;
    box-sizing: border-box;
    text-align: center;
    background-color: #E4041B;
    padding: 10px 5px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topProDesc dd{
    width: 75%;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #F1F1F1;
    padding: 10px 10px;
    margin-left: 10px;
}


.topResumeWrap{}

.topResume_FlBox01{
}

.topResume_FlImg01{
    width: 70%;
    margin: 0 auto 10px;
}

.topResume_FlDesc01{
    width: 100%;
}

.topResume_FlImg02{
    width: 70%;
    margin: 0 auto 10px;
}

.topResume_FlDesc02{
    width: 100%;
}

.topResumeWrap dl{
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.topResumeWrap dt{
    width: 100px;
    box-sizing: border-box;
    text-align: center;
    background-color: #E4041B;
    padding: 10px 5px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topResumeWrap dd{
    width: calc(100% - 100px);
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #F1F1F1;
    padding: 10px 10px;
    margin-left: 10px;
}

.topRes_bgOrange{
    background-color: #F7931E !important;
    color: #fff;
}


/************************************************************/
/*   Top Movie Section   */
/************************************************************/

#topMovieSection{
    padding: 50px 0px 20px;
    background-color: #FCE6E8;
}

.topMovieBox{
}

.topMovieTitle{
    color: #E4041B;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.0rem;
}

.topMovieDesc{
    position: relative;
    padding-top: 57%;
    margin-bottom: 10px;
}

.topMovieDesc iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/************************************************************/
/*   Top Profile Section   */
/************************************************************/

#topPolicySection{
    padding: 50px 0px 50px;
}

.topPol_mainImg{
    position: relative;
    margin-bottom: 50px;
}

.topPol_posiText{
    position: absolute;
    top:6%;
    left: 10px;
    font-size: 6vw;
    line-height: 1.3;
    color: #fff;
}

.topPol_posiText h4{
    font-style: oblique !important;
}

.topPol_pBtext{
    display: block;
    font-size: 6vw;
    margin-bottom: 10px;
}

.topPol_pMargin{
    display: block;
}

.topPol_bgRedText{
    background-color: #E4041B;
    font-size: 1.0rem;
    text-align: center;
    color: #fff;
    padding: 10px 10px;
}

.topPol_pillarTitle{
    text-align: center;
    font-size: 1.25rem;
    color: #e4041b;
    line-height: 1.3;
    margin-bottom: 30px;
}

.topPol_pillarTitle span{
    display: inline-block;
    position: relative;
}

.topPol_pillarTitle span::before{
    content: "";
    height: 30px;
    width: 2px;
    background-color: #e4041b;
    position: absolute;
    top: 10px;
    left: -25px;
    z-index: 2;
    transform: rotate(-45deg);
}

.topPol_pillarTitle span::after{
    content: "";
    height: 30px;
    width: 2px;
    background-color: #e4041b;
    position: absolute;
    top: 10px;
    right: -25px;
    z-index: 2;
    transform: rotate(45deg);
}

.topPol_pillarTitle strong{
    font-size: 2.0rem;
}

.topPol_pillarBox{
    background-color: #e6e6e6;
}

.topPol_pillarBox h5{
    text-align: center;
    font-size: 1.25rem;
    background-color: #e4041b;
    padding: 5px 5px;
    color: #fff;
}

.topPol_pillarBoxInr{
    padding: 20px;
}

.topPol_pillarB_title{
    font-size: 1.25rem;
    color: #e4041b;
    margin-bottom: 20px;
    line-height: 1.5;
}

.topPol_pillarB_titleTC{
    font-size: 1.25rem;
    color: #e4041b;
    margin-bottom: 20px;
    line-height: 1.5;
}

.topPol_pillarFlex{
}

.topPol_pillarFlex0201{
    margin-bottom: 40px;
    background-color: #e6e6e6;
}

.topPol_pillarFlex0201:nth-child(2n){
    margin-bottom: 40px;
}

.topPol_otherLink{
    margin-top: 15px;
    font-weight: bold;
    text-align: right;
}

.topPol_otherLink a{
    color: #E4041B;
    position: relative;
    padding-right: 15px;
}

.topPol_otherLink a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 2px solid #E4041B;
    border-right: 2px solid #E4041B;
    transition: 0.2s;
}

.topPol_otherLink a:hover::after {
    right: -5px;
}


/************************************************************/
/*   Top Report Section   */
/************************************************************/

#topReportSection{
    padding: 50px 0px 20px;
    background-color: #FCE6E8;
}

.topRep_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.topRep_mainImg{
    margin-bottom: 40px;
}

.topRep_listImg{
    margin-bottom: 0px;
}


/************************************************************/
/*   Category Common   */
/************************************************************/

.caSubtitle01Box{
    text-align: left;
    margin-bottom: 30px;
}

.caSubtitle01{
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 30px;
    text-align: left;
}

.caApplyBox{
    border: 8px solid #f2f2f2;
    padding: 20px 20px;
    background-color: #fff;
}

.caApplyBoxInr{
}

.caApplyBoxInr h5{
    background-color: #ec4f5f;
    color: #fff;
    font-size: 0.875rem;
    font-weight: bold;
    padding: 5px 15px;
    margin-bottom: 15px;
}

.caApplyBoxInr_L{
    margin-bottom: 30px;
}

.caApplyBoxInr_R{
}

.caApplyFlexText{
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.caAppNum{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    flex-basis: 30px;
    background-color: #ec4f5f;
    color: #fff;
    margin-right: 10px; 
    flex-shrink: 0;
}

.caApplySendBox{
}

.caApplySendBox li{
    margin-top: 10px;
}

.caApplyPDFBox{
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-top: 20px;
}

.caApplyPDFBox dt{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    flex-basis: 50px;
    height: 50px;
    background-color: #ec4f5f;
    color: #fff;
    flex-shrink: 0;
}

.caApplyPDFBox dd{
    flex-grow: 1;
}

.caApplyPDFBox dd a{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
    background-color: #f2f2f2;
    color: #1a1a1a;
    box-sizing: border-box;
    padding-left: 10px;
}

.caApplyPDFBox dd a:hover{
    background-color: #ec4f5f;
    color: #fff;
}

.caApply_tel{font-size: 1.5rem; font-weight: bold;}
.caApply_tel img{width: 21px; height: auto; margin: 5px 10px 0px 0px; vertical-align: middle;}
.caApply_post img{width: 21px; height: auto; margin-right: 10px; vertical-align: middle;}
.caApply_fax img{width: 23px; height: auto; margin-right: 10px; vertical-align: middle;}
.caApply_mail img{width: 24px; height: auto; margin: 5px 10px 0px 0px; vertical-align: middle;}
.caApply_pdf img{width: 22px; height: auto; vertical-align: middle;}


/************************************************************/
/*   Volunteers Section   */
/************************************************************/

#VolunteersSection{
    padding: 50px 0px 50px;
}


/************************************************************/
/*   Request Section   */
/************************************************************/

#RequestSection{
    padding: 50px 0px 20px;
}

.req_FlexBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    height: 100%;
}

.req_FlexBox0201 {
    width: calc((100% - 0px) /1);
    margin-right: 0px;
    margin-bottom: 40px;
    background-color: #f2f2f2;
}

.req_FlexBox0201:nth-child(2n) {
    width: calc((100% - 0px) /1);
    margin-right: 0px;
    margin-bottom: 0px;

}

.reqSubTitle{
    background-color: #e4041b;
    color: #fff;
    font-size: 0.875rem;
    padding: 8px 30px 8px 50px;
    position: relative;
    font-weight: bold;
}

.reqSubTitle:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    margin: auto;
    z-index: 2;
}

.reqSubTitle:before{
    border-style: solid;
    border-color: #000 transparent transparent transparent;
    border-width: 39px 39px 0 0;
}

.reqBox{
    background-color: #f2f2f2;
    margin-top: 40px;
}

.reqBoxInr{
    padding: 20px 20px;
}

.req_indentText2em p{
    text-indent:-2em;
    margin-left:2em;
}

.req_indentText1em p{
    text-indent:-1em;
    margin-left:1em;
}

.reqMinText{
    font-size: 0.82rem;
}

.req_donationFlex{
}

.req_donationFlex_L{
    margin-bottom: 20px;
}

.req_donationFlex_R{
    background-color: #fff;
    font-size: 0.875rem;
}

.req_donaTitle{
	background-color: #ec4f5f;
	color: #fff;
	padding: 10px 20px;
	font-weight: bold;
}

.req_donaInr{
	padding: 20px;
}

.req_donationBText{
    font-size: 1.0rem;
    margin: 40px 0px 15px 0px;
    line-height: 1.5;
}

.req_donationFlex .req_donationBText{margin: 20px 0px 15px 0px;}

.req_donaBgBox{
    background-color: #fff;
    padding: 20px;
    margin-bottom: 15px;
}


/************************************************************/
/*   Footer Contact Section   */
/************************************************************/

#FtContactSection{
    padding: 30px 0px 0px;
}

.FtContactWrap{
    width: 100%;
    height: 100%;
}

.FtContactMap {
    height: 45vh;
    width: 100%;
}

.FtContactMapInr {
    position: relative;
    width: 100%;
    height: 100%;
}

.FtContactMapInr iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.FtContactText {
    width: 100%;
    box-sizing: border-box;
    padding: 30px 20px;
    background-color: #fce6e8;
    text-align: center;
    color: #000;
}

.FtContactText h4{
    font-size: 1.25rem;
    color: #e4041b;
    margin-bottom: 20px;
}

.FtContactText h5{
    font-size: 1.5rem;
    color: #000000;
    border-bottom: 2px solid #333333;
    padding-bottom: 10px;
    margin: 0px 0px 15px;
}

.FtContactTel{
    font-size: 2.0rem;
    color: #e4041b;
}

.FtContactTel a{color: #e4041b;}

.FtContactMail{
    background-color: #fff;
    margin: 10px 0px 0px;
    padding: 20px;
    border:3px solid #e4041b;
    font-size: 1.0rem;
}

.FtContactMTitle{
    font-size: 1.25rem;
    color: #e4041b;
}