@charset "UTF-8";


:root{
--navy: #0f2540;
--gold: #897d55;
--cream: #f3f3e0;
--light_cream: #f8f8f3;
--gray: #636363;
--light_gray: #cdcdcd;
}

/*フォントサイズを変えない*/
body {
    -webkit-text-size-adjust: 100%;
    
}
img{
    width: 100%;
    height: auto;
}
p{
  font-size: .75rem;   /* 12px */
　line-height: 1.8;
}
/* コピペ用コード */
.font-size-dummy {
    font-size: .75rem;   /* 12px */
    font-size: .8125rem; /* 13px */
    font-size: .875rem;  /* 14px */
    font-size: 1rem;     /* 16px */
    font-size: 1.25rem;  /* 20px */
    font-size: 1.75rem;  /* 28px */
}

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

#renove main{
     font-family: "メイリオ","Hiragino Kaku Gothic Pro",Meiryo,"ヒラギノ角ゴ Pro W3","MS PGothic","MS UI Gothic",Helvetica,Arial,sans-serif;
}

#renove main *{
	box-sizing:border-box;
}

#renove main img{
	max-width:100%;
	vertical-align:bottom;
}

/*clearfix-----------*/
.cf:before, .cf:after {content: "";display: table;}
.cf:after {clear: both;}
.cf {zoom: 1;}

/*汎用Class -----------*/
.mt0{margin-top:0px !important;}
.mt5{margin-top:5px !important;}
.mt10{margin-top:10px !important;}
.mt20{margin-top:20px !important;}
.mt30{margin-top:30px !important;}
.mt40{margin-top:40px !important;}
.mt60{margin-top:60px !important;}
.mb10{margin-bottom:20px !important;}
.mb20{margin-bottom:20px !important;}
.mb40{margin-bottom:40px !important;}
.pt20{padding-top:20px !important;}
.pt40{padding-top:40px !important;}
.pt60{padding-top:60px !important;}
.pb40{padding-bottom:40px !important;}
.pl10{padding-left:10px !important;}
.pb10{padding-bottom:10px !important;}
.pb30{padding-bottom:30px !important;}
.pAll{padding:30px !important;}
.pImg{padding:10px 200px 10px 200px!important;}
@media (max-width: 767px) {
.pImg{padding:10px 20px 10px  20px!important;}
}	
.center,.txtC{text-align:center !important;}
.right{text-align: right !important;}
.left{text-align: left !important;}
.cap{font-size: 0.7em !important;}
.w10{width:45px; text-align:right;vertical-align:top !important;}
.fBig{font-size: 1.2em !important;}
.fBigM{font-size: 1.8em !important;}
.fBold{font-weight: bold;}
.fGold{color: #8b7f3d;}
.fRed{color: #9f3131;}
.inde1 {padding-left:1em;text-indent:-1em;}
.inde2 {padding-left:2em;text-indent:-2em;}
.pAll{padding:16px !important;}

/*タブレット・PCのみ表示*--------------------*/
@media screen and (min-width: 768px){	
.forPC { display:block!important; }
.forSP { display:none!important; }
}
/*SPのみ表示*--------------------*/
@media screen and (max-width: 767px){	
.forPC  { display:none!important;}
.forSP { display:block!important;}

}


/*タブレット・PCのみ表示*（inline）*--------------------*/
@media screen and (min-width: 768px){	
.pcIn { display:inline!important; }
.spIn { display:none!important; }
}

/*SPのみ表示（左揃え）*--------------------*/
@media screen and (max-width: 767px){	
.spLeft {text-align: left !important;}
}
/*SPのみ表示（センター）*--------------------*/
@media screen and (max-width: 767px){	
.spCen {text-align: center !important;}

}
/*SP・タブレットのみ表示（マージン）*--------------------*/
@media screen and (max-width: 843px){	
.spMt20 {margin-top:20px !important;}
.spMt40 {margin-top:40px !important;}
.spMt80 {margin-top:80px !important;}
}
/*PCのみ表示（マージン）*--------------------*/
@media screen and (min-width: 768px){		
.pcMt80 {margin-top:80px !important;}
.pcMl20 {margin-left:20px !important;}
.pcMt20 {margin-top:20px !important;}	
}

.btnL{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    max-width: 750px;
}
.btnL a{
    display: block;
    background: rgba(153,145,111,1);
    padding: 20px 0;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    text-align: center;
    transition: all  0.3s ease;
}
.btnL a:hover{
    background: rgba(153,145,111,0.8);
}
@media screen and (min-width: 599px){
    .btnL a{
    font-size:1.2em;
    }
}
.norap{
    display: inline-block;
}
/*ふわっと表示*--------------------*/
/*フェードインアニメーションの指定*/
#renove main .scrollanime {opacity: 0;} /*一瞬表示されるのを防ぐ*/
#renove main .fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;         
    }
    100% {
    opacity: 1;
    transform: translate(0);
    }
}
 
