/* ------------------------------------------------------------------------------
	font import
------------------------------------------------------------------------------*/
@import url(https://fonts.googleapis.com/css?family=Open%20Sans:300,400,500,600,700);
@import url(https://fonts.googleapis.com/css?family=Bitter:700);
@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600&display=swap');

html,body {
	height:100%;
}
html {
	font-size:62.5%;
  overflow-y: scroll;
}
body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form, figure {
	margin: 0;
	padding: 0;
	border: none;
	font-size: 1.6rem;
	line-height: 1.7em;
	list-style-type: none;
	font-style: normal;
	font-family:"Open Sans", 'Noto Sans Japanese', sans-serif;
	font-weight: 400;
	text-align: left;
	color:#333;
	word-break: normal;
	word-wrap: break-word;
}
div, h1, h2, h3, h4, h5, h6, p, dl, dt, dd,
ol, ul, li, form, input, textarea, button,
table, tr, th, td, article, aside, footer, header,
hgroup, nav, section, a, span, img {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

a {
	text-decoration:none;
	color:#BC1B0B;
  transition: opacity .4s ease;
}
a:hover {
	color:#87801b;
  opacity: .7;
}


body {
	min-width: 1024px;
}
body.pat02{
	background-color:#f1f1f2;
}


@media screen and (min-width: 769px) {
  p{
    font-size: 1.6rem;
    line-height: 1.7;
  }
  .sp{
    display:none;
  }
}
@media screen and (max-width: 768px) {
  html {
    background:none;
  }
  body {
    min-width:100%;
    -webkit-text-size-adjust:none;
  }
  .pc{
    display:none;
  }
  .sp{
    display:block;
  }
  a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
  }
  p{
    font-size: 3.8vw;
  }
  img{
		max-width: 100%;
		height: auto;
  }
}


:root {
  --main-mycolor: #401c0c;
}



/*----------------------------- 
　　stage
------------------------------*/  
#stage {
	width:100%;
	position:relative;
}
.wrap{
  width: 950px;
  margin: 0 auto;
}
/*----------------------------- 
　　contentsInner
------------------------------*/  
#contentsInner{ /* index */
	clear: both;
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
	position:relative;
}

#contentsInner2{ /* 下層 */
	clear: both;
  max-width: 1024px;
  margin: 0px auto 30px auto;
  text-align: center;
	position:relative;
}
@media screen and (max-width: 768px) {
  #contentsInner,
  #contentsInner2{
    width: 96%;
  }
}


