@charset "UTF-8";
/* CSS Document */
@import url("clear.css");
@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:600);
@import url(http://fonts.googleapis.com/css?family=Alegreya);

/* ===================================================================

setting

=================================================================== */

body {
  font-size: 12px;
  font-size: 1.2rem;

}

a {
  text-decoration: none;
  color: #189de5;
  outline: none;
  text-decoration: none; }
  a:hover {
    color: #676767;
    text-decoration: underline; }

::-moz-selection {
  color: #fff; }

::selection {
  color: #fff; }

/* ===================================================================

reset style

=================================================================== */
body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  line-height: 1;
  word-break: break-all; }

div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, input, textarea {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent; }

img {
  vertical-align: bottom; }

article, aside, details, figcaption, figure, footer, header, menu, nav, section, div, address, iframe, canvas, hr, textarea {
	display: block;
}

a, label {
  cursor: pointer; }

blockquote {
  padding: 0;
  margin: 0;
  display: block; }

address, em {
  font-style: normal; }

hr {
  border: 0;
  margin: 0;
  padding: 0; }

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

textarea {
  resize: vertical;
  overflow: hidden;
  -webkit-appearance: none;
  border: none; }

input, button, select {
  vertical-align: middle;
  border-radius: 0px;
  border: none;
  background: transparent;
  margin: 0;
  padding: 0;
  -webkit-appearance: none; }

table {
  border-collapse: collapse; }

*:before,
*:after {
  padding: 0;
  margin: 0;
  line-height: 1; }

/* ===================================================================

common style

=================================================================== */
html, body {
  height: 100%; }



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

#wrapper {
}


/*headerのレイアウト*/
.header {
  width: 100%;
  z-index: 3;
}

.logo {
	padding:20px 20px 20px 20px;
}

.header__heading {
	background: #fff;
	position: absolute;
	width: 100%;
	z-index: 3;
}
 
/*アコーディオンメニューの中身*/
.nav-content{
  position: absolute;
  width: 100%;
  top: -735px;
  z-index: 2;
  border-top:1px solid #F2F2F2;
  background:#fff;
  opacity: 0.95;
	filter: alpha(opacity=80);/*IE7*/
}

.nav-content2{
  width: 100%;
  z-index: 2;
  border-top:1px solid #F2F2F2;
  background:#fff;
  margin:0 0 30px 0;
}

ul li{
    font-family: 'Source Sans Pro', sans-serif;
    font-size:70%;
	text-align:left;
	font-weight:normal;
	border-bottom:1px solid #F2F2F2;
}

.nav-content a {
    text-align:left;
    display: block;
    padding: 20px 30px;
    color: #333333;
	transition: 1.5s top;
	text-decoration:none;
}

.nav-content2 a {
    text-align:left;
    display: block;
    padding: 20px 10px;
    color: #333333;
	transition: 1.5s top;
	text-decoration:none;
}


/*アコーディオンメニューの背景*/
#js-cover{
  background:#fff;
  width: 100%;
  display: block;
  position: absolute;
  top: 0px;
  opacity: 0;
  z-index: 1;
}

/*アコーディオンメニューの動き*/
.is-open .nav-content {
  top: 65px;
}


/*ハンバーガーアイコン*/
.menu-button {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  right: 14px;
  top: 15px;
 }

.menu-button i {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 3px;
	background: #007ba6;
	-webkit-transition: background 0.5s;
	transition: background 0.5s;
	position: relative;
	left: 5px;
	top: 14px;
	text-decoration:none;
}

.menu-button i:before,
.menu-button i:after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 3px;
    background: #007ba6;
    position: absolute;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.3s !important;
    transition: all 0.3s !important;
	text-decoration:none;
}

.menu-button i:before {
      -webkit-transform: translateY(8px);
          -ms-transform: translateY(8px);
              transform: translateY(8px); }
    .menu-button i:after {
      -webkit-transform: translateY(-8px);
          -ms-transform: translateY(-8px);
              transform: translateY(-8px); }


/*ハンバーガーアイコンのアニメーション*/
.is-open .menu-button i {
  background: #fff; }
  .is-open .menu-button i:after {
    -webkit-transform: translateY(0px) rotate(-45deg);
        -ms-transform: translateY(0px) rotate(-45deg);
            transform: translateY(0px) rotate(-45deg); }
  .is-open .menu-button i:before {
    -webkit-transform: translateY(0px) rotate(45deg);
        -ms-transform: translateY(0px) rotate(45deg);
            transform: translateY(0px) rotate(45deg); }



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



#viewer {
	width:100%;
	padding:0px 30px 0px 0;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	right: 30px;
	top: -80px;
}


