@charset "UTF-8";
/*--------------------
ヘッダー
--------------------*/

.gHeader {
   font-size: 1.6rem;
}

.gHeader .gHeaderInner {
   display: flex;
   align-items: center;
   padding: 0;
   justify-content: space-between;
   position: relative;
   height: 100%;
   box-sizing: border-box;
}

.gHeader .headerLogo {
   width: 50%;
   max-width: 160px;
   padding: 1rem;
   transition: .3s;
   position: relative;
   z-index: 999;
}

.gHeader .headerLogo a {
   display: block;
   transition: .3s;
   width: 100%;
}

.gHeader .headerLogo a > *:last-of-type {
   display: none;
}

.gHeader .headerLogo a:hover {
   opacity: .7;
}

.gHeader .headerLogo svg,
.gHeader .headerLogo img {
   vertical-align: bottom;
   width: 100%;
   height: auto;
}

/*グローバルメニュー*/

.gHeader a.btnTimetable {
   font-size: 1.4rem;
   display: flex;
   padding: 0.5rem 1rem;
   border-radius: 0.6rem;
   background: #F4F4F4;
   border: 1px solid #aaa;
   font-weight: 700;
   color: #222;
   text-decoration: none;
   transition: 0.3s;
   margin-left: auto;
}
.gHeader a.btnTimetable i {
   -webkit-mask-size: 100% auto;
   -webkit-mask-repeat: no-repeat;
   -webkit-mask-position: center;
   mask-size: 100% auto;
   mask-repeat: no-repeat;
   mask-position: center;
   width: 2.5rem;
   background: #222;
   transition: .5s;
   -webkit-mask-image: url(/common/images/icon_timetable.svg);
   mask-image: url(/common/images/icon_timetable.svg);
   margin-right: 0.4em;
}
.gHeader a.btnTimetable:hover {
   background: #777777;
   border-color: #555;
   color: #fff;
}
.gHeader a.btnTimetable:hover i {
   background: #fff;
}


.gHeader .btnGNav {
   position: relative;
   z-index: 999;
   height: 6rem;
   width: 6rem;
   transition: .3s;
   cursor: pointer;
}

.gHeader .btnGNav i,
.gHeader .btnGNav i:before,
.gHeader .btnGNav i:after {
   width: 3rem;
   height: 0.215rem;
   border-radius: 1rem;
   background: #222;
   display: block;
   position: absolute;
}

.gHeader .btnGNav i {
   transition: background 0.5s;
   top: 0;
   right: 0;
   left: 0;
   bottom: 0;
   margin: auto;
}

.gHeader .btnGNav i:before,
.gHeader .btnGNav i:after {
   content: "";
   transform: rotate(0deg);
   transition: all 0.3s !important;
}

.gHeader .btnGNav i:before {
   transform: translateY(0.9rem);
}

.gHeader .btnGNav i:after {
   transform: translateY(-0.9rem);
}

.openGNav .gHeader .btnGNav i {
   background: transparent !important;
}

.openGNav .gHeader .btnSearch {
   opacity: 1 !important;
   visibility: visible !important;
}

.openGNav .gHeader .btnGNav i:after {
   transform: translateY(0px) rotate(-45deg);
}

.openGNav .gHeader .btnGNav i:before {
   transform: translateY(0px) rotate(45deg);
}

.gHeader .gNav {
   position: absolute;
   width: 100%;
   height: 100vh;
   left: 0;
   top: 6rem;
   z-index: 999;
   overflow: hidden;
   transition: transform .2s, opacity .3s, visibility 1s;
   font-weight: bold;
   transform: translateY(-3rem);
   color: #fff;
   visibility: hidden;
   opacity: 0;
}

.gHeader:after {
   content: "";
   width: 100%;
   height: 0;
   top: 0;
   left: 0;
   z-index: 998;
   position: fixed;
   background: rgb(255 255 255 / 60%);
   visibility: hidden;
   transition: height .5s .3s cubic-bezier(0.7, 0.01, 0.3, 1), visibility 1s, background .5s .1s;
}

.openGNav .gHeader:after {
   visibility: visible;
   height: 100vh;
   background: rgb(255 255 255 / 95%);
   transition: height .5s cubic-bezier(0.7, 0.01, 0.3, 1), visibility 1s, background .5s .4s;
}

.gHeader .gNav > ul:last-of-type {}

.openGNav .gHeader .gNav {
   visibility: visible;
   opacity: 1;
   overflow-y: auto;
   padding-bottom: 150px;
   box-sizing: border-box;
   transform: translateY(0);
   transition: transform .2s .3s, opacity .3s .3s, visibility 1s;
}

.gHeader .gNav ul li a {
   display: block;
   font-weight: 700;
   color: #222;
   text-decoration: none;
   transition: 0.3s;
}

.gHeader .gNav .gNavMain {
   margin-bottom: 2rem;
}

