@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');

/* ▼Shippori Mincho B1 */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap');

:root {
  --font-sub: 'Shippori Mincho B1', serif;
  --font-gothic: 'NotoSans', 'Noto Sans JP', sans-serif;
  --font-mincho: 'Noto Serif JP', serif;
  --font-color: #111111;
  --main-color: #bb8d00;
  --sub-color: #333333;
  --catch-color: #bb8d00;
  --common-gradient: linear-gradient(to right, var(--main-color), var(--sub-color));
  --common-shadow: 2.121px 2.121px 15px 0px rgba(241, 241, 241, 1);
}

body {
  line-height: 2;
  color: #fff;
  background-color: var(--font-color);
  font-family: var(--font-gothic);
  font-weight: 500;
  font-style: normal;
  position: relative;
  letter-spacing: 0;
}

/*display flexキッド 
=================================================*/
.flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -js-display: flex;
  display: flex;
  width: 100%;
}

/*折り返し
-----------------------*/
.flx-wrp {
  flex-wrap: wrap;
}

/*逆順
-----------------------*/
.flx-rr {
  flex-direction: row-reverse;
}

/*水平方向の揃え
=================================================*/
/*初期値
-----------------------*/
.flx-strt {
  justify-content: start;
}

/*並列で均等配置（左右隙間なし=space-between）
-----------------------*/
.flx-btw {
  justify-content: space-between;
}

/*並列で均等配置（左右隙間あり=space-around）
-----------------------*/
.flx-ard {
  justify-content: space-around;
}

/*水平揃え　末揃え
-----------------------*/
.flx-end {
  justify-content: flex-end;
}

/*水平揃え　中央揃え
-----------------------*/
.flx-center {
  justify-content: center;
}

/*垂直方向の揃え
=================================================*/
/*水平揃え　上揃え
-----------------------*/
.flx-alitem-strt {
  align-items: flex-start;
}

/*水平揃え　高さ揃え
-----------------------*/
.flx-alitem-strch {
  align-items: stretch;
}

/*水平揃え　縦・横の中央揃え
-----------------------*/
.flx-alitem-c {
  align-items: center;
}

/*水平揃え　下揃え
-----------------------*/
.flx-alitem-end {
  align-items: flex-end;
}

/*水平揃え　ベースライン揃え
-----------------------*/
.flx-alitem-base {
  align-items: baseline;
}

/*複数行にした揃え方
=================================================*/
/*初期値
-----------------------*/
.flx-alcont-strt {
  align-content: flex-start;
}

/*親要素の開始位置から配置。上揃え
-----------------------*/
.flx-alcont-strch {
  align-content: stretch;
}

/*親要素の終点から配置。下揃え
-----------------------*/
.flx-alcont-end {
  align-content: flex-end;
}

/*中央揃え
-----------------------*/
.flx-alcont-c {
  align-content: center;
}

/*最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-btw {
  align-content: space-between;
}

/*上下端にある子要素も含め、均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-ard {
  align-content: space-around;
}

/*画像トリミング設定
==========================================*/
.com-img {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: url(../img/common/no-img.jpg) no-repeat center/cover;
}

.com-img img {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  width: 100%;
  object-fit: cover;
  font-family: "object-fit: cover; object-position: bottom";
  object-position: center;
  min-height: 100%;
  min-width: 100%;
  transform: translateX(-50%) translateY(-50%);
}

/*共通テキスト
==========================================*/
.com-txt p {
  margin-bottom: 25px;
}

.com-txt p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .com-txt p br {
    display: none;
  }
}


