@charset "UTF-8";


html, body {
	height: 100%;
	overflow-x: hidden;
	/* FontPlus廃止：Google Fontsに移行 */
	/* font-family: "I-OTFゴシックオールドPro L"; */
	font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
	/* font-weight: 300; Light weight for thinner appearance - 削除 */
	background-color: var(--background-color, #e2e64a);
 	color: var(--main-color, #be59aa);
 	-webkit-overflow-scrolling: touch;
}

body {
	position: relative;
	width: 100%;
	overflow-y: auto !important;
}

/* 見出しタグの太字を解除（通常の太さに） */
h1, h2, h3, h4, h5, h6 {
	font-weight: normal; /* 太字を解除して通常の太さに */
}

/* strongタグとbタグの太字を解除（通常の太さに） */
strong, b {
	font-weight: normal; /* 太字を解除して通常の太さに */
}
html{
    font-size: 625%;/* 16pxに625%を掛けると100pxになる */
}
body{
	font-size: .16em;/* 通常サイズは100pxの0.16倍で16px。ここだけfont-size em */
}
.showText {
	visibility:visible;
}

ul{
	list-style: none;
}

.lazyload, .lazyloading {
    opacity: 0;
}
.lazyloaded {
    opacity: 1;
    transition: opacity 1000ms;
}

/* ----------------------------------------------------
　　　　　　　　　　　FONT PLUS（廃止：Google Fontsに移行）
---------------------------------------------------- */
#fontplus_kaku {
/* font-family: "I-OTFゴシックオールドPro L"; */
font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
}
#fontplus_kakub {
/* font-family: "I-OTFゴシックオールドPro D"; */
font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
}

.archives_tab_on{
	background-color: var(--main-color, #be59aa)!important;
	color: var(--background-color, #e2e64a)!important;
}
.archives_tab_off{
	background-color: unset!important;
}

.drawer-hamburger-icon_b,.drawer-hamburger-icon_b:after,.drawer-hamburger-icon_b:before{
	background-color: var(--main-color, #be59aa)!important;
}

.drawer-open .drawer-hamburger-icon_b{
	background-color:transparent!important;
}

.menu_bar3 a:link{
	color:#FFFFFF;
	text-decoration:none;
}
.menu_bar3 a:visited{
	color:#FFFFFF;
	text-decoration:none;
}
.menu_bar3 a:hover{
	color:#4D4D4D;
	text-decoration:a:link;
}
.menu_bar3 a:active {
	color:#FFFFFF;
	text-decoration:none;
}


.menu_on a:link{
	color:#000000;/*8069cf*/
	text-decoration:none;
}
.menu_on a:visited{
	color:#000000;/*8069cf*/
	text-decoration:none;
}
.menu_on a:hover{
	color:#000000;/*8069cf*/
	text-decoration:a:link;
}
.menu_on a:active {
	color:#000000;/*8069cf*/
	text-decoration:none;
}

.menu_on2 a:link{
	color:#000000;/*8069cf*/
	text-decoration:none;
}
.menu_on2 a:visited{
	color:#000000;/*8069cf*/
	text-decoration:none;
}
.menu_on2 a:hover{
	color:#000000;/*8069cf*/
	text-decoration:a:link;
}
.menu_on2 a:active {
	color:#000000;/*8069cf*/
	text-decoration:none;
}



/* link */
a:link {
	color: var(--main-color, #be59aa);
	text-decoration:none;
}
a:visited {
	color: var(--main-color, #be59aa);
	text-decoration:none;
}
a:hover {
	color: var(--main-color, #be59aa);
	text-decoration:underline;
}
a:active {
	color: var(--main-color, #be59aa);
	text-decoration:none;
}

li a:link{
	color: var(--main-color, #be59aa);
	text-decoration:none;
}
li a:visited{
	color: var(--main-color, #be59aa);
	text-decoration:none;
}
li a:hover{
	color: var(--main-color, #be59aa);
	text-decoration:a:link;
}
li a:active {
	color: var(--main-color, #be59aa);
	text-decoration:none;
}



/* .loadArea
--------------------------- */
.loadArea {
	margin: 0 auto 10px auto;
	width: 300px;
	text-align: left;
}
.loadSet1 {float: left;}
.loadSet2 {float: right;}

.loadArea .loadItem {
	padding: 10px 0;
	width: 300px;
	line-height: 160%;
	border-bottom: #666 1px dotted;
}
.loadArea #item1_1,
.loadArea #item2_1 {
	border-top: #666 1px dotted;
}
.loadArea .loadItem img {
	margin: 0 15px 0 0;
	width: 100px;
	height: 100px;
	float: left;
}

/* .nowLoading
--------------------------- */
.nowLoading {
	padding: 5px 0;
	width: 100%;
	text-align: center;
}

/* .loadMoreBtn
--------------------------- */
.loadMoreBtn {
	padding: 10px 0;
	text-align: center;
	border: #FFFFFF 1px solid;
	cursor: pointer;
}


/* Loading-spinner */
#loading{
	position: fixed;
	z-index: 9999999999;
	width: 100%;
	height: 100%;
	background: var(--background-color, #e2e64a);
}

.spinner {
  width: 40px;
  height: 40px;
  position: absolute;
  top:50%;
  left:50%;
  margin-top: -30px;
  margin-left: -20px;
  display: none;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: black;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: bounce 2.0s infinite ease-in-out;
  animation: bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}