@charset "UTF-8";

main {
    padding-top: 200px;
}

.inner {
    max-width: 1240px;
}

/* .sec {
    padding: 0;
} */

.hero {
    position: relative;
}

.hero::before {
    content: '';
    width: 118px;
    height: 128px;
    background: url(/kanazawa-castle/img/second/bg-hero01.png) no-repeat center;
    background-size: cover;
    position: absolute;
    top: -50px;
    left: -30px;
    z-index: -1;
}

.hero::after {
    content: '';
    width: 92px;
    height: 148px;
    background: url(/kanazawa-castle/img/second/bg-hero02.png) no-repeat center;
    background-size: cover;
    position: absolute;
    bottom: -100px;
    right: 0;
    z-index: -1;
}

.hero_img_big {
    max-width: 1360px;
    margin: 0 auto 50px;
    text-align: center;
}

.hero_img_small {
    max-width: 1160px;
    margin: 0 auto 50px;
    text-align: center;
}


.page_ttl {
    font-size: 40px;
    line-height: 50px;
    font-weight: 500;
    margin-bottom: 80px;
    /* padding-left: 65px; */
    position: relative;
}

.page_ttl span {
    font-size: 18px;
}

.page_ttl::before {
    content: '';
    width: 268px;
    height: 255px;
    background: url(/kanazawa-castle/img/second/bg-hero03.png) no-repeat center;
    background-size: cover;
    position: absolute;
    top:-30px;
    right: 5%;
    z-index: -1;
}

.pnkz {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    font-family: 'Noto Sans JP', sans-serif;
    margin-bottom: 20px;
    position: relative;
}

.pnkz a {
    font-size: 14px;
    color: #938055;
}

.pnkz span {
    width: 1px;
    height: 15px;
    background: #000;
}

.pnkz p {
    font-size: 14px;;
}


/* page_link */

.page_link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.page_link a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 100px;
    background: #938055;
    color: #fff;
    width: fit-content;
    min-width: 300px;
    font-weight: 500;
    font-size: 20px;
    transition-duration: .5s;
}

.page_link a:hover {
    background: #766133;
}

.page_link a::after {
    content: '';
    width: 9px;
    height: 12px;
    background: url(/kanazawa-castle/img/guide/icon-arrow_white.svg) no-repeat center;
    background-size: cover;
}

.bnr_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.bnr_wrap a:hover {
    opacity: .8;
}

/* section */

.sec_ttl {
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    position: relative;
    padding: 30px 0;
    margin: 0 auto 30px;
}

.sec_ttl::after {
    content: '';
    width: 180px;
    height: 1px;
    background: #938055;
    position: absolute;
    left: 0;
    bottom: 0;
}

.sec_ttl_sub {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
}

.sec_ttl_sub02 {
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 17px;
    padding: 5px 20px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #887446, rgba(173, 146, 83, 0));
}

.sec_txt {
    font-size: 17px;
    line-height: 40px;
    letter-spacing: 2px;
    font-family: 'Noto Sans JP', sans-serif;
    margin-bottom: 50px;
}

[lang="en"] .sec_txt{
    letter-spacing: 0;
}

.sec_txt a {
    color: #938055;
    text-decoration: underline;
}

.sec_txt a:hover {
    text-decoration: none;
}

/* 画像＋キャプション */

.sec_img {
    margin-bottom: 40px;
    text-align: center;
}

.sec_img .caption {
    font-size: 15px;
}

.sec_wrap {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.sec_wrap_img img {
    margin-bottom: 10px;
    width: 100%;
}

.sec_wrap_img .caption {
    text-align: center;
    font-size: 15px;
}

.sec_wrap_three {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.sec_wrap_three img {
    margin-bottom: 20px;
}

.sec_wrap_three_ttl {
    font-size: 22px;
    margin-bottom: 10px;
}


/* テーブル */

/* table */

.table_two {
    margin: 0 auto 50px;
}

.table_two table {
    width: 100%;
}

.table_two table thead tr td {
    position: relative;
}

.table_two table thead tr td::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #F8F6F2;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.table_two table tr {
    border-top: solid 1px #B6B0A3;
    border-bottom: solid 1px #B6B0A3;
}

.table_two table tr th {
    width: 250px;
    padding: 15px 25px;
    position: relative;
}

.table_two table tr th::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #F8F6F2;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.table_two table tr td {
    padding: 15px 25px;
}



