<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, 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 {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    list-style: none;
}

body {
    line-height:1;
    font-family:bigmoore, ten-mincho-text,"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic" , serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	-moz-font-feature-settings: "palt";
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    color: #fff;
    text-decoration: none;
}

a:focus{
	outline: none;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

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

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

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

@media only screen and (min-width: 768px) {

.sp_only{
	display: none!important;
}

#video {
  display: none;
}

#video #player{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.main{
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 0;
	background: url(../img/main.jpg) center center no-repeat;
	background-size: cover;
}

.play{
    width: 240px;
    height: 270px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -120px;
    text-align: center;
    margin-top: -150px;
    z-index: 9999999;    
}

.play .icon{
    background: url(../img/icon.png) center center no-repeat;
    background-size: contain;
    width: 70px;
    height: 82px;
    position: absolute;
    top: 60px;
    left: 50%;
    margin-left: -27px;
    transition:all 0.6s cubic-bezier(.19,1,.22,1);    
}

.play .circle{
    background: url(../img/line.png) center center no-repeat;
    background-size: contain;
    width: 200px;
    height: 200px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -100px;
    -webkit-animation: spin 2.5s linear infinite;
    -moz-animation: spin 2.5s linear infinite;
    animation: spin 2.5s linear infinite;
    -webkit-transition: all 800ms cubic-bezier(1, 0, 0, 1);
    transition: all 800ms cubic-bezier(1, 0, 0, 1);    
}

.play:hover .circle{
    -webkit-animation: spin 4.5s linear infinite;
    -moz-animation: spin 4.5s linear infinite;
    animation: spin 4.5s linear infinite;	
}

.play:hover .icon{
	transform: scale(1.1);
}

