@charset "utf-8";
/* ===================================================================
 style.css
======================================================================*/

@media screen and (max-width: 640px) {
  .c_show-pc { display: none !important; }
}
@media screen and (min-width: 641px) {
  .c_show-sp { display: none !important; }
}

/*---------------------------------------------------------
 フレーム
-----------------------------------------------------------*/
.f_contents {
  width: 100%;
}
.f_inner {
  max-width: 980px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 50px;
}
.f_inner._half {
  width: 52%;
  max-width: 1000px;
}

@media screen and (max-width: 640px) {
  .f_contents {
    padding-top: 0;
  }
  .f_inner {
    padding: 0 15px;
  }
  .f_inner._half {
    width: 100%;
  }
}

/* 動画
-------------------------------------------------*/
.f_movie {
  min-height: 360px;
  margin: 0 auto;
  background: url("../img/logo_ac.png") no-repeat 50% 30%;
}
.f_movie > div {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 640px) {
  .f_movie {
    min-height: 210px;
    background-size: 90px auto;
  }
}

/*---------------------------------------------------------
 モジュール
-----------------------------------------------------------*/

/* セクション
-------------------------------------------------*/
.m_sectionS {
  margin: 50px 0;
}
.m_sectionM {
  margin: 80px 0;
}
.m_sectionL {
  margin: 160px 0;
}
.m_sectionS.-center,
.m_sectionM.-center,
.m_sectionL.-center {
  text-align: center;
}
.m_section-head {
  margin: 45px 0;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .m_sectionS,
  .m_sectionM {
    margin: 50px 0;
  }
  .m_sectionL.-spSizeM {
    margin-top: 50px;
  }
  .m_section-head {
    padding: 0 30px;
  }
}

/* ボタン
-------------------------------------------------*/
.m_btnList {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.m_btnList > li + li {
  margin-left: 30px;
}

.m_linkBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 15px;
  border: 1px solid #333;
  font-size: 14px;
  color: #333;
  line-height: 1.3;
  transition: .3s;
}
.m_linkBtn:hover {
  background: #333;
  color: #fff;
}

@media screen and (max-width: 640px) {
  .m_btnList > li {
    width: calc(50% - 10px);
  }
  .m_btnList > li + li {
    margin-left: 20px;
  }

  .m_linkBtn {
    width: 100%;
    min-width: auto;
    max-width: 280px;
  }
  .m_btnList > li .m_linkBtn {
    width: 100%;
    min-width: auto;
    padding: 10px 15px 5px;
  }
}

/* 見出し
-------------------------------------------------*/
.m_mainTitle {
  margin-bottom: 64px;
  font-size: 46px;
  font-family: Avenir;
}
.m_subTitle {
  font-size: 28px;
  line-height: 1.4;
}

.m_h2 {
  font-size: 36px;
  font-family: Avenir;
}
.m_h3 {
  font-size: 30px;
  text-align: center;
  font-family: Avenir;
}

@media screen and (max-width: 640px) {
  .m_mainTitle {
    margin-bottom: 36px;
    font-size: 28px;
  }
  .m_subTitle {
    font-size: 18px;
  }
}

/* テキスト
-------------------------------------------------*/
.m_text {
  margin-top: 30px;
  letter-spacing: 1px;
}
.m_leadtext {
  margin-bottom: 1.5em;
  font-size: 16px;
  line-height: 1.6;
}
.m_leadtext + .m_leadtext {
  margin-bottom: 80px;
}
.m_textBox {
  margin: 50px auto;
  letter-spacing: 1px;
}

@media screen and (max-width: 640px) {
  .m_leadtext {
    font-size: 14px;
  }
  .m_textBox {
    max-width: 300px;
  }
}

/* カラム
-------------------------------------------------*/
.m_column {
  display: flex;
  justify-content: space-between;
}
.m_column > div {
  width: calc(50% - 15px);
}
.m_column > div > p {
  margin-top: 15px;
}

