<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/* Base */
html { font-family: "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif; font-size: 16px; line-height: 1.5; }
body { background-color: rgb(245, 245, 245); color: rgb(0, 0, 0); }
h1 {
 padding: 0 2rem;
 font-size: 2em;
 letter-spacing: 10px;
} 
img { vertical-align: middle; }
a {
  text-decoration: none;
}

p {
  text-align:center;
}

/* Page header */
.page-header {
    background-color: rgb(255, 255, 255);
    border-bottom: 1px solid rgb(230, 230, 230);
    padding: 1px 0;
    width: 100%;
}
.page-header &gt; .inner {
    width: 980px;
    padding: 1px 10px;
    margin: auto;
}
.site-logo {
    line-height: 1;
}

.head {
	display: flex;
    flex-direction: row;
    padding: 1rem 0 0 0;
}

.snsbox {
	margin-left: auto;
	font-size: 16px;
	padding: 1px 0 ;
}



/* Page main */
.page-main {
    margin: auto;
    padding: 0 10px 100px;
    width: 950px;
}

/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: #fff;
}
.copyright a {
    color: #000;
    text-decoration: none;
	display: inline-block;
}


/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}
#pagetop a {
    display: block;
    background: #666;
    color: #fff;
    width: 50px;
    padding: 10px 5px;
    text-align: center;
}
#pagetop a:hover {
    background: #999;
}


/*
 * Gallery
 */

.gallery {
    margin: 0;
    padding: 0;
}

.gallery-item {
    list-style: none;
    margin-top: 10px;
}

/* 逕ｻ蜒上・隱ｭ縺ｿ霎ｼ縺ｿ荳ｭ縺ｯ隕九∴縺ｪ縺・ｈ縺・↓ */
.gallery-item.is-loading {
    opacity: 0;
}

/*
 * プログレス表示２
 */

/* ローディング画面の背景 */
.loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #000;
  z-index: 9999;
}

/* アニメーション */
.animation {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  -webkit-animation: loadinganimation 1500ms ease-out forwards infinite;
  animation: loadinganimation 1500ms ease-out forwards infinite;
}
@keyframes loadinganimation {
  from,to {
		opacity: 0;
  }
  50% {
		opacity: .5;
  }
}

</pre></body></html>