
@charset "UTF-8";

/* ---------------------

# サイトルート配下のHTMLのスタイル(※about.htmlは除く)

- Top（index.html）
- お問い合わせ（inquiry.html）
- 規約系ページ（※フッタメニュー項目）
	- Class名：.terms_block

--------------------- */
/* ==============================
320～767px＝スマホ
768～1024px＝タブレット
1025～＝PC
1025～最大幅:2カラム(右側ナビ固定幅、左カラム可変)
PC最大幅:1366px
============================== */
.slider-x-news_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column-reverse;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .slider-x-news_block {
        flex-direction: column;
        margin: 1.0em 0.5em;
    }
}

@media screen and (max-width: 767px) {
    .slider-x-news_block {
        flex-direction: column;
        margin: 1.0em 0.5em;
    }
}

/* スライダー */
@media screen and (max-width: 767px) {
    .slider .slick-list {
        border-radius: 30px;
        background-color: #FFF;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
        margin-bottom: 0.5em;
    }
}


.slider .slick-dots {
    position: static;
    /* bottom: -20px;
    */
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    /* .slider .slick-dots {
        bottom: -50px;
    } */
}

@media screen and (max-width: 767px) {
    /* .slider .slick-dots {
        bottom: -60px;
    } */
}

.slider .slick-dots li {
    margin: 0 8px;
    width: 10px;
    height: 10px;
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
}

.slick-dots li button:before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #74725B;
}

.slick-initialized .slick-slide > a {
    display: block;
}

.slick-initialized .slick-slide > a:focus {
    outline: none;
}

.slick-dotted.slick-slider {
    margin-bottom: 4.0em !important;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .slick-dotted.slick-slider {
        margin: 0 0.5em 5.0em;
    }
}

@media screen and (max-width: 767px) {
    .slick-dotted.slick-slider {
        margin-bottom: 2em !important;
    }
}

