@charset "UTF-8";

/* 基本設定
---------------------------------------------------------------------------------------------------*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{
	margin:0;
	padding:0;
	border:0;
	font:inherit;
	vertical-align:baseline;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{
	display:block;
}

ol,ul{
	list-style:none;
}
blockquote,q{
	quotes:none;
}
blockquote:before,blockquote:after,q:before,q:after{
	content:'';content:none;
}
table{
	border-collapse:collapse;
	border-spacing:0;
}

a:link {
	color:#000;
	text-decoration: none;
} /*未訪問のリンクの色*/
a:visited {
	color:#000;
	text-decoration: none;
} /*訪問済みのリンクの色*/
a:hover {
	color:#000;
	text-decoration: none;
} /*カーソルが乗っているリンクの色*/
a:active {
	color:#000;
	text-decoration: none;
} /*クリック中のリンクの色*/

a:hover img{
    opacity: 0.8;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

/* html
---------------------------------------------------------------------------------------------------*/
html{
	overflow-y:scroll;
	height:100%;
	margin-bottom:1px;
	scroll-behavior: smooth;
}

/* img（イメージ設定）
---------------------------------------------------------------------------------------------------*/


a img {
	border	: none;
}/* レイアウト崩れ防止、imgタグのborder="0"記述省略*/

img {
	vertical-align:top
}/* 画像の隙間をなくす */


/* body(PC)
---------------------------------------------------------------------------------------------------*/
body {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 0;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
	font-size:16px;	
	color: #000000;
	font-weight: 500;
	line-height:1;
	letter-spacing:0.1em;
	background-color: #fdfcf3;
	background-repeat: repeat;
	background-position: center;
	background-size:contain;
	z-index: -1;
	}

/* body(tablet)
---------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 868px) {
	body {
	font-size:16px;	
	}
}

/* body(sp)
---------------------------------------------------------------------------------------------------*/
@media only screen and (max-width : 480px ){
	body {
	font-size:16px;	
}
}

/*  ------------------------------------------------------------------

	RSS読み込みCSS

---------------------------------------------------------------------*/


.blogbox dl.list{
	border-bottom: dotted 1px #CCC;
	margin:0 10px 0 0;
	padding:5px 0;}
	
.blogbox dl.list dt {
  clear: left;
  float: left;
  margin: 0 0 0.2em;
  width: 7.5em;
	padding-top: 2em;
  padding-left: 5px;
  color: #000;
}

.blogbox dl.list dd {
	padding-top: 2em;
  margin-bottom: 0.2em;
  margin-left: 7.5em;
}

.blogbox dl.list a{
	color: #000;
}

/*  ------------------------------------------------------------------

	wrapper（ボディー箇所）

---------------------------------------------------------------------*/
.wrapper {
	width:100%;
	margin: 0 auto 0;
	padding:0 0;
	clear: both;
	}

.wrapper a:hover img{
    opacity: 0.8;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

@media only screen and (max-width: 868px) {
	.wrapper {
	width:100%;
	margin: 0 auto;
	padding:0 0;
	clear: both;
	}
}

@media only screen and (max-width : 480px ){
	.wrapper {
	width:100%;
	margin: 0 auto;
	padding:0 0;
	clear: both;
	}
}

strong{
	font-weight:bold;
}



/* 改行
---------------------------------------------------------------------------------------------------*/
.br_sp{
	display: none;
}

@media only screen and (max-width : 480px ){
	.br_sp{
	display: block;
}
}

.br_sp01{
	display: none;
}

@media only screen and (max-width: 868px) {
	.br_sp01{
	display: block;
}
}

.br_pc{
	display: block;
}

@media only screen and (max-width: 868px) {
	.br_pc{
	display: none;
}
}

/* header
---------------------------------------------------------------------------------------------------*/
#header{
	width: 100%;
	max-width: 960px;
	height: 100px;
	margin: 0 auto;
	padding: 0;	
	background-color: #fff;
	}

@media only screen and (max-width: 868px) {
	#header{
	height:auto;
	}
}

@media only screen and (max-width : 480px ){
	#header{
	height:auto;
	}
}

/* header枠（ロゴ）
---------------------------------------------------------------------------------------------------*/

#rogo{
	float: left;
	width: 350px;
	margin: 0;
	padding: 0;
}

@media only screen and (max-width: 868px) {
	#rogo{
	float: left;
	width: 40%;
	margin: 0;
	padding: 0;
}
}

@media only screen and (max-width : 480px ){
	#rogo{
	float: left;
	width: 50%;
	margin: 0 0 1%;
	padding: 0;
}
}

/* header枠（メニュー）
---------------------------------------------------------------------------------------------------*/

.navigation {
	height: 120px;
	background: #fff;
}
@media only screen and (max-width : 480px ){
    .navigation {
	height: 80px;
	background: #fff;
}
}
.brand {
	width: 350px;
	height: 100px;
	padding: 5px 0 0 20px;
	position: absolute;
	float: left;
	line-height: 70px;
	text-transform: uppercase;
}
.brand a,
.brand a:visited {
  color: #ffffff;
  text-decoration: none;
}
@media only screen and (max-width: 480px) {
	.brand {
		width: 70%;
		padding: 2% 0 0 2%;
	}
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
}
nav {
  float: right;
	font-size: 100%;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float: left;
  position: relative;
}
nav ul li a,
nav ul li a:visited {
  display: block;
  padding: 0 12px;
  line-height: 60px;
  background: #fff;
  color: #000000;
  text-decoration: none;
}
nav ul li a:hover,
nav ul li a:visited:hover {
  background: #04a1b4;
  color: #ffffff;
}
nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
  padding-left: 4px;
  content: " ▾";
  color: #000000; /* やじるしの色 */
}
nav ul li ul li {
  min-width: 300px; /* 小メニューの幅 */
}
nav ul li ul li a {
	padding: 15px;
	line-height: 20px;
	font-size: 100%;/* 小メニュー文字サイズ */
}
.nav-dropdown {
  position: absolute;
  display: none;
  z-index: 1;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}
/* Mobile navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  height: 70px;
  width: 70px;
}

br.menu001{
	line-height: 20px;
}
@media only screen and (max-width: 868px) {
  .nav-mobile {
    display: block;
  }

p.submenu001{
		color: #000;
		text-align: center;
        padding-top: 80%;
    padding-left: 10%;
	}

  nav {
    width: 100%;
    padding: 90px 0 0px;
  }
  nav ul {
    display: none;
  }
  nav ul li {
    float: none;
  }
  nav ul li a {
    padding: 15px;
    line-height: 20px;
  }
  nav ul li ul li a {
	  padding-left: 30px;
	  font-size: 120%;/* 小メニュー文字サイズ */
  }
  .nav-dropdown {
    position: static;
  }
}
@media screen and (min-width: 869px) {
  .nav-list {
    display: block !important;
  }
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 20px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 40px;
  background: #04a1b4;/* 三本線の色 */
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}

/* footer（パソコン）
---------------------------------------------------------------------------------------------------*/

#footer{
	width: 100%;
	margin:1% 0 0;
	padding: 0;
	background-color: #04a1b4;
	overflow:hidden;
	clear:both;
}

#footer a{
	color: #fff;
	text-decoration: none;
}

#footer a:hover{
	color: #fff;
	text-decoration: underline;
}

#footer a:hover img{
    opacity: 0.8;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

/* footer_sitemap（パソコン）
---------------------------------------------------------------------------------------------------*/
#footer_sitemap{
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	overflow: hidden;
	font-size: 90%;
	color: #fff;
}

#footer_sitemap ul.left0001{
	margin: 5% 0 5% 3%;
	width: 22%;
	float: left;
}

ul.left0001 li.first0001{
	width: 94%;
	margin:1% 1%;
	padding: 3% 2%;
	list-style-image:none;
}

ul.left0001 li.second0001{
	width: 86%;
	margin:1% 5%;
	padding: 2% 2%;
	list-style-image:url("../image/topic-path-white.png");
	line-height: 180%;
}
/* footer_sitemap（タブレット・スマホ）
---------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 868px) {
#footer_sitemap{
	display: none;
}

#footer_sitemap ul.left0001{
	display: none;
}

ul.left0001 li.first0001{
	display: none;
}

ul.left0001 li.second0001{
	display: none;
}
}

/* footer_bana（パソコン）
---------------------------------------------------------------------------------------------------*/
#footer_bana{
	width: 100%;
	height: 100px;
	margin: 0;
	padding: 12px 0 20px;
	background-color: rgba(255,255,255,0.9);
	position: fixed !important; 
	position: absolute;
	bottom:0;
	left:0;
	z-index:300;
}

#footer_bana div{
	width: 100%;
	max-width: 1024px;
	margin: 0 auto;
}

.footerbox_left{
	width: 30% !important;
	margin: 0;
	padding: 5px 0 0;
	float: left;
}

.footerbox_left02{
	width: 36% !important;
	margin: 0;
	padding: 0.5% 2%;
	float: left;
}

.footerbox_left02 p{
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 110%;
	line-height: 160%;
}

.footerbox_right{
	width: 30% !important;
	margin: 0;
	padding: 0%;
	float: right;
}

.footerbox_right img{
	margin: 0;
}


