@import url('https://fonts.googleapis.com/css2?family=Crimson+Text&family=EB+Garamond:wght@400;600&family=Shippori+Mincho:wght@400;700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://use.fontawesome.com/releases/v6.5.2/css/all.css');

/* ------------------------------------
default
------------------------------------- */
.d-flex {
    display: flex;
}
.mt-3 {
    margin-top: 3em;
}
.ms-1 {
    margin-left: 1em;
}
.me-1 {
    margin-right: 0.3em;
}
.my-3{
    margin: 3em 0;
}
.mb-0 {
    margin-bottom: 0;
}
.mb-2 {
    margin-bottom: 1em;
}
.mb-4 {
    margin-bottom: 4em;
}
.text-red {
    color: red;
}
.text-end {
    text-align: end;
}
.text-center {
    text-align: center;
}
.text-smaller {
    font-size: smaller;
}
.ai-center {
    align-items: center;
}
.ai-baseline {
    align-items: baseline;
}
.lh-sm {
    line-height: 1.25;
}
.fw-bold {
    font-weight: bold;
}
body {
    display: flex;
    flex-flow: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
    background-image: url(img/back_wh.jpg);
    background-position: center top;
    background-attachment: fixed;
    background-color: #f3f3f2;
    color: #666;
    font-family: 'EB Garamond','Georgia', 'Shippori Mincho', serif;
    font-size: 14px;
    line-height: 1.7em;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
}
main {
    display: flex;
    flex: 1;
    justify-content: center;
}
a {
    text-decoration: none;
    color: #666;
    }
  a:hover {
    color: #8f2e14;
  }

h1{
    font-size: 1.6em;
}
h2 {
    font-size: 1.5em;
}
h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    padding-bottom: 1px;
    border-bottom: 1px dashed #999;
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 0.07em;
    text-indent: 0.07em;
}
h4 {
    margin: 0 0 8px;
    padding: 0 5px 0;
    border-left: #999 solid 3px;
    font-size: 1.1em;
    font-weight: bold;
    display: inline-block;
}
.h4-p {
    margin-block-start: .5em;
    margin-inline-start: .5em;
}
h5 {
    margin-top: 1em;
    margin-bottom: .5em;
    padding-bottom: 1px;
    border-bottom: 1px dashed #999;
    font-size: 1.05em;
    font-weight: bold;
    letter-spacing: 0.07em;
}
h6 {
    margin: 14px 0 5px 5px;
    font-size: 1.05em;
    font-weight: bold;
    letter-spacing: 0.07em;
    line-height: 1em;
}
ul {
    list-style: none;
    padding-inline-start: 1em;
}
dl{
    margin: 5px 8px 20px;
}
dd {
    font-size: 0.8em;
    margin-inline-start: 9px;
    padding-inline-start: 9px;
    margin-bottom: .5em;
    border-left: #999 dashed 1px;
    line-height: 1.7em;
}
hr {
    width: 60%;
    border-width: 1px 0 0 0;
    border-style: dashed;
    border-color: #999;
    
}
.container {
    width: 100%;
}
.item {
    padding: 15px;
    justify-content: center;
}
.annotation {
    font-size: 0.8em;
}
.ppp {
    font-size: .8em;
    margin: .5em 0 2em 0;
    line-height: 1.5em;
}
.pc {
    display: none;
}
.tablet-2 {
    display: none;
}
.tablet {
    display: none;
}
.mobile {
    display: block;
}

@media only screen and (min-width: 600px) { /* tablet */

    h1 {
        font-size: 2em;
    }
    .mobile {
        display: none;
    }
    .tablet {
        display: block;
    }
}
@media only screen and (min-width: 768px) {/* tablet-2 */
    .container {
        margin: 0 15px;
    }
    .tablet-2 {
        display: block;
    }
}
@media only screen and (min-width: 1024px) { /* PC */
    .container {
        margin: 0 20px;
        width: 1440px;
    }
    .tablet,
    .tablet-2 {
        display: none;
    }
    .pc {
        display: block;
    }
}
/* ------------------------------------
Button
------------------------------------- */
button {
    border: 0;
    padding: 3px 9px;
    margin: 0;
    font-family: 'EB Garamond','Georgia', 'Shippori Mincho', serif;
    font-size: 0.9em;
    color: #666;
    letter-spacing: 0.1em;
    transition: all 0.5s;
}
.outline {
    background-color: transparent;
    border: #999 solid 1px;
}
.outline a {
    color: #999;
}
.outline:hover {
    background-color: #999;
    border-radius: 8px;
    color: #f3f3f2;
}
.icon-btn {
    border: #aaa 1px solid;
    background: transparent;
    padding: 2px 5px;
    border-radius: 2px;
    margin-right: 1em;    
}
.icon-btn:hover {
    background-color: #aaa;
    color: #fff;
}

/* ------------------------------------
SCHEDULE
------------------------------------- */
.schedule {
    display: flex;
}
.schedule ul{
    padding-inline-start: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}
.schedule ul li{
    border-left:#999 5px solid;
    border-bottom:#999 1px solid;
    padding: 3px 10px;
    margin: 3px 15px 3px 0px;
}

/* ------------------------------------
CARD + BADGE
------------------------------------- */
.card {
    width: 100%;
    margin: 3px;

}
.bg-base {
    position: relative;
    display: inline-block;
    padding: 0;
}
.bg-base img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.card-img img {
    transition: .5s all ease;
    filter: grayscale(80%);
}
.card-img img:hover {
    transform: scale(1.1,1.1);
    filter: grayscale(0);
}
.card-title {
    position: absolute;
    color: #fff;
    /*background-color: rgba(43, 43, 43, 0.5);*/
    width: 100%;
    text-shadow: 1px 2px 2px #000;
    text-align: end;
    bottom: 0;
    overflow: hidden;
}
.marker {
    padding: 0 .5em;
    background-color: rgba(51, 51, 51, 0.8);
}
.badge {
    position: absolute;
    left: -3px;
    top: -3px;
    background-color: #393f4c;
    color: #ebf6f7;
    font-size: 0.9em;
    line-height: 1.5em;
    padding: 2px 8px;
    border-radius: 0 15px 15px 0;
    z-index: 100;
}
.badge-p {
    background-color: #ba4242;
}
/* ------------------------------------
Back to TOP Button
------------------------------------- */
.pagetop{
    position: fixed;
    right: 7px;
    bottom: 15px;
    background-color: rgba(82, 82, 82, 0.5);
    border-radius: 50%;
  }
  .pagetop a{
    display: flex;
    align-items: center;
    font-size: 23px;
    width: 45px;
    height: 45px;
    justify-content: center;
    color: #fff;
    opacity: 0.8;
  }

/* ------------------------------------
footer
------------------------------------- */
.footer {
    text-align: center;
    height: auto;
    color: #aaa;
    font-family: 'Crimson Text', serif;
    font-size: 0.9em;
    letter-spacing: 0.12em;
    text-indent: 0.12em;
}
.footer p{
line-height: normal;
font-size: 0.9em;
}
.footer a {
    color: #aaa;
}
@media only screen and (min-width: 600px) { /* tablet */
    .footer {
        display: flex;
        text-align: center;
        height: auto;
        margin: 1em 15px;
        color: #aaa;
        font-family: 'Crimson Text', serif;
        font-size: 0.9em;
        letter-spacing: 0.12em;
        text-indent: 0.12em;
        justify-content: space-between;
    }
}