@charset "UTF-8";

/* CSS Document */
@font-face {
  font-family: "Yu Gothic";
  font-display: auto;
  font-weight: normal;
  src: local("Yu Gothic-Medium"),
  local('Yu Gothic Medium'),
  local('YuGothic-Regular');
  
}
@font-face {
  font-family: "Yu Gothic";
  font-display: auto;
  font-weight: bold;
  src: local("Yu Gothic-Bold"),
  local('Yu Gothic');
}


/* reset
------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
	box-sizing: border-box;
}
section {
	width: 100%;
}
html, body {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

html{
    overflow-y: scroll;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
input, textarea{
	margin: 0;
	padding: 0;
}
ol, ul{
    list-style:none;
}
table{
    border-collapse: collapse;
    border-spacing:0;
	width: 100%;
}
table ,th,td{
	border-collapse:collapse;
}
caption, th{
    text-align: left;
}
img {
	width: 100%;
	height:auto;
	line-height:0;
	vertical-align:top;
}
a,form,input,iframe,textarea,button {
	 outline:0px none black !important;
}
a {
	outline: none;
	display: inline-block;
    transition: all 0.28s ease;
}
a img{
	transition: 0.28s;
}
a:link,
a:hover,
a:visited {
	text-decoration: none !important;
	color: #fff;
}


/* Primary Styles
------------------------------------------*/
html {
	overflow-y: scroll;
	box-sizing: border-box;
	/*-webkit-text-size-adjust: 100%;*/
	font-size: 62.5%;
}

body {
	margin: 0;
	padding: 0;
	font-size: 1.6rem;
	font-family: "Times New Roman", 'Lora', Times, serif;
	font-weight: 400;
	background: url(../img/common/bg_body.jpg) repeat center 50%;
	/*-webkit-text-size-adjust:100%;
	-moz-text-size-adjust:100%;
	-ms-text-size-adjust:100%;
	-o-text-size-adjust:100%;*/
	text-size-adjust:100%;
	color: #fff;
	letter-spacing: 0.045em;
	line-height: 1.6;
	position: relative;
}

body.fixed {
    position: fixed;
    width: 100%;
}

main {
	font-size: 1.6rem;
	line-height: 1.75;
	display: block;
}

*,
::before,
::after {
	box-sizing: inherit;
}

::before,
::after {
	vertical-align: inherit;
	text-decoration: inherit;
}

/* For modern browsers */
.cf:before,
.cf:after {
	content:"";
	display:table;
}

.cf:after {
	clear:both;
}