/* footer_bana（タブレット・スマホ）
---------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 868px) {
#footer_bana{
	display: none;
}
	
#footer_bana div{
	display: none;
}
	
.footerbox_left{
	display: none;
	}
.footerbox_right{
	display: none;
	}
.footerbox_right p{
	display: none;
}
}



/* copyright（パソコン・タブレット）
---------------------------------------------------------------------------------------------------*/
#copyright{
	background-color:#04a1b4;
}

#copyright p{
	margin-left:auto;
	margin-right:auto;
	padding:10px 0 140px;
	margin-top:0;
	margin-bottom:0;
	color:#FFF;
	text-align:center;
}

/*  copyright（スマホ）
---------------------------------------------------------------------------------------------------*/

@media only screen and (max-width : 480px ){
	#copyright{
	background-color:#04a1b4;
}

    #copyright p{
	margin-left:auto;
	margin-right:auto;
	padding:10px 0;
	margin-top:0;
	margin-bottom:80px;
	color:#FFF;
	text-align:center;
}
}

/*----------------------------------------------------

 footer001（スマホ時　タップボタン表示）

----------------------------------------------------*/
#footer001 {
	display: none;
}

@media only screen and (max-width: 868px) {
	#footer001 {
	display: none;
}
}

@media only screen and (max-width : 480px ){
	#footer001 {
	display: block;
    position: relative;
	margin:5px 0 0 0;
	text-align: center;
	color: #ccc;
	overflow: hidden;
	width:100%;
	position: fixed !important; 
	position: absolute;
	bottom:0;
	left:0;
	z-index:300;
}

#footerNav  {
	margin:0;
}

#footerNav li.start001 {
	float:left;
	width:25%;
}

#footerNav li.last001 {
	float:right;
	width:25%;
}
}

/*トップページ（画像切替CSSのみで切替）
---------------------------------------------------------------------------------------------------*/
#stage {
	width: 100%;
	max-width: 1920px;
	position: relative;
	margin: 0 auto;
	background: #fdfcf3;
}
#stage_sp {
	width: 100%;
	position: relative;
	margin: 0 auto;
	background: #fdfcf3;
}
.pic {
position: absolute;
}
.pic img {
width: 100%;
height: auto;
opacity:0;
-moz-animation: imgTrans 40s infinite;
-webkit-animation: imgTrans 40s ease-in infinite;
animation: imgTrans 40s infinite;
}
#photo1 img {
-moz-animation-delay: 0s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
}
#photo2 img {
-moz-animation-delay: 8s;
-webkit-animation-delay: 8s;
animation-delay: 8s;
}
#photo3 img {
-moz-animation-delay: 16s;
-webkit-animation-delay: 16s;
animation-delay: 16s;
}
#photo4 img{
-moz-animation-delay: 24s;
-webkit-animation-delay: 24s;
animation-delay: 24s;
}
#photo5 img {
-moz-animation-delay: 32s;
-webkit-animation-delay: 32s;
animation-delay: 32s;
}
#photo6 img {
-moz-animation-delay: 0s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
}
#photo7 img {
-moz-animation-delay: 8s;
-webkit-animation-delay: 8s;
animation-delay: 8s;
}
#photo8 img {
-moz-animation-delay: 16s;
-webkit-animation-delay: 16s;
animation-delay: 16s;
}
#photo9 img{
-moz-animation-delay: 24s;
-webkit-animation-delay: 24s;
animation-delay: 24s;
}
#photo0 img {
-moz-animation-delay: 32s;
-webkit-animation-delay: 32s;
animation-delay: 32s;
}
@-webkit-keyframes imgTrans {
0% { opacity:0; }
7% { opacity:1; }
18% { opacity:1; }
25% { opacity:0; }
100% { opacity:0; }
}
@-moz-keyframes imgTrans {
0% { opacity:0; }
7% { opacity:1; }
18% { opacity:1; }
25% { opacity:0; }
100% { opacity:0; }
}
@keyframes imgTrans {
0% { opacity:0; }
7% { opacity:1; }
18% { opacity:1; }
25% { opacity:0; }
100% { opacity:0; }
}


/*トップページ画像切替（パソコン表示・スマホ表示）seiko2024
---------------------------------------------------------------------------------------------------*/

/* パソコン・タブレット時表示 */
#header001_top{
	width:100%;
	margin:0 auto;
	padding: 0;
	overflow: hidden;
	background-color: #fff;
	}

@media only screen and (max-width: 868px) {
	#header001_top{
	width: 100%;
	margin:0 auto;
	padding:0;
	overflow: hidden;
	background-color: #fff;
	}
}	
	
@media only screen and (max-width : 480px ){
	#header001_top{
	display: none;
	}
}
/* スマホ時表示 */
#header002_top{
	width:100%;
	margin:0 auto 5%;
	padding: 0;
	overflow: hidden;
	background-color: #fff;
	display: block;
	}
	
@media only screen and (min-width: 480px) {
	#header002_top{
	display: none;
	}
}

/*  ------------------------------------------------------------------

	ロール時のスクロール動作 seiko2024

---------------------------------------------------------------------*/
.sa {
  opacity: 0;
  transition: all .8s ease;
}
 
.sa.show {
  opacity: 1;
  transform: none;
}
 
.sa--lr {
  transform: translate(-100px, 0);
}
 
.sa--rl {
  transform: translate(100px, 0);
}
 
.sa--up {
  transform: translate(0, 50px);
}
 
.sa--down {
  transform: translate(0, -100px);
}
 
.sa--scaleUp {
  transform: scale(.5);
}
 
.sa--scaleDown {
  transform: scale(1.5);
}
 
.sa--rotateL {
  transform: rotate(180deg);
}
 
.sa--rotateR {
  transform: rotate(-180deg);
}

/*  ------------------------------------------------------------------

	page_text001_left（左ブログ）

---------------------------------------------------------------------*/
div.page_text000{
	width: 100%;
	max-width: 960px;
	margin: 2% auto 2%;
	overflow: hidden;
}

div.page_text001_left {
	width:54%;
    height: 500px;
	margin:1% 0.5%;
	padding: 0;
	display: block;
	background-color: #fff;
	overflow-y: scroll;
	border:  #04a1b4 1px solid;
	box-sizing: border-box;
	float: left;
    font-size: 90% !important;
	}

div.page_text001_left p{
	width: 96%;
	margin: 0 auto;
	padding: 2%;
	text-align: center;
	line-height: 180%;
	color: #000000;
	font-family: source-han-sans-japanese, sans-serif;
}

div.page_text001_left a:hover{
	text-decoration: underline;
}

@media only screen and (max-width : 480px ){
	div.page_text001_left {
	width:99%;
	margin:0% 0.5% 8%;
	display: block;
	background-color: #fff;
	overflow-y: scroll;
	border:  #04a1b4 1px solid;
	box-sizing: border-box;
	float: none;
    font-size: 100% !important;
    line-height: 180%;
	}

	div.page_text001_left p{
	width: 96%;
	margin: 0 auto;
	padding: 2%;
	text-align: center;
	line-height: 200%;
	color: #000000;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
		font-size: 80%;
}
}

/*  ------------------------------------------------------------------

	div.bt_blog（ブログボタン）

---------------------------------------------------------------------*/
div.bt_blog{
	margin: 0;
	display: block;
}

@media only screen and (max-width : 480px ){
	div.bt_blog{
	margin: 5% 0 10%;
	display: block;
}
}

/*  ------------------------------------------------------------------

	page_text001_right（facebook）

---------------------------------------------------------------------*/

div.page_text001_right {
	width:44%;
    height: 500px;
	margin:1% 0.5%;
	padding: 0;
	display: block;
	background-color: #fff;
	overflow:hidden;
	border:  #04a1b4 1px solid;
	box-sizing: border-box;
	float: right;
	}

div.page_text001_right p{
	width: 96%;
	margin: 0 auto;
	padding: 2%;
	text-align: center;
	line-height: 180%;
	color: #000000;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
}

@media only screen and (max-width : 480px ){
	div.page_text001_right {
	width:99%;
	margin:1% 0.5% 8%;
	display: block;
	background-color: #fff;
	overflow:hidden;
	border:  #04a1b4 1px solid;
	box-sizing: border-box;
	float: none;
	}

	div.page_text001_right p{
	width: 96%;
	margin: 0 auto;
	padding: 2%;
	text-align: center;
	line-height: 200%;
	color: #000000;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
	font-size: 80%;
}
}

/* スマホ用 */
@media screen and (max-width: 868px) {
	.fb-container {
		width: 100%;
		max-width: 360px;
	}
}
 
/* PC用 */
@media screen and (min-width: 869px) {
	.fb-container {
		width: 500px;
	}
}

/*  ------------------------------------------------------------------

	page_text001_center（ブログ全体）

---------------------------------------------------------------------*/

div.page_text001_center {
	width:100%;
    height: 250px;
	max-width: 1080px;
	margin:3% auto 4% !important;
	padding: 0 !important;
	display: block;
	background-color: #fff;
	overflow: hidden;
	border:  #d6d6d6 1px solid;
	box-sizing: border-box;
    overflow-y: scroll;
	float: left;
	}

div.page_text001_center p{
	width: 96%;
	margin: 0 auto;
	padding: 0 2%;
	line-height: 180%;
}

div.page_text001_center a:hover{
	text-decoration: underline;
}



