/* ========================================
* File Name: common.css
* Created Date: 2015.4
* Author: TAM
======================================== */
html, body, div, h1, h2, h3, p, address, figure, ul, ol, li, dl, dt, dd, table, th, td, section, nav, article, aside, header, footer {
  margin: 0;
  padding: 0;
}

section, nav, article, aside, figure, header, footer {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

ul li, ol li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border: none;
  border-spacing: 0;
}

th, td {
  font-weight: normal;
  text-align: left;
}

/* clearfix */
.clfix {
  zoom: 1;
}

.clfix:before, .clfix:after {
  content: "";
  display: table;
}

.clfix:after {
  clear: both;
}

a:link,
a:visited {
  color: #3F2B00;
  text-decoration: none;
  outline: none;
}

a:hover,
a:active {
  color: #3F2B00;
}

a.btn-anime {
  display: inline-block;
  -webkit-backface-visibility: hidden; 
  backface-visibility: hidden;
}
.btn-anime {
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
.btn-anime:hover{
  filter: alpha(opacity=60);
  -moz-opacity: .6;
  opacity: .6;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}

html {
  font-family: "ヒラギノ角ゴ Pro W3", 'Hiragino Kaku Gothic ProN', '游ゴシック', Meiryo, Verdana, sans-serif;
  color: #3F2B00;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

/*header*/
#header {
  width:960px;
  margin: 0 auto;
}
#header .logo01 {
  float: left;
  width: 570px;
  margin: 9px 0 25px;
  position: relative;
  height: 81px;
}
#header .logo01 a {
  display:inline-block;
}
#header .logo01 .title01 {
  position: absolute;
  top: 0;
  left:0;
  width: 130px;
}
#header .logo01 .title02 {
  position: absolute;
  top: 20px;
  left:145px;
  font-size: 2em;
  font-weight: bold;
}
#header .logo01 .title03 {
  position: absolute;
  top: 52px;
  left:145px;
  font-family: Gabriola, Papyrus, Helvetica;
  font-size: 1.8em;
  letter-spacing: 2px;
}
#header .logo02 {
  float: right;
  width: 302px;
  margin-top: 27px;
}
#header .logo01 .title01 img,
#header .logo02 img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 640px) {
#header {
  width:auto;
}
#header .logo01 {
  float: none;
  width: auto;
  height: auto;
  margin: 0;
  text-align: center;
}
#header .logo01 .title01 {
  position: relative;
  width: 100px;
  top: 0;
  left: 0;
  margin: 5px auto 0;
}
#header .logo01 .title02 {
  position: relative;
  margin: 8px auto 0;
  top: 0;
  left: 0;
  font-size: 1.5em;
  line-height: 1;
}
#header .logo01 .title03 {
  position: relative;
  margin: 5px auto 0;
  top: 0;
  left:0;
  font-size: 1.4em;
  line-height: 1;
  letter-spacing: 1px;
}
#header .logo02 {
  float: none;
  width: 250px;
  margin:8px auto 0;
  text-align: center;
  position: relative;
}
}

@media screen and (max-width: 640px) {
#MenuIcon {
  position: absolute;
  right: 18px;
  top: 20px;
  height: 30px;
  width: 20px;
}
#MenuIcon span,
#MenuIcon span:before,
#MenuIcon span:after {
  display: block;
  width: 100%;
  height: 4px;
  background: #3F2B00;
  transition: all 0.5s;
  backface-visibility: hidden;
    -webkit-border-radius:5px;
    border-radius:5px;
}
#MenuIcon span {
  position: relative;
  margin: 10px 0 0;
}
#MenuIcon span:before,
#MenuIcon span:after {
  position: absolute;
  content: "";
}
#MenuIcon span:before {
  top: -10px;
}
#MenuIcon span:after {
  top: 10px;
}
#MenuIcon.selected span:before {
  -webkit-transform: translate(2px, 10px) rotate(-45deg);
  transform: translate(2px, 10px) rotate(-45deg);
}
#MenuIcon.selected span:after {
  -webkit-transform: translate(2px, -10px) rotate(45deg);
  transform: translate(2px, -10px) rotate(45deg);
}
#MenuIcon.selected span {
  background: transparent;
}
}

#gnav {
  background: #FFF;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1, rgba(255, 255, 255, 0.8)), color-stop(0.3, white));
  background: -webkit-linear-gradient(top, white 30%, rgba(255, 255, 255, 0.8) 100%);
  background: linear-gradient(to bottom, white 30%, rgba(255, 255, 255, 0.8) 100%);
  width: 100%;
  text-align: center;
}
#gnav ul {
  width:960px;
  margin: 0 auto;
}
#gnav ul li {
  text-align: center;
  display: inline-block;
  font-size: 1.4em;
}
#gnav ul li a {
  display: block;
  padding: 16px 15px 20px;
  border-bottom: solid 3px rgba(255,255,255,0.1);
}
#gnav ul li a:hover,
#gnav ul li.active a {
  border-bottom: solid 3px #C29F0C;
  background: url(../images/nav_active.png) no-repeat center bottom;
}

