@charset "utf-8";

p,h1,h2,h3{
	background-image:url(../images/empty.gif);
}

.cd-slideshow{
	position: relative;
	z-index:0;
	background:#fff;
}

.cb-slideshow,
.cb-slideshow:after {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
}
.cb-slideshow:after {
    content: '';
    background: transparent url(../images/pattern.png) repeat top left;
    opacity:0.6;
}

.cb-slideshow li>span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
	-webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation 36s linear infinite 0s;
    -moz-animation: imageAnimation 36s linear infinite 0s;
    -o-animation: imageAnimation 36s linear infinite 0s;
    -ms-animation: imageAnimation 36s linear infinite 0s;
    animation: imageAnimation 36s linear infinite 0s;
}
.cb-slideshow li div {
    z-index: 1000;
    position: absolute;
    bottom: 10px;
    left: 0px;
    width: 100%;
    text-align: right;
    opacity: 0;
    -webkit-animation: titleAnimation 36s linear infinite 0s;
    -moz-animation: titleAnimation 36s linear infinite 0s;
    -o-animation: titleAnimation 36s linear infinite 0s;
    -ms-animation: titleAnimation 36s linear infinite 0s;
    animation: titleAnimation 36s linear infinite 0s;
}
.cb-slideshow li div h3 {
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size: 4.8em;
	padding: 15px 30px;
	line-height: 1em;
	color: rgba(169,3,41, 0.8);
}
.cb-slideshow li div h3 > span{
	display:inline-block;
}
.cb-slideshow li:nth-child(1)> span { background-image: url(../images/6.jpg) }
.cb-slideshow li:nth-child(2)> span {
    background-image: url(../images/5.jpg);
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
}
.cb-slideshow li:nth-child(3) > span {
    background-image: url(../images/4.jpg);
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s;
}
.cb-slideshow li:nth-child(4) > span {
    background-image: url(../images/3.jpg);
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s;
}
.cb-slideshow li:nth-child(5) > span {
    background-image: url(../images/2.jpg);
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
}
.cb-slideshow li:nth-child(6) > span {
    background-image: url(../images/1.jpg);
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}
.cb-slideshow li:nth-child(2) div {
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
}
.cb-slideshow li:nth-child(3) div {
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s;
}
.cb-slideshow li:nth-child(4) div {
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s;
}
.cb-slideshow li:nth-child(5) div {
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
}
.cb-slideshow li:nth-child(6) div {
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}
@-webkit-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -webkit-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -webkit-transform: scale(1.05);
	    -webkit-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -webkit-transform: scale(1.15) rotate(3deg);
	}
	25% {
	    opacity: 0;
	    -webkit-transform: scale(1.15) rotate(3deg);
	}
	100% { opacity: 0 }
}
@-moz-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -moz-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -moz-transform: scale(1.05);
	    -moz-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -moz-transform: scale(1.15) rotate(3deg);
	}
	25% {
	    opacity: 0;
	    -moz-transform: scale(1.15) rotate(3deg);
	}
	100% { opacity: 0 }
}
@-o-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -o-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -o-transform: scale(1.05);
	    -o-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -o-transform: scale(1.15) rotate(3deg);
	}
	25% {
	    opacity: 0;
	    -o-transform: scale(1.15) rotate(3deg);
	}
	100% { opacity: 0 }
}
@-ms-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -ms-animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    -ms-transform: scale(1.05);
	    -ms-animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    -ms-transform: scale(1.15) rotate(3deg);
	}
	25% {
	    opacity: 0;
	    -ms-transform: scale(1.15) rotate(3deg);
	}
	100% { opacity: 0 }
}
@keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    animation-timing-function: ease-in;
	}
	8% {
	    opacity: 1;
	    transform: scale(1.05);
	    animation-timing-function: ease-out;
	}
	17% {
	    opacity: 1;
	    transform: scale(1.15) rotate(3deg);
	}
	25% {
	    opacity: 0;
	    transform: scale(1.15) rotate(3deg);
	}
	100% { opacity: 0 }
}
@-webkit-keyframes titleAnimation { 
	0% {
	    opacity: 0;
	    -webkit-transform: translateX(200px);
	}
	8% {
	    opacity: 1;
	    -webkit-transform: translateX(0px);
	}
	17% {
	    opacity: 1;
	    -webkit-transform: translateX(0px);
	}
	19% {
	    opacity: 0;
	    -webkit-transform: translateX(-400px);
	}
	25% { opacity: 0 }
	100% { opacity: 0 }
}
@-moz-keyframes titleAnimation { 
	0% {
	    opacity: 0;
	    -moz-transform: translateX(200px);
	}
	8% {
	    opacity: 1;
	    -moz-transform: translateX(0px);
	}
	17% {
	    opacity: 1;
	    -moz-transform: translateX(0px);
	}
	19% {
	    opacity: 0;
	    -moz-transform: translateX(-400px);
	}
	25% { opacity: 0 }
	100% { opacity: 0 }
}
@-o-keyframes titleAnimation { 
	0% {
	    opacity: 0;
	    -o-transform: translateX(200px);
	}
	8% {
	    opacity: 1;
	    -o-transform: translateX(0px);
	}
	17% {
	    opacity: 1;
	    -o-transform: translateX(0px);
	}
	19% {
	    opacity: 0;
	    -o-transform: translateX(-400px);
	}
	25% { opacity: 0 }
	100% { opacity: 0 }
}
@-ms-keyframes titleAnimation { 
	0% {
	    opacity: 0;
	    -ms-transform: translateX(200px);
	}
	8% {
	    opacity: 1;
	    -ms-transform: translateX(0px);
	}
	17% {
	    opacity: 1;
	    -ms-transform: translateX(0px);
	}
	19% {
	    opacity: 0;
	    -ms-transform: translateX(-400px);
	}
	25% { opacity: 0 }
	100% { opacity: 0 }
}
@keyframes titleAnimation { 
	0% {
	    opacity: 0;
	    transform: translateX(200px);
	}
	8% {
	    opacity: 1;
	    transform: translateX(0px);
	}
	17% {
	    opacity: 1;
	    transform: translateX(0px);
	}
	19% {
	    opacity: 0;
	    transform: translateX(-400px);
	}
	25% { opacity: 0 }
	100% { opacity: 0 }
}
/* Show at least something when animations not supported */
.no-cssanimations .cb-slideshow li span{
	opacity: 1;
}
/*----------------------------------ここまで背景デモ-------------------------------------------------------*/