@media only screen and (max-width : 480px ){
	div.page_text001_center {
	width:98%;
    height: 300px;
	margin:1% auto;
	display: block;
	background-color: #fff;
	overflow: hidden;
	border:  #d6d6d6 1px solid;
	box-sizing: border-box;
    overflow-y: scroll;
	float: none;
	}

	div.page_text001_center p{
	width: 96%;
	margin: 0 auto;
	padding: 2% !important;
	line-height: 200%;
	font-size: 100%;
}
}

/*  ------------------------------------------------------------------

	feedburner（ブログカ所）

---------------------------------------------------------------------*/

#mainFeed {
	width:100%;
	height:225px;
	background-repeat:no-repeat;
	margin			: 0 auto 5%;
	padding-top:0;
}

#mainFeed .feedburnerFeedBlock {
	height			: 200px;
}

#mainFeed .feedburnerFeedBlock ul {
	height			: 300px;
	font-size		: 13px;
	overflow		: auto;
}

#mainFeed .feedburnerFeedBlock ul a {
	text-decoration	: underline;
	color			: #000;
}

#mainFeed .feedburnerFeedBlock li {
	margin			: 0 0 0 3%;
	padding			: 8% 0 0 2%;
	background: url("../image/topic-path-gray.gif") left bottom no-repeat;
}

#mainFeed .feedburnerFeedBlock .headline {
	display: block;
	margin-bottom: 1px;
	padding-left: 10px;
}

#mainFeed .feedburnerFeedBlock p.date {
	margin: -55px 0 8px -400px;
}

#mainFeed #creditfooter {
	display: none;
	margin			: -30px 0 0 10%;
}

	
/*  ------------------------------------------------------------------

	feedburner　タブレット

---------------------------------------------------------------------*/


@media only screen and (max-width: 868px) {
#mainFeed {
	width:100%;
	height:325px;
	background-repeat:no-repeat;
	margin			: 0 auto 5%;
	padding-top:0;
}

#mainFeed .feedburnerFeedBlock {
	height			: 200px;
}

#mainFeed .feedburnerFeedBlock ul {
	height			: 300px;
	font-size		: 13px;
	overflow		: auto;
}

#mainFeed .feedburnerFeedBlock ul a {
	text-decoration	: underline;
	color			: #000;
}

#mainFeed .feedburnerFeedBlock li {
	margin			: 0 0 0 3%;
	padding			: 8% 0 0 2%;
	background: url("../image/topic-path-gray.gif") left bottom no-repeat;
}

#mainFeed .feedburnerFeedBlock .headline {
	display: block;
	margin-bottom: 1px;
	padding-left: 10px;
}

#mainFeed .feedburnerFeedBlock p.date {
	margin: -55px 0 8px -400px;
}

#mainFeed #creditfooter {
	display: none;
	margin			: -30px 0 0 10%;
}
}

/*  ------------------------------------------------------------------

	feedburner スマホ

---------------------------------------------------------------------*/


@media only screen and (max-width : 480px ){
#mainFeed {
	width:100%;
	height:200px;
	background-repeat:no-repeat;
	margin			: 0 auto 5%;
	padding-top:0;
}

#mainFeed .feedburnerFeedBlock {
	height			: 200px;
}

#mainFeed .feedburnerFeedBlock ul {
	height			: 300px;
	font-size		: 13px;
	overflow		: auto;
	margin: 0;
}

#mainFeed .feedburnerFeedBlock ul a {
	text-decoration	: underline;
	color			: #000;
}

#mainFeed .feedburnerFeedBlock li {
	margin			: 0 0 0 2%;
	padding			: 3% 0 3% 1%;
	background: url("../image/topic-path-gray.gif") left center no-repeat;
}

#mainFeed .feedburnerFeedBlock .headline {
	display: block;
	margin-bottom: 1px;
	padding-left: 10px;
}

#mainFeed .feedburnerFeedBlock p.date {
	margin: -55px 0 8px -400px;
}

#mainFeed #creditfooter {
	display: none;
	margin			: -30px 0 0 10%;
}
}

/*  ------------------------------------------------------------------

	feedburner002

---------------------------------------------------------------------*/
#mainFeed002 {
	width:100%;
	height:200px;
	background-repeat:no-repeat;
	margin			: 0 auto 5%;
	padding-top:0%;
}

#mainFeed002 .feedburnerFeedBlock {
	height			: 200px;
}

#mainFeed002 .feedburnerFeedBlock ul {
	height			: 275px;
	font-size		: 13px;
	overflow		: auto;
}

#mainFeed002 .feedburnerFeedBlock ul a {
	text-decoration	: underline;
	color			: #000;
}

#mainFeed002 .feedburnerFeedBlock li {
	margin			: 0 0 0 5%;
	padding			: 3% 0 0 3%;
	background: url("../image/topic-path-gray.gif") left bottom no-repeat;
}

#mainFeed002 .feedburnerFeedBlock .headline {
	display: block;
	margin-bottom: 1px;
	padding-left: 10px;
}

#mainFeed002 .feedburnerFeedBlock p.date {
	margin: -55px 0 8px -400px;
}

#mainFeed002 #creditfooter {
	display: none;
	margin			: -30px 0 0 10%;
}	
/*  ------------------------------------------------------------------

	feedburner002　タブレット

---------------------------------------------------------------------*/

@media only screen and (max-width: 868px) {
#mainFeed002 {
	width:100%;
	height:200px;
	background-repeat:no-repeat;
	margin			: 0 auto 5%;
	padding-top:0;
}

#mainFeed002 .feedburnerFeedBlock {
	height			: 200px;
}

#mainFeed002 .feedburnerFeedBlock ul {
	height			: 300px;
	font-size		: 13px;
	overflow		: auto;
}

#mainFeed002 .feedburnerFeedBlock ul a {
	text-decoration	: underline;
	color			: #000;
}

#mainFeed002 .feedburnerFeedBlock li {
	margin			: 0 0 0 5%;
	padding			: 4% 0 0 1%;
	background: url("../image/topic-path-gray.gif") left bottom no-repeat;
}

#mainFeed002 .feedburnerFeedBlock .headline {
	display: block;
	margin-bottom: 1px;
	padding-left: 10px;
}

#mainFeed002 .feedburnerFeedBlock p.date {
	margin: -55px 0 8px -400px;
}

#mainFeed002 #creditfooter {
	margin			: -30px 0 0 10%;
}
}
/*  ------------------------------------------------------------------

	feedburner スマホ

---------------------------------------------------------------------*/
@media only screen and (max-width : 480px ){
#mainFeed002 {
	width:100%;
	height:200px;
	background-repeat:no-repeat;
	margin			: 0 auto 5%;
	padding-top:0;
}

#mainFeed002 .feedburnerFeedBlock {
	height			: 200px;
}

#mainFeed002 .feedburnerFeedBlock ul {
	height			: 300px;
	font-size		: 13px;
	overflow		: auto;
	margin: 0;
}

#mainFeed002 .feedburnerFeedBlock ul a {
	text-decoration	: underline;
	color			: #000;
}

#mainFeed002 .feedburnerFeedBlock li {
	margin			: 0 0 0 2%;
	padding			: 3% 0 3% 1%;
	background: url("../image/topic-path-gray.gif") left center no-repeat;
}

#mainFeed002 .feedburnerFeedBlock .headline {
	display: block;
	margin-bottom: 1px;
	padding-left: 10px;
}

#mainFeed002 .feedburnerFeedBlock p.date {
	margin: -55px 0 8px -400px;
}

#mainFeed002 #creditfooter {
	margin			: -30px 0 0 10%;
}
}


/*--------------------------------------------------------------------

 お問合せ

---------------------------------------------------------------------*/

ul.pankuzu001{
	margin: 2% auto;
	width: 100%;
	max-width: 1280px;
	list-style: none;
	overflow: hidden;
	clear: both;
}

ul.pankuzu001 li.sim000{
	margin: 5% 0; 
	padding: 3% 0;
	width: 33%;
	border: 1px #04a1b4 solid;
	box-sizing: border-box;
	text-align: center;
	color: #04a1b4;
	font-size: 120%;
	display: inline-block;
}

ul.pankuzu001 li.sim001{
	margin: 5% 0;
	padding: 3% 0;
	width: 34%;
	background-color: #04a1b4;
	border: 1px #04a1b4 solid;
	box-sizing: border-box;
	text-align: center;
	color: #fff;
	font-size: 120%;
	display: inline-block;
}

/*  ------------------------------------------------------------------

	お問い合わせ箇所使用

---------------------------------------------------------------------*/

#form-tbl {
	margin: 0 0 1%;
	padding-bottom: 5%;
	color: #000;
}

@media only screen and (max-width : 480px ){
	#body { margin-left: 0; }
	
	/* 投稿フォーム */
	#form-tbl{
		margin: 0 auto;
		padding: 0;
		text-align: center;
		color: #000;
	}
}
	/* 入力箇所*/
.enter001 {
	width: 80%;
	height: 30px;
	margin: 1%;
}

.btn{
	text-align: center;
}

.next001{
	margin: 5%;
}

/*  ------------------------------------------------------------------

	お問い合わせ箇所使用

---------------------------------------------------------------------*/


	/* 入力箇所*/
.enter001 {
	width: 98%;
	height: 30px;
	margin: 1%;
}

.btn{
	text-align: center;
}

.margin-bottom{
	margin-bottom: 30%;
}