.table_two a {
    color: #938055;
    text-decoration: underline;
}

.table_two a:hover {
    text-decoration: none;
}

.table_two li {
    list-style: disc;
}


/* table_three */

.table_three {
    margin: 0 auto 50px;
}

.table_three table {
    width: 100%;
}

.table_three table thead tr {
    border-bottom: solid 1px #B6B0A3;
    position: relative;
}

.table_three table thead tr td {
    padding: 15px 25px;
    border-top: solid 1px #B6B0A3;
    position: relative;
}

.table_three table thead tr td::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #F8F6F2;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.table_three table tbody tr {
    border-bottom: solid 1px #B6B0A3;
}

.table_three table tbody tr td {
    padding: 15px 25px;
}

.table_three li {
    list-style: disc;
}

/* movie */

.movie {
    margin-bottom: 50px;
}

.movie iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
}

/* link_list */

.link_list {
    margin-bottom: 50px;
}

.link_list li a {
    display: block;
    width: 100%;
    padding: 25px 0 25px 30px;
    border-bottom: solid 1px #B6B0A3;
    text-decoration: underline;
    color: #938055;
    font-weight: bold;
    position: relative;
}

.link_list li a:hover {
    text-decoration: none;
}

.link_list li:first-child a {
    border-top: solid 1px #B6B0A3;
}

.link_list li a::before {
    content: '';
    width: 12px;
    height: 9px;
    background: url(/kanazawa-castle/img/guide/icon-accordion.svg) no-repeat center;
    background-size: cover;
    transform: rotate(90deg);
    position: absolute;
    left: 10px;
    top: 35px;
}

/* file_link */

.file_link {
    margin-bottom: 50px;
}

.file_link a {
    text-decoration: underline;
    color: #938055;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    width: fit-content;
    max-width: 380px;
    border-radius: 100px;
    position: relative;
}

.file_link a:hover {
    text-decoration: none;
}

.file_link a .icon-file {
    position: relative;
    width: 12px;
    height: 9px;
    background: url(/kanazawa-castle/img/guide/icon-accordion.svg) no-repeat center;
    background-size: cover;
    transform: rotate(90deg);
}

/* .file_link a .icon-file::before {
    content: '';
    width: 12px;
    height: 9px;
    background: url(/kanazawa-castle/img/guide/icon-accordion.svg) no-repeat center;
    background-size: cover;
    transform: rotate(90deg);
    position: absolute;
    left: 10px;
    top: 35px;
} */

.file_link a::after {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background: #F8F6F2;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* default_link */

.default_link {
    margin-bottom: 50px;
}

.default_link a {
    text-decoration: underline;
    color: #938055;
    font-weight: bold;
}

.default_link a:hover {
    text-decoration: none;
}


/* 茶色背景 */

.brown_cnt {
    padding: 55px 60px;
    position: relative;
    border: solid 1px #C1BCB2;
    margin: 0 auto 50px;
    font-family: 'Noto Sans JP', sans-serif;
}

.brown_cnt::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #F8F6F2;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.brown_cnt_ttl {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
}

.brown_cnt_img {
    text-align: center;
    margin-bottom: 60px;
}

.brown_cnt img.aligncenter {
    margin: 0 auto;
    display: block;
}


/* accordion */

.accordion {
    margin-bottom: 50px;
}

.accordion_wrap {
    margin-bottom: 50px;
}

.accordion_ttl {
    font-size: 22px;
    padding-bottom: 30px;
    border-bottom: solid 1px #B6B0A3;
}

