:root {
  --head-text-color:#FFD272;
  --default-text-color:#fff;
  --default-bg-color:#000;
  --default-font-family:'Noto Serif JP', serif;
}

.coin *{
  font-family: var(--default-font-family);
}

.image-zoom{
  position:relative;
}
.image-zoom img{
  transition: all 0.5s;
}
.image-zoom::after{
  content:'';
  display: block;
  position:absolute;
  width:35px;
  height:35px;
  bottom:0;
  right:0;
  background:#707070 url(../img/coin/icon-zoom.png) no-repeat;
  background-position:center;
  background-size:50%;
  z-index:1;
}
.image-zoom:hover img{
  opacity:0.6;
}

.coin .wrapper{
  background:#000;
  padding:150px 0 0;
  min-width: 1200px;
}

.coin .headline{
  color:var(--head-text-color);
  font-size:35px;
  text-align:center;
  line-height:1.6;
  padding:0 0 45px;
}
.coin .hero-wrap{
  background-color:var(--default-bg-color);
}
.coin .hero-wrap .image{
  display: block;
  margin:0 auto;
}
.coin .content-wrap{
  background:url(../img/coin/bg.jpg);
  background-position: center top;
  background-size:100%;
  padding:0 0 120px;
}

.coin .readtext{
  color:var(--default-text-color);
  line-height: 2;
  font-size: 20px;
  padding-bottom:60px;
}
.coin .info-wrap{
  width:1100px;
  background:url(../img/coin/info_bg.jpg) center center;
  background-size:cover;
  margin:0 auto;
  margin-bottom:60px;
  padding:44px 0 54px;
  position:relative;
}
.coin .info-wrap::after{
  content:'';
  position:absolute;
  width:calc(100% - 12px);
  height:calc(100% - 12px);
  top:6px;
  left:6px;
  margin:0 auto;
  border:1px solid #000;
  box-sizing: border-box;
  pointer-events: none;
}
.coin .info-title{
  background-color: rgba(100,76,0,0.6);
  font-size:26px;
  color:#fff;
  margin-bottom:30px;
  padding:0.3em 0;
}
.coin .info-readtext{
  width:90%;
  margin:0 auto 0.5em;
  font-size:20px;
  text-align: justify;
}
.coin .info-box{
  width:90%;
  display: flex;
  flex-wrap: wrap;
  margin:2em auto 0;
}
.coin .info-image{
  width:45%;
  margin-right:4%;
}
.coin .info-image video,
.coin .info-image img{
  width:100%;
  display:block;
}
.coin .info-text{
  font-size:18px;
  line-height:1.8;
  color:#000;
  width:51%;
  text-align:left;
  font-family: sans-serif;
}
.coin .info-text__price{
  margin-bottom:0.5em;
}
.coin .info-text__price strong{
  font-size:34px;
  margin-right:4px;
}
.coin .info-text ul{
  margin-top:0.3em;
}
.coin .info-text li{
  text-indent: -1em;
  padding-left:1em;
  line-height: 1.5;
  padding-bottom:0.4em;
  font-family: sans-serif;
}
.coin .info-text li:before{
  content:"・";
}
.coin .btn-entry--fullset{
  position:relative;
  display:block;
  width:80%;
  max-width: 500px;
  font-size:24px;
  padding:20px 0;
  background:#281c00;
  color:#fff;
  margin:30px auto 0;
  line-height: 1;
  transition: all 0.5s;
  text-align: center;
}
.coin .btn-entry--fullset:hover{
  background:#d3a12d;
}
.coin .btn-entry--fullset::before {
  content:'';
  width: 10%;
  height: 1px;
  display: block;
  position: absolute;
  right: 7%;
  top: 50%;
  background: #FFF;
}
.coin .btn-entry--fullset::after {
  content: '';
  width: 20px;
  height: 1px;
  display: block;
  position: absolute;
  right: 7%;
  bottom: 50%;
  background: #FFF;
  transform-origin: right;
  transform: rotateZ(20deg);
}

.coin .readtext-item{
  color:var(--head-text-color);
  line-height: 2;
  font-size: 24px;
  padding-bottom:50px;
}
.coin .item-wrap{
  display: flex;
  justify-content: space-between;
  width:1100px;
  margin:0 auto 90px;
}
.coin .item-box{
  width:300px;
}
.coin .item-image{
  display:block;
  width:100%;
  border:1px solid #666;
  box-sizing: border-box;
  margin-bottom:24px;
}
.coin .item-image img{
  display:block;
  width:100%;
}
.coin .item-title{
  color:var(--head-text-color);
  line-height: 1.3;
  text-align: center;
  padding-bottom:13px;
}
.coin .item-price{
  color:var(--default-text-color);
  text-align: center;
  font-size: 14px;
  padding-bottom:12px;
}
.coin .item-price strong{
  font-size: 30px;
  font-weight: normal;
}
.coin .item-text{
  color:var(--default-text-color);
  font-size: 15px;
  padding-bottom:15px;
  text-align: left;
}
.coin .item-text-spec{
  color:#bbb;
  font-size: 13px;
  font-family: sans-serif;
  text-align:left;
}
.coin .specialprice-box{
  position:relative;
  padding:15px;
  border-radius:15px;
  border:1px solid #A58233;
  color:#FCCA5A;
  background: #0F0703;
  margin-top:20px;
}
.coin .specialprice-box::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-bottom: 12px solid #0F0703;
  z-index: 2;
}
.coin .specialprice-box::after {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-bottom: 14px solid #A58233;
  z-index: 1;
}
.coin .specialprice-title{
  font-size: 20px;
}
.coin .specialprice-ruby{
  font-size: 9px;
  line-height: 1;
  letter-spacing: 4px;
}
.coin .specialprice-price{
  font-size: 15px;
  line-height: 1;
}
.coin .specialprice-price strong{
  font-size: 24px;
  font-weight: normal;
}
.coin .specialprice-subprice{
  font-size: 15px;
  line-height: 2;
}