/* ------------------------------
スライダー画像 OLD
------------------------------ */
.slider_image {
    display: block;
    position: relative;
    width: 990px;
    height: 606px;
    border-radius: 30px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

@media screen and (min-width: 1025px) and (max-width: 1365px) {
    .slider_image {
        width: auto;
        height: 42vw;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .slider_image {
        width: auto;
        height: 42vw;
    }
}

@media screen and (max-width: 767px) {
    .slider_image {
        width: auto;
        height: 397px;
        background-size: cover;
        background-position: center center;
        border-radius: 30px;
    }
}

/* ------------------------------
スライダー画像 NEW
------------------------------ */
.slider-image-wrap {
    display: block;
    position: relative;
    width: 990px;
    height: 0;
    border-radius: 30px;
    overflow: hidden;
    height: 0;
    padding-top: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -3;
}

@media screen and (min-width: 1025px) and (max-width: 1365px) {
    .slider-image-wrap {
        width: 100%;
        padding-top: 42vw;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .slider-image-wrap {
        width: auto;
        padding-top: 42vw;
    }
}

@media screen and (max-width: 767px) {
    .slider-image-wrap {
        width: 100%;
        padding-top: 40vh;
        border-radius: 0;
    }
}

.slider-image-wrap::before {
    position: absolute;
    content: "";
    background-image: inherit;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    overflow: hidden;
    z-index: -2;
}

.slider-image-wrap::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 90%);
    top: 0;
    left: 0;
    z-index: -1;
}

.slider-image-wrap > img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ------------------------------
スライダーテキスト
------------------------------ */
.slider-textarea_wrap .slider-textarea {
    padding: 1.0em 0;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .slider-textarea_wrap .slider-textarea {
        padding: 1em 0.5em;
        text-align: center;
    }
}

.slider-textarea_wrap .slider-textarea dt {
    font-size: 24px;
    font-weight: bold;
}

.slider-textarea_wrap .slider-textarea dd {
    font-size: 14px;
}

@media screen and (min-width: 1025px) and (max-width: 1365px) {
    .slider-textarea_wrap .slider-textarea dt {
        font-size: 2.0vw;
    }

    .slider-textarea_wrap .slider-textarea dd {
        font-size: 1.4vw;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .slider-textarea_wrap .slider-textarea dt {
        font-size: 20px;
    }

    .slider-textarea_wrap .slider-textarea dd {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .slider-textarea_wrap .slider-textarea dt {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 0.25em;
    }

    .slider-textarea_wrap .slider-textarea dd {
        font-size: 12px;
        line-height: 1.4;
    }
}

/* サイト説明 */
.site-explain {
    width: 100%;
    max-width: 1366px;
    padding: 1.0em;
    box-sizing: border-box;
    margin: 0 auto;
}

.site-explain p {
    width: 100%;
    /* text-align: center; */
    color: #212121;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .site-explain {
        width: auto;
        position: relative;
        font-size: 1.8vw;
        padding-top: 60px;
        padding-bottom: 0;
    }

    .site-explain p {
        text-align: left;
        width: auto;
    }
}

@media screen and (max-width: 767px) {
    .site-explain {
        width: auto;
        position: relative;
        font-size: 12px;
        padding-top: 60px;
        padding-bottom: 0;
    }

    .site-explain p {
        text-align: left;
        width: auto;
    }
}

/* お知らせ（トピックス）
=============================================== */
.lastest-news {
    margin-bottom: 3.0em;
}

.lastest-news .border-dot {
    border: 2px dashed #707070;
    border-radius: 30px;
    margin-bottom: 1.0em;
}

.lastest-news h2 {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    background-color: #707070;
    font-weight: normal;
    border-radius: 30px 0 30px 0;
    margin: -2px 0 0 -2px;
    padding: 0.3em 3.0em;
    white-space: nowrap;
}

.lastest-news dl {
    display: table;
    box-sizing: border-box;
    color: #7A7A70;
    margin: 1.0em 0.5em;
}

.lastest-news dl .news_date {
    display: table-cell;
    white-space: nowrap;
    padding-left: 1.0em;
    padding-right: 1.0em;
    border-right: 1px solid #D1D1C8;
}

.lastest-news dl .news_detail {
    display: table-cell;
    padding-left: 1.0em;
    padding-right: 1.0em;
    line-height: 1.5em;
}

@media screen and (min-width: 1025px) and (max-width: 1365px) {
    .lastest-news dl .news_date {
        font-size: 1.5vw;
    }

    .lastest-news dl .news_detail {
        font-size: 1.5vw;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .lastest-news dl {
        display: block;
        margin: 0.5em 0.5em 1.0em;
    }

    .lastest-news dl .news_date {
        display: block;
        font-size: 16px;
        border-right: none;
        padding-right: 0.3em;
        padding-left: 0.3em;
        padding-bottom: 0.3em;
        border-bottom: 1px solid #D1D1C8;
    }

    .lastest-news dl .news_detail {
        display: block;
        font-size: 16px;
        padding-top: 0.3em;
        padding-right: 0.3em;
        padding-left: 0.3em;
    }
}

@media screen and (max-width: 767px) {
    .lastest-news dl {
        display: block;
        margin: 0.5em 0.5em 1.0em;
    }

    .lastest-news dl .news_date {
        display: block;
        font-size: 16px;
        border-right: none;
        padding-right: 0.3em;
        padding-left: 0.3em;
        padding-bottom: 0.3em;
        border-bottom: 1px solid #D1D1C8;
    }

    .lastest-news dl .news_detail {
        display: block;
        font-size: 14px;
        padding-top: 0.3em;
        padding-right: 0.3em;
        padding-left: 0.3em;
    }
}

.lastest-news .btn-morenews {
    display: block;
    width: 300px;
    margin: 0 auto;
    color: #fff;
    padding: 0.7em 0;
    border-radius: 11px;
    text-align: center;
    background: #74725B url(https://cdn.l-tike.com/bw-ticket/img/icn_hd_beginner01.png) no-repeat 18px center;
    background-size: 32px 32px;
}

.lastest-news .btn-morenews:hover {
    opacity: 0.8;
}

a.btn-archive {
    display: block;
    width: 300px;
    margin: 0 auto;
    color: #7A7A70;
    padding: 0.7em 0;
    border-radius: 11px;
    border: solid 1px #74725B;
    text-align: center;
    margin-top: 30px;
    position: relative;
}

a.btn-archive:hover {
    opacity: 0.8;
}

a.btn-archive:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: #74725B 2px solid;
    border-right: #74725B 2px solid;
    transform: rotate(45deg);
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -3px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .lastest-news .btn-morenews {
        margin: 0 auto;
    }
}

@media screen and (max-width: 767px) {
    .lastest-news .btn-morenews {
        margin: 0 auto;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .lastest-news {
        margin: 0 0.5em 1.5em;
    }

    .lastest-news h2 {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .lastest-news {
        margin: 0 0.5em 1.5em;
    }

    .lastest-news h2 {
        font-size: 14px;
        padding: 0.3em 2.0em;
    }
}

/* バナー */
.banner-block {
    margin-bottom: 3.0em;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .banner-block {
        margin: 0 0.5em 2.0em;
    }
}

@media screen and (max-width: 767px) {
    .banner-block {
        margin: 0 0.5em 2.0em;
    }
}

/* おすすめチケット
=============================================== */
.recommend-ticket_block {
    margin-bottom: 2.0em;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .recommend-ticket_block {
        margin: 0 0.5em;
    }
}

@media screen and (max-width: 767px) {
    .recommend-ticket_block {
        margin: 0 0.5em;
    }
}

.recommend-ticket_block .recommend-ticket_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-right: -6px;
    margin-left: -6px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .recommend-ticket_block .recommend-ticket_list {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media screen and (max-width: 767px) {
    .recommend-ticket_block .recommend-ticket_list {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.recommend-ticket_block .recommend-ticket_list .list_item {
    width: 25%;
    margin-bottom: 2.0em;
    padding-right: 6px;
    padding-left: 6px;
    box-sizing: border-box;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .recommend-ticket_block .recommend-ticket_list .list_item {
        width: 33%;
    }
}

@media screen and (max-width: 767px) {
    .recommend-ticket_block .recommend-ticket_list .list_item {
        width: 50%;
    }
}

.recommend-ticket_block .recommend-ticket_list a {
    display: block;
}

.recommend-ticket_block .recommend-ticket_list a .Card__thumb {
    width: 100%;
    height: 0;
    padding-top: 100%;
    border-radius: 20px;
    border: 1px solid #B4B3A5;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.5em;
}

.recommend-ticket_block .recommend-ticket_list a .Card__thumb::before {
    background-color: rgba(0, 0, 0, 0.5);
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.recommend-ticket_block .recommend-ticket_list a .Card__thumb > img {
    position: absolute;
    top: 0;
    font-family: "object-fit:cover;object-position:center";
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    -webkit-filter: blur(2px);
    filter: blur(2px);
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.recommend-ticket_block .recommend-ticket_list a .Card__thumb .Card__thumbImg {
    position: absolute;
    top: -1px;
    left: 0;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    z-index: 2;
}

.recommend-ticket_block .recommend-ticket_list a .Card__thumb .Card__thumbImg > img {
    /* font-family: "object-fit:contain;object-position:center";
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%; */
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.recommend-ticket_block .recommend-ticket_list a .ticket_genre {
    font-size: 14px;
}

.recommend-ticket_block .recommend-ticket_list a .ticket_title {
    color: #212121;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .recommend-ticket_block .recommend-ticket_list a {
        width: 100%;
    }
}

/* お知らせ
============================================== */
.news_block {
    margin-bottom: 3.0em;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .news_block {
        margin: 0 0.5em 2.0em;
    }
}

@media screen and (max-width: 767px) {
    .news_block {
        margin: 0 0.5em 2.0em;
    }
}

.news_block .news_list {
    margin-top: -1.0em;
}

.news_block .news_list li {
    border-bottom: 2px dashed #CECDC0;
    padding: 1.0em 0;
}

.news_block .news_list dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.news_block .news_list dl dt {
    color: #74725B;
}

.news_block .news_list dl dt .news-type {
    border: 1px solid #74725B;
    border-radius: 34px;
    padding: 0.2em 1.0em;
    font-size: 12px;
    margin-right: 1.0em;
}

.news_block .news_list dl dt .news-date {
    font-size: 14px;
}

.news_block .news_list .news_text {
    margin-bottom: 0.5em;
    color: #212121;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .news_block .news_list {
        margin-bottom: 2.0em;
    }

    .news_block .news_list .news_text {
        margin-bottom: 2.0em;
    }
}

@media screen and (max-width: 767px) {
    .news_block .news_list {
        margin-bottom: 2.0em;
    }

    .news_block .news_list .news_text {
        margin-bottom: 2.0em;
    }
}

.news_block .btn_more {
    display: block;
    padding: 1.0em 1.0em;
    margin: 0 1.0em;
    background-color: transparent;
    color: #74725B;
    border: 1px solid #74725B;
    border-radius: 11px;
    position: relative;
    text-align: center;
}

.news_block .btn_more::after {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    background-image: url(https://cdn.l-tike.com/bw-ticket/img/icn_arrow-right01.png);
    background-repeat: no-repeat;
    background-size: contain;
    right: 5px;
}

/* 規約系ページ
============================================== */
.terms_block {
    font-size: 14px;
    margin-bottom: 3.0em;
    /* 大見出し */
    /* 小見出し */
}

.terms_block .heading-kiyaku {
    border-bottom: solid 2px #DDD;
    margin: 0 0 1.0em;
    padding: 0 0 10px;
    margin-bottom: 2.0em;
}

.terms_block .heading-kiyaku .blueline-left {
    border-left: solid 5px #006bb9;
    padding-left: 10px;
    font-weight: bold;
    font-size: 22px;
}

@media screen and (max-width: 767px) {
    .terms_block .heading-kiyaku .blueline-left {
        font-size: 22px;
    }
}

.terms_block article {
    margin-bottom: 3.0em;
}

.terms_block article:last-of-type {
    margin-bottom: 1.0em;
}

.terms_block article article {
    margin-bottom: 1.0em;
}

.terms_block .heading-kiyaku_sub {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 0.2em;
}

@media screen and (max-width: 767px) {
    .terms_block .heading-kiyaku_sub {
        font-size: 20px;
    }
}

.terms_block a:link,
.terms_block a:visited,
.terms_block a:hover,
.terms_block a:active {
    color: #006bb9;
    text-decoration: underline;
}

@media screen and (min-width: 1025px) and (max-width: 1365px) {
    .terms_block {
        margin: 0 0 1.5em;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .terms_block {
        margin: 0 1.5em 3.0em;
    }
}

@media screen and (max-width: 767px) {
    .terms_block {
        margin: 0 1.5em 3.0em;
    }
}

.terms_block p {
    margin-bottom: 1.0em;
}

.terms_block p:last-child {
    margin-bottom: 0;
}

.terms_block h2 + p {
    margin-bottom: 0;
}

.terms_block .terms_datalist {
    margin-bottom: 2.0em;
}

.terms_block .terms_datalist dt {
    font-weight: bold;
    margin-bottom: 0.5em;
    font-size: 22px;
}

@media screen and (max-width: 767px) {
    .terms_block .terms_datalist dt {
        font-size: 20px;
    }
}

.terms_block .terms_datalist dd {
    margin-bottom: 1.5em;
}

.terms_block .terms_datalist-img {
    text-align: center;
}

.terms_block .terms_datalist-img dt {
    font-weight: bold;
    margin-bottom: 0.5em;
    font-size: 22px;
}

@media screen and (max-width: 767px) {
    .terms_block .terms_datalist-img dt {
        font-size: 20px;
    }
}

.terms_block .terms_datalist-img dd {
    margin-bottom: 1.5em;
}

.terms_block .terms_datalist-img dd p {
    width: 400px;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .terms_block .terms_datalist-img dd p {
        width: auto;
    }
}

/* お問い合わせ
============================================== */
.inquiry_block {
    color: #333;
}

.inquiry_block h1 {
    font-size: 32px;
    font-weight: bold;
    border-bottom: 4px solid #CCC;
    margin-bottom: 1.0em;
}

@media screen and (max-width: 767px) {
    .inquiry_block h1 {
        font-size: 22px;
    }
}

.inquiry_block h2 {
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid #CCC;
    margin-bottom: 0.5em;
}

@media screen and (max-width: 767px) {
    .inquiry_block h2 {
        font-size: 22px;
    }
}

.inquiry_block h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
    .inquiry_block h3 {
        font-size: 18px;
    }
}

.inquiry_block article {
    margin-bottom: 2.0em;
}

.inquiry_block article:last-child {
    margin-bottom: 0;
}

.inquiry_block .lead_block {
    margin-bottom: 2.0em;
}

.inquiry_block .lead_block .text_red {
    color: #FF0004;
    font-weight: bold;
}

.inquiry_block .frame_border {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 1.0em;
}

.inquiry_block .phone-number {
    font-weight: bold;
    font-size: 2.0em;
}

@media screen and (min-width: 1025px) and (max-width: 1365px) {
    .inquiry_block {
        margin: 0 0 1.5em;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .inquiry_block {
        margin: 0 1.5em 3.0em;
    }
}

@media screen and (max-width: 767px) {
    .inquiry_block {
        margin: 0 1.5em 3.0em;
    }
}



/* ==============================
TOP 愛知県観光
============================== */
#top .aichi-wrap {
	margin: 0 0.5em 4em 0.5em;
    background-color: #f7fce3;
}

#top .aichi-wrap .inner_wrap {
    border: none;
    padding: 0 16px 40px 16px;
}

#top .aichi-wrap .inner_wrap .lead {
    margin-bottom: 24px;
    font-weight: 500;
    color: #212121;
}

#top .aichi-wrap .btnArea .btn_ticket-buy {
    font-size: 20px;
    width: 80%;
    margin: 0 auto;
    display: block;
    padding: 16px 8px;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    background-color: #eb8383;
    box-shadow: 0 2px 4px rgb(0 0 0 / 16%);
}

@media screen and (max-width: 1024px) {
    #top .aichi-wrap {
		margin: 2em 0.5em 4em 0.5em;
    }
}

@media screen and (max-width: 767px) {
    #top .aichi-wrap {
        margin: 2em 0.5em 4em 0.5em;
    }

    #top .aichi-wrap .btnArea .btn_ticket-buy {
        font-size: 18px;
        width: 90%;
    }

    #top .aichi-wrap .inner_wrap .lead {
        margin-bottom: 24px;
        font-size: 16px;
    }
}

@media screen and (max-width: 600px) {
    #top .aichi-wrap .inner_wrap {
        padding-bottom: 24px;
    }
    #top .aichi-wrap .btnArea .btn_ticket-buy {
        font-size: 16px;
    }
}

