@charset "utf-8";
/* CSS Document */



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

article,main,aside,details,figcaption,figure,footer,header,hgroup,picture,menu,nav,section{display:block}
ol,ul{list-style:none}
blockquote,q{quotes:none}
blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}
table{border-collapse:collapse;border-spacing:0}


*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

html{
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/*
#content{
	animation: fadein 2s forwards;
}*/

@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}



/* ----------------------------
	Base
---------------------------- */
body {
	line-height: 1.692307692;
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "palt";
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
  	font-style: normal;
	font-optical-sizing: auto;
   	color:var(--key);
	position: relative;
	letter-spacing:0.05em;
   	background:#f4f4f4;
   	overflow-x: hidden;
	overflow-y: scroll; 
}



@media screen and (max-width: 1024px) {
	body {
		line-height: 1.615384615;
		max-width: 100%
	}
}




/* ----------------------------
	共通設定
---------------------------- */
:root {
  --key: #4f5759;
  --gold: #AB9B81;
  --right_gold: #E8E3DC;
  --light_gray: #F4F4F4;
}

section{
	padding: 120px 0
}
@media screen and (max-width: 767px) {
section{
	padding: 100px 0
}
}

.pt0{
	padding-top: 0 !important
}
.lead{
	line-height: 2em;
	width: 800px;
	margin: 0 auto;
	text-align: justify
}
.lead span{
	font-weight: 700
}
@media screen and (max-width: 1024px) {
.lead{
	width: 92%;
    font-size: 0.9rem
}
}


h1{
	width: 150px;
	position: fixed;
	z-index: 2;
	top: 10px;
	left: 10px
}
@media screen and (max-width: 767px) {
h1{
	width: 105px;
	top: 3px;
	left: 9px
}
}


.shadow{
	text-shadow: #246a7a 0 0 10px;
}
.shadow_home{
	text-shadow: #000 0 0 10px;
}
.lg_shadow{
  text-shadow: 2px 2px 2px var(--light_gray), -2px -2px 2px var(--light_gray),
  -2px 2px 2px var(--light_gray),  2px -2px 2px var(--light_gray),
  2px 0 2px var(--light_gray), -2px  0 2px var(--light_gray),
  0 2px 2px var(--light_gray),  0 -2px 2px var(--light_gray);
}
.white_shadow{
  text-shadow: 2px 2px 2px white, -2px -2px 2px white,
  -2px 2px 2px white,  2px -2px 2px white,
  2px 0 2px white, -2px  0 2px white,
  0 2px 2px white,  0 -2px 2px white;
}
.white_shadow2{
  text-shadow: 6px 6px 6px white, -6px -6px 6px white,
  -6px 6px 6px white,  6px -6px 6px white,
  6px 0 6px white, -6px  0 6px white,
  0 6px 6px white,  0 -6px 6px white;
}


/* ----------------------------
	共通見出し設定
---------------------------- */
.en{
	font-family: "meno-banner", serif;
	font-weight: 500;
	font-style: normal;
	font-size:40px;
	color:var(--gold);
	text-align: center;
	line-height: 1em;
	margin-bottom: 5px
}
.ja{
	font-size: 14px;
	text-align: center;
	margin-bottom: 50px
}
.white{
	color: #fff
}
.sub{
	text-align: center;
	font-size: 14px;
	/*margin-bottom: 30px*/
}
@media screen and (max-width: 767px) {
.sub{
	margin-bottom: 0px
}
}



/* ----------------------------
	ニュース
---------------------------- */
dl.news {
  display: flex;
  flex-wrap: wrap;
  width: 900px;
  margin: 0 auto 20px auto;
  border-top: 1px dashed var(--gold);
  padding-top: 20px
}

.news dt {
  width: 18%;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--gold);
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
    font-style: normal;
}

.news dd {
  width: 82%;
  padding-bottom: 20px;
  margin-bottom: 20px;
  padding-right: 20px;
  border-bottom: 1px dashed var(--gold)
}
@media screen and (max-width: 1024px) {
dl.news {
  width: 92%;
  font-size: 0.9rem
}
}
@media screen and (max-width: 767px) {
dl.news {
  width: 92%;
  font-size: 0.9rem
}
.news dt {
  width: 100%;
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 5px;
}
.news dd {
  width: 100%;
  padding-left: 20px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  padding-right: 20px;
}
}


.news_box{
	margin: 0 auto;
	width: 800px
}
@media screen and (max-width: 1024px) {
.news_box{
	margin: 0 auto;
	width:92%
}
}
@media screen and (max-width: 767px) {
.news_box{
	margin: 0 auto;
	width:94%
}
}


