@charset "UTF-8";
/* CSS Document */
/* Body */
body {
	font-family: -apple-system, BlinkMacSystemFont,
               "Segoe UI",
               "Hiragino Kaku Gothic ProN",
               "Yu Gothic",
               Meiryo,
               sans-serif;
  font-size: 16px;
  line-height: 1.6;
	background-color: #FFFFFF;
	text-align: center;
	margin: 0 auto;
	height: auto;
	padding:auto 0;
	}

a{text-decoration: none;}

nav {
	text-align: left;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
	z-index: 200;
}
.ace-navi{
	text-align: left;
	width: 97%;
	padding-left: 1.5%;
	padding-right: 1.5%;
	height: auto;
	background-color: #ffffff;
	display: inline-block;
}
.ace-logo{
	text-align: left;
	margin-top: 25px;
	width: 230px;
	display: inline-block;
}
.ace-logo img{
	text-align: left;
	width: 100%;
}

.ace-navi-right{
	display: inline-block;
	float: right;
	width: 80%;
}
.ace-navi-txtbtn{
	text-align: left;
	float: right;
	display: inline-block;
	margin-right: 80px;
	padding-top: 60px;
}
.ace-navi-txtbtn a{
	margin-left: 12px;
	margin-right: 12px;
	padding-bottom:  10px;
	height: 70px;
	color: #444444;
	text-decoration: none;
}
.ace-navi-txtbtn a:hover {
	border-bottom: solid 4px rgba(0,80,166,1.00);
}

.ace-navi-tel{
	display: inline-block;
	float: right;
	margin-top: 17px;
}
.ace-navi-tel img{
	width: 35px;
	margin-right: 5px;
}
.ace-navi-tel a{
	line-height: 1;
}
.ace-navi-tel p{
	font-size:14px;
	line-height: 0;
	margin-top: 7px;
}
.ace-tel{
	font-size: 37px;
	font-weight: 900;
	color: rgba(0,80,166,1.00);
}


/*　　アコーディオン　　*/
.btn {
    background:transparent url(../images/btn.png) no-repeat 0 0;
    display: block;
    width:45px;
    height: 45px;
    position: fixed;
    top:5px;
    right:5px;
    cursor: pointer;
    z-index: 200;
	visibility: hidden;
}
.peke {
    background-position: -45px 0;
}
.drawr {
    display: none;
    background-color:rgba(0,0,0,0.6);
    position: fixed;
    top: 80px;
    right:0;
    width:20%;
    padding:10px 0 20px 20px;
    z-index: 100;
}

.sample-accordion {
  min-width: 100px;
  margin: 0 auto;
  padding: 0;
}
.sample-accordion .ac-content {
  margin: 0;
  padding: 0;
}
.sample-accordion input {
  display: none;
}
.sample-accordion label {
  display: block;
  background:#777777;
  cursor: pointer;
  padding: 10px;
  color: #fff;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
}
.sample-accordion label:hover {
  background:#888888;
}
.sample-accordion .ac-cont {
  transition: 0.2s;
  height: 0;
  overflow: hidden;
  background: #ddd;
  padding: 0 10px;
  box-sizing: border-box;
}
.sample-accordion input:checked + .ac-cont {
  height: auto;
  padding: 10px;
  box-sizing: border-box;
}
.ac-cont a{
  color: #000000;
  text-decoration: none;
  border-bottom: dotted 1px #000000;
}
label a{
  color:#FFFFFF;
  text-decoration: none;
}
/*　　アコーディオン終わり　　*/



/*  大枠　*/
#wrap {
	width: 100%;
	height: auto;
	background-color: #FFFFFF;
	display: inline-block;	
	margin-bottom: 0px;
	padding-bottom: 0px;
	vertical-align:bottom;
	display: inline-block;
}
#wrap h1{
	font-size: 50px;
	margin-bottom:-20px;
	font-weight: 200;
}
#wrap h2 {
	font-size: 32px;
	margin-bottom:-10px; 
}
#wrap h3 {
	font-size: 24px;
	line-height: 32px;
	margin-bottom:-0px; 
}
#wrap h4 {
	font-size: 22px;
	margin-bottom:-30px; 
	line-height: 30px;
}
#wrap h5 {
	font-size: 20px;
	margin-bottom:-10px; 
}

/* ACEスライドショー */
.slider-wrap-wrap{	
	width: 90%;
	margin-left: 5%;
	margin-bottom: 20px;
	max-width: 1600px;
	height: auto;
	margin: 0 auto;
	margin-top: 0px;
	display: inline-block;
}
.slider-wrap {
  position: relative;
  width: 100%;
  height: auto;
  margin-left: 0%;
  margin-top: 120px;
  overflow: hidden;
  border-radius: 0px;
  aspect-ratio: 13 / 7; /* 比率はお好みで */
}
.slider-wrap a {
  color: inherit;
  text-decoration: none;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #aaa; /* 非表示はグレー */
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s;
}

.dot.active {
  background: #000000; /* 表示中は黒 */
}

/* 前後の矢印 */
.arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
}
.arr:hover { background: rgba(255, 255, 255, 0.4); }
.arr-l { left: 12px; }
.arr-r { right: 12px; }

/* ドット */
.dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border: none;
}
.dot.active { background: #fff; }

/* 上部プログレスバー */
.progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.7);
  transition: width 0.1s linear;
  z-index: 10;
}

/* END スライドショー */

/*  本文　*/

.ace-topimg {
	width: 100%;
	height: 400px;
	margin-top: 120px;
  position: relative; /* 基準になる親 */
  display: inline-block;
}
.ace-topimg img {
	width: 100%;
	height: 400px;
	display: block;
	object-fit: cover;   /* はみ出た部分をトリミング */
	object-position: 80% 20%;     /* 横30% 縦20%の位置を中心に */
}
.ace-top-copy{
	font-size: 42px;
	font-weight: 100;
	position: absolute; /* 親を基準に配置 */
    top: 50%;
    left: 50%;
    transform: translate(-49%, -49%);
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 5px;
    border-radius: 1px;
    color: white;
}


