/*------全体-------*/

body{
	font-size: 13px;
	margin: 0px;
	line-height: 120%;
	font-family: 'MS PGothic';
	color: #333333;
}

header{
	top: 0;
	width: 100%;
	height: 95px;
	position: fixed;
	background-color: #ffffff;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: #eeeeee;
	z-Index: 2;
}

footer{
	text-align: center;
	margin-top: 20px;
}

.cont{
	width: 80%;
	margin: 0 auto;
	text-align:center;
}

/*--ヘッダー部分--*/

.header_cont{
	width: 750px;
	margin: 0 auto;
	height: 80px;
	position: relative;
}

.header_title{
	position: absolute;
	left: 5px;
	width: 250px;
	text-align: left;
	height: 80px;
}

.kanban{
	font-size: 30px;
	position: relative;
	top: 20px;
	font-family: Verdana;
}

.msg{
	position: relative;
	top: 25px;
}

.header_inq{
	width: 350px;
	position: absolute;
	right: 55px;
}

.phone{
	font-family: Garamond;
	font-size: 28px;
	margin-top: 5px;
}

.otoi{
	position: relative;
	top: 5px;
}

.osirase{
	position: relative;
	top: 15px;
}

/*--カートのアイコン部分--*/

.header_cart{
	width: 60px;
	height: 80px;
	position: absolute;
	/*right: 5px;*/
	right: 70px;
    top: -10px;
}

.cart_icon{
	position: absolute;
	right: 0;
	width: 50px;
	height: 50px;
	bottom: 0;
}

.circle{
	position: absolute;
	bottom: 30px;
	left: 28px;
	width: 21px;
	height: 21px;
}

.circle_img{
	z-Index: 1;
}

#amount{
	position: absolute;
	bottom: 4px;
	width: 17px;
	height: 15px;
	right: 3px;
	z-Index: 2;
	font-weight: bold;
	color: #ffffff;
	text-align: center;

}

/*--コンテンツのボックス--*/

.main{
	margin-top: 100px;
}

.navi{
	margin-top: 100px;
}


/*------フォーム-------*/

input[type=text],textarea{
	border: 1px solid #999999;
	border-radius: 3px;
	margin-bottom: 1px;
}

select{
	border: 1px solid #999999;
	width: 80px;
}

input[type=text]{
	height: 34px;
 	box-sizing: border-box;
}

select {
 	height: 34px;
 	box-sizing: border-box;
}

textarea {
	box-sizing: border-box;
	line-height: 1.25;
	padding: 4px;
}

/*-------ボタン-------*/

.btn{
	padding: 8px 15px;
	background-color: #999999;
	border-radius: 4px;
	border-style: solid;
	border-color: #666666;
	border-width: 1px;
	color: #ffffff;
	font-weight: bold;
}

/*-------その他-------*/

.cl{
	width: 100%;
}

.cl:after {
	content: ""; 
	display: block; 
 	clear: both;
}


.showcase {
	 overflow-y: scroll;
	 height: 150px !important;
}


/*------以下はスマートフォン用の表示-------*/

@media screen and (max-width:550px){

	/*------全体-------*/
	
	body{
		font-size: 15px;
		line-height:150%;
	}
	
	.cont{
		width: 100%;
		top: 100px;
		position: relative;
	}
	
	/*------ヘッダー-------*/
	
	.header_cont{
		width: 100%;
	}
	
	.header_inq{
		/*display: none;*/
		top: 100px;
		left: 5px
	}
	
	header{
	height: 185px;
	}

	/*------部品-------*/

	#amount{
		bottom: 6px;
		right: 1px;
	}
	
	.tooltip-text {
		width: 80vmin !important;
		font-size: 1.3em !important; /* フォントサイズ */
		line-height: 1.5 !important;
		overflow-y: auto;
		height: 33vmax !important;
		position: absolute !important;
		left: 10px !important;
		transform: rotatez(-2deg) !important;
	}
	
}

@media screen and (min-width: 550px){
	.a2any{
		display: none;
	}
	
}

a{
	color: darkolivegreen;
}


TOOLTIP



/* カーソルを重ねる要素 */
.tooltip {
  position: relative; /* ツールチップの位置の基準に */
  cursor: pointer; /* カーソルを当てたときにポインターに */
}
a.tooltip {
    cursor: help;  /* aタグ内でカーソルを当てたときにポインターに */
}