.news_date{
	font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-style: normal;
	position: relative;
	padding-left: 18px;
	color: var(--gold)
}
.news_date::before{
	content:'';
	font: var(--fa-font-solid);
    content: "\f073";
    display: block;
    top: 50%;
	left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	position: absolute;
	z-index: 1;
	font-size: 80%;
}
@media screen and (max-width: 767px) {
.news_date{
	padding-left: 16px;
}
}


.news_title{
	font-size:20px;
	line-height: 1.6em
}
@media screen and (max-width: 767px) {
.news_title{
	font-size:18px;
	line-height: 1.6em
}
}

.news_content{
	margin: 30px 0 0 0;
	text-align: justify
}
.news_content img{
	width: 100%;
	margin: 20px 0
}
@media screen and (max-width: 767px) {
.news_content img{
	width: 100%;
	margin: 20px 0
}
}


.wp-pagenavi{
	display: flex;
    justify-content: center;
	font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.wp-pagenavi a, .wp-pagenavi span {
    text-decoration: none;
    border: 1px var(--gold) solid;
	color: var(--gold);
    padding: 3px 12px;
    margin: 2px;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
    border-color: var(--gold);
}
span.pages{
	border: none
}
.nextpostslink,
.previouspostslink{
	 padding: 3px 9px !important;
}
.wp-pagenavi span.current{
	background: #f4f0e1
}
#back_next{
	border-top: 1px #BBBBBB solid;
	margin-top: 60px;
    padding-top: 10px;
	display: flex;
	justify-content: space-between
}
@media screen and (max-width: 767px) {
#back_next{
	font-size: .8rem
}
}

/* ----------------------------
	トライアル
---------------------------- */

#trial_img{
	display: flex;
	justify-content:center;
	margin: 0 auto;
	width: 840px;
	column-gap: 20px;
}
@media screen and (max-width: 1024px) {
#trial_img{
   margin: 20px auto 10px auto;
   width: 100%;
}
}
@media screen and (max-width: 767px) {
#trial_img{
	display: block;
   margin: 20px auto 10px auto;
   width: 100%;
}
#trial_img li{
	width: 30%;
    margin: 1%;
	text-align: center
}
}


.trial{
	background:var(--right_gold);
	width:1040px;
	margin:0 auto;
	text-align:center;
	position:relative;
	padding:50px 50px 70px 50px;
}
@media screen and (max-width:1024px){
.trial{
    width: 95%;
    padding: 15px 15px 50px 15px;
}
}
@media screen and (max-width:767px){
.trial{
        width: 95%;
}
}

.trial h3{
	font-family: "meno-banner", serif;
	font-weight: 500;
	font-style: normal;
	font-size:60px;
	color:var(--gold);
	position:absolute;
	top:-45px;
	right: 0;
	left: 0;
	margin: auto;
	z-index:1;
}
@media screen and (max-width: 767px) {
.trial h3{
	font-size:46px;
	top:-33px;
}
}



.trial h4{
	margin:30px 0 20px 0;
}
.trial h4 img{
	width: 830px;
}
@media screen and (max-width: 1024px) {
.trial h4 img{
	width: 90%;
}
}
@media screen and (max-width: 767px) {
.trial h4{
	margin-top: 45px;
    margin-bottom: 20px;
    width: 90%;
    display: inline-block;
}
}

.trial ul{
	margin-top:20px;
	margin-bottom:5px;
	display: inline-block;
   font-size: 16px
}
@media screen and (max-width: 1024px) {
.trial ul{
   font-size: 0.8rem
}
}
@media screen and (max-width: 767px) {
.trial ul{
   font-size: 1.05rem
}
}

.trial li {
	display:flex;
	align-items: center;
	line-height:3.1em
}
@media screen and (max-width: 1024px) {
.trial li {
	display:flex;
	align-items: center;
	line-height:3.1em
}
}
@media screen and (max-width: 767px) {
.trial li {
	display: inline-block;
	line-height:1.7em;
   text-align: left;
   margin: 13px 0
}
}


.trial li p{
	font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
	font-size:46px;
	color:var(--gold);
	margin-right:20px;
	width: 30px;
}
@media screen and (min-width:768px) and (max-width:1024px) {
.trial li p{
   font-size: 2rem;
   margin-right:0px;
}
}
@media screen and (max-width: 767px) {
.trial li p{
   font-size: 3rem;
   margin: 0 auto 10px auto;
   }
}
@media screen and (max-width: 767px) {
.att_left{
   text-align: left;
   width: 100%
}
}

