@charset "UTF-8";

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

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

a{
	text-decoration: none;
	transition: 0.3s;
    color: #1a1a1a;
}

a.underLineLink{
	text-decoration: underline;
}

a.underLineLink:hover{
	text-decoration: none;
}

a img:hover{
    opacity: 0.5;
	cursor: pointer;
}


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


/************************************************************/
/*   Navigation Section   */
/************************************************************/
.headerMenuBtn{display: none;}

#navigationSection{
    position: absolute;
    top: inherit;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #e4041b;
    color: #fff;
}

#navigationSection a{color: #fff;}

.navigationWrap{
    padding: 15px;
    display: table;
    box-sizing: border-box;
    width: 100%;
    position: relative;
    z-index: 2;
}

.navigationWrap h1{
    display: table-cell;
    vertical-align: middle;
    line-height: 0.8;
    font-size: 2.5rem;
    width: 250px;
}

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

.navigationList{
	width: calc(100% - 250px);
    display: table-cell;
    vertical-align: middle;
}

.navigationList ul{
    display: flex; flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    justify-content: flex-end;
/*    font-size: 1.1vw;*/
}
@media screen and (min-width: 1450px){
	.navigationWrap{
		padding: 15px 120px;
		display: table;
		box-sizing: border-box;
		width: 100%;
		position: relative;
		z-index: 2;
	}
}

.navigationList li{
/*    margin: 0px 5px;*/
	margin-left: 30px;
}
.navigationList li:first-of-type{
	margin-left: 0;
}

.navigationList a{
	font-size: 1.2rem;
    position: relative;
    display: inline-block;
    transition: .3s;
}

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

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


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