.coin .specialprice-box::before{
  content:'';  font-weight: normal;
  display: block;
  position:absolute;
}

.exp-tungbox{
  display: flex;
  position:relative;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #707070;
  padding:12px;
  box-sizing: border-box;
  width:566px;
  margin:0 auto 80px;
}
.tungbox-text{
  color: var(--head-text-color);
  font-size:18px;
  text-align: center;
  padding-left:1em;
}
.tungbox-text-sub{
  font-size:14px;
}
.tungbox-image{
  display: block;
  width:112px;
}
.tungbox-image img{
  width:100%;
  display:block;
}

.coin .btn-entry{
  position:relative;
  display:block;
  width:620px;
  font-size:26px;
  padding:24px 0;
  background:#FFCF60;
  margin:0 auto;
  line-height: 1;
  transition: all 0.5s;
}

.coin .btn-entry:hover{
  background:#d3a12d;
}

.coin .btn-entry::before {
  content:'';
  width: 10%;
  height: 1px;
  display: block;
  position: absolute;
  right: 7%;
  top: 50%;
  background: #000;
}

.coin .btn-entry::after {
  content: '';
  width: 20px;
  height: 1px;
  display: block;
  position: absolute;
  right: 7%;
  bottom: 50%;
  background: #000;
  transform-origin: right;
  transform: rotateZ(20deg);
}

.coin .exp-wrap{
  font-size:12px;
  color:#fff;
  padding-top:60px;
}
.coin .asterisk li{
  font-size:15px;
  color:#fff;
}
.coin .asterisk li::before{
  content:'※';
}

.hide-pc{
  display:none;
}

@media screen and (max-width:768px) {



.coin .wrapper{
  padding-top:70px;
  min-width: auto;
  overflow: hidden;
}

.coin .headline{
  font-size: 6vw;
  width:94%;
  margin:0 auto;
  padding-bottom:4vw;
}
.coin .hero-wrap .image{
  width:100%;
}

.coin .readtext{
  font-size:4vw;
  width:90%;
  margin:0 auto;
}
.coin .info-readtext{
  width:84%;
  font-size: 14px;
  text-align: left;
  margin-bottom:4%;
  text-align: justify;
}
.coin .info-box{
  width:84%;
  display: block;
  margin:0 auto;
}
.coin .info-image{
  width:100%;
  margin-right:4%;
}
.coin .info-wrap{
  width:88%;
  margin-bottom:60px;
  padding:7vw 0 9vw;
  background:url(../img/coin/info_bg.jpg);
}
.coin .info-title{
  background-color: rgba(100,76,0,0.6);
  font-size:4.5vw;
  color:#fff;
  margin-bottom:4vw;
  padding:0.5em 1em;
  line-height:1.4;
}
.coin .info-text{
  margin:1em auto 0;
  font-size:4vw;
  line-height:2;
  color:#000;
  text-align: justify;
  width:98%;
}
.coin .info-text__price{
  text-align:center;
}
.coin .info-text__price strong{
  font-size:25px;
}
.coin .btn-entry--fullset{
  position:relative;
  display:block;
  width:80%;
  font-size:18px;
  padding:20px 0;
  background:#281c00;
  color:#fff;
  margin:30px auto 0;
  line-height: 1;
  transition: all 0.5s;
  text-align: center;
}
.coin .readtext-item{
  font-size:4vw;
  width:94%;
  margin:0 auto;
}
.coin .content-wrap{
  background-repeat:no-repeat;
}
.coin .item-wrap{
  display: block;
  width:70%;
  margin:0 auto 25vw;
}
.coin .item-box{
  margin-bottom:10vw;
}
.coin .item-image{
  margin-bottom:2vw;
}
.coin .item-title{
  font-size:4.8vw;
  padding-bottom:2vw;
}
.coin .item-price{
  font-size:2.5vw;
  padding-bottom:2vw;
}
.coin .item-price strong{
  font-size:6vw;
}
.coin .item-text{
  font-size:4.2vw;
  padding:0 0 5vw;
}
.coin .item-text-spec{
  font-size:4.2vw;
  padding:0;
}
.coin .specialprice-box{
  margin-top:4vw;
  padding:2vw;
}
.coin .specialprice-title{
  font-size: 3.4vw;
}
.coin .specialprice-price{
  font-size: 3vw;
}
.coin .item-box{
  width:100%;
}

.exp-tungbox{
  display: block;
  width:70%;
  margin:0 auto 80px;
}
.tungbox-text{
  padding:0 0 3vw;
  font-size:3vw;
}
.tungbox-text-sub{
  font-size:3vw;
}
.tungbox-image{
  width:60%;
  margin:0 auto 0;
}

.coin .btn-entry{
  width:80%;
  font-size:4vw;
  padding:24px 0;
  background:#FFCF60;
  margin:0 auto;
  line-height: 1;
}

.coin .exp-wrap{
  font-size:12px;
  color:#fff;
  padding-top:60px;
  text-align: left;
  width:90%;
  margin:0 auto;
}
.coin .asterisk li{
  font-size:3.2vw;
  text-align: left;
  text-indent:-1em;
  padding-left:1em;
}
.coin .asterisk li::before{
  content:'※';
}

.hide-pc{
  display:inline;
}
.hide-sp{
  display:none;
}

}