@-webkit-keyframes spin {
	0% {-webkit-transform: rotate(0deg);}
	100% {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes spin {
	0% {-moz-transform: rotate(0deg);}
	100% {-moz-transform: rotate(360deg);}
}
@keyframes spin {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}

.play p{
    font-size: 26px;
    font-style: italic;
    color: #fff;
    letter-spacing: 0.15rem;
    position: absolute;
    top: 246px;
    left: 0;
    width: 100%;
    text-shadow:0px 0px 6px #000000;
    transition:all 0.6s cubic-bezier(.19,1,.22,1);
}

.play:hover p{
    letter-spacing: 0.2rem;
}

.contents{
    margin-top: 100vh;
    position: relative;	
}

.left { 
    position: absolute;
    float: left;
    top: 0;
    left: 0;
    width: 560px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
}

.left.fixed { 
    position: fixed;
}

.left a.txt{
    color: #81382a;
    position: relative;
    transition:all 0.3s cubic-bezier(.19,1,.22,1);    
    z-index: 10;
}

.left a.txt:hover{
    color: #fff;
}

.left .under{
    width: 100%;
    position: absolute;
    height: 1px;
    background: #81382a;
    top: 18px;
    transition:all 0.3s cubic-bezier(.19,1,.22,1);	
}

.left a.txt:hover .under{
    width: 0;
}

.left .back{
    width: 0%;
    z-index: -1;
    position: absolute;
    height: 18px;
    background: #81382a;
    top: -1px;
    transition:all 0.3s cubic-bezier(.19,1,.22,1);
}

.left a.txt:hover .back{
    width: 100%;
}

.left h1{
    z-index: 9999;
    position: relative;
    font-size: 25px;
    font-weight: 500;
    margin-top: 24px;
    margin-left: 24px;
}

.left h1 span{
    font-style: italic;
    font-size: 70%;
    margin-left: 16px;
    vertical-align: 4px;
}

.left h2{
    font-size: 38px;
    font-weight: 100;
    line-height: 130%;
    letter-spacing: 0.03rem;
    font-family: ten-mincho-text,serif;
}

.left p{
    line-height: 200%;
    font-size: 100%;
    letter-spacing: 0.02rem;
    margin-top: 28px;
    width: 85%;
}

.left .num{
	position: absolute;
    top: 20px;
    right: 50px;
    font-style: italic;
    font-size: 270px;
    opacity: 0.05;	
}

.left .text01{
	opacity: 0;
	transition:all 1.5s cubic-bezier(.19,1,.22,1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fafafa;
    box-sizing: border-box;
    	transform: translate(0,60px); 
	-webkit-transform: translate(0,60px);
}

.left .text01.view{
	opacity: 1; 
    z-index: 99;	
    	transform: translate(0,0); 
	-webkit-transform: translate(0,0);  
}

.left .text01 .inner{
    position: absolute;
    top: 50%;
    height: 400px;
    margin-top: -210px;
    left: 84px;
}

.left .text02{
	opacity: 0;
	transition:all 1.5s cubic-bezier(.19,1,.22,1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fafafa;
    box-sizing: border-box;
    	transform: translate(0,60px); 
	-webkit-transform: translate(0,60px);  
}

.left .text02.view{
	opacity: 1;
    z-index: 100;	
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
}

.left .text02 .inner{
    position: absolute;
    top: 50%;
    height: 440px;
    margin-top: -230px;
    left: 84px;
}

.left .text03{
	opacity: 0;
	transition:all 1.5s cubic-bezier(.19,1,.22,1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fafafa;
    box-sizing: border-box;
    	transform: translate(0,60px); 
	-webkit-transform: translate(0,60px);  
}

.left .text03.view{
	opacity: 1;
    z-index: 101;	
    	transform: translate(0,0); 
	-webkit-transform: translate(0,0);  
}

.left .text03 .inner{
    position: absolute;
    top: 50%;
    height: 450px;
    margin-top: -230px;
    left: 84px;
}

.right { 
    float: right;
    width: calc(100% - 560px);
    background: #fff;
    height: auto;
}

.right .first .ph01{
	width: 100%;
	height: 0;
	padding-bottom: 70%;
	background: url(../img/naeba_01_01.jpg) center center no-repeat #ddd;
	background-size: cover;
}

.right .first .ph02{
	width: 100%;
	height: 0;
	padding-bottom: 70%;
	background: url(../img/naeba_01_02.jpg) center center no-repeat #ddd;
	background-size: cover;
}

.right .first .ph03{
	width: 100%;
	height: 0;
	padding-bottom: 70%;
	background: url(../img/naeba_01_03.jpg) center center no-repeat #ddd;
	background-size: cover;
}

.right .first .ph04{
	width: 100%;
	height: 0;
	padding-bottom: 70%;
	background: url(../img/naeba_01_04.jpg) center center no-repeat #ddd;
	background-size: cover;
}

.right .first .ph05{
	width: 100%;
	height: 0;
	padding-bottom: 70%;
	background: url(../img/naeba_01_05.jpg) center center no-repeat #ddd;
	background-size: cover;
}

.right .first .ph06{
	width: 100%;
	height: 0;
	padding-bottom: 70%;
	background: url(../img/naeba_01_06.jpg) center center no-repeat #ddd;
	background-size: cover;
}


.right .second .ph01{
	width: 100%;
	height: 0;
	padding-bottom: 70%;
	background: url(../img/naeba_02_01.jpg) center center no-repeat #ddd;
	background-size: cover;
}

.right .second .ph02{
	width: 100%;
	height: 0;
	padding-bottom: 70%;
	background: url(../img/naeba_02_02.jpg) center center no-repeat #ddd;
	background-size: cover;
}

.right .second .ph03{
	width: 100%;
	height: 0;
	padding-bottom: 70%;
	background: url(../img/naeba_02_03.jpg) center center no-repeat #ddd;
	background-size: cover;
}

.right .second .ph04{
	width: 100%;
	height: 0;
	padding-bottom: 70%;
	background: url(../img/naeba_02_04.jpg) center center no-repeat #ddd;
	background-size: cover;
}

.right .second .ph05{
	width: 100%;
	height: 0;
	padding-bottom: 70%;
	background: url(../img/naeba_02_05.jpg) center center no-repeat #ddd;
	background-size: cover;
}

.right .second .ph06{
	width: 100%;
	height: 0;
	padding-bottom: 70%;
	background: url(../img/naeba_02_06.jpg) center center no-repeat #ddd;
	background-size: cover;
}




.right .third .ph01{
	width: 100%;
	height: 0;
	padding-bottom: 70%;
	background: url(../img/naeba_03_01.jpg) center center no-repeat #ddd;
	background-size: cover;
}

.right .third .ph02{
	width: 100%;
	height: 0;
	padding-bottom: 70%;
	background: url(../img/naeba_03_02.jpg) center center no-repeat #ddd;
	background-size: cover;
}

.right .third .ph03{
	width: 100%;
	height: 0;
	padding-bottom: 70%;
	background: url(../img/naeba_03_03.jpg) center center no-repeat #ddd;
	background-size: cover;
}

.right .third .ph04{
	width: 100%;
	height: 0;
	padding-bottom: 70%;
	background: url(../img/naeba_03_04.jpg) center center no-repeat #ddd;
	background-size: cover;
}

.right .third .ph05{
	width: 100%;
	height: 0;
	padding-bottom: 70%;
	background: url(../img/naeba_03_05.jpg) center center no-repeat #ddd;
	background-size: cover;
}

.right .third .ph06{
	width: 100%;
	height: 0;
	padding-bottom: 70%;
	background: url(../img/naeba_03_06.jpg) center center no-repeat #ddd;
	background-size: cover;
}

.right .third .ph07{
	width: 100%;
	height: 0;
	padding-bottom: 70%;
	background: url(../img/naeba_03_07.jpg) center center no-repeat #ddd;
	background-size: cover;
}

.right .third .ph08{
	width: 100%;
	height: 0;
	padding-bottom: 70%;
	background: url(../img/naeba_03_08.jpg) center center no-repeat #ddd;
	background-size: cover;
}

.bnr{
    width: 100%;
    position: relative;
    background: #f5f5f7;
    z-index: 9999;
    padding-top: 0px;
    padding-bottom: 100px;
}

.bnr a.img{
    background: url(../img/shiga_bnr.jpg) center center no-repeat #f5f5f7;
    background-size: cover;
    width: 50%;
    height: 0;
    margin: 0 auto;
    padding-bottom: 20%;
    box-sizing: border-box;
    display: block;
    box-shadow:0px 0px 22px -12px rgba(0,0,0,0.39);
	transition:all 0.6s cubic-bezier(.19,1,.22,1);
}

.bnr a.takumi{
    background: url(../img/bnr_takumi_en.jpg) center center no-repeat #f5f5f7;
    background-size: cover;
    width: 50%;
    height: 0;
    margin: 50px auto;
    padding-bottom: 20%;
    box-sizing: border-box;
    display: block;
    box-shadow:0px 0px 22px -12px rgba(0,0,0,0.39);
	transition:all 0.6s cubic-bezier(.19,1,.22,1);
}

.bnr a.hoshi{
    background: url(../img/bnr_hoshi_en.jpg) center center no-repeat #f5f5f7;
    background-size: cover;
    width: 50%;
    height: 0;
    margin: 0 auto;
    padding-bottom: 20%;
    box-sizing: border-box;
    display: block;
    box-shadow:0px 0px 22px -12px rgba(0,0,0,0.39);
	transition:all 0.6s cubic-bezier(.19,1,.22,1);
}

.bnr a:hover{
	transform: scale(1.05);
}

.map{
	width: 100%;
    position: relative;
    background: #f5f5f7;
    z-index: 9999;
    padding-top: 100px;
    padding-bottom: 70px;    
}

.map01{
    width: 80%;
    position: relative;
    height: 0;
    padding-bottom: 94%;
    background: url(../img/map_en.jpg) center center no-repeat;
    background-size: contain;
    margin: 0 auto;
}



#head {
    padding: 0 15px 0 25px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    height: 51px;
    left: 0;
    background: #fff;
    width: 100%;
    z-index: 99990;
}

#head .headInner {
    max-width: 1200px;
    margin: auto;
}

#head .headInner .headLeft {
    position: relative;
    float: left;
    z-index: 10!important;
}

#head .headInner .headLeft img{
    width: 175px;
}

.pull {
    margin: 13px 0 0 0!important;
    z-index: 20;
    right: 10px;
}

.headRight {
    float: right;
    font-size: 90%;
    margin: 20px 0 0 0;
}

#head .headInner .headRight .bttop {
    margin: 0px 20px 0 0;
    float: left;
}

