@charset "UTF-8";

main {
    z-index: 2;
    position: relative;
    background-color: #fcfcfc;
    color: white
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #222;
    background-color: #fcfcfc;
    line-height: 1.7rem;
    font-size: 1.15rem;
    -webkit-font-smoothing: antialiased;
}


h1 {
    display: block;
    text-align: -webkit-center;
    unicode-bidi: isolate;
    font-size: 3.3rem;
    line-height: 5.8rem;
    margin-top: 1.7rem;
    margin-bottom: 3.4rem;
    max-width: 100%;
    font-family: "Din Alternate", "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
    font-style: normal;

    @media screen and (max-width: 720px) {
        font-size: 2.3rem;
        line-height: 3.8rem;
        margin-top: 1.7rem;
        margin-bottom: 2.4rem;
    }
}

h2,h3,h4,h5,h6 {
    margin: 0;
    font-weight: inherit;
    font-size: inherit
}

h3,h4,h5,h6,p,ul,ol {
    max-width: 42rem;
    margin-bottom: 1.7rem;
    margin-left: auto;
    margin-right: auto;
}

img {
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
}

.top-image {
    width:65vw;
    margin: 1rem auto 0 auto;

    @media screen and (max-width: 720px) {
        width: 100%;
        margin: 1rem auto 1rem auto;
    }
}

.index-top {
    color: #111;
    font-size: 1rem;
    width: 65vw;
    text-align: right;
    margin: 0.6rem auto 1rem auto;

    @media screen and (max-width: 720px) {
        width: 85vw;
        font-size: 0.6rem;
        margin: 0.4rem auto 0.3rem auto;
    }
}

.index-menu {
    color: #222;
    width: 65vw;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6rem;
    text-align: right;

    @media screen and (max-width: 720px) {
        width: 70vw;
        font-size: 0.7rem;
        line-height: 1.0rem;
    }
}

.new {
    color: #b50000;
    margin: 0 10px 0 auto;
    font-size: 0.7rem;
    line-height: 1.6rem;
    text-align: right;

    @media screen and (max-width: 720px) {
        width: 70vw;
        font-size: 0.7rem;
        line-height: 1.0rem;
    }
}

.main-text {
    margin-top: 2rem;
    margin-bottom: 2rem;

    @media screen and (max-width: 700px) {
        margin-left: 16px;
        margin-right: 16px;
    }
}

.hide {
    display: none
}

.top-mv {
    display: flex;
    position: relative;
	align-items: end;
    height: 100vh
}

.top-video {
    display: flex;
    z-index: -1;
    position: absolute;
	align-items: end;
    width: 100%;
    height: 100vh
}

.top-video video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center
}

.top-video-item {
    width: 100%;
    height: 100vh
}

.top-video:before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(87,91,105,.2);
    content: ""
}

.top-text {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    width: 100%;
    height: 47vh;
    z-index: 3
}

.top-text .meta {
    margin-bottom: -1.275rem;
}

.meta {
    text-transform: uppercase;
    color: white;
    width: 480px;
    margin: 0 auto;
    height: 30px;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.275rem;
}

.category {
    margin-left: 3%;
    float: left;
}

.date {
    margin-right: 3%;
    float: right;
}

.video-container {
    vertical-align: top;
    height: auto;
    display: inline-block;
    width: 100%;
    margin: .875rem auto;
    position: relative;

    @media screen and (max-width: 720px) {
        margin: 5rem auto;
        display: block;
        overflow: hidden;
    }
}

.video-container-2p {
    margin: 2rem auto;
    width: 100vw;
}

.video-float-left {
    display: flex;
    justify-content: flex-end;
}

.video-float {
    width: 100%;
}

.video720 {
    max-width: 720px; /* 最大幅を100%に制限 */
    min-width: 720px;
    margin: 0 auto;
    top: 0;
}

.video1080 {
    max-width: 1080px; /* 最大幅を100%に制限 */
    min-width: 1080px;
    margin: 0 auto;
    top: 0;
}