/*----------------------------- 
　　header
------------------------------*/
header{
	width:100%;
	margin:0 auto 20px;
	position:relative;
  height: auto;
  background: #ffffff;
  padding-bottom: 20px;
}
header * {
  font-family: 'Noto Serif JP', serif;
}
header .header_wrap{
	width:100%;
	max-width: 1024px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
header .header_wrap .h_logo{
  padding: 5px 0;
}
header .header_wrap .h_link{
  padding: 5px 0 0;
}
header .header_wrap .h_link .h_ttl{
  font-size: 1.2rem;
  text-align: right;
  line-height: 1;
  margin-bottom: 15px;
}
header .header_wrap .h_link .right_nav {
	width: 500px;
}
header .header_wrap .h_link .right_nav .form_nav {
  display: flex;
  justify-content: flex-end;
}
header .header_wrap .h_link .right_nav .form_nav li {
  list-style: none;
	margin:5px 0 0 8px;
	width: 200px;
}
header .header_wrap .h_link .right_nav .form_nav li a{
	display:block;
	width:auto;
	line-height:1.0;
	text-align:center;
  padding: 12px 0;
	color: #000;
  font-size: 1.4rem;
	border:1px solid #666;
	background-color:#ffffff;
	text-decoration:none;
  transition: .3s ease;
}
header .header_wrap .h_link .right_nav .form_nav li a:hover{
  background: var(--main-mycolor);
  color: #ffffff;
  opacity: 1;
}
header .header_wrap .h_link .right_nav .shop_nav {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 6px;
}
header .header_wrap .h_link .right_nav .shop_nav a {
  position: relative;
  display: block;
  width: 246px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
}
header .header_wrap .h_link .right_nav .shop_nav .kw{
  /* background:#9dd2b9; */
  background: #ce655c;
  margin-left: 9px;
}
header .header_wrap .h_link .right_nav .shop_nav .ks{
    background: #ce655c;
  /* background:#9db6d2; */
}
header .header_wrap .h_link .right_nav .shop_nav a::before,
header .header_wrap .h_link .right_nav .shop_nav a::after{
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
header .header_wrap .h_link .right_nav .shop_nav a::before{
  right: 10px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .header_wrap .h_link .right_nav .shop_nav a .shopname{
  display: block;
  position: relative;
}
header .header_wrap .h_link .right_nav .shop_nav a .shopname::before{
  position: absolute;
  content: "衣装展開催中";
  top: -7px;
  left: 50%;
  line-height: 12px;
  padding: 5px 8px;
  letter-spacing: .1em;
  transform: translateX(-50%);
  background: #4E4644;
  color: #fff;
  border-radius: 2px;
  font-size: 1.1rem;
  font-family: 'Noto Sans JP', sans-serif;
}
header .header_wrap .h_link .right_nav .shop_nav a .shopname.none::before{
  display: none;
}


@media only screen and (max-width: 768px) {
  header{
    width:100%;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  header .header_wrap{
    padding: 2.4% 1.6% 1.6%;
  }
  header .header_wrap .h_logo{
    padding: 0;
  }
  header .header_wrap .h_logo img{
    width: 20vw;
  }
  header .header_wrap .h_link{
    padding: 0;
    width: 100%;
  }
  header .header_wrap .h_link .h_ttl{
    font-size: 3.2vw;
    margin-bottom: 5%;
  }
  header .header_wrap .h_link .right_nav .shop_nav{
    display: none
  }
  header .header_wrap .h_link .right_nav .form_nav {
    justify-content: flex-end;
  }
  header .header_wrap .h_link .right_nav {
    width: 100%;
  }
  header .header_wrap .h_link .right_nav .form_nav li {
    list-style: none;
    margin:0;
  }
  header .header_wrap .h_link .right_nav .form_nav li:last-child{
    margin-left: 3px;
  }
  header .header_wrap .h_link .right_nav .form_nav li a{
    font-size: 3.6vw;
    padding: .8em .3em;
  }
  header .header_wrap .h_link .right_nav .form_nav li:nth-of-type(1) {
    width: 62%;
  }
  header .header_wrap .h_link .right_nav .form_nav li:nth-of-type(2) {
    width: 30%;
  }


  header .header_wrap .h_link .right_nav .shop_nav .shop_inn .attri span{
    font-size: 2.8vw;
  }
}



/*----------------------------- 
　　Nav
------------------------------*/
.menu-box{
  position: relative;
  max-width: 1024px;
	clear:both;
	margin: 0 auto;
}
@media only screen and (min-width: 768px){
  .menu-box .shop_nav{
    display:none;
  }
}
#menu{
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
#menu li{
  display: block;
  width: calc(100% / 6);
}
#menu li:last-of-type{
  display: none;
}
#menu li a{
  position: relative;
  display: block;
  color: var(--main-mycolor);
  font-size: 1.6rem;
  text-align: center;
  text-decoration: none;
  height: 55px;
  line-height: 55px;
  opacity: 1;
}
#menu li a::before {
  position: absolute;
  left: 12.2%;
  content: '';
  width: 132px;
  height: 3px;
  background: var(--main-mycolor);
  bottom: 0;
}
#menu li a::after {
  position: absolute;
  left: 12.2%;
  content: '';
  width: 132px;
  height: 3px;
  background: #A0120E;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
#menu li a:hover::after {
  transform: scale(1, 1);
}


#menu.w_mode li a{
  color: #fff;
}
#menu li:first-child a img{
  padding-top: 6px;
}

#toggle{ 
 display: none;
}

@media only screen and (max-width: 768px) {
  #menu{
    display: none;
    clear:both;

    position:relative;
    height: auto;
  }
  #menu li{
    width: 100%;
  }
  #menu li:first-child a img{
    width: 28vw;
    margin-top: 1.6vw;
  }
  #menu li a{
    border-bottom:1px solid #ffffff !important;
  }