/* container-fluid
---------------------------------*/
.container-fluid {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

/* container-full
---------------------------------*/
.container-full {
	width: 100%;
	margin: 0 auto;
}
@media (min-width: 1200px) {
    .container-full {
        max-width: 1120px;   
    }
}
/* Float Elements
---------------------------------*/
.fl-lt {float:left;}
.fl-rt {float:right;}

/* Common style
---------------------------------*/
.imgBg {
	width: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	display: block;
}
.imgBg2 {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	display: block;
}
.img-center {
	display: block;
	margin: 0 auto;
}
.txt-center,
.stxt-center {
	text-align: center;
}
@media (max-width: 768px){
	.stxt-center {
		text-align: left;
	}
}

.block { display: block;}
.iblock { display: inline-block;}

/*PC SP only*/
@media (min-width: 1281px){.sp-only-ll {display: none;}}
@media (max-width: 1280px){.pc-only-ll {display: none;}}
@media (min-width: 1025px){.sp-only-l {display: none;}}
@media (max-width: 1024px){.pc-only-l {display: none;}}
@media (min-width: 769px){.sp-only {display: none;}}
@media (max-width: 768px){.pc-only {display: none;}}
@media (min-width: 481px){.sp-only-m {display: none;}}
@media (max-width: 480px){.pc-only-m {display: none;}}

/* flex ---------------- */
.flex {
	display: flex;
	flex-wrap: wrap;
}
.flex.column {
    flex-direction: column;
}
.flex.between {
	-webkit-box-pack: justify;
    justify-content: space-between;
}
/* 上下左右中央 */
.flex.vc {
    flex-direction: column; /* 子要素をflexboxにより縦方向に揃える */
    justify-content: center; /* 子要素をflexboxにより中央に配置する */
    align-items: center;  /* 子要素をflexboxにより中央に配置する */
}
/* 上下中央横並び */
.flex.vm {
    flex-direction: row; /* 子要素をflexboxにより縦方向に揃える */
    align-items: center;  /* 子要素をflexboxにより中央に配置する */
}

/* layout --------------------- */
[class^="col-"], [class*=" col-"] {
	padding-right: 0;
    padding-left: 0;
}
.container-fluid {
	padding-right: 0;
	padding-left: 0;
}
.wrap {
    box-sizing: border-box;
    max-width: 1350px;
    width: 90%;
    margin: 0 auto;
}

.wrap-l {
	box-sizing: border-box;
	margin: 0 auto;
	width: 100%;
}

.wrap-l > .row > .box-txt {
	padding: 0 5%;
}
.wrap-l > .row > .box-txt.has-style01mttl {
	padding-left: 0;
}
.wrap-m {
    box-sizing: border-box;
    max-width: 1140px;
    margin: 0 auto;	
}
.wrap-s {
    box-sizing: border-box;
    max-width: 960px;
    margin: 0 auto;	
}

.wrap-ss {
	max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.row {
	margin-right: 0;
    margin-left: 0;
}
@media (max-width: 1350px) {
    .wrap-m {
        width: 90%;
		max-width: none;
    }
}
@media (max-width: 1199px) {
	.wrap-s {
		width: 90%;
		max-width: none;	
	}
}
@media (max-width: 767px) {
	.wrap.sp-full {
		width: 100%;
	}
	.wrap-ss {
		width: 90%;	
	}
	.wrap-ss.sp-full {
		width: 100%;
	}
}

/* font STYLE ------------------- */
.f-en { font-family: Arial, Helvetica, sans-serif; letter-spacing: 0;}
.f-lr { font-family: 'Lora', serif; font-weight: 400;}
.f-ymin { font-family: Times, "Times New Roman", serif;}
.f-yug { font-family: Arial, Helvetica, sans-serif;}

/* font weight --------------------------------------*/
.f-bold { font-weight: bold;}
.f-normal { font-weight: normal;}
.f-w100 { font-weight: 100;}
.f-w200 { font-weight: 200;}
.f-w300 { font-weight: 300;}
.f-w400 { font-weight: 400;}
.f-w500 { font-weight: 500;}
.f-w600 { font-weight: 600;}
.f-w700 { font-weight: 700;}
.f-w900 { font-weight: 900;}

/* font color --------------------------------------*/
.f-red { color: #FF0000;}
.f-wht70 { color: rgba(255,255,255,0.7);}
.f-wht60 { color: rgba(255,255,255,0.6);}
.f-wht50 { color: rgba(255,255,255,0.5);}
.f-wht40 { color: rgba(255,255,255,0.4);}
.f-wht30 { color: rgba(255,255,255,0.3);}
.f-wht { color: #fff;}
.f-blk { color: #000;}
.f-camel { color: #a59757;}
.f-orange { color: #a4802c;}
.f-brown { color: #a59757;}
.f-yellow { color: #c0bb3e;}

@media (max-width: 767px) {
	.f-wht70 { color: rgba(255,255,255,0.8);}
	.f-wht60 { color: rgba(255,255,255,0.7);}
	.f-wht50 { color: rgba(255,255,255,0.6);}
	.f-wht40 { color: rgba(255,255,255,0.5);}
	.f-wht30 { color: rgba(255,255,255,0.4);}
}

/* bg-color ------------------------------------ */
.bg-bk { background: #000;}
.bg-bk60 { background: rgba(0,0,0,0.6);}
.bg-wh8 { background: rgba(255,255,255,0.08);}

/* font size --------------------------------------*/
[class^="f-sz"] {
	-webkit-transition: all 0.28s ease;
	-moz-transition: all 0.28s ease;
	transition: all 0.28s ease;	
}
.f-sz10 { font-size: 1.0rem;}
.f-sz11 { font-size: 1.1rem;}
.f-sz12 { font-size: 1.2rem;}
.f-sz13 { font-size: 1.3rem;}
.f-sz14 { font-size: 1.4rem;}
.f-sz15 { font-size: 1.5rem;}
.f-sz16 { font-size: 1.6rem;}
.f-sz17 { font-size: 1.7rem;}
.f-sz18 { font-size: 1.8rem;}
.f-sz19 { font-size: 1.9rem;}
.f-sz20 { font-size: 2.0rem;}
.f-sz21 { font-size: 2.1rem;}
.f-sz22 { font-size: 2.2rem;}
.f-sz23 { font-size: 2.3rem;}
.f-sz24 { font-size: 2.4rem;}
.f-sz25 { font-size: 2.5rem;}
.f-sz26 { font-size: 2.6rem;}
.f-sz27 { font-size: 2.7rem;}
.f-sz28 { font-size: 2.8rem;}
.f-sz29 { font-size: 2.9rem;}
.f-sz30 { font-size: 3.0rem;}
.f-sz31 { font-size: 3.1rem;}
.f-sz32 { font-size: 3.2rem;}
.f-sz33 { font-size: 3.3rem;}
.f-sz34 { font-size: 3.4rem;}
.f-sz35 { font-size: 3.5rem;}
.f-sz36 { font-size: 3.6rem;}
.f-sz37 { font-size: 3.7rem;}
.f-sz38 { font-size: 3.8rem;}
.f-sz39 { font-size: 3.9rem;}
.f-sz40 { font-size: 4.0rem;}
.f-sz41 { font-size: 4.1rem;}
.f-sz42 { font-size: 4.2rem;}
.f-sz43 { font-size: 4.3rem;}
.f-sz44 { font-size: 4.4rem;}
.f-sz45 { font-size: 4.5rem;}
.f-sz46 { font-size: 4.6rem;}
.f-sz47 { font-size: 4.7rem;}
.f-sz48 { font-size: 4.8rem;}
.f-sz49 { font-size: 4.9rem;}
.f-sz50 { font-size: 5.0rem;}
.f-sz51 { font-size: 5.1rem;}
.f-sz52 { font-size: 5.2rem;}
.f-sz53 { font-size: 5.3rem;}
.f-sz54 { font-size: 5.4rem;}
.f-sz55 { font-size: 5.5rem;}
.f-sz56 { font-size: 5.6rem;}
.f-sz57 { font-size: 5.7rem;}
.f-sz58 { font-size: 5.8rem;}
.f-sz59 { font-size: 5.9rem;}
.f-sz60 { font-size: 6.0rem;}
.f-sz62 { font-size: 6.2rem;}
.f-sz64 { font-size: 6.4rem;}
.f-sz66 { font-size: 6.6rem;}
.f-sz68 { font-size: 6.8rem;}
.f-sz70 { font-size: 7.0rem;}
.f-sz72 { font-size: 7.2rem;}
.f-sz76 { font-size: 7.5rem;}
.f-sz80 { font-size: 8.0rem;}
.f-sz85 { font-size: 8.5rem;}
.f-sz90 { font-size: 9.0rem;}
.f-sz95 { font-size: 9.5rem;}
.f-sz100 { font-size:10rem;}
.f-sz110 { font-size:11rem;}

.fls-l { letter-spacing: 0.3em;}/*300*/
.fls-m { letter-spacing: 0.2em;}/*200*/
.fls-s { letter-spacing: 0.1em;}/*100*/

.flh-l { line-height: 2.0;}


@media (min-width: 481px) and (max-width: 1200px) {
    .f-sz15 { font-size: calc(1.4rem + ((1vw - 0.48rem) * 0.1389));}
    .f-sz16 { font-size: calc(1.5rem + ((1vw - 0.48rem) * 0.1389));}
    .f-sz17 { font-size: calc(1.6rem + ((1vw - 0.48rem) * 0.1389));}
    .f-sz18 { font-size: calc(1.7rem + ((1vw - 0.48rem) * 0.1389));}
    .f-sz19 { font-size: calc(1.75rem + ((1vw - 0.48rem) * 0.2083));}
    .f-sz20 { font-size: calc(1.8rem + ((1vw - 0.48rem) * 0.2778));}
    .f-sz21 { font-size: calc(1.85rem + ((1vw - 0.48rem) * 0.3472));}
    .f-sz22 { font-size: calc(1.9rem + ((1vw - 0.48rem) * 0.4167));}
    .f-sz23 { font-size: calc(1.95rem + ((1vw - 0.48rem) * 0.4861));}
    .f-sz24 { font-size: calc(2rem + ((1vw - 0.48rem) * 0.5556));}
    .f-sz25 { font-size: calc(2rem + ((1vw - 0.48rem) * 0.6944));}
    .f-sz26 { font-size: calc(2.1rem + ((1vw - 0.48rem) * 0.6944));}
    .f-sz27 { font-size: calc(2.1rem + ((1vw - 0.48rem) * 0.8333));}
    .f-sz28 { font-size: calc(2.2rem + ((1vw - 0.48rem) * 0.8333));}
    .f-sz29 { font-size: calc(2.2rem + ((1vw - 0.48rem) * 0.9722));}
    .f-sz30 { font-size: calc(2.3rem + ((1vw - 0.48rem) * 0.9722));}
    .f-sz31 { font-size: calc(2.3rem + ((1vw - 0.48rem) * 1.1111));}
    .f-sz32 { font-size: calc(2.4rem + ((1vw - 0.48rem) * 1.1111));}
    .f-sz33 { font-size: calc(2.4rem + ((1vw - 0.48rem) * 1.25));}
    .f-sz34 { font-size: calc(2.5rem + ((1vw - 0.48rem) * 1.25));}
    .f-sz35 { font-size: calc(2.5rem + ((1vw - 0.48rem) * 1.3889));}
    .f-sz36 { font-size: calc(2.6rem + ((1vw - 0.48rem) * 1.3889));}
    .f-sz37 { font-size: calc(2.6rem + ((1vw - 0.48rem) * 1.5278));}
    .f-sz38 { font-size: calc(2.7rem + ((1vw - 0.48rem) * 1.5278));}
    .f-sz39 { font-size: calc(2.7rem + ((1vw - 0.48rem) * 1.6667));}
    .f-sz40 { font-size: calc(2.8rem + ((1vw - 0.48rem) * 1.6667));}
    .f-sz41 { font-size: calc(2.8rem + ((1vw - 0.48rem) * 1.8056));}
    .f-sz42 { font-size: calc(2.9rem + ((1vw - 0.48rem) * 1.8056));}
    .f-sz43 { font-size: calc(2.9rem + ((1vw - 0.48rem) * 1.9444));}
    .f-sz44 { font-size: calc(3rem + ((1vw - 0.48rem) * 1.9444));}
    .f-sz45 { font-size: calc(3rem + ((1vw - 0.48rem) * 2.0833));}
    .f-sz46 { font-size: calc(3.1rem + ((1vw - 0.48rem) * 2.0833));}
    .f-sz47 { font-size: calc(3.1rem + ((1vw - 0.48rem) * 2.2222));}
    .f-sz48 { font-size: calc(3.2rem + ((1vw - 0.48rem) * 2.2222));}
    .f-sz49 { font-size: calc(3.2rem + ((1vw - 0.48rem) * 2.3611));}
    .f-sz50 { font-size: calc(3.3rem + ((1vw - 0.48rem) * 2.3611));}
    .f-sz51 { font-size: calc(3.3rem + ((1vw - 0.48rem) * 2.5));}
    .f-sz52 { font-size: calc(3.4rem + ((1vw - 0.48rem) * 2.5));}
    .f-sz53 { font-size: calc(3.4rem + ((1vw - 0.48rem) * 2.6389));}
    .f-sz54 { font-size: calc(3.5rem + ((1vw - 0.48rem) * 2.6389));}
    .f-sz55 { font-size: calc(3.5rem + ((1vw - 0.48rem) * 2.7778));}
    .f-sz56 { font-size: calc(3.6rem + ((1vw - 0.48rem) * 2.7778));}
    .f-sz57 { font-size: calc(3.6rem + ((1vw - 0.48rem) * 2.9167));}
    .f-sz58 { font-size: calc(3.7rem + ((1vw - 0.48rem) * 2.9167));}
    .f-sz59 { font-size: calc(3.7rem + ((1vw - 0.48rem) * 3.0556));}
    .f-sz60 { font-size: calc(3.8rem + ((1vw - 0.48rem) * 3.0556));}
    .f-sz62 { font-size: calc(3.8rem + ((1vw - 0.48rem) * 3.3333));}
    .f-sz64 { font-size: calc(3.9rem + ((1vw - 0.48rem) * 3.4722));}
    .f-sz66 { font-size: calc(3.9rem + ((1vw - 0.48rem) * 3.75));}
    .f-sz68 { font-size: calc(4rem + ((1vw - 0.48rem) * 3.8889));}
    .f-sz70 { font-size: calc(4.2rem + ((1vw - 0.48rem) * 3.8889));}
    .f-sz72 { font-size: calc(4.4rem + ((1vw - 0.48rem) * 3.8889));}
    .f-sz76 { font-size: calc(4.6rem + ((1vw - 0.48rem) * 4.1667));}
    .f-sz80 { font-size: calc(4.8rem + ((1vw - 0.48rem) * 4.4444));}
    .f-sz85 { font-size: calc(5rem + ((1vw - 0.48rem) * 4.8611));}
    .f-sz90 { font-size: calc(5rem + ((1vw - 0.48rem) * 5.5556));}
    .f-sz95 { font-size: calc(5.5rem + ((1vw - 0.48rem) * 5.5556));}
    .f-sz100 { font-size: calc(5.5rem + ((1vw - 0.48rem) * 6.25));}
    .f-sz110 { font-size: calc(5.5rem + ((1vw - 0.48rem) * 7.6389));}
}
@media (max-width: 480px){
    .f-sz15 { font-size: 1.4rem;}
    .f-sz16 { font-size: 1.5rem;}
    .f-sz17 { font-size: 1.6rem;}
    .f-sz18 { font-size: 1.7rem;}
    .f-sz19 { font-size: 1.75rem;}
    .f-sz20 { font-size: 1.8rem;}
    .f-sz21 { font-size: 1.85rem;}
    .f-sz22 { font-size: 1.9rem;}
    .f-sz23 { font-size: 1.95rem;}
    .f-sz24 { font-size: 2rem;}
    .f-sz25 { font-size: 2rem;}
    .f-sz26 { font-size: 2.1rem;}
    .f-sz27 { font-size: 2.1rem;}
    .f-sz28 { font-size: 2.2rem;}
    .f-sz29 { font-size: 2.2rem;}
    .f-sz30 { font-size: 2.3rem;}
    .f-sz31 { font-size: 2.3rem;}
    .f-sz32 { font-size: 2.4rem;}
    .f-sz33 { font-size: 2.4rem;}
    .f-sz34 { font-size: 2.5rem;}
    .f-sz35 { font-size: 2.5rem;}
    .f-sz36 { font-size: 2.6rem;}
    .f-sz37 { font-size: 2.6rem;}
    .f-sz38 { font-size: 2.7rem;}
    .f-sz39 { font-size: 2.7rem;}
    .f-sz40 { font-size: 2.8rem;}
    .f-sz41 { font-size: 2.8rem;}
    .f-sz42 { font-size: 2.9rem;}
    .f-sz43 { font-size: 2.9rem;}
    .f-sz44 { font-size: 3rem;}
    .f-sz45 { font-size: 3rem;}
    .f-sz46 { font-size: 3.1rem;}
    .f-sz47 { font-size: 3.1rem;}
    .f-sz48 { font-size: 3.2rem;}
    .f-sz49 { font-size: 3.2rem;}
    .f-sz50 { font-size: 3.3rem;}
    .f-sz51 { font-size: 3.3rem;}
    .f-sz52 { font-size: 3.4rem;}
    .f-sz53 { font-size: 3.4rem;}
    .f-sz54 { font-size: 3.5rem;}
    .f-sz55 { font-size: 3.5rem;}
    .f-sz56 { font-size: 3.6rem;}
    .f-sz57 { font-size: 3.6rem;}
    .f-sz58 { font-size: 3.7rem;}
    .f-sz59 { font-size: 3.7rem;}
    .f-sz60 { font-size: 3.8rem;}
    .f-sz62 { font-size: 3.8rem;}
    .f-sz64 { font-size: 3.9rem;}
    .f-sz66 { font-size: 3.9rem;}
    .f-sz68 { font-size: 4rem;}
    .f-sz70 { font-size: 4.2rem;}
    .f-sz72 { font-size: 4.4rem;}
    .f-sz76 { font-size: 4.6rem;}
    .f-sz80 { font-size: 4.8rem;}
    .f-sz85 { font-size: 5rem;}
    .f-sz90 { font-size: 5rem;}
    .f-sz95 { font-size: 5.5rem;}
    .f-sz100 { font-size: 5.5rem;}
    .f-sz110 { font-size: 5.5rem;}
	
	.fls-l { letter-spacing: 0.18em;}/*300*/
	.fls-m { letter-spacing: 0.1em;}/*200*/
}


/* padding */
.pt130 { padding-top: 130px;}
.pt120 { padding-top: 120px;}
.pt110 { padding-top: 110px;}
.pt100 { padding-top: 100px;}
.pt90 { padding-top: 90px;}
.pt85 { padding-top: 85px;}
.pt80 { padding-top: 80px;}
.pt70 { padding-top: 70px;}
.pt60 { padding-top: 60px;}
.pt50 {	padding-top: 50px;}
.pt40 { padding-top: 40px;}
.pt30 { padding-top: 30px;}
.pt20 { padding-top: 20px;}
.pt15 {	padding-top: 15px;}
.pt10 {	padding-top: 10px;}
.pt5 {	padding-top: 5px;}

.pb150 { padding-bottom: 150px;}
.pb130 { padding-bottom: 130px;}
.pb120 { padding-bottom: 120px;}
.pb110 { padding-bottom: 110px;}
.pb100 { padding-bottom: 100px;}
.pb90 { padding-bottom: 90px;}
.pb80 { padding-bottom: 80px;}
.pb70 {	padding-bottom: 70px;}
.pb60 {	padding-bottom: 60px;}
.pb50 {	padding-bottom: 50px;}
.pb40 {	padding-bottom: 40px;}
.pb30 {	padding-bottom: 30px;}
.pb20 {	padding-bottom: 20px;}
.pb15 {	padding-bottom: 15px;}
.pb10 {	padding-bottom: 10px;}
.pb5 {	padding-bottom: 5px;}

.mb90 {	margin-bottom: 90px;}
.mb70 {	margin-bottom: 70px;}
.mb60 {	margin-bottom: 60px;}
.mb50 {	margin-bottom: 50px;}
.mb40 {	margin-bottom: 40px;}
.mb30 {	margin-bottom: 30px;}
.mb20 { margin-bottom: 20px;}
.mb15 { margin-bottom: 15px;}
.mb10 { margin-bottom: 10px;}
.mb5 { margin-bottom: 5px;}

@media (max-width: 768px) {
	.pt130 { padding-top: 100px;}
	.pt120 { padding-top: 95px;}
	.pt110 { padding-top: 90px;}
	.pt100 { padding-top: 75px;}
	.pt90 { padding-top: 60px;}
	.pt85 { padding-top: 63px;}
	.pt80 { padding-top: 55px;}
	.pt70 { padding-top: 50px;}
	.pt60 { padding-top: 45px;}
	.pt50 { padding-top: 40px;}
	.pt40 { padding-top: 30px;}
	.pt30 { padding-top: 25px;}
	.pt20 { padding-top: 15px;}
	
	.pb150 { padding-bottom: 120px;}
	.pb130 { padding-bottom: 100px;}
	.pb120 { padding-bottom: 95px;}
	.pb110 { padding-bottom: 90px;}
	.pb100 { padding-bottom: 80px;}
	.pb90 { padding-bottom: 65px;}
	.pb80 { padding-bottom: 55px;}
	.pb70 { padding-bottom: 50px;}
	.pb60 { padding-bottom: 45px;}
	.pb50 { padding-bottom: 40px;}
	.pb40 { padding-bottom: 30px;}
	.pb30 { padding-bottom: 25px;}
	.pb20 { padding-bottom: 20px;}
	
	.mb30 { margin-bottom: 25px;}
	.mb40 {	margin-bottom: 30px;}
	.mb50 {	margin-bottom: 35px;}
	.mb60 {	margin-bottom: 40px;}
	.mb70 { margin-bottom: 55px;}
	.mb90 { margin-bottom: 60px;}
}

@media (max-width: 480px) {
	
	.pt130 { padding-top: 65px;}
	.pt120 { padding-top: 60px;}
	.pt110 { padding-top: 55px;}
	.pt100 { padding-top: 50px;}
	.pt90 { padding-top: 45px;}
	.pt85 { padding-top: 40px;}
	.pt80 { padding-top: 40px;}
	.pt70 { padding-top: 35px;}
	.pt60 { padding-top: 30px;}
	.pt50 { padding-top: 25px;}
	.pt40 { padding-top: 20px;}
	.pt30 { padding-top: 15px;}
	.pt20 { padding-top: 10px;}
	
	.pb150 { padding-bottom: 75px;}
	.pb130 { padding-bottom: 65px;}
	.pb120 { padding-bottom: 60px;}
	.pb110 { padding-bottom: 55px;}	
	.pb100 { padding-bottom: 50px;}
	.pb90 { padding-bottom: 45px;}
	.pb80 { padding-bottom: 40px;}
	.pb70 { padding-bottom: 35px;}
	.pb60 { padding-bottom: 30px;}
	.pb50 { padding-bottom: 25px;}
	.pb40 { padding-bottom: 20px;}
	.pb30 { padding-bottom: 15px;}
	.pb20 { padding-bottom: 10px;}
	
	.mb90 {	margin-bottom: 45px;}
	.mb70 {	margin-bottom: 35px;}
	.mb60 {	margin-bottom: 30px;}
	.mb50 {	margin-bottom: 25px;}
	.mb40 { margin-bottom: 20px;}
	.mb30 { margin-bottom: 15px;}
	.mb20 { margin-bottom: 10px;}
}

/* iOS タップバグ回避
========================= */
@media screen and (max-width: 640px) {
	.button a{
		pointer-events: none;
	}
	a:hover:after,
	a:active:after,
	a:focus:after
	a:after {
		display: none !important;
	}
}

/* ----------------------------------------
   header
------------------------------------------*/
/* .site-header */
.site-header {
	width: 100%;
	position: absolute;
	top: 0;
	z-index: 901;
}

.site-header.fixed-header {
	transition: all ease 0.35s;	
}

.site-header::before {
    display: block;
    content: "";
    width: 100%;
    height: 290px;
    display: block;
    top: 0;
    left: 0;
    position: fixed;
    transition: all 0.28s ease;
    background: url(../img/common/bg-grade.png) repeat-x left top;
    z-index: -1;
}



/* header-logo --------------------------*/

.site-header .header-logo,
.site-header .header-logo .h-logo,
.site-header .header-logo .h-logo > a,
.site-header .header-logo .h-logo > a .h-mark,
.site-header .header-logo .h-logo > a .h-sitenamebox,
.site-header .header-logo .h-logo > a .h-logotxt,
.site-header .header-logo .h-logo > a .h-txt,
.site-header.fixed-header .header-logo .h-logo > a .h-en {
	transition: all ease 0.35s;	
}

.site-header .header-logo {
	position: fixed;
	top: 30px;
	left: 30px;
	width: 145px;
}

.site-header.fixed-header .header-logo {
	top: 25px;
    left: 25px;
}

.site-header.fixed-header .header-logo > a {
	height: 35px;
    width: 160px;
}

.site-header .header-logo .h-logo > a,
.site-header .header-logo .h-logo > a .h-sitenamebox {
	display: block;
}

.site-header.fixed-header .header-logo .h-logo > a .h-sitenamebox {
	overflow: hidden;
	position: fixed;
	width: 170px;
	left: 55px;
	top: 20px;
    height: 35px;
}

.site-header .header-logo .h-logo > a .h-mark {
	display: block;
	width: 22px;
	height: 22px;
	margin-left: auto;
	margin-right: auto;
	background: url(../img/common/logo_mark_wh.svg) no-repeat center top;
	background-size: 22px auto;
}

.site-header.fixed-header .header-logo .h-logo > a .h-mark {
	margin-left: 0;
	display: inline-block;
	opacity: 0.6;
	position: fixed;
	top: 18px;
}

/* hlogo-bkの場合 */
.hlogo-bk .site-header .header-logo .h-logo > a .h-mark {
	background: url(../img/common/logo_mark_bk.svg) no-repeat center top;	
}

.hlogo-bk .site-header.fixed-header .header-logo .h-logo > a .h-mark {
	background: url(../img/common/logo_mark_wh.svg) no-repeat center top;	
}


/* h-logotxt */
.site-header .header-logo .h-logo > a .h-logotxt {
	display: block;
	width: 125px;
	height: 20px;
	margin-left: auto;
	margin-right: auto;
	background: url(../img/common/logo_txt_wh.svg) no-repeat center top;
	background-size: 125px auto;
	text-indent: -999999px;
}

.site-header.fixed-header .header-logo .h-logo > a .h-logotxt {
	display: inline-block;
    position: relative;
    top: -100px;
    left: 0;
	opacity: 0.6;
	transform: scale(0.9);
	transform-origin: left top;
}

/* hlogo-bkの場合 */
.hlogo-bk .site-header .header-logo .h-logo > a .h-logotxt {
	background: url(../img/common/logo_txt_bk.svg) no-repeat center top;	
}

.hlogo-bk .site-header.fixed-header .header-logo .h-logo > a .h-logotxt {
	background: url(../img/common/logo_txt_wh.svg) no-repeat center top;	
}

/* h-txt */
.site-header .header-logo .h-logo > a .h-txt {
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	padding: 15px 0 4px 0;
	text-align: center;
}

.site-header.fixed-header .header-logo .h-logo > a .h-txt {
	position: relative;
	top: -80px;
	
}

/* hlogo-bkの場合 */
.hlogo-bk .site-header .header-logo .h-logo > a .h-txt,
.hlogo-bk .site-header .header-logo .h-logo > a .h-en {
	color: #000;
}

.hlogo-bk .site-header.fixed-header .header-logo .h-logo > a .h-txt,
.hlogo-bk .site-header.fixed-header .header-logo .h-logo > a .h-en {
	color: #fff;
}
/* h-en */
.site-header .header-logo .h-logo > a .h-en {
	display: block;
	text-align: center;
	letter-spacing: 0;
	padding-top: 3px;
}

.site-header.fixed-header .header-logo .h-logo > a .h-en {
	position: relative;
    top: -65px;
    left: 0;
	text-align: left;
	opacity: 0.6;
}


/* .h-language */
.h-language .box-lang {
	height: 30px;
	width: 98px;
	border: 1px solid #fff;
	display: table;
	position: absolute;
	left: 50px;
	top: 160px;
}
.site-header.fixed-header .h-language .box-lang {
	position: absolute;
}
.h-language .box-lang li {
	display: table-cell;
	width: 50%;
	text-align: center;
}

.h-language .box-lang li.active {
	background-color: rgba(255,255,255,0.2);
}

.h-language .box-lang li > span,
.h-language .box-lang li > a {
	line-height: 30px;
	display: inline-block;
	width: 100%;
}

.h-language .box-lang li > a:hover {
	background-color: rgba(0,0,0,0.4);
}
@media (min-width: 768px) {
	/* hlang-bkの場合 */
	.hlang-bk .h-language {
		color: #000;
	}
	.hlang-bk .h-language .box-lang {
		border: 1px solid #000;
	}
	.hlang-bk .h-language .box-lang li > a:link,
	.hlang-bk .h-language .box-lang li > a:visited,
	.hlang-bk .h-language .box-lang li > a:hover {
		color: #000;
	}
	.hlang-bk .h-language .box-lang li > a:hover {
		background-color: rgba(0,0,0,0.3);
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	/* hlang-bkの場合 メニューOPEN時 */
	.hlogo-bk.hlogo-wh .site-header .header-logo .h-logo > a .h-mark {
		background: url(../img/common/logo_mark_wh.svg) no-repeat center top;
	}
	.hlogo-bk.hlogo-wh .site-header .header-logo .h-logo > a .h-logotxt {
		background: url(../img/common/logo_txt_wh.svg) no-repeat center top;
	}
	.hlang-bk.hlang-wh .h-language .box-lang {
		border: 1px solid #fff;
	}
	.hlogo-bk.hlogo-wh .site-header .header-logo .h-logo > a .h-txt, 
	.hlogo-bk.hlogo-wh .site-header .header-logo .h-logo > a .h-en,
	.hlang-bk.hlang-wh .h-language,
	.hlang-bk.hlang-wh .h-language .box-lang li > a:link,
	.hlang-bk.hlang-wh .h-language .box-lang li > a:visited,
	.hlang-bk.hlang-wh .h-language .box-lang li > a:hover,
	.htel-bk.htel-wh .h-tel {
		color: #fff;
	}
	.hlang-bk.hlang-wh .h-language .box-lang li > a:hover {
		background-color: rgba(255,255,255,0.3);
	}
	.hsns-bk.hsns-wh .h-sns .hbox-sns li > a > i.i-facebook {
		background: url(../img/common/i_facebook_wh.svg) no-repeat center 50%;	
	}
	.hsns-bk.hsns-wh .h-sns .hbox-sns li > a > i.i-instagram {
		background: url(../img/common/i_instagram_wh.svg) no-repeat center 50%;
	}
}
/* .h-tel */
.h-tel {
	position: absolute;
	/* right: 155px; Reserveボタンがあるとき*/
	right: 0;
	top: 5px;
    width: 230px;
	text-align: center;
	transition: all ease 0.25s;
    z-index: +1;
}
.site-header.fixed-header .h-tel {
	position: absolute;
	opacity: 0;
}
.h-tel .sp-tel {
	display: block;	
}

.h-tel .t-teltime{
	font-size: 1.15rem;
	display: block;
	opacity: 0.6;
}
.htel-bk .h-tel{
	color: #000;
}

/* h-sns */
.h-sns {
	position: absolute;
	left: 0;
	top: 340px;
	width: 55px;
	transition: all ease 0.25s;
}
.h-sns .hbox-sns li {
	padding-left: 15px;
	position: relative;
	margin-bottom: 10px;
	transition: all ease 0.28s;
}
.h-sns .hbox-sns li::before {
	content:"";
	display: block;
	width: 15px;
	height: 1px;
	background: #fff;
	opacity: 0.1;
	position: absolute;
	left: 0;
	top: 50%;
	transition: all ease 0.28s;
}

.h-sns .hbox-sns li > a {
	display: block;
	width: 40px;
	height: 40px;
}

.h-sns .hbox-sns li > a:hover {
	background-color: rgba(255,255,255,0.15);
}
.h-sns .hbox-sns li > a > i {
	display: inline-block;
	width: 40px;
	height: 40px;
	background-size: 40px auto;
}

.h-sns .hbox-sns li > a > i.i-facebook {
	background: url(../img/common/i_facebook_wh.svg) no-repeat center 50%;	
}
.h-sns .hbox-sns li > a > i.i-instagram {
	background: url(../img/common/i_instagram_wh.svg) no-repeat center 50%;	
}

/* hsns-bkの場合 */
.hsns-bk .h-sns .hbox-sns li::before {
	background: #000;
	opacity: 0.2;
}
.hsns-bk .h-sns .hbox-sns li > a > i.i-facebook {
	background: url(../img/common/i_facebook_bk.svg) no-repeat center 50%;	
}
.hsns-bk .h-sns .hbox-sns li > a > i.i-instagram {
	background: url(../img/common/i_instagram_bk.svg) no-repeat center 50%;	
}

.site-header.fixed-header .h-sns {
	width: 40px;
	/*animation-name: fix-h;
	animation-duration: 0.28s;
	animation-timing-function: ease-out;*/
}

.site-header.fixed-header .h-sns .hbox-sns li {
	padding-left: 0;
}
.site-header.fixed-header .h-sns .hbox-sns li::before {
	width: 0;
}

@media (min-width: 992px) {
	.site-header::before {
		display: block;
		width: 100%;
		position: absolute;
		content:'';
		left: 0;
		top: 0;
		height: 290px;
		background: url(../img/common/bg-grade.png) repeat-x left top;
		background-size: 1px 200px;
	}


}


@media (max-width: 1199px) {
	.site-header.fixed-header .header-logo {
		left: 15px;	
	}
	.site-header.fixed-header .header-logo .h-logo > a .h-sitenamebox {
		left: 45px;
	}
}

@media (max-width: 991px) {
	.site-header::before {
		content: none;
	}
	/*.h-tel {
		right: 70px;
	    top: 10px;
	}*/
}

@media (max-width: 767px) {

	.site-header .header-logo .h-logo > a .h-logotxt {
		margin-left: 0;	
		background-size: 115px auto;
		height: 17px;
		width: 118px;
	}
	
	
	.hlogo-bk .site-header .header-logo .h-logo > a .h-mark {
		   background: url(../img/common/logo_mark_wh.svg) no-repeat center top;
	}
	.hlogo-bk .site-header .header-logo .h-logo > a .h-txt, 
	.hlogo-bk .site-header .header-logo .h-logo > a .h-en {
		color: #FFF;
	}
	.hlogo-bk .site-header .header-logo .h-logo > a .h-logotxt {
		background: url(../img/common/logo_txt_wh.svg) no-repeat center top;
	}
}


/* .site-header .h-right --------------------------*/
.site-header .h-right {
	width: calc(100% - 190px); /* 100% - ロゴの領域 */
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	position: fixed;
	top: 0;
	right: 0;
}
/* gnav --------------------------*/
.site-header .h-right #gnav {
	width: auto;
	/*animation-name: fix-h;
	animation-duration: 0.28s;
	animation-timing-function: ease-out;*/
}

@keyframes fix-h {
	0% {
		transform: translateY(-100%);
	}
	
	100% {
		transform: translateY(0%);		
	}
}

.site-header #gnav .menulist {
	width: auto;
	display: table;
	position: relative;
	max-width: 100%; /* メニューの最大幅 */
	/*height: 80px;*/
}
.site-header #gnav .menulist > li {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	width: calc(100%/10);
	position: relative;
	height: 100%;
	padding: 0;
}
.site-header #gnav .menulist > li.snav a {
	font-size: 1.5rem;
	padding: 0 1.15vw;
}

.site-header #gnav .menulist > li.active a::before {
	content:"";
	display: block;
	width: 6px;
	height: 6px;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	top: -3px;
	left: 50%;
	margin-left: -3px;
	
}

.site-header #gnav .menulist > li.active a::after {
	content:"";
	display: block;
	width: 22px;
	height: 22px;
	border: 2px solid #fff;
	border-radius: 50%;
	position: absolute;
	top: -11px;
	left: 50%;
	margin-left: -11px;
	-webkit-animation: jumper 1.5s 0s linear infinite;
	animation: jumper 1.5s 0s linear infinite;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-delay: 3.5s;
	-webkit-animation-delay: 3.5s;	
}

@-webkit-keyframes jumper {
  0% {
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
  }
  5% {
	opacity: 1;
  }
  100% {
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 0;
  }
}
@keyframes jumper {
  0% {
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
  }
  5% {
	opacity: 1;
  }
  100% {
	opacity: 0;
  }
}

.site-header #gnav .menulist > li.snavbtn a {
	line-height: 65px;
	display: block;
	background: #a4802c;
    width: 145px;
	font-size: 1.8rem;
}
.site-header #gnav .menulist > li.snavbtn a:hover {
	background: #926d21;
}

.site-header #gnav .menulist > li > a,
.site-header #gnav .menulist > li.has-submenu > span {
	white-space: nowrap;
    line-height: 65px;/*メニューｓの高さ*/
	padding-left: 5px;
	padding-right: 5px;
	position: relative;
	
}
.site-header #gnav .menulist > li.has-submenu:hover {
	cursor: pointer;	
}
.site-header #gnav .menulist > li > a:hover,
.site-header #gnav .menulist > li.has-submenu:hover,
.site-header #gnav .menulist > li.has-submenu.touch.active {
	background: rgba(0,0,0,0.5);
}