@media screen and (max-width: 767px) {
.trial_img{
   width: 100%
}
}


.trial_price{
	display:flex;
	margin:0 auto;
	align-items:center;
	justify-content: center;
	margin: 10px auto 20px auto
}
@media screen and (max-width: 767px) {
.trial_price{
	display:block;
	margin: 10px auto 20px auto
}
}

#m75{
	font-size: 18px;
	font-weight: 700;
    margin-top: 20px;
}
@media screen and (max-width: 767px) {
#m75{
   margin-top: 20px;
   font-size: 1.05rem
}
}


#price5000{
	font-family: "Montserrat", sans-serif;
    font-weight:500;
    font-style: normal;
	font-size:54px;
	letter-spacing: -0.05em;
	color:var(--gold);
    line-height: 1;
    margin: 0 0 25px 0;
}
@media screen and (max-width: 767px) {
#price5000{
	line-height: 1em
}
}


#price5000 span{
	font-size: 30%;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
  	font-style: normal;
	letter-spacing: 0em;
}
.bold{
	font-weight:800;
}
.attention{
	font-size:14px;
   text-indent: -1em;
   padding-left: 1em;
}
@media screen and (max-width: 1024px) {
.attention{
	font-size:0.65rem;
}
}
@media screen and (max-width: 767px) {
.attention{
	font-size:0.75rem;
}
}



/* ----------------------------
	アクセス
---------------------------- */

.align_center{
	text-align: center
}

.omise{
	font-size: 14px
}
@media screen and (max-width: 767px) {
.omise{
	font-size: 14px;
	line-height: 1.4em
}
}

#Access{
	width: 100%;
	background: url("../img/kabe.jpg");
	background-size: cover;
	text-align: center;
}
#access_logo{
	width: 140px
}

#photo_map{
	width: 1200px;
	margin: 40px auto 0 auto;
	display: flex;
	justify-content: space-between
}
@media screen and (min-width:768px) and (max-width:1024px) {
#photo_map{
	width: 92%;
	margin: 40px auto 0 auto;
	gap:3%
}
}
@media screen and (max-width: 767px) {
#photo_map{
	width: 92%;
	margin: 40px auto 0 auto;
	display: block;
}
}


iframe{
	width: 830px;
	height: 329px;
}
@media screen and (max-width: 767px) {
iframe{
	width: 100%;
	height: 329px;
   margin-top: 20px
}
}


.googlemap a span{
	position: relative;
	font-size: 14px;
}
.googlemap a span:before{
	content:'';
	font: var(--fa-font-solid);
    content: "\f3c5";
	top: 4px;
    left: -16px;
    display: inline-block;
    position: absolute;
    z-index: 1;
}



#access_text p{
	margin: 15px 0 0  0
}
@media screen and (max-width: 767px) {
#access_text{
   width: 92%;
   margin: 0 auto;
   font-size: 0.9rem
}
}
@media screen and (max-width: 767px) {
#shop_photo{
    width: 60%;
    display: inline-block
}
}

iframe{
    border: 2px white solid !important
}



/* ----------------------------
	フッター
---------------------------- */

#page_top{
	font-size: 24px;
	text-align: center;
	line-height: 1em;
	background: #fff;
	color:#757a7b
}
#page_top p{
	font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
    line-height: 1.5em;
    letter-spacing: 0;
    padding-bottom: 7px;
}
footer{
   color: #fff;
   background: var(--key);
   width: 100%;
   text-align: center;
   padding: 50px 0 20px 0;
   font-size: 14px
}

#footer_logo{
   width: 120px;
   display: inline-block
}

.toho{
	margin: 6px 0
}

#footer_map a span{
	position: relative
}
#footer_map a span:before{
	content:'';
	font: var(--fa-font-solid);
    content: "\f3c5";
	top: 4px;
    left: -16px;
    display: inline-block;
    position: absolute;
    z-index: 1;
    font-size: 15px;
}
/***
#footer_map a span:after{
	content:'';
	font: var(--fa-font-light);
    content: "\f054";
	top: 5px;
    right: -13px;
    display: inline-block;
    position: absolute;
    color: #fff;
    z-index: 1;
    font-size: 12px;
}
****/