#menu li a::before,
#menu li a::after,
#menu li a:hover::after {
  display: none;
}

  #toggle {
      display: block;
      width: 100%;
      background: #2e1307;

      position:relative;
    }
    #toggle.bgwh{ /* 背景白 */
      background:var(--main-mycolor);
    }

    #toggle a{
      display: block;
      position: relative;
      padding: 5.8vw 0;
      border-bottom: 1px solid #ffffff;
      color:#FFF;
      text-align: center;
      text-decoration: none;
      line-height: 1;
      font-size: 4.8vw;
    }
    #toggle a:hover{
      opacity: 1;
    }
    #toggle:before {
      display: block;
      content: "";
      position: absolute;
      top: 50%;
      left: 2.667vw;
      width: 8vw;
      height: 7.733vw;
      margin-top: -4vw;
      background: #FFF;
    }
    #toggle a:before, #toggle a:after {
      display: block;
      content: "";
      position: absolute;
      top: 50%;
      left: 2.667vw;
      width: 8vw;
      height: 1.867vw;
      background: var(--main-mycolor);
    }
        #toggle.bgwh:before { /* 背景白 */
          background: #FFF;
        }
        #toggle.bgwh a:before, #toggle.bgwh a:after { /* 背景白 */
          background: var(--main-mycolor);
        }

    #toggle a:before {
      margin-top: -2.667vw;
    }
    #toggle a:after {
      margin-top: 0.533vw;
    }

  #menu li:last-of-type{
    display: block;
  }
  #menu li a{
    background: var(--main-mycolor);
    color: #ffffff;
    height: auto;
    font-size: 4vw;
  }
    #menu.wh li a,
    #menu.w_mode li a{ /* 背景白 */
      background: var(--main-mycolor);
    }

  #menu li a img{
    width: 40%;
  }

  .menu-box{
    margin-bottom: 6.4vw;
  }

  #menu li:last-child a{
    padding: 0;
  }
  #menu li .shop_nav {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 6px;
  }
  #menu li .shop_nav a {
    position: relative;
    display: block;
    width: 50%;
    height: 14.933vw;
    line-height: 14.933vw;
    text-align: center;
    color: #fff;
    font-size: 4vw;
  }
  #menu li .shop_nav .kw{
    /* background:#9dd2b9; */
    background: #ce655c;
    margin-left: 1px;
  }
  #menu li .shop_nav .ks{
    /* background:#9db6d2; */
    background: #ce655c;
  }
  #menu li .shop_nav a .shopname{
    display: block;
    position: relative;
  }
  #menu li .shop_nav a .shopname::before{
    position: absolute;
    content: "衣装展開催中";
    width: 10.667vw;
    top: 50%;
    left: 1.6vw;
    padding: 1.333vw 0.8vw 1.067vw;
    letter-spacing: .1em;
    transform: translateY(-50%);
    background: #4E4644;
    color: #fff;
    border-radius: 2px;
    font-size: 2.8vw;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.4;
  }
  #menu li .shop_nav a .shopname.none::before{
    display: none;
  }

    /* タグなし時の空間調整 */
    #menu li .shop_nav .shop_inn.non .attri span{
      opacity: 0;
    }
    #menu li .shop_nav .shop_inn.non .shopname{
      margin-top: -8px;
    }
    #menu li .shop_nav .shop_inn.non{
      padding-bottom: 20px;
    }
}

@media screen and (orientation: landscape) and (max-width: 767px){
  #menu li:first-child a img{
    width: 24vw;
    margin-top: 1.1vw;
  }
  #menu li a {
    height: 68px;
    line-height: 68px;
  }
}


/*----------------------------- 
ページトップへ
------------------------------*/
#back-top {
	padding: 5px;
	bottom: 58px; 
	right: 50px;
	position: fixed;
	z-index:999;
}
#back-top a {
	display: block;
}
#back-top a img {
	margin: 0px auto 5px;
	display: block;
}
@media screen and (max-width: 768px) {
  #back-top {
    right: 5px;
  }
}