.img-grid-p1 {
    width: 100vw;
    margin: 2rem auto;
    display: grid;      /* グリッドコンテナを作る */
    grid-template-columns:1fr 1fr 1fr;      /* 縦向きのグリッドラインを決める */
    grid-template-rows: 1fr 1fr;        /* 横向きのグリッドラインを決める */

    @media screen and (max-width: 720px) {
        margin-left: 5%;
        margin-right: 5%;
        width: 100%;
        display: initial;
    }
}

.img-grid-p1-child {
    margin: 0 1.3rem 0 1.3rem;

    @media screen and (max-width: 720px) {
        width: 100%;
        margin: 1rem auto 1rem auto;
    }
}

.img-grid-p1-child:nth-child(1) {
    grid-column:1/2;        /* 配置指定 */
    grid-row:1/3;           /* 配置指定 */
}
.img-grid-p1-child:nth-child(2) {
    grid-column:2/3;        /* 配置指定 */
    grid-row:1/2;           /* 配置指定 */
}

.img-grid-p1-child:nth-child(3) {
    grid-column:3/4;        /* 配置指定 */
    grid-row:1/2;           /* 配置指定 */
}

.img-grid-p1-child:nth-child(4) {
    grid-column:2/3;        /* 配置指定 */
    grid-row:2/3;           /* 配置指定 */
}

.img-grid-p1-child:nth-child(4) {
    grid-column:3/4;        /* 配置指定 */
    grid-row:2/3;           /* 配置指定 */
}

/* 3枚画像横フル */
.img-grid-p2 {
    width: 100vw;
    margin: 2rem auto;
    display: grid;      /* グリッドコンテナを作る */
    grid-template-columns:1fr 1fr 1fr;      /* 縦向きのグリッドラインを決める */
    grid-template-rows: 1fr;        /* 横向きのグリッドラインを決める */

    @media screen and (max-width: 720px) {
        margin-left: 5%;
        margin-right: 5%;
        width: 100%;
        display: initial;
    }
}

.img-grid-p2-child {
    margin: 0 1.3rem 0 1.3rem;

    @media screen and (max-width: 720px) {
        width: 100%;
        margin: 1rem auto 1rem auto;
    }
}

.img-grid-p2-child:nth-child(1) {
    grid-column:1/2;
    grid-row:1/2;
}
.img-grid-p2-child:nth-child(2) {
    grid-column:2/3;
    grid-row:1/2;
}

.img-grid-p2-child:nth-child(3) {
    grid-column:3/4;
    grid-row:1/2;
}

/* 2枚画像横フル */
.img-grid-p3 {
    width: 100vw;
    margin: 2rem auto;
    display: grid;
    grid-template-columns:1fr 1fr;
    grid-template-rows: 1fr;

    @media screen and (max-width: 720px) {
        margin-left: 5%;
        margin-right: 5%;
        width: 100%;
        display: initial;
    }
}

.img-grid-p3-child {
    margin: 0 1.3rem 0 1.3rem;

    @media screen and (max-width: 720px) {
        width: 100%;
        margin: 1rem auto 1rem auto;
    }
}

.img-grid-p3-child:nth-child(1) {
    grid-column:1/2;
    grid-row:1/2;
}
.img-grid-p3-child:nth-child(2) {
    grid-column:2/3;
    grid-row:1/2;
}


.video-grid-p1 {
    width: 80vw;
    margin: 2rem auto;
    display: grid;      /* グリッドコンテナを作る */
    grid-template-columns:16fr 9fr;      /* 縦向きのグリッドラインを決める */
    grid-template-rows: 9fr 7fr;        /* 横向きのグリッドラインを決める */

    @media screen and (max-width: 1200px) {
        margin-left: auto;
        margin-right: auto;
        width: 90%;
        display: block;
        overflow: hidden;
    }
}

.video-grid-p1-child {
    margin: 2rem auto;

    @media screen and (max-width: 1200px) {
        width: 100%;
        margin: 1rem auto 1rem auto;
    }
}

.video-grid-p1-child:nth-child(1) {
    grid-column:1/2;        /* 配置指定 */
    grid-row:1/2;           /* 配置指定 */
}
.video-grid-p1-child:nth-child(2) {
    grid-column:2/3;        /* 配置指定 */
    grid-row:1/3;           /* 配置指定 */
}