.ace-cont{	
	width: 95%;
	padding-left: 2%;
	max-width: 1800px;
	height: auto;
	margin: 0 auto;
	margin-top: 0px;
	display: flex;
}
.ace-cont h1{
	font-size: 50px;
	margin-bottom:-20px;
	font-weight: 200;
}
.ace-cont h2 {
	font-size: 32px;
	margin-bottom:-10px; 
}
.ace-cont h3 {
	font-size: 24px;
	margin-bottom:-15px; 
}
.ace-cont h5 {
	font-size: 20px;
	margin-bottom:-15px; 
}
.ace-cont p {
	line-height: 30px;
}
/* INDEX */
.index-wrap{	
	width: 90%;
	margin-bottom: 20px;
	max-width: 1250px;
	height: auto;
	margin: 0 auto;
	margin-top: 0px;
	display: inline-block;
}
.index-wrap h1{
	font-size: 50px;
	margin-bottom:-20px;
	font-weight: 200;
	line-height: 58px;
}
.index-wrap h2 {
	font-size: 32px;
	margin-bottom:-10px; 
}
.index-wrap h3 {
	font-size: 24px;
	margin-bottom:-15px; 
}
.index-wrap h5 {
	font-size: 20px;
	margin-bottom:-15px; 
}
.index-wrap p {
	line-height: 30px;
}
/* INDEXの文章　*/
.ace-index-toptext{
	width: 95%;
	margin-left: 2%;
	height: auto;
	display: inline-block;
	float: left;
	}
/* 注文・予約　相談のボタン　*/
.ace-mddle-btn {
	width: 95%;
	margin-left: 2%;
	margin-top: 50px;
	margin-bottom: 50px;
	height: auto;
	display: inline-block;
	float: left;
	text-align: center;
}
.btn-kau {
	width:300px;
	background-color: rgba(0,80,166,1.00);
	margin-left: 15px;
	margin-right: 15px;
	margin-bottom: 10px;
	height: auto;
	display: inline-block;
}
.btn-kau h2{
	color: white;
	padding-top: 0px;
	padding-bottom:33px;
}
.btn-sodan {
	width:300px;
	background-color: rgba(0,168,206,1.00);
	margin-left: 15px;
	margin-right: 15px;
	margin-bottom: 10px;
	height: auto;
	display: inline-block;
}
.btn-sodan h2{
	color: white;
	padding-top: 0px;
	padding-bottom:33px;
}
/* ACEお知らせ */
.ace-info-wrap{
	width:70%;
	max-width: 1300px;
	height: auto;
	margin: 0 auto;
	display: table;
	margin-bottom: 5px;
	margin-top: 5px;
}
.ace-info-wrap p{
	line-height: 1.6;
}
.ace-info-wrap h3{
	line-height: 70px;
}
.ace-info-day{
	width: 20%;
	height: auto;
	display: table-cell;
	text-align: center;
	background-color:  rgba(0,168,206,1.00);
	margin-bottom: 10px;
	border: solid 7px #ffffff;
}

.ace-info-text{
	width: 75%;
	margin-left: 2%;
	padding-left: 2%;
	height: auto;
	display: table-cell;
	text-align: left;
	background-color:  #E2E2E2;
	border: solid 7px #ffffff;
}
/* INDEXの本文 */
.ace-middle-img {
  width: 100%;
  position: relative; /* 基準点にする */
  display: inline-block;
}
.ace-middle-img img{
	width: 100%;
}
.ace-middle-img-text{  
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  color: white;
}
.ace-middle-img-text p{
	color: white;
	text-decoration: none;
	border: solid 1px #ffffff;
	width: 200px;
	float: right;
}

.syurui-wrap{
	width: 100%;
	display: inline-block;
	text-align: start;
	margin-top: 20px;
	margin-bottom: 50px;
}
.syurui-wrap img{
	width: 100%;
}
.syurui-wrap p{
	line-height: 1.6;
}

.syurui{
	width: 28%;
	margin-right: 2%;
	margin-left: 2%;
	display: inline-block;
}

.syurui-4{
	width: 23.5%;
	margin-left: 0.5%;
	margin-right: 0.5%;
	display: inline-block;
}
.syurui-4 h3{
	margin-top: 5px;
}
.syurui-4 img{
	margin-top: 30px;
}

.kakomi-3 {
	width: 22.5%;
	margin-left: 3%;
	margin-right: 3%;
	padding: 2%;
	margin-top: 50px;
	display: inline-block;
	text-align: start;
	border: solid 1px #555555;
}
.kakomi-3 img{
	width: 60%;
	margin-left: 18%;
	margin-bottom: -40px;
	
}
.kakomi-3 h4{
	font-size: 28px;
	line-height:36px;
	margin-bottom: 0px;
}
.kakomi-3 p{
	font-size: 16px;
	line-height:26px;
}
.kakomi-3 a{
	border: solid 2px #777777;
	padding: 5px 20px;
	font-size: 14px;
	color: #777777;
	font-weight: 700;
}

.kakomi-3-b {
	width: 27%;
	margin-left: 3%;
	margin-right: 2.7%;
	margin-top: 50px;
	display: inline-block;
	text-align: start;
	border: solid 1px #555555;
}
.kakomi-3-img{
	width: 200px;
	margin-bottom: -40px;
	margin-left: 5%;
}
.kakomi-3-img img{
	width: 100%;
}
.kakomi-3-h{
	background-color: rgba(149,215,220,1.00);
	left: 0;
    right: 0; 
	height: 70px;
	margin-top: 0px;
	padding-top: 3px;
	padding-bottom: 3px;
	text-align: center;
	border-bottom: solid 1px #555555;
}
.kakomi-3-h h4{
	font-size: 24px;
	margin-top: 22px;
	line-height: 0px;
}

.kakomi-3-kikaku{
	padding-left: 20px;
	border-bottom: solid 1px #555555;
	padding-bottom: 28px;
}
.kakomi-3-kikaku P{
	margin-bottom: -15px;
}

.kakomi-3-price{
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
}
.kakomi-3-price h6{
	font-size: 46px;
	margin-bottom: 0px;
	margin-top: 0px;
	font-weight: 400;
	color:rgba(0,80,165,1.00);
	line-height: 40px;
}
.kakomi-3-price p{
	line-height: 5px;
}

