/*
Theme Name: Theme Nester
Theme URI: https://github.com/jeffreyvr/tailpress
Author: Jeffrey van Rossum
Author URI: https://vanrossum.dev
Description: A WordPress theme made with TailPress.
Version: 1.3.0
License: MIT
License URI: https://github.com/jeffreyvr/tailpress/blob/master/LICENSE
Text Domain: nester_theme
*/
html {
    /* scroll-behavior: smooth; */
    overflow: hidden;
}
/* width */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
/* Track */
::-webkit-scrollbar-track {
    background: white;
    border-radius: 9999px;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #22274B;
    border-radius: 9999px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #6F7495;
}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    /* font-weight: <weight>; */
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    color: #22274B;
    word-break: auto-phrase;
}
/* .container {
    opacity: 0;
    animation: fadeIn 0.75s ease-in 1s forwards;
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}   */
main a {
    text-decoration: none;
}
main a:hover {
    opacity: 0.8;
    cursor: pointer;
}
header .custom-logo-link img {
    width: 100%;
}
ul.menu li a:hover {
    text-decoration: underline;
    cursor: pointer;
}
#left_container article {
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
#right_container article {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 24px 0;
}
#right_container article p.txt {
    font-family: 'Noto Sans JP', serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.625;
}
#right_container article img {
    width: 100%;
    height: auto;
}

#page_policy h2 {
    font-weight: bold;
}
#page_policy table {
    width: 100%;
    border: 1px solid #22274B;
    border-collapse: collapse;
    margin-top: 8px;
}
#page_policy table th, #page_policy table td {
    padding: 8px;
    border: 1px solid #22274B;
}
#page_policy ol {
    list-style: decimal;
    counter-reset: item;
    padding-left: 16px;
    margin: 8px 0;
}
#page_policy ol li ol {
    list-style: none;
    counter-reset: item;
}
#page_policy ol li ol li::before {
    content: " (" counter(item) ") ";
    counter-increment: item;
}
#page_policy ol li ol li ol {
    list-style: none;
    counter-reset: item;
}
#page_policy ol li ol li ol li::before {
    content: counter(item) ") ";
    counter-increment: item;
}
#page_policy ul {
    list-style: disc;
    padding-left: 32px;
    margin: 8px 0;
}