/* submenu --------------------------*/
.site-header #gnav .menulist > li.has-submenu .submenu {
	display: block;
	position: absolute;
	top: calc(100% + 20px);
	left: 50%;
	width: 100%;
	z-index: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%);
	transition: all ease 0.28s;
	min-width: 150px;
}
.site-header #gnav .menulist > li.has-submenu.touch .submenu {
	display: none;
}
.site-header #gnav .menulist > li.has-submenu.touch.active .submenu {
	display: block;
}
.site-header #gnav .menulist > li.has-submenu > span {
	white-space: nowrap;
}

.site-header #gnav .menulist > li.has-submenu.active .submenu,
.site-header #gnav .menulist > li.has-submenu:hover .submenu {
	top: 100%;
	z-index: 0;
	opacity: 1;
	visibility: visible;
}
.site-header #gnav .menulist > li.has-submenu.active .submenu li,
.site-header #gnav .menulist > li.has-submenu:hover .submenu li {
	background-color: rgba(0,0,0,0.3);
	margin-bottom: 1px;	
}
.site-header #gnav .menulist > li.has-submenu:hover .submenu li a {
    line-height: 40px;
    padding: 0 20px;
}

.site-header #gnav .menulist > li .submenu li a {
	white-space: nowrap;
}

/* sp-header */
.sp-header {
	display: none;
	position: relative;
}