/* .accordion_cnt {
    border-bottom: solid 1px #B6B0A3;
}

.accordion_cnt:first-child {
    border-top: solid 1px #B6B0A3;
} */

.accordion_que {
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px;
    font-family: 'Noto Sans JP', sans-serif;
}

.accordion_que:hover {
    cursor: pointer;
}

/* .accordion_que::after {
    content: '';
    width: 16px;
    height: 12px;
    background: url(/kanazawa-castle/img/guide/icon-accordion.svg) no-repeat center;
    background-size: cover;
    transform: rotate(180deg);
    transition-duration: .5s;
} */

.accordion_que.-open::after {
    transform: rotate(0);
}

.accordion_ans {
    /* display: none; */
    padding: 20px;
    background: #F2ECE1;
}

.accordion_ans a {
    color: #938055;
    text-decoration: underline;
}

.accordion_ans a:hover {
    text-decoration: none;
}


/* img_list */

.img_list {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* sec_wrap_left */

.sec_left {
    margin-bottom: 50px;
}

.sec_wrap_left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5%;
    border-bottom: solid 1px #B6B0A3;
    padding: 35px 0;
}

.sec_wrap_left:first-child {
    border-top: solid 1px #B6B0A3;
}

.sec_wrap_ttl {
    font-size: 22px;
    margin-bottom: 20px;
}

.sec_right {
    margin-bottom: 50px;
}

.sec_wrap_right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5%;
    border-bottom: solid 1px #B6B0A3;
    padding: 35px 0;
}

.sec_wrap_right:first-child {
    border-top: solid 1px #B6B0A3;
}

.sec_wrap_right .sec_wrap_img img {
    margin-bottom: 10px;
}

.sec_wrap_cnt {
    flex: 1;
}

.sec_wrap_img {
    max-width: 50%;
}

.sec_wrap_brown {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    position: relative;
    border: solid 1px #C1BCB2;
    margin: 0 auto 50px;
    font-family: 'Noto Sans JP', sans-serif;
}

.sec_wrap_brown::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #F8F6F2;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.movie {
    margin-bottom: 50px;
}

.movie iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
}


/* bnr_list */

.bnr_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    padding: 0;
    flex-wrap: wrap;
}

.bnr_list a {
    /* display: flex; */
    max-width: 310px;
    height: auto;
}

.bnr_list a .caption {
    text-align: center;
}


/* default_link */

.default_link {
    margin-bottom: 50px;
}

.default_link a {
    text-decoration: underline;
    color: #938055;
    font-weight: bold;
}

.default_link a:hover {
    text-decoration: none;
} 


/* exhibition */

.exhibition_list_item {
    position: relative;
    padding-bottom: 180px;
    margin-bottom: 50px;
}

.exhibition_list_item:nth-child(even) .item_img {
    text-align: right;
}

.exhibition_list_item .item_img img {
    width: 100%;
    max-width: 930px;
}

.item_cnt {
    color: #fff;
    padding: 30px 45px;
    width: 100%;
    max-width: 900px;
    height: 315px;
    background: linear-gradient(to right bottom, rgba(147, 128, 85, 0.9), rgba(74, 64, 43, 0.7));
    position: absolute;
    bottom: 0;
    right: 0;
}

.exhibition_list_item:nth-child(even) .item_cnt {
    left: 0;
    right: unset;
}

.item_cnt_ttl {
    font-size: 25px;
    margin-bottom: 20px;
}

.item_cnt_txt {
    line-height: 30px;
    letter-spacing: 2px;
}


/* charm */

.charm_list_item {
    position: relative;
    padding-bottom: 180px;
    margin-bottom: 50px;
}

.charm_list_item:nth-child(even) .item_img {
    text-align: right;
}

.charm_list_item .item_img img {
    width: 100%;
    max-width: 1040px;
}