.btn001{
	margin: 10% 0 0;
}
@media only screen and (max-width: 868px) {
.btn001{
	margin: 10% 0 0;
}
}

@media only screen and (max-width : 480px ){
.btn001{
	margin: 20% 0 0;
}
}

.next001{
	margin: 5%;
}

.bikou{
	margin: 1%;
	width: 98%;
}


/* 上段に戻るボタン seiko2024
---------------------------------------------------------------------------------------------------*/

.page-top{
	margin: 0 ;
	padding: 0 ;
	display: none;
}
 
.page-top p{
	margin: 0 ;
	padding: 0 ;
	position: fixed ;
	right: 16px ;
	bottom: 140px ;
    font-size: 90%;
}
 
.move-page-top{
	display:block;
	padding-top: 10px;
	background: #333333;
	width: 50px ;
	height: 40px ;
	color: #ffffff !important ;
	line-height: 15px ;
	letter-spacing:0.05em;
	text-decoration: none !important ;
	text-align: center ;
	text-indent:0.05em;
    border-radius: 25px;
}

.move-page-top a{
	color: #ffffff;
}

.move-page-top:hover{
	opacity: 0.85 ;
}

/*  ------------------------------------------------------------------

	h1.title001（共通・パソコン）最新

---------------------------------------------------------------------*/

h1.title001{
	margin: 0 auto;
	padding: 0;
	width: 100%;
	max-width: 1920px;
	list-style: none;
	clear: both;
	display: block;
	position: relative;
}


h1.title001 p{
	width: 90%;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	font-size: 150%;
	letter-spacing: 0.1em;
	font-weight:500;
	color: #000;
	text-shadow: 2px 2px 10px #fff;
	text-align: center;
	line-height: 180%;
	font-family: "Yu Mincho","YuMincho","Sawarabi Mincho", serif;
}
/*  ------------------------------------------------------------------

	h1.title001（タブレット）最新

---------------------------------------------------------------------*/
@media only screen and (max-width: 868px) {
	h1.title001 p{
		font-size: 150%;
	}
	}
/*  ------------------------------------------------------------------

	h1.title001（スマホ）最新

---------------------------------------------------------------------*/
@media only screen and (max-width : 480px ){
	h1.title001 p{
		font-size: 110%;
	}
	}
/*  ------------------------------------------------------------------

	h1.パソコン/スマホ切替

---------------------------------------------------------------------*/
h1 img.hpage001 {
}

@media only screen and (max-width: 868px) {
	h1 img.hpage001 {
	display: none;
}
}

h1 img.hpage002 {
}


@media only screen and (min-width:868px) {
	h1 img.hpage002 {
	display: none;
}
}

/*  ------------------------------------------------------------------

	h2.title001　友和会

---------------------------------------------------------------------*/

h2.title001{
	width:84%;
	margin:4% 7% 2%;
	padding:1%;
	border-bottom: #7fd27b solid 1px;
	text-align: center;
	line-height: 180%;
	color:#04a1b4;
	clear:both;
	font-size: 150%;
	font-weight: 800;
	display: inline-block;
	position: relative;
}

h2.title001::before{
	content: "";
  position: absolute;
  top: -2%;
  bottom: -10%;
  left: -2%;
  right: -2%;
  border-bottom: #04a1b4 solid 1px;
  z-index: -1;
}

@media only screen and (max-width : 480px ){
	h2.title001{
	width:92%;
	margin:10% 3% 2%;
	padding:1%;
	border-bottom: #7fd27b solid 1px;
	text-align: center;
	line-height: 180%;
	color:#04a1b4;
	clear:both;
	font-size: 130%;
	font-weight: 600;
}
}

/*  ------------------------------------------------------------------

	h2.title002　

---------------------------------------------------------------------*/

h2.title002{
	width:96%;
	margin:0 auto 0;
	padding:2%;
	text-align: center;
	line-height: 180%;
	color:#ffffff;
	clear:both;
	font-size: 150%;
	display: block;
}


@media only screen and (max-width : 480px ){
	h2.title002{
	width:96%;
	margin:0 auto;
	padding:3% 2%;
	text-align: center;
	line-height: 180%;
	color:#ffffff;
	clear:both;
	font-size: 120%;
}
}

/*  ------------------------------------------------------------------

	h2.title003

---------------------------------------------------------------------*/

h2.title003{
	width:100%;
	margin:4% auto 2%;
	padding:1%;
	text-align: center;
	line-height: 180%;
	color:#ffffff;
	clear:both;
	font-size: 150%;
	display: block;
}


@media only screen and (max-width : 480px ){
	h2.title003{
	width:100%;
	margin:10% auto;
	padding:1%;
	text-align: center;
	line-height: 180%;
	background-color: #04a1b4;
	color:#ffffff;
	clear:both;
	font-size: 120%;
}
}
/*  ------------------------------------------------------------------

	h2.title004（共通）

---------------------------------------------------------------------*/
h2.title004{
	width: 96%;
    max-width: 1080px;
	margin: 2% auto 2%;
	padding: 1% 2%;
	background: none;
	border-left: 2px #04a1b4 solid;
	border-bottom: 1px #04a1b4 dotted;
	color: #04a1b4;
    line-height: 120%;
	font-weight: 600;
    font-size: 110%;
	text-align: left;
	clear: both;
}
@media only screen and (max-width : 480px ){
	h2.title004{
	margin: 4% 0 2%;
    font-size: 120%;
    line-height: 150% !important;
	}
}
/*  ------------------------------------------------------------------

	h3.title001（白文字）

---------------------------------------------------------------------*/

h3.title001{
	width:96%;
    max-width: 960px;
	margin:2% auto 0;
	padding:2% 1%;
	border-bottom: #333333 solid 1px;
	text-align: center;
	line-height: 180%;
	clear:both;
	font-size: 130%;
    font-weight: 500;
}

@media only screen and (max-width: 868px) {
	h3.title001{
	font-size: 130%;
    font-weight: 500;
}
}

@media only screen and (max-width : 480px ){
	h3.title001{
	font-size: 130%;
    font-weight: 500;
}
}

/*  ------------------------------------------------------------------

	h3.title002（黒文字　左線 オレンジ） 友和会

---------------------------------------------------------------------*/

h3.title002{
	width:96%;
	max-width: 960px;
	margin:3% auto 0;
	padding:1%;
	text-align: left;
    border-left: 3px #ffb039 solid;
	border-bottom: 1px #d6d6d6 solid;
    line-height: 180%;
	clear:both;
	font-size: 110%;
}

@media only screen and (max-width: 868px) {
	h3.title002{
}
}

@media only screen and (max-width : 480px ){
	h3.title002{
        width: 94%;
        margin:4% auto 0;
}
}


/*  ------------------------------------------------------------------

	h3.title003（黒文字　左線　青） 

---------------------------------------------------------------------*/

h3.title003a{
	width:76%;
    height: auto;
	max-width: 960px;
	margin:3% auto 0;
	padding:1% 3% 1% 21%;
	text-align: left;
    vertical-align: middle;
    background-image: url("../image/common/tokuchou_01.png");
    background-repeat: no-repeat;
    background-position: 1% 1%;
    background-size: contain !important;
    line-height: 180%;
	clear:both;
	font-size: 110%;
}

@media only screen and (max-width: 868px) {
	h3.title003a{
}
}

@media only screen and (max-width : 480px ){
	h3.title003a{
}
}

h3.title003b{
	width:76%;
    height: auto;
	max-width: 960px;
	margin:3% auto 0;
	padding:1% 3% 1% 21%;
	text-align: left;
    vertical-align: middle;
    background-image: url("../image/common/tokuchou_02.png");
    background-repeat: no-repeat;
    background-position: 1% 1%;
    background-size: contain !important;
    line-height: 180%;
	clear:both;
	font-size: 110%;
}

@media only screen and (max-width: 868px) {
	h3.title003b{
}
}

@media only screen and (max-width : 480px ){
	h3.title003b{
}
}

h3.title003c{
	width:76%;
    height: auto;
	max-width: 960px;
	margin:3% auto 0;
	padding:1% 3% 1% 21%;
	text-align: left;
    vertical-align: middle;
    background-image: url("../image/common/tokuchou_03.png");
    background-repeat: no-repeat;
    background-position: 1% 1%;
    background-size: contain !important;
    line-height: 180%;
	clear:both;
	font-size: 110%;
}

@media only screen and (max-width: 868px) {
	h3.title003c{
}
}

@media only screen and (max-width : 480px ){
	h3.title003c{
}
}

/*  ------------------------------------------------------------------

	h3.title004（白文字　背景白）友和会

---------------------------------------------------------------------*/
h3.title004{
	width:96%;
	max-width: 960px;
	margin:3% auto 0;
	padding:1%;
	text-align: left;
    background-color:  #ffb039;
    color: #ffffff;
    line-height: 180%;
	clear:both;
	font-size: 110%;
}

@media only screen and (max-width: 868px) {
	h3.title004{
}
}

@media only screen and (max-width : 480px ){
	h3.title004{
}
}

/*  ------------------------------------------------------------------

	h3.title004_a（共通）

---------------------------------------------------------------------*/
h3.title004_a{
	width: 96%;
	margin: 2% 0 2%;
	padding: 1% 2%;
	background: none;
	border-left: 2px #ffb039 solid;
	border-bottom: 1px #ffb039 dotted;
	color: #ffb039;
	font-weight: 600;
	text-align: left;
	clear: both;
}
@media only screen and (max-width : 480px ){
	h3.title004_a{
	margin: 4% 0 2%;
	}
	}