/* menu button */
.hamburger-menu {
	position: fixed;
	top: 0;
	right: 0;
	transition: all 0.5s;
	z-index: 1000;
}

body.fixed .site-header .hamburger-menu {
	right: 0;
	top: 0;
}

/*.site-header.fixed-header .hamburger-menu {
	position: absolute;
	right: 0;
	top: 0;
    animation-name: fix-h;
	animation-duration: 0.28s;
	animation-timing-function: ease-out;
}*/

.menu-button {
    width: 70px;
    height: 70px;
    position: relative;
    background-color: rgba(255,255,255,0.4);
    display: inline-block;
    cursor: pointer;
    transition: all 0.25s;
}

.menu-button .lines {
    color: #fff;
	background: #fff;
    width: 30px;
    height: 1px;
	display: inline-block;
    position: absolute;
	left: 20px;
    transition: 0.2s cubic-bezier(.33333,0,.66667,.33333),opacity 0.1s 0.27s ease;
}
.menu-button .lines:first-child {
	top: 23px;
}

.menu-button .lines:nth-child(2) {
	top: 30px;
	transition: all 0.2s ease;
}

.menu-button .lines:nth-child(3) {
	top: 37px;
}

.menu-button.active .lines:first-child {
	/*top: 33px;
	transform: rotate(-45deg);*/
    transform: translate3d(0,7px,0) rotate(-45deg);
    transition-delay: 0.2s;
    transition-timing-function: ease;
}