.meyasu{
	width: 100%;
	height: auto;
	display: inline-block;
	margin: 0 auto;
	text-align: start;
	margin-bottom: 50px;
}
.meyasu-kakomi{
	width: 97%;
	background-color: white;
	border-radius: 10px;
	padding-left: 2%;
	display: inline-block;
	margin-top: 10px;
	margin-bottom: 10px;
}
.meyasu-kakomi p{
	font-size: 24px;
	font-weight: 700;
	margin-top: 15px;
	margin-bottom: 15px;
}
.meyasu-kakomi a{
	font-size: 16px;
	font-weight: 400;
	margin-top: 15px;
	margin-bottom: 15px;
}
.meyasu-kakomi-a{
	width: 25%;
	display: inline-block;
}
.meyasu-kakomi-b{
	width: 70%;
	display: inline-block;
}

.ace-bnr{
	width: 100%;
	margin-top: 50px;
}
.ace-bnr img{
	width: 100%;
}
.space{
	height: 80px;
}

/* INDXのバナー  */
.ace-bnr-blue{
	width: 100%;
	height:auto;
	position: relative;
	background-color:rgba(0,168,206,1.00) ;
	border-radius: 20px;
	color: #fff;
	text-align: start;
	display: inline-block;
    font-size: initial;
	margin-top: 30px;
}

.ace-bnr-img{
	width: 40%;
	display: inline-block;
}
.ace-bnr-img img{
	width: 100%;
	border-radius: 18px;
	margin-top: 7px;
	margin-left: 1.5%;
}
.ace-bnr-text{
	width: 55%;
	margin-left: 2.5%;
	display: inline-block;
	vertical-align: top;
	font-size: 125%;
}
.ace-bnr-title {
	font-size: 50px;
	font-weight: 700;
	margin-top: 35px;
	line-height: 55px;
}
.ace-bnr-art{
	margin-bottom: 30px;
}

.ace-bnr-buttom1 {
	width: 20%;
	position: absolute;
	right: 5%;
	bottom: 40px;
	text-align: center;
	vertical-align: text-bottom;
	font-size: 28px;
	font-weight: 700;
	color: #FFFFFF;
	background-color: rgba(0,80,165,1.00);
}
.ace-bnr-gray {
	width: 100%;
	position: relative;
	background-color:#E2E2E2;
	border-radius: 20px;
	color: #555555;
	text-align: start;
	display: inline-block;
    font-size: initial;
	margin-top: 50px;
}
.ace-bnr-title-b {
	font-size: 50px;
	font-weight: 700;
	margin-top: 35px;
	color: #000000;
	line-height: 55px;
}


.ace-bnr-buttom2 {
	width: 20%;
	position: absolute;
	right: 5%;
	bottom: 40px;
	text-align: center;
	vertical-align: text-bottom;
	font-size: 28px;
	font-weight: 700;
	color: #FFFFFF;
	background-color: rgba(0,80,165,1.00);
}

/* 子ページの本文　*/
.ace-article {
	width: 70%;
	margin-left: 6%;
	display: inline-block;
	text-align: left;
}
.ace-art-text {
	width: 100%;
	margin-bottom: 30px;
}
.ace-art-img {
	width: 60%;
	height: auto;
	margin-top: 50px;
	margin-bottom: 60px;
}
.ace-art-img img {
	width: 100%;
}
.ace-art-img-s {
	width: 250px;
	height: auto;
	margin-top: 40px;
	margin-bottom: -30px;
}
.ace-art-img-s img {
	width: 100%;
}
.ace-art-img-m {
	width: 60%;
	height: auto;
	margin-top: 40px;
	margin-bottom: 40px;
}
.ace-art-img-m img{
	width: 100%;
}

.ace-art-img-s img {
	width: 100%;
}

.grayback-wrap{
	width: 100%;
	background-color: #E2E2E2;
	padding-bottom: 60px;
	padding-top: 20px;
}
/* FAQ */

.faq {
	width: 90%;
	margin: 0 auto;
}
.faq-wrap{
	width: 100%;
	background-color: white;
	text-align: start;
	padding-bottom: 1px;
	padding-top: 1px;
	margin-bottom: 0px;
	margin-top: 30px;
}

.ace-question{
	font-weight: 700;
	border-bottom: dashed 2px #555555;
	margin-left: 2.5%;
	margin-right: 2.5%;
}

.ace-answer{
	margin-left: 2.5%;
	margin-right: 2.5%;
	margin-top: -10px;
	 text-align: justify;
  text-justify: inter-ideograph; /* 日本語向け */
}

.ace-sonotafaq{
	 width: 250px;
	margin: 0 auto;
}
.ace-sonotafaq p{
	color: white;
	background-color: rgba(0,80,165,1.00);
	font-size:25px;
	font-weight: 700;
	padding: 10px;
}
/* END FAQ */

/* サイドバー　*/
.ace-side{
	width: 20%;
	height: auto;
	padding-top: 50px;
	margin-bottom: 100px;
	display: inline-block;
}	/* サイドバー　*/
.ace-side-text {
	width: 100%;
	height: auto;
	padding-bottom: 35px;
	padding-top: 35px;
	line-height: 1;
	border-top: solid 1.5px #777777;
}
.ace-side-text a{
	font-size: 20px;
	font-weight: 700;
	color: #000000;
}

.ace-side-btn {
	width: 100%;
	height: auto;
	padding-bottom: 5px;
	padding-top: 5px;
	background-color:rgba(0,80,166,1.00); 
	margin-bottom: 5px;
	}
.ace-side-btn p{
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
}

.ace-side-btn-b {
	width: 100%;
	height: auto;
	padding-bottom: 5px;
	padding-top: 5px;
	background-color:rgba(0,168,206,1.00); 
	margin-bottom: 5px;
	}
.ace-side-btn-b p{
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
}


/*  SNSのロゴ　*/
.side_sns{
	width: 100%;
	margin-top: 10%;
	margin-bottom: 5%;
	vertical-align: bottom;
}
.side_sns img{
	width: 18%;
	margin-left: 2%;
	margin-right: 2%;
}