@media screen and (max-width: 640px) {
#gnav {
  display: none;
  position: absolute;
  top: 58px;
  right: 10px;
  background: #3F2B00;
  -webkit-border-radius:5px;
  border-radius:5px;
  max-width: 300px;
  filter: alpha(opacity=90);
  -moz-opacity: .9;
  opacity: .9;
  z-index:1000;
  -webkit-box-shadow:2px 2px 4px rgba(0,0,0,0.25);
  box-shadow:2px 2px 4px rgba(0,0,0,0.25);
}
#gnav::after {
    border-bottom: 12px solid #3F2B00;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    content: "";
    position: absolute;
    right: 10px;
    top: -12px;
}
#gnav ul {
  width:auto;
  padding: 14px;
}
#gnav ul li {
  display: block;
  border-top: dotted 1px #fff;
}
#gnav ul li:last-of-type {
  border-bottom: dotted 1px #fff;
}
#gnav ul li a {
  padding: 14px 0;
  border-bottom: none;
  color: #fff;
  font-weight: bold;
}
#gnav ul li a:hover,
#gnav ul li.active a  {
  border-bottom: none;
  background: none;
}
}

/*contents*/
#contents {
  margin: 20px 0 0;
  position:relative;
    z-index: 10;
}
.bg-wrap {
  background: url(../images/pagebg_01.jpg) repeat left top;
  padding: 30px 0 110px;
}
.inner-contents {
  width:960px;
  margin: 0 auto;
  position:relative;
  z-index: 500;
}
.youtube {
    text-align: center;
}
.youtube-inner {
    max-width: 100%;
}
.page-ttl {
    font-size: 4em;
    font-weight: normal;
    text-align: center;
    font-family : "Hiragino Mincho ProN","游明朝",serif;
    margin-bottom: 50px;
}
@media screen and (max-width: 640px) {
#contents {
  margin: 20px 0 0;
}
.bg-wrap {
  padding: 25px 0 60px;
}
.inner-contents {
  width:auto;
  padding: 0 13px;
}
.page-ttl {
  font-size: 2.2em;
  margin-bottom: 25px;
}
}

#contents .symbol {
    position: absolute;
    text-align: right;
    width: 1306px;
    height: 420px;
    margin: 0 auto;
    right: 0;
    left: 0;
    top: 150px;
    z-index: 1;
}

@media screen and (max-width: 1306px) {
#contents .symbol {
    width: auto;
    height: auto;
}
}
@media screen and (max-width: 640px) {
#contents .symbol img {
    width: 240px;
    height: auto;
}
}

/*pagetop*/
#contents .page-top-link {
  position: absolute;
  bottom: 30px;
  right: 6%;
  z-index: 9999;
}
#contents .page-top-link a {
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  display: block;
}
#contents .page-top-link a:hover {
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  tramsform: translateY(-3px);
}
@media screen and (min-width: 1500px) {
#contents .page-top-link {
  right: 12%;
}
}
@media screen and (max-width: 1000px) {
#contents .page-top-link {
  right: 10px;
}
}
@media screen and (max-width: 640px) {
#contents .page-top-link {
    bottom: 10px;
}
#contents .page-top-link img {
  width: 40px;
  height: 40px;
}
}

/*footer*/
#footer {
  padding: 30px 0;
  background: url(../images/footer_bg.jpg) #65492D repeat left top;
}
#footer .footer-inner {
  overflow: hidden;
  zoom: 1;
  width: 960px;
  margin: 0 auto;
}
#footer .bnr {
  width:320px;
  float: left;
}
#footer .text {
  float: right;
  width: 270px;
}
#footer .text ul li {
  float: right;
  font-size: 1.4em;
  margin-left: 28px;
}
#footer .text ul li:nth-child(2n) {
  margin-left: 0;
}
#footer .text ul li a {
  color: #fff;
}
#footer .text .copy {
  font-size: 1.2em;
  text-align: right;
  color: #fff;
  margin-top: 35px;
}
@media screen and (max-width: 640px) {
#footer {
  padding: 16px 0;
}
#footer .footer-inner {
  width: auto;
}
#footer .bnr {
  width:auto;
  float: none;
  text-align: center;
}
#footer .text {
  float: none;
  width: auto;
}
#footer .text ul {
  margin: 15px auto 0;
  text-align: center;
}
#footer .text ul li {
  float: none;
  display: inline;
  margin-left: 0;
  padding: 0 10px;
}
#footer .text ul li:nth-child(2n) {
  border-left: solid 1px #fff;
}
#footer .text ul li a {
  text-decoration: underline;
}
#footer .text .copy {
  font-size: 1em;
  text-align: center;
  margin-top: 10px;
}
}

@media screen and (max-width: 340px) {
#footer .footer-inner {
  padding:0 15px;
}
#footer .bnr img {
  width:100%;
  height: auto;
}
}

