@charset "utf-8";
p{
	margin: 0;
	padding: 0;
}
.flex_box.product_block{
	justify-content: space-between;	
}	
.container, .okyaku-mail, ul.breadcrumb{
	max-width: 1024px;
	margin: 0 auto;
}
.r_txt{
    background-color: #1586f1;
}
.r_txt p{
	max-width: 1024px;
	margin: 0 auto;
	text-align: right;
	font-size: 18px;
    color: #fff;
}
.pop_contents{
	border: 1px solid #ccc;
	padding: 1em;
}
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: top;
}
.photo{
	width: 50%;
	background-color: aliceblue;
	text-align: center;
}
.product{
	width: 47%;
}
ul.pay{
	margin: 1em 0 0 1em;
}
ul.pay li.return{
	display: none;
}
.gallery {
  display: flex;
  margin: 10px auto;
  max-width: 600px;
  position: relative;
  padding-top: 66.6666666667%;
  width: 100%;
}
.gallery img{
  width: auto;
  height: auto;
}
.gallery__thumb img{
	max-width: 50px;
}
.p_name{
	font-size: 1.4em;
	color: #5F5F5F;
	padding-top: 1em;
}
.p_price{
	font-size: 1.8em;
	color: #DB0028;
}
.message{
	margin: .5em 0;
	padding: .5em;
	border: 1px dashed #ccc;
}
@media screen and (min-width: 600px) {
  .gallery {
    padding-top: 400px;
  }
}
.gallery__img {
  position: absolute;
  top: 0;
  left: 10%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.gallery__thumb {
  padding-top: 6px;
  margin: 6px;
  display: block;
}
.gallery__selector {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.gallery__selector:checked + .gallery__img {
  opacity: 1;
}
.gallery__selector:checked ~ .gallery__thumb > img {
  box-shadow: 0 0 0 3px #0be2f6;
}

.button_solid013 a {
    background: #6bb6ff;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 2px 0px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    border-radius: 5px;
    border-bottom: 4px solid #1d7fde;
    overflow: hidden;
}
.button_solid013 a:active {
  transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}
.button_solid013 a:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient( 130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 55%);
  animation: shine 3s infinite;
}
@keyframes shine {
  33% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.button_solid013 a:after {
  content: '»';
  display: inline-block;
  color: #fff;
  padding-left: 10px;
  font-size: 20px;
}