/*----------------------------------ここからヘッダー-------------------------------------------------------*/


/*----------------------------------ここまでヘッダー-------------------------------------------------------*/

/*----------------------------------ここからセクションイントロダクション-------------------------------------------------------*/

#introduction {
  width: 100%;
  margin: 0;
  padding:0 2% 2% 2%;
  color: white;
}
#introduction .top-movie{
	position:absolute;
	width:320px;
	padding:10px;
	right:8%;
	background:#000;
}

#introduction h2{
	font-size:32px;
	font-weight: 300;
	text-align:left;
} 
/*----------------------------------ここまでセクションイントロダクション-------------------------------------------------------*/

/*-----------------------------ここからタブメニュー------------------------------------------------------*/
.tab-menu{
	max-width:300px;
	height:440px;
	overflow:hidden;
}

ul#tabs-list {
	font-size:14px;
	line-height:14px;
  list-style: none;
  text-align: center;
  border-bottom: 1px solid #dfdfdf;
  margin: 0;
  padding: 0;
}
label.panel-label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  width: 100%;
  color: rgba(169,3,41, 1);
  cursor: pointer;
  background-color: #ecf0f1;
  -webkit-transition-property: border-top, background-color, color;
  transition-property: border-top, background-color, color;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
}
label.panel-label:hover {
  color: rgba(169,3,41, 1);
}
 
#panels {
	padding:10px 10px;
	background-color: white;
}
#panels section header label.panel-label {
  padding: 5px 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#panels section main {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: 0;
  opacity: 0;
  visibility:hidden;
  -webkit-transition: opacity 600ms;
  transition: opacity 600ms;
  overflow-y: hidden;
}
 