/* ACE bottom */
.ace-bottom{
	width: 100%;
	background-color: #ffffff;
}
.ace-bottom h2 {
	font-size: 32px;
	margin-bottom:-18px; 
}
.ace-bottom h3 {
	font-size: 24px;
	margin-bottom:-15px; 
}
.ace-bottom h5 {
	font-size: 20px;
	margin-bottom:-15px; 
}
.blueback-wrap {
	width: 100%;
	height: auto;
	background-color: rgba(0,168,206,1.00);
}
.whiteback-wrap {
	width: 100%;
	height: auto;
	background-color: #ffffff;
}


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

.ace-haitatsu-kanou{	
	width: 90%;
	margin-left: 5%;
	margin-bottom: 20px;
	max-width: 1250px;
	margin: 0 auto;
	text-align: left;
	padding-bottom: 30px;
	padding-top: 15px;
    display: flex;
}
.haitatsu_text{
	width: 60%;
	margin-right: 1%;
	display: inline-block;
	padding-right: 30px;
	}
.haitatsu_text img{
	width: 70%;
	margin-top: 30px;
}
.ace-kuwasiku {
	float: right;
	background-color:rgba(0,80,166,1.00);
	font-size: 24px;
	color: #ffffff;
	font-weight: 700;
	padding-bottom: 7px;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 7px;
	margin-top: -20px;
	margin-bottom: 50px;
}
.haitatsu_img {
	width: 31%;
	margin-left: 1.5%;
	margin-right: 1%;
	margin-top: 40px;
	display: inline-block;
}
.haitatsu_img img {
	width: 100%;
	vertical-align: bottom;
	
}

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

.ace-uketori{	
	width: 90%;
	margin-left: 5%;
	margin-bottom: 20px;
	max-width: 1250px;
	margin: 0 auto;
	text-align: left;
	padding-bottom: 50px;
}
.ace-uketori-hoho{
	width: 91%;
	margin-left: 1.5%;
	margin-right: 1%;
	margin-top: 25px;
	display: inline-block;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 20px;
	border-bottom: solid 1px #777777;
	}
.ace-uketori-basyo{
	width: 91%;
	margin-left: 1.5%;
	margin-right: 1%;
	margin-top: 25px;
	display: inline-block;
	padding-left: 30px;
	padding-right: 30px;
	}
.ace-uketori-h {
	width: 47%;
	height: auto;
	padding-left: 1%;
	padding-right: 1%;
	display: inline-block;
}
.ace-uketori-h a{
	font-size: 24px;
	line-height: 24px;
}
.hoho-img {
	width: 28%;
	height: auto;
	display: inline-block;
}
.hoho-img img {
	width: 100%;
}
.hoho-text {
	width: 66%;
	height: auto;
	display: inline-block;
	margin-left: 3%;
	margin-right: 2%;
}
.ace-uketori-logo{
	padding-top: 50px;
	margin-bottom: -30px;
	width: 260px;
}
.ace-uketori-logo img{
	width: 100%;
}

/*-----------------------------*/
.ace-order{	
	width: 90%;
	margin-left: 5%;
	margin-bottom: 20px;
	max-width: 1250px;
	margin: 0 auto;
	text-align: left;
	padding-bottom: 50px;
}
/*-------本文内-------*/
.ace-order-cont{	
	width: 90%;
	margin-left: 5%;
	margin-bottom: 20px;
	margin: 0 auto;
	text-align: left;
	padding-bottom: 50px;
	margin-top: 50px;
	display: flex;
	padding-top:50px;
}
/*-------END 本文内-------*/
.ace-order-tittle {
	width: 98%;
	margin-left: 1.5%;
	margin-bottom: 20px;
}
.ace-order-tittle-text {
	width: 70%;
	display: inline-block;
}
.ace-order-tittle-img {
	width: 28%;
	display: inline-block;
}
.ace-order-tittle-img img {
	width: 230px;
	margin-top: 30px;
}
.ace-order-ac-wrap {
	width: 100%;
  display: flex;
}
.ace-order-a{
	width: 42.5%;
	height: auto;
	margin-left: 1.5%;
	margin-right: 1.5%;
	background-color: #ffffff;
	display: inline-block;
	padding-left: 30px;
	padding-right: 15px;
	padding-bottom: 20px;
}
.ace-order-a img{
	width: 30px;
	margin-right: 5px;
	
}
 .ace-order-a a{
	font-size: 34px;
	font-weight: 700;
	color:  rgba(0,80,166,1.00);
	 line-height:0.5;
}

.ace-order-a-sub{
	width: 100%;
	height: 100px;
}
.ace-order-btn{
	width: 40%;
	display: inline-block;
	padding-top: 5px;
}
.ace-order-btn img{
	width: 100%;
}

.ace-order-side {
	display: inline-block;
	width: 55%;
	margin-left: 10px;
	line-height: 1.4;
	
}




.ace-order-b {
	width: 91%;
	margin-left: 1.5%;
	margin-right: 1%;
	margin-top: 25px;
	background-color: #ffffff;
	display: inline-block;
	padding-left: 30px;
	padding-right: 30px;
}


/*-----------------------------end*/

/*ページ内でも使う*/
.ace-bottom-yoyakujyokyo{
	width: 100%;
	background-color: rgba(0,80,166,1.00);
	height: 80px;
	margin-top: -16px;
	
}
.ace-bottom-yoyakujyokyo a{
	font-size: 24px;
	text-decoration: none;
	color: #ffffff;
	font-weight: 700;
	margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center; 
}
.ace-bottom-yoyakujyokyo img{
	width: 45px;
	height: auto;
}
/*ページ内でも使う end*/