/*----------------------------- 
　　Footer
------------------------------*/
footer{
	position:relative;
	clear:both;
	padding:30px 0 50px 0;
	background: #211C19 url(../images/common/footer_bg.jpg) no-repeat top center /auto;
  overflow: hidden;
}
footer *{
  font-family: 'Noto Serif JP', serif;
}
#ftInner {
	max-width:1024px;
	margin:0 auto;
	padding: 0 20px;
}
#ftContents {
	width: 100%;
	margin: 0 auto 15px;
	display: flex;
  justify-content: space-between;
}
#ftContents .ft_flex{
  width: 45%;
}
#ftMap {
	width:380px;
	float:right;
	font-weight:bold;
	padding-bottom:20px;
}

#ftInner .kgr {
  color: #fff;
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: .1em;
	margin-bottom:15px;
	border-bottom: 1px solid #ffffff;
	clear:both;
}
	#ftInner .kgr span{
		display:block;
		float:right;
	}
#ftInner .top40 {
	padding-top:40px;
}

#ftContents ul {
	margin-left:7px;
	/* margin-bottom:20px; */
	list-style-type:none;
}
footer #ftInner #ftContents ul li {
	margin-bottom:10px;
	padding-left:20px;
	line-height:1.8em;
	background:url(https://kinaco-seijin.com/images/common/FooterIconCircle.png) no-repeat center left;
	font-size: 1.4rem;
}
footer #ftInner #ftContents ul li .sm {
	font-size: 1.2rem;
}
footer #ftInner #ftContents ul li:last-child{
	margin-bottom:0;
}

#ftInner ul li a {
	text-decoration:none;
	color:#FFFFFF;
}
#ftInner ul li a:hover {
	color:#FEF35C;
}
#ftInner ul li.ex_link a {
	background:url(https://kinaco-seijin.com/images/common/icon_newwin.png) no-repeat right 50%;
	padding-right: 16px;
}

#contents1st {
	width:48%;
	float:left;
}
#contents2nd {
	width:48%;
	float:left;
}
#contents3rd {
	width:180px;
	float:left;
}
#contents4th_1,
#contents4th_2 {
	width:250px;
	float:left;
}
#contents4th_1{
  margin-bottom: 10px;
}

footer #copyright {
	clear:both;
	padding-top:30px;
	border-top: 1px solid #ffffff;
	overflow:hidden;
}
footer #copyright p {
	color:#fff;
	font-size: 1.2rem;
}


/* ポップアップ用footer */
#ex_footer{
	text-align:center;
	padding:5px;
	font-size:93%;
}

@media only screen and (max-width: 768px) {  
  footer{
    width:100%;
    padding: 0;
    position:relative;
  }
  #ftInner {
    width:100%;
    padding: 0;
  }
  #ftContents{
    display: block;
    width:100%;
    margin:0 auto;
    padding: 3%;
  }
  #ftContents .ft_flex{
    width: 100%;
  }
  #ftContents .ft_flex:first-child{
    margin-bottom: 8% !important;
  }
  #ftInner .kgr {
    font-size: 6vw;
    margin-bottom: 3%
  }

  #ftInner #ftContents ul {
    width:100%;
    margin: 0 !important;
  }
  #ftInner #ftContents ul li {
    padding-left:10px;
    background-position:0 5px;
    line-height:1.8em;
    font-size: 3.7vw;
  }
  footer #ftInner #ftContents ul li .sm {
    font-size: 3.2vw;
  }
  #ftInner #ftContents #contents1st {
    width: 38%;
  }
  #ftInner #ftContents #contents2nd {
    width: 60%;
  }
    .spbr{
      clear:both;
    }

  #ftInner #ftContents #contents3rd {
    width:100% !important;
    margin-bottom:30px !important;
  }
  #ftInner #ftContents #contents4th_1 {
    width: 58%;
  }
  #ftInner #ftContents #contents4th_2 {
    width: 40%;
  }

  #ftInner #copyright{
    width:95%;
    margin:0 auto;
    padding: 5% 0;
    background:none;
  }
  #copyright p{
    font-size: 3.2vw;
  }
  #ftInner #copyright p.kinshi{
    font-size: 3.2vw !important;
  }
  #BtnPageTop {
    float:right;
  }
}


/*----------------------------- 
　　Bread Crumb
------------------------------*/