.video-grid-p1-child:nth-child(3) {
    grid-column:1/2;        /* 配置指定 */
    grid-row:2/3;           /* 配置指定 */
}

.video-grid-p2 {
    width: 80vw;
    margin: 2rem auto;
    display: grid;      /* グリッドコンテナを作る */
    grid-template-columns:1fr 1fr;      /* 縦向きのグリッドラインを決める */
    grid-template-rows: 1fr 1fr;        /* 横向きのグリッドラインを決める */

    @media screen and (max-width: 1200px) {
        margin-left: auto;
        margin-right: auto;
        width: 90%;
        display: block;
        overflow: hidden;
    }
}

.video-grid-p2-child {
    margin: 2rem auto;

    @media screen and (max-width: 1200px) {
        width: 100%;
        margin: 1rem auto 1rem auto;
    }
}

.video-grid-p2-child:nth-child(1) {
    grid-column:1/2;        /* 配置指定 */
    grid-row:1/3;           /* 配置指定 */
}
.video-grid-p2-child:nth-child(2) {
    grid-column:2/3;        /* 配置指定 */
    grid-row:1/3;           /* 配置指定 */
}


.p1-container {
    width: 75vw;
    margin: 2rem auto;
    overflow: hidden;
}

.p2-container {
    margin-left: 12.5%;
    width: 75vw;
    margin-top: 2rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.p2-img {
    width: calc(50% - 3.4rem);
    margin: 1.7rem 1.7rem 1.7rem 0;
    float: left;
}

.p2-container-text {
    margin-top: 2rem;
    max-width: 80rem;
}

.p3-container {
    margin: 2rem auto;
    width: 75vw;
    overflow: hidden;

    @media screen and (max-width: 720px) {
        margin-left: 5%;
        margin-right: 5%;
        width: 90%;
    }
}

.p3-img {
    width: calc(50% - 1.8rem);
    margin: 1.7rem 1.7rem 1.7rem 0;
    float: left;

    @media screen and (max-width: 720px) {
        width: 100%;
        margin: 1rem auto 1rem auto;
    }
}

.p3-img-clear {
    width: calc(50% - 1.8rem);
    margin: 1.7rem 1.7rem 1.7rem 0;
    float: left;
    clear:both;
}

.p3-container-text {
    margin-top: 2rem;
    max-width: 80rem;
}

.full-img {
    width: 100vw;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.mid-img {
    width: 75vw;
    max-width: 80rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.next-page {
    display: block;
    text-align: -webkit-center;
    unicode-bidi: isolate;
    font-size: 1.8rem;
    line-height: 3.8rem;
    margin-top: 1rem;
    margin-bottom: 1.4rem;
    max-width: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
}

.next-page:after {
    content: " →";
    margin-left: 0.5rem;
    margin-right: -2rem;
}

.footer {
    background-color: rgba(252, 252, 252, .95);
    line-height: 3.3rem;
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid #fff;
}

.footer-menu {
    width: 30%;
    margin: 0 auto;

    @media screen and (max-width: 720px) {
        width: 100vw;
    }
}

.footer a {
    color: #999;
    display: inline-block;
    margin-left: 1rem;
    transition: .3s color, .2s border-bottom;
    border-bottom: 2px solid rgba(255, 255, 255, 0);
}

.copyright {
    color: #999;
    display: block;
    margin: 0 auto;
    font-size: .775rem;
    text-align: center;

    @media screen and (max-width: 720px) {
        width: 100vw;
    }
}


table {
    border-collapse: collapse;
    width: 70vw;
    margin: 0 auto;
}

td {
    padding: 1rem 2rem;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

th {
    padding: 1rem 2rem;
    text-align: center;
    border-bottom: 1px solid #ddd;
    font-weight: normal;
    font-size: .875rem;
    color: #666;
    background: #eee;
    position: sticky;
    top: 0;
}

@media screen and (max-width: 720px) {
    table {
        width: 100vw;
    }
    .heading {
        display: none;
    }
    td {
        display: block;
    }
    td::before {
        content: attr(data-label);
        font-size: .875rem;
        color: #666;
        display: block;
        margin-bottom: 0.25rem;
    }
    .transportation {
        margin: 20px 0 0 0;
        background: #eee;
    }
}
