@charset "UTF-8";


/*================================================= reset*/

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input, select {
    vertical-align: middle;
}

/*================================================= common*/

body {
    background-image: url(../images/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

a:hover {
    opacity: 0.5;
    transition: all 0.3s;
}

#wrap img {
    max-width: 100%;
}

.center {
    text-align: center
}


.bold {
    font-weight: bold;
}

.flex {
    display: flex;

    flex-wrap: wrap;
}

.mb10 {
    margin-bottom: 10px;
}

.big {
    font-size: clamp(1.25rem, 1.132rem + 0.59vw, 1.5rem);
}

.pcnone {
    display: none;
}

@media screen and (max-width: 800px) {
    .pcnone {
        display: inline;
    }
}



#wrap {
    font-family: 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial', 'Hiragino Sans', 'ヒラギノ角ゴシック', YuGothic, 'Yu Gothic', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic'
}

#wrap header {
    text-align: center;
}

#wrap header h1 {
    max-width: 1000px;
    margin: 0px auto 20px;
}

@media screen and (max-width: 751px) {
    #wrap header h1 {
        margin-top: 0px;
    }
}

/*================================================= main*/

#wrap #main {
    margin: 0px auto;
    max-width: 1000px;
    color: #391a09;
}

#wrap #main a {
    color: inherit;
}

#wrap #main h2 {
    background-image: linear-gradient(25deg,
            hsl(313deg 79% 23%) 0%,
            hsl(312deg 51% 40%) 100%);
    ;
    font-size: clamp(24px, 1.324rem + 0.882vw, 30px);
    text-align: center;
    font-weight: bold;
    line-height: 1.2;
    padding: 50px 20px;
    margin-bottom: 20px;
    color: #fff;
    border-top: 8px double #fff;
    border-bottom: 8px double #fff;
}

#wrap #main h2 span {
    font-size: clamp(18px, 0.949rem + 0.882vw, 24px);
    margin-bottom: 10px;
}

#wrap #main dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex;
}

#wrap #main dl dt,
#wrap #main dl dd {
    box-sizing: border-box;
    margin-bottom: 10px;
    padding: 0.5rem;

}

#wrap #main dl>dt {
    width: 15rem;
    background-image: linear-gradient(25deg,
            hwb(21 7% 73% / 0.7) 0%,
            hsla(22, 37%, 30%, 0.9) 100%),
        url(../images/main_bg.jpg);
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
}

#wrap #main dl dd {
    background-image: url(../images/main_bg.jpg);
    width: calc(100% - 15rem);
    background-color: #fff;
}

@media screen and (max-width: 751px) {

    #wrap #main dl dt,
    #wrap #main dl dd {
        width: 100%;
    }

    #wrap #main dl dt {
        margin-bottom: 0px;
    }
}

#wrap #main dl dd span {
    color: #9b3286;
}

#wrap #main dl dd .photo img {
    border-radius: 20px;
}




#wrap #main dl dd .attention {
    margin: 20px 0px;
}

#wrap #main dl dd .attention li {
    padding-left: 1.2em;
    text-indent: -1.2em;
}

#wrap #main dl dd .attention li::before {
    content: "※";
}

#wrap #main dl dd .chiket_sales li {
    margin-bottom: 10px;

}

/*================================================= footer*/

#wrap footer {
    margin: 0px auto;
    max-width: 1000px;
    background-image: linear-gradient(25deg,
            hsl(313deg 79% 23%) 0%,
            hsl(312deg 51% 40%) 100%);
    box-sizing: border-box;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    border-top: 8px double #fff;
}

#wrap footer a {
    color: #fff;
}