/*  ------------------------------------------------------------------

	h3.title004_b（共通）

---------------------------------------------------------------------*/
h3.title004_b{
	width: 96%;
	margin: 2% 0 2%;
	padding: 1% 2%;
	background: none;
	border-left: 2px #3399c7 solid;
	border-bottom: 1px #3399c7 dotted;
	color: #3399c7;
	font-weight: 600;
	text-align: left;
	clear: both;
}
@media only screen and (max-width : 480px ){
	h3.title004_b{
	margin: 4% 0 2%;
	}
	}
/*  ------------------------------------------------------------------

	h3.title004_c（共通）

---------------------------------------------------------------------*/
h3.title004_c{
	width: 96%;
	margin: 2% 0 2%;
	padding: 1% 2%;
	background: none;
	border-left: 2px #ffb039 solid;
	color: #ffb039;
	font-weight: 600;
	text-align: left;
	clear: both;
}
@media only screen and (max-width : 480px ){
	h3.title004_c{
	margin: 4% 0 2%;
	}
	}

/*  ------------------------------------------------------------------

	h3.title005（共通）

---------------------------------------------------------------------*/
h3.title005{
	width: 96%;
	margin: 2% 0 2%;
	padding: 1% 2%;
	background: none;
	border-bottom: 1px #ffb039 dotted;
	color: #ffb039;
	font-weight: 600;
	text-align: left;
}
@media only screen and (max-width : 480px ){
	h3.title005{
	margin: 4% 0 2%;
	}
}

h3.title005 a{
	text-decoration: none !important;
	color: #ffb039 !important;
}

h3.title005 a:hover{
	text-decoration: underline;
	color: #fe6a12 !important;
	transition: 0.5s;
}
/*  ------------------------------------------------------------------

	h4.title001（黒文字　左線 オレンジ） 友和会

---------------------------------------------------------------------*/

h4.title001{
	width:96%;
	max-width: 960px;
	margin:3% auto 0;
	padding:1%;
	text-align: left;
	border-bottom: 1px #d6d6d6 dashed;
    line-height: 180%;
	clear:both;
	font-size: 110%;
    color: #ff6600;
}

@media only screen and (max-width: 868px) {
	h4.title001{
}
}

@media only screen and (max-width : 480px ){
	h4.title001{
}
}

/*  ------------------------------------------------------------------

	h4.title001（黒文字　左線 オレンジ） 友和会

---------------------------------------------------------------------*/

h4.title002{
	width:100%;
	max-width: 1280px;
	margin:0 auto 3%;
	padding:1%;
	text-align: left;
    line-height: 180%;
	clear:both;
	font-size: 130%;
    color: #ffffff;
    background-color: #ffb039;
}

@media only screen and (max-width: 868px) {
	h4.title002{
}
}

@media only screen and (max-width : 480px ){
	h4.title002{
}
}


/*  ------------------------------------------------------------------

	↑ここまで

---------------------------------------------------------------------*/



/* 
---------------------------------------------------------------------------------------------------*/

.sec001 {
	width:920px;
	margin: 20px auto;
	padding: 20px;
	display: block;
	color: #000000;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
	line-height: 28px;
	border: none;
	background-color: #fff;
	overflow: hidden;
	clear: both;
	}

@media only screen and (max-width: 868px) {
	.sec001  {
	width:96%;
	margin: 20px auto 0;
	padding: 2%;
	display: block;
	color: #000000;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
	line-height: 28px;
	border: none;
	}
}

@media only screen and (max-width : 480px ){
	.sec001  {
	width:98%;
	margin: 5% auto 0;
	padding: 5% 1%;
	display: block;
	color: #000000;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
	line-height: 28px;
	border: none;
	}
}

.sec001 p{
	width: 900px;
	padding: 10px;
	border: none;
}

@media only screen and (max-width: 868px) {
	.sec001 p{
	width:90%;
	padding: 10px;
	border: none;
	}
}

@media only screen and (max-width : 480px ){
	.sec001 p{
	width:94%;
	padding: 10px;
	border: none;
    }
}

.sec001 p.border{
	width: 860px;
	padding: 30px 30px;
	border: 1px #d6d6d6 solid;
}

@media only screen and (max-width: 868px) {
	.sec001 p.border{
	width:90%;
	padding: 10px;
	border: 1px #d6d6d6 solid;
	}
}

@media only screen and (max-width : 480px ){
	.sec001 p.border{
	width:94%;
	padding: 10px;
	border: 1px #d6d6d6 solid;
    }
}

.sec001 p.scroll001{
	width: 800px;
	height: 300px;
	margin: 50px auto;
	padding: 30px 30px;
	border: 1px #d6d6d6 solid;
	overflow-y: scroll;
}

@media only screen and (max-width: 868px) {
	.sec001 p.scroll001{
	width:90%;
	height: 300px;
	margin: 50px auto;
	padding: 10px;
	border: 1px #d6d6d6 solid;
	overflow-y: scroll;
	}
}

@media only screen and (max-width : 480px ){
	.sec001 p.scroll001{
	width:90%;
	height: 250px;
	margin: 10px auto 15px;
	padding: 10px;
	border: 1px #d6d6d6 solid;
	overflow-y: scroll;
    }
}

.sec001 p.img{
	width: 864px;
	margin: 0 auto;
	padding: 10px;
	border: none;
}

@media only screen and (max-width: 868px) {
	.sec001 p.img{
	width:90%;
	margin: 0 auto;
	padding: 10px;
	border: none;
	}
}

@media only screen and (max-width : 480px ){
	.sec001 p.img{
	width:94%;
	margin: 0 auto;
	padding: 10px;
	border: none;
    }
}



#fb_area{
	margin:10px 0 30px 0;
}



/* .viewer
------------------------- */
.viewer {
    margin: 0 auto;
    width: 100%;
	height: auto;
    position: relative;
    overflow: hidden;
	box-shadow:0 0 10px 3px #fff;
	clear:both;
}
.viewer ul {
    width:100%;
	height: auto;
    overflow: hidden;
    position: relative;
	
}
.viewer ul li {
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
}

@media screen and (max-width: 760px) {
.viewer {
    margin: 0 auto;
    width: 100%;
	height: auto;
    position: relative;
    overflow: hidden;
	box-shadow:0 0 10px 3px #fff;
	clear:both;
}
.viewer ul {
    width:100%;
	height: auto;
    overflow: hidden;
    position: relative;
	
}
.viewer ul li {
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
}
}




 
/* sideNavi
------------------------- */
.viewer .btnPrev,
.viewer .btnNext {
    margin-top: -25px;
    top: 50%;
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 101;
}
.viewer .btnPrev {
    left: 10px;
    background: #ccc url(../img/btnPrev.jpg) no-repeat center center;
}
.viewer .btnNext {
    right: 10px;
    background: #ccc url(../img/btnNext.jpg) no-repeat center center;
}
 
 
/* =======================================
    ClearFixElements
======================================= */
.viewer ul:after {
    content: ".";
    height: 0;
    clear: both;
    display: block;
    visibility: hidden;
}
 
.viewer ul {
    display: inline-block;
    overflow: hidden;
}















/*  ------------------------------------------------------------------

	img001�E

---------------------------------------------------------------------*/

div.page_img001 {
	width:960px;
	margin:0 auto;
	padding: 0 0 140px 0;
	display: block;
	background-color: #ffffff;
	overflow: hidden;
	clear: both;
	}

div.page_img001 p{
	padding: 20px 0;
	text-align: center;
	line-height: 45px;
	color: #000000;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
	display: block;
}



/*  ------------------------------------------------------------------

	img001�E

---------------------------------------------------------------------*/

@media only screen and (max-width: 868px) {
	div.page_img001 {
	width:100%;
	margin:0 auto;
	padding: 0 0 140px 0;
	display: block;
	background-color: #ffffff;
	overflow: hidden;
	}
	
div.page_img001 p{
	padding: 20px 0;
	text-align: center;
	line-height: 45px;
	color: #000000;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
}
}

/*  ------------------------------------------------------------------

	img001�E

---------------------------------------------------------------------*/

@media only screen and (max-width : 480px ){
	div.page_img001 {
	width:100%;
	margin:0 auto;
	padding: 0 0 80px 0;
	display: block;
	background-color: #ffffff;
	overflow: hidden;
	}
	
div.page_img001 p{
	padding: 10px 0;
	text-align: center;
	line-height: 40px;
	color: #000000;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
}
}

/*  ------------------------------------------------------------------

	img002�E

---------------------------------------------------------------------*/

div.page_img002 {
	width:100%;
	margin:0 auto;
	padding: 0 0 140px 0;
	display: block;
	background-color: #c9bfbf;
	overflow: hidden;
	}

div.page_img002 p{
	padding: 20px 0;
	text-align: center;
	line-height: 45px;
	color: #ffffff;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
	display: block;
}

/*  ------------------------------------------------------------------

	img002�E

---------------------------------------------------------------------*/