@media screen and (max-width: 374px) {
    #top .aichi-wrap h2.heading-dot div {
        line-height: 1.4;
    }
    #top .aichi-wrap .btnArea .btn_ticket-buy {
        font-size: 4.4vw;
        font-feature-settings: "palt";
    }
}


/* --------------------
TOP 愛知県観光 興行リスト
-------------------- */
#top .aichi-wrap .item-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	margin-bottom: 1em;
}

#top .aichi-wrap .item-list::after {
    content: "";
    display: block;
    width: calc((100% - 32px) / 3);
}

#top .aichi-wrap .item-list a {
    display: block;
    width: calc((100% - 32px) / 3);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.14), 0 2px 1px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.20);
    border-radius: 20px;
    margin-bottom: 24px;
    background-color: #FFF;
}

#top .aichi-wrap .item-list a .img-wrap {
    display: block;
    width: 100%;
    height: 0;
    padding-top: 75%;
    /* 表示枠の 縦÷横×100 */
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

#top .aichi-wrap .item-list a .img-wrap::before {
    background-color: rgba(0, 0, 0, 0.7);
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

#top .aichi-wrap .item-list a .img-wrap > img {
    position: absolute;
    top: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    -webkit-filter: blur(2px);
    filter: blur(2px);
}

#top .aichi-wrap .item-list a .img-wrap .slideImg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