.menu-button.active .lines:nth-child(2) {
	transform: scale(0,0);
}

.menu-button.active .lines:nth-child(3) {
	/*top: 33px;
    transform: rotate(45deg);*/
    transform: translate3d(0,-7px,0) rotate(45deg);
    transition-delay: 0.2s;
    transition-timing-function: ease;
}

@media (max-width: 1199px) {
	.site-header .header-logo {
		left: 20px;
	}
	.h-language .box-lang {
		left: 40px;
	}
	.site-header #gnav .menulist > li.snav a {
		font-size: 1.45rem;
		padding: 0 1vw;
	}
}


@media (max-width: 991px) {

	.h-sns {
		left: -15px;
	}
	.site-header.fixed-header .h-sns {
		left: -45px;
	}
}
/* PCメニューとSPボタン切り替え　メニューの長さでmax-widthを調整 */
@media (max-width: 767px) {
	.menu-button::after {
		content:"MENU";
		position: absolute;
		bottom: 10px;
		font-size: 1.1rem;
		color: #fff;
		width: 100%;
		left: 0;
		text-align: center;
		font-family: 'Lora', serif;
    	font-weight: 400;
		letter-spacing: 0.1vw
	}
	.sp-header {
		display: block;	
	}
	.site-header #gnav {
		display: none;
	}
		
	.site-header .header-logo {
	    top: 10px;
		left: 15px;
		width: auto;
	}
	.site-header .header-logo .h-logo > a {
		display: flex;
	    align-items: center;
	}
	.site-header .header-logo .h-logo > a .h-txt {
		padding-top: 0;
		padding-bottom: 1px;
		text-align: left;
	    font-size: 1.1rem;
		padding-left: 3px;
	}
	.site-header .header-logo .h-logo > a .h-mark {
	    margin: -3px 10px 0 0;
	    display: inline-block;
	}
	.site-header .header-logo .h-logo > a .h-en {
		padding-top: 1px;
		text-align: left;
		padding-left: 2px;
	}
	.site-header.fixed-header .header-logo .h-logo > a .h-en {
		top: -42px;
	}
	.h-sns, .h-tel {
		display: none;
	}
	.site-header.fixed-header .header-logo .h-logo > a .h-mark  {
	    top: 18px;	
	}
	
	.site-header.fixed-header .header-logo .h-logo > a .h-sitenamebox {
		top: 14px;
	}
	/*.site-header.fixed-header .header-logo .h-logo > a .h-logotxt {
	    top: -16px;	
	}*/
	

	.h-language .box-lang {
		height: 40px;
		width: 110px;
		top: 15px;
	    right: 80px;
    	left: auto;
		border: none;
		position: fixed;
	}
	.h-language .box-lang li > span, .h-language .box-lang li > a {
	    line-height: 40px;	
	}
	.h-language .box-lang li:nth-child(2) {
		border-left: 1px solid rgba(255,255,255,0.25);	
	}
	
}
@media (max-width: 480px) {
	.site-header .header-logo {
	    top: 8px;
    	left: 10px;
	}
	.site-header .header-logo .h-logo > a .h-mark {
		width: 18px;
    	height: 18px;
	    background-size: 18px auto;
		margin: 0 8px 0 0;
		position: relative;
		top: -10px;
	}
	.site-header .header-logo .h-logo > a .h-logotxt {
		width: 95px;
		background-size: 95px auto;
	}
	.site-header .header-logo .h-logo > a .h-en {
		padding-left: 0;
		margin-left: -28px;
	}

	
}
@media (max-width: 380px) {
	
	.site-header .header-logo .h-logo > a .h-mark {
		
	}
	

	.h-language .box-lang {
		left: auto;
	    right: 85px;
	    width: 70px;	
	}
	.site-header.fixed-header .header-logo .h-logo > a .h-mark {
		top: -25px;
	}
	.site-header.fixed-header .header-logo .h-logo > a .h-sitenamebox {
		top: -25px;	
	}
}

