@charset "utf-8";

@font-face{
    font-family:'NotoSansJP';
    src:url(../fonts/NotoSansJP.woff2);
}
@font-face{
    font-family:'Roboto';
    src:url(../fonts/Roboto.woff2);
}
@font-face{
    font-family:'RobotoMono';
    src:url(../fonts/RobotoMono.woff2);
}

html {
    overflow-y: scroll
}

body {
    background: #fff;
    color: #333;
    font-family: NotoSansJP,"Helvetica Neue","Roboto",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans","BIZ UDPGothic",Meiryo,sans-serif;
    font-kerning: auto;
    font-size: 100%;
    font-variant-ligatures: none;
    letter-spacing: .025rem;
    line-height: 1.75;
    margin: 0;
    overflow-wrap: break-word;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

a {
    color: #1d9bf0;
    text-decoration: none;
}
a:hover,.u {
    text-decoration: underline;
}
img {
    border: 0;
    max-width: 100%;
    height: auto;
}
em {
    font-style: normal;
    font-weight: bold;
}
p {
    word-break: break-all;
    position: relative;
}
p a {
    line-height: 1.5;
    color: #1d9bf0;
    text-decoration: none;
}
p a:hover {
    text-decoration: underline;
}
figure {
    margin: .5rem 0 1.5rem;
    text-align: center;
}
figcaption, picture {
    margin: 0;
}
picture img {
    border: 0;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
}
figcaption {
    color: #555;
    font-size: .875rem;
    text-align: center;
}
h3 {
  margin-top: 2rem;
}
#cookieConsentContainer {
    display: flex;
    flex-direction: row;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeInEffect .3s ease-out forwards;
}
@keyframes fadeInEffect {
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255,255,255,.875);
    color: #000;
    padding: 1rem;
    text-align: center;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 .5rem -.25rem #6e6e6e;
    margin: 12px auto;
    border-radius: 16px;
    backdrop-filter: blur(2px);
    font-family: "NotoSansJP";
    max-width: 1200px;
    width: 85vw;
}

.cookie-consent p {
    margin: 0;
    padding: 0 .75rem;
    text-align: justify;
    font-size: .875rem;
}
.cookie_action_block {
    display: flex;
    align-items: center;
    margin-left: 16px;
}
#acceptCookies,
#declineCookies {
    background-color: #2980b9;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    min-width: 160px;
    height: 42px;
    border-radius: 24px;
    font-weight: 400;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    box-shadow: 0 0 .5rem -.25rem #6e6e6e;
    margin-top: 24px;
    transition: .25s;
    font-family: "NotoSansJP";
}
#acceptCookies:hover {
    background-color: #3498db;
}
#declineCookies {
    background-color: rgba(255,255,255,0);
    color:#666;
    box-shadow: none;
    margin-left: 8px;
}
#declineCookies:hover {
    color: #1d9bf0;
}
#closeCookies {
    position: absolute;
    right: 6px;
    top: 2px;
}
#closeCookies:hover {
    cursor: pointer;
}
.cookie-consent button:hover {
    background-color: #0056b3;
}
.xmark {
    padding: 12px;
    font-size: 24px;
    width: 24px;
}
.xmark:hover {
    background-color: rgb(200 200 200 / 0.15);
    cursor: pointer;
    border-radius: 50%;
    opacity: 1;
}
.bx {
    font-family: boxicons !important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
#main {
  min-height: calc(100vh - 339px);
}
#footer {
    text-align: center;
    margin: 4rem 0 2rem;
}

@media (max-width: 880px) {
    #cookieConsentContainer{
        flex-direction: column;
    }
    .cookie-consent p{
        padding: 0 .5rem;
        line-height: 1.6;
        font-size: 14px;
    }
    #acceptCookies, #declineCookies{
        margin-top: 12px;
    }
    #declineCookies{
        margin-left: 0;
    }
    #closeCookies{
        display: none;
    }
}



#header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  z-index: 12;
  }
  
  .header-logo {
    width: 36px;
    height: auto;
    margin-left: 1.5rem;
    vertical-align: middle;
  }


  .header_menu_item {
    font-family: "Roboto";
  }