.footerContents{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footerTitle{
    width: 20%;
    color: #fff;
}

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

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

.footerTitle a{color: #fff;}

.footerDesc{
    width: 80%;
    padding-left: 30px;
    color: #fff;
}

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

.footerSNSLink{
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.footerSNSLink li{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-left: 30px;
}

.footerSNSLink img{
    width: 38px;
    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: flex;
    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.85rem;
    text-align: right;
    margin-top: 20px;
}


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

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

.titleStyle01 span{
    font-size: 3.0rem;
    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:auto;max-height:60vh;}

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;
}


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

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

.topMainTitleBox{
    position: absolute;
    z-index: 1;
    left: 0;
    top: -5%;
    margin-left: 45%;
    width: 55%;
    height: 100%;
    display: flex;
    align-items: center;
}

.topMainTitleInr{}

.topMainTitleInr h2{
    font-size: 3.5vw;
    line-height: 1.4;
    margin-bottom: 50px;
}

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

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

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


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

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

.topInfoSNS{
    padding: 0px 20px;
    align-items: flex-start !important;
}

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

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

.topInfo_fbBox{
    max-width: 499px;
}

.topInfo_twBox{
    max-width: 499px;
}


.topinfo_youTubeLink{
    display: block;
    width: 70%;
    margin: 0px auto;
    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: 20px;
    -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: 20%;
}

.topinfo_youTubeText{
    width: 45%;
    padding: 0px 40px 0px 30px;
    font-weight: normal;
    font-size: 1.5rem;
    line-height: 1.3;
}


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

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

.topMessageWrap{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
    width: 100%;
    height: 100%;
}

.topMessageBox01L{
    width: 55%;
    box-sizing: border-box;
    background: #e71e33;
    background: linear-gradient(to right,  #e71e33 0%,#e71e33 51%,#fce6e8 75%,#fce6e8 100%);
}

.topMessageBox01R{
    width: 45%;
    box-sizing: border-box;
    padding-left: 70px;
}

.topMessageBox02L{
    width: 45%;
    box-sizing: border-box;
    padding-right: 70px;
    order:1;
}

.topMessageBox02R{
    width: 55%;
    box-sizing: border-box;
    background: #e71e33;
    background: linear-gradient(to left,  #e71e33 0%,#e71e33 51%,#fce6e8 75%,#fce6e8 100%);
    order:2;
}

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

.topMsgBoxInr02{
    background-color: #fff;
    padding: 50px;
    margin:80px 100px 80px 0px;
    box-shadow: 0 0 8px #ccc;
    position: relative;
}

.topMessageWrap h4{
    font-size: 5.5rem;
    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;
}

@media all and (-ms-high-contrast: none) { /* IE10,11用 */
    .topMessageWrap h4 {
        background: none;
        color: #e71e33;
    }
}

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

.topMessageBox01L h4{
    top: -80px;
    right: 40px;
}

.topMessageBox02R h4{
    top: -80px;
    left: 40px;
}

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

.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: 60px 0px 60px;
}

.topProfBox{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: 70px;
}

.topProfBox_L{
    width: 35%;
}

.topProfBox_R{
    width: 65%;
    box-sizing: border-box;
    padding-left: 30px;
    display: flex;
    flex-flow: column;
}

.topProfTitle{
    font-size: 2.25rem;
    color: #E4041B;
    padding-top: 30px;
    margin-bottom: 20px;
    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: 20%;
    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: 80%;
    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{
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.topResume_FlImg01{
    order:2;
    width: 25%;
}

.topResume_FlDesc01{
    order:1;
    width: 75%;
    padding-right: 20px;
}

.topResume_FlImg02{
    order:2;
    width: 21%;
}

.topResume_FlDesc02{
    order:1;
    width: 79%;
    padding-right: 20px;
}

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

.topResumeWrap dt{
    width: 150px;
    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% - 150px);
    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: 60px 0px 20px;
    background-color: #FCE6E8;
}

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

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

.topMovieDesc{
    position: relative;
    padding-top: 57%;
}

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


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

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

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

.topPol_posiText{
    position: absolute;
    top:13%;
    left: 60px;
    font-size: 4rem;
    line-height: 1.3;
    color: #fff;
}

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

.topPol_pBtext{
    display: block;
    font-size: 4rem;
    margin-bottom: 10px;
}

.topPol_pMargin{
    display: block;
    margin-left: 30%;
}

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

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

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

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

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

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

.topPol_pillarBox{
    background-color: #e6e6e6;
}

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

.topPol_pillarBoxInr{
    padding: 40px;
}

.topPol_pillarB_title{
    font-size: 1.5rem;
    color: #e4041b;
    margin-bottom: 30px;
}

.topPol_pillarB_titleTC{
    text-align: center;
    font-size: 1.5rem;
    color: #e4041b;
    margin-bottom: 30px;
}

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

.topPol_pillarFlex0201{
    width: calc((100% - 41px) /2);
    margin-right: 40px;
    margin-bottom: 40px;
    background-color: #e6e6e6;
}

.topPol_pillarFlex0201:nth-child(2n){
    width: calc((100% - 41px) /2);
    margin-right: 0px;
    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: 60px 0px 20px;
    background-color: #FCE6E8;
}

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

.topRep_mainImg{
    margin-bottom: 40px;
}

.topRep_listImg{
    margin-bottom: 0px;
}


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

.caSubtitle01Box{
    text-align: center;
    margin-bottom: 50px;
}

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

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

.caApplyBoxInr{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

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

.caApplyBoxInr_L{
    width: 47%;
}

.caApplyBoxInr_R{
    width: 47%;
}

.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{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: flex-start;
    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.75rem; font-weight: bold;}
.caApply_tel img{width: 21px; height: auto; margin: 10px 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: 60px 0px 60px;
}


/************************************************************/
/*   Supporter Section   */
/************************************************************/

#SupporterSection{
    padding: 60px 0px 60px;
    background-color: #FCE6E8;
}


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

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

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

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

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

.reqSubTitle{
    background-color: #e4041b;
    color: #fff;
    font-size: 1.0rem;
    padding: 10px 30px 10px 60px;
    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: 47px 47px 0 0;
}

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

.reqBoxInr{
    padding: 30px 30px;
}

.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{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.req_donationFlex_L{
    width: 75%;
    padding-right: 40px;
}

.req_donationFlex_R{
    width: 40%;
    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.25rem;
    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: 60px 0px 0px;
}

.FtContactWrap{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    flex-direction: row;
    align-items: stretch;
}

.FtContactMap {
    height: auto;
    width: 50%;
}

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

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

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

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

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

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

.FtContactTel a{color: #e4041b;}

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

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