#bread-crumb {
	width: 98%;
	margin: 0 auto 20px auto;
}

#bread-crumb ul {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	*zoom: 1;
}
#bread-crumb ul li {
	list-style:none;
	float: left;
	*float: none;
	*display: inline;
	padding: 0 15px 0 18px;
	background: url(https://kinaco-seijin.com/images/common/breadcrumb_bg.gif) no-repeat left center;
	font-size: 1.3rem;
	*zoom: 1;
}
#bread-crumb ul li:first-child {
	padding-left: 10px;
	background-image: none;
}
@media screen and (max-width: 768px) {
  #bread-crumb {
    display:none;
  }
}



/*----------------------------- 
　　entry
------------------------------*/
.entry {
	width: 100%;
	margin: 20px auto 60px auto;
	padding: 2%;
	clear: both;
}
.entry h2{
  max-width: 1024px;
	text-align:left;
	position:relative;
	margin-bottom: 30px;
	border-bottom: 3px solid var(--main-mycolor);
  color:var(--main-mycolor);
	padding:5px 0;
  font-size: 2.8rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: bold;
}
.entry.col_br h2{
	border-bottom:3px solid var(--main-mycolor);
	color: var(--main-mycolor);;
}
.entry.bgwh {
	background-color:#fff;
}

.entry2 {
	width: 100%;
  max-width: 1024px;
	margin:20px auto 60px auto;
	padding:0%;
	clear:both;
}
.entry2.btm0{
  margin-bottom: 0;
}
.entry.bgwh {
	background-color:#fff;
}

@media only screen and (max-width: 768px) {
  .entry {
    margin: 5% auto 0px auto;
    width: 100%;
  }
  .entry h2{
    font-size: 6vw;
    margin-bottom: 6.8%;
  }
  .entry h2 img{
    width:76%;
  }
  .entry.bgwh {
    width:92%;
    margin:0 auto;
  }

  .entry2 {
    margin:20px auto 0px auto;
    width: 96%;
  }
  .entry2.bgwh {
    width:96%;
    margin:0 auto;
  }
}


