@charset "UTF-8";

/*default*/
/*reset*/

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td{
margin: 0; padding: 0;
}


html{
    overflow-y: scroll;	
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6{
    font-size: 100%;
    font-weight: normal;
}

ol, ul{
    list-style:none;
}

fieldset, img{
     border:0;
}

table{
    border-collapse: collapse;
     border-spacing:0;
}

caption, th{
    text-align: left;
}

address, caption, cite, code, dfn, em, th, var{
    font-style: normal;
    font-weight: normal;
}


/*text*/
 

body {
font-family: "source-han-serif-japanese", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	*font-size:small;
*font:x-small;
}



input, textarea {
font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
}

/* for IE6 */
* html body {
font-family: "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}
* html input, * html textarea {
font-family: "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}


.mnc{
font-family: "source-han-serif-japanese", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;

}



table {
    font-size:inherit;
    font:100%;
}



 /*テキストリンク下線設定*/
 
a {
	text-decoration: none;
	}
	


/*パンくずリスト設置*/

#tp{
     margin:10px 0;
	 font-size:12px;
	 }
 
#tp li {
     display:inline;
     line-height:110%;
     list-style-type:none;
	 }

#tp li a{
	padding-right:5px;
	background:url(../../images/common/tp.png) no-repeat right;
	}

/*image半透明*/

a:hover img.hoverimg{
	opacity:0.8;
	filter:alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
	}

input:hover{
	opacity:0.8;
	filter:alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
	}
	

body {
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}

.button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
}
.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}


/*=== 9-1-2 丸が動いてスクロールを促す ====*/

/*スクロールダウン全体の場所*/
.scrolldown2{
    /*描画位置※位置は適宜調整してください*/
	position: absolute;
	
	
left: 50%;}

/*Scrollテキストの描写*/
.scrolldown2 span{
    /*描画位置*/
	position: absolute;
	left:10px;
	bottom:10px;
    /*テキストの形状*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-4px;
    /*丸の形状*/
	width:10px;
	height:10px;
	border-radius: 50%;
	background: #9d9d9d;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:45px;}
     100%{bottom:-5px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }

/* 線の描写 */
.scrolldown2:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	left:0;
    /*線の形状*/
	width:2px;
	height: 50px;
	background: #9d9d9d;
}




/*　画像の拡大　*/

.zoomIn img{
  transform: scale(1);
  transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
}

.zoomIn a:hover img{/*hoverした時の変化*/
  transform: scale(1.2);/*拡大の値を変更したい場合はこの数値を変更*/
}

.zoomIn a.link_none:hover img{
	transform:none;
	}
	
.zoomIn a.link_none img{
	opacity: 0.3;
	}

.zoomIn a.link_none{
	background:#000;
	cursor: auto;
	}


/*　画像のマスク　*/

.mask{
    display: block;
    line-height: 0;/*行の高さを0にする*/
    overflow: hidden;/*拡大してはみ出る要素を隠す*/
}

/*========= レイアウトのためのCSS ===============*/


.lead{
  text-align: center;
  padding: 50px 20px;
}

/*画像のレスポンシブ*/

img{
  width:100%;
  height: auto;
}

/*　横幅　*/

.zoomIn{
    width:70%;
    margin: 0 auto;/*中央揃え*/
}








/*///////  Goto top   //////*/
.go-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	color: #ccc;
	background:url(../../images/top.png) no-repeat center;
	width:60px;
	height:60px;
	/*visibility: hidden;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";*/
	z-index: 120;
}
.go-to-top a {
	width: 40px;
	height: 80px;
	display: block;
	font-size:10px;
	color: #333;
	padding-top:50px;
	text-align:center;
text-decoration: none;}
.go-to-top a:before, .go-to-top a:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 2px;
	height: 10px;
	margin: auto;
	background: #ccc;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	-webkit-transform-origin: top center;
	transform-origin: top center
}
.go-to-top a:before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}
.go-to-top a:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg)
}
.go-to-top a:hover:before {
	-webkit-transform: translateY(-3px) rotate(45deg);
	transform: translateY(-3px) rotate(45deg)
}
.go-to-top a:hover:after {
	-webkit-transform: translateY(-3px) rotate(-45deg);
	transform: translateY(-3px) rotate(-45deg)
}
.go-to-top a:hover:before, .go-to-top a:hover:after {
	background: #888
}

.spfix{
	display:none;}


@media screen and (max-width:768px) {
.go-to-top {
	right: 0;
	width:40px;
	height:40px;
	border-radius:50%;
}


}

.top03 .holiday {
    color: #cc0000;
    margin: 0 auto 30px;
    text-align: center;
    border: 1px solid #cc0000;
    padding: 20px 0;
	font-size: 18px;
	width: 40%;
	font-family: "source-han-serif-japanese", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/*
@media screen and (max-width:768px){
	.top03 .holiday {  
	animation-name: fadeUpAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}
}
*/
.footer-holiday{
	color: #FF0004;
	font-size: 15px;
	text-align: center;
    align-items: center;
    justify-content: center;
    margin: -3vw 0 3vw 0;
	font-family: "source-han-serif-japanese", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	}


.txt_red{color:red;}

.delay-time02{  
  animation-delay: 0.2s;
}
.delay-time04{  
  animation-delay: 0.4s;
}

.delay-time06{  
  animation-delay: 0.6s;
}


.delay-time020{  
  animation-delay: 2s;
}
.delay-time040{  
  animation-delay: 3s;
}

.delay-time060{  
  animation-delay: 4s;
}


/* 縮小 */
.zoomOut{
  animation-name:zoomOutAnime;
  animation-duration:2s;
  animation-fill-mode:forwards;
}

@keyframes zoomOutAnime{
  from {
  transform: scale(1.5);
  opacity: 0;
  }

  to {
    transform:scale(1);
  opacity: 1;
  }
}