#head .headInner .headRight .bttop a {
    background: #eeeeee;
    padding: 1px 10px 0px 10px;
    display: inline-block;
    color: #013491;
    text-decoration: none;
    font-family: Arial;
    padding: 6px 10px;
    letter-spacing: -0.02rem;
}

#head .headInner .headRight .lang {
    float: right;
}

.pull select {
    height: 25px;
    line-height: 0;
    vertical-align: middle;
    padding: 0 5px 0 5px;
    z-index: 999999;
}

.link{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    font-family: 'Arial';
    text-align: center;	
}

.link .first_btn a{
    width: 48.5%;
    background: #ae3635;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    margin-right: 1%;
    margin-left: 1%;
    float: left;
    font-weight: 600;
    letter-spacing: -0.02rem;	
}

.link .second_btn a{
    width: 48.5%;
    background: #ae3635;
    height: 30px;
    line-height: 30px;
    color: #fff;
    display: inline-block;
    margin-right: 0;
    float: left;
    font-weight: 600;
    letter-spacing: -0.02rem;
}


#footer .footBg .footInner {
    width: 100%;
    background: #fff;
    margin: 0;
}

#footer {
    padding: 0;
    font-size: 90%!important;
    background: #fff;
    position: relative;
    width: 100%;
    height: 100px;
    z-index: 9999;
    display: block;
    padding-bottom: 20px;    
}