/* ツールチップのテキスト */
.tooltip-text {
  opacity: 0; /* はじめは隠しておく */
  visibility: hidden; /* はじめは隠しておく */
  /*position: absolute; *//* 絶対配置 */
  position: fixed; 
  left: 50%; top: 50%; /* 親に対して中央配置 */
  transform: translateX(-50%) translateY(-50%) rotatez(-3deg);*/ /* 親に対して中央配置*/
  /*bottom: -30px; *//* 親要素下からの位置 */
  top: 170px;
  display: inline-block;
  padding: 5px; /* 余白 */
  width: 600px;
  /*white-space: nowrap; *//* テキストを折り返さない */
  font-size: 1.15rem; /* フォントサイズ */
  line-height: 1.3; /* 行間 */
  /*background: #333; *//* 背景色 */
  color: #333; /* 文字色 */
  border-radius: 3px; /* 角丸 */
  transition: 0.6s ease-in; /* アニメーション */
  text-align: justify; /*ぴっちり綺麗に入る？*/
  z-index: 2;
  
  /*dog year 紙の折り返し風Effect*/
  box-sizing: border-box;
  background: linear-gradient(
    -35deg,
    transparent 12px,
    #e6f9d0 10px,
    #ffffff 70%
  ); /* 切り取り部分を transparent で指定 */
	  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.9)); /* drow-shadow を使う */

}

/*dog year疑似要素*/
.tooltip-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 19px;
  height: 15px;
  border: 8px solid #33cc0047;
  border-right-color: #ffffff00; /* 背景色 */
  border-bottom-color: #ffffff00; /* 背景色 */
  box-sizing: border-box;
  filter: drop-shadow(-2px -4px 5px rgba(0, 0, 0, 0.9));
}

/* ホバー時にツールチップの非表示を解除 */
.tooltip:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
}

/*calendar*/

div#cal {
    /*display: inline-block;*/
}

.w{
	/* background-color:#CCCCCC; */ /* 曜日の部分の背景色 */
	background-image: linear-gradient(180deg, #CCCCCCab, #f2ffe5ab);
	color:;                   /* 曜日の部分の文字色 */
	border-radius: 35%;
}

.moji1{
	/*font-size:11px;*/
}

.tbl{
	border:1px solid #999999; /* 枠の色 */
	border-collapse:collapse;
}

.tbl td{ 
	border:1px solid #ffffff; /* 枠の色 */
	border-collapse:collapse; 
	font-family:Verdana;      /* 日付と曜日のフォント */
	font-size:10px;           /* 日付と曜日の文字の大きさ */
}

td.k{
    color: #CC0066;
    /* background-color: #E2C7E2; */
    background-image: linear-gradient(180deg, #FFFFFF, #ffd6d6);
    border-radius: 35%;
}

.tbl td:hover{
    position: relative;
    top: -2px;
    left: -1px;
    color: #33cc00;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: bold;
    font-size: 56%;
    font-style: oblique;
}

@media screen and (max-width:600px){
	body{
		font-size: 15px;
		line-height:150%;
	}
	
	.moji1{
		/*font-size:15px;*/
	}

	.tbl {
		margin-left: auto;
		margin-right: auto;
		width: 90%;
	}
	
	.page {
		margin-left: auto;
		margin-right: auto;
		width: 90%;
	}

	.tbl td {
		font-size:15px;
		width: auto;
		height: auto;
	}

}


#page-top a {
    background: #72C7CA;
    text-decoration: none;
    color: #fff;
    width: 60px;
    padding: 28px 5px;
    text-align: center;
    display: block;
    border-radius: 90px;
    opacity: 0.9;
    transition: all .3s ease;
}

#page-top a:hover {
    text-decoration: none;
    opacity: .5;
}

#page-top {
    position: fixed;
    bottom: 60px;
    right: 20px;
    font-size: 14px;
    line-height: 1;
    z-index: 99;
}

#search- {
    position: fixed;
    bottom: 25px;
    right: 60px;
    font-size: 14px;
    line-height: 1;
    z-index: 99;
}

#search- a:hover {
    text-decoration: none;
    opacity: .7;
}

#search- a {
    background: #72ca91c7;
    text-decoration: none;
    color: #fff;
    width: 60px;
    padding: 23.3px 5px;
    text-align: center;
    display: block;
    border-radius: 90px;
    opacity: 0.9;
    transition: all .3s ease;
}


summary#navi-:hover {
    text-decoration: none;
    opacity: .5;
}

summary#navi- {
    background: #acca72ad;
    text-decoration: none;
    color: #fff;
    width: 60px;
    padding: 23px 5px 18px;
    text-align: center;
    display: block;
    border-radius: 90px;
    opacity: 0.9;
    transition: all .3s ease;
}

#navi- {
    position: fixed;
    bottom: 222px;
    right: 20px;
    font-size: 30px;
    line-height: 1;
    z-index: 99;
}

/*https://zenn.dev/halu/articles/f6b11ca7bc92d1 javascriptで表示時間の期限付きバナー*/

.timerHidden{ display: none;}
.timerVisible{ display: block;}