#panel-1-ctrl:checked ~ #panels #panel-1 main ,#panel-2-ctrl:checked ~ #panels #panel-2 main {
  max-height: initial;
  opacity: 1;
  visibility:visible;
  padding: 12px 8px;
}
#panel-1-ctrl:checked ~ #panels #panel-2 main ,#panel-2-ctrl:checked ~ #panels #panel-1 main {
  visibility:hidden;
  display:none;
}
@media all and (max-width: 767px) {
  #nav-ctrl:checked ~ #tabs-list #li-for-panel-1 ,  #nav-ctrl:checked ~ #tabs-list #li-for-panel-2 {
    max-height: 46px;
    opacity: 1;
  }
  #open-nav-label {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    cursor: pointer;
  }
 
  #nav-ctrl:checked ~ #tabs-list #open-nav-label {
    display: none;
  }
 
  #close-nav-label {
    display: block;
    max-height: 0;
    overflow-y: hidden;
    background-color: #444444;
    color: #ecf0f1;
    padding: 0px;
    -webkit-transition: max-height 200ms;
    transition: max-height 200ms;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 1px;
  }
 
  #nav-ctrl:checked ~ #tabs-list #close-nav-label {
    max-height: 24px;
    opacity: 1;
    padding: 12px 24px;
  }
 
  #tabs-list {
    position: relative;
  }
  /*
  #tabs-list label.panel-label {
    padding: 12px 0;
  }*/
  #tabs-list #li-for-panel-1 ,  #tabs-list #li-for-panel-2 {
    max-height: 0;
    overflow-y: hidden;
    -webkit-transition: max-height 200ms;
    transition: max-height 200ms;
  }
  #panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1,  #panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2 {
    max-height: 46px;
    opacity: 1;
  }
  #panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1 label.panel-label,  #panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2 label.panel-label {
    background-color: white;
    color: #c0392b;
    background-color: #c0392b;
    color: white;
  } 
  #panels .container {
    width: 100%;
  }
  #panels section header {
    display: block;
  }
}
@media all and (min-width: 768px) {
  #panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1 ,  #panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2{
    pointer-events: none;
    cursor: default;
    -webkit-transform: translate(0, 1px);
    -ms-transform: translate(0, 1px);
    transform: translate(0, 1px);
    -webkit-box-shadow: none;
    box-shadow: none;
    border-top: none;
    border-right: none;
  }
  #panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1:last-child,  #panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2:last-child {
    border-right: 1px solid #dfdfdf;
  }
  #panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1 + li ,  #panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2 + li {
    border-left: 1px solid #dfdfdf;
  }
  #panel-1-ctrl:checked ~ #tabs-list #li-for-panel-1 label.panel-label,  #panel-2-ctrl:checked ~ #tabs-list #li-for-panel-2 label.panel-label {
    background-color: white;
    color: #c0392b;
    border-top: 5px solid rgba(169,3,41, 1);
    padding-top: 12px;
  }
  ul#tabs-list {
    text-align: center;
    border-bottom: 1px solid #dfdfdf;
    letter-spacing: -.40em; /* 文字間を詰めて隙間を削除する */
  }
  ul#tabs-list li {
    display: inline-block;
    letter-spacing: normal; /* 文字間を通常に戻す */
    text-align: center;
    font-size: 0.875em;
    width: 50%;
    margin:0;
    -webkit-box-shadow: 0px -2px 2px rgba(0, 0, 0, 0.05);
    box-shadow: 0px -2px 2px rgba(0, 0, 0, 0.05);
    border-top: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf;
    box-sizing:border-box;
    -webkit-transition-property: border-top;
    transition-property: border-top;
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
  }
  ul#tabs-list li:hover {
    border-top: none;
    border-right: none;
    border-left:none;
  }
  ul#tabs-list li:hover:last-of-type {
  }
  ul#tabs-list li:hover + li {
  }
  ul#tabs-list li label.panel-label {
    border-top: 0px solid rgba(169,3,41, 1);
    padding: 12px 0;
  }
  ul#tabs-list li label.panel-label:hover {
    border-top-width: 5px;
    padding-top: 12px;
  }
 
  #open-nav-label,
  #close-nav-label {
    display: none;
  }
 
  #nav-ctrl {
    display: none;
  }
}
@media all and (min-width: 900px) {
  main {
    width: 100%;
    margin: 0 auto;
  }
}
.panel-radios {
  position: fixed;
  left: 50%;
  top: 10px;
  width: 20px;
  opacity: 0.5;
  z-index: 99;
  display:none;
}
.panel-radios:nth-child(1) {
  -webkit-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  transform: translateX(-50px);
}
.panel-radios:nth-child(2) {
  -webkit-transform: translateX(-30px);
  -ms-transform: translateX(-30px);
  transform: translateX(-30px);
}