/*----------------------------- 
common btn
------------------------------*/
.common_btn {
  margin: auto;
}
.common_btn a{
  display: block;
  position: relative;
  margin: auto;
  border: 1px solid var(--main-mycolor);
  color: var(--main-mycolor);
  background: #ffffff;
  font-size: 1.8rem;
  font-family: 'Noto Serif JP', serif;
  text-align: center;
  height: 65px;
  line-height: 65px;
}
.common_btn a::before{
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 10px;
  border-color: transparent transparent transparent var(--main-mycolor);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.common_btn a span {
  display:inline-block;
  transition: .5s;
}
.common_btn a:hover span {
  transform: rotateX(360deg);
}


@media screen and (max-width: 768px) {
  .common_btn a{
    width: 80%;
    font-size: 4.2vw;
    padding: 5% 0;
    height: auto;
    line-height: 1;
  }
  .common_btn a::before{
    border-width: 1.6vw 0 1.6vw 1.867vw;
  }
}



/*----------------------------- 
　　etc 
------------------------------*/

span.sm80{
	font-size:80%;
}

.marker{
  background:linear-gradient(transparent 60%, #f9f3f1 60%);
}

/*----------------------------- 
　　font size
------------------------------*/ 
.fs10{
	font-size:77% !important;
}
.fs11{
	font-size:85% !important;
}
.fs12{
	font-size:93% !important;
}
.fs13{
	font-size:100% !important;
} 
.fs14{
	font-size:108% !important;
}
.fs15{
	font-size:116% !important;
}
.fs16{
	font-size:123.1% !important;
}
.fs17{
	font-size:131% !important;
}
.fs18{
	font-size:138.5% !important;
}
.fs19{
	font-size:146.5% !important;
}
.fs20{
	font-size:153.9% !important;
}
.fs21{
	font-size:161.6% !important;
}
.fs22{
	font-size:167% !important;
}
.fs23{
	font-size:174% !important;
}
.fs24{
	font-size:182% !important;
}
.fs25{
	font-size:189% !important;
}
.fs26{
	font-size:197% !important;
}


/*----------------------------- 
　　bottom
------------------------------*/ 
.btm10{
	margin-bottom:10px !important;
}
.btm20{
	margin-bottom:20px !important;
}
.btm30{
	margin-bottom:30px !important;
}
.btm60{
	margin-bottom:60px !important;
}
.btm80{
	margin-bottom:80px !important;
}

img.r{
	float:right;
}
img.l{
	float:left;
}




/*----------------------------- 
　　mouse on fade
------------------------------*/ 
.fade {  
    -webkit-transition: 0.3s ease-in-out;  
       -moz-transition: 0.3s ease-in-out;  
         -o-transition: 0.3s ease-in-out;  
            transition: 0.3s ease-in-out;  
}  
.fade:hover {  
    opacity: 0.4;  
    filter: alpha(opacity=60);  
} 


/*----------------------------- 
　　clearfix
------------------------------*/ 

.clearfix {width:100%;}
.clearfix:after {
  content: ""; 
  display: block; 
  clear: both;
 }
 
 
 /*----------------------------- 
　tel スマホとPCの分岐
------------------------------*/ 
a[href^="tel:"] {
	cursor:default;
}


 /*----------------------------- 
	bottom fixed
------------------------------*/ 
.fix_menu_smartphone{
	display:none;
}
.children{
	display:none;
}

@media screen and (max-width: 768px) {
.fix_menu_smartphone{
	width: 100%;
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index: 999;
	display: block;
	line-height:0;
}
.fix_menu_smartphone .children{
		display: block;
		width: 100%;
		/* background-color: rgba(200,200,200,0.8); */
	}
		.fix_menu_smartphone .children li{
			display:inline-block;
			text-align:center;
			width:50%;
			line-height: 0;
			height: auto;
			vertical-align: bottom;
		}
		.fix_menu_smartphone .children li p{
			line-height: 1.0;
			color:#ffffff;
			margin-bottom:10px;
      text-align: center;
		}
		.fix_menu_smartphone .children li p.txS{
			font-size:12px;
			letter-spacing: normal;
			font-weight: 400;
		}
		.fix_menu_smartphone .children li p.txM{
			font-size:15px;
			font-weight: 500;
			letter-spacing: 1px;
		}
		.fix_menu_smartphone .children li a{
			display:block;
			text-align:center;
			background-color: rgba(64,28,12,0.9);
			text-decoration:none;
			width:99%;
			margin:0 auto;
			padding:10px 0 4px 0;
			border-top:6px solid #401C0C;
			line-height: 0;
		}
		.fix_menu_smartphone .children li.resvCol a{
			border-top:6px solid #ce655c;
			background-color: rgba(206,101,92,0.9);
		}
}
@media screen and (max-width: 360px) {
		.fix_menu_smartphone .children li p.txM{
			font-size:14px;
			letter-spacing:normal;
		}
}

/* 特殊リンクボタン */
.lk_button a {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
  
  position: relative;
  z-index: 2;
  background-color: #fff;
  border: 2px solid #2A0105;
  color: #2A0105;
  overflow: hidden;
}
.lk_button a::before,
.lk_button a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.lk_button a,
.lk_button a::before,
.lk_button a::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.lk_button a:hover {
  color: #fff;
}
.lk_button a::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(.5);
  transform: scale(.5);
}
.lk_button a:hover::after {
  background: #78531f;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.lk_button a{
  width: 240px;
  height: 54px;
  line-height: 50px;
}


/***********************************
        ぼかし白枠 汎用
************************************/
.bks{
	margin:0 auto;
	width:auto;
	text-align:center;
	background-color:#fff;
	padding:10px;
	
	/* box-shadow */
	box-shadow:rgba(78, 80, 82, 0.42) 0px 0px 5px 2px;
	-webkit-box-shadow:rgba(78, 80, 82, 0.42) 0px 0px 5px 2px;
	-moz-box-shadow:rgba(78, 80, 82, 0.42) 0px 0px 5px 2px;
	
	-moz-border-radius: 6px;/*for Firefox*/
	-webkit-border-radius: 6px;/*for Safari and chrome*/
	border-radius: 6px;
	behavior: url(https://kinaco-seijin.com/css/PIE.htc);/*for IE*/
	zoom: 1;
}