@media only screen and (max-width: 868px) {
	div.page_img002 {
	width:100%;
	margin:0 auto;
	padding: 0 0 140px 0;
	display: block;
	background-color: #c9bfbf;
	overflow: hidden;
}
	
div.page_img002 p{
	padding: 20px 0;
	text-align: center;
	line-height: 45px;
	color: #ffffff;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
	display: block;
}
}

/*  ------------------------------------------------------------------

	img002�E

---------------------------------------------------------------------*/

@media only screen and (max-width : 480px ){
	div.page_img002 {
	width:100%;
	margin:0 auto;
	padding: 0 0 80px 0;
	display: block;
	background-color: #c9bfbf;
	overflow: hidden;
}
	
div.page_img002 p{
	padding: 10px 0;
	text-align: center;
	line-height: 40px;
	color: #ffffff;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
	display: block;
}
}

/*  ------------------------------------------------------------------

	bg_color001 �w�i�� �p�\�R��

---------------------------------------------------------------------*/

div.bg_color001 {
	width:100%;
	margin:10px auto;
	padding: 0 0 140px 0;
	display: block;
	background-color: #ffffff;
	overflow: hidden;
	clear: both;
	}


/*  ------------------------------------------------------------------

	bg_color001 �w�i�� �^�u���b�g

---------------------------------------------------------------------*/

@media only screen and (max-width: 868px) {
	div.bg_color001 {
	width:100%;
	margin:10px auto;
	padding: 0 0 80px 0;
	display: block;
	background-color: #ffffff;
	overflow: hidden;
	}
}

/*  ------------------------------------------------------------------

	bg_color001 �w�i�� �X�}�z

---------------------------------------------------------------------*/

@media only screen and (max-width : 480px ){
	div.bg_color001 {
	width:100%;
	margin:2% auto;
	padding: 0 0 40px 0;
	display: block;
	background-color: #ffffff;
	overflow: hidden;
	}
}

/*  ------------------------------------------------------------------

	bg_color002 

---------------------------------------------------------------------*/

div.bg_color002 {
	width:100%;
	margin:10px auto;
	padding: 0;
	display: block;
	background-color: #ffffff;
	overflow: hidden;
	clear: both;
	border: 1px solid #d6d6d6;
	box-sizing: border-box;
	}


/*  ------------------------------------------------------------------

	bg_color002 

---------------------------------------------------------------------*/

@media only screen and (max-width: 868px) {
	div.bg_color002 {
	width:100%;
	margin:10px auto;
	padding: 0;
	display: block;
	background-color: #ffffff;
	overflow: hidden;
	border: 1px solid #d6d6d6;
	box-sizing: border-box;
	}
}

/*  ------------------------------------------------------------------

	bg_color002 

---------------------------------------------------------------------*/

@media only screen and (max-width : 480px ){
	div.bg_color002 {
	width:100%;
	margin:2% auto;
	padding: 0;
	display: block;
	background-color: #ffffff;
	overflow: hidden;
	border: 1px solid #d6d6d6;
	box-sizing: border-box;
	}	
}


/*  ------------------------------------------------------------------

	img003�E

---------------------------------------------------------------------*/

div.page_img003 {
	width:100%;
	margin:0 auto;
	padding: 0 0 80px 0;
	display: block;
	background-color: #ffffff;
	overflow: hidden;
	}

div.page_img003 p{
	padding: 20px 0;
	text-align: center;
	line-height: 45px;
	color: #000000;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
	display: block;
}



/*  ------------------------------------------------------------------

	img003�E

---------------------------------------------------------------------*/

@media only screen and (max-width: 868px) {
	div.page_img003 {
	width:100%;
	margin:0 auto;
	padding: 0 0 80px 0;
	display: block;
	background-color: #ffffff;
	overflow: hidden;
	}
	
div.page_img003 p{
	padding: 20px 0;
	text-align: center;
	line-height: 45px;
	color: #000000;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
}
}

/*  ------------------------------------------------------------------

	img003�E

---------------------------------------------------------------------*/

@media only screen and (max-width : 480px ){
	div.page_img003 {
	width:100%;
	margin:0 auto;
	padding: 0 0 40px 0;
	display: block;
	background-color: #ffffff;
	overflow: hidden;
	}
	
div.page_img003 p{
	padding: 10px 0;
	text-align: center;
	line-height: 40px;
	color: #000000;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
}
}

/*  ------------------------------------------------------------------

	img004�E

---------------------------------------------------------------------*/

div.page_img004 {
	width:100%;
	margin:50px auto 0;
	padding: 0 0 80px 0;
	display: block;
	background-color: #ffffff;
	overflow: hidden;
	}

div.page_img004 p{
	padding: 20px 0;
	text-align: center;
	line-height: 45px;
	color: #000000;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
	display: block;
}



/*  ------------------------------------------------------------------

	img004�E

---------------------------------------------------------------------*/

@media only screen and (max-width: 868px) {
	div.page_img004 {
	width:100%;
	margin:50px auto 0;
	padding: 0 0 80px 0;
	display: block;
	background-color: #ffffff;
	overflow: hidden;
	}
	
div.page_img004 p{
	padding: 20px 0;
	text-align: center;
	line-height: 45px;
	color: #000000;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
}
}

/*  ------------------------------------------------------------------

	img004�E

---------------------------------------------------------------------*/

@media only screen and (max-width : 480px ){
	div.page_img004 {
	width:90%;
	margin:30px auto 0;
	padding: 0 2% 40px;
	display: block;
	background-color: #ffffff;
	overflow: hidden;
	}
	
div.page_img004 p{
	padding: 10px 0;
	text-align: center;
	line-height: 40px;
	color: #000000;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
}
}



/*  ------------------------------------------------------------------

	����\�@�^�O

---------------------------------------------------------------------*/

ul.price0001{
	margin: 0 auto;
	width: 960px;
	list-style-image:none;
}

ul.price0001 li{
	float: left;
	margin: 0.5% 0.5% 0% 0;
	padding: 1% 0;
	width: 24%;
	text-align: center;
	background-color: #4c3b32;
	background-image: url("../image/common/navi001.png");
	background-repeat: no-repeat;
	background-position: 10%;
	color: #ffffff;
}

ul.price0001 li a{
	color: #ffffff;
}

/*  ------------------------------------------------------------------

	����\�@�^�O(�X�}�z)

---------------------------------------------------------------------*/
@media only screen and (max-width : 480px ){
ul.price0001{
	margin: 0 auto;
	width: 100%;
	list-style: none;
}

ul.price0001 li{
	float: left;
	margin: 0.5% 0.5% 0% 0;
	padding: 1% 0;
	width: 48%;
	text-align: center;
	background-color: #4c3b32;
	background-image: url("../image/common/navi001.png");
	background-repeat: no-repeat;
	background-position: 2%;
	color: #ffffff;
	display: block;
}

ul.price0001 li a{
	color: #ffffff;
}
}




/*  ------------------------------------------------------------------

	リストスタイル(　　　)スタイルペ�Eジ　パソコン

---------------------------------------------------------------------*/

div.style_all{
	position: relative;
    overflow: hidden;
}

ul.style01{
	width: 935px;
	float:left;
    left:50%;
    position:relative;
	padding-left: 25px;
}

ul.style01 li{
	float:left;
    left:-50%;
    position:relative;
	width: 240px;
	margin: 20px 30px;
}


ul.style01 li a:hover img{
opacity:0.60;
filter:alpha(opacity=60);
-ms-filter: "alpha( opacity=60 )";
-moz-opacity:0.60;
	transition: 2.0s;
}

/*  ------------------------------------------------------------------

	リストスタイル(　　　)スタイルペ�Eジ　タブレチE��

---------------------------------------------------------------------*/

@media only screen and (max-width: 868px) {
div.style_all{
	position: relative;
    overflow: hidden;
}

ul.style01{
	width: 640px;
	float:left;
    left:50%;
    position:relative;
	padding-left: 25px;
}

ul.style01 li{
	float:left;
    left:-50%;
    position:relative;
	width: 240px;
	margin: 20px 30px;
}


ul.style01 li a:hover img{
opacity:0.60;
filter:alpha(opacity=60);
-ms-filter: "alpha( opacity=60 )";
-moz-opacity:0.60;
		transition: 2.0s;
}
}

/*  ------------------------------------------------------------------

	リストスタイル(　　　)スタイルペ�Eジ　スマ�E

---------------------------------------------------------------------*/

@media only screen and (max-width : 480px ){
div.style_all{
	position: relative;
    overflow: hidden;
}

ul.style01{
	width: 100%;
	float:left;
    left:50%;
    position:relative;
	padding-left: 2%;
}

ul.style01 li{
	float:left;
    left:-50%;
    position:relative;
	width: 40%;
	margin: 20px 4%;
}


ul.style01 li a:hover img{
opacity:0.60;
filter:alpha(opacity=60);
-ms-filter: "alpha( opacity=60 )";
-moz-opacity:0.60;
		transition: 2.0s;
}
}


.select1 {
	width:90%;
	padding: 2%;
	margin: 2%;
	border: 1px solid #d4d4d4;
	vertical-align: middle;
}

.select2 {
	width:100%;
	padding: 0;
	margin: 0;
	border: 1px solid #d4d4d4;
	vertical-align: middle;
}

.time001{
	width: 18%;
	height: 40px;
	margin: 1%;
}

.time002{
	width: 44%;
	height: 40px;
	margin: 1%;
}

.table_posi01{
	margin: 0;
	padding: 0 0 20px;
}

