@charset "UTF-8";
body {
    background-color: #fff;
}
#gp-main {
    --colorMain: #08B0BF;
	--colorLink: #08B0BF;
	--colorBtn: #eb8383;
    --colorOrg: #ee6a28;
    font-family: 'Noto Sans JP', sans-serif;
    font-feature-settings: 'palt' 1;
    font-kerning: normal;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.04em;
    line-height: 1.5;
    color: #000;
    container-type: inline-size;
	container-name: gp-main;
}

#gp-main *,
#gp-main *:before,
#gp-main *:after {
    box-sizing: border-box;
    font-weight: unset;
}

#gp-main img {
    vertical-align: bottom;
    height: auto;
}

#gp-main a:link,
#gp-main a:visited,
#gp-main a:hover,
#gp-main a:active {
    color: var(--colorLink);
    text-decoration: underline;
    transition: all  0.3s ease;
    text-underline-offset: 0.25em;
}
#gp-main a:hover {
    opacity: 0.8;
    transition: all  0.3s ease;
}
#gp-main .pagetop a {
    color: #426C7A;
    text-decoration: none;
}

#gp-main b {
    font-weight: 500;
}
#gp-main strong {
    font-weight: 700;
}
#gp-main span {
    font-weight: inherit;
}
@media screen and (max-width: 1024px) {
    #gp-main {
        padding: 0 0;
    }
}

/* 電話番号 */
@media screen and (min-width: 768px) {
    #gp-main a[href^="tel:"]{
        pointer-events: none;
        text-decoration: none;
        color: #000;
    }
}

/* ==============================
コンテンツ共通
============================== */
#gp-main section .heading01 {
    background-color: var(--colorMain);
    color: #fff;
    text-align: center;
    font-weight: 500;
    font-size: 28px;
    padding: 10px 0;
    margin: 0 0 32px 0;
}
#gp-main .heading02 {
    font-size: 24px;
    font-weight: 700;
    color: var(--colorMain);
    border-bottom: solid 2px var(--colorMain);
    padding: 0 0 8px;
    margin: 0 0 16px 0;
}
#gp-main .heading02 .sub {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 0 1em;
    color: #000;
}
#gp-main .heading02 .sub span {
    color: var(--colorMain);
}
#gp-main .heading03 {
    font-size: 20px;
    font-weight: 500;
    border-bottom: solid 1px #000;
    padding: 0 0 8px;
    margin: 0 0 16px 0;
}
#gp-main .heading04 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

#gp-main .inner-wrap {
    padding: 0 24px;
    margin: 0 0 64px;
}
#gp-main .note {
    font-size: 14px;
}
#gp-main .note li {
    margin-bottom: 4px;
    text-indent: -1em;
    padding-left: 1em;
}
#gp-main .line-marker {
    background: linear-gradient(to bottom, transparent, transparent 70%, #FFEF5C 71%, #FFEF5C);
}

@container gp-main (max-width: 767px) {
    #gp-main section .heading01 {
        /*font-size: 22px;*/
        font-size: clamp(20px, 5.8vw, 22px);
        padding: 8px 0;
        margin: 0 0 24px 0;
    }
    #gp-main .inner-wrap {
        margin: 0 0 48px;
    }
    #gp-main .heading02 {
        /*font-size: 22px;*/
        font-size: clamp(20px, 5.6vw, 22px);
    }
    #gp-main .heading02 .sub {
        display: block;
        font-size: 16px;
        margin: 0 0 0 0;
    }
    #gp-main .heading03 {
        font-size: 18px;
        margin: 0 0 8px 0;
    }
    #gp-main .heading04 {
        font-size: clamp(20px, 5.6vw, 22px);
    }
}


/* ==============================
チケットの種類
============================== */
#gp-main .ticket-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 0 0 64px 0;
}

#gp-main .ticket-list>li {
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
    justify-items: center;
    border: solid 4px var(--colorMain);
    padding: 8px 14px 16px;
    background: #fff;
}

#gp-main .ticket-list>li .ticket-name {
    position: relative;
    display: grid;
    align-content: start;
    align-items: center;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--colorMain);
    color: var(--colorMain);
    font-weight: 700;
    letter-spacing: normal;
    padding: 0 0 10px 0;
    margin: 0 0 8px 0;
    min-height: 64px;
    container-type: inline-size;
	container-name: ticket-name;
}