/* spnav style 
------------------------------------------*/
.spnav.hide-nav {
	opacity: 0;
	visibility: hidden;
	display: none !important;
}
.spnav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0; 
    left: 0;
    z-index: 900;
    text-align: center;
    pointer-events: none;
    perspective: 200;
    background: #000;
    transition: .5s cubic-bezier(.77,0,.175,1);
    transform: translateY(101%);
}

.spnav.show-nav {
    pointer-events: auto;
    transform: translateY(0%);
    transform: scaleY(1);
	visibility: visible;
	opacity: 1;	
}

@media (min-width: 992px) {
	.spnav {
		display: none;
	}	
}

.inner-spnav {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    margin: auto;
    height: calc(100vh - 70px);
    box-sizing: border-box;
	overflow: auto;
	margin-top: 70px;
	background: rgba(255,255,255,0.1);
}

.inner-spnav nav {
	width: 100%;
}
.inner-spnav .sp-menulist > li .link {
	cursor: pointer;
	position: relative;
}
.inner-spnav .sp-menulist > li .link:before,
.inner-spnav .sp-menulist > li .link:after {
	content: "";
	display: block;
	width: 13px;
	height: 1px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	right: 15px;
	transition: all ease 0.28s;
}
.inner-spnav .sp-menulist > li .link:before {
	transform: rotate(-90deg);
}
.inner-spnav .sp-menulist > li .link.sub-open:before {
	transform: rotate(0deg);
}

.inner-spnav .sp-menulist > li > span,
.inner-spnav .sp-menulist > li a {
	display: block;
	color: #fff;
	padding: 15px 0 15px 20px;
	text-align: left;
	position: relative;
}
.inner-spnav .sp-menulist > li .sp-submenu {
	display: none;
}


.inner-spnav .inner {
	box-sizing: border-box;
	width: 100%;
}
.inner-spnav .box-spmenu {
	padding: 30px 0;
	margin-left: auto;
	margin-right: auto;	
}

.inner-spnav .inner .box-spmenu {
	box-sizing: border-box;
}

.inner-spnav .box-spmenu li {
	border-bottom: 1px solid rgba(255,255,255,0.1);
	position: relative;
}

.inner-spnav .box-spmenu li::before {
	content:"";
	position: absolute;
	left: 0;
	top: 50%;
	display: inline-block;
	height: 1px;
	width: 7px;
	background: #fff;
}