.form_txt2 {
	width: 90%;
	height: 200px;
	border: 1px solid #d4d4d4;
	padding: 2%;
	margin: 2%;
}

.form_up001{
	margin:30px auto 0 auto;
	text-align: center;
}

.f_bu{
	padding: 5px 10px;
	margin: 0 auto 30px;
}

div.kakunin{
	margin: 0 0 0 60px;
	padding: 10px 0 60px;
	line-height:160%;
	text-align:center;
	color: #000000;
}

p.kakunin001{
	margin: 0;
	padding: 10px 0 60px;
	line-height:30px !important;
	text-align:center !important;
	color: #000000;
}




/*  ------------------------------------------------------------------

	動画

---------------------------------------------------------------------*/

div.video {
    margin: 5% auto;
    max-width: 780px;
	position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
     height: 0;
     overflow: hidden;
	}

div.video iframe{
	position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 80%;
}

div.video p{
	width: 46%;
	margin: 0 1%;
	float: left;
}

@media only screen and (max-width : 480px ){
div.video {
    margin: 0;
	position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
     height: 0;
     overflow: hidden;
	}

div.video iframe{
	position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 80%;
}
div.video p{
	width: 96%;
	margin: 0 1%;
	float: left;
}

}

/*  ------------------------------------------------------------------

	動画 半分

---------------------------------------------------------------------*/

div.video02 {
	width:36%;
	max-width: 400px;
	margin:0 2% 5%;
	padding:2% 0;
	display:inline-block;
	background-color: #fff;
	overflow: hidden;
	float: left;
	clear: both;
	}

div.video02 iframe{
	margin: 2% 0;
	width: 100%;
	height:315px;
}

div.video02 p{
	width: 46%;
	margin: 0 1%;
	float: left;
}

@media only screen and (max-width : 480px ){
div.video02 {
	width:96%;
	margin:0 auto;
	padding:0 2%;
	display: block;
	background-color: #fff;
	overflow: hidden;
	clear: both;
	}
div.video02 p{
	width: 96%;
	margin: 0 1%;
	float: left;
}
	
div.video02 iframe{
	margin: 0 0 10%;
	width: 100%;
	height: 300px;
}
}

/*  ------------------------------------------------------------------

	動画 1/3

---------------------------------------------------------------------*/
div.video000{
	width: 96%;
	max-width: 1280px;
	margin: 4% auto 5%;
	padding: 0;
	display: flex;
    justify-content:flex-start;
	overflow: hidden;
}
@media only screen and (max-width : 480px ){
    div.video000{
	width: 96%;
	max-width: 480px;
	margin: 1% auto 3%;
	padding: 0;
	display: block;
}
}
div.video03 {
	width:23%;
	max-width: 400px;
	margin:0 1%;
	padding:0;
	overflow: hidden;
    text-align: left;
	clear: both;
	}

div.video03 iframe{
	margin: 0;
    padding: 0;
	width: 100%;
	height:250px;
}

div.video03 p{
	width: 98%;
	margin: 2% 1%;
	float: left;
    color: #000000;
    font-size: 100%;
    font-weight:bold ;
    line-height: 180%;
}

@media only screen and (max-width : 480px ){
div.video03 {
	width:92%;
	margin:0 auto;
	padding:0 4%;
	display: block;
	background-color: #fff;
	overflow: hidden;
	clear: both;
	}
	
div.video03 iframe{
	margin: 0 auto 2%;
	width: 98%;
	height: 250px;
}
}

div.video04 {
	width:33%;
	max-width: 400px;
	margin:2% 4%;
	padding:0;
	overflow: hidden;
    text-align: left;
	clear: both;
    display: inline-block;
    float: left;
	}

div.video04 iframe{
	margin: 0;
    padding: 0;
	width: 100%;
	height:250px;
}

div.video04 p{
	width: 98%;
	margin: 2% 1%;
	float: left;
    color: #000000;
    font-size: 100%;
    font-weight:bold ;
    line-height: 180%;
}

@media only screen and (max-width : 480px ){
div.video04 {
	width:92%;
	margin:2% auto;
	padding:0 4%;
	display: block;
	background-color: #fff;
	overflow: hidden;
	clear: both;
    display: block;
	}
	
div.video04 iframe{
	margin: 0 auto 2%;
	width: 98%;
	height: 250px;
}
}

.box_ikuko{
    width: 1280px;
    margin: 0 auto 2%;
    display: flex;
    overflow-x: scroll;
}

.box_ikuko::-webkit-scrollbar {
  height: 14px; /* スクロールバーの高さ */
}
 
.box_ikuko::-webkit-scrollbar-thumb {
  background: #999; /* ツマミの色 */
  border-radius: 7px; /* ツマミ両端の丸み */
}
 
.box_ikuko::-webkit-scrollbar-track {
  background: #eee; /* トラックの色 */
  border-radius: 7px; /* トラック両端の丸み */
}

@media only screen and (max-width : 480px ){
    .box_ikuko{
    width: 98%;
    margin: 0 1% 2%;
    display: flex;
    overflow-x: scroll;
}
}


div.video05 {
	width:350px;
	margin:5% 1%;
	padding:0;
    text-align: left;
	clear: both;
    float: left;
    flex-shrink: 0;
	}

div.video05 iframe{
	margin: 0;
    padding: 0;
	width: 100%;
	height:250px;
}

div.video05 p{
	width: 98%;
	margin: 2% 1%;
	float: left;
    color: #000000;
    font-size: 100%;
    font-weight:bold ;
    line-height: 180%;
}

@media only screen and (max-width : 480px ){
div.video05 {
	width:95%;
	margin:0 auto;
	padding:0 0.5%;
	display: block;
	background-color: #fff;
	overflow: hidden;
	clear: both;
	}
	
div.video05 iframe{
	margin: 0 auto 2%;
	width: 98%;
	height: 250px;
}
}



/*  ------------------------------------------------------------------

	ボタン

---------------------------------------------------------------------*/



a.bt0001{
  margin: 30px auto 10px;
  display: block;
  position: relative;
  text-decoration: none;
  height:40px;
  width: 240px;
  line-height: 37px;
  text-align: center;
  color: #000000;
  background: #ffffff;
  border:solid 1px #000000;
  overflow: hidden;
}