.ace-bottom-inq-wrap {
	width: 100%;
	background-color: #E2E2E2;
	margin-top: 0px;
	padding-top: 5px;
	padding-bottom: 30px;
}
.ace-bottom-inq-wrap h4 {
	font-size: 28px;
	font-weight: 200;
	line-height: 38px;
}
.ace-bottom-inq-wrap h5 {
	font-size: 20px;
	font-weight: 700;
	line-height: 5px;
	margin-top: 45px;
}
.ace-bottom-inq-tel {
	width: 100%;
	line-height: 8px;
}
.ace-bottom-inq-tel img{
	width: 30px;
}
.telnumber {
	font-size: 34px;
	font-weight: 700;
	color:  rgba(0,80,166,1.00);
	margin-left: 5px;
	display: inline-block;
	margin-top: 35px;
	margin-bottom: -20px;
}
.komoji{
	font-size: 16px;
	line-height: 20px;
	display: inline-block;
	margin-top: 10px;
}


.ace-bottom-inq-mail {
	width: 380px;
	height: auto;
	margin: 0 auto;
	background-color:   rgba(0,80,166,1.00);
	padding-bottom: 18px;
	padding-top: 15px;
	margin-top: 20px;
	text-decoration: none;
}
.ace-bottom-inq-mail img{
	width: 43px;
	margin-right: 5px;
}
.ace-bottom-inq-mail a{
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
	text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center; 
}


/* footer */
.footer{
	width: 100%;
	background-color: #E2E2E2;
	position:inherit;
    bottom: 0; /*下に固定*/
	display: inline-block;
	margin-bottom: -10px; /*inlineblockの空き対応*/
	text-align: center;
}
.footmenu{
	width: 100%;
	max-width: 1500px;
	padding-top: 20px;
	padding-bottom: 20px;
    margin-left: auto;
	margin-right: auto;
	}

.footlogo{
	width: 15%;
	margin-left: 1%;
	float: left;
	margin-top: 50px;
}
.footlogo img{
	width:  70%;
}
.footlink{
	width: 17%;
	margin-left: 5%;
	float: left;
	font-size: 0.9em;
	line-height: 0.7em;
	text-align: left;
	border-right: solid #999999 1px;
}
.footlink a{
	text-decoration: none;
	color: #888888;
}
.foot_sns{
	width: 100%;
	margin-top: 30px;
}
.foot_sns img{
	width:  12%;
}
.foot_adress{
	width: 25%;
	margin-left: 2%;
	margin-right: 2%;
	float: left;
	font-size: 0.7em;
	line-height: 0.6em;
}
.foot_adress img{
	width: 40%;
}

.footmenu-b-wrap {
	width: 100%;
	background-color: #ffffff;
	padding-bottom: 40px;
	padding-top: 13px;
	border-bottom: solid #888888 1px;
	display: inline-block;
}
.footmenu-b {
	width: 700px;
	display: inline-block;
}
.footermenu-b-img{
	width: 40%;
	display: inline-block;
	margin-left: 6%;
}
.footermenu-b-img img{
	width: 100%;
	vertical-align: bottom;
	padding-bottom: 4px;
}

.footermenu-b-txt{
	width: 50%;
	display: inline-block;
	text-align: left;
	margin-left: 3%;
	
}
.footermenu-b-txt p{
	font-size: 12px;
	font-weight: 300;
}
.footermenu-b-name{
	width: 100%;
	 height: 16px;
}
.footermenu-b-name p{
	font-size: 20px;
	font-weight: 700;
}
.footermenu-b-adress{
	width: 100%;
	height: 0px;
}
.footermenu-b-tel{
	width: 100%;
	height: 16px;
	margin-top: 0px;
	height: 18px;
}
.footer-tel{
	font-size: 23px;
	margin-left: 2px;
}
.footermenu-b-open{
	width: 100%;
	height: 12px;
}


.katsuo{
	width: 100%;
	height: auto;
	float: left;
	border: none;
}
.copy{
	width: 100%;
	border-top: solid #888888 1px;
	padding-top: 15px;
	padding-bottom: 15px;
	float: left;
	margin-top: 30px;
	font-size: 0.7em;
	line-height: 0.5em;
}

/*　　スマホ用　　　*/
@media (max-width:550px) {

/*　ハンバーガーメニュー　*/
	.btn{
		visibility:visible;
	    }
	
	.drawr {
		width: 70%;
	}
	
	.topmark {
		display: inline;
        }

/*　navメニュー　*/	
	.ace-navi-right{
		visibility: hidden;
	}
	
    .ace-logo{
	margin-top: 5px;
	width: 180px;
    }
	.ace-navi{
	height: 70px;
    }
	
/* ACEスライドショー */
	
	.slider-wrap-wrap{
		width: 100%;
	}
.slider-wrap {
  width: 100%;
  margin-left: 0%;
  margin-top: 70px;
  margin-bottom: 0px;
  aspect-ratio: 12 / 7; /* 比率はお好みで */
}
	
/* ACE文字の大きさ */
#wrap h1{
	font-size: 30px;
	margin-bottom:-20px;
	font-weight: 200;
	line-height: 38px;
}
#wrap h2 {
	font-size: 24px;
	margin-bottom:-10px; 
	line-height: 30px;
}
#wrap h3 {
	font-size: 20px;
	margin-bottom:-5px; 
	line-height: 26px;
}
#wrap h5 {
	font-size: 18px;
	margin-bottom:-10px; 
	line-height: 24px;
}
#wrap p{
		font-size: 0.9rem;
	line-height: 1.6rem;
	}
	
.index-wrap{
	width: 93%;
	padding-left: 1.5%;
		}

.ace-index-toptext{
		width: 99%;
		margin-left: 0%;
		
	}
	.ace-cont{
		width: 99%;
		margin-left: 0.5%;
	}
.ace-article{
		width: 100%;
	}


/* 注文・予約　相談のボタン　*/
.ace-mddle-btn {
	margin-top: 10px;
	margin-bottom: 40px;

	}

.btn-kau {
	width:80%;
	margin-left: 6%;
}

.btn-sodan {
	width:80%;
	margin-left: 6%;
}

.ace-info-wrap{
	width:95%;
	margin-left: 0;
	margin-bottom: 5px;
	margin-top: 5px;
}

.ace-info-day{
	width: 97%;
	margin-left: 0%;
	padding-left: 1.5%;
	padding-right: 1%;
	margin-bottom: -5px;
	height: auto;
	display: inline-block;
	text-align: start;
}

