﻿@charset "UTF-8";

/*=============================
		共通
=============================*/
body {
	-webkit-text-size-adjust: 100%;/* スマホレイアウト防止 */
	margin: 0px;
	padding: 0px;
	color:#313131;
	-webkit-font-smoothing: antialiased;
	font-family: "Sawarabi Mincho";
}
img{max-width: 100%;
	height:auto;
	}
.center{text-align: center;}
	
li img,dt img,dd img{vertical-align:bottom;}/* 隙間をなくす */

html, body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}


/* box ------------------*/
.box{
	width: 90%;
	max-width:1000px;
	margin:0 auto;
	overflow:hidden;
	box-sizing: border-box;
}
.box2{
	width: 90%;
	max-width:800px;
	margin:0 auto;
	overflow:hidden;
	box-sizing: border-box;
}
/* フェードイン ------------------*/
.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}

/* PC表示・SP表示  ------------------*/
.pc { }
.sp { display:none;}
@media screen and (max-width: 600px) {
.pc{ display:none;}
.sp {display:block; }
}
/* ホバー  ------------------*/
.hover:hover{
	opacity:0.7;
	filter: alpha(opacity=70);
	transition-duration: 0.3s;
}
.hover2{background: #000;}
.hover2 img:hover{
	opacity: 0.9;	/* 小さくするほど暗くなります */
	transition-duration: 0.3s;
	padding:0px;
}
/*=============================
		リンク
=============================*/
a{ outline: none;}
a:link,
a:visited {
	color: #ad8a64;
	font-weight: normal;
}
a:hover,
a:active {
	text-decoration: none;
	color: #7C7C7C;
}
a img {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}

/*=============================
		header
=============================*/
header{width: 100%;}

.logo_menu{
	position: fixed;
	width: 100%;
	top: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 100;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 0px;
}
.logo{
	width: 30%;
	max-width: 170px;
	padding: 10px 0px 10px 50px;
}
.logo img{
	display: block;
}

.logo_pc{display: block;}
.logo_sp{display: none;}

.top_menu{width: 70%;}


@media screen and (max-width: 1000px) {
.logo_menu{
	top: 0px;
	background-color: #fff;
	padding-bottom: 15px;
}
.logo{
	width: 40%;
	max-width: 150px;
	padding: 10px 0px 0px 30px;
	margin: 0px;
}
.logo_pc{display: none;}
.logo_sp{display: block;}


.nav_tel{
	display: block;
	font-size: 18px;
	line-height: 200%;
	padding: 50px 0px 0px;
}
.nav_tel img{
	padding-top: 10px;
}
}

/*=============================
		top video
=============================*/
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleY(1.4);
  display: block;
  box-sizing: border-box;
}

@media screen and (max-width: 1000px) {
.video-wrapper {
    margin-top: 80px; /* ← 好きな値に調整 */
    }
}

@media screen and (max-width: 800px) {
.video-wrapper {
	aspect-ratio: 1 / 1; /* 正方形に近くなるよう調整 */
}
}


/*=============================
		topスクロールボタンの指定
=============================*/
.scroll{
  position: absolute;
  width: 100%;
  bottom: 30px;
  text-align: center;
  }
.scroll a{
    position: relative;
    display: inline-block;
    font-size: 16px;
	letter-spacing: 1px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    padding: 0 0 50px;
	}
.scroll :before{/*矢印を作成する*/	
      content: "";
      position: absolute;
      width: 10px;
      height: 10px;
      left: 0;
      right: 0;
      bottom: 25px;
      margin: auto;
      border-bottom: 2px solid #fff;
      border-right: 2px solid #fff;
      transform: rotate(45deg);
      animation: move 2s infinite;
    }

@keyframes move {/*矢印をアニメーションする*/
  0% {
    transform: rotate(45deg) translate(0, 0);
  }
  20% {
    transform: rotate(45deg) translate(10px, 10px);
  }
  40% {
    transform: rotate(45deg) translate(0, 0);
  }
}

@media screen and (max-width: 1000px) {
	.scroll{display: none;}
}

/*=============================
		footer
=============================*/
footer{
	width: 100%;
	background: #000;
}
.f_logo{
	text-align:center;
	margin: 0px auto;
	padding-top: 80px;
	}
.f_logo img{
	max-width: 200px;
	width: 30%;
}
.copy{
	text-align:center;
	color:#FFF;
	font-size:11px;
	padding:20px;
	font-family: "M PLUS 1p";
}
@media screen and (max-width:800px){
.f_logo{
	padding-top: 30px;
	}
.copy{
	font-size:9px;
	padding:20px;
}
}