.charm_list_item .item_cnt {
    color: #000;
    height: auto;
    background: linear-gradient(to right top, #FFFFFF 50%, #CCB47B);
}

.charm_list_item:nth-child(even) .item_cnt {
    left: 0;
    right: unset;
}

.charm_list_item .item_cnt_ttl {
    font-size: 25px;
    margin-bottom: 20px;
    color: #938054;
}

hr {
    width: 100%;
    height: 1px;
    background: #B6B0A3;
    margin: 10px 0;
}

.link_list-box{
	border: solid 1px #C1BCB2;
    background: #F8F6F2;
    mix-blend-mode: multiply;
	padding: 40px;
}

@media screen and (max-width:767px) {
    main {
        padding-top: 100px;
    }

    .hero {
        padding: 0;
        overflow-x: clip;
    }

    .hero::before {
        width: 50px;
        height: 50px;
        left: -20px;
    }

    .hero::after {
        width: 32px;
        height: 58px;
        background: url(/kanazawa-castle/img/second/bg-hero02.png) no-repeat center;
        background-size: cover;
        position: absolute;
        top: 80px;
        right: 0;
    }

    .pnkz {
        padding: 0;
    }


    /* .sec {
        padding: 40px 0;
    } */

    .ft-24 {
        font-size: 20px;
    }

    .sec_ttl {
        font-size: 24px;
        line-height: 35px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .sec_ttl_sub {
        margin-bottom: 10px;
    }

    .sec_txt {
        font-size: 15px;
        line-height: 30px;
    }


    /* table_two */

    .table_two table tr th {
        width: 100px;
        padding: 10px 15px;
        font-size: 15px;
    }

    .table_two table tr td {
        padding: 10px 15px;
        font-size: 15px;
    }


    /* table_three */

    .table_three table thead tr td {
        padding: 10px 15px;
    }
    
    .table_three table tbody tr td {
        padding: 10px 15px;
    }


    /* .brown */

    .brown_cnt {
        padding: 30px 20px;
        font-size: 15px;
    }


    /* sec_wrap */

    .sec_wrap {
        gap: 10px;
        flex-flow: column;
    }

    .sec_wrap_img {
        width: 100%;
        max-width: none;
    }

    .sec_wrap_right {
        flex-flow: column-reverse;
        align-items: center;
        gap: 20px; 
    }

    .sec_wrap_left {
        flex-flow: column;
        align-items: center;
        gap: 20px;
    }


    /* .page_ttl */

    .page_ttl {
        padding-left: 0;
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .page_ttl span {
        font-size: 14px;
    }

    .page_ttl::before {
        width: 218px;
        height: 207px;
        top: 10px;
        right: -12%;
    }


    .sec_wrap_left {
        padding: 20px 10px;
        margin-bottom: 50px;
    }

    .sec_wrap_ttl {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .sec_wrap_txt {
        font-size: 15px;
    }


    /* .accordion */

    .accordion_que {
        padding: 10px;
    }

    .accordion_ans {
        padding: 0 10px 10px;
    }


    /* bnr_list */

    .bnr_list {
        gap: 10px 20px;
    }

    .bnr_list a {
        max-width: calc(50% - 10px);
    }


    /* .link_list */

    .link_list li a {
        padding: 15px 20px 15px 30px;
    }

    .link_list li a::before {
        top: 25px;
    }



    /* .page_link */

    .page_link {
        flex-flow: column;
        gap: 10px;
    }

    .page_link a {
        padding: 10px 20px;
        font-size: 16px;
    }


    /* exhibition */

    .item_cnt {
        position: unset;
        padding: 30px 20px;
    }

    .exhibition_list_item {
        padding: 0;
    }

    .item_cnt_ttl {
        font-size: 22px;
    }


    /* charm_list */

    .charm_list_item {
        padding-bottom: 0;
    }
	
	.link_list-box{
		border-left: none;
		border-right: none;
		margin-left: -15px;
		margin-right: -15px;
		padding: 20px 20px;
	}
}