/*
    breadcrumbs-type01
---------------------*/
.breadcrumbs {
  width: 100%;
  position: absolute;
  z-index: 10;
}
.breadcrumbs .bread_wrap {
  justify-content: flex-start;
}
.breadcrumbs li {
  position: relative;
}
.breadcrumbs li:not(:last-child)::before {
  content: ' ';
  display: block;
  border-top: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
}
.breadcrumbs li:last-child {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumbs li,
.breadcrumbs a {
  font-size: 1.2rem;
  color: #fff;
}
.breadcrumbs a {
  text-decoration: underline;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
      display: flex;
      justify-content: flex-start;
      padding: 6px 0;
  }
  .breadcrumbs .bread_wrap {
      justify-content: flex-end;
      flex-direction: row;
      width: 1080px;
      margin: 0 auto;
  }
  .breadcrumbs li {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
  }
  .breadcrumbs li:not(:last-child) {
      padding: 0 20px 0 0;
  }
  .breadcrumbs li:not(:last-child)::before {
      width: 7px;
      height: 7px;
      right: 8px;
  }
  .breadcrumbs a {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
  }
.breadcrumbs li:not(:last-child) a {
    text-align: center;
}
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
      padding: 6px 0;
  }
  .breadcrumbs::after {
      height: 20px;
      background: url(../images/common/wave01.png) repeat-x bottom / auto 70px;
  }
  .bread_wrap {
      /*width: calc(100% - 40px);*/
      max-width: unset;
      margin: 0 auto;
      padding: 0 20px;
      flex-direction: row;
  }
  .breadcrumbs li:not(:last-child) {
      padding: 0 30px 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .breadcrumbs li:not(:last-child)::before {
      width: 8px;
      height: 8px;
      right: 13px;
  }
  .breadcrumbs li:last-child {
      flex: 1;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
  }
}

.common-ttl {
  margin: 0 0 50px;
  text-align: center;
  font-style: italic;
  font-weight: 900;
  color: #fff;
}
.common-ttl .main {
  display: block;
  font-size: 40px;
}
.common-ttl .main::first-letter {
  color: var(--main-color);
}
.common-ttl .sub {
  font-size: 20px;
  color: var(--main-color);
}
@media screen and (max-width: 767px) {
  .common-ttl {
    margin: 0 0 30px;
  }
  .common-ttl .main {
    font-size: 22px;
  }
  .common-ttl .sub {
    font-size: 16px;
  }
}
/* ▼common-head */
.common-head {
  display: flex;
  width: 100%;
  padding: 12px 14px;
  border-radius: 3px;
  background-color: var(--main-color);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.12em;
}
/* .common-head::before {
  content: '';
  align-self: stretch;
  flex: 0 0 auto;
  display: inline-block;
  width: 4px;
  height: auto;
  margin: 6px 8px 5px 0;
  background-color: var(--main-color);
  border-radius: 2px;
  font-weight: 600;
} */
@media screen and (min-width: 768px) {
  .common-head {
      margin: 0 0 24px;
      font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .common-head {
      align-items: center;
      margin: 0 0 15px;
      font-size: 18px;
  }
  /* .common-head::before {
      align-self: stretch;
      height: auto;
      margin: 0 10px 0 0;
  } */
}



.common-table {
  width: 100%;
  line-height: 1.5625;
  font-weight: bold;
}

.common-table tr {
  border-bottom: 1px solid #fff;
}

.common-table tr:last-of-type {
  border-bottom: none;
}

.common-table tr th,
.common-table tr td {
  box-sizing: border-box;
}

.common-table tr th {
  padding: 15px 0 15px 40px;
  width: 180px;
  color: var(--font-color);
  background: var(--main-color);
  vertical-align: middle;
}
.common-table tr td {
  padding: 25px 50px;
  color: #fff;
  background-color: var(--font-color);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .common-table {
    font-size: 14px;
  }
  .common-table tr th {
    width: 35%;
    max-width: 150px;
    padding: 13px 15px;
  }
  .common-table tr td {
    padding: 13px 15px;
  }
}


/*
  pagenation
--------------------*/
/*▼pagenation*/
.pagenation {
  display: flex;
  justify-content: center;
  margin: 60px 0 0;
}
.pagenation li {
  width: 30px;
  line-height: 30px;
  color: #fff;
  background-color: var(--sub-color);
  font-size: 16px;
}
.pagenation a,
.pagenation span {
  display: block;
  color: #fff;
  text-align: center;
}
.pagenation li:not(.current):hover {
  opacity: .8;
}
.pagenation span {
  padding: 0 10px;
}
.pagenation li:not(:last-child) {
  margin: 0 10px 0 0;
}
.pagenation .current {
  color: #fff;
  background-color: var(--main-color);
}
@media screen and (max-width: 767px) {
  .pagenation {
    margin-top: 30px;
  }
}
/*▼page_btn*/
.page_btn {
max-width: 320px;
height: 35px;
margin: auto;
display: flex;
flex-flow: row;
align-items: center;
position: relative;
}
.page_btn li {
  max-width: 30vw;
}
.page_btn a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  max-width: 30vw;
}
.page_btn li:not(.center) a:after {
  content: ' ';
  width: 10px;
  height: 10px;
  margin: auto;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  top: 0; bottom: 0;
  transition: .3s all;
}
.prev {
margin: 0 auto 0 0;
}
.prev a {
  padding: 0 0 0 20px;
  color: #fff;
}
.prev a:after {
  left: 8px;
  transform: rotate(45deg);
}
.prev a:hover:after {
left: 3px;
}
.next {
margin: 0 0 0 auto;
}
.next a {
  padding: 0 20px 0 0;
  color: #fff;
}
.next a:after {
  right: 8px;
  transform: rotate(225deg);
}
.next a:hover:after {
right: 3px;
}
.center {
width: 142px;
margin: auto;
text-align: center;
position: absolute;
top: 0; left: 0; right: 0;
}
.center a {
color: #fff;
background-color: var(--main-color);
line-height: 2.5;
  font-weight: 500;
  box-shadow: inset 0 0 0 2px var(--main-color) , inset 0 0 0 3px #fff;
}
@media screen and (min-width: 768px) {
.page_btn {
  margin: 50px auto 30px;
}
}
@media screen and (max-width: 767px) {
.page_btn {
  margin: 30px auto;
}
}