@media screen and (orientation: portrait) {
   /* 縦向きの場合のスタイル */
   #viewer {
	   max-height: 320px;
   }

}

#viewer img {
	top: 0;
	left: 0;
	width:100%;
}

#wrapper .top-nav a:link {
	font-size: 40px;
	font-family: 'Source Sans Pro', sans-serif;
	position: relative;
	left: 30px;
	top: 310px;
	color: #000000;
	z-index: 1;
	padding: 0 0 20px 0;
	text-decoration: none;
	line-height: 140%;
	font-weight: bold;
}

#wrapper .top-nav a:visited {
	text-decoration: none;
	color: #000000;
	font-weight: bold;
}

#wrapper .top-nav a:hover {
	text-decoration: none;
	color: #189de5;
	font-weight: bold;
}


footer {
	font-family: 'Source Sans Pro', sans-serif;
    font-size:11px;
	font-weight:normal;
	text-align:center;
	padding:50px 0 30px 0;
	letter-spacing:0px;
	clear:both;
}

h2 {
	font-family: 'Source Sans Pro', sans-serif;
	font-size:120%;
	font-weight:bold;
	text-align:center;
	padding:80px 0 0 0;
}

h3 {
	font-family: 'Source Sans Pro', sans-serif;
	font-size:100%;
	font-weight:bold;
	text-align:center;
	padding:10px 0 0 0;
}

article {
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 0;
}

#main-contents {
	font-size: 14px;
	line-height: 26px;
	padding: 50px 0 0px 8px;
	max-height: 100%;
}

#main-contents2 {
	font-size:14px;
	line-height:26px;
	background-image:url(http://www.youk-photo.com/img/bg/dot.gif);
	background-repeat:repeat-x;
	background-position:left bottom;
	padding:0px 0 25px 0;
	margin:0 0 20px 0;
}

.pro-photo {
	text-align:center;
	width:100%;
	
}

.pro-photo img {
	display:block;
	margin:0 auto 20px auto;
	text-align:center;
}

.pro-jp {
}

.pro-jp p {
	padding: 0 0 20px 0;
}

#main-contents .pro-jp td {
	font-size:13px;
	line-height:20px;
	padding:0px 0 10px 0;
	width: 100%;
}

.pro-en {
	font-size:14px;
	line-height:24px;
	font-family: 'Alegreya', serif;
	background-image:url(http://www.youk-photo.com/img/bg/dot.gif);
	background-repeat:repeat-x;
	background-position:left bottom;
	padding:30px 0 45px 0;
	margin:0 0 20px 0;
}

#b-none {
	background-image:none;
}

#main-contents .pro-en td {
	line-height:20px;
	padding:0px 0 10px 0;
}

.s-title01 {
	font-family: 'Source Sans Pro', sans-serif;
	font-size:14px;
	color:#666666;
	padding:0 0 20px 0;
}

.media {
	margin:0 0 20px 0;
}

#g-line {
	width:300px;
	padding:0 0 0px 0;
	margin:0 auto;
}

.g-box {
	border: 1px solid #F2F2F2;
	width: 300px;
	height:300px;
	position: relative;
	z-index:1;
	display: block;
	margin: 0 auto 20px auto;
}

.inst {
	background-color: #FFFFFF;
	color:#333333;
	font-weight:bold;
	font-family: 'Source Sans Pro', sans-serif;
	padding:16px 18px 8px 15px;
	position: absolute;
	z-index:1;
	font-size:18px;
	line-height:20px;
	bottom:0px;
	display: block;
	opacity: 0.8;
	filter: alpha(opacity=80);/*IE7*/
}

.inst span {
	font-size:13px;
	color:#666666;
	display:block;
}

.inst a:link,
.inst a:visited {
	color:#333333;
	text-decoration:none;
}
.align-center {
	text-align:center;
}

#social {
	padding:20px 0 0 0;
}

.p-photo img,
.p-photo2 img {
	margin:0 8px 8px 0px;
	float:left;
}

.p-photo {
	display:block;
	margin:0 0 0 0px;
	width:100%;
	clear:both;
}

.p-photo2 {
	padding:20px 0 0 0;
	display:block;
	clear:both;
	margin:0 0 0 10px;
	width:100%;
}

.backtoindex {
	text-align:center;
	font-family: 'Source Sans Pro', sans-serif;
	padding:20px 0 0 0;
}

.mt20 {
	margin-top: 20px;
}

.ml180 {
	margin-left: 180px;
}
