@charset "utf-8";
/* Info Detail CSS */

/* MAIN
----------------------------------------------------------------------------------------------------*/
/* Detail Header
*************************************** */
.detail_header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.detail_header .sns {
  padding: 5px 0 0;
}

.img_box {
  margin-bottom: 15px;
  text-align: center;
}

.img_box img {
  width: 100%;
}

.detail_cont .title {
  margin: 15px 0;
  padding-bottom: 10px;
  border-bottom: solid 1px #a9a7a7;
  font-size: 2rem;
  font-weight: bold;
}

/* コンテンツエディター対応CSS
**************************************/
/* 商品内容 */
.contents_area {
  padding: 10px;
  max-width: 100%;
  font-size: 1.4rem;
  line-height: 1.35;
}

.contents_area a {
  display: block;
  font-weight: bold;
  color: #33af0d;
  transition: .5s;
}

.contents_area a:hover {
  background-color: #d3edcc;
  opacity: .7;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

strong {
  font-weight: bold;
}

em {
  font-style: oblique; 
}

.contents_area ul {
  list-style-type: disc;
  margin-left: 20px;
}

.contents_area ol {
  list-style-type: decimal;
  margin-left: 20px;
}

blockquote {
  position: relative;
  padding: 10px 15px 10px 60px;
  box-sizing: border-box;
  font-style: italic;
  background: #f5f5f5;
  color: #777777;
  border-left: 4px solid #ffbb21;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
}

blockquote:before{
  display: inline-block;
  position: absolute;
  top: 7px;
  left: 0;
  content: "“";
  font-family: sans-serif;
  color: #ffbb21;
  font-size: 90px;
  line-height: 1;
}

blockquote p {
  padding: 0;
  margin: 7px 0;
  line-height: 1.7;
}

blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

/* Gallery */
.contents_area .gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 25px auto !important;
}

.contents_area .gallery-item {
  display: block;
  margin: 0 auto;
  max-width: 47.5%;
}

.contents_area .gallery img {
  width: 100% !important;
  height: 100%;
}

/* Youtube Contents */
.youtube {
  position: relative;
  margin: 25px auto;
  padding-top: 56.25%;
  width: 100%;
}

.youtube iframe{
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}


/* -------------------- for SP (480px) ---480px以下
----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
  /* MAIN
  ----------------------------------------------------------------------------------------------------*/ 
  /* Detail Header
  *************************************** */
  .detail_cont .title {
    font-size: 1.6rem;
  }

  .contents_area { min-height: 65vw;}

}
/* (max-width: 480px) end */


/* -------------------- for Tablet (481px) and (1023px) ---481から1023px以内
----------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 481px) and (max-width: 1023px) {
  /* MAIN
  ----------------------------------------------------------------------------------------------------*/
  /* Detail Header
  *************************************** */

}
/* (min-width: 481px) and (max-width: 1023px) end */