@charset "utf-8";

/**
 *
 *  サイト共通
 *
 */

/*--------------------------------------------------------------------------
   reset
---------------------------------------------------------------------------*/

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;}
body{line-height:0;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}
ol,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;}
ins{background-color:#ff9;color:#000;text-decoration:none;}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold;}
img{border:0;vertical-align:top;}
em{font-style:italic;}
del{text-decoration:line-through;}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help;}
table{border-collapse:collapse;border-spacing:0;}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:0;padding:0;}
input,select,textarea{font-family:inherit;font-style:inherit;font-weight:inherit;font-size:100%;margin:0;padding:0;vertical-align:middle;}
input:focus,textarea:focus,select:focus{outline:none;}

/* box-sizing　デフォルト設定 */
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,a{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}


/*--------------------------------------------------------------------------
   html
---------------------------------------------------------------------------*/

html{
	overflow-y: scroll;
}


/*--------------------------------------------------------------------------
   body
---------------------------------------------------------------------------*/

body{
	background: #FFF;
	color: #444;
	font-family: Arial, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-size: 14px;
	font-size: 88%\9;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){
  body{font-size:88%;}
}

::-moz-selection{
	color: #FFF;
	background: #F8BB06;
}
::selection{
	color: #FFF;
	background: #F8BB06;
}


/*--------------------------------------------------------------------------
   Base Link
---------------------------------------------------------------------------*/

a{
	outline: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
a:link,
a:visited{
	color: #444;
	text-decoration: none;
}
a:hover{
	color: #444;
	text-decoration: underline;
	outline: none;
}
a:active{
	outline: none;
}



/*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/

#Page{
	width: 100%;
}


/*--------------------------------------------------------------------------
   Header
---------------------------------------------------------------------------*/
/**
 *   hd-　ヘッダー固有の接頭語　※他では使用禁止
**/

#Header{
	position: relative;
	z-index: 100;
	-webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#Header .hd-inner{
	position: relative;
	width: 978px;
	margin: 0 auto;
}

@media screen and (max-width: 980px) {
    #Header .hd-inner{
        width: 100%;
    }
}

/* コーポレートリンク
-----------------------------------------------------------------*/
.hd-corporate{
	height: 40px;
	background: #444;
}
.hd-corporate p,
.hd-corporate div.header-bnr{
	width: 978px;
	margin: 0 auto;
	padding-top: 8px;
}

@media screen and (max-width: 980px) {
    .hd-corporate p,
    .hd-corporate div.header-bnr{
        width: 100%;
    }
}

.hd-corporate p a{
	min-height: 24px;
	padding: 3px 0 0 0px;
	vertical-align: top;
	color: #FFF;
	font-size: 86%;
	text-decoration: none;
	display: inline-block;
}

@media screen and (max-width: 980px) {
    .hd-corporate p a{
        padding-left: 30px;
    }
}

.hd-corporate div.header-bnr{
	position:relative;
	z-index:100;
}
.hd-corporate div.header-bnr a{
	background: url(/shared/images/header_bnr.png) no-repeat;
	width:260px;
	height:30px;
	text-indent:-9999em;
	position:absolute;
	right:0;
	top:-27px;
}
.hd-corporate div.header-bnr a:hover{
	opacity:0.85;
}



/* サイトロゴ
-----------------------------------------------------------------*/
.hd-logo{
    width: 100%;
    height: auto;
    padding: 20px 0;
}

@media screen and (max-width: 980px) {
    .hd-logo{
        margin-left: 30px;
    }
}
.hd-logo a {
	display: block;
	overflow: hidden;
	width: 100%;
	white-space: nowrap;
}

@media screen and (max-width: 980px) {
    .hd-logo a{
        width: 75%;
    }
}

.hd-logo a img{
    width:405px;
    height: auto;
}
@media screen and (max-width: 980px) {
    .hd-logo a img{
        width: 100%;
    }
}

/*--------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------*/
/**
 *   ft-　フッター固有の接頭語　※他では使用禁止
**/

#Footer{
	background: url(/shared/images/footer_bg.png);
}

#Footer .ft-inner{
	position: relative;
	width: 978px;
	margin: 0 auto;
}


/* コピーライト
-----------------------------------------------------------------*/
.ft-copyright{
	height: 7vh;
	background: #444;
}
.ft-copyright small{
	display: block;
	padding-top: 25px;
	text-align: center;
	color: #FFF;
	font-size: 86%;
}


#Mv {
    height:80vh;
}
@media screen and (max-width: 980px) {
    #Mv {
        height:60vh;
    }
}

#Mv > p {
    display: table-cell;
    text-align: center;
    line-height: 1.8;
    font-size: 1.05vw;
    font-weight: bold;
    vertical-align: middle;
}
@media screen and (max-width: 1500px) {
    #Mv > p {
        font-size: 1.8vw ;
    }
}
@media screen and (max-width: 980px) {
    #Mv > p {
        font-size: 3.5vw ;
    }
    .auto_br {
        display: block ;
    }
}

#Mv > p .small {
    display: block;
    margin-top: 40px;
    font-size: 0.55vw;
    font-weight: normal;
}
@media screen and (max-width: 1950px) {
    #Mv > p .small {
        font-size: 0.75vw ;
    }
}
@media screen and (max-width: 1370px) {
    #Mv > p .small {
        font-size: 1.1vw ;
    }
}
@media screen and (max-width: 980px) {
    #Mv > p .small {
        font-size: 1.85vw ;
    }
}





#Mv > p .small a {
    text-decoration: underline;
}
#Mv > p .small a:hover {
    opacity: 0.5;
    transition-duration: 0.25s;
}