.inner-spnav .box-reserve .btn {
	line-height: 65px;
}

.inner-spnav .box-reserve .btn.btn-planlist {
	background: #c95a00;
}

.inner-spnav .box-reserve .btn.btn-search {
	background: #a27f2c;
}

.inner-spnav .box-info {
	width: 90%;
	margin: 0 auto;
	padding-bottom: 200px;
}
.inner-spnav .box-info .box-reserve {
    padding: 40px 3vw;
    /*background: #000;*/
}
.inner-spnav .box-info .sttl-reserve {
	margin-bottom: 20px;
}

.inner-spnav .box-info .t-bestrate a {
	display: flex;
    align-items: center;
    justify-content: center;
	margin-bottom: 10px;
}

.inner-spnav .box-info .t-bestrate a .icon {
	width: 75px;
    height: 64px;
	display: inline-block;
    margin-right: 15px;
}

.inner-spnav .box-info .box-reserve .smenu-reserve a {
	padding: 3px 0 3px 20px;
	margin-bottom: 7px;
	position: relative;
}

.inner-spnav .box-info .box-reserve .smenu-reserve a::before {
	position: absolute;
	content:"";
	display: inline-block;
	width: 7px;
	height: 1px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
}

.inner-spnav .box-info .box-reserve .btn-planlist .icon {
	background: url(../img/common/i_list.svg) no-repeat center top;
	background-size: 15px 15px;
	display: inline-block;
    width: 15px;
    height: 15px;
    position: relative;
    top: 2px;
    margin-right: 15px;
}

.inner-spnav .box-info .box-tel {
	padding-top: 30px;
}

@media (min-width: 768px) {
	.inner-spnav .inner .box-spmenu {
		padding-left: 220px;
		padding-right: 5%;
		width: 100%;
		
	}
	.inner-spnav .box-reserve .btn {
		margin: 0 10px;
	}

}