/*上下の動きを指定*/
#renove main .updown {transform: translateY(-60px);}
#renove main .downup {transform: translateY(60px);}
 
/*左右の動きを指定*/
#renove main .sect02{overflow: hidden;} /*横スクロールバーを隠す*/
#renove main .slide-right {transform: translateX(200px);}
#renove main .slide-left {transform: translateX(-200px);}

/*Topへ戻る*--------------------*/
/*ページトップ*/
#gotoTop {
	display: none;
	position: fixed;
	bottom: 80px;
	right: 20px;
	z-index:999;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 14px;
  line-height: 1em;
  letter-spacing: .1em;
  padding-top: 120px;
  color: rgba(255,255,255,.6);
}
#gotoTop a {
  color: rgba(255,255,255,.6)!important;
  text-decoration: none;
}
#gotoTop:before {
  content: '';
  width: 1px;
  height: 110px;
  background: rgba(255,255,255,.5);
  position: absolute;
  left: calc(50% - 4px);
  top: 0;
  z-index: 1;
}
#gotoTop:after {
  content: '';
  width: 11px;
  height: 7px;
  background: url("../images/pulldown_wht.png") no-repeat center / contain;
  position: absolute;
  left: calc(50% - 9px);
  top: 0;
  transform: rotate(180deg);
  z-index: 2;
}

/* footer※公式トップcommon.cssと共通*/
#gFooter {
  
  background-color: var(--navy);
  padding: 20px 0 40px 0;
  color: #fff;
}
#gFooter a {
  text-decoration: none;
  color: #fff;
}
#gFooter .listLang {
  display: inline-block;
}
#gFooter .listLang a {
  color: #fff;
}
.ftNav {
  float: left;
  max-width: 800px;
    width: 100%;
    
}
.ftContact {
  float: right;
}
.ftNav li {
  display: inline-block;
  padding-right: 20px;
  white-space: nowrap;
  font-size: 12px;
  margin-bottom: 5px;
}
.ftNav a {
  color: #ffff;
}
.ftNav a:hover {
  text-decoration: underline !important;
}
.snsLink {
  margin: 30px auto;
}
.snsLink .snsTtl {
  font-family: "Times New Roman", Times, serif;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-align: center;
}
.snsLink ul {
  display: flex;
  justify-content: center;
}
.snsLink ul > li {
  margin: 0 20px;
}
.copyRight {
  font-family: "Times New Roman", Times, serif;
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 10px;
  clear: both;
  text-align: center;
}
.footTxt {
  border-top: 1px dotted #ccc;
  padding-top: 40px;
  margin: 60px 0;
}
.logoVH,
.listPrimary,
.listLang {
  display: inline-block;
  vertical-align: middle;
}
.listPrimary,
.listLang {
  margin-left: -5px;
}
.listPrimary li {
  float: left;
  margin: 0 0 0 7px;
}
.listLang li {
  float: left;
  margin: 0 0 3px 5px;
}
.listLang a {
  display: block;
  text-align: center;
  border: 1px solid #333333;
  padding: 2px 10px;
  line-height: 1;
  color: #333333;
  /* background-color: #C3A428; */
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ns-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.listLang a:hover {
  background-color: #b5ad93;
}
.logoVH {
  padding: 0 0 0 10px;
}
.inner {
width: 100%;
  max-width:  990px;
  margin: 0 auto;
}

a.btnStyle05 {
  border: 1px solid #fff;
  text-align: center;
  color: #fff;
  text-decoration: none;
  padding: 5px 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a.btnStyle05:hover {
  border: 1px solid #fff;
  background-color: #b7b29a;
  color: #fff !important;
}
@media screen and (max-width: 767px) {
.footTxt {
	margin: 15px;
	padding-top: 15px;
}
#gFooter {
	margin-top: 0;
	padding: 15px;
}
.copyRight {
	font-size: 10px;
	text-align: center;
}
.ftNav {
	width: auto;
	margin-top: 5px;
	float: none;
	text-align: center;
}
.ftNav li {
	padding: 0 5px;
}
.ftContact {
	float: none;
	text-align: center;
	margin-top: 5px;
}
.ftContact a {
	display: inline-block;
}
}