/*fooder_menu（もくじ）-----------*/
ul.f_menu{
	margin-top:20px;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
}
ul.f_menu li{
	text-align:center;
	font-size: 12px;
	line-height:130%;
	padding:0px 10px;
}
ul.f_menu li i{padding-right: 5px;}

ul.f_menu li a:link,
ul.f_menu li a:visited,
ul.f_menu li a:hover,
ul.f_menu li a:active {
	color:#FFF;
	text-decoration:none;
}
@media screen and (max-width: 600px) {
	ul.f_menu{display:none;}
}


/*=============================
		BG
=============================*/
.bg_space{padding: 70px 0px;}
.bg1{
	padding: 150px 0px 150px;
}

@media screen and (max-width: 1000px) {
.bg1{
	padding: 80px 0px 120px;
}
}

@media screen and (max-width: 600px) {
.bg_space{padding: 50px 0px;}
.bg1{
	padding: 50px 0px 80px;
}
}

/*=============================
		文字
=============================*/
.S{
	font-size:15px;
	line-height: 170%;
}
.M{
	font-size:18px;
	line-height: 130%;
	margin-bottom: 5px;
	color:#7b6433
}
.L{
	font-size: 25px;
	line-height: 150%;
	font-weight: 800;
	text-align: center;
	color:#633922;
	margin-bottom: 20px;
}
.red{color:#d5115f;font-weight: bold;}
.pink{color:#ec5d6f;}
.white{color:#FFF;}
.marker{background: linear-gradient(transparent 0%, #ffff66 0%);}
.sen{background: linear-gradient(transparent 60%, #FFFA7E 0%);}

@media screen and (max-width: 600px) {/*PC*/
.S{font-size:13px;line-height: 150%;}
.M{font-size:15px;line-height: 150%;}
.L{font-size:20px;line-height: 150%;}
}
/*=============================
		title
=============================*/
.title1{
	font-size: 28px;
	font-family: "Sawarabi Mincho";
	margin-bottom: 5px;
}
.title1 span{font-size: 20px;}
.title_img{
	max-width: 400px;
	width: 40%;
	margin: 0px 0px 30px;
}
@media screen and (max-width: 700px) {
.title1{font-size: 25px;}
.title1 span{font-size: 18px;}

.title_img{width: 60%;}
}
@media screen and (max-width: 500px) {
.title1{font-size: 20px;}
.title1 span{font-size: 16px;}
.title_img{width: 60%;}
}


/*=============================
		PT ページタイトル
=============================*/

.pt{
	background:url("../img/base/bg4.jpeg") no-repeat center center;
	background-size: cover; /*画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	padding: 200px 0px 200px; /*背景画像の高さを確保*/
	position: relative; /*中の要素の基準値*/
}
.pt2{
	background:url("../img/base/bg3.jpeg") no-repeat center center;
	background-size: cover; /*画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	padding: 200px 0px 200px; /*背景画像の高さを確保*/
	position: relative; /*中の要素の基準値*/
}
.pt3{
	background:url("../img/base/bg5.jpeg") no-repeat center center;
	background-size: cover; /*画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	padding: 200px 0px 200px; /*背景画像の高さを確保*/
	position: relative; /*中の要素の基準値*/
}
.pt4{
	background:url("../img/base/bg2.jpeg") no-repeat center center;
	background-size: cover; /*画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	padding: 200px 0px 200px; /*背景画像の高さを確保*/
	position: relative; /*中の要素の基準値*/
}
.pt:before,
.pt2:before,
.pt3:before,
.pt4:before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.3); /*半透明のフィルターをかける*/
}
.pt-inner {
  text-align: center;
  position: absolute;
  width: 100%;
}
.pt-inner h1{
	color: #bf9456;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	font-size: 45px;
	line-height: 160%;
}
.pt-inner p{
	color: #bf9456;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	font-size: 20px;
	line-height: 160%;
}

@media screen and (max-width: 600px) {
.pt,.pt2,.pt3,.pt4{
	padding: 150px 0px 120px; /*背景画像の高さを確保*/
	background-attachment: scroll;
}
.pt-inner h1{font-size: 30px;}
.pt-inner p{font-size: 18px;}
}

/*=============================
	配置
=============================*/
.m10{margin:10px;}
.m20{margin:20px;}

.mb10{margin-bottom:10px;}
.mb20{margin-bottom:20px;}
.mb30{margin-bottom:30px;}
.mb50{margin-bottom:50px;}
.mtb20{margin:20px 0px;}
.mt20{margin-top:20px;}


/*=============================
		ページTOPボタン
=============================*/
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 5%;
  bottom: 5%;
  background: #ce9e47;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/*=============================
		ボタン
=============================*/

.btn1{
	background-color:#502b13;
	padding: 0.7em 2em;
	display: inline-block;
	text-decoration: none;
	font-size:16px;
	line-height: 130%;
	color:#FFF;
}
.btn1:link,
.btn1:visited {
	color:#FFF;
	background-color: #ad8a64;
	font-weight: normal;
	text-decoration: none;
}
.btn1 a:link,
.btn1 a:visited {
	color:#FFF;
	text-decoration: none;
}
.btn1:hover,
.btn1:active {
	text-decoration: none;
	background-color:#000;
}
.btn1 i{padding-left: 7px;}

@media screen and (max-width: 600px) {
.btn1{font-size:14px;}
}

/*=============================
		table
=============================*/
table.type01 {
	width:100%;
	border-collapse: separate;
	border-spacing: 0;
	text-align: left;
	background-color:#FFFFFF;
    font-size:15px;
	line-height:140%;
	margin: 0px auto 10px;
	border-top: solid 1px #f1e6d2;
	border-right: solid 1px #f1e6d2;
	border-left: solid 1px #f1e6d2;
}
table.type01 th {
	padding: 10px 10px;
	background: #F9F7F0;
	vertical-align:middle;
	text-align:center;
	border-bottom: solid 1px #f1e6d2;
	color: #000;
}
table.type01 td {
	padding: 5px 10px;
	vertical-align:middle;
	border-bottom: solid 1px #f1e6d2;
}
table.type01 th img{width:100%}
table.type01 td img{width:100%}

.nowrap{white-space: nowrap;}
.table_w80{
	max-width: 800px;
	margin: 0 auto !important;
}
.table_txt{
	font-size: 16px;
	padding: 0px 10px 10px;
}
@media screen and (max-width: 600px) {
table.type01{font-size:11px;}
table.type01 th {padding: 5px;}
table.type01 td {padding: 5px;}
}

/*=============================
		top
=============================*/
/* スペース画像 -------------------------------------------*/
.ms1{
	background:url("../img/base/bg1.jpeg") no-repeat center center;
	background-size: cover;/* 画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	width: 100%;
	padding: 100px 0px;
}
.ms2{
	background:url("../vegas/slider2.jpg") no-repeat center center;
	background-size: cover;/* 画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	height: 500px;
	width: 100%;
}
.ms3{
	background:url("../img/ms3.jpg") no-repeat center center;
	background-size: cover;/* 画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
	height: 350px;
	width: 100%;
}
@media screen and (max-width: 800px) {
.ms1{
	background-attachment: scroll;
	padding: 100px 0px;
	}
.ms2{
	height: 200px;
	background-attachment: scroll;
	}
.ms3{
	height: 200px;
	background-attachment: scroll;
	}
}





/* 共通タイトル（白） --------------------------------------------------*/

.top_title{
	text-align: center;
	margin-bottom: 50px;
}
.top_title h2{
	font-size: 50px;
	line-height: 100%;
	letter-spacing: 2px;
	color: #FFF;
	padding-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
.top_title h3{
	font-size: 20px;
	text-align: center;
	display: inline-block;
	border-top: solid 2px #FFF;
	margin: 0 auto;
	padding: 20px 40px;
	color: #FFF;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 600px) {
.top_title{
	text-align: center;
	margin-bottom: 20px;
}
.top_title h2{
	font-size: 30px;
	padding-bottom: 15px;
	letter-spacing: 0px;
}
.top_title h3{
	font-size: 18px;
	padding: 15px 40px;
}
}

/* 共通タイトル（黒） --------------------------------------------------*/

.top_title2{
	text-align: center;
	margin-bottom: 50px;
}
.top_title2 h2{
	font-size: 50px;
	line-height: 100%;
	letter-spacing: 2px;
	color: #000;
	padding-bottom: 20px;
}
.top_title2 h3{
	font-size: 20px;
	text-align: center;
	display: inline-block;
	border-top: solid 2px #000;
	margin: 0 auto;
	padding: 20px 40px;
	color: #000;
}
@media screen and (max-width: 600px) {
.top_title2{
	text-align: center;
	margin-bottom: 20px;
}
.top_title2 h2{
	font-size: 30px;
	padding-bottom: 15px;
	letter-spacing: 0px;
}
.top_title2 h3{
	font-size: 18px;
	padding: 15px 40px;
}
}


/* TOPあいさつ --------------------------------------------------*/
.top_info{
	max-width: 1200px;
	height: 600px;
	width: 90%;
	margin: 200px auto 200px;
	background: url("../img/top/img3.jpg") right top/cover no-repeat;
	background-size: 65%;
}
.top_info_txt{
	padding: 50px 0px 0px;
	width: 45%;
	z-index: 10;
}
.top_info_txt h2{
	font-size: 40px;
	padding-left: 40px;
	margin-bottom: 30px;
}
.top_info_txt p{
	font-size: 17px;
	line-height: 200%;
	background-color:rgba( 255, 255, 255, 0.85 );
	padding: 40px 40px 30px;
}
.info_sp{display: none;}

@media screen and (max-width: 1100px) {
.top_info{
	height: 800px;
	background: none;
}
.info_sp{display: block;}
.top_info_txt{
	padding: 30px 0px 0px;
	width: 90%;
	margin: 0 auto;
	z-index: 10;
}
.top_info_txt h2{
	font-size: 30px;
	padding-left: 40px;
	margin-bottom: 10px;
}
.top_info_txt p{
	font-size: 16px;
	line-height: 200%;
}
}

@media screen and (max-width: 1000px) {
.top_info{height: 700px;}
}

@media screen and (max-width: 600px) {
.top_info{
	height: 500px;
	margin: 100px auto 100px;
	background: none;
}
.top_info_txt{
	padding: 10px 0px 0px;
	width: 100%;
	margin: 0 auto;
	z-index: 10;
}
.top_info_txt h2{
	font-size: 25px;
	padding-left: 20px;
	margin-bottom: 0px;
}
.top_info_txt p{
	font-size: 14px;
	line-height: 180%;
	padding: 20px;
}
}


/*smoothスライダー-------------------------------------------*/
#smooth{
	width: 100%;
}
#makeMeScrollable { 
	width:100%;
	position: relative; 
	}
#makeMeScrollable p{
	position: relative;
	 width:350px;
	 margin:10px;
	 float: left;
	 padding: 0;
}
#makeMeScrollable div.scrollableArea img {
	object-fit: cover; /*トリミング*/
	width: 100%;
	aspect-ratio: 2 / 1.5;
	 }

@media screen and (max-width: 800px) {
#makeMeScrollable p{
	width:250px;
}
}
@media screen and (max-width: 600px) {
#makeMeScrollable p{
	width:200px;
}
}


/* サロン情報 -------------------------------------------*/
.salon{
	display: flex;
}
.salon_txt{
	width: 50%;
	background: #f9f9f9;
}
.salon_txt_in{
	max-width: 500px;
	width: 90%;
	padding: 80px 0px 50px;
	margin: 0 auto;
}
.salon_txt_in p{
	font-size: 16px;
	color: #49484d;
	padding: 10px 0px;
	text-align: center;
}
.salon_logo{
	max-width: 200px;
	margin: 0 auto 20px;
}
.salon_map{width: 50%;height: 600px;}

@media screen and (max-width: 1000px) {
.salon{flex-wrap: wrap;}
.salon_txt{width: 100%;}
.salon_map{width: 100%;}
}
@media screen and (max-width: 700px) {
.salon_txt_in p{
	font-size: 12px;
	font-family: "M PLUS 1p";
	color: #2e2d33;
	padding: 10px 0px;
	text-align: center;
}
}
@media screen and (max-width: 500px) {
.salon_logo{max-width: 160px;}
.salon_map{height: 300px;}
}

/* MAP -------------------------------------------*/
.ggmap {
	position: relative;
	width: 100%; /* 幅を100%に設定 */
	height: 100%; /* 高さも親要素に依存 */
	margin: 0 auto; /* 中央揃え（任意） */
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%; /* 親要素の幅にフィット */
	height: 100%; /* 親要素の高さにフィット */
	border: 0;
}


/* TOｐバナー -------------------------------------------*/
ul.top_baner{
	display: flex;
	justify-content: space-around;
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
}
ul.top_baner li{
	width: 48%;
}
@media screen and (max-width: 800px) {
ul.top_baner{
	flex-wrap: wrap;
}
ul.top_baner li{
	width: 108%;
	margin: 10px 0px;
}
}


/* top_btn -------------------------------------------*/
.top_btn{
	max-width: 1200px;
	height: 350px;
	width: 90%;
	margin: 0 auto 80px;
	background: url("../img/top/btn1.jpg") left top/cover no-repeat;
	background-size: 70%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}
.top_btn_txt{
	text-align: right;
}
.top_btn_txt h2{
	color: #bf9456;
	font-size: 50px;
	margin-left: -150px;
}
.top_btn_txt p{
	color: #bf9456;
	font-size: 20px;
	margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
.top_btn{
	height: 300px;
	background-size: 100%;
	align-items: end;
	justify-content: center;
}
.top_btn_txt{
	width: 90%;
}
.top_btn_txt h2{
	font-size: 40px;
	line-height: 150%;
	margin-left: 0px;
}
.top_btn_txt p{
	font-size: 18px;
	margin-bottom: 10px;
}
}
@media screen and (max-width: 600px) {
.top_btn{height: 250px;margin: 0 auto 50px;}
.top_btn_txt h2{font-size: 30px;}
.top_btn_txt p{font-size: 18px;}
}
@media screen and (max-width: 500px) {
.top_btn{height: 200px;}
}

/* top_btn2 -------------------------------------------*/
.top_btn2{
	max-width: 1200px;
	height: 350px;
	width: 90%;
	margin: 0 auto 200px;
	background: url("../img/top/btn2.jpg") right top/cover no-repeat;
	background-size: 70%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.top_btn2_txt{text-align: left;}
.top_btn2_txt h2{
	color: #bf9456;
	font-size: 50px;
	white-space: nowrap;
	margin-right: -150px;
	z-index: 100;
}
.top_btn2_txt p{
	color: #bf9456;
	font-size: 20px;
	margin-bottom: 20px;
}

@media screen and (max-width: 800px) {
.top_btn2{
	height: 300px;
	background-size: 100%;
	align-items: end;
	justify-content: center;
}
.top_btn2_txt{width: 90%;}
.top_btn2_txt h2{
	font-size: 40px;
	line-height: 150%;
	margin-left: 0px;
}
.top_btn2_txt p{
	font-size: 18px;
	margin-bottom: 10px;
}
}
@media screen and (max-width: 600px) {
.top_btn2{
	height: 250px;
	margin: 0 auto 100px;
}
.top_btn2_txt h2{font-size: 30px;}
.top_btn2_txt p{font-size: 18px;}
}
@media screen and (max-width: 500px) {
.top_btn2{height: 200px;}
}


/* menuページ -------------------------------------------*/
ul.menu{
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
}
ul.menu li{
	margin: 0px auto 20px;
}


/* スタッフ紹介ページ -------------------------------------------*/
.greeting{
	max-width: 800px;
	width: 80%;
	margin: 0 auto 100px;
}
.greeting p{
	text-align: center;
	font-size: 15px;
	line-height: 250%;
}
@media screen and (max-width: 600px) {
.greeting{
	margin: 0 auto 60px;
}
.greeting p{
	font-size: 13px;
	line-height: 180%;
	text-align: left;
}
}


/* プロフィール -------------------------------------------*/
.profile_box{
	background: #f9f9f9;
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
	padding: 5%;
	display: flex;
	justify-content: space-around;
	box-sizing: border-box;
}
.profile_img{width: 30%;}
.profile_txt{width: 50%;}
table.staff_t {
	font-size: 15px;
	margin: 0 auto;
}
table.staff_t th{
	padding: 10px;
	border-bottom: 1px dashed #cccccc;
	white-space: nowrap;
}
table.staff_t td{
	padding: 10px;
	border-bottom: 1px dashed #cccccc;
	
}

@media screen and (max-width: 800px) {
.profile_box{
	flex-wrap: wrap;
	padding: 10% 5%;
	display: flex;
	justify-content: space-around;
	box-sizing: border-box;
}
.profile_img{width: 60%;margin-bottom: 30px;}
.profile_txt{width: 100%;}
table.staff_t {font-size: 12px;}
}


/* インスタグラム -------------------------------------------*/
.insta{
	margin: 50px auto 0px;
	width: 90%;
	max-width: 800px;
}


/* ギャラりー-------------------------------------------*/
ul.gallery{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1400px;
	width: 90%;
	margin: 0 auto;
}
ul.gallery li{
	margin: 1%;
	width: 20%;;
	background: #ffff;
	font-size: 12px;
	line-height: 120%;
	aspect-ratio: 9 / 13; /* 縦横比を指定 */
	overflow: hidden;     /* はみ出た部分を非表示に */
	margin-bottom: 5px;
}
ul.gallery li img{
	width: 100%;
	height: 100%;
	object-fit: cover;     /* 中央トリミング */
	display: block;
}

@media screen and (max-width: 800px) {
ul.gallery li{
	margin: 1.5%;
	width: 30%;
	font-size: 10px;
}

}

.member{
	margin: 30px auto 0px;
	max-width: 700px;
	width: 90%;
}