#gp-main .ticket-list>li .ticket-name a .area-name {
    font-size: 24px;
}

@container gp-main (min-width: 768px) and (max-width: 989px) {
    #gp-main .ticket-list>li .ticket-name a .area-name {
        font-size: 20px;
    }
}

@container gp-main (min-width: 601px) and (max-width: 767px) {
    #gp-main .ticket-list>li .ticket-name a .area-name {
        font-size: 18px;
    }
}

@container gp-main (max-width: 600px) {
    #gp-main .ticket-list>li .ticket-name a .area-name {
        font-size: min(5vw, 24px);
    }
}

#gp-main .ticket-list>li .ticket-name a {
    text-decoration: none;
}

#gp-main .ticket-list>li .ticket-name:before,
#gp-main .ticket-list>li:nth-child(n+3) .ticket-name a .area-name:before {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 50%;
    margin-left: -11px;
    border: 8px solid transparent;
    border-top: 8px solid #fff;
    z-index: 2;
}

#gp-main .ticket-list>li .ticket-name:after,
#gp-main .ticket-list>li:nth-child(n+3) .ticket-name a .area-name:after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    margin-left: -13px;
    border: 10px solid transparent;
    border-top: 10px solid var(--colorMain);
    z-index: 1;
}

#gp-main .ticket-list>li .ticket-icons {
    display: grid;
    align-items: center;
    width: 100%;
    max-width: 320px;
}

#gp-main .ticket-list>li .ticket-icons .area-icon-wrap .icons-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 2.5%;
}

#gp-main .ticket-list>li .ticket-icons .area-icon-wrap .icons-list li {
    width: 15%;
}

#gp-main .ticket-list>li .ticket-icons .area-icon-wrap .icons-list li.witch img {
    scale: 116%;
    transform-origin: top center;
}

@container gp-main (max-width: 767px) {
    #gp-main .ticket-list>li .ticket-icons .area-icon-wrap .icons-list {
        gap: 8px 2.5%;
    }
    #gp-main .ticket-list>li .ticket-icons .area-icon-wrap .icons-list li {
        width: 16%;
    }
}

#gp-main .ticket-list>li.majo {
    background: url(https://cdn.l-tike.com/bw-ticket/ghibli/ghibli-park/img2024/area-icon04.png) no-repeat,
    url(https://cdn.l-tike.com/bw-ticket/ghibli/ghibli-park/img2024/area-icon05.png) no-repeat;
    background-size: 48px, calc(48px * 1.16);
    background-position: 14px 8px, 10px 68px;
}

#gp-main .ticket-list>li.daisouko {
    background: url(https://cdn.l-tike.com/bw-ticket/ghibli/ghibli-park/img2024/area-icon01.png) no-repeat;
    background-size: 48px;
    background-position: 16px 8px;
}

/* #gp-main .ticket-list>li.seishun {
    background: url(https://cdn.l-tike.com/bw-ticket/ghibli/ghibli-park/img2024/area-icon02.png) no-repeat,
    url(https://cdn.l-tike.com/bw-ticket/ghibli/ghibli-park/img2024/building-icons01.png) no-repeat;
    background-size: 48px, 48px;
    background-position: 16px 8px, 16px 68px;
} */

#gp-main .ticket-list>li.seishun {
    background: url(https://cdn.l-tike.com/bw-ticket/ghibli/ghibli-park/img2024/area-icon02.png) no-repeat;
    background-size: 48px;
    background-position: 16px 8px;
}

/* #gp-main .ticket-list>li.dondoko {
    background: url(https://cdn.l-tike.com/bw-ticket/ghibli/ghibli-park/img2024/area-icon03.png) no-repeat,
    url(https://cdn.l-tike.com/bw-ticket/ghibli/ghibli-park/img2024/building-icons02.png) no-repeat;
    background-size: 48px, 48px;
    background-position: 16px 8px, 16px 68px;
} */

#gp-main .ticket-list>li.dondoko {
    background: url(https://cdn.l-tike.com/bw-ticket/ghibli/ghibli-park/img2024/area-icon03.png) no-repeat;
    background-size: 48px;
    background-position: 16px 8px;
}

@container gp-main (max-width: 768px) {
    #gp-main .ticket-list>li.majo {
        background-size: 48px, calc(48px * 1.16);
        background-position: 16px 12px, 12px 72px;
    }

    #gp-main .ticket-list>li.daisouko {
        background-size: 48px;
        background-position: 16px 12px;
    }

    #gp-main .ticket-list>li.seishun {
        background-size: 48px;
        background-position: 16px 12px, 16px 72px;
    }

    #gp-main .ticket-list>li.seishun.building-none {
        background-size: 48px;
        background-position: 16px 12px;
    }

    #gp-main .ticket-list>li.dondoko {
        background-size: 48px;
        background-position: 16px 12px, 16px 72px;
    }

    #gp-main .ticket-list>li.dondoko.building-none {
        background-size: 48px;
        background-position: 16px 12px;
    }
}