@media (max-width: 767px) {
	
	.inner-spnav .sp-menulist {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
	.inner-spnav .box-info .box-reserve .btnarea {
		flex-direction: column;
	}
	.inner-spnav .box-info .box-reserve .btnarea .btn {
		margin-bottom: 10px;
	}
}



/* common style 
------------------------------------------*/
.box-table {
	display: table;
}
.box-table > .table-cell {
	display: table-cell;
	vertical-align: middle;	
}


/* pagetitle */
.pagetitle {
	height: 500px;
	background-size: cover;
	background-position: center 50%;
	background-repeat: no-repeat;
	width: 100%;
	display: flex;
    justify-content: center;
}

.pagetitle .area-pagettl {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pagetitle .area-pagettl .txt-ja {
	background: url(../img/common/i_sun_wh.svg) no-repeat center top;
	background-size: 83px 41px;
	padding-top: 50px;	
}

.pagetitle .area-pagettl .txt-en {
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
	background: rgba(0,0,0,0.7);
	color: rgba(255,255,255,0.7);
	font-family: 'Lora', serif;
    font-weight: 400;
	min-width: 145px;
	letter-spacing: 0.13vw;
	text-align: center;
}

.pagetitle .area-pagettl.bk .txt-ja {
	color: #000;	
}

.pagetitle .area-pagettl.bk .txt-ja {
	background-image: url(../img/common/i_sun_bk.svg);
}

.page-etc .pagetitle .area-pagettl .txt-ja {
	padding-top: 0 !important;
	background: none !important;
}

#privacy .pagetitle {
	background-image: url(https://www.mikuni-hotel.com/en/img/pagetitle_privacy.jpg);
}

@media (max-width: 767px) {
	.pagetitle {
	    height: 350px;
		margin-top: 70px;
	}
	
}

@media (max-width: 480px) {
	.pagetitle {
	    height: 260px;
	}
	
	.page-etc .pagetitle {
	    height: 180px;	
	}
	.pagetitle .area-pagettl .txt-ja,
	.pagetitle .area-pagettl.bk .txt-ja {
		background-size: 60px 30px;
		padding-top: 40px;
	}
	
}
/* sec-intro --------------------------- */
.sec-intro .stxt {
	line-height: 2.0;
}

/* pagenav ------------------------------*/
.pagenav {
	display: flex;
	flex-wrap: wrap;
}
.pagenav .col2 {
	width: 50%;
}
.pagenav .col3 {
	width: 33.3333333%;
}
.pagenav .col4 {
	width: 25%;
}
.pagenav .col6 {
	width: 16.66666666%;
}
.pagenav .sbox-pagenav {
	height: 250px;
}
.pagenav .sbox-pagenav {
	background-position: center 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.pagenav .sbox-pagenav > a {
	width: 100%;
	height: 100%;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	position: relative;
    background: rgba(0,0,0,0.6);
	transition: all ease 0.45s;
}
.pagenav .sbox-pagenav > a:hover {
	background: rgba(0,0,0,0.8);
}
.pagenav .sbox-pagenav .inner-snav {
	text-align: center;
	padding-bottom: 40px;
}
.pagenav .sbox-pagenav .inner-snav .t-no {
	font-family: 'Lora', serif;
    font-weight: 400;
	font-size: 1.1rem;
	letter-spacing: 0.1em;
}
.arrowbottom {
	position: relative;
	display: block;
	width: 30px;
	height: 1px;
	left: 50%;
	bottom: -25px;
	margin-left: -15px;
	background-color: #fff;
	transform: rotate(90deg);
}
.arrowbottom::before,
.arrowbottom::after {
	content:"";
	position: absolute;
	display: block;
	background-color: #fff;
	height: 1px;
}
.arrowbottom::before {
	top: 7px;
	right: -3px;
	display: block;
	width: 19px;
	transform: rotate(-45deg);
}

.arrowbottom::after {
	bottom: 7px;
	right: -3px;
	display: block;
	width: 19px;
	transform: rotate(45deg);
}
@media (max-width: 1199px) {
	.pagenav .col6 {
		width: 33.333333333%;
	}
}
@media (max-width: 991px) {
	.pagenav .col4 {
		width: 50%;
	}
}
@media (max-width: 767px) {
	.pagenav {
		display: none;
	}
}

/* mttl ---------------------------------*/
.mttl {
	position: relative;
}
.mttl .txt-ja{
	letter-spacing: 0.1vw;
}

.mttl .txt-en {
	font-family: 'Lora', serif; font-weight: 400;
	letter-spacing: 0.3vw;
	opacity: 0.4;
}

/* mttl style01 */
.mttl.style01 {
	padding-top: 50px;
	text-align: center;
	padding-left: 5%;
    padding-right: 5%;
	line-height: 1.4;
}

.mttl.style01::before {
	content:"";
	display: block;
	background: url(../img/common/i_sun_yellow02.svg) no-repeat center top;
	width: 100%;
	height: 40px;
	top: 0;
	left: 0;
	background-size: 70px 35px;
}



/* mttl ttlstyle02 */
.mttl.ttlstyle02 {
	text-align: center;
}
.mttl.ttlstyle02 > .txt-en {
	opacity: 1.0;	
}
.mttl.ttlstyle02 > .txt-ja > span {
	display: block;
}
.mttl .ttl-line {
	display: block;
	position: relative;
	width: 1px;
	left: 50%;
	top: 0;
	background: rgba(255,255,255,0.3);
}
.mttl .ttl-line.lineS {
	height: 30px;
}
.mttl .ttl-line.lineM {
	height: 50px;
}
.mttl .ttl-line.lineL {
	height: 80px;
}
.t-no {
	font-family: 'Lora', serif;
    font-weight: 400;
	font-size: 1.1rem;
	letter-spacing: 0.1em;
}
.mttl.ttlstyle02 .t-no {
	display: block;
}
.mttl.ttlstyle02 > .txt-ja .fls-s {
	letter-spacing: 0.1em;
}

/* mttl ttlstyle03 */
.mttl.ttlstyle03 {
	text-align: center;
}
.mttl.ttlstyle03 > .txt-en {
	opacity: 0.6;	
}
.mttl.ttlstyle03 > .txt-ja {
	letter-spacing: 0.2vw;
}

/* mttl ttlstyle04 */
.mttl.ttlstyle04 {
	text-align: center;
}
.mttl.ttlstyle04 .icon {
	margin-left: auto;
	margin-right: auto;
	display: block;
	background: url(../img/common/i_sun_yellow02.svg) no-repeat center top;
	width: 100%;
	height: 45px;
	background-size: 90px 45px;
}

/* generic-list */
.generic-list .list-item {
    display: table;
    table-layout: auto;
    width: 100%;
}
.generic-list .list-item dt, 
.generic-list .list-item dd {
    display: table-cell;
    vertical-align: top;
    position: relative;
}
.generic-list .list-item dt {
    padding: 10px;
	font-size: 1.4rem;
	font-family: Arial, Helvetica, sans-serif;
	background: rgba(255,255,255,0.1);
}
.generic-list .list-item dd {
    padding: 10px 15px;
	color: rgba(255,255,255,0.5);
	font-size: 1.4rem;
	font-family: Arial, Helvetica, sans-serif;
}
.generic-list .list-item dt:before, 
.generic-list .list-item dd:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;	
}
.generic-list .list-item dt:before,
.generic-list .list-item dd:before {
	background-color: rgba(255,255,255,0.1);
}


.has-slide-m .w-slide-m {
	width: 66.666666%;
}

.has-slide-m .box-txt {
	width: 33.333333%;
}

@media (max-width: 1350px) {
	.row.has-slide-m .box-txt {
		width: 100%;
		margin-bottom: 30px;
	}
	.row.has-slide-m .w-slide-m {
		width: 90%;
		margin: 0 auto;
	}
}

@media (max-width: 767px) {

	.row.has-slide-m .w-slide-m {
		width: 100%;
	}
	.generic-list .list-item,
	.generic-list .list-item dt, 
	.generic-list .list-item dd {
		display: block;
	}
	.generic-list .list-item dt {
		padding: 5px 10px;
	}
	.generic-list .list-item dd {
		padding-left: 0;
		padding-right: 0;
	}
	
}

@media (max-width: 480px) {
	.mttl.style01::before {
		background-size: 60px 30px;
	}
	.mttl.ttlstyle04 .icon {
		width: 100%;
		height: 35px;
		background-size: 70px 35px;
	}
	
	.mttl .txt-ja.f-sz33 {
		font-size: 2.0rem;	
	}
}
/*  w -------------------------- */
.w100 {
	width: 100%;
}
.w50 {
	width: 50%;
}

/*  others -------------------------- */
/* 縦書き */
.tb-rl {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    white-space: nowrap;
    display: inline-block;
}

/* news style 
------------------------------------------*/
.sbox-news {
	position: relative;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sbox-news > a {
	position: relative;
	display: block;
	padding: 9px 75px 9px 15px;
}

.sbox-news > a::after {
	content:"";
	width: 0;
	height: 1px;
	display: block;
	background: rgba(255,255,255,0.5);
	position: absolute;
	left: 0;
	bottom: -1px;
	transition: all ease 0.28s;
}

.sbox-news > a .ttl-news {
	line-height: 1.5;
}

.arrow-square {
	display: inline-block;
	width: 55px;
	height: 55px;
	background: rgba(255,255,255,0.1);
	position: relative;
}
.sbox-news > a .arrow-square {
	position: absolute;
	right: 0;
	bottom: -1px;
}
.arrow-square::before {
	content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
	width: 10px;
    height: 10px;
    border: solid #fff;
    transform: translate(-70%, -50%) rotate(45deg);
    border-width: 1px 1px 0 0;
}

.sbox-news > a:hover::after {
	width: 100%;
}

/* newstype02 */
.list-news.newstype02 .sbox-news:nth-child(1) {
	border-top: 1px solid rgba(255,255,255,0.1);
}
.list-news.newstype02 .sbox-news > a {
	padding-right: 15px;
}
.list-news.newstype02 .sbox-news .inner {
	display: flex;
	position: relative;
	padding: 10px 0;
	width: 100%;
	align-items: center;
}
.list-news.newstype02 .sbox-news .inner::after {
	content:"";
	position: absolute;
	width: 10px;
	height: 10px;
	display: inline-block;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: translateY(-50%) rotate(45deg);
	right: 10px;
	top: 50%;
	transition: all ease 0.38s;
	
}
.sbox-news .inner .t-date {
	width: 110px;
}

.sbox-news .inner .sttl {
	display: table;
    width: 100%;
	table-layout: auto;
}
.sbox-news .inner .sttl .t-cat,
.sbox-news .inner .sttl .ttl-news {
	display: table-cell;
	vertical-align: middle;
}
.sbox-news .inner .sttl .t-cat {
	width: 130px;
	text-align: center;
    letter-spacing: 0.02em;
}
.sbox-news .inner .sttl .ttl-news {
	width: calc(100% - 120px);
    padding-right: 30px;
	padding-left: 15px;
}

/* list-news */

.list-news .box-news:nth-child(n + 2) {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid rgba(255,255,255,0.1);
}
.list-news .box-news .ttl-news {
	position: relative;
}

.list-news .box-news .ttl-news::before {
	content:"";
	position: absolute;
	width: 10px;
	height: 1px;
	left: -20px;
	top: 15px;
	background: #fff;
}
.list-news .box-news .c-news p {
	color: rgba(255,255,255,0.6);
}
.list-news .box-news .c-news {
	font-size: 95%;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 0.085em;
}
.list-news .box-news .c-news a:link,
.list-news .box-news .c-news a:hover,
.list-news .box-news .c-news a:visited {
	color: #fff	!important;
}

.list-news .box-news .c-news a:link,
.list-news .box-news .c-news a:visited {
	text-decoration: underline !important;
}

.list-news .box-news .c-news a:hover {
	text-decoration: none !important;
}

@media (min-width: 768px) {
	.list-news.newstype02 .sbox-news a:hover .inner::after {
		right: 0;
	}
}

@media (max-width: 767px) {
	.sbox-news .inner .sttl,
	.sbox-news .inner .sttl .t-cat,
	.sbox-news .inner .sttl .ttl-news {
		display: block;
	}
	.sbox-news .inner .sttl {
		padding-left: 15px;
	}
	.sbox-news .inner .sttl .t-cat {
		width: auto;
    	text-align: left;
		padding-left: 0;
		margin-bottom: 3px;
	}
	.list-news.newstype02 .sbox-news > a {
		padding-left: 5px;
	}
	.sbox-news .inner .sttl .ttl-news {
		width: 100%;
		padding-left: 0;
	}
	.list-news.newstype02 .sbox-news .inner::after {
		right: 0;
	}
}

@media (max-width: 640px) {
	.list-news.newstype02 .sbox-news .inner {
		align-items: flex-start;
    	flex-direction: column;
		padding: 6px 0;
	}
	.sbox-news .inner .sttl,
	.sbox-news .inner .t-date {
		padding-left: 5px;
	}
	.sbox-news .inner .t-date {
		font-size: 1.2rem;
	}
	.list-news.newstype02 .sbox-news .inner::after {
		top: 24px;
	}
	.sbox-news .inner .sttl .ttl-news {
	    padding-right: 0;	
	}
}

/* txt-privacy ---------------------*/
.txt-privacy p {
    margin-bottom: 40px;
    letter-spacing: 0.08em;
	opacity: 0.55;
}

.txt-privacy h3 {
	margin-bottom: 10px;
}

.txt-privacy p .f-bold {
    color: #000;
    font-size: 1.7rem;
    padding-bottom: 5px;
}


/*  js-banslider -------------------------- */
.slick-slider .slick-track, .slick-slider .slick-list {
	width: 100%;
}
.js-banslider .sbox-ban {
	width: 25%;
}
.js-banslider .sbox-ban a {
	display: block;
    width: 100%;
}
.js-banslider .sbox-ban a .thumbnail {
    overflow: hidden;
}
.js-banslider .sbox-ban .imgBg {
	width: 100%;
}

@media (max-width: 480px) {
	.js-planslider .sbox-plan {
		
	}
	.js-banslider .sbox-ban a .thumbnail {
		padding: 0 10%;
	}
	
}


/* link-underline ------------------------- */
@media (max-width: 480px) {
	.slider_area.l-slider .slide-placeholder .imgBg {
		height: 230px;
	}
	.slider_area.m-slider .slide-placeholder .imgBg {
		height: 200px;
	}
}


/* link-underline ------------------------- */
a.link-underline:link,
a.link-underline:visited {
	text-decoration: underline !important;
}

a.link-underline:hover {
	text-decoration: none !important;
}