.access_en{
   font-family: Arial, Helvetica, "sans-serif";
   font-size: 24px;
   font-weight: bold;
   letter-spacing: 0em;
   line-height: 1em;
   margin:10px 0 5px 0;
   color: #898989
}
.access_ja{
   font-size: 14px;
   font-weight: 700;
   margin-bottom: 30px;
   color: #898989
}
footer .access_en,
footer .access_ja{
    color: #fff
}


.tel{
   text-align: center;
}
.tel a{
	color: var(--gold);
	font-family: arial;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	margin: 0 auto;
	display: inline-block;
	line-height: 1em;
	margin: 5px 0 0 0
}
.tel a span{
	position: relative;
	display: flex;
	align-items: center;
	padding-left: 27px;
   text-align: center
	
}
.tel a span::before{
	content:'';
	font: var(--fa-font-solid);
    content: "\f2a0";
    display: block;
    top: 50%;
	left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	position: absolute;
	z-index: 1;
	font-size: 80%;
}



.tel_footer{
   text-align: center;
}
.tel_footer a{
	color: #fff;
	font-family: arial;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
	margin: 0 auto;
	display: inline-block;
	line-height: 1em;
	margin: 25px 0 0 0
}
.tel_footer a span{
	position: relative;
	display: flex;
	align-items: center;
   text-align: center;
   padding-left: 0
	
}
.tel_footer a span::before{
	content:'';
	font: var(--fa-font-solid);
    content: "\f2a0";
    display: block;
    top: 50%;
	left: -28px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	position: absolute;
	z-index: 1;
	font-size: 80%;
}



ul#footer_menu{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-style: normal;
    display: flex;
    justify-content: center;
    margin:30px auto;
	font-size: 16px;
}
@media screen and (max-width: 767px) {
ul#footer_menu{
    border-bottom:1px #a9a9aa solid;
	margin: 35px 0 30px 0 !important
}
}

#footer_sub_menu{
	font-size: 14px;
}
#footer_sub_menu li{
	margin:4px 0
}
@media screen and (max-width: 767px) {
#footer_sub_menu li{
	margin:12px 0
}
}



#footer_menu li{
   position: relative;
}
@media screen and (max-width: 767px) {
#footer_menu li{
   border-top:1px #a9a9aa solid;
   padding: 14px 0
}
}


#footer_menu li::before{
   content: '|';
   padding: 0 10px 
}
@media screen and (max-width: 767px) {
#footer_menu li::before{
   content:none;
}
#footer_menu li a{
   width: 100%;
   height: 100%;
   display: block
}
}


#footer_menu li:first-child::before{
   content: none;
   padding: 0 10px 
}

@media screen and (max-width: 767px) {
ul#footer_menu{
    display: block;
    justify-content: center;
    margin: 0 auto;
    font-weight: bold
}
}

#policy_text{
    text-align: center;
    margin-top: 20px
}

#policy{
   font-size:14px;
   margin: 25px 0
}

#sns{
   display: flex;
   justify-content: center;
   column-gap: 30px;
   margin: 20px 0 15px 0;
}
@media screen and (max-width: 767px) {
#sns{
    margin: 20px 0 0 0
}
}

#sns img{
   display: block;
   width: 26px;
   margin: 10px 0 20px 0
}
copy{
   font-size: 12px;
   font-family: "Montserrat", sans-serif;
   font-weight: 400;
   font-style: normal;
}


/* ----------------------------
	体験
---------------------------- */

#res_btn{
   display: flex;
   justify-content: space-around;
   width: 840px;
   gap: 15px;
   margin: 30px auto 0px auto
}
@media screen and (max-width: 1024px) {
#res_btn{
   width: 95%;
}
}

#res_btn li{
   width: 33.3%
}
#res_btn li p{
	font-size: 12px;
	text-align: center;
	line-height: 1.4em;
	margin-top: 5px
}
@media screen and (max-width: 767px) {
#res_btn{
   display: block;
   width: 100%;
   margin: 20px auto 20px auto
}
#res_btn li{
   width: 100%;
   margin-bottom: 15px
}
}



#res_btn .btn,
#res_btn a.btn,
#res_btn button.btn {
  background: #06C755;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.6rem 1rem 0.7rem 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 0.5rem;
  position: relative;
 width: 100%
}
@media screen and (max-width: 767px) {
#res_btn .btn,
#res_btn a.btn,
#res_btn button.btn {
   padding: 0.7rem 1.5rem;
}
}

.square{
   background: #1D63F8 !important;
   border-bottom: 5px solid #163C8F !important;
}
.insta{
   background: #eb3c70 !important;
   border-bottom: 5px solid #98294a !important;
}
@media screen and (max-width: 767px) {
.line_mb{
	margin-bottom: 30px !important
}
}

