【オプション用CSS】 {
}
■■■スマホ（1-480）■■■ {
}
●クラス {
}
.fadeup▼ふわっと出現▼ {
}
/* 下から */
.fadeup{
	animation-name:fadeUpAnime;
	animation-duration:1s;/*アニメーション変化時間*/
	animation-fill-mode:both;/*アニメーションの開始と終了時の状態を指定*/
	animation-timing-function:ease;/* アニメーションの進行具合を操作する*/
	opacity:0;
}
/*アニメーションの開始から終了までを指定する*/
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeup-anima{
    opacity: 0;
}
/* 左から */

.fadeleft{
	animation-name:fadeLeftAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
	transform: translateX(-100px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fade-left-anima{
    opacity: 0;
}
/* 右から */

.faderight{
	animation-name:fadeRightAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fade-right-anima{
    opacity: 0;
}
.text-box-00▼テキストボックス▼ {
}
/* ▼便箋の背景▼ */
.text-box-line {
	display: inline;
	line-height: 26px;
	background-image: url(/images/sozai/text-box/text-box-line.gif);
	background-repeat: repeat-x;
	background-position: bottom;
}
/* ▼吹き出し･左▼ */
.text-box-balloon-left {
	position: relative;
	padding: 10px;
	width: auto;
	border: 1px solid #CCCCCC;
	z-index: 0;
    margin-top: 20px;
	margin-bottom: 10px;
	background-color: #FFF;
	filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.2));
	-webkit-filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.1));
	-ms-filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.2));
	margin-right: 3px;
}
.text-box-balloon-left:before {
	display: none;
}
.text-box-balloon-left:after {
	display: none;
}
/* ▼吹き出し･右▼ */
.text-box-balloon-right {
	position: relative;
	margin-right: 3px;
	padding: 10px;
	width: auto;
	border: 1px solid #CCCCCC;
	z-index: 0;
    margin-top: 20px;
	margin-bottom: 10px;
	background-color: #FFF;
	-webkit-filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.1));
}
.text-box-balloon-right:before {
	display: none;
}
.text-box-balloon-right:after {
	display: none;
}
/* ▼吹き出し･上▼ */
.text-box-balloon-top {
	position: relative;
	padding: 10px;
	width: auto;
	border: 1px solid #CCCCCC;
	z-index: 0;
	background-color: #FFF;
	margin-top: 25px;
	margin-right: 3px;
	margin-bottom: 3px;
	z-index: 0;
}
.text-box-balloon-top:before {
	content: "";
	position: absolute;
	top: -18px;
	left: 50%;
	margin-left: -9px;
	display: block;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 0 15px 18px 15px;
	border-color: transparent transparent #FFFFFF transparent;
	z-index: 0;
}
.text-box-balloon-top:after {
	content: "";
	position: absolute;
	top: -19px;
	left: 50%;
	margin-left: -10px;
	display: block;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 0 16px 19px 16px;
	border-color: transparent transparent #CCCCCC transparent;
	z-index: -1;
}
/* ▼吹き出し･下▼ */
.text-box-balloon-bottom {
	position: relative;
	padding: 15px;
	width: auto;
	border: 1px solid #CCCCCC;
	z-index: 0;
	margin-bottom: 30px;
	background-color: #FFF;
	margin-right: 3px;
}
.text-box-balloon-bottom:before {
	content: "";
	position: absolute;
	bottom: -18px;
	left: 50%;
	margin-left: -9px;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 18px 15px 0 15px;
	border-color: #FFFFFF transparent transparent transparent;
	z-index: 0;
}
.text-box-balloon-bottom:after {
	content: "";
	position: absolute;
	bottom: -19px;
	left: 50%;
	margin-left: -10px;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 19px 16px 0 16px;
	border-color: #CCCCCC transparent transparent transparent;
	z-index: -1;
}
　 {
}
.img-zoom▼画像オンマウスでズーム▼ {
}
/* ▼枠内でズーム▼ */
.scale-up {
	height: auto;
	border: 1px solid #CCC;
	overflow: hidden;
	display: block;
}
.scale-up img {
	-moz-transition: -moz-transform 0.5s linear; /* ←｢0.5s｣がズームの速度 (数字が大きいほど遅くなる) */
	-webkit-transition: -webkit-transform 0.5s linear;
	-o-transition: -o-transform 0.5s linear;
	-ms-transition: -ms-transform 0.5s linear;
	transition: transform 0.5s linear;
}
.scale-up img:hover {
	-webkit-transform: scale(1.1); /* ←ズーム後の画像サイズ (数字が大きいほど大きくなる) */
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
/* ▼枠ごとズーム▼ */ 
.img-zoom {
	-moz-transition: -moz-transform 0.5s linear; /* ←｢0.5s｣がズームの速度 (数字が大きいほど遅くなる) */
	-webkit-transition: -webkit-transform 0.5s linear;
	-o-transition: -o-transform 0.5s linear;
	-ms-transition: -ms-transform 0.5s linear;
	transition: transform 0.5s linear;
}
.img-zoom:hover {
	-webkit-transform: scale(1.1); /* ←ズーム後の画像サイズ (数字が大きいほど大きくなる) */
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
　 {
}
.info-0▼お知らせ掲示板▼ {
}
/* ▼BBSタイプ▼ */ 
.text-box-topics {
	width: auto;
	height: 300px;
	background-color: #FFF;
	display: block;
	border: 1px solid #CCC;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	margin-bottom: 5px;
	padding-right: 2px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.text-box-topics-scroll {
	font-size: 12px;
	text-align: right;
	display: block;
	margin-bottom: 3px;
}
/* ▼クラスタイプ▼ */ 
.text-box-topics-class {
	display: block;
	overflow: hidden;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 8px;
	padding-left: 15px;
	border: 1px solid #CCC;
}
.text-box-topics-block {
	display: block;
	overflow: hidden;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #CCC;
	margin-bottom: 10px;
}
.text-box-topics-left {
	display: block;
	width: auto;
}
.text-box-topics-right {
	display: block;
	padding-left: 20px;
}
　 {
}
.ggcalendar▼Googleカレンダー▼ {
}
.ggcalendar {
	position: relative;
	padding-bottom: 130%;
	height: 0;
	overflow: hidden;
	margin-right: auto;
	width: 100%;
	height: auto;
	margin-left: auto;
}
.ggcalendar iframe, .ggmapr object, .ggmap embed {
	position: absolute;
	top: 1px;
	left: 2px;
	width: 100%;
	height: 100%;
}
　 {
}
.youtube▼Youtube動画･埋め込み▼ {
}
.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}
　 {
}
.inview▼下スクロール要素を表示▼ {
}
/* ▼フェードイン▼ */    
.inviewfadeIn {
	opacity: 0;
	transition: 1.5s; /* ←動きの速さ (数字が大きいほど遅い) */
}
.fadeIn {
	opacity: 1.0;
}
/* ▼上にスライド▼ */    
.inviewUp {
	transform: translate(0, 40px); /* ←スライドの高さ*/  
	-webkit-transform: translate(0, 40px);
	transition: 1s; /* ←動きの速さ (数字が大きいほど遅い) */
}
.Up {
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
}
/* ▼ズームイン▼ */    
.inviewzoomIn {
	transform: scale(0, 0);
	-webkit-transform: scale(0, 0);
	transition: 2s; /* ←動きの速さ (数字が大きいほど遅い) */
}
.zoomIn {
	transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
}
/* ▼フェードイン＋上にスライド▼ */	   
.inviewfadeInUp {
	opacity: 0;
	transform: translate(0, 60px); /* ←スライドの高さ*/  
	-webkit-transform: translate(0, 60px);
	transition: 1s; /* ←動きの速さ (数字が大きいほど遅い) */
}
.fadeInUp {
	opacity: 1.0;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
}
　 {
}
.jump-bu▼ジャンプボタン▼ {
}
.jump-button-box {
	display: block;
	overflow: hidden;
}
.jump-button-box a {
	color: #FFF;
}
.jump-button01 {
	width: 46.8%;
	height: auto;
	margin-right: 1%;
	display: block;
	float: left;
	background-image: url(/images/sozai/option/jump-button.gif);
	background-repeat: repeat-x;
	font-size: 13px;
	line-height: 15px;
	padding-top: 1.3%;
	padding-bottom: 1.3%;
	padding-right: 0.7%;
	padding-left: 0.7%;
	text-align: center;
	border-radius: 5px;
	text-decoration: underline;
	margin-bottom: 1.3%;
}
.jump-button02 {
	width: 46.8%;
	height: auto;
	margin-right: 1%;
	display: block;
	float: left;
	background-image: url(/images/sozai/option/jump-button.gif);
	background-repeat: repeat-x;
	font-size: 13px;
	line-height: 15px;
	padding-top: 1.3%;
	padding-bottom: 1.3%;
	padding-right: 0.7%;
	padding-left: 0.7%;
	text-align: center;
	border-radius: 5px;
	text-decoration: underline;
	margin-bottom: 1.3%;
}
.jump-button03 {
	width: 46.8%;
	height: auto;
	margin-right: 1%;
	display: block;
	float: left;
	background-image: url(/images/sozai/option/jump-button.gif);
	background-repeat: repeat-x;
	font-size: 13px;
	line-height: 15px;
	padding-top: 1.3%;
	padding-bottom: 1.3%;
	padding-right: 0.7%;
	padding-left: 0.7%;
	text-align: center;
	border-radius: 5px;
	text-decoration: underline;
	margin-bottom: 1.3%;
}
.jump-button-border-box {
	display: block;
	overflow: hidden;
}
.jump-button-border-box a {
	color: #FF6A66;
}
.jump-button01-border {
	width: 46.8%;
	height: auto;
	margin-right: 1%;
	display: block;
	float: left;
	font-size: 13px;
	line-height: 15px;
	padding-top: 1.3%;
	padding-bottom: 1.3%;
	padding-right: 0.7%;
	padding-left: 0.7%;
	text-align: center;
	border-radius: 5px;
	border: 1px solid #FF6A66;
	text-decoration: underline;
	margin-bottom: 1.3%;
}
.jump-button02-border {
	width: 46.8%;
	height: auto;
	margin-right: 1%;
	display: block;
	float: left;
	font-size: 13px;
	line-height: 15px;
	padding-top: 1.3%;
	padding-bottom: 1.3%;
	padding-right: 0.7%;
	padding-left: 0.7%;
	text-align: center;
	border-radius: 5px;
	border: 1px solid #FF6A66;
	text-decoration: underline;
	margin-bottom: 1.3%;
}
.jump-button03-border {
	width: 46.8%;
	height: auto;
	margin-right: 1%;
	display: block;
	float: left;
	font-size: 13px;
	line-height: 15px;
	padding-top: 1.3%;
	padding-bottom: 1.3%;
	padding-right: 0.7%;
	padding-left: 0.7%;
	text-align: center;
	border-radius: 5px;
	border: 1px solid #FF6A66;
	text-decoration: underline;
	margin-bottom: 1.3%;
}
　 {
}
■■■タブレット（481-999）■■■ {
}
@media only screen and (min-width:481px) {
●クラス {
}
.text-box-00▼テキストボックス▼ {
}
/* ▼便箋の背景▼ */
.text-box-line {
	line-height: 30px;
}
/* ▼吹き出し･左▼ */
.text-box-balloon-left {
	padding: 15px;
    margin-top: 0px;
	margin-left: 49%;
	-webkit-filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.2));
}
.text-box-balloon-left:before {
	content: "";
	position: absolute;
	left: -14px;
	top: 50%;
	margin-top: -15px;
	display: block;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 14px 14px 14px 0;
	border-color: transparent #FFFFFF transparent transparent;
	z-index: 0;
}
.text-box-balloon-left:after {
	content: "";
	position: absolute;
	top: 50%;
	left: -15px;
	margin-top: -16px;
	display: block;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 15px 15px 15px 0;
	border-color: transparent #CCCCCC transparent transparent;
	z-index: -1;
}
/* ▼吹き出し･右▼ */
.text-box-balloon-right {
	padding: 15px;
    margin-top: 0px;
	margin-right: 49%;
	-webkit-filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.2));
}
.text-box-balloon-right:before {
	content: "";
	position: absolute;
	top: 50%;
	right: -15px;
	margin-top: -9px;
	display: block;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 15px 0 18px 15px;
	border-color: transparent transparent transparent #FFFFFF;
	z-index: 0;
}
.text-box-balloon-right:after {
	content: "";
	position: absolute;
	top: 50%;
	right: -16px;
	margin-top: -10px;
	display: block;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 16px 0 19px 16px;
	border-color: transparent transparent transparent #CCCCCC;
	z-index: -1;
}
/* ▼吹き出し･上▼ */
.text-box-balloon-top {
	padding: 15px;
	margin-top: 30px;
}
.info-0▼お知らせ掲示板▼ {
}
/* ▼BBSタイプ▼ */ 
.text-box-topics {
	height: 450px;
	padding-top: 23px;
	padding-bottom: 23px;
	padding-left: 23px;
}
.text-box-topics-scroll {
	font-size: 13px;
	margin-top: 15px;
}
/* ▼クラスタイプ▼ */ 
.text-box-topics-block {
	border-bottom: none;
	margin-bottom: 0px;
	padding-bottom: 0px;
}
.text-box-topics-block {
	margin-bottom: 7px;
}
.text-box-topics-left {
	width: 160px;
	float: left;
}
.text-box-topics-right {
	width: auto;
	float: left;
	padding-left: 0px;
}
.ggcalendar▼Googleカレンダー▼ {
}
.ggcalendar {
	padding-bottom: 80%;
}
.jump-bu▼ジャンプボタン▼ {
}
.jump-button01 {
	width: 47.3%;
	font-size: 16px;
	line-height: 23px;
	padding-top: 0.8%;
	padding-right: 1%;
	padding-bottom: 0.6%;
	padding-left: 1%;
	margin-right: 0.7%;
	margin-bottom: 0%;
}
.jump-button02 {
	width: 30.6%;
	font-size: 16px;
	line-height: 23px;
	padding-top: 0.8%;
	padding-right: 1%;
	padding-bottom: 0.6%;
	padding-left: 1%;
	margin-right: 0.7%;
	margin-bottom: 0%;
}
.jump-button03 {
	width: 22.3%;
	font-size: 16px;
	line-height: 23px;
	padding-top: 0.8%;
	padding-right: 1%;
	padding-bottom: 0.6%;
	padding-left: 1%;
	margin-right: 0.7%;
	margin-bottom: 0%;
}
.jump-button01-border {
	font-size: 16px;
	line-height: 23px;
	padding-top: 0.8%;
	padding-right: 1%;
	padding-bottom: 0.6%;
	padding-left: 1%;
	margin-right: 0.7%;
	margin-bottom: 0%;
}
.jump-button02-border {
	width: 30.1%;
	font-size: 16px;
	line-height: 23px;
	padding-top: 0.8%;
	padding-right: 1%;
	padding-bottom: 0.6%;
	padding-left: 1%;
	margin-right: 0.7%;
	margin-bottom: 0%;
}
.jump-button03-border {
	width: 21.8%;
	font-size: 16px;
	line-height: 23px;
	padding-top: 0.8%;
	padding-right: 1%;
	padding-bottom: 0.6%;
	padding-left: 1%;
	margin-right: 0.7%;
	margin-bottom: 0%;
}
　 {
}
}
■■■PC（1000-）■■■ {
}
@media only screen and (min-width:1000px) {
●クラス {
}
.text-box-00▼テキストボックス▼ {
}
/* ▼便箋の背景▼ */
.text-box-line {
	line-height: 33px;
}
/* ▼吹き出し･左▼ */
.text-box-balloon-left:before {
	left: -18px;
	border-width: 15px 18px 15px 0;
}
.text-box-balloon-left:after {
	left: -19px;
	border-width: 16px 19px 16px 0;
}
/* ▼吹き出し･右▼ */
.text-box-balloon-right:after {
	display: none;
}
/* ▼吹き出し･下▼ */
.text-box-balloon-bottom {
	padding: 10px;
	margin-bottom: 25px;;
}
.info-0▼お知らせ掲示板▼ {
}
/* ▼BBSタイプ▼ */ 
.text-box-topics {
	height: 480px;
}
.jump-bu▼ジャンプボタン▼ {
}
.jump-button01-border {
	width: 47%;
}
.jump-button02-border {
	width: 30.3%;
}
.jump-button03-border {
	width: 22%;
}
　 {
}
}