#gp-main .ticket-list>li:nth-child(n+3) {
    grid-row: span 2;
}

#gp-main .ticket-list>li:nth-child(n+3) .ticket-name {
    border-bottom: none;
    padding: 0 0 0 64px;
}

@container gp-main (max-width: 768px) {
    #gp-main .ticket-list>li:nth-child(n+3) .ticket-name {
        padding: 0 0 0 64px;
    }
}

#gp-main .ticket-list>li:nth-child(n+3) .ticket-name:before,
#gp-main .ticket-list>li:nth-child(n+3) .ticket-name:after {
    display: none;
}

#gp-main .ticket-list>li:nth-child(n+3) .ticket-name a .area-name {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    text-align: center;
    align-self: stretch;
    align-items: center;
    border-bottom: 1px solid var(--colorMain);
    padding: 0 0 10px 0;
    min-height: 64px;
    line-height: 1.25;
}

#gp-main .ticket-list>li:nth-child(n+3) .ticket-name a .area-name br.sp-br {
    display: none;
}

@container ticket-name (max-width: 320px) {
	#gp-main .ticket-list>li:nth-child(n+3) .ticket-name a .area-name br.sp-br {
        display: inline;
    }
}

#gp-main .ticket-list>li .btn {
    position: relative;
    width: 100%;
    max-width: 240px;
    padding-bottom: 6px;
}

#gp-main .ticket-list > li:nth-child(n+3) .btn {
    padding: 0 0 0 64px;
    max-width: 320px;
}

@container gp-main (max-width: 768px) {
    #gp-main .ticket-list > li:nth-child(n+3) .btn {
        padding: 0 0 0 64px;
    }
}

#gp-main .ticket-list>li .btn a {
    position: relative;
    top: 0;
    display: block;
    background: #ee6a28;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    height: 48px;
    line-height: 44px;
    text-align: center;
    z-index: 1;
    transition: all 0.2s;
}

@media screen and (max-width: 1024px) {
    #gp-main .ticket-list {
        padding: 0 24px;
    }
}

@container gp-main (min-width: 768px) and (max-width: 989px) {
    #gp-main .ticket-list>li .btn a {
        font-size: 18px;
    }
}

@container gp-main (max-width: 600px) {
    #gp-main .ticket-list {
        grid-template-columns: 1fr;
        width: 100%;
        margin: 0 auto 48px auto;
    }

    #gp-main .ticket-list>li .btn a {
        font-size: 16px;
    }
}


/* ----- Add 2025.06 ----- */
#gp-main .ticket-list>li:nth-child(n).icon-left {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    background: none;
}

#gp-main .ticket-list>li:nth-child(n).icon-left .ticket-name,
#gp-main .ticket-list>li:nth-child(n).icon-left .btn {
    padding: 0;
    grid-column: 2 / 3;
}

#gp-main .ticket-list>li:nth-child(n).icon-left .ticket-icons {
    grid-row: 1 / 3;
    align-items: self-start;
}

#gp-main .ticket-list>li:nth-child(n).icon-left .area-icon-wrap .icons-list {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    flex-direction: column;
    gap: 8px;
}

#gp-main .ticket-list>li:nth-child(n).icon-left .ticket-icons .area-icon-wrap .icons-list li {
    width: 100%;
}