a.bt0001:after{
  content:"";
  position: absolute;
  top: -100%;
  left: -100%;
  height: 40px;
  width: 240px;
  background : #999999;
  opacity: 0.3;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
a.bt0001:hover:after{
  top: 0;
  left: 0;
}

/*  ------------------------------------------------------------------

	ボタン(スタイル　左)パソコン・タブレチE��

---------------------------------------------------------------------*/

a.bt0002{
  margin: 10px 0 10px 150px;
  display: block;
  position: relative;
  text-decoration: none;
  height:40px;
  width: 200px;
  line-height: 37px;
  text-align: center;
  color: #000000;
  background: #ffffff;
  border:solid 1px #000000;
  overflow: hidden;
	float: left;
}

a.bt0002:after{
  content:"";
  position: absolute;
  top: -100%;
  left: -100%;
  height: 40px;
  width: 200px;
  background : #c9bfbf;
  opacity: 0.3;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
a.bt0002:hover:after{
  top: 0;
  left: 0;
}

/*  ------------------------------------------------------------------

	ボタン(スタイル　左)スマ�E

---------------------------------------------------------------------*/

@media only screen and (max-width : 480px ){
a.bt0002{
  margin: 10px 0 10px 1px;
  display: block;
  position: relative;
  text-decoration: none;
  height:40px;
  width: 150px;
  line-height: 37px;
  text-align: center;
  color: #000000;
  background: #ffffff;
  border:solid 1px #000000;
  overflow: hidden;
	float: left;
}

a.bt0002:after{
  content:"";
  position: absolute;
  top: -100%;
  left: -100%;
  height: 40px;
  width: 150px;
  background : #c9bfbf;
  opacity: 0.3;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
a.bt0002:hover:after{
  top: 0;
  left: 0;
}
}

/*  ------------------------------------------------------------------

	ボタン(スタイル　右)パソコン・タブレチE��

---------------------------------------------------------------------*/



a.bt0003{
  margin: 10px 150px 10px 0;
  display: block;
  position: relative;
  text-decoration: none;
  height:40px;
  width: 200px;
  line-height: 37px;
  text-align: center;
  color: #ffffff;
  background-color: #c9bfbf;
  border:solid 1px #000000;
  overflow: hidden;
  float: right;
}

a.bt0003:after{
  content:"";
  position: absolute;
  top: -100%;
  left: -100%;
  height: 40px;
  width: 200px;
  background : #ffffff;
  opacity: 0.3;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
a.bt0003:hover:after{
  top: 0;
  left: 0;
}


/*  ------------------------------------------------------------------

	ボタン(スタイル　右)スマ�E

---------------------------------------------------------------------*/


@media only screen and (max-width : 480px ){
a.bt0003{
  margin: 10px 1px 10px 0;
  display: block;
  position: relative;
  text-decoration: none;
  height:40px;
  width: 150px;
  line-height: 37px;
  text-align: center;
  color: #ffffff;
  background-color: #c9bfbf;
  border:solid 1px #000000;
  overflow: hidden;
  float: right;
}

a.bt0003:after{
  content:"";
  position: absolute;
  top: -100%;
  left: -100%;
  height: 40px;
  width: 150px;
  background : #ffffff;
  opacity: 0.3;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
a.bt0003:hover:after{
  top: 0;
  left: 0;
}
}



/* 点滅 */
.blinking{
	-webkit-animation:blink 0.8s ease-in-out infinite alternate;
    -moz-animation:blink 0.8s ease-in-out infinite alternate;
    animation:blink 0.8s ease-in-out infinite alternate;
	font-size: 50%;
	color: #ffffff;
	padding: 1% 2%;
	-webkit-border-radius: 5px;/* for Safari and Chrome */
　　　-moz-border-radius: 5px; /* for Firefox */
　　　-o-border-radius: 5px; /* for opera */
	border-radius: 5px;
	background-color: #c16464;
}
/* 点滅しない */
.blinking01{
	font-size: 50%;
	color: #ffffff;
	padding: 1% 2%;
	-webkit-border-radius: 5px;/* for Safari and Chrome */
　　　-moz-border-radius: 5px; /* for Firefox */
　　　-o-border-radius: 5px; /* for opera */
	border-radius: 5px;
	background-color: #c16464;
}

/* 大人女性　点滅しない */
.blinking03{
	font-size: 120%;
	color: #ffffff;
	padding: 1% 5%;
	line-height: 240%;
	-webkit-border-radius: 5px;/* for Safari and Chrome */
　　　-moz-border-radius: 5px; /* for Firefox */
　　　-o-border-radius: 5px; /* for opera */
	border-radius: 5px;
	background-color: #c16464;
}

/* 大人女性　点滅しない */
.blinking02{
	font-size: 120%;
	color: #c16464;
	padding: 1% 5%;
	line-height: 240%;
	-webkit-border-radius: 5px;/* for Safari and Chrome */
　　　-moz-border-radius: 5px; /* for Firefox */
　　　-o-border-radius: 5px; /* for opera */
	border-radius: 5px;
	border: 1px #c16464 solid;
	background-color: #fff;
}

.blinking05{
	font-size: 120%;
	color: #ffffff;
	padding: 1% 5%;
	line-height: 240%;
	-webkit-border-radius: 5px;/* for Safari and Chrome */
　　　-moz-border-radius: 5px; /* for Firefox */
　　　-o-border-radius: 5px; /* for opera */
	border-radius: 5px;
	background-color: #54bfde;
}

.blinking04{
	font-size: 120%;
	color:#54bfde;
	padding: 1% 5%;
	line-height: 240%;
	-webkit-border-radius: 5px;/* for Safari and Chrome */
　　　-moz-border-radius: 5px; /* for Firefox */
　　　-o-border-radius: 5px; /* for opera */
	border-radius: 5px;
	border: 1px #54bfde solid;
	background-color: #fff;
}

.bg_bra{
	background-color: #000 !important;
}

.bg_pink{
	background-color: #de1557 !important;
}

.bg_gre{
	background-color: #666 !important;
}

.bg_red{
	background-color: #c16464 !important;
}
.bg_red002{
	background-color: #c16464 !important;
	border-radius: 10px!important;
	color: #fff!important;
	padding: 2%!important;
	margin: 2% 2% 3% !important;
	width: 92% !important;
}




@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}




p.left{
	text-align: left !important;
	color: #000;
}

.left004{
	text-align: left !important;
}

div.clear{
	clear: both;
}

.w80{
	width: 150px !important;
	max-width: 150px;
}

.margin_b{
	margin-bottom: 25% !important;
}

@media only screen and (max-width : 480px ){
	.margin_b{
	margin-bottom: 3% !important;
}
}

/* カレンダーここから202504 */

div.cal_wrapper {
	margin: 0 auto !important;
    padding: 0 10% 10px 0;
	display: block !important;
}
@media only screen and (max-width: 868px) {
	div.cal_wrapper {
	margin: 0 auto !important;
    padding: 0 50px 10px 0;
	display: block !important;
}
}

@media only screen and (max-width: 480px) {
	div.cal_wrapper {
	width: 96%;
	margin: 0 auto !important;
    padding: 2% 2%;
	display: block !important;
}
}
	
div.schedule_wrapper {
    padding: 10px 0px;
    width: 230px;
    border: solid 1px #CCC;
    box-shadow: 1px 1px 3px #666;
}
@media only screen and (max-width: 480px) {
	div.schedule_wrapper {
    padding: 10px 2%;
    width: 320px;
    border: solid 1px #CCC;
    box-shadow: 1px 1px 3px #666;
}
}
div.schedule_wrapper h3 {
    padding: 0px 10px;
    font-weight: normal;
    margin: 0px;
    font-size: 12px;
    color: #666;
}
div.schedule_wrapper div.schedule_list {
    padding: 0px 10px;
    margin: 0px;
}
 
div.cal_wrapper table.cal tr th p {
    float: left;
    padding: 5px;
    margin: 0px;
    color: #666;
    font-size: 18px;
}
div.cal_wrapper table.cal tr th div.cal_ui {
    float: right;
}
 
div.cal_wrapper table.cal tr th div.cal_ui input {
    border: solid 1px #CCC;
    background-color: #FFF;
    font-size: 13px;
    margin: 0px 1px;
    padding: 1px 3px;
}
div.cal_wrapper table.cal td {;
    border: solid 1px #000;
}
table{
  border-collapse: collapse;
}
div.cal_wrapper table.cal tr td {
    font-size: 13px;
    text-align: center;
    padding: 0px;
    
}
div.cal_wrapper table.cal tr.headline td {
    padding: 10px 0px;
}
div.cal_wrapper table.cal tr.headline {
    background-color: #999;
}
/*カレンダー表組の装飾*/
div.cal_wrapper table.cal tr td div {
    position: relative;
    padding: 20px 56px;/*日付の幅*/
    font-size: 18px;
    text-align: center;
    background-color: #FFF;
}

@media only screen and (max-width: 868px) {
	div.cal_wrapper table.cal tr td div {
    position: relative;
    padding: 15px 38px;/*日付の幅*/
    font-size: 19px;
    text-align: center;
    background-color: #FFF;
}
}

@media only screen and (max-width: 480px) {
	div.cal_wrapper table.cal tr td div {
    position: relative;
    padding: 13px 16px;/*日付の幅*/
    font-size: 14px;
    text-align: center;
    background-color: #FFF;
}
}
	
div.cal_wrapper table.cal tr td div span {
    display: none;
    position: absolute;
    top: 20px;
    left: 0px;
    width: 180px;
    border: solid 1px #EEE;
    background-color: #FFF;
    text-align: left;
    padding: 5px;
    z-index: 10;
    color: #000;
    font-weight: normal;
    line-height: 1.5em;
}
 
/* Holydayの装飾 */
div.cal_wrapper table.cal tr td div.Holyday {
    font-weight: normal;
    color: #000;/*祝日の文字色。赤色にしてます。*/
    background-color: #FF0000;/*祝日の背景色。黄色にしてます。*/
}


 
div.cal_wrapper table.cal tr td div.Holyday, div.cal_wrapper table.cal tr td div.Wed,div.cal_wrapper table.cal tr td div.Sun {
    background-color: #FF0000;
	color: #fff;/*日曜日・土曜日の背景色。白色にしてます。*/
}

div.cal_wrapper table.cal tr td div.Weekday {
    font-weight: normal;
    color: #000;/*祝日の文字色。赤色にしてます。*/
    background-color: #fff;/*祝日の背景色。黄色にしてます。*/
}
 
 
div.cal_wrapper table.cal tr td div.Today {
  color: #04a1b4;/*当日の文字色。見本では水色にしてます。*/
    font-weight: bolder;
}
 
/*過去日付の装飾*/
div.cal_wrapper table.cal tr td div.backward {
    color: #bbb;
    font-weight: normal;
    background-color: #FFF;
}
 
.sat {
  color: #fff;
  background: #04a1b4;/*「土曜日」見出し部分の背景色。水色にしてます。*/
  font-weight: normal;
}
 
.sun {
  color: #fff;
  background-color: #04a1b4;/*「日曜日」見出し部分の背景色。ピンク色にしてます。*/
  font-weight: normal;
}

.mon {
  color: #fff;
  background-color: #04a1b4;/*「日曜日」見出し部分の背景色。ピンク色にしてます。*/
  font-weight: normal;
}

.tue {
  color: #fff;
  background-color: #04a1b4;/*「日曜日」見出し部分の背景色。ピンク色にしてます。*/
  font-weight: normal;
}

.wed {
  color: #fff;
  background-color: #ff0000;/*「水曜日」見出し部分の背景色。ピンク色にしてます。*/
  font-weight: normal;
}

.thu {
  color: #fff;
  background-color: #04a1b4;/*「日曜日」見出し部分の背景色。ピンク色にしてます。*/
  font-weight: normal;
}

.fri {
  color: #fff;
  background-color: #04a1b4;/*「日曜日」見出し部分の背景色。ピンク色にしてます。*/
  font-weight: normal;
}
 
.Sun {
  color: #000;/*日曜日の文字色。見本では赤色にしてます。*/
  font-weight: normal;
}


 
.Sat {
  color: #000;/*土曜日の文字色。見本では赤色にしてます。*/
  font-weight: normal;
}

/* カレンダー以上 */


/*  ------------------------------------------------------------------

	↑↑ここまで

---------------------------------------------------------------------*/
