/* fonts */
@import url('https://web.archive.org/web/20220121012611cs_/http://fonts.googleapis.com/earlyaccess/notosansjapanese.css');

/* default settings */
*
{
    font-family: 'Noto Sans Japanese', sans-serif;

    -webkit-box-sizing: border-box;
            box-sizing: border-box;

    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
}

*:focus
{
    outline: none;
}

::-moz-selection
{
    background: #e1e1e1;
}

::selection
{
    background: #e1e1e1;
}

body
{
    margin: 0;
    background-color: #fcebf4;
}

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

fieldset
{
    border: none;
}

/* typography */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li
{
    margin: 0;
    padding: 0;

    color: black;
}

h1
{
    font-size: 2.2rem;

    text-align: center;
}

h2,
h3
{
    font-size: 1.5rem;
    margin-top: 20px;
    color: #ff5dc2;
}

ul,
li
{
    list-style: none;
}

a
{
    text-decoration: none;
}

@media (max-width: 767px)
{
    h1
    {
        font-size: 1.2rem;
    }

    h2,
    h3
    {
        font-size: 1rem;
    }

    p
    {
        font-size: .8rem;
    }
}

/* site title */
.site-title
{
    display: block;

    width: 500px;
    margin: 0 auto;
    margin-top: 20px;

    -webkit-transition: -webkit-transform .4s ease-in-out;
            transition: -webkit-transform .4s ease-in-out;
            transition:         transform .4s ease-in-out;
            transition:         transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.site-title.active
{
    -webkit-transform: translateX(310px);
            transform: translateX(310px);
}

@media (max-width: 500px)
{
    .site-title
    {
        width: 100%;
    }
}

/* hamburger button */
.hamburger-button
{
    position: fixed;
    z-index: 666;
    top: 20px;
    left: 20px;

    width: 40px;
    height: 40px;

    cursor: pointer;
    -webkit-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;

    border: 1px solid #ED93CB;
}

.hamburger-bars,
.hamburger-bars::before,
.hamburger-bars::after
{
    position: absolute;
    top: 50%;
    left: 50%;

    width: 10px;
    height: 1px;

    content: '';
    -webkit-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);

    background-color: #ED93CB;
}

.hamburger-bars::before
{
    -webkit-transform: translateX(-50%) translateY(-4px);
            transform: translateX(-50%) translateY(-4px);
}

.hamburger-bars::after
{
    -webkit-transform: translateX(-50%) translateY(3px);
            transform: translateX(-50%) translateY(3px);
}

@media (max-width: 767px)
{
    .hamburger-button
    {
        background-color: white;
    }
}

/* hamburger button transition */
.hamburger-button.active .hamburger-bars
{
    background-color: transparent;
}

.hamburger-button.active .hamburger-bars::before
{
    -webkit-transform: translateX(-50%) translateY(0) rotate(45deg);
            transform: translateX(-50%) translateY(0) rotate(45deg);
}

.hamburger-button.active .hamburger-bars::after
{
    -webkit-transform: translateX(-50%) translateY(0) rotate(-45deg);
            transform: translateX(-50%) translateY(0) rotate(-45deg);
}

/* hamburger menu & hamburger cover */
.hamburger-menu
{
    position: fixed;
    z-index: 665;
    top: 0;
    left: 0;

    width: 310px;
    height: 100%;

    -webkit-transition: -webkit-transform .4s ease-in-out;
            transition: -webkit-transform .4s ease-in-out;
            transition:         transform .4s ease-in-out;
            transition:         transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);

    background-color: #000;
}

.hamburger-menu.active
{
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
}

.hamburger-cover
{
    position: fixed;
    z-index: 666;
    top: 0;
    left: 0;

    visibility: hidden;

    width: 100%;
    height: 100%;

    -webkit-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;

    opacity: 0;
    background-color: rgba(215, 212, 209, 1);
}

.hamburger-menu.active ~ .hamburger-cover
{
    visibility: visible;

    -webkit-transform: translateX(310px);
            transform: translateX(310px);

    opacity: .8;
}

@media (max-width: 310px)
{
    .hamburger-menu
    {
        width: 100%;
    }

    .hamburger-menu.active ~ .hamburger-cover
    {
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
    }
}

/* hamburger items */
.hamburger-items
{
    padding: 70px 20px;
}

.hamburger-items h2,
.hamburger-items a
{
    color: white;
}

.hamburger-items h2
{
    font-weight: 100;

    margin-bottom: 5px;
}

.hamburger-items a
{
    font-size: 14px;
    font-weight: 500;

    -webkit-transition: color .4s ease-in-out;
            transition: color .4s ease-in-out;
}

.hamburger-items a:hover
{
    color: #898480;
}

/* content */
.content
{
    max-width: 970px;
    margin: 0 auto;
    padding: 0 80px;
    padding-top: 40px;

    -webkit-transition: -webkit-transform .4s ease-in-out;
            transition: -webkit-transform .4s ease-in-out;
            transition:         transform .4s ease-in-out;
            transition:         transform .4s ease-in-out, -webkit-transform .4s ease-in-out;

    background: rgb(223, 238, 253);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(223, 238, 253, 1)), color-stop(20%, rgba(251, 250, 245, 1)), color-stop(40%, rgba(223, 238, 253, 1)), color-stop(60%, rgba(254, 234, 243, 1)), color-stop(80%, rgba(251, 245, 229, 1)), to(rgba(252, 235, 245, 1)));
    background: linear-gradient(to bottom, rgba(223, 238, 253, 1) 0%, rgba(251, 250, 245, 1) 20%, rgba(223, 238, 253, 1) 40%, rgba(254, 234, 243, 1) 60%, rgba(251, 245, 229, 1) 80%, rgba(252, 235, 245, 1) 100%);
    border: 4px solid #ffffff;
}