#footer .footBg {
    background: #f3f5f6;
}

#footer .footBg .footInner ul.footNavi {
    padding: 20px;
    margin: 0 auto;
    text-align: center;
    background: #f5f5f7;    
}

#footer .footBg .footInner ul.footNavi li {
    text-align: center;
    display: inline-block;
    color: #1c1c1c;
    line-height: 100%;
    padding: 0 6px 0 6px;
    border-left: 1px dotted #9d9d9d;
}

#footer .footBg .footInner ul.footNavi li a {
    text-decoration: none;
    color: #1c1c1c;
    font-family: 'Arial';
    font-size: 90%;
}

#footer .footBg .footInner ul.footNavi li.lastLine {
    border-right: 1px dotted #9d9d9d!important;
}

#footer .footBg .footInner ul.ftOther {
    float: right;
}

#footer .footBg .footInner ul.ftOther li {
    float: left;
    margin-left: 10px;
}

#footer .footBg .footInner ul.ftOther li.other a {
    display: block;
    color: #000000;
    padding: 3px 10px 0 10px;
    background: #e6ebed;
}

#footer .footBg .footInner ul.ftOther li.other a span {
    background: url(../img/common/arrowRight_2.png) no-repeat right center;
    padding: 0 15px 0 0;
}

#footer .foot_bottom {
    width: 100%;
    min-width: 1000px;
    padding: 19px 3%;
    height: 72px;
    background: #fff;
    margin: auto;
    box-sizing: border-box;
}

#footer .foot_bottom dl {
    float: left;
}

#footer .foot_bottom dl dt {
    float: left;
}

#footer .foot_bottom dl dd{
    float: left;
    font-family: 'Arial';
    font-size: 84%;
    margin: 18px 24px;
}

#footer p {
    font-family: Arial;
    color: #262626;
    font-size: 110%!important;
}

#footer .foot_bottom p {
    margin: 5px 0 0 0;
    float: right;
}

}



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

.pc_only{
	display: none!important;
}

#video {
  display: none;
}

#video #player{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.main{
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -10;
	background: url(../img/main.jpg) center center no-repeat;
	background-size: cover;
}

.play{
    width: 400px;
    height: 270px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -200px;
    text-align: center;
    margin-top: -150px;
}

.play .icon{
    background: url(../img/icon.png) center center no-repeat;
    background-size: contain;
    width: 60px;
    height: 68px;
    position: absolute;
    top: 53px;
    left: 50%;
    margin-left: -22px;
}

.play .circle{
    background: url(../img/line.png) center center no-repeat;
    background-size: contain;
    width: 170px;
    height: 170px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -85px;
    -webkit-animation: spin 2.5s linear infinite;
    -moz-animation: spin 2.5s linear infinite;
    animation: spin 2.5s linear infinite;
    -webkit-transition: all 800ms cubic-bezier(1, 0, 0, 1);
    transition: all 800ms cubic-bezier(1, 0, 0, 1);   
}