.ace-info-text{
	width: 97%;
	margin-left: 0%;
	padding-left: 1.5%;
	padding-right: 1%;
	height: auto;
	display: inline-block;
	text-align: left;
}

.ace-middle-img {
  width: 100%;
	height: 250px;
  position: relative; /* 基準になる親 */
  display: inline-block;
}
.ace-middle-img img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;   /* はみ出た部分をトリミング */
	object-position: 80% 20%;     /* 横30% 縦20%の位置を中心に */
}
.ace-middle-img-text{  
	width: 100%;
}
.ace-middle-img-text p{
	width: 120px;
	position: absolute;
  top: 150%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.syurui-wrap{
	margin-bottom: 30px;
}
.syurui-wrap img{
	margin-bottom: -30px;
}
.syurui-wrap p{
	line-height: 1.6;
}

.syurui{
	width: 95%;
}

.syurui-4{
	width: 95%;
	margin-left: 2.5%;
	margin-right: 2%;
}
.syurui-4 h3{
	margin-top: 30px;
}
.syurui-4 img{
	margin-top: 10px;
}
.kakomi-3 {
	width: 85%;
	margin-left: 3%;
	margin-right: 4.5%;
	padding: 3%;
	margin-top: 30px;
	text-align: center;
}
.kakomi-3 img{
	width: 50%;
	margin-left: 0%;
	
}
.kakomi-3 h4{
	font-size: 24px;
	line-height:32px;
	margin-bottom: -10px;
}
.kakomi-3 p{
	line-height:20px;
}


.kakomi-3-b {
	width: 92%;
	margin-left: 3.7%;
	padding: 0%;
	margin-top: 30px;
	text-align: center;
}
.kakomi-3-img{
	margin-bottom: 0px;
}
.kakomi-3-img img{
	width: 100%;
}
.kakomi-3-h{
	background-color: rgba(149,215,220,1.00);
	left: 0;
	height: 70px;
	margin-top: 0px;
	padding-top: 3px;
	padding-bottom: 3px;
	text-align: center;
	border-bottom: solid 1px #555555;
}
.kakomi-3-kikaku{
	padding-left: 20px;
	text-align: left;
}

.kakomi-3-price{
	padding-top: 7px;
	padding-bottom: 7px;
}
.kakomi-3-price h6{
	font-size: 42px;
	line-height: 30px;
}

.meyasu{
	margin-bottom: 30px;
}

.meyasu-kakomi p{
	font-size: 24px;
	margin-top: 7px;
	margin-bottom: 7px;
}
.meyasu-kakomi a{
	font-size: 12px;
	margin-top: 7px;
	margin-bottom: 7px;
}
.meyasu-kakomi-a{
	width: 100%;
	display: flex;
	margin-bottom: -10px;
}
.meyasu-kakomi-b{
	width: 100%;
	display: flex;
}

/* INDXのバナー  */
.ace-bnr-blue{
	margin-top: 0px;
	height: 530px;
}

.ace-bnr-img{
	width: 97%;
	display: inline-block;
}
.ace-bnr-text{
	width: 95%;
	margin-left: 2.5%;
	display: inline-block;
	vertical-align: top;
	font-size: 125%;
}
.ace-bnr-title {
	font-size: 42px;
	font-weight: 700;
	margin-top: 10px;
	line-height: 50px;
	text-align: justify;
}

.ace-bnr-buttom1 {
	width: 70%;
	position: absolute;
	right: 15%;
	bottom: 20px;
}
.ace-bnr-gray {
	margin-top: 0px;
	height: 580px;
    margin-top: 20px;
}
.ace-bnr-title-b {
	font-size: 42px;
	font-weight: 700;
	margin-top: 10px;
	line-height: 50px;
	text-align: justify;
}
.ace-bnr-buttom2 {
	width: 70%;
	position: absolute;
	right: 15%;
	bottom: 20px;
}
	/* サイドバー　*/
.ace-side{
	display: none;
}
.ace-article {
	width: 90%;
	margin-left: 2.5%;
	margin-right: 2.5%;
	text-align: justify;
	margin-top: 0px;
}
.ace-art-text {
	margin-bottom: 30px;
}
.ace-art-img {
	width: 100%;
}
.ace-art-img img {
	width: 100%;
}
.ace-art-img-m {
	width: 100%;
}	
	/* FAQ */
.faq{
		width: 90%;
		margin: 0 auto;
	}
.faq-wrap{
	margin-top: 20px;
}

.ace-question{
	margin-left: 4%;
	margin-right: 4%;
}

.ace-answer{
	margin-left: 4%;
	margin-right: 4%;
	margin-top: -5px;
	
}
/* END FAQ */
	
	/* ACE bottom */
.ace-bottom{
	width: 100%;
	background-color: #ffffff;
}
.ace-bottom h2 {
	font-size: 32px;
	margin-bottom:-18px; 
}
.ace-bottom h3 {
	font-size: 24px;
	margin-bottom:-15px; 
}
.ace-bottom h5 {
	font-size: 20px;
	margin-bottom:-15px; 
}
.blueback-wrap {
	width: 100%;
	height: auto;
	background-color: rgba(0,168,206,1.00);
}
.whiteback-wrap {
	width: 100%;
	height: auto;
	background-color: #ffffff;
}


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

.ace-haitatsu-kanou{
	width: 95%;
	height: auto;
	margin-left: 2.5%;
	padding-bottom: 50px;
	display: inline-block;
}
.haitatsu_text{
	width: 97%;
	margin-left: 0%;
	margin-right: 2%;
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 20px;
	}
.haitatsu_text img{
	width: 100%;
	margin-top: 30px;
}
.ace-kuwasiku {
	float: right;
	margin-right: 2%;
	font-size: 18px;
}
.haitatsu_img {
	width: 95%;
	margin-left: 1.5%;
	margin-top: -10px;
	
}
.haitatsu_img img {
	width: 100%;
	vertical-align: bottom;
	
}

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

.ace-uketori{
	width: 95%;
	height: auto;
	margin-left: 2.5%;
	padding-bottom: 50px;
}
.ace-uketori-hoho{
	width: 97%;
	margin-left: 1.5%;
	margin-right: 1%;
	margin-top: 25px;
	display: inline-block;
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 20px;
	border-bottom: solid 1px #777777;
	}
.ace-uketori-basyo{
	width: 97%;
	margin-left: 1.5%;
	margin-right: 1%;
	margin-top: 25px;
	display: inline-block;
	padding-left: 0;
	padding-right: 0;
	}
.ace-uketori-h {
	width: 100%;
	height: auto;
	padding-left: 0;
	padding-right: 0;
}
.hoho-img {
	width: 40%;
	margin-left: 29%;
	height: auto;
}
.hoho-img img {
	width: 100%;
	margin-top: 20px;
}
.hoho-text {
	width: 100%;
	height: auto;
	margin-left: 0%;
	margin-right: 0%;
	margin-top: -20px;
}


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

.ace-order{
	width: 90%;
	margin-left: 4.5%;
	padding-bottom: 50px;
}
	
.ace-order-ac-wrap {
  display: inline-block;
}
.ace-order-tittle-text {
	width: 90%;
}
.ace-order-tittle-img {
	width: 90%;
}
.ace-order-tittle-img img {
	margin-top: 0px;
}
.ace-order-a {
	width: 90%;
	height: auto;
	margin-left: 1.5%;
	margin-right: 1%;
	margin-top: 20px;
	padding-left: 4%;
	padding-right: 3%;
	padding-bottom: 0px;
}
.ace-order-a img{
	width: 30px;
	margin-right: 5px;
	
}
 .ace-order-a a{
	font-size: 26px;
	font-weight: 700;
	color:  rgba(0,80,166,1.00);
}

.ace-order-a-sub{
	width: 100%;
	height: auto;
}
.ace-order-btn{
	width: 100%;
	padding-top: 0px;
}
.ace-order-btn img{
	width: 40%;
	margin-left: 29%;
}

.ace-order-side {
	width: 100%;
	margin-left: 0px;
	
}
.ace-order-b {
	width: 90%;
	margin-top: 20px;
	padding-left: 4%;
	padding-right: 3%;
}
	/*-------本文内-------*/
.ace-order-cont{	
	width: 90%;
	margin-left: 0%;
	padding-left: 5%;
	margin-bottom: 20px;
	padding-bottom: 20px;
	margin-top: 30px;
	display: inline-block;
	padding-top:0px;
}

/*-------END 本文内-------*/


/*-----------------------------end*/




.ace-bottom-inq-wrap h4 {
	font-size: 20px;
	line-height: 26px;
}
.ace-bottom-inq-wrap h5 {
	font-size: 18px;
	font-weight: 700;
	line-height: 5px;
	margin-top: 30px;
}
	.ace-bottom-inq{
		width: 95%;
		margin-left: 2.5%;
	}
	.ace-bottom-inq h4{
		padding-bottom: 10px;
		margin-top: 15px;
	}
	
.komoji{
	font-size: 14px;
	line-height: 18px;
	display: inline-block;
	margin-top: 10px;
}
.ace-bottom-inq-tel img{
	width: 25px;
}
.telnumber{
		font-size: 28px;
	margin-top: 24px;
	}
.ace-bottom-inq-mail {
	width: 100%;
}
.ace-bottom-inq-mail img{
	width: 35px;
	margin-right: 5px;
}

.footmenu-b-wrap {
	padding-bottom: 10px;
	padding-top: 13px;
}
.footmenu-b {
	width: 90%;
}
.footermenu-b-img{
	width: 260px;
}
.footermenu-b-img img{
	margin-bottom: -20px;
}
.footermenu-b-txt{
	width: 90%;
	text-align: center;
}
.footermenu-b-open{
	height: 14px;
}
	
	
	
	.footlogo{
	width: 80%;
	margin-left: 10%;
	}
	.footlink{
	width: 90%;
	margin-left: 5%;
	margin-top: 20px;
	margin-bottom: 40px;
	border-right:none;
	text-align: center;
	}
	.foot_adress{
	width: 90%;
	margin-left: 5%;
		line-height: 1.2em;
	}
	.foot_adress img{
		width: 60%;
	}
	.copy{
		line-height: 1em;
		width: 90%;
		padding-left: 5%;
		padding-right: 5%;
	}
}