.content.active
{
    -webkit-transform: translateX(310px);
            transform: translateX(310px);
}

@media (max-width: 990px)
{
    .content
    {
        margin: 0 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px)
{
    .content
    {
        padding: 0 10px;
        padding-top: 10px;
    }
}

/* article slider */
.article-slider
{
    position: relative;

    border: 1px solid #605754;
}

.slide
{
    height: 300px;
    padding: 20px 40px;

    background-position: center;
    background-size: cover;
}

.slide a
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    height: 100%;

    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

.slide h1,
.slide p
{
    color: black;
    text-shadow: 0 0 4px rgb(255, 255, 255);
}

.slide p
{
    max-width: 700px;
}

@media (max-width: 767px)
{
    .slide h1
    {
        font-size: 1.2rem;
    }

    .slide p
    {
        font-size: .8rem;
    }
}

/* slider buttons */
.slide-prev,
.slide-next
{
    font-size: 3rem;

    position: absolute;
    top: 50%;

    margin-left: 10px;

    cursor: pointer;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);

    color: white;
    text-shadow: 0 0 6px rgba(0, 0, 0, .5);
}

.slide-next
{
    right: 0;

    margin-right: 10px;
    margin-left: 0;
}

/* article banner */
.article-banner
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-top: 40px;
    margin-bottom: 30px;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.article-item
{
    width: 100%;
}

.article-item:not(:last-child)
{
    padding-right: 10px;
    padding-bottom: 10px;
}

.article-item-background
{
    height: 80px;

    background-position: center;
    background-size: cover;
}

.article-item-background.current
{
    border: 1px solid #605754;
}

@media (max-width: 767px)
{
    .article-banner
    {
        margin-top: 10px;

        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .article-item
    {
        width: 33%;
    }

    .article-item:nth-child(3),
    .article-item:nth-child(6),
    .article-item:nth-child(9)
    {
        padding: 0;
    }
}

/* share buttons & cards */
.share-buttons
{
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.share-buttons .inner a
{
    width: 20% !important;
}

/* article header */
.article-time h2
{
    font-size: 1.3rem;
    font-weight: 100;

    margin-top: 0;

    text-align: center;
}

@media (max-width: 767px)
{
    .article-time h2
    {
        font-size: 1rem;
    }
}

/* article */
.ui-sortable-handle > img,
.article p > img
{
    margin-top: 30px;
    border: 3px solid #ffffff;
}

.blog-card-wrap
{
    background-color: white;
}

.article a,
.article p
{
    overflow-wrap: break-word;
}

.article input,
.article textarea
{
    max-width: 100%;
}

/* nav links */
.nav-links
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-top: 90px;
    margin-bottom: 20px;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.nav-links h3
{
    margin: 0;
}

.nav-left,
.nav-right
{
    max-width: 50%;
}

.nav-right
{
    margin-left: auto;
}

@media (max-width: 767px)
{
    .nav-links
    {
        margin: 20px 0;

        text-align: center;

        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .nav-left,
    .nav-right
    {
        width: 100%;
        max-width: 100%;
    }
}

/* table of contents */
.tofc
{
    font-weight: 300;

    display: inline-block;

    padding: 25px;

    background-color: #eee;
}

.tofc ul
{
    margin: 0;
}

.tofc li
{
    margin-bottom: 0 !important;

    list-style: disc inside;
}

.tofc li:hover
{
    font-weight: bold;
}

/* widgets */
.widgets
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    padding: 70px 0;

    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.widget
{
    width: 50%;

    text-align: center;
}

.widget:nth-child(3)
{
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.widget:nth-child(3) .widget-title
{
    margin-bottom: 10px;
}

@media (max-width: 767px)
{
    .widgets
    {
        padding-top: 0;
    }

    .widget
    {
        width: 100%;
    }
}

/* error, archive items & search items */
.error
{
    text-align: center;
}

.archive-items,
.search-items
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.archive-item,
.search-item
{
    width: 50%;
    margin-bottom: 40px;
    padding: 0 10px;
}

.archive-item h3,
.search-item h3
{
    font-size: 1.2rem;

    margin: 0;
}

@media (max-width: 767px)
{
    .archive-item,
    .search-item
    {
        width: 100%;
    }
}

/* pagination */
.pagination
{
    width: 100%;

    text-align: center;
}

.pagination li
{
    font-weight: 300;

    display: inline-block;

    margin: 2px;
    padding: 2px 8px;

    cursor: pointer;

    color: white;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, .8);
}

.pagination li.active
{
    background-color: black;
}

.pagination span
{
    letter-spacing: 0;
}

/* scroll to top */
.scroll-to-top
{
    font-size: 3rem;

    position: fixed;
    right: 0;
    bottom: 0;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: 75px;
    height: 75px;

    cursor: pointer;
    -webkit-transition: opacity .6s ease;
            transition: opacity .6s ease;

    opacity: 0;
    color: white;
    background-color: black;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.scroll-to-top:hover
{
    opacity: 1 !important;
}

/* footer */
footer
{
    font-size: .8rem;
    font-weight: 500;

    padding-bottom: 50px;

    text-align: center;
}
/*
     FILE ARCHIVED ON 01:26:11 Jan 21, 2022 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 15:28:32 Oct 12, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.502
  exclusion.robots: 0.019
  exclusion.robots.policy: 0.009
  esindex: 0.01
  cdx.remote: 135.944
  LoadShardBlock: 391.016 (3)
  PetaboxLoader3.datanode: 726.795 (5)
  load_resource: 740.627
  PetaboxLoader3.resolve: 210.844
  loaddict: 224.219
*/