@-webkit-keyframes spin {
	0% {-webkit-transform: rotate(0deg);}
	100% {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes spin {
	0% {-moz-transform: rotate(0deg);}
	100% {-moz-transform: rotate(360deg);}
}
@keyframes spin {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}

.play p{
	font-size: 26px;
    font-style: italic;
    color: #fff;
    letter-spacing: 0.15rem;
    position: absolute;
    top: 216px;
    left: 0;
    width: 100%;
    text-shadow: 0px 0px 6px #000000;
}

.contents{
    margin-top: 100vh;
    position: relative;	
}

.contents a.txt{
    color: #81382a;
    position: relative;
    transition: all 0.3s cubic-bezier(.19,1,.22,1);
    z-index: 10;	
}

.contents .under{
    width: 100%;
    position: absolute;
    height: 1px;
    background: #81382a;
    top: 18px;
    transition:all 0.3s cubic-bezier(.19,1,.22,1);	
}

.left { 
    position: absolute;
    float: left;
    top: 0;
    left: 0;
    width: 560px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
}

.left.fixed { 
    position: fixed;
}

.contents h1{
    z-index: 9999;
    position: relative;
    font-size: 25px;
    font-weight: 500;
    margin-top: 24px;
    margin-left: 24px;
}

.contents h1 span{
    font-style: italic;
    font-size: 70%;
    margin-left: 16px;
    vertical-align: 4px;
}

.contents h2{
	font-size: 32px;
    font-weight: 100;
    line-height: 120%;
    letter-spacing: 0.02rem;
    font-family: ten-mincho-text,serif;
}

.contents .inner p{
    line-height: 200%;
    font-size: 106%;
    letter-spacing: 0.02rem;
    margin-top: 26px;
}

.text01{
	opacity: 1;
	transition:all 0.8s cubic-bezier(.19,1,.22,1);
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: #fafafa;
    box-sizing: border-box;
}

.text01.view{
	opacity: 1; 
    	transform: translate(0,0); 
	-webkit-transform: translate(0,0);  
}

.text01 .inner{
	position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 11% 9% 11% 10%;
}

.text02{
	opacity: 1;
	transition:all 0.8s cubic-bezier(.19,1,.22,1);
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: #fafafa;
    box-sizing: border-box;
}

.text02.view{
	opacity: 1;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
}

.text02 .inner{
	position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 11% 9% 11% 10%;
}

.text03{
	opacity: 1;
	transition:all 0.8s cubic-bezier(.19,1,.22,1);
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: #fafafa;
    box-sizing: border-box; 
}

.text03.view{
	opacity: 1;
    	transform: translate(0,0); 
	-webkit-transform: translate(0,0);  
}

.text03 .inner{
	position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 11% 9% 11% 10%;
}

.right { 
    float: right;
    width: calc(100% - 560px);
    background: #fff;
    height: auto;
}

.first_wrap .first{
	width: 3200px;
	-webkit-animation: loop 70s -25s linear infinite;
	animation: loop 70s -25s linear infinite;
}

.map{
	width: 100%;
    background: url(../img/map_sp_en.jpg) center center no-repeat #fff;
    background-size: cover;
    position: relative;
    z-index: 9999;
    height: 0;
    padding-bottom: 153%;
}

.map01{
}

#head {
    padding: 0 15px 0 25px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    height: 46px;
    left: 0;
    background: #fff;
    width: 100%;
    z-index: 99990;
}

#head .headInner {
    max-width: 1200px;
    margin: auto;
}

#head .headInner .headLeft {
    position: relative;
    float: left;
    z-index: 10!important;
}

#head .headInner .headLeft img{
    width: 157px;
}

.pull {
    margin: 13px 0 0 0!important;
    z-index: 20;
    right: 10px;
}

.headRight {
    float: right;
    font-size: 90%;
    margin: 20px 0 0 0;
}

#head .headInner .headRight .bttop {
    margin: 0px 20px 0 0;
    float: left;
}

#head .headInner .headRight .bttop a {
    background: #eeeeee;
    padding: 1px 10px 0px 10px;
    display: inline-block;
    color: #013491;
    text-decoration: none;
    font-family: Arial;
    padding: 6px 10px;
    letter-spacing: -0.02rem;
}