#res_btn a.btn span{
	position: relative;
	padding-left: 25px;
}

#res_btn a.btn span:before{
	position: absolute;
	content: '';
	background: url("../img/line_white.svg") no-repeat;
	width: 26px;
    height: 29px;
    display: inline-block;
    top: -1px;
    left: -6px;
}
#res_btn a.btn.insta span:before{
	position: absolute;
	content: '';
	background: url("../img/insta.svg") no-repeat !important;
	width: 26px;
    height: 29px;
   display: inline-block;
   top: -1px;
   left: -11px;
}
#res_btn a.btn.square span:before{
	position: absolute;
	content: '';
	background: url("../img/mail.svg") no-repeat !important;
	width: 26px;
    height: 29px;
   display: inline-block;
   top: -1px;
   left: -13px;
}


@media screen and (max-width: 767px) {
.width100{
   width: 100%;
}
}

#res_btn a.btn--red.btn--cubic {
  border-bottom: 5px solid #196f3c;
}

#res_btn a.btn--radius {
  border-radius: 100vh;
}



/* ----------------------------
	ボタン
---------------------------- */
/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


.btn,
a.btn,
input[type="submit"].btn {
  background: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1.2rem 10rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 0.5rem;
  position: relative; 
}
@media screen and (max-width: 767px) {
.btn,
a.btn,
input[type="submit"].btn{
    padding: 0.5rem 2rem;
    width: 100%
}
}

input[type="submit"] span,
a.btn span{
	position: relative;
	padding-left: 40px;
}
@media screen and (max-width: 767px) {
a.btn span{
	padding-left: 0px;
   line-height: 1.2em
}
}



a.btn span:before{
	position: absolute;
	content: '';
	background: url("../img/illust1.svg") no-repeat;
	width: 50px;
	height: 70px;
	display: inline-block;
	bottom: -9px;
	left: -14px
}
@media screen and (max-width: 767px) {
a.btn span:before{
    bottom: -1px;
    left: -70px;
}
}



input[type="submit"].btn--red.btn--cubic{
    width: 500px;
    transition: ease-in-out .3s;
    margin: 20px 0 0 0
}
@media screen and (max-width: 767px) {
input[type="submit"].btn--red.btn--cubic{
    width: 100%;
    font-size: 18px
}
}

input[type="submit"].btn--red.btn--cubic:hover{
    opacity: .5
}


input[type="submit"].btn--red.btn--cubic,
a.btn--red.btn--cubic {
  border-bottom: 5px solid #887a64;
}
/*
a.btn--red.btn--cubic:hover {
  margin-top: 6px;
  border-bottom: 2px solid #887a64;
}
*/
input[type="submit"].btn--red.btn--cubic,
.btn--red.btn--cubic,
a.btn--radius {
  border-radius: 100vh;
}


.fa-position-right {
  position: absolute;
  top: calc(50% - .5em);
  right: 2rem;
}
@media screen and (max-width: 767px) {
.fa-position-right {
   right: 1.4rem;
}
}

.fa-position-left {
  position: absolute;
  top: calc(50% - .5em);
  left: 2rem;
}
@media screen and (max-width: 767px) {
.fa-position-left {
   left: 1.4rem;
}
}



/* ----------------------------
	予約ボタン
---------------------------- */
#reserve_btn{
    width:200px;
    position:fixed;
	bottom:-35px;
	right:-20px;
	z-index:2
}
@media screen and (max-width: 767px) {
#reserve_btn{
	width:10vw;
   bottom:-25px;
	right:-20px;
}
}

.elm {
  text-decoration: none;
  position: fixed;
  bottom:-35px;
　right:-20px;
　transition: ease-in-out .5s;
  z-index:1;
}




/* Anchor
---------------------------- */
a {
	outline: none;
	text-decoration: none;
	color: inherit;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-box-shadow: none;
	box-shadow: none;
	transition: ease-in-out .5s
}
a:hover{
	opacity: .5
}


/* ----------------------------
	404
---------------------------- */
#center404{
	text-align: center
}
#sorry{
	font-size: 18px;
	margin: 0 0 40px 0
}
/* Image
---------------------------- */
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-box-shadow: none;
	box-shadow: none;
}



@media (min-width: 768px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}




/* Break Line
---------------------------- */
.pc { display: block !important; }
.sp { display: none !important; }

@media screen and (max-width: 767px) {
.pc { display: none !important; }
.sp { display: block !important; }
}