.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 13;
    margin-right: .75rem;
    margin-top: 5px;
  }
  .nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    display: none;
    z-index: 14;
  }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    z-index: 12;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header_nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80vw;
    height: 100vh;
    background-color: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease;
    z-index: 15;
    padding-top: 4rem;
  }
  .header_nav.open {
    transform: translateX(0);
  }
  .header_nav.open .nav-close {
    display: block;
  }
  .header_menu_items {
    list-style: none;
    margin: 0;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .header_nav.open .header_menu_item:nth-child(1) {
    animation: slideIn 0.3s ease forwards;
    animation-delay: 0.05s;
  }
  .header_nav.open .header_menu_item:nth-child(2) {
    animation: slideIn 0.3s ease forwards;
    animation-delay: 0.10s;
  }
  .header_nav.open .header_menu_item:nth-child(3) {
    animation: slideIn 0.3s ease forwards;
    animation-delay: 0.15s;
  }
  .header_nav.open .header_menu_item:nth-child(4) {
    animation: slideIn 0.3s ease forwards;
    animation-delay: 0.20s;
  }
  .header_nav.open .header_menu_item:nth-child(5) {
    animation: slideIn 0.3s ease forwards;
    animation-delay: 0.25s;
  }
  .header_nav.open .header_menu_item:nth-child(6) {
    animation: slideIn 0.3s ease forwards;
    animation-delay: 0.3s;
  }
  .header_nav.open .header_menu_item:nth-child(7) {
    animation: slideIn 0.3s ease forwards;
    animation-delay: 0.35s;
  }

  #footer {
    text-align: center;
    margin: 4rem 2rem 0;
    background-color: #f5f6fa;
    padding: 1rem 0 1rem;
    border-radius: 32px 32px 0 0;
    box-shadow: 0 0 .5rem -.25rem #ccc;
}
.footer_inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1rem 3rem;
}
.footer_logo {
    width: 36px;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    background-color: #fff;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 0 .5rem -.25rem #6e6e6e;
}
.footer_sns_block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer_sns_title {
    font-size: .6rem;
    color: #888;
    margin-bottom: 3px;
    font-family: "Roboto";
}
.footer_link_items {
    display: flex;
    padding: 0;
    list-style: none;
    justify-content: center;
    gap: 1.5rem;
    margin: 0;
}
.footer_icon_x {
    width: 18px;
    height: 18px;
}
.footer_icon_youtube {
    font-size: 2rem;
    color:#000;
    margin-top: -3px;
}
.footer_icon_pixiv {
    width: 22px;
    height: 22px;
    margin-top: 2px;
}
.footer_links {
  list-style: none;
  padding: 0 3rem 12px 0;
  margin: 0;
  display: flex;
  gap: 1rem;
  font-size: .75rem;
  justify-content: flex-end;
}
.footer_link > a {
  color: #333;
}

#copyright {
  font-family: 'Roboto';
  color: #bdc3c7;
}

  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .header_menu_item_a {
    color: #333
  }
  @media (min-width: 801px) {
    .hamburger { display: none; }
    .header_nav {
        position: static;
        transform: none;
        opacity: 1;
        display: flex;
        height: auto;
        background: none;
        backdrop-filter: none;
        padding: 0;
        justify-content: flex-end;
    }
    .header_menu_items {
      flex-direction: row;
      padding: 0;
      gap: 1.5rem;
      margin-right: 2rem;
    }
  }

  .content {
    margin: 4rem auto 0;
    width: 960px;
  }
  @media screen and (max-width: 880px) {
    .content {
        width: 90%;
    }
  }
  @media (max-width: 800px) {
    .header_nav {
        transform: translateX(100%);
        opacity: 0;
    }
    .header_nav.open {
    transform: translateX(0);
    opacity: 1;
    }
    .hamburger { display: block; }
    .header_menu_item {
        font-size: 1.5rem;
        opacity: 0;
        transform: translateX(20px);
    }
    .header_menu_items {
        padding: 1rem 0 0 4rem;
    }
    
  }
  