@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kiwi Maru', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    line-height: 1;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    max-height: 100%;
}

.top-logo {
    display: none;
}

.header {
    font-family: 'Passion One', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    color: #ffffff;
    position: fixed;
    top: 0;
    height: 100vh;
    width: 120px;
    background-color: #9dcabb;
}

.header-logo {
    display: block;
}

.header-logo img {
    width: auto;
    height: 100px;
    padding-bottom: 10px;
    margin: 15px 15px 15px 15px
}

.header-tw img {
    width: auto;
    height: 40px;
    padding-top: 10px;
    margin: 0 15px 15px 15px
}

.header-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
}

.header-nav li {
    display: block;
    margin: 0 10px 30px 15px
}

.main {
    margin-left: 120px;
    margin-top: 15px;
    padding: 0 30px 50px 30px;
}

.main h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #9dcabb;
}

.info-item {
    padding: 12px 0;
    color: #000;
    display: flex;
    justify-content: left;
    align-items: center;
}

.info-date {
    letter-spacing: 0px;
    margin-right: 10px;
    line-height: 2;
}

.info-category {
    background-color: #9dcabb;
    color: #fff;
    padding: 0 10px;
    border-radius: 5px;
    line-height: 2;
}

.info-text {
    display: block;
    font-weight: normal;
    margin-left: 10px;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
}

.info-text a {
    text-decoration: underline;
}

.link-list {
    padding: 12px 0;
    color: #000;
    display: flex;
    justify-content: left;
    align-items: center;
}

.link-list p {
    margin-left: 10px;
}

.footer p {
    text-align: center;
    font-size: 0.9rem;
    color: #666666;
    margin-top: 30px;
    padding-bottom: 20px;
}

.hamburger {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 10px;
  margin: 6px 0;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}
.works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}
.works-grid img{
    width: auto;
aspect-ratio: 1;
    object-fit: cover;
}
.arts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}
.arts-grid img{
    width: auto;
aspect-ratio: 1;
    object-fit: cover;
}

.pagination {
    display: flex;
    gap: 10px;
}
.page-item.number.pe-jiokuri {
    background-color: #9dcabb;
    color: white;
    padding: 5px 10px ;
    position: relative;
    top: -5px;
    border-radius: 5px;
}

#information a {
  text-decoration: underline;
  text-decoration-thickness: 1px; /* 好みに応じて太さ調整 */
  color: #9dcabb; /* 好きなリンク色 */
}
#link a {
  text-decoration: underline;
  text-decoration-thickness: 1px; /* 好みに応じて太さ調整 */
  color: #9dcabb; /* 好きなリンク色 */
}

@media (max-width: 800px) {
    body {
    font-family: 'Kiwi Maru', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    line-height: 1;
    background-color: #ffffff;
}

.main h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #9dcabb;
}

    .circle {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background-color: #9dcabb;
        position: fixed;
        top: -30px;
        left: -30px;
    }
    .top-logo {
        width: 90px;
        height: 90px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 25px auto;
    }
.hamburger {
    display: flex;
  }
  .header {
    transform: translateX(-100%);
    transition: transform 0.3s;
    z-index: 1000;
  }
  .header.active {
    transform: translateX(0);
  }

    .header {
        font-family: 'Passion One', sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 28px;
        color: #ffffff;
        position: fixed;
        top: 0;
        height: 100dvh;
        width: 60vw;
        background-color: #9dcabb;
            display: flex;
    flex-direction: column;
    align-items: center;
    }

.header-logo img {
    width: auto;
    height: 100px;
    padding-bottom: 10px;
    margin: 20px 15px 15px 15px;
}

.header-nav {
    align-items: center;
}


    .main {
        margin-left: 0;
        margin-top: 0;
        padding: 0 10px 50px 10px;
        position: absolute;
        top: 15px;
        z-index: -1;
    }


    .header-inner {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        /* ロゴを中央に揃える */
        position: relative;
        /* ボタンとロゴの配置を制御するため */
    }

          .info-item {
        padding: 12px 0;
        color: #000;
        display: block;
    }
    
    .info-date {
        display: inline;
        letter-spacing: 0px;
        margin-right: 10px;
        line-height: 2;
    }
    .info-category {
        display: inline;
        background-color: #9dcabb;
        padding: 0 10px;
        border-radius: 5px;
        color: #fff;
    }
    .info-text {
        font-weight: normal;
        margin-left: 10px;
        line-height: 1.5;
        word-break: break-word;
        overflow-wrap: break-word;
    }
        .link-list {
        display: flex;
        flex-direction: column;
        align-items: normal;
    }
    .link-list p {
        margin-top: 5px;
    }

    .link-sidebar {
        margin-top: 50px;
        min-width: 200px;
        max-width: 200px;
        margin-left: 25px;
    }




}