@container gp-main (max-width: 768px) {
    #gp-main .ticket-list>li:nth-child(n).icon-left {
        grid-template-columns: 16% 1fr;
    }
}

@container gp-main (max-width: 600px) {
    #gp-main .ticket-list>li:nth-child(n).icon-left {
        grid-template-columns: min(16%, calc(320px * 0.16)) 1fr;
    }
    #gp-main .ticket-list>li:nth-child(n).icon-left .ticket-icons .area-icon-wrap .icons-list li {
        width: min(100%, calc(320px * 0.16));
    }
}



/* ==============================
チケットの種類と料金
============================== */
#gp-main .ticket-wrap {
    margin: 0 0 64px 0;
}

#gp-main .ticket-wrap table.price-list {
    width: 100%;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    border-collapse: collapse;
}
#gp-main .ticket-wrap table.price-list th,
#gp-main .ticket-wrap table.price-list td {
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 8px 8px;
    text-align: center;
    vertical-align: middle;
}
#gp-main .ticket-wrap table.price-list thead th {
    background-color: #F2F2F2;
}
#gp-main .ticket-wrap table.price-list thead th .sub {
    font-size: 14px;
    margin: 0 0 0 0.5em;
}
#gp-main .ticket-wrap table.price-list tbody th {
    width: 34%;
}
#gp-main .ticket-wrap table.price-list tbody td {
    width: 33%;
}
#gp-main .ticket-wrap .time {
    font-size: 20px;
    font-weight: 500;
}
#gp-main .ticket-wrap .btn-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#gp-main .ticket-wrap .btn-list a {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    padding: 16px 0;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    background-color: #eb8383;
    box-shadow: 0 2px 4px rgb(0 0 0 / 16%);
    max-width: 480px;
}
#gp-main .ticket-wrap .btn-list a:not([href]){
    position: relative;
    background-color: #ccc;
    cursor: default;
    pointer-events: none;
}
#gp-main .ticket-wrap .btn-list a:not([href]) .end-msg {
    position: absolute;
    content: "";
    bottom: -24px;
    color: #000;
    font-size: 14px;
}
#gp-main .ticket-wrap .btn-list a:last-child {
    margin-right: 0;
}

#gp-main .ticket-wrap .area-icon-wrap.add-link .icons-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, 8%);
    gap: calc(20% / 9);
    margin-bottom: 16px;
}

#gp-main .ticket-wrap .area-icon-wrap.add-link .icons-list li.witch img {
    scale: 116%;
    transform-origin: top center;
}

#gp-main .ticket-wrap .ticket-caution {
    display: inline-block;
    line-height: 1.6;
    font-weight: bold;
    font-size: clamp(16px,4.3vw,18px);
    color: #F00;
    text-decoration: solid underline #F00 2px;
    text-underline-offset: 0.25em;
}

@container gp-main (max-width: 767px) {
    #gp-main .ticket-wrap .area-icon-wrap.add-link .icons-list {
        grid-template-columns: repeat(auto-fill, 16%);
        gap: 8px 5%;
    }
}
@container gp-main (max-width: 767px) {
    #gp-main .ticket-wrap {
        margin: 0 0 48px 0;
    }
    #gp-main .ticket-wrap table.price-list th,
    #gp-main .ticket-wrap table.price-list td {
        font-size: 14px;
    }
    #gp-main .ticket-wrap table.price-list thead th .sub {
        display: block;
        font-size: 12px;
        margin: 0 0 0 0;
    }
    #gp-main .ticket-wrap .time {
        font-size: 18px;
    }
    #gp-main .ticket-wrap .btn-list {
        flex-direction: column;
        margin-bottom: 0;
    }
    #gp-main .ticket-wrap .btn-list a {
        width: min(90%, 400px);
        font-size: 18px;
        padding: 10px 0;
        margin: 0 auto 16px auto;
    }
    #gp-main .ticket-wrap .btn-list a:not([href]){
        margin: 0 auto 36px auto;
    }
    #gp-main .ticket-wrap .btn-list a:last-child {
        margin: 0 auto;
    }
    #gp-main .ticket-wrap .area-icon-wrap {
        grid-template-columns: 1fr;
        width: min(400px, 100%);
        margin-bottom: 8px;
    }
    #gp-main .ticket-wrap .area-icon-wrap.add-link {
        grid-template-columns: 1fr;
        width: min(400px, 100%);
    }
}


