html {
    background: #e6e9e9;
    background-image: linear-gradient(270deg, rgb(230, 233, 233) 0%, rgb(216, 221, 221) 100%);
}

.hh1 {
    font-family: "Noto Sans SC", sans-serif;
    font-size: 14px;
}

.hh2 {
    font-family: "M PLUS Rounded 1c", sans-serif;
}

.hh3 {
    font-family: "hannari", sans-serif;
}

.main {
    font-family: "Kosugi Maru", sans-serif;
    margin: 30 auto;
    padding-top: 30;
    font-size: 14px;
}

.tate {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

.wrapper {
    column-count: 2;
    column-rule: solid 1px #ccc;
    column-gap: 2.5rem;
    width: 80vw;
    /* ←これを足すだけ！ */
    max-width: 700px;
}


.btn-flat-border {
  display: inline-block;
  padding: 0.3em 1em;
  text-decoration: none;
  color: #67c5ff;
  border: solid 2px #67c5ff;
  border-radius: 3px;
  transition: .4s;
}

.btn-flat-border:hover {
  background: #67c5ff;
  color: white;
}
a:active {
    text-decoration: none !important;
}

a:not(.btn),
a:link:not(.btn) {
    color: #666666;
}

a:visited:not(.btn) {
    color: #999999;
}

body {
    background: #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 800px;
    padding: 2em 2em 4em;
    font-family: "Kosugi Maru", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #222;
    font-weight: 600;
    line-height: 1.3;
}

h2 {
    margin-top: 1.3em;
}

a {
    color: lightcoral;
}

b,
strong {
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 600;
}

.wf-hannari {
    font-family: "Hannari";
}

samp {
    display: none;
}

img {
    animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
    background: transparent;
    border: 10px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    display: block;
    margin: 1.3em auto;
    max-width: 95%;
}

$(document).on('click', '[data-toggle="lightbox"]', function(event) {
    event.preventDefault();
    $(this).ekkoLightbox();
}

);

$(this).ekkoLightbox( {

    alwaysShowClose: true,
    onShown: function() {
        console.log('Checking our the events huh?');
    }

    ,
    onNavigate: function(direction, itemIndex) console.log('Navigating '+direction+'. Current item: '+itemIndex);
}
}

);



@keyframes colorize {
    0% {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }

    100% {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
    }
}
