/*ここから共通*/
@charset "UTF-8";
html {
    font-family: sans-serif;
}
html * {
    box-sizing: border-box;
}
img {
    max-width: 100%;
    height: auto;
}

    /*ここからモバイル対応*/
@media (max-width: 767px) {
    .wrapper {
        margin: 0 8px;
    }
    .navigation li {
        display: block;
    }
}
    /*モバイル対応ここまで*/

body {
    margin: 0;
}
.wrapper {
    margin: 0 auto;
    max-width: 1080px;
}
/*共通ここまで*/

/*ここからヘッダー*/
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img {
    position: relative;
    width: 30vw;
}
.link ul {
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 0.7rem;
}
.link li:first-child {
    border-left: 1px solid lightgray;
}
.link li {
    display: inline;
    list-style: none;
    text-align: center;
    width: 10vw;
    border-right: 1px solid lightgray;
}
.link a {
    text-decoration: none;
    color: black;
    font-size: 12px;
}
/*ヘッダーここまで*/


/*ここから運行情報*/
.operation {
    background-color: rgb(237, 125, 49);
    padding: 0.4rem;
    font-size: 14px;
}
.now-ope {
    /*白い箱*/
    width: 65%;
    background-color: white;
    padding: 5px;
    margin-left: 3%;
}
.now-ope ul {
    /*運行情報のflexboxを定義*/
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}
.now-ope li {
    list-style: none;
}
.ope-title {
    flex: 0 0 6em;
    background-color: rgb(237, 125, 49);
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 5px;
}
.ope-info {
    font-weight: bold;
    background-color: white;
    padding: 5px;
    margin-left: 0.5em;
    width: 60%;
}
.ope-detail {
    flex: 0 0 4em;
    background-color: #3b82c4;
    text-align: center;
    padding: 5px;
    margin-right: 0.5em;
}
.ope-detail a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}
.delay-paper {
    flex: 0 0 8em;
    background-color: #ffcc00;
    padding: 5px;
}
.delay-paper a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-weight: bold;
    text-decoration: none;
}
.delay-paper img {
    width: 1em;
    margin-right: 0.5em;
}
/*運行情報ここまで*/


/*ここからナビ*/
.navigation {
    background-color: white;
}
.navigation ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    padding: 0rem 1rem;
}
.navigation li:first-child {
    border-left: 1px solid lightgray;
}
.navigation li {
    display: inline;
    list-style: none;
    position: relative;
    text-align: center;
    width: 20vw;
    padding: 1rem;
    border-right: 1px solid lightgray;
}
.navigation a {
    color: rgb(90, 90, 90);
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}
/*ナビここまで*/

/*ここからSNS*/
.sns {
    display: flex;
    justify-content: center;
    align-items: center;
}
.twitter {
    text-align: center;
}
.twitter img {
    position: relative;
    width: 30%;
}
.note {
    text-align: center;
}
.note img {
    position: relative;
    width: 30%;
}
/*SNSここまで*/

/*ここからフッター*/
.copyright {
    text-align: right;
    font-size: 8px;
}
/*フッターここまで*/


/*ここからほんへ*/
    /*ここからコンセプト画像*/
.page1 {
    align-items: center;
    text-align: center;
    position: relative;
}
.page1 img {
    width: 70%;
    align-items: center;
}
    /*コンセプト画像ここまで*/

    /*ここからニュース*/
.news-release {
    margin: 2em;
}
.news-release a {
    color: rgb(90, 90, 90);
}
.news {
    border-collapse: collapse;
}
.news th, .news td {
    padding: 0.5rem 0;
    border-bottom: 1px dashed gray;
}
    /*ニュースここまで*/
/*ほんへここまで*/

/*ここからお問い合わせ*/
.caution {
    text-align: center;
    color: red;
    font-weight: bold;
    font-size: 24px;
}
.form-box li {
    font-size: 18px;
    margin-top: 2em;
}
/*お問い合わせここまで*/

/*ここから企業情報*/
.company {
    display: flex;
    justify-content: space-around;
}

.company a {
    color: rgb(90, 90, 90);
    text-decoration: none;
    font-weight: bold;
}

.hello img {
    width: 80%;
}

.about img {
    width: 80%;
}
/*企業情報ここまで*/