.gHeader .gNav .gNavMain li {
   border-bottom: 1px solid #aaa;
}

.gHeader .gNav .gNavMain a {
   width: 100%;
   padding: 2.2rem 1.5rem;
}

.gHeader .gNav .gNavMain a:hover {
   color: #db022a;
}

.gHeader .gNav .gNavSub {
   display: flex;
   justify-content: space-between;
   margin: 0 1.5rem;
}

.gHeader .gNav .gNavSub li {
   width: 100%;
   margin-right: 0.8rem;
   overflow: hidden;
}

.gHeader .gNav .gNavSub li:last-of-type {
    margin-right: 0;
}

.gHeader .gNav .gNavSub a {
   display: flex;
   flex-direction: column;
   width: 100%;
   min-height: 78px;
   align-items: center;
   justify-content: center;
   padding: 0.5rem;
   border-radius: 0.6rem;
   background: #F4F4F4;
   border: 1px solid #aaa;
}

.gHeader .gNav .gNavSub a i {
   -webkit-mask-size: 100% auto;
   -webkit-mask-repeat: no-repeat;
   -webkit-mask-position: center;
   mask-size: 100% auto;
   mask-repeat: no-repeat;
   mask-position: center;
   width: 2.5rem;
   height: 2.5rem;
   background: #222;
   margin-bottom: 0.4rem;
   transition: .5s;
}

.gHeader .gNav .gNavSub a.timetable i {
   -webkit-mask-image: url(../images/icon_timetable.svg);
   mask-image: url(../images/icon_timetable.svg);
}

.gHeader .gNav .gNavSub a.disaster {
   background: #FFF2F2;
   border-color: #db022a;
}

.gHeader .gNav .gNavSub a.disaster i {
   -webkit-mask-image: url(../images/icon_disaster.svg);
   mask-image: url(../images/icon_disaster.svg);
   background: #db022a;
}

.gHeader .gNav .gNavSub a.timetable:hover {
   background: #777777;
   border-color: #555;
   color: #fff;
}

.gHeader .gNav .gNavSub a.disaster:hover {
   background: #e23454;
   border-color: #db022a;
   color: #fff;
}

.gHeader .gNav .gNavSub a:hover i {
   background: #fff;
}

@media screen\0 {
    .gHeader .gNav .gNavSub a.disaster:hover{
        background: #FFF2F2;
        color: #222;
    }
    .gHeader .gNav .gNavSub a.disaster i {
        background: url(../images/icon_disaster.svg) no-repeat center center;
        background-size: contain;
    }
    .gHeader .gNav .gNavSub a.timetable:hover{
        background: #F4F4F4;
        color: #222;
    }
    .gHeader .gNav .gNavSub a.timetable i {
        background: url(../images/icon_timetable.svg) no-repeat center center;
        background-size: contain;
    }
}


/*--------------------
フッター
--------------------*/

.gFooter .pageTop {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 999;
}

.gFooter .pageTop > a {
    width: 5rem;
    height: 5rem;
    font-size: 1.2rem;
    line-height: 1;
    background: #fff;
    color: #db022a;
    border: 2px solid #db022a;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    right: 10px;
    bottom: 10px;
    text-align: center;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}

.gFooter .pageTop > a i {
    font-size: 1.5em;
    margin-bottom: 0.1em;
    transition: .5s;
}

.gFooter .pageTop > a:hover i {
    transform: translateY(-0.15em);
}

.gFooter {
    background: #F4F4F4;
    z-index: 0;
}

.gFooter .gFooterInner {
    padding: 3rem 1rem 10rem 1rem;
    text-align: center;
}

.gFooter .gfooterLogo {
    width: 75%;
    max-width: 373px;
}

.gFooter .gFootNav ul {
    margin: 2.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.gFooter .gFootNav ul li {
    margin: 0.6rem 5%;
}

.gFooter .gFootNav a {
    color: #222;
    transition: opacity .3s;
    text-decoration: none;
}

.gFooter .gFootNav a:hover {
    opacity: 0.7;
}

.gFooter .copy {
    font-size: 1.2rem;
    line-height: 2;
}

.gFooter .copy > p:last-of-type {
    font-size: 1rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

/*------セクションレイアウト------*/

.inner {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}

/*------速報------*/

.em {
    position: relative;
    z-index: 1;
}

.em .inner {
    margin-bottom: 1rem;
    background: #fff2f2;
    border: #D30D1B 1px solid;
    box-sizing: border-box;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    padding: 0;
}

.em h2 {
    color: #fff;
    text-align: center;
    font-weight: bold;
    background: #D30D1B;
    clip-path: polygon(85% 0, 0 0, 0 100%, 85% 100%, 100% 50%);
    padding: 0.8rem;
    padding-right: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 4em;
}

.em p {
    color: #D30D1B;
    padding: 0.8rem;
}