﻿html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.2rem;
  color: #6a6a6a;
  line-height: 1.5;
}

/*全体デザイン*/
.wrap {
  margin: 20px auto;
  max-width: 960px;
  padding: 5px;
}

/*---------  トップ画像（ロゴ・メニュー）  ---------*/
.container-top {
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  /*border: 1px solid #ccc;*/
}
  .container-top .logo {
    width: 15%;
    /*border: 1px solid #ff6a00;*/
  }
  .container-top .menu {
    width: 85%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    font-size: 1.1rem;
    /*border: 1px solid #ffd800;*/
  }
    .container-top .menu  div {
      padding-left: 2px;
    }

/*---------  メイン画像  ---------*/
.container-main-img {
  margin-top: 30px;
  width: 100%;
  /*border: 1px solid #ccc;*/
}

/*---------  インフォメーション・エリア  ---------*/
.container-info {
  margin-top: 20px;
  width: 100%;
  text-align: center;
  line-height: 1.7;
  border-bottom: 1px solid #ccc;
}

/*---------  クーポン・エリア  ---------*/
.container-coupon {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /*border: 1px solid #ccc;*/
}
  .container-coupon .cpn-1 {
    margin-top: 20px;
    width: 100%;
    /*border: 1px solid #ccc;*/
  }
  .container-coupon .cpn-2 {
    margin-top: 20px;
    width: 49%;
    /*border: 1px solid #ccc;*/
  }
  .container-coupon .cpn-3 {
    margin-top: 20px;
    width: 32%;
    /*border: 1px solid #ccc;*/
  }
  .container-coupon .ttl {
    font-size: 1.6rem;
    text-align: center;
  }
  .container-coupon .text {
    font-size: 1.2rem;
    line-height: 1.7;
  }
  .container-coupon .button_wraper {
    margin-top: 20px;
    text-align: center;
  }
  .container-coupon button {
  font-size: 1.2rem;
  padding: 8px 15px;
  outline: none;
  border: 1px solid #bbb;
  border-radius: 7px;
  color: #6a6a6a;
  }


/*---------  Title  ---------*/
.container-ttl {
  margin-top: 50px;
  height: 35px;
  width: 100%;
  padding: 0 0 5px 5px;
  border-bottom: 1px solid #ccc;
}
  .container-ttl img {
    width: 250px;
  }
/*---------  Show Items  ---------*/
.container-grid {
  margin-top:20px;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, 180px);
  grid-gap: 5px;
  justify-content: space-evenly;
}
  .container-grid .item {
    padding: 1px;
    text-align: center;
  }
    .container-grid .item img {
      border: 1px solid #ccc;
      border-radius: 7px;
    }
    .container-grid .item p {
      line-height: 1.3;
    }

/*---------  COLLECTION・エリア  ---------*/
.container-collection {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /*border: 1px solid #ccc;*/
}
  .container-collection .collection-1 {
    margin-top: 20px;
    width: 100%;
    /*border: 1px solid #ccc;*/
  }
  .container-collection .collection-2 {
    margin-top: 20px;
    width: 49%;
    /*border: 1px solid #ccc;*/
  }
  .container-collection .collection-3 {
    margin-top: 20px;
    width: 32%;
    /*border: 1px solid #ccc;*/
  }

/*---------  Footer・エリア  ---------*/
.footer_logo {
  margin-top: 70px;
  width: 100%;
  background-color: #cecdcb;
  padding: 20px;
}
  .footer_logo div {
    width: 200px;
    margin: 0 auto;
  }
.container-footer {
  width: 100%;
  display: flex;
  background-color: #ecebe8;
  padding: 10px 0;
  font-size: 1.5rem;
  text-align: center;
}
  .container-footer .footer-l {
    width: 50%;
    margin: 40px auto;
    padding: 20px;
    display: block;
    border-right: 1px solid #000;
  }
  .container-footer .footer-r {
    width: 50%;
    margin: 40px auto;
    padding: 20px;
    display: block;
  }
  .container-footer .pos {
    line-height: 1.7;
    text-align: left;
    display: inline-block;
  }
  .container-footer ul {
    list-style: none;
    padding: 0;
  }
  .container-footer .tel {
    margin-top: 30px;
  }
  .container-footer .info {
    margin-top: 15px;
    font-size: 1.2rem;
  }
.copy {
  width: 100%;
  background-color: #cecdcb;
  padding: 15px;
  text-align: center;
}

/*---------  汎用設定  ---------*/
a {
  color: inherit;
  text-decoration: none;
}
a:hover{
  text-decoration: underline #aaa;
}

img {
  width: 100%;
}

.over {
  background: #000;
}
  .over img:hover {
    transition: .7s;
    opacity: 0.8;
  }

.over1 {
  background: #fff;
}
  .over1 img:hover {
    transition: .7s;
    opacity: 0.6;
  }
  .over1 a {
    text-decoration: none;
  }