@media (min-width:551px) and (max-width:1250px){


	
	/*　ハンバーガーメニュー　*/	
	.btn{
		visibility:visible;
	}
	.drawr {
		width: 40%;
	}
	.topmark{
		display:inline-block;
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	#leftside{
		display: none;
	}
	#rightside{
		width: 100%;
	}
	
	/*　navメニュー　*/	
	.ace-navi-right{
		visibility: hidden;
	}
	
	/*　サイドバー　*/	
.ace-side{
	display: none;
}
.ace-article {
	width: 90%;
	margin-left: 2.5%;
	margin-right: 2.5%;
	text-align: justify;
	margin-top: 0px;
}
	/* INDX */
.ace-middle-img{
	height: 250px;
}
.ace-middle-img img{
	height: 250px;
}

.syurui-wrap{
	width: 100%;
}
.syurui{
	width: 31%;
	margin-left: 1%;
	margin-right: 0.8%;
	vertical-align: top;
}
.syurui h5{
	margin-top: 0px;
}

.syurui-4{
	width: 22%;
	padding-left: 0.5%;
	padding-right: 0.5%;
	height: 420px;
	vertical-align: top;
}
.kakomi-3{
	width: 27%;
	margin-left: 0.3%;
	margin-right: 1%;
	height: 300px;
	vertical-align: top;
}
.kakomi-3-b{
	width: 31%;
	margin-left: 0.3%;
	margin-right: 1%;
	height: 320px;
	vertical-align: top;
}
.kakomi-3-h h4{
	font-size: 80%;
}
.kakomi-3-price h6{
	font-size: 32px;
}
	/* INDXのバナー  */
.ace-bnr-blue{
	width: 100%;
	position: relative;
	background-color:rgba(0,168,206,1.00) ;
	border-radius: 20px;
	color: #fff;
	text-align: start;
	display: inline-block;
    font-size: initial;
	margin-top: 30px;
}