@media screen and (max-width: 640px) {
  .m_column {
    display: block;
  }
  .m_column > div {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .m_column > div + div {
    margin-top: 30px;
  }
}

/* 商品詳細
-------------------------------------------------*/
.m_itemDetail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.m_itemDetail-img {
  flex-shrink: 0;
  margin-right: 30px;
}
.m_itemDetail-context {
  flex-grow: 1;
}
.m_itemDetail-context h2 {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: normal;
  font-family: Avenir;
}
.m_itemDetail-context-btn {
  margin-top: 20px;
}

@media screen and (max-width: 640px) {
  .m_itemDetail {
    position: relative;
    padding-bottom: 80px;
  }
  .m_itemDetail-header {
    display: block;
  }
  .m_itemDetail-img {
    margin-bottom: 30px;
    margin-right: 0;
    padding: 0 30px;
    text-align: center;
  }
  .m_itemDetail-context {
    padding: 0 30px;
  }
  .m_itemDetail-context h2 {
    font-size: 24px;
  }
  .m_itemDetail-context-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
  }
}

/* 画像
-------------------------------------------------*/
.f_headerVisual {
  position: relative;
  overflow: hidden;
}
.f_headerVisual-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.f_headerVisual-logo img {
  width: 40%;
  min-width: 240px;
  max-width: 420px;
}
.f_headerVisual-img {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.f_headerVisual-img img {
  width: 100%;
}
@media screen and (min-width: 1300px) {
  .f_headerVisual {
    height: 700px;
  }
}
@media screen and (max-width: 640px) {
  .f_headerVisual-img {
    height: 80vh;
  }
  .f_headerVisual-img img {
    width: auto;
    max-width: none;
    height: 100%;
  }
}

.m_wideImage {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 700px;
  overflow: hidden;
}

@media screen and (max-width: 640px) {
  .m_wideImage {
    height: 50vh;
  }
  .m_wideImage img {
    width: auto;
    max-width: none;
    height: 100%;
  }
}

/*---------------------------------------------------------
 固有モジュール
-----------------------------------------------------------*/

/* 店舗一覧
-------------------------------------------------*/
.m_shopList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.m_shopList > li a {
  font-size: 14px;
}
.m_shopList > li + li:before {
  content: "/";
  margin: 0 5px;
}

@media screen and (max-width: 640px) {
  .m_shopList {
    display: block;
  }
  .m_shopList > li {
    text-align: center;
  }
  .m_shopList > li + li {
    margin-top: 10px;
  }
  .m_shopList > li + li:before {
    content: none;
  }
}

/* スペック
-------------------------------------------------*/
.m_specTable {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 30px;
  border-top: 1px solid #666;
  border-collapse: collapse;
}
.m_specTable thead {
  background: none;
}
.m_specTable th,
.m_specTable td {
  padding: 15px 10px;
  border-bottom: 1px solid #666;
  text-align: center;
  line-height: 1.5;
}
.m_specTable thead th,
.m_specTable tbody td,
.m_specTable tfoot td {
  background: #f5f5f5;
}
.m_specTable thead th,
.m_specTable tfoot td {
  padding: 30px;
  font-weight: normal;
}
.m_specTable tfoot th {
  background: #fff;
}

.m_specTable-thumb {
  display: inline-block;
  max-width: 230px;
}
.m_specTable-caption {
  margin-top: 10px;
  line-height: 1.3;
}
.m_specTable-btn {
  margin-top: 15px;
}
.m_specTable-btn a {
  width: 100%;
  max-width: 230px;
}

@media screen and (max-width: 640px) {
  .m_specTable,
  .m_specTable thead,
  .m_specTable tbody,
  .m_specTable tfoot {
    display: block;
    padding: 0;
  }
  .m_specTable {
    border-bottom: 1px solid #666;
  }
  .m_specTable tfoot {
    border-top: 1px solid #666;
  }
  .m_specTable tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .m_specTable th,
  .m_specTable td {
    display: block;
    width: 50%;
    padding: 15px 10px;
    border-bottom: none;
    font-size: 12px;
  }
  .m_specTable td[colspan="2"] {
    width: 100%;
  }
  .m_specTable thead td,
  .m_specTable tfoot th {
    display: none;
  }
  .m_specTable thead th,
  .m_specTable tfoot td {
    padding: 30px 10px;
    background: #fff;
  }
  .m_specTable tbody th {
    width: 100%;
    padding: 5px 10px;
    background: #f5f5f5;
    border-bottom: none;
  }
  .m_specTable tbody td {
    background: #fff;
  }
  .m_specTable-btn a {
    padding: 10px 10px 5px;
  }

}

/* 商品一覧
-------------------------------------------------*/
.m_itemList {
  display: flex;
  justify-content: space-between;
  width: 66.66667%;
  max-width: 1000px;
  margin: 30px auto 50px;
}
.m_itemList > li {
  width: calc(50% - 15px);
  text-align: center;
}
.m_itemList > li a {
  display: block;
  color: #000;
  transition: .3s;
}
.m_itemList > li a img {
  transition: .3s;
}
.m_itemList > li a:hover p {
  color: #000;
}
.m_itemList > li a:hover img {
  opacity: .7;
}

@media screen and (max-width: 640px) {
  .m_itemList {
    width: 100%;
    padding: 0 15px;
  }
  .m_itemList.-spNoColumn {
    display: block;
  }
  .m_itemList.-spNoColumn > li {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .m_itemList.-spNoColumn > li + li {
    margin-top: 30px;
  }
}

/* SNS
-------------------------------------------------*/
.m_snsList {
  display: flex;
}
.m_snsList > li + li {
  margin-left: 20px;
}
.m_snsList > li a {
  transition: .3s;
}
.m_snsList > li a:hover {
  opacity: .7;
}

/*---------------------------------------------------------
 carousel
-----------------------------------------------------------*/
.m_carousel {
  position: relative;
  margin: 0 -50px;
  padding: 0 50px;
}

/* slick
-------------------------------------------------*/
.slick-arrow {
  position: absolute;
  top: calc(50% - 50px);
  z-index: 2;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-size: 10px;
  text-indent: -9999px;
  overflow: hidden;
  transition: .3s;
}
.slick-arrow:hover {
  background: none;
  opacity: .7;
}
.slick-prev { left: -50px; }
.slick-next { right: -50px; }

.slick-arrow:after {
  content: "";
  position: absolute;
  top: 12px;
  background: #333;
  height: calc(tan(60deg) * 26px / 2);
  width: 16px;
}
.slick-prev:after {
  left: 15px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.slick-next:after {
  left: 18px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* dotes */
.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
.slick-dots > li + li {
  margin-left: 12px;
}
.slick-dots button {
  width: 12px;
  height: 12px;
  margin: 0;
  padding: 0;
  border: 1px solid #666;
  font-size: 10px;
  text-indent: -9999px;
  overflow: hidden;
}
.slick-dots button:hover,
.slick-dots .slick-active button {
  background: #333;
}

@media screen and (max-width: 640px) {
  .m_carousel {
    margin: 0;
    padding: 0;
  }
  .m_carousel-list {
    padding: 0 30px;
  }

  /* slick
  -------------------------------------------------*/
  .slick-arrow {
    top: calc(50% - 30px);
    width: 30px;
    height: 30px;
  }
  .slick-prev { left: 0; }
  .slick-next { right: 0; }

  .slick-arrow:after {
    top: 6px;
    height: calc(tan(60deg) * 20px / 2);
    width: 12px;
  }
  .slick-prev:after {
    left: 7px;
  }
  .slick-next:after {
    left: 9px;
  }

  /* dotes */
  .slick-dots {
    margin: 10px 0;
  }

}