/*
    storyMain
--------------------*/
.storyNav {
  width: 190px;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}
.storyNav-head {
  display: block;
  width: 100%;
  padding: 5px 20px;
  color: #fff;
  background-color: #4f77c8;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.storyNav-head02 {
  background-color: #fbb03b;
}
.storyNav-head03 {
  background-color: #b6b6b6;
}
.storyNav-list {
  line-height: 1;
}
.storyNav-list:not(:last-child) {
  margin-bottom: 6px;
}
.storyNav-list li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.storyNav-list li a {
  padding: 22px 0;
  position: relative;
}
.storyNav-list li a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin: 0 10px 0 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent var(--catch-color);
  vertical-align: 3px;
  transition: all .3s;
}
/* .storyNav-list li a:hover::before {
  transform: translateX(8px) rotate(45deg);
} */
/* ▼storyMain */
.storyMain_post {
}
.storyMain_post .c_ofi {
  padding-top: 67.1428%;
}
.storyMain_post .c_ofi::after {
  content: '';
  width: 30px;
  height: 30px;
  background: url(../images/common/ico_popup.jpg) no-repeat center / contain;
  position: absolute;
  bottom: 0; right: 0;
  z-index: 10;
}
.storyMain-cnt .story_post-cnt {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 14px 0 0;
}
.storyMain-cnt .storyMain_post {
  box-shadow: var(--common-shadow);
  border-radius: 10px;
}
.storyMain_post .storyMain_post-txt {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  margin: 15px 0 0;
  padding: 0 0 13px;
  border-bottom: 1px solid rgba(51,51,51, .2);
  text-align: center;
}
/* .storyMain_post .storyMain_post-txt::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 8px 0 0;
  background: url(../images/common/arrow02.png) no-repeat center / contain;
  vertical-align: -1px;
} */
.storyMain_post .story_post-tag,
.galleryDetail-ttl .story_post-tag {
  display: inline-block;
  width: auto;
  padding: 6px 9px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  border-radius: 5px;
  color: #fff;
  background-color: var(--main-color);
}
.storyMain_post .common-btn {
  max-width: none;
  margin-top: 17px;
}
@media screen and (min-width: 768px) {
  .storyMain-cnt {
      width: 100%;
  }
  .storyMain-cnt .story_cnt {
      justify-content: flex-start;
  }
  .storyMain-cnt li {
      width: 350px;
  }
  .storyMain-cnt li:not(:nth-child(3n)) {
      margin-right: 15px;
  }
  .storyMain-cnt li:nth-child(n+4) {
      margin-top: 60px;
  }
  .storyMain_post {
      padding: 15px;
  }
  .storyMain_post time {
      display: block;
      margin: 0 0 4px;
      color: #bfbfbf;
      line-height: 1;
      font-size: 1.4rem;
  }
  .storyMain_post .story_post-tag,
  .galleryDetail-ttl .story_post-tag {
      margin: 0 10px 6px 0;
  }
  .storyMain_post .storyMain_post-txt {
      display: block;
      width: 100%;
      font-size: 1.9rem;
      font-weight: 600;
      line-height: 1.4737;
      letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 767px) {
  .storyNav {
      width: 100%;
  }
  .storyMain-cnt {
      width: 100%;
  }
  .storyMain-cnt li {
      width: 100%;
  }
  .storyMain_post {
      padding: 15px;
  }
  .storyMain_post:nth-child(n+2) {
      margin-top: 25px;
  }
  .storyMain-cnt .story_post-cnt {
      background-color: #fff;
  }
  .storyMain_post time {
      display: block;
      margin: 0 0 4px;
      color: #bfbfbf;
      line-height: 1;
      font-size: 1.3rem;
  }
  .storyMain_post .story_post-tag,
  .galleryDetail-ttl .story_post-tag {
      margin: 0 10px 8px 0;
  }
  .storyMain_post .storyMain_post-txt {
      display: block;
      width: 100%;
      font-size: 1.6rem;
      font-weight: 600;
      line-height: 1.3333;
  }
}
/*
news/blog
--------------------*/
.news_post .c_head {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  padding: 10px 20px;
  background-color: #eee;
  line-height: 1.5;
}
.news_post .c_ofi {
  padding-top: 100%;
}
.post_cnt {
  line-height: 1.5;
}
.news_post a {
  transition: all .3s;
}
.news_post a:hover {
  opacity: .8;
}
.news_post a:hover .c_ofi img {
  opacity: 1;
  transform: scale(1.1);
}
.story-head {
  display: block;
  width: 100%;
  font-weight: bold;
  line-height: 1.3;
}
.news_time {
  text-align: right;
  margin: 5px 0 0;
}
.news_body {
  border-top: 1px solid var(--main-color);
  border-bottom: 1px solid var(--main-color);
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .news_post:not(:last-child) {
      margin: 0 0 50px;
  }
  .post_cnt {
      width: 860px;
  }
  .post_cnt .post_txt {
      padding: 20px;
  }
  .post_img {
      width: 200px;
  }
  .news_body {
      min-height: 200px;
      margin: 30px 0 0;
      padding: 40px 10px;
  }
}
@media screen and (max-width: 767px) {
  .news_post {
      flex-flow: column-reverse;
  }
  .news_post:not(:last-child) {
      margin: 0 0 30px;
  }
  .news_post .c_ofi {
      padding-top: 60%;
  }
  .news_post .c_head {
      font-size: 16px;
      padding: 10px;
  }
  .post_cnt {
      width: 100%;
  }
  .post_img {
      width: 100%;
  }
  .detail_content .story-head {
      font-size: 18px;
  }
  .news_body {
      margin: 20px 0 0;
      padding: 20px 10px;
  }
}






/*
site_map
--------------------*/
.site-main li {
  width: 100%;
  border-bottom: 1px solid;
  transition: .2s all;
}
.site-main li a {
  line-height: 2;
  color: #fff;
}
.site-main li a:before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  margin: 0 10px 0 0;
  border-top: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
  transform: rotate(45deg);
}
.site-main li a:hover {
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .site-list {
      flex-flow: column wrap;
      height: 350px;
      justify-content: flex-start;
  }
  .site-main li {
      width: 49%;
  }
  .site-main li a {
      font-size: 18px;
      padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .site-main li a {
      max-width: 400px;
      margin: 0 auto;
      font-size: 16px;
      padding: 2vh 10px;
  }
}


/*
privacy
--------------------*/
.privacy-main_cnt {
  color: #fff;
  background-color: var(--sub-color);
  border: 2px solid var(--main-color);
}
.privacy-main_cnt p:not(:last-of-type) {
  margin: 0 0 15px;
}
.privacy-main_cnt .objective_list {
  margin: 15px 0 0;
  list-style-type: square;
  list-style-position: inside;
}
.privacy-main_cnt .c_head {
  border-bottom: 1px solid;
  padding-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .privacy-main_cnt {
      padding: 30px;
  }
  .privacy-main_cnt .c_head {
      margin: 0 0 30px;
  }
  .privacy-main_cnt:not(:last-child) {
      margin: 0 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .privacy-main_cnt {
      padding: 20px;
  }
  .privacy-main_cnt .c_head {
      margin: 0 0 15px;
  }
  .privacy-main_cnt:not(:last-child) {
      margin: 0 0 30px;
  }
}




/*
contact
--------------------*/
/* ▼▼▼contact base▼▼▼ */
.contact-form-table select,
.contact-form-table textarea,
.contact-form-table input[type='tel'],
.contact-form-table input[type='fax'],
.contact-form-table input[type='num'],
.contact-form-table input[type='text'],
.contact-form-table input[type='email'] {
    padding: 4px;
    font-size: 16px;
    border: 1px solid #dfdfdf;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,.1) inset;
    box-sizing: border-box;
}
.contact-form-table textarea {
    resize: none;
}
/* ▼form */
.contact-form-table tr {
    transition: all .3s;
}
.contact-form-table td a {
    display: inline-block;
}
/* ▼mark */
.required-mark {
    width: 50px;
    color: #382c23;
    background-color: #fff;
    font-size: 15px;
    text-align: center;
    float: right;
}
.required-mark02 {
    display: inline-block;
    margin: 0 15px 0 0;
}
/* ▼button */
input[type='button']:hover,
input[type='submit']:hover {
    opacity: .8;
    cursor: pointer;
}
input[type='button'][disabled],
input[type='submit'][disabled] {
    opacity: .7;
    pointer-events: none;
    background-color: #ddd;
}
/* ▼checkbox&radio */
.contact-form-table input[type=radio],
.contact-form-table input[type=checkbox] {
    display: inline-block;
    margin-right: 6px;
}
.contact-form-table input[type=radio] + label,
.contact-form-table input[type=checkbox] + label {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    line-height: 30px;
    cursor: pointer;
}
.contact-form-table input[type=radio],
.contact-form-table input[type=checkbox] {
    display: none;
    margin: 0;
}
.contact-form-table input[type=radio] + label,
.contact-form-table input[type=checkbox] + label {
    margin-bottom: 5px;
    padding: 0 0 0 24px;
}
.contact-form-table input[type=radio] + label::before,
.contact-form-table input[type=checkbox] + label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    background: #FFF;
}
.contact-form-table input[type=radio] + label::before {
    border: 2px solid #ccc;
    border-radius: 30px;
}
.contact-form-table input[type=checkbox] + label::before {
    border: 2px solid #ccc;
}
.contact-form-table input[type=radio]:checked + label::after,
.contact-form-table input[type=checkbox]:checked + label::after {
    content: "";
    position: absolute;
    top: 50%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
}
.contact-form-table input[type=radio]:checked + label::after {
    left: 5px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    background: #e74c3c;
    border-radius: 8px;
}
.contact-form-table input[type=checkbox]:checked + label::after {
    left: 3px;
    width: 16px;
    height: 8px;
    margin-top: -8px;
    border-left: 3px solid #e74c3c;
    border-bottom: 3px solid #e74c3c;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.contact_submits {
    line-height: 1.5;
    text-align: center;
}
/* ▼error */
.error-text {
    font-size: 1.4rem;
    color: #d93732;
    margin: 0 0 5px;
}
/* ▼table */
.contact-form-table input[name="items[address]"] {
    margin-top: 8px;
}
.contact-form-table {
    width: 100%;
    margin-bottom: 50px;
}
/*recaptcha*/
.contact-recaptcha {
  width: 304px;
  margin: 0 auto 30px;
}
/*==================================================
画像アップロードフォーム
================================================== */

.upload-item-wrap,
.ancion-btn-wrap {
    width: auto;
    margin: auto;
}
.upload-item-wrap {
	font-size: 13px;
	overflow: hidden;
}

.upload-item-wrap input[type="file"] {
	display: none;
}

/* アップされた画像のサムネイル */
.upload-item-wrap .thumb {
	width: 220px;
	height: 220px;
	margin: 0 8px 0 0;
	position: relative;
	overflow: hidden;
	float: left;
}

.upload-item-wrap .thumb img {
	max-width: none;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

/*選択・削除ボタン  */
.upload-item-wrap .ancion-btn-wrap {
	float: left;
    margin: 10px;
}

.upload-item-wrap .ancion-btn {
	margin: 0 0 8px;
	width: 110px;
	line-height: 35px;
	text-align: center;
	color: #fff;
	border-radius: 4px;
	background: #e6e6e6;
	display: block;
}

.upload-item-wrap .select-file {
	background: #2ecc71;
}

.upload-item-wrap .deselect-file {
	background: #e74c3c;
}

.upload-item-wrap .ancion-btn:hover {
	cursor: pointer;
}

@media screen and (max-width: 767px) {
    .upload-item-wrap .thumb {
        width: 180px;
        height: 180px;
    }
}