/*-----------------------------ここまでタブメニュー------------------------------------------------------*/


main h1 {
  margin-top: 0;
  font-weight: 300;
  color: #c0392b;
}
main p {
  line-height: 1.8;
}
main hr {
  margin: 12px 0;
  border-top: 1px solid #dfdfdf;
}
 
label.demo-label {
  background-color: #c0392b;
  color: white;
  padding: 4px 8px;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
label.demo-label:hover {
  background-color: #e74c3c;
}
 
#demo-child-toggle {
  display: none;
}
#demo-child-toggle:checked ~ #demo-parent #demo-child {
  color: #c0392b;
  font-weight: bold;
  text-transform: uppercase;
}
 
#demo-parent {
  margin-top: 8px;
}
 
code,
pre {
  color: #c0392b;
  font-family: Inconsolata, "Andale Mono", Andale, monowidth;
  background-color: #ecf0f1;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
}
 
code {
  padding: 2px 6px;
}
 
pre {
  padding: 12px;
  line-height: 1.6;
}
pre strong {
  color: #444444;
}

#socialicon{
	max-width:300px;
	overflow:hidden;
	margin-top:15px;
	line-height:1.5;
}
#socialicon li{
display: -webkit-flex;
 display: flex;
 -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
 align-items: center; /* 縦方向中央揃え */
 -webkit-justify-content: left; /* 横方向中央揃え（Safari用） */
 justify-content: left; /* 横方向中央揃え */
	padding:8px 0;
}
#socialicon .so-des{
	padding-left:10px;
}
@media screen and (max-width: 970px) { 
#socialicon{
	max-width:300px;
	overflow:hidden;
	margin-top:15px;
	line-height:0;
	letter-spacing: -.40em; /* 文字間を詰めて隙間を削除する */
	margin:15px auto 15px auto;
}
#socialicon li{
	display:inline-block;
	letter-spacing: normal; /* 文字間を標準にする */
	width:100px;
	text-align:center;
}
#socialicon .so-des{
	padding:0;
	display:none;
}
}

#socialicon li a{
	display:inline-block;
}
#socialicon .fb-icon a{
	background:url(../images/social-facebook_on.png) no-repeat;
	background-position:top center;
	background-size:48px;
}
#socialicon .blog-icon a{
	background:url(../images/social-blog_on.png) no-repeat;
	background-position:top center;
	background-size:48px;
}
#socialicon .google-icon a{
	background:url(../images/social-google_on.png) no-repeat;
	background-position:top;
	background-size:48px;
}
#socialicon li a img{
	width:48px;
}

#socialicon .fb-icon a:hover img,#socialicon .blog-icon a:hover img,#socialicon .google-icon a:hover img{
opacity:0;
}


#feed{
	max-width:260px;
}


/*===============================================
●tablet.css 画面の横幅が970pxまで
===============================================*/

@media screen and (max-width: 970px) { 
html,body{
	overflow:hidden;
}

img{
max-width: 100%;
height: auto;
width /***/:auto;
}
#container{
width:100%;
}
.container > header{
	padding:0.2em;
	margin:0.2em;
}

.cb-slideshow li div h3 { 
	font-size: 3em;

}
#title {
	padding:0 0 0.2em 0;
	margin:0;
}
#introduction {
	margin:0;
}
#introduction .top-movie{
	position:static;
	padding:0;
	margin:0 auto;
	top:0;
	right:0;
}

#introduction .top-movie iframe{
	background:transparent;

}
.tab-menu{
	display:none;
}


}

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

#introduction .top-movie{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
#introduction .top-movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
}