@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://use.fontawesome.com/releases/v5.15.4/css/all.css");

/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
基本
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/
html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    font-family: "Noto Sans JP", sans-serif;
}

:root {
    --key-color: #1E3C64;
    --sub-color: #CCE3F3;
    --point-color: #64A5D2;
    line-height: 1.7;
}

a {
    color: #0000ff;
    text-decoration: underline;
}

a:hover {
    /* filter: brightness(90%) contrast(120%); */
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* SP、PC表示切り替え */
.sp_on {
    display: block; /* SPのみ表示 */
}
@media (min-width: 768px) {
	.sp_on {
        display: none;
    }
}

.pc_on {
    display: none;
}
@media (min-width: 768px) {
	.pc_on {
        display: block; /* PCのみ表示 */
    }
}

/* ページトップへもどる */
.page_top {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 55px;
    position: fixed;
    border: 1px solid var(--point-color);
    background: var(--point-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
@media (min-width: 768px) {
    .page_top {
        right: 20px;
        bottom: 20px;
    }
}
.page_top::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-top: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    transform: rotate(-45deg);
}

/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
スタイル
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/

/* @group ヘッダーエリア
------------------------------------------------------*/

.header {
    height: 600px;
}
@media (min-width: 768px) {
    .header {
        height: 500px;
    }
}
@media (min-width: 922px) {
    .header {
        height: 550px;
    }
}

.header .slider__wrap > div {
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media (min-width: 768px) {
    .header .slider__wrap > div {
        height: 500px;
    }
}

@media (min-width: 922px) {
    .header .slider__wrap > div {
        height: 550px;
    }
}

.header .slider__wrap > div img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
@media (min-width: 768px) {
    .header .slider__wrap > div img {
        height: 550px;
    }
}

.mv {
    width: 100%;
    position: absolute;
    top: 0;
    height: 600px;
    display: flex;
    flex-direction: column;
    left: 50%;
    transform: translate(-50%, 0);
}
@media (min-width: 768px) {
    .mv {
        height: 500px;
    }
}
@media (min-width: 922px) {
    .mv {
        height: 550px;
    }
}

.mv > * {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

@media screen and (max-width:921px) {
    div.lang_switch__wrap {
        display: none;
    }
}

@media (min-width: 922px) {
    div.lang_switch__wrap {
        display: block;
        position: absolute;
        display: flex;
        justify-content: end;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
    }

    details.lang_switch {
        background-color: var(--sub-color);
    }
    
    details.lang_switch:not([open]) {
        margin-bottom: 7px;
    }
    
    details.lang_switch summary {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        position: relative;
        padding: .5em 1.5em .75em;
        background-color: var(--key-color);
        color: #ffffff;
        cursor: pointer;
    }
    
    details.lang_switch summary::-webkit-details-marker {
        display: none;
    }

    details.lang_switch summary::before {
        content: "\f0ac";
        font-family: "Font Awesome 5 Free";
        margin-right: 0.5em;
        font-size: 1em;
        font-weight: 900;
        color: #fff;
    }
    
    details.lang_switch summary::after {
        transform: translateY(-25%) rotate(45deg);
        width: 10px;
        height: 10px;
        margin-left: 10px;
        border-bottom: 3px solid #FFFFFF;
        border-right: 3px solid #FFFFFF;
        content: '';
        transition: transform .3s;
    }
    
    details.lang_switch[open] summary::after {
        transform: rotate(225deg);
    }
    
    details.lang_switch ul {
        transform: translateY(-10px);
        opacity: 0;
        margin: 0;
        color: #ffffff;
        transition: transform .5s, opacity .5s;
    }
    
    details.lang_switch[open] ul {
        transform: none;
        opacity: 1;
    }

    details.lang_switch ul li a {
        background-color: var(--sub-color);
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        padding: .5em 1.5em .75em;
        color: var(--key-color);
        text-decoration: none;
    }

    details.lang_switch ul li a::after {
        content: "\f0da";
        font-family: "Font Awesome 5 Free";
        margin-right: 0.5em;
        font-size: 1em;
        font-weight: 900;
    }

    details.lang_switch ul li a:hover {
        filter: brightness(90%) contrast(110%);
        transition: all 1s;
        text-decoration: none;
    }
}

.mv__logo {
    height: 400px;
    display:grid;
	place-content:center;
	place-items:center;
}
@media (min-width: 922px) {
    .mv__logo {
        height: 380px;

        &.en {
            height: 450px;
        }
    }
}

.mv__header {
    height: 200px;
    border-image-source: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    border-image-slice: fill 0;
    border-image-outset: 0 100vw 0 100vw;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    column-gap: 20px;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
}
.fas.fa-plus{
	padding-top: 7px;
}
@media (min-width: 768px) {
    .mv__header {
        height: 100px;
        display: flex;
        flex-direction: row;
        align-items: center;
        column-gap: 60px;
        row-gap: 0;
    }
}

.mv__ttl {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .mv__ttl {
        font-size: clamp(1.25rem, 0.361rem + 1.852vi, 1.75rem);;
    }
    .mv__ttl.en {
        font-size: clamp(.9rem, 0.361rem + 1.852vi, 1.4rem);;
    }
}

.mv__ttl span {
    display: block;
    font-size: 0.75em;
    margin-left: 4px;
}

.mv__list {
    font-size: 14px;
    font-weight: 500;
    font-feature-settings: "palt";
}
@media (min-width: 768px) {
    .mv__list {
        font-size: clamp(0.813rem, 0.035rem + 1.62vi, 1.25rem);
        line-height: 2;
    }
}

@media screen and (max-width:767px) {
    .mv__list > * + * {
        margin-top: 10px;
    }
}

.mv__list li {
    position: relative;
    padding-left: 60px;
}
@media (min-width: 768px) {
    .mv__list li {
        padding-left: 0px;
    }
}

.mv__list li::before {
    position: absolute;
    content: "";
    width: 48px;
    height: 48px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0px;
    top: -3px;
}
@media (min-width: 768px) {
    .mv__list li::before {
        width: 28px;
        height: 28px;
        background-size: cover;
        left: -30px;
        top: 50%;
        transform: translate(0, -50%);
    }
}

.mv__list li:first-child::before {
    background-image: url(../images/ico_sakura.svg);
}

.mv__list li:last-child::before {
    background-image: url(../images/ico_momiji.svg);
}

.mv__list li:first-child span {
    color: transparent;
}


/* @group 子ページヘッダーエリア */

.header.child {
    height: 400px;
}
@media (min-width: 768px) {
    .header.child {
        height: 500px;
    }
}
@media (min-width: 922px) {
    .header.child {
        height: 550px;
    }
}

.child_img__inner {
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media (min-width: 768px) {
    .child_img__inner {
        height: 500px;
    }
}
@media (min-width: 922px) {
    .child_img__inner {
        height: 550px;
    }
}

.child_img__inner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: bottom center;
}
@media (min-width: 768px) {
    .child_img__inner img {
        height: 500px;
    }
}
@media (min-width: 922px) {
    .child_img__inner img {
        height: 550px;
    }
}

.child_ttl__wrap {
    height: 200px;
    border-image-source: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    border-image-slice: fill 0;
    border-image-outset: 0 100vw 0 100vw;
    display:grid;
	place-content:center;
	place-items:center;
}
@media (min-width: 768px) {
    .child_ttl__wrap {
        height: 400px;
    }
}

@media (min-width: 922px) {
    .child_ttl__wrap {
        height: 380px;
    }
}

.child_ttl {
    font-size: clamp(1.5rem, 1.33rem + 0.727vi, 1.875rem);
    font-weight: bold;
    line-height: 1.4;
    color: #FFFFFF;
}

/* @group メインエリア
------------------------------------------------------*/

.main {
    background-color: rgba(204, 227, 243, 0.5);
}

.main > * + * {
    margin-top: 60px;
}

.container {
    width: 100%;
	/* max-width: 1240px; */
	max-width: 1040px;
	margin-left: auto;
    margin-right: auto;
	padding: 0 20px;
}

.main > .container:not(:first-child) {
    border-top: 6px dotted var(--key-color);
}

.container.links {
    border-top: 6px dotted var(--key-color);
}


div.access {
    background-color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 60px;
    padding-bottom: 30px;
}
div.links {
    background-color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 60px;
    padding-bottom: 30px;
}

div.bnr {
    background-color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 30px;
    padding-bottom: 60px;
}


.container > * + * {
    margin-top: 20px;
}

/* 見出し */

.heading {
    position: relative;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    color: var(--key-color);
}

.main > .container > .heading {
    margin-top: 50px;
}

.heading::before {
    position: absolute;
    content: "";
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    z-index: 2;
    left: 50%;
    transform: translate(-50%, 0);
}

.container.news {
    padding-top: 32px;
}

.heading.news__ttl::before {
    width: 32px;
    height: 32px;
    top: -38px;
    background-image: url(../images/ico_news__ttl.svg);
}

.container.event {
    padding-top: 32px;
}

.heading.event__ttl::before {
    width: 32px;
    height: 32px;
    top: -38px;
    background-image: url(../images/ico_event__ttl.svg);
}

.container.movie {
    padding-top: 32px;
}

.heading.movie__ttl::before {
    width: 35px;
    height: 32px;
    top: -38px;
    background-image: url(../images/ico_movie__ttl.svg);
}

.container.sns {
    padding-top: 32px;
    padding-bottom: 32px;
}

.heading.sns__ttl::before {
    width: 32px;
    height: 32px;
    top: -38px;
    background-image: url(../images/ico_sns__ttl.svg);
}

.container.sponsors {
    padding-top: 32px;
}

.heading.sponsors__ttl {
    position: relative;
}

.heading.sponsors__ttl::before {
    width: 32px;
    height: 32px;
    top: -38px;
    background-image: url(../images/ico_sponsors__ttl.svg);
}

.heading.sponsors__ttl > span {
    font-size: 0.8em;
}

.heading.sponsors__ttl > span:first-child {
    display: block;
    margin-bottom: 20px;
}

.heading.sponsors__ttl > span:last-child {
    font-weight: normal;
}

@media screen and (max-width:767px) {
    .heading.sponsors__ttl > span:last-child {
        position: relative;
        top: -10px;
    }
}
@media (min-width: 768px) {
    .heading.sponsors__ttl > span:last-child {
        position: absolute;
        bottom: 0;
        right: 10px;
    }
}


.container.access {
    padding-top: 32px;
}

.heading.access__ttl::before {
    width: 40px;
    height: 32px;
    top: -38px;
    background-image: url(../images/ico_access__ttl.svg);
}

.container.links {
    padding-top: 80px;
    padding-bottom: 20px;
}

.heading.links__ttl::before {
    width: 20px;
    height: 32px;
    top: -38px;
    background-image: url(../images/ico_links__ttl.svg);
}

.asterisk {
	display:table;
	width: 100%;
	
	&:before {
		display: table-cell;
		content: "※";
		width: 1em;
	}
}

/* ボタン */

.btn_basic {
    display: flex;
    justify-content: center;
}

.btn_basic li a {
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    padding: 0.7em 2em;
    border: 3px solid var(--key-color);
    border-radius: 2px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    color: var(--key-color);
    text-decoration: none;
    transition: 0.3s ease all;
    z-index: 1;
}

.btn_basic li a:before {
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    background-color: var(--key-color);
    z-index: -1;
}
.btn_basic.between{
	max-width: 600px;
	justify-content: space-between;
	margin: 0 auto;
}
.btn_basic.commercial {
	display: flex;
}
.btn_basic.commercial a {
	width: 200px;
	margin: 0 20px;
}
.t30{
	padding-top: 30px;
}
.t40{
	padding-top: 40px;
}

@media (max-width: 992px) {
	.btn_basic.between{
		max-width: 300px;
		display: block;
	}
	.btn_basic.between a{
		margin: 10px auto;
	}
	.btn_basic.commercial a {
		margin: 0 10px;
	}
}
.btn_basic li a:hover, .btn_basic li a:focus {
    color: white;
}

.btn_basic li a:hover:before, .btn_basic li a:focus:before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
}

.btn_basic li a:active {
    transform: scale(0.9);
}


/*----------------------------------------
	CardList03
----------------------------------------*/
.cardList03 {
	display: grid;
	/*girdレイアウトにする*/
	gap: 10px;
	/* grid-template-columns: repeat(auto-fill, minmax(346px, 1fr)); */
	grid-template-columns: repeat(auto-fill, minmax(326px, 1fr));
	margin-left: auto;
	margin-right: auto;
}

.cardList04 {
	display: grid;
	/*girdレイアウトにする*/
	gap: 10px;
	/* grid-template-columns: repeat(auto-fill, minmax(267px, 1fr)); */
	grid-template-columns: repeat(auto-fill, minmax(237px, 1fr));
	margin-left: auto;
	margin-right: auto;
}

/*----------------------------------------
	Card
----------------------------------------*/
.card {
	grid-row: span 5;
	/*子gridの高さを4グリッド分に設定*/
	grid-template-rows: subgrid;
	/*サブグリッド化*/
	display: grid;
	gap: 15px;
	border: 1px solid #e7e7e7;
	border-radius: 6px;
	color: inherit;
	text-decoration: none;
	transition: color .3s;
}
article.card.shuryo{
	position: relative;
}
article.card.shuryo a {
	pointer-events: none;
}
.card .shuryo_text {
	position: absolute;
	background:rgba(255,255,255,0.8);
	top:30px;
	left: 10px;
	height: 400px;
	line-height: 3;
	display: table;
	padding: 10px;
}
.event_shuryo{
	background:rgba(255,255,255,0.8);
	border: 3px solid #cc0700;
	padding: 10px;
}
.event__card.event_none a{
	pointer-events: none;
}

.card__thumb {
	overflow: hidden;
}

.card__thumb img {
	max-width: none;
	width: 100%;
	border-radius: 6px;
	transition: transform .3s;
}

.card__title {
	margin: 0 20px;
    display: flexbox;
    align-items: baseline;

    & .card__tag {
        display: inline-block;
        position: relative;
        /* top: -3px; */
        margin-left: 10px;
        margin-right: auto;
        padding: 3px 5px;
        background-color: orange;
        color: #FFFFFF;
        font-size: 11px;
        text-align: center;

        &.nature {
            background-color: var(--point-color);
        }
    
        &.museum {
            background-color: orange;
        }
    
        &.ead {
            background-color: var(--key-color);
        }
    
        &.tour {
            background-color: green;
        }
    
        &.officebuil {
            background-color: blue;
        }
    }

}

.brochures .pnf1{
	margin-right: 30px;
}
.brochures img:hover{
	filter:alpha(opacity=85);
	-moz-opacity:0.85;
	-khtml-opacity: 0.85;
	opacity:0.85;
	cursor:pointer;
}
@media (max-width: 768px) {
	.flex.brochures{
		display: block;
	}
	.brochures img{
		margin: 10px auto;
	}
}
.card__txt {
	margin: 0 20px;
	font-size: 14px;
}

.card__link {
	display: flex;
	justify-content: flex-end;
	padding: 10px 0;
	margin: 0 20px;
	border-top: 1px solid #e7e7e7;
	font-size: 12px;
}

/*----------------------------------------
	card一覧レイアウト
----------------------------------------*/
.cardList__item {
	margin-top: 30px;
}

.card {
	min-height: 150px;
	position: relative;
}

/*for Tab*/
@media (min-width: 768px) {
	.cardList {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-top: -30px;
	}

	.cardList__item {
		width: calc((100% - 30px) / 2);
	}

	.card {
		min-height: 200px;
		position: relative;
	}
}

/*for PC*/
@media (min-width: 992px) {
	.cardList__item {
		width: calc((100% - 60px) / 4);
	}

	.card {
		min-height: 280px;
		position: relative;
	}
}

/* NEWS TOPICS */

.news__card .card {
    background-color: #FFFFFF;
    border: 10px solid #FFFFFF;
}

.news__card .card__thumb img {
    width: 100%;
    aspect-ratio: 1.43 / 1;
    object-fit: cover;
    object-position: center top;
}   

.news__card .card__title {
    font-size: 14px;
    font-weight: bold;
    color: var(--key-color);
}

.news__card .card__txt .date {
    display: flex;
    justify-content:center;
    width: 110px;
    background-color: var(--sub-color);
    border-radius: 3px;
    padding: 0px 10px;
    margin-bottom: 5px;
    font-size: 11px;
    font-weight: bold;
    color: var(--key-color);
}

.news__card .card__link a {
    font-size: 12px;
    background-color: var(--key-color);
    padding: 5px 15px 5px 15px;
    border-radius: 16px;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.news__card .card__link a:hover {
    filter: brightness(90%) contrast(120%);
    padding: 5px 25px 5px 25px;
}

.news-detail_title {
    height: 100px;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--key-color);
}

.news-detail_mv {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}


@media screen and (max-width:767px) {
    .news-detail_title {
        margin-top: 10px;
        margin-bottom: 10px;
        line-height: 1.4;
    }
}

.news-detail_text .date {
    display: flex;
    justify-content:center;
    width: 140px;
    background-color: var(--sub-color);
    border-radius: 3px;
    padding: 0px 10px;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: bold;
    color: var(--key-color);
}

/* NEWS TOPICS　終わり */

/*　フェスティバルについて */

.intro {
    padding-top: 32px;
}

.heading.intro__ttl::before {
    width: 32px;
    height: 32px;
    top: -38px;
    background-image: url(../images/ico_intro__ttl.svg);
}

.intro__wrap {
    margin-top: 60px;
	background: #FFFFFF;
	width: 100%;
	max-width: 1240px;
	margin-left: auto;
    margin-right: auto;
	padding: 20px 20px 40px 20px;
    border-radius: 6px;
}

.intro__inner {
    width: 100%;
    padding: 10px 5px;
}
@media (min-width: 768px) {
    .intro__inner {
        padding: 10px 25px;
    }
}

.intro__heading {
    margin-top: -60px;
    margin-bottom: 0px;
    font-size: clamp(1.25rem, 1.08rem + 0.727vi, 1.625rem);
    font-weight: bold;
    color: var(--key-color);
    line-height: 1.4;
}

.intro__heading.whats_nakanoshima {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
@media (min-width: 768px) {
    .intro__heading.whats_nakanoshima {
        align-items: end;
    }
}

.intro__heading > span {
    display: inline-block;
    background-color: #FFFFFF;
    color: var(--key-color);
    text-shadow: 2px 4px 0 rgba(143, 237, 143, 0.609);
    font-feature-settings: "palt";
    min-height: 80px;
    padding: 10px 30px 30px 30px;
}
@media (min-width: 768px) {
    .intro__heading > span {
        padding: 10px 40px 0px 40px;
    }
}

.whats_nakanoshima_pf {
    filter: drop-shadow(7px 7px 0px var(--point-color));
}

.whats_nakanoshima_pf span {
    padding: 10px 20px 30px 20px;
    clip-path: polygon(0 0, 100% 0%, 100% 75%, 18% 75%, 20% 100%, 10% 75%, 0 75%);
    box-shadow: inset 3px 3px 0px var(--key-color);
}
@media (min-width: 768px) {
    .whats_nakanoshima_pf span {
        padding: 10px 40px 0px 40px;
    }
}

.whats_nakanoshima {
    filter: drop-shadow(-7px 7px 0px var(--point-color));
}

.whats_nakanoshima span {
    padding: 15px 20px 0px 20px;
    clip-path: polygon(0 0, 100% 0%, 100% 75%, 80% 75%, 67% 100%, 70% 75%, 0 75%);;
    box-shadow: inset -3px 3px 0px var(--key-color);
}
@media (min-width: 768px) {
    .whats_nakanoshima span {
        padding: 10px 40px 0px 40px;
    }
}

.intro__subtitl {
    font-size: clamp(0.875rem, 0.65rem + 0.96vi, 1.25rem);
    font-weight: bold;
    color: #333333;
    line-height: 1.4;
}

.intro__subtitl.intro01 {
    margin-top: 20px;
    margin-bottom: 4dvb;
}

.intro__subtitl.intro01 span {
    background: linear-gradient(transparent 60%, #DDDDDD 60%);
}

.intro__subtitl.intro02 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: clamp(1.5rem, 1.275rem + 0.96vi, 1.875rem);
    font-weight: 900;
}
@media (min-width: 768px) {
    .intro__subtitl.intro02 {
        margin-top: 0;
        margin-bottom: 20px;
        font-size: clamp(1.5rem, 1.275rem + 0.96vi, 1.875rem);
        font-weight: 900;
        transform: rotate(-0.02turn);;
    }
}

.intro__subtitl.intro02 span {
    color: green;
}

.text-highlight {
    background: linear-gradient(transparent 60%, rgba(143, 237, 143, 0.7) 60%);
}

.intro__text {
    display: grid;
    font-size: clamp(0.813rem, 0.7rem + 0.48vi, 1rem);
    line-height: 2;
}
@media (min-width: 768px) {
    .intro__text {
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(1, 1fr);
        gap: 20px;
    }

    .intro__text > div {
        grid-column: span 3 / span 3;
    }

    .intro__text.invert > div {
        grid-column: span 3 / span 3;
        grid-column-start: 3;
        grid-row-start: 1;
    }
    
    .intro__text > figure {
        grid-column: span 2 / span 2;
        grid-column-start: 4;
    }

    .intro__text.invert > figure {
        grid-column: span 2 / span 2;
        grid-column-start: 1;
        grid-row-start: 1;
    }
}

@media (min-width: 768px) {
    .intro__text > figure img {
        height: 150px;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }
}

@media (min-width: 922px) {
    .intro__text > figure img {
        height: 200px;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }
}

.intro__img {
    width: 100%;
    display: grid;
    margin-top: 30px;
    gap: 15px;
}
@media (min-width: 768px) {
    .intro__img {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(1, 1fr);
    }
}

.intro__img img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 6px;
}

/*　フェスティバルについて　終わり */

/* 注目イベント紹介 */

.event__card .card {
    position: relative;
    background-color: #FFFFFF;
    color: var(--key-color);

    &::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 135px;
        background-image: linear-gradient(#FFFFFF, #FFFFFF);
        background-position: top center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 10px 10px 0px 0px;
    }
}


.event__card .card__thumb {
    position: relative;
    border-top: 10px solid #FFFFFF;
    border-right: 10px solid #FFFFFF;
    border-left: 10px solid #FFFFFF;
    border-radius: 6px 6px 0px 0px;
}

.event__card .card__thumb img {
    width: 100%;
    aspect-ratio: 1.63 / 1;
    border-radius: 0px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #DDDDDD;
}

.event__card .card__title {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
   
}

.event__card .card__txt {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 12px;

    & .date, & .place {
        text-align: center;
    }

    & span > span {
        display: block;
        position: relative;
        margin-bottom: 5px;
        font-weight: bold;
    }

    & span > span::after {
        content:'';
        position:absolute;
        left:50%;
        bottom: -1px;
        transform:translateX(-50%);
        width:30px;
        height:1px;
        background-color:var(--point-color);
    }
}

.event__card .card__link a {
    font-size: 12px;
    background-color: var(--key-color);
    padding: 5px 15px 5px 15px;
    border-radius: 16px;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.event__card .card__link a:hover {
    filter: brightness(90%) contrast(120%);
    padding: 5px 25px 5px 25px;
}

/* 注目イベント紹介　終わり */

/* 中之島街歩きマップ */

.map {
    padding-top: 32px;
}

.map > * + * {
    margin-top: 20px;
}

.heading.map__ttl::before {
    width: 32px;
    height: 32px;
    top: -38px;
    background-image: url(../images/ico_map__ttl.svg);
}

.map__wrap {
	background: #FFFFFF;
	width: 100%;
	max-width: 1240px;
	margin-left: auto;
    margin-right: auto;
	padding: 40px 20px;
    border-radius: 6px;
}

.map__text {
    padding: 20px 0;
    font-size: clamp(0.875rem, 0.818rem + 0.242vi, 1rem);
    font-weight: bold;
    color: var(--point-color);
    text-align: center;
}
@media (min-width: 768px) {
    .map__text {
        width: 100%;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 922px) {
    .map__text {
        max-width: 800px;
    }
}

.map__body iframe {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}
@media (min-width: 768px) {
	.map__body iframe {
        aspect-ratio: 3 / 2;
	}
}

/* .map__img img {
  filter: blur(5px);
} */

/* .map__img figcaption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #FFFFFF;
} */

/* 中之島街歩きマップ　終わり */

/* 中之島関連MOVIE */

.movie__card {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.movie__card .card {
    background-color: none;
    border: none;
    color: var(--key-color);
}

.movie__card .card__thumb iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 0px;
    border: 1px solid #FFFFFF;
}

.movie__card .card__thumb img {
    height: 158px;
    object-fit: cover;
    border-radius: 0px;
    border: 1px solid #FFFFFF;
}

.movie__card .card__title {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.movie__card .card__link {
	border-top: 1px solid var(--sub-color);
}

.movie__card .card__link a {
    font-size: 12px;
    background-color: var(--key-color);
    padding: 5px 15px 5px 15px;
    border-radius: 16px;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.movie__card .card__link a:hover {
    filter: brightness(90%) contrast(120%);
    padding: 5px 20px 5px 25px;
    background-color: var(--key-color);
    color: #FFFFFF;
}

/* 中之島関連MOVIE　終わり */

/* 公式SNS インスタグラム */

.sns__img {
	display: flex;
	justify-content: center;
	gap: 20px;
}

@media (min-width: 768px) {
    .sns__img {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

.sns__img li {
	width: 100%;
	max-width: 220px;
	height: 220px;
	position: relative;
}
.sns__img li iframe {
	max-width: 220px;
	max-height: 250px;
	min-width: 220px!important;
}
.sns__img li a img {
    border-radius: 20px;
}
.sns__img li ._aa4c .Header{
	display: none!important;
}
.sns__ico {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 80px;
}

@media (max-width: 768px) {
	.sns__img {
    display: block;
	}
	.sns__img li {
		min-width: 220px;
		max-width: 220px;
		height: auto;
		margin: 20px auto;
	}
	.sns__ico {
    padding-top: 80px;
	}
}
@media (min-width: 768px) {
    .sns__ico {
        
    }
}

.sns__ico li {
    position: relative;
  }
  
  .sns__ico li::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    box-shadow: 0 40px 15px rgba(0, 0, 0, .3);
    background-color: transparent;
    border-radius: 80px / 4px;
    left: 30px;
    top: -15px;
  }

/* 公式SNS　終わり */

/* 共通もっと見る */

.more {
    display: flex;
    justify-content: flex-end;
    padding: 20px 0;
}

.more a {
    position: relative;
    font-size: 14px;
    background-color: var(--key-color);
    padding: 5px 35px 5px 20px;
    border-radius: 20px;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.more a::after {
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../images/ico_arrow__right.svg);
    background-position: :right center;
    background-repeat: no-repeat;
    background-size: cover;
    right: 5px;
    transition: all 0.3s;
}

.more a:hover {
    filter: brightness(90%) contrast(120%);
    padding: 5px 45px 5px 20px;

    &::after {
        right: 10px;
    }
}

/* 共通もっと見る　おわり */


/* 交通アクセス */

.access__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
}
@media (min-width: 768px) {
    .access__list {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
    }
}


.access__list > dt {
    position: relative;
    width: 100%;
    padding-left: 200px;
    padding-left: 100px;
    display: flex;
    align-items: center;
}
@media (min-width: 768px) {
    .access__list:not(:last-child) > dt {
        border-bottom: 1px solid var(--key-color);
    }
    .access__list > dt {
        width: 250px;
        padding: 0px 20px;
        padding-left: 100px;
    }
}

.access__list > dt::before {
    position: absolute;
    content: "";
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
}

.access__list > dt.train::before {
    width: 88px;
    height: 33px;
    background-image: url(../images/ico_train.svg);
}

.access__list > dt.bus::before {
    width: 70px;
    height: 32px;
    background-image: url(../images/ico_bus.svg);
}

.access__list > dt.car::before {
    width: 62px;
    height: 27px;
    background-image: url(../images/ico_car.svg);
}

.access__list:not(:last-child) > dd {
    border-bottom: 1px solid var(--key-color);
}

.access__list > dd {
    width: 100%;
    padding-bottom: 15px;
    margin-bottom: 10px;
    margin-top: 20px;
    display: flex;
    align-items: center;
}
@media (min-width: 768px) {
    .access__list > dd {
        width: calc(100% - 250px);
        margin-bottom: 0;
        margin-top: 0;
        display: flex;
        align-items: center;
    }
}

.access_train {
    width: 100%;
    padding-bottom: 10px;
}

@media (max-width: 768px) {
	.access_train {
    overflow: auto;
	}
}

.access_train img {
    width: 950px;
    min-width: 771px;
    height: auto;
    border-left: 1px solid var(--sub-color);
    padding: 20px;
}

.access_bus dl > * + * {
    margin-top: 5px;
}

.access_bus dl {
    border-left: 1px solid var(--sub-color);
    padding: 20px !important;
}

.access_bus dt {
    color: var(--key-color);
    font-weight: 500;
}

.access_bus dd {
    margin-left: 1.2em;
}

.access_car dl > * + * {
    margin-top: 5px;
}

.access_car > dl {
    border-left: 1px solid var(--sub-color);
    padding: 20px !important;
}

.access_bus > dl {
    border-left: 1px solid var(--sub-color);
    padding: 20px !important;
}

.access_bus > dl > dt {
    font-size: 17px;
    font-weight: 700;
    color: var(--key-color);
}

.access_car > dl > dt {
    font-size: 17px;
    font-weight: 700;
    color: var(--key-color);
}

.access_car dd {
    margin-left: 1.2em;
}

.access_train_en dl > * + * {
    margin-top: 5px;
}

.access_train_en dl {
    border-left: 1px solid var(--sub-color);
    padding: 20px !important;
}

.access_train_en dt {
    color: var(--key-color);
    font-weight: 500;
}

.access_train_en dd {
    margin-left: 1.2em;
}
.access_train_en > dl {
    border-left: 1px solid var(--sub-color);
    padding: 20px !important;
}
.access_train_en dl.b_none{
	border-left: none;
}
.access_train_en > dl > dt {
    font-size: 17px;
    font-weight: 700;
    color: var(--key-color);
}


/* 交通アクセス 終わり */


/* Links */

ul.link_box {
    display: grid;
    gap: 10px;
}
@media (min-width: 768px) {
    ul.link_box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(1, 1fr);
    }
}

ul.link_box li a {
	display: block;
}

ul.link_box li a img:hover{
	filter:alpha(opacity=85);
	-moz-opacity:0.85;
	-khtml-opacity: 0.85;
	opacity:0.85;
	cursor:pointer;
}

/* Links 終わり */

.bnr__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: calc(100% - 80px) / 4;
    gap: 20px;
}

@media screen and (max-width:767px) {
    .bnr__list li {
        margin-left: auto;
        margin-right: auto;
    }
}

/* @group フッターエリア
------------------------------------------------------*/

.footer {
    z-index: 1;
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    &::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 400px;
        background-image: url(../images/img_footer.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: -1;
    }
}

.footer > * {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    text-align: center;
}

.executive-committee {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--key-color);
}
.footer .koen span{
	color: var(--key-color);
	font-size: 17px;
	padding-left: 20px;
	padding-right: 20px;
}

@media (min-width: 768px) {
    .executive-committee {
        /* height: 400px; */
    }
}

.executive-committee dt {
    /* margin-top: 20px; */
    margin-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 20px;
    font-weight: bold;
}

.executive-committee dd {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 12px;
    font-weight: bold;
    line-height: 2;
}

.copyright {
    background-color: var(--key-color);
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright small {
    font-size: 12px;
    line-height: 1.4;
    color: #E2E2E2;
}

/* 子ページ */

.child__contents {
    min-height: 100vh;
    /* background-color: #FFFFFF; */
    width: 100%;
	/* max-width: 1240px; */
    max-width: 1040px;
	margin-left: auto;
    margin-right: auto;
	padding: 44px 20px;
}
@media (min-width: 768px) {
    .child__contents {
        min-height: 1000px;
    }
}

.child__contents .heading {
    margin-top: 38px;
}

.under_construction {
    text-align: center;
    font-size: 1.1em;
    padding-top: 50px;
}

/* トピックス一覧 */

.child__contents .news > * + * {
    margin-top: 20px;
}

/* プログラム */

.child__contents .program > * + * {
    margin-top: 20px;
}

.heading.program__ttl::before {
    width: 32px;
    height: 32px;
    top: -38px;
    background-image: url(../images/ico_program__active.svg);
}

.tab-wrap {
	background: #FFFFFF;
	box-shadow: 0 0 5px rgba(0,0,0,.1);
	display: flex;
    column-gap: 10px;
	flex-wrap: wrap;
	overflow: hidden;
	padding: 10px;
    border-radius: 6px;
}
@media (min-width: 768px) {
    .tab-wrap {
        padding: 20px;
    }
}

.tab-label {
    border-top: 3px solid var(--key-color);
    border-left: 3px solid var(--key-color);
    border-right: 3px solid var(--key-color);
    border-radius: 6px 6px 0px 0px;
	color: var(--key-color);
	cursor: pointer;
	flex: 1;
    font-size: clamp(1rem, 0.886rem + 0.485vi, 1.25rem);
	font-weight: bold;
	order: -1;
	padding: 18px 24px;
	position: relative;
	text-align: center;
	transition: cubic-bezier(0.4, 0, 0.2, 1) .2s;
	user-select: none;
	white-space: nowrap;
	-webkit-tap-highlight-color: transparent;
    box-shadow: inset 15px -10px 15px rgba(0,0,0,.2);
}

.tab-label.pavilion {
   /* color: #64A5D2; */
   background-color: #C8E9F2;
}

.tab-label.spring {
    /* color: #b2c187; */
    background-color: #F9F1A3;
}

.tab-label.autumn {
    /* color: #cf633d; */
    background-color: #B2D7BE;
}

.tab-label:hover {
	background: var(--key-color);
    color: #FFFFFF;
}

.tab-switch:checked + .tab-label {
    background-color: #FFFFFF;
    border-top: 3px solid var(--key-color);
    border-left: 3px solid var(--key-color);
    border-right: 3px solid var(--key-color);
    border-radius: 6px 6px 0px 0px;
	color: var(--key-color);
    box-shadow: none;
}
/* .tab-switch:checked + .tab-label.pavilion {
    background-color: rgba(100, 164, 210, 0.7);
}
.tab-switch:checked + .tab-label.spring {
    background-color: rgba(178, 193, 135, 0.7);
}
.tab-switch:checked + .tab-label.autumn {
    background-color: rgba(207, 100, 61, 0.7);
} */

@media (min-width: 768px) {
    .tab-label::after {
        background: var(--key-color);
        bottom: 0;
        content: '';
        display: block;
        height: 10px;
        left: 0;
        opacity: 0;
        pointer-events: none;
        position: absolute;
        transform: translateX(100%);
        transition: cubic-bezier(0.4, 0, 0.2, 1) .2s 80ms;
        width: 30px;
        z-index: 1;
        clip-path: polygon(0 0, 100% 0, 50% 100%);
    }
    
    .tab-switch:checked ~ .tab-label::after {
        transform: translateX(-100%);
    }
    
    .tab-switch:checked + .tab-label::after {
        opacity: 1;
        bottom: -10%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}


.tab-content {
	height:0;
	opacity:0;
	/* padding: 0 20px; */
	pointer-events:none;
	transform: translateX(-30%);
	transition: transform .3s 80ms, opacity .3s 80ms;
	width: 100%;
}

.tab-switch:checked ~ .tab-content {
	transform: translateX(30%);
}

.tab-switch:checked + .tab-label + .tab-content {
	height: auto;
	opacity: 1;
	order: 1;
	pointer-events:auto;
	transform: translateX(0);
}

.tab-wrap::after {
	content: '';
	height: 20px;
	order: -1;
	width: 100%;
}

.tab-switch {
	display: none;
}


/* 周遊チケット情報 */

.ticket__wrap {
	background: #FFFFFF;
	width: 100%;
	max-width: 1240px;
	margin-left: auto;
    margin-right: auto;
	padding: 40px 20px 20px;
    border-radius: 10px;
}
@media (min-width: 768px) {
    .ticket__wrap {
        padding: 40px 60px 40px;
    }
}

.ticket__wrap > * + * {
    margin-top: 40px;
}

.collaborative__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
@media (min-width: 768px) {
    .collaborative__head {
        flex-direction: column-reverse;
    }
}

.collaborative__ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(1.375rem, 1.15rem + 0.96vi, 1.75rem);
    font-weight: 700;
    color: var(--key-color);
    text-shadow: 2px 4px 0 rgba(143, 237, 143, 0.609);
    text-align: center;
    line-height: 1.4;
}

.collaborative__ttl::before,
.collaborative__ttl::after {
    width: 3px;
    height: 40px;
    background-color: var(--point-color);
    content: '';
}

.collaborative__ttl::before {
    transform: rotate(-35deg);
    margin-right: 30px;
}

.collaborative__ttl::after {
    transform: rotate(35deg);
    margin-left: 30px;
}

.collaborative__list {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
	margin-left: auto;
	margin-right: auto;
}

.collaborative__list figure {
    display: flex;
    flex-direction: column-reverse;
    gap: 5px;
    align-items: center;
}

.collaborative__list img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
    border-radius: 3px;
}

.collaborative__list figcaption {
    font-size: 14px;
    font-weight: 700;
}

.pavilion_pass > * + * {
    margin-top: 30px;
}

.pavilion_pass .pavilion_pass__list {
    background-color: rgba(238, 238, 238, 0.4);
    padding: 1em;
    border-radius: 6px;
    font-weight: 700;
}

.pavilion_pass .pavilion_pass__list > li {
    display: table;
	width: 100%;

    &:before {
		display: table-cell;
		font-family: "Font Awesome 5 Free";
        content: "\f14a";
        font-weight: 900;
		width: 1.1em;
        color: var(--point-color);
	}
}

.pavilion_pass__titl {
    padding: .5em .7em;
    border-left: 5px solid var(--point-color);
    font-size: clamp(1.25rem, 1.1rem + 0.64vi, 1.5rem);
    font-weight: 700;
    color: #333333;
    line-height: 1.4;
    font-feature-settings: "palt";
}
h3.h3_title {
	padding: .3em;
	border-left: 5px solid var(--point-color);
	line-height: 1.1;
}
h3.h3_title span {
	font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
	font-weight: 700;
	color: #333333;
	font-feature-settings: "palt";
}

.pavilion_pass__step {
    display: grid;
    gap: 8px;
}
@media (min-width: 768px) {
    .pavilion_pass__step {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(1, 1fr);
        gap: 20px;
        align-items: center;
    }
}

.pavilion_pass__step1 {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 768px) {
    .pavilion_pass__step1 {
        grid-column: span 3 / span 3;
    }
}

.pavilion_pass__step1 img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 10 / 9;
    border-radius: 3px;
}

.pavilion_pass__step2 {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--sub-color);
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
    aspect-ratio: 2 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
    rotate: 90deg;

    & p {
        font-size: 17px;
        font-weight: 700;
        padding: 30px 0px 20px 0px;
        rotate: -90deg;
        line-height: 1.4;

        & span {
            font-size: 1.2em;
            color: #d35841;
        }
    }
}

@media (min-width: 768px) {
    .pavilion_pass__step2 {
        grid-column-start: 4;
        width: 100%;
        clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
        aspect-ratio: 1 / 1;
        display: flex;
        justify-content: center;
        align-items: center;
        rotate: 360deg;

        & p {
            font-size: 13px;
            font-weight: 700;
            padding: 30px 20px 20px 40px;
            rotate: 360deg;
            line-height: 1.4;

            & span {
                font-size: 1.5em;
                color: #d35841;
            }
        }
    }
}

@media (min-width: 768px) {
    .pavilion_pass__step3 {
        grid-column: span 2 / span 2;
        grid-column-start: 5;
    }
}

.value > * + * {
    margin-top: 20px;
}

.value__titl {
    font-size: clamp(1.125rem, 0.975rem + 0.64vi, 1.375rem);
    font-weight: bold;
    color: #333333;
    line-height: 1.4;
    text-align: center;
    font-feature-settings: "palt";

    & span {
        background: linear-gradient(transparent 60%, rgba(143, 237, 143, 0.6) 60%);
    }
}
.pavilion_pass .mark{
	background: linear-gradient(transparent 60%, rgba(143, 237, 143, 0.6) 60%);
}
.value > p {
    font-weight: 700;
    text-align: center;
    font-feature-settings: "palt";
}

.value > p span {
    display: block;
    font-weight: normal;
}


.value__inner {
    border: 3px solid rgba(143, 237, 143, 0.6);
    border-radius: 6px;
    padding: 20px;
}

.value__inner > * + * {
    margin-top: 20px;
}

.value__inner > p {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: var(--key-color);
}

.value__inner > div {
    display: grid;
    gap: 30px;

    & .value__thum {
        display: grid;
        gap: 5px;
        min-width: 200px;

        & img {
            width: 100%;
            border-radius: 3px;
            object-fit: cover;
            aspect-ratio: 16 / 9;
        }
    }

    & ul {

        & li {
            display: flex;
            justify-content: space-between;
        }

        & li:nth-child(2) {
            display: flex;
            justify-content: center;
        }

        & li:last-child span {
            font-weight: 700;
            color: red;
        }

    }

    & li {
        display: flex;
        justify-content: space-between;
    }

    & li:nth-child(2) {
        display: flex;
        justify-content: center;
    }

    & li:last-child span {
        font-weight: 700;
        color: red;
    }

    & .plus {
        display: flex;
        justify-content: center;

        & i {
            font-size: 30px;
        }
    }

    & > figure {
        display: flex;
        justify-self: center;

        & img {
            width: 100%;
            height: auto;
            margin-left: auto;
            margin-right: auto;
        }
    }

    & p:last-child {
        background-color: yellow;
        text-align: center;
        padding: 10px 0;
        font-weight: 700;
    }
}
@media (max-width: 768px) {
	.leaflet{
		width: 90px;
		height: 180px;
	}
}
@media (min-width: 768px) {
    .value__inner > div {
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(3, 1fr);
        align-items: center;
        font-size: 20px;
        font-weight: 700;

        & .value__thum {
            grid-row: span 3 / span 3;
            display: grid;
            gap: 5px;
            min-width: 200px;

            & img {
                width: 100%;
                border-radius: 3px;
                object-fit: cover;
                aspect-ratio: 16 / 9;
            }
        }

        & ul {
            grid-column: span 3 / span 3;
            grid-row: span 2 / span 2;

            & li {
                display: flex;
                justify-content: space-evenly;
            }

            & li:nth-child(2) {
                display: flex;
                justify-content: space-evenly;
            }

            & li:last-child span {
                font-weight: 700;
                color: red;
            }
        }
        & .plus {
            grid-row: span 2 / span 2;
            grid-column-start: 4;
            display: flex;
            justify-content: center;

            & i {
                font-size: 30px;
            }
        }

        & > figure {
            grid-row: span 2 / span 2;
            grid-column-start: 5;
        }

        & p:last-child {
            grid-column: span 4 / span 4;
            grid-column-start: 2;
            grid-row-start: 3;
            background-color: yellow;
            text-align: center;
            padding: 10px 0;
        }
    }
			.value__inner div i{
				padding-top: 7px;
			}
}


/* 協賛・お問合せ */

/* 協賛企業 */

.sponsors_list__wrap {
	background: #FFFFFF;
	width: 100%;
	max-width: 1240px;
	margin-left: auto;
    margin-right: auto;
	padding: 40px 20px 20px;
    border-radius: 10px;
}
@media (min-width: 768px) {
    .sponsors_list__wrap {
        padding: 40px 60px 40px;
    }
}

.sponsors_list__inner > * + * {
    margin-top: 40px;
}

.sponsors__list {
    display: grid;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sponsors__list li {
    position: relative;
}

.sponsors__list.first {
    gap: 50px;
    font-size: 1.2em;
}

.sponsors__list.second {
    gap: 60px;
    font-size: 1.1em;
}
@media (min-width: 768px) {
    .sponsors__list.second {
        width: 100%;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(9, 1fr);
        justify-items: center;
    }
}

.sponsors__list.third {
    gap: 30px 10px;
    font-size: 0.9em;
}
@media (min-width: 768px) {
    .sponsors__list.third {
        width: 100%;
        /*max-width: 600px;*/
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(5, 1fr);
        justify-items: center;
    }
}

/* ランク */
p.lank{
	width:100%;
	line-height:20px;
	font-size:25px;
	font-weight:bold;
	text-align:center;
	padding: 5px;
	margin:10px auto;
}
.lank.gold{
	background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
	color:#333;
}
.lank.silver{
	background: linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #E8E8E8 70%, #9E9E9E 85%, #757575 90% 100%);
	color:#333;
	margin-top: 60px;
}
.lank.bronze{
	background: linear-gradient(45deg, #642928 0%, #A86C61 45%, #F9E1E2 70%, #7B4139 85%, #642928 90% 100%);
	color:#333;
	margin-top: 60px;
}
.lank.iron{
	background:#244440;
	color:#fff;
}

/* ランク終わり */

/* spanを付与して協賛ロゴのテキストを非表示 */
.sponsors__list li span {
    position: absolute;
    left: -9999em;
    height: 0;
    overflow: hidden;
}

/* 
__協賛ロゴの画像基本設定__ */

/* first */
.sponsors__list.first li {
    min-height: 60px;
    display:grid;
    place-content:center;
    place-items:center;
    text-align:center;
}
@media (min-width: 768px) {
    .sponsors__list.first li {
        min-height: 90px;
    }
}

.sponsors__list.first li::before {
    position: absolute;
    content: "";
    width: 300px;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    object-fit: cover;
    left: 50%;
    transform: translate(-50%, 0%);
}
@media (min-width: 768px) {
    .sponsors__list.first li::before {
        width: 400px;
    }
}

/* Gold Partner ここから */

/* 関電不動産開発株式会社 */
.sponsors__list.first li.kanden-rd::before {
    background-image: url(../images/sponsor_logo/kanden-rd.png);
}

/* サントリーホールディングス株式会社 */
.sponsors__list.first li.suntory::before {
    background-image: url(../images/sponsor_logo/suntory.png);
}

/* 株式会社商船三井 */
.sponsors__list.first li.mol::before {
    background-image: url(../images/sponsor_logo/mol.png);
	height: 110px;
}

/* 住友電気工業株式会社 */
.sponsors__list.first li.sumitomoelectric::before {
    background-image: url(../images/sponsor_logo/sumitomoelectric.png);
}

/* ダイキン工業株式会社 */
.sponsors__list.first li.daikin::before {
    background-image: url(../images/sponsor_logo/daikin.png);
}

/* 中之島高速鉄道株式会社 */
.sponsors__list.first li.nrr::before {
    background-image: url(../images/sponsor_logo/nrr.png);
}

/* 合同会社 日本ＭＧＭリゾーツ */
.sponsors__list.first li.mgm::before {
    background-image: url(../images/sponsor_logo/mgm.jpg);
}

/* ベントール・グリーン・オーク株式会社 */
.sponsors__list.first li.bgo::before {
    background-image: url(../images/sponsor_logo/bgo.jpg);
}

/* 株式会社乃村工藝社 */
.sponsors__list.first li.nomura::before {
    background-image: url(../images/sponsor_logo/nomura.jpg);
}
/* Gold Partner ここまで */

/* first　おわり */

/* second */

.sponsors__list.second li {
    min-height: 30px;
    display:grid;
    place-content:center;
    place-items:center;
    text-align:center;
}
@media (min-width: 768px) {
    .sponsors__list.second li {
        min-height: 45px;
    }
}

.sponsors__list.second li::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    object-fit: cover;
    left: 50%;
    transform: translate(-50%, 0%);
}
@media (min-width: 768px) {
    .sponsors__list.second li::before {
        max-width: 200px;
    }
}

/* Silver Partner ここから */

/* 株式会社朝日ビルディング */
.sponsors__list.second li.asahi::before {
    background-image: url(../images/sponsor_logo/asahi.jpg);
}

/* 一村産業株式会社 */
.sponsors__list.second li.ichimura:before {
    background-image: url(../images/sponsor_logo/ichimura.png);
}

/* ＮＴＴ都市開発株式会社 */
.sponsors__list.second li.nttud:before {
    background-image: url(../images/sponsor_logo/nttud.png);
}

/* 大阪ガス株式会社 */
.sponsors__list.second li.osakagas:before {
    background-image: url(../images/sponsor_logo/osakagas.png);
	height: 60px;
}

/* 大阪市高速電気軌道株式会社（Osaka Metro） */
.sponsors__list.second li.metro:before {
    background-image: url(../images/sponsor_logo/metro.png);
	height: 60px;
}

/* ㈱大林組 */
.sponsors__list.second li.obayashi:before {
    background-image: url(../images/sponsor_logo/obayashi.jpg);
}

/* オリックス不動産株式会社 */
.sponsors__list.second li.orix-realestate:before {
    background-image: url(../images/sponsor_logo/orix-realestate.jpg);
	min-width: 25px;
	height: 110px;
}

/* 鹿島建設株式会社 */
.sponsors__list.second li.kajima:before {
    background-image: url(../images/sponsor_logo/kajima.png);
}

/* カナデビア株式会社（日立造船） */
.sponsors__list.second li.kanadevia:before {
    background-image: url(../images/sponsor_logo/kanadevia.png);
}

/* 株式会社 関電エネルギーソリューション */
.sponsors__list.second li.kenes:before {
    background-image: url(../images/sponsor_logo/kenes.png);
	max-width: 210px;
	width: 210px;
}

/* 株式会社 関電工 */
.sponsors__list.second li.kendenko:before {
    background-image: url(../images/sponsor_logo/kendenko.png);
	height: 50px;
}

/* Kinden きんでん */
.sponsors__list.second li.kinden:before {
    background-image: url(../images/sponsor_logo/kinden.jpg);
	height: 50px;
}

/* 株式会社JTB */
.sponsors__list.second li.jtb:before {
    background-image: url(../images/sponsor_logo/jtb.png);
	height: 60px;
}

/* ジョーンズ ラング ラサール株式会社 */
.sponsors__list.second li.joneslanglasalle:before {
    background-image: url(../images/sponsor_logo/joneslanglasalle.jpg);
}

/* 住友商事株式会社 */
.sponsors__list.second li.sumitomoshoji:before {
    background-image: url(../images/sponsor_logo/sumitomoshoji.png);
	height: 80px;
}

/* 住友生命保険相互会社 */
.sponsors__list.second li.sumitomohoken:before {
    background-image: url(../images/sponsor_logo/sumitomohoken.jpg);
	height: 80px;
}

/* 一般財団法人住友病院 */
.sponsors__list.second li.sumitomo-hs::before {
    background-image: url(../images/sponsor_logo/sumitomo-hs.png);
	height: 60px;
}

/* 住友不動産株式会社 */
.sponsors__list.second li.sumitomo-rd::before {
    background-image: url(../images/sponsor_logo/sumitomo-rd.jpg);
}

/* 大同生命保険株式会社 */
.sponsors__list.second li.daidosemei::before {
    background-image: url(../images/sponsor_logo/daidosemei.jpg);
	max-width: 150px;
}

/* 大和ハウス工業株式会社 */
.sponsors__list.second li.daiwahouse::before {
    background-image: url(../images/sponsor_logo/daiwahouse.png);
}

/* 株式会社 竹中土木 */
.sponsors__list.second li.takenaka-doboku:before {
    background-image: url(../images/sponsor_logo/takenaka-doboku.png);
}

/* 株式会社丹青社 */
.sponsors__list.second li.tanseisha:before {
    background-image: url(../images/sponsor_logo/tanseisha.jpg);
	height: 60px;
}

/* 株式会社チャーム・ケア・コーポレーション */
.sponsors__list.second li.charmcc:before {
    background-image: url(../images/sponsor_logo/charmcc.png);
}

/* 東洋紡株式会社 */
.sponsors__list.second li.toyobo:before {
    background-image: url(../images/sponsor_logo/toyobo.png);
}

/* 西日本電信電話株式会社 */
.sponsors__list.second li.ntt-west::before {
    background-image: url(../images/sponsor_logo/ntt-west.jpg);
}

/* 西日本旅客鉄道株式会社 */
.sponsors__list.second li.jr-nishinihon:before {
    background-image: url(../images/sponsor_logo/jr-nishinihon.jpg);
	height: 60px;
}

/* 学校法人21世紀アカデメイア */
.sponsors__list.second li.akademeia21:before {
    background-image: url(../images/sponsor_logo/akademeia21.jpg);
	height: 60px;
}

/* 日新電機株式会社 */
.sponsors__list.second li.nissin:before {
    background-image: url(../images/sponsor_logo/nissin.png);
}

/* 株式会社 三井住友銀行 */
.sponsors__list.second li.mitsui-sumitimo:before {
    background-image: url(../images/sponsor_logo/mitsui-sumitimo.jpg);
}

/* 三井物産株式会社 */
.sponsors__list.second li.mitsui:before {
    background-image: url(../images/sponsor_logo/mitsui.jpg);
	height: 80px;
}

/* 三井不動産株式会社 */
.sponsors__list.second li.mitsui-fudo:before {
    background-image: url(../images/sponsor_logo/mitsui-fudo.jpg);
	height: 80px;
}

/* 株式会社 三菱UFJ銀行 */
.sponsors__list.second li.ufj:before {
    background-image: url(../images/sponsor_logo/ufj.jpg);
	height: 80px;
}

/* 株式会社りそな銀行 */
.sponsors__list.second li.risona:before {
    background-image: url(../images/sponsor_logo/risona.jpg);
}

/* Silver Partner ここまで */

/* second　おわり */


/* Bronze Partner ここから */

/* アサヒビール株式会社 */
.sponsors__list.second li.asahi_beer:before {
	background-image: url(../images/sponsor_logo/asahi_beer.jpg);
}

/* 株式会社アサヒプロパティズ */
.sponsors__list.second li.asa-p:before {
	background-image: url(../images/sponsor_logo/asa-p.jpg);
}

/* ANAクラウンプラザホテル大阪 */
.sponsors__list.second li.anacrowneplaza-osaka:before {
	background-image: url(../images/sponsor_logo/anacrowneplaza-osaka.jpg);
}

/* 大阪地区開発株式会社 */
.sponsors__list.second li.osaka-chikukaihatsu:before {
	background-image: url(../images/sponsor_logo/osaka-chikukaihatsu.jpg);
}

/* 大阪中小企業投資育成株式会壮 */
.sponsors__list.second li.sbic:before {
	background-image: url(../images/sponsor_logo/sbic.jpg);
}

/* 公益財団法人 関西・大阪二十一世紀協会 */
.sponsors__list.second li.osaka21:before {
	background-image: url(../images/sponsor_logo/osaka21.jpg);
}

/* コクヨ株式会社 */
.sponsors__list.second li.kokuyo:before {
	background-image: url(../images/sponsor_logo/kokuyo.jpg);
}

/* 株式会社コングレ */
.sponsors__list.second li.congre:before {
	background-image: url(../images/sponsor_logo/congre.jpg);
}

/* 株式会社サトウ花店 */
.sponsors__list.second li.sato_flower:before {
	background-image: url(../images/sponsor_logo/sato_flower.jpg);
}

/* サノヤスホールディングス株式会社 */
.sponsors__list.second li.sanoyas:before {
	background-image: url(../images/sponsor_logo/sanoyas.jpg);
}

/* ＪＮＣ株式会社 */
.sponsors__list.second li.jnc:before {
	background-image: url(../images/sponsor_logo/jnc.jpg);
}

/* 新日本空調株式会社 */
.sponsors__list.second li.snk:before {
	background-image: url(../images/sponsor_logo/snk.jpg);
}

/* 株式会社大紀アルミニウム工業所 */
.sponsors__list.second li.dik:before {
	background-image: url(../images/sponsor_logo/dik.jpg);
}

/* 株式会社日刊スポーツ新聞西日本 */
.sponsors__list.second li.nikkansports:before {
	background-image: url(../images/sponsor_logo/nikkansports.jpg);
}

/* Bronze Partner おわり */

/* お問合せ先 */

.child__contents .inquiry {
    padding-top: 50px;
}

.child__contents .inquiry > * + * {
    margin-top: 20px;
}

.heading.inquiry__ttl::before {
    width: 32px;
    height: 32px;
    top: -38px;
    background-image: url(../images/ico_inquiry__ttl.svg);
}

.inquiry__wrap {
	background: #FFFFFF;
	width: 100%;
	max-width: 1240px;
	margin-left: auto;
    margin-right: auto;
	padding: 40px 20px;
    border-radius: 10px;
}

.inquiry__sub_heading {
    padding: 20px 0;
    font-size: clamp(1rem, 0.943rem + 0.242vi, 1.125rem);
    font-weight: bold;
    color: var(--point-color);
    text-align: center;
}

.inquiry__text {
    width: 96%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    font-size: 14px;
    text-align: center;
    border: 5px solid #EEE;
    background-color: rgba(238, 238, 238, 0.15);
    border-radius: 9px;
}

.inquiry__text.no_border {
	border: none;
	background: none;
}
.inquiry__text > * + * {
    margin-top: 15px;
}

.inquiry__text dt {
    position: relative;
    color: var(--key-color);
    font-size: 16px;

    &::after {
        content:'';
        position:absolute;
        left:50%;
        bottom: -2px;
        transform:translateX(-50%);
        width:20px;
        height:1px;
        border-radius: 50%;
        background-color: rgba(100, 164, 210, 0.7);
    }
}

.accordion {
    color: #FFF;
    background-color: #64A5D2;
}

.accordion label {
    display: block;
    padding: .65em 1.2em;
    font-size: bold;
    user-select: none;
}

.accordion input {
    position: absolute;
    left: -9999em;
}

.accordion .content {
    display: none;
    padding: .6em 1.2em;
    border-top: 1px solid #c04993;
    border-bottom: 1px solid #c04993;
    background-color: #d35841;
}

.accordion .content {
    height: 0;
    transition: height .2s ease-out;
}

.accordion input:checked + .content {
    display: block;
}

.accordion input:checked + .content {
    height: auto;
}

/* あとで不要になる */
div.comingsoon{
	position: relative;
}
/*div.comingsoon img{
	position: absolute;
	top:-30px;
	left: 280px;
	z-index: 9999;
}*/
div.comingsoon img.kaigai{
	position: absolute;
	top:-30px;
	left: 440px;
	z-index: 9999;
}
div.comingsoon img.nihon{
	position: absolute;
	top:-40px;
	left: 100px;
	z-index: 9999;
}
div.comingsoon .text{
	display: flex;
	max-width: 700px;
	justify-content: space-between;
	margin: 0 auto;
}
div.comingsoon .text li{
	text-align: center;
	margin: 50px 0 40px 100px;
}
@media (max-width: 768px) {
	/*div.comingsoon img{
		top:30px;
		left: 0px;
	}*/
	div.comingsoon img.kaigai{
		top:80px;
		left: 0px;
	}
	div.comingsoon img.nihon{
		top: -40px;
		left: -10px;
	}
}
/* あとで不要になるここまで */