#top .aichi-wrap .item-list a .img-wrap .slideImg > img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#top .aichi-wrap .item-list a .text-wrap {
    padding: 12px 16px 16px 16px;
    color: #7A7A70;
    font-size: 14px;
}

#top .aichi-wrap .item-list a .text-wrap h3 {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 16px;
}

#top .aichi-wrap .item-list a .text-wrap .place li {
    display: inline-block;
    margin: 8px 0.5em 0 0;
    border: solid 1px #7A7A70;
    height: 24px;
    line-height: 22px;
    padding: 0px 8px;
    border-radius: 2px;
}

#top .aichi-wrap .item-list a .text-wrap .tag {
    border: none;
    margin: 0;
    padding: 0;
}

#top .aichi-wrap .item-list a .text-wrap .tag li {
    display: inline-block;
    margin: 8px 0.5em 0 0;
    border: solid 1px #7A7A70;
    height: 24px;
    line-height: 22px;
    padding: 0px 8px;
    border-radius: 2px;
}

#top .aichi-wrap .item-list a .text-wrap .keyword li {
    display: inline-block;
    margin: 0 0.5em 8px 0;
    background-color: #7A7A70;
    color: #fff;
    font-size: 12px;
    height: 24px;
    line-height: 24px;
    padding: 0 8px;
    border-radius: 2px;
}

@media screen and (max-width: 768px) {
    #top .aichi-wrap .item-list::after {
        width: calc((100% - 32px) / 3);
    }

    #top .aichi-wrap .item-list a {
        width: calc((100% - 32px) / 3);
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 600px) {
    #top .aichi-wrap .item-list {
        display: block;
    }

    #top .aichi-wrap .item-list a {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 16px auto;
    }
    #top .aichi-wrap .item-list a:last-child {
        margin-bottom: 24px;
    }
}