/* ==============================
LOGO TITLE
============================== */
#gp-main h1 {
    text-align: center;
    margin: 0 0 32px 0;
}
#gp-main h1 img {
    width: 480px;
    margin: 0 0 16px 0;
}
#gp-main h1 .sub-ttl {
    font-size: 20px;
    font-weight: 500;
}

@container gp-main (max-width: 767px) {
    #gp-main h1 {
        margin: 0 0 24px 0;
    }
    #gp-main h1 img {
        max-width: 70%;
    }
    #gp-main h1 .sub-ttl {
        font-size: 16px;
    }
}


/* ==============================
BUTTON
============================== */
#gp-main a.btn-wht {
    position: relative;
    display: block;
    border: solid 2px var(--colorOrg);
    border-radius: 6px;
    color: var(--colorOrg);
    max-width: 560px;
    margin: 0 auto;
    padding: 12px 0;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}
#gp-main a.btn-wht.green {
    border: solid 2px var(--colorLink);
    color: var(--colorLink);
}

#gp-main a.btn-wht::after {
    position: absolute;
    font-family:'Material Icons';
    font-weight: 400;
    font-size: 32px;
    content: "\e5cc";
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    transition: all 0.3s;
}
#gp-main a.btn-wht:hover::after {
    right: 4px;
}

@container gp-main (max-width: 767px) {
    #gp-main a.btn-wht {
        width: min(100%, 400px);
        /*font-size: 18px;*/
        font-size: clamp(16px, 4.8vw, 24px);
    }
    #gp-main a.btn-wht::after {
        right: 4px;
    }
    #gp-main a.btn-wht:hover::after {
        right: 0px;
    }
}


/* ==============================
INTRO
============================== */
#gp-main .intro {
    font-weight: 500;
    font-size: 20px;
}
#gp-main .intro p.lead {
    text-align: center;
}
#gp-main .intro p.catch {
    text-align: center;
}

@container gp-main (max-width: 767px) {
    #gp-main .intro {
        font-size: clamp(16px, 4.2vw, 20px);
    }
    #gp-main .intro p.lead {
        text-align: left;
    }
}

/* ==============================
SNSボタン
============================== */
#gp-main .sns_block {
    margin:0 0 32px 0;
}

@media screen and (max-width: 1024px) {
    #gp-main .sns_block {
        margin:0 24px 32px 0;
    }
}

/* ==============================
営業時間と休園日
============================== */
#gp-main .info h3 {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    padding: 3px 16px;
    border: solid 1px #707070;
    border-radius: 100vw;
    margin: 0 0 8px;
}


/* ==============================
ご注意
============================== */
#gp-main ul.caution-list li {
    text-indent: -1em;
    padding-left: 1em;
    margin: 0 0 8px;
}
#gp-main ul.caution-list.disc li {
    list-style-type: disc;
    text-indent: 0em;
    padding-left: 0em;
    margin-left: 1.5em;
}

/* --------------------
アコーディオン
-------------------- */
#gp-main .acd-check {
    display: none;
}

#gp-main .acd-label {
    position: relative;
    display: block;
    cursor: pointer;
    border: solid 2px #000;
    padding: 10px 48px 10px 16px;
    font-weight: 700;
}

#gp-main .acd-label::after {
    position: absolute;
    content: "\e147";
    font-family: 'Material Icons';
    font-size: 32px;
    font-weight: 400;
    display: block;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    margin: auto;
    transition: all 0.3s;
}

#gp-main .acd-check:checked + .acd-label::after {
    content: "\e15c";
    font-size: 32px;
    font-weight: 400;
    display: block;
    top: 50%;
    right: 8px;
    transform: translateY(-50%) rotateY(360deg);
    margin: auto;
    transition: all 0.3s;
}

#gp-main .acd-content {
    height: 0;
    padding: 16px 0 0 0;
    transition: all 1s;
    overflow: hidden;
    opacity: 0;
}

#gp-main .acd-check:checked + .acd-label + .acd-content {
    height: auto;
    transition: all 1s;
    opacity: 1;
}