#head .headInner .headRight .lang {
    float: none;
    z-index: 9999;
    position: absolute;
    top: 12px;
    right: 60px;
}

.pull select {
    height: 22px;
    line-height: 0;
    vertical-align: middle;
    padding: 0 3px 0 3px;
    z-index: 10!important;
    font-size: 11px;
}

nav{
    z-index: 999999;
    float: none;
    width: 100%;
    box-sizing: border-box;
    padding: 15% 0% 15% 10%;
    height: auto;
    background: #fff;
    margin: 0!important;
    right: 0;
    position: fixed;
    font-size: 90%;
    margin: 20px 0 0 0;
    opacity: 0.5;
}

nav .bttop {
    margin: 0px 20px 0 0;
    float: none;
}

nav .bttop a {
    background: none;
    padding: 1px 10px 0px 10px;
    display: inline-block;
    color: #000;
    font-size: 28px;
    font-weight: 300;
    text-decoration: none;
    font-style: italic;
    padding: 10px 0px;
    letter-spacing: 0rem;
}

.menu{
    width: 27px;
    padding: 10px;
    height: 26px;
    display: block;
    background: url(../img/menu.png) no-repeat;
    background-size: 27px;
    background-position: 10px 13px;
    position: absolute;
    z-index: 99999;
    top: 0px;
    right: 6px;
    cursor: pointer;
}

.global.front {
    z-index: 999999;
    opacity: 1;
    top: 0%;
}

.global {
    position: fixed;
    top: 110vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 999999;
    opacity: 0;
    padding-top: 36%;
    box-sizing: border-box;
    text-align: center;
    -webkit-transition: all 400ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: all 400ms cubic-bezier(0.86, 0, 0.07, 1);
}

.remove {
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    padding: 14px;
    background: url(../img/close.png) no-repeat center center;
    background-size: 28px;
    position: absolute;
    top: 16px;
    right: 14px;
    z-index: 99999;
    cursor: pointer;
}

.link{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    font-family: 'Arial';
    text-align: center;
}

.link .first_btn a{
    width: 48.5%;
    background: #ae3635;
    height: 34px;
    line-height: 34px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.03rem;
    display: inline-block;
    margin-right: 1%;
    margin-left: 1%;
    float: left;	
}

.link .second_btn a{
    width: 48.5%;
    background: #ae3635;
    height: 34px;
    line-height: 34px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.03rem;
    color: #fff;
    display: inline-block;
    margin-right: 0;
    float: left;
}


#footer .footBg .footInner {
    width: 100%;
    background: #fff;
    margin: 0;
}

#footer {
    padding: 0;
    font-size: 90%!important;
    background: #fff;
    position: relative;
    width: 100%;
    height: 92vw;
    z-index: 9999;
    display: block;
    padding-bottom: 20px;    
}

#footer .footBg {
    background: #f3f5f6;
}

#footer .footBg .footInner ul.footNavi {
    padding: 24px 0px 12px 0px;
    margin: 0 auto;
    text-align: center;
    background: #f5f5f7;
}

#footer .footBg .footInner ul.footNavi li {
    text-align: center;
    display: inline-block;
    color: #1c1c1c;
    line-height: 100%;
    padding: 0 6px 0 6px;
    margin-bottom: 10px;
    border-left: 1px dotted #9d9d9d;
    font-feature-settings:"pkna";
    
}

#footer .footBg .footInner ul.footNavi li a {
	text-decoration: none;
    color: #1c1c1c;
    font-family: 'Arial';
    font-size: 100%;
    line-height: 100%;
    font-feature-settings:"pkna";
    display: block;
}

#footer .footBg .footInner ul.footNavi li.lastLine {
    border-right: 1px dotted #9d9d9d!important;
}

#footer .footBg .footInner ul.ftOther {
    float: right;
}

#footer .footBg .footInner ul.ftOther li {
    float: left;
    margin-left: 10px;
}

#footer .footBg .footInner ul.ftOther li.other a {
    display: block;
    color: #000000;
    padding: 3px 10px 0 10px;
    background: #e6ebed;
}