.ace-bnr-img{
	width: 40%;
	display: inline-block;
}
.ace-bnr-img img{
	width: 100%;
	border-radius: 18px;
	margin-top: 7px;
	margin-left: 1.5%;
}
.ace-bnr-text{
	width: 55%;
	margin-left: 2.5%;
	margin-bottom: 20px;
	display: inline-block;
	vertical-align: top;
	font-size: 125%;
}
.ace-bnr-title {
	font-size: 50px;
	font-weight: 700;
	margin-top: 35px;
	line-height: 55px;
}

.ace-bnr-buttom1 {
	visibility: hidden;
}
.ace-bnr-gray {
	width: 100%;
	position: relative;
	background-color:#E2E2E2;
	border-radius: 20px;
	color: #555555;
	text-align: start;
	display: inline-block;
    font-size: initial;
	margin-top: 50px;
}
.ace-bnr-title-b {
	font-size: 50px;
	font-weight: 700;
	margin-top: 35px;
	color: #000000;
	line-height: 55px;
}


.ace-bnr-buttom2 {
visibility: hidden;
}

	
    .ace-logo{
	margin-top: 5px;
	width: 200px;
    }
	.ace-navi{
	height: 70px;
    }
	/* ACE お知らせ  */
.ace-info-wrap{
	width:100%;
}

	/*sustainable seafood*/
	
	.ssf-toppict{
	margin-top: 75px;
}
	


	
/*　　下の帯　　*/
.middle {
	margin-top: 50px;
	height: 200px;
}
.middle img{
		height: 200px;
	}
.middle2 {
	height: 300px;
	margin-bottom: 30px;
}
.middle2 img{
		height: 300px;
	}
	

	
	/* ACE bottom */
.ace-bottom{
	width: 100%;
	background-color: #ffffff;
}
.ace-bottom h2 {
	font-size: 32px;
	margin-bottom:-18px; 
}
.ace-bottom h3 {
	font-size: 24px;
	margin-bottom:-15px; 
}
.ace-bottom h5 {
	font-size: 20px;
	margin-bottom:-15px; 
}
.blueback-wrap {
	width: 100%;
	height: auto;
	background-color: rgba(0,168,206,1.00);
}
.whiteback-wrap {
	width: 100%;
	height: auto;
	background-color: #ffffff;
}


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

.ace-haitatsu-kanou{
	width: 95%;
	margin-left: 2.5%;
	padding-bottom: 30px;
	padding-top: 5px;
	display: inline-block;
}
.haitatsu_text{
	width: 97%;
	margin-right: 0%;
	padding-right: 0%;
	}
.haitatsu_text img{
	width: 70%;
	margin-left: 14%;
}
.ace-kuwasiku {
	font-size: 20px;
}
.haitatsu_img {
	width: 40%;
	margin-left: 29%;
	margin-top: 20px;
}

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

.ace-uketori {
	width: 95%;
	margin-left: 2.5%;
	padding-bottom: 30px;
	padding-top: 5px;
}
.ace-uketori-hoho{
	width: 97%;
	margin-right: 0%;
	padding-right: 1.5%;
	margin-top: 25px;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 20px;
	}
.ace-uketori-basyo{
	width: 97%;
	margin-left: 2%;
	margin-right: 0%;
	margin-top: 25px;
	padding-left: 0px;
	padding-right: 0px;
	}
.ace-uketori-h {
	width: 47%;
	height: auto;
	padding-left: 1%;
	padding-right: 1%;
	display: inline-block;
	vertical-align: top;
}
.ace-uketori-h a{
	font-size: 24px;
	line-height: 24px;
}
.hoho-img {
	width: 150px;
}
.hoho-text {
	width: 96%;
	margin-left: 2%;
	margin-right: 1%;
}
.ace-uketori-logo{
	padding-top: 50px;
	margin-bottom: -30px;
	width: 260px;
}
.ace-uketori-logo img{
	width: 100%;
}

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

.ace-order{
	width: 95%;
	margin-left: 2.5%;
	padding-bottom: 30px;
	padding-top: 5px;
}

.ace-order-tittle-text {
	width: 55%;
}
.ace-order-tittle-img {
	width: 210px;
	float: right;
}
.ace-order-tittle-img img {
	width: 100%;
}
.ace-order-ac-wrap {
	width: 100%;
  display: flex;
}
.ace-order-a{
	width: 45%;
	height: auto;
	padding-left: 1%;
	padding-right: 1%;
	display: inline-block;
	vertical-align: top;
	
}
.ace-order-a img{
	width: 22px;
	
}
 .ace-order-a a{
	font-size: 28px;
}
	.ace-order-a h3{
		line-height: 24px;
		margin-top: 15px;
	}
	.ace-order-a p{
		margin-top: 25px;
	}

.ace-order-a-sub{
	width: 100%;
	height: auto
}
.ace-order-btn{
	width: 150px;
	padding-top: 5px;
}
.ace-order-btn img{
	width: 100%;
}

.ace-order-side {
	display: inline-block;
	width: 100%;
	margin-left: 0px;
	line-height: 1.4;
	margin-top: -25px;
	
}
.ace-order-b {
	width: 95%;
	margin-left: 1.5%;
	margin-right: 1%;
	margin-top: 25px;
	padding-left: 1%;
	padding-right: 1%;
}
	.ace-order-b h3{
		line-height: 24px;
		margin-top: 15px;
	}
	.ace-order-b p{
		margin-top: 25px;
	}


/*-----------------------------end*/

.footmenu-b-wrap {
	padding-bottom: 10px;
	padding-top: 13px;
}
.footmenu-b {
	width: 90%;
}
.footermenu-b-img{
	width: 260px;
}
.footermenu-b-img img{
	margin-bottom: -20px;
}
.footermenu-b-txt{
	width: 90%;
	text-align: center;
}
.footermenu-b-open{
	height: 14px;
}




	
	.footlogo{
	width: 32%;
	margin-left: 1%;
	margin-bottom: 20px;
	}
	.footlink{
	width: 95%;
	border-right: none;
	text-align: center;
	}
	.footlink img{
		width:  5%;
		margin-bottom: 30px;
	}
	.foot_adress{
	width: 100%;
	}
	.foot_adress img{
		width: 25%;
	}


}