/* ==============================
アクセス
============================== */
#gp-main .map iframe {
    border: 0;
    width: 100%;
    aspect-ratio: 3 / 1;
    margin: 0 0 16px 0;
}

@container gp-main (max-width: 480px) {
    #gp-main .map iframe {
        aspect-ratio: 1 / 1;
    }
}

/* ==============================
愛知県観光
============================== */
#gp-main .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%);
    text-decoration: none;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    #gp-main .aichi-wrap .btnArea .btn-ticket-buy {
        /*font-size: 18px;*/
        font-size: clamp(14px, 4.2vw, 20px);
        width: min(90%, 400px);
    }
}

/* --------------------
興行リスト
-------------------- */
#gp-main .aichi-wrap .item-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

#gp-main .aichi-wrap .item-list::after {
    content: "";
    display: block;
    width: calc((100% - 32px) / 3);
}

#gp-main .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;
    text-decoration: none;
}

#gp-main .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;
}

#gp-main .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;
}

#gp-main .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);
}

#gp-main .aichi-wrap .item-list a .img-wrap .slideImg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

#gp-main .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%);
}

#gp-main .aichi-wrap .item-list a .text-wrap {
    padding: 12px 16px 16px 16px;
    color: #000;
    font-size: 14px;
}

#gp-main .aichi-wrap .item-list a .text-wrap h3 {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 16px;
}

#gp-main .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;
}

#gp-main .aichi-wrap .item-list a .text-wrap .tag {
    border: none;
    margin: 0;
    padding: 0;
}

#gp-main .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;
}

#gp-main .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: 767px) {
    #gp-main .aichi-wrap .item-list::after {
        width: calc((100% - 32px) / 3);
    }

    #gp-main .aichi-wrap .item-list a {
        width: calc((100% - 32px) / 3);
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 600px) {
    #gp-main .aichi-wrap .item-list {
        display: block;
    }

    #gp-main .aichi-wrap .item-list a {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 16px auto;
    }

}


/* ==============================
オフィシャルパートナー
============================== */
#gp-main .partners {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 40px;
}

#gp-main .partners li a {
    display: block;
    text-decoration: none;
    color: #000;
    text-align: center;
}

#gp-main .partners .partners-name {
    display: inline-block;
    text-align: left;
}

@container gp-main (max-width: 767px) {
    #gp-main .partners {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 24px;
    }

    #gp-main .partners .partners-name {
        font-size: 14px;
    }
}


/* ==============================
調整
============================== */
#gp-main .mbSS {margin-bottom: 4px;}
#gp-main .mbS {margin-bottom: 8px;}
#gp-main .mbM {margin-bottom: 16px;}
#gp-main .mbL {margin-bottom: 24px;}
#gp-main .mbLL {margin-bottom: 32px;}

#gp-main .fzS {font-size: 0.875em;}
#gp-main .fzL {font-size: 1.25em;}

#gp-main .pc,
#gp-main .sp_none {
    display: inline;
}
#gp-main .sp,
#gp-main .pc-none {
    display: none;
}

#gp-main .pcblock02 {
    display: block !important;
}
#gp-main .pcinline02 {
    display: inline !important;
}

#gp-main .spinline02,
#gp-main .spblock02 {
    display: none !important;
}

#gp-main .underline {
    text-decoration: solid underline var(--colorMain) 2px !important;
    text-underline-offset: 0.25em;
}
#gp-main .colorMain {
    color: var(--colorMain);
}


@container gp-main (max-width: 767px) {
    #gp-main .sp-mbSS {margin-bottom: 4px;}
    #gp-main .sp-mbS {margin-bottom: 8px;}
    #gp-main .sp-mbM {margin-bottom: 16px;}
    #gp-main .sp-mbL {margin-bottom: 24px;}
    #gp-main .sp-mbLL {margin-bottom: 32px;}

    #gp-main .pc,
    #gp-main .sp_none {
        display: none;
    }
    #gp-main .sp,
    #gp-main .pc-none {
        display: inline;
    }
    #gp-main .pcblock02,
    #gp-main .pcinline02 {
        display: none !important;
    }

    #gp-main .spblock02 {
        display: block !important;
    }

    #gp-main .spinline02 {
        display: inline !important;
    }
}