#footer .footBg .footInner ul.ftOther li.other a span {
    background: url(../img/common/arrowRight_2.png) no-repeat right center;
    padding: 0 15px 0 0;
}

#footer .foot_bottom {
    width: 100%;
    min-width: 100%;
    padding: 8% 3%;
    height: auto;
    background: #fff;
    text-align: center;
    margin: auto;
    box-sizing: border-box;
}

#footer .foot_bottom dl {
    float: none;
}

#footer .foot_bottom dl dt {
    float: none;
}

#footer .foot_bottom dl dd{
    float: none;
    font-family: 'Arial';
    font-size: 90%;
    margin: 7% 0px;
    text-align: center;
}

#footer p {
    font-family: Arial;
    color: #262626;
    font-size: 110%!important;
}

#footer .foot_bottom p {
    margin: 7% 0 0 0;
    float: none;
    text-align: center;
    padding-bottom: 11%;
    background: #fff;
    width: 100%;
}

.fancybox-slide {
    z-index: 999999;
}

.fancybox-container {
    z-index: 999999;
}

.fancybox-content {
	width: 95vw;
    height: 54vw;
}

.fancybox-slide--html .fancybox-close-small {
	display: none;
}

.bnr{
    width: 100%;
    position: relative;
    background: #f5f5f7;
    z-index: 9999;
    padding-top: 10%;
    padding-bottom: 4%;
}

.bnr a.img{
	background: url(../img/shiga_bnr.jpg) center center no-repeat #f5f5f7;
    background-size: cover;
    width: 90%;
    height: 0;
    margin: 0 auto;
    padding-bottom: 37%;
    box-sizing: border-box;
    display: block;
    box-shadow: 0px 0px 22px -12px rgba(0,0,0,0.39);
}

.bnr a.takumi{
	background: url(../img/bnr_takumi_en.jpg) center center no-repeat #f5f5f7;
    background-size: cover;
    width: 90%;
    height: 0;
    margin: 0 auto;
    padding-bottom: 37%;
    box-sizing: border-box;
    display: block;
    box-shadow: 0px 0px 22px -12px rgba(0,0,0,0.39);
    margin-top: 7%;
    margin-bottom: 7%;
}

.bnr a.hoshi{
	background: url(../img/bnr_hoshi_en.jpg) center center no-repeat #f5f5f7;
    background-size: cover;
    width: 90%;
    height: 0;
    margin: 0 auto;
    padding-bottom: 37%;
    box-sizing: border-box;
    display: block;
    box-shadow: 0px 0px 22px -12px rgba(0,0,0,0.39);
}



}





/*************INVIEW*************/

.inview{
	opacity: 0;
	transform: translate(0,60px); 
	-webkit-transform: translate(0,60px);    
}
.inview_show{
	opacity: 1.0;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
    transition:all 1s cubic-bezier(.19,1,.22,1);
}

.deview{
	opacity: 0;
	transform: translate(0,40px); 
	-webkit-transform: translate(0,40px);  
}
.deview_show{
	opacity: 1.0;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
    transition:all 0.8s cubic-bezier(.19,1,.22,1); 
    transition-delay: 1s; 
}

.upview{
	opacity: 0;
	transform: translate(0,-40px); 
	-webkit-transform: translate(0,-40px);  
}
.upview_show{
	opacity: 1.0;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
    transition:all 0.8s cubic-bezier(.19,1,.22,1); 
    transition-delay: 1.3s; 
}

.enview{
	opacity: 0;
    z-index: 9999;
    position: relative;
    overflow: hidden;
    width: 0;
    transition:all 1.6s cubic-bezier(.19,1,.22,1); 
    margin: 0 auto;
}
.enview_show{
	opacity: 1.0;
    transition:all 1.6s cubic-bezier(.19,1,.22,1); 
    transition-delay: 1.3s; 
    width: 450px;    
}

.slideview{
	opacity: 0;
    z-index: 9999;
    position: relative;
    overflow: hidden;
    width: 0;
    transition:all 2s cubic-bezier(.19,1,.22,1); 
    height: 500px;
}
.slideview_show{
	opacity: 1.0;
    transition:all 2s cubic-bezier(.19,1,.22,1); 
    transition-delay: 0.5s; 
    width: 900px;    
}
</pre></body></html>