@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;900&display=swap');
@font-face {
  font-family: "NSJPL";
  font-style: normal;
  font-weight: 300;
  src: url("../../font/nsjpl/NSJPL-Light.woff2") format("woff2");
}
@font-face {
  font-family: "NSJPL";
  font-style: normal;
  font-weight: 400;
  src: url("../../font/nsjpl/NSJPL-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "NSJPL";
  font-style: normal;
  font-weight: 500;
  src: url("../../font/nsjpl/NSJPL-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "NSJPL";
  font-style: normal;
  font-weight: 700;
  src: url("../../font/nsjpl/NSJPL-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "NSJPL";
  font-style: normal;
  font-weight: 900;
  src: url("../../font/nsjpl/NSJPL-Black.woff2") format("woff2");
}


body {
    color: #333333;
    font-family: 'Heebo', 'NSJPL', sans-serif;
    font-weight: 400;
    background-color: #FFF;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
}
.taL {
  text-align: left !important;
}
.taC {
  text-align: center !important;
}
.taR {
  text-align: right !important;
}

#wrapper {
  width: 100%;
  background-color: #ffffff;
  overflow: hidden;
}

.disabledbtn {
  pointer-events: none;
  opacity: 1.0;
}

/* ヘッダ */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 72px;
  background-color: #FFF;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
  z-index: 999;
  /* border-bottom: 2px solid #516359; */
  box-sizing:  border-box;
  z-index: 1000;
}
.headerCont {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;  
}
/* ヘッダロゴ */

.headerCont a.logo {
  position: absolute;
  top: 12px;
  left: 0;
  width: 400px;
  height: 50px;
  background: url(../img/logo.png) left top / auto 100% no-repeat;
  text-indent: -100%;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
.headerCont a.logo {
  left: 10px;
}
}
@media only screen and (max-width: 768px) {
  .header {
    height: 60px;
  }
  .headerCont a.logo {
    /* width: 123px; */
    height: 45px;
    top: 7px;
    left: 0px;
  }
}

/* ヘッダ右側アイコン */
.headerIcon {
  position: absolute;
  top: 8px;
  right: 0;
}
.headerIcon a {
  display: block;
  float: left;
  margin: 0 9px;
  text-align:center;
  line-height: 150%;
}
.headerIcon a:last-child {
  margin-right:0;
}
@media only screen and (max-width: 480px) {
  .headerIcon a {
  margin: 0 5px 0;
}
.headerIcon a:last-child {
  margin-right:5px;
}
}
.headerIcon a i {
  transition: all 300ms 0s ease;
}
.headerIcon a:hover i {
  color: #77d046;
}
.headerIcon a span {
    font-size: 0.6em;
    display: block;
    text-align: center;
    padding-top: 3px;
    line-height: 1.5;
    color: #333333;
}
.headerIcon .fa-shopping-cart,
.headerIcon .fa-user,
.headerIcon .fa-crown,
.headerIcon .fa-sign-in-alt,
.headerIcon .fa-sign-out-alt {
  padding: 0;
  color: #b3b3b3;
  font-size: 40px;
}
.headerIcon .fa-user {font-size: 37px;padding-bottom: 3px;}
.headerIcon .fa-crown {font-size: 37px;padding-bottom: 3px;}
.headerIcon .fa-sign-in-alt {
  font-size: 40px;
  position: relative;
}
.headerIcon .fa-sign-out-alt {
  font-size: 40px;
  position: relative;
}
.headerIcon .fa-shopping-cart {
  position: relative;
  right: 4px;
  padding-bottom: 3px;
  font-size: 37px;
}
@media only screen and (max-width: 768px) {
  .headerIcon {
    position: absolute;
    top: 8px;
    right: 5px;
  }
  .headerIcon a span {
    font-size: 0.6em;
    display: block;
    text-align: center;
    line-height: 0.7;
  }
  .headerIcon .fa-shopping-cart,
  .headerIcon .fa-user,
  .headerIcon .fa-crown,
  .headerIcon .fa-sign-in-alt,
  .headerIcon .fa-sign-out-alt {
    padding: 0 0 6px;
    font-size: 30px;
  }
  .headerIcon .icon-outline-login {
    padding-right: 10px;
    font-size: 32px;
  }
}

@media only screen and (max-width: 480px) {
  .headerIcon {
    top: 8px;
    right: 0px;
  }
  .headerIcon a span {
    padding-top: 1px;
  }
  .headerIcon .fa-shopping-cart{
      font-size: 30px;
      position: relative;
      right: 3px;
  }
  .headerIcon .fa-user {
    font-size: 30px;
  }
  .headerIcon .fa-crown {
    font-size: 30px;
    padding-left: 0;
  }
}

/* 緊急お知らせ */
.caution_box {
  padding: 15px;
  background: #FFF;
  margin: 0 15px 50px;
  border: 1px solid #000;
}
@media only screen and (max-width: 480px) {
  .caution_box {
    margin-bottom:20px;
  }
  .caution_box p {
    text-align: left;
  }
}


/* information部分 */
.infoArea {
  width: 100%;
  background-color: #ffffff;
  overflow: hidden;
}

.infoAreaInner {
  width: 98%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 45px 0 25px;
  overflow:  hidden;
}
.infoAreaInner > li {
  float: left;
}
.infoArea i {
  color:#77d046;
  padding-right: 4px;
}
@media only screen and (max-width: 768px) {
  .infoAreaInner {
    padding: 15px 0 50px;
  }
  .infoAreaInner > li {
    display: block;
    clear: both; 
  }
}
@media only screen and (max-width: 480px) {
  .infoAreaInner {
    padding: 15px 0 50px;
  }
}
.infoAreaInner .infoSpace {
  width: 48%;
  margin-right: 4%;
}
@media only screen and (max-width: 768px) {
  .infoAreaInner .infoSpace {
    width: 98%;
    margin: 0 1% 30px;
  }
}

.title_Info {
  position: relative;
  padding: 0.3em 0.3em 0.3em;
  font-size: 26px;
  line-height: 1.2;
  font-weight:  normal;
  text-align: left;
  /* background:#fedfd8; */
}
.title_Info:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    content: '';
    border-radius: 3px;
  background-image: -webkit-gradient(linear, right top, left top, from(#66d6c5), to(#77d046));
  background-image: -webkit-linear-gradient(right, #66d6c5 0%, #77d046 100%);
  background-image: linear-gradient(to left, #66d6c5 0%, #77d046 100%);
}
.title_Info .icon-outline-info {
  position:  relative;
  top: 3px;
  right:  3px;
  font-size: 1.2em;
}
@media only screen and (max-width: 768px) {
  .title_Info {
    padding: 12px;
  }
  .title_Info span {
    font-size: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .title_Info {
    padding: 15px 0 5px 14px;
    font-size: 20px;
    line-height: 1.6;
  }
  .title_Info:after {
    left: 10px;
    right: 10px;
    width: 96%;
  }
  .title_Info span {
    font-size: 24px;
  }
}

.infoMenu {
  margin: 26px 5px;
}
.infoMenu dl {
  border-bottom: dotted 1px #999999;
}
.infoMenu dl a {
  color:#333333;
}
.infoMenu dl a:hover {
  color:#1a1a1a;
  text-decoration:none;
}
.infoMenu dt {
  margin: 23px 0 17px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}
.infoMenu .icon-outline-mail {
  padding-right:5px;
  font-size:1.3em;
  position:relative;
  top:3px;
}
.infoMenu .icon-outline-help {
  padding-right:5px;
  font-size:1.3em;
  position:relative;
  top:3px;
  right:1px;
}
.infoMenu .icon-outline-price {
  padding-right:5px;
  font-size:1.2em;
  position:relative;
  top:2px;
}
.infoMenu dd {
  padding-bottom: 20px;
  line-height: 24px;
  font-size: 14px;
}
.infoMenu dd.qaBlank {
  padding-bottom: 3px;
}
@media only screen and (max-width: 768px) {
  .infoMenu {
    margin: 25px 10px;
  }
  .infoMenu dt {
    padding-left: 10px;
    font-size: 22px;
  }
  .infoMenu dd {
    padding-left: 10px;
    line-height: 24px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .infoMenu {
    margin: 22px 2%;
  }
  .infoMenu dt {
    padding-left: 5px;
    font-size: 17px;
  }
  .infoMenu dd {
    padding-left: 5px;
    font-size: 12.5px;
    line-height: 21px;
  }
}

.qaSpace:after {
  font-family: FontAwesome;
  content: "\f0da";
  margin: 0 0 10px;
  padding: 0 0 0 14px;
  color: #77d046;
  font-size: 17px;
}

.qaSpace_2:after {
  font-family: FontAwesome;
  content: "\f0da";
  margin: 0 0 10px;
  padding: 0 0 0 5px;
  color: #77d046;
  font-size: 17px;
}

/* お支払方法部分 */
.accMenu > dt,
.qaMenu > dt,
.qaSpace dt {
  /* padding-top: 23px; */
  line-height: 1;
  font-size: 18px;
  cursor: pointer;
}

.accMenu > dt:after{
  font-family: FontAwesome;
  content: "\f0da";
  margin: 0 0 10px;
  padding: 0 0 0 5px;
  color: #77d046;
  font-size: 17px;
}

.qaMenu a:after {
    font-family: FontAwesome;
  content: "\f0da";
  margin: 0 0 10px;
  padding: 0 0 0 5px;
  color: #77d046;
  font-size: 17px;
}


.accMenu > dt:after {
  font-family: FontAwesome;
  content: "\f0d7";
  margin: 0 0 10px;
  padding: 0 0 0 14px;
  color: #77d046;
  font-size: 17px;
}

.accMenu > dt.open:after {
  content: "\f0d8";
}
.accMenu > dd,
.qaMenu > dd{
  display: none;
  margin-top: 10px;
  font-size: 13px;
  font-weight: bold;
}
.accMenu dd ul li,
.qaMenu dd ul li{
  font-weight: normal;
  line-height: 26px;
}

.qaMenu dd ul li:after {
  font-family: FontAwesome;
  content: "\f0da";
  margin: 0 0 10px;
  padding: 0 0 0 10px;
  color: #77d046;
  font-size: 17px;
}

.accMenu dd ul li ul.paymentList,
.qaMenu dd ul li ul.paymentList{
  padding-left: 25px;
}
.payNotice {
  line-height: 18px;
  font-size: 12px;
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  .accMenu > dt,
  .qaMenu > dt,
  .qaSpace dt {
    padding: 0 0 0 5px;
    line-height: 60px;
    font-size: 20px;
}

  .accMenu > dt:after,
  .qaMenu > dt:after{
    font-size: 20px;
  }
  .accMenu > dd,
  .qaMenu > dd {
    margin-top: 8px;
    font-size: 14px;
  }
  .accMenu dd ul,
  .qaMenu dd ul {
    margin-top: 20px;
  }
  .accMenu dd ul li,
  .qaMenu dd ul li{
    line-height: 20px;
  }
  .payNotice {
    margin-top: 0;
    font-size: 14px;
  }
}
@media only screen and (max-width: 480px) {
  .accMenu > dt,
  .qaMenu > dt,
  .qaSpace dt {
    line-height: 46px;
    font-size: 17px;
    margin: 0;
}
  .accMenu > dt:after,
  .qaMenu > dt:after{
    font-size: 20px;
  }
  .accMenu dd ul li,
  .qaMenu dd ul li{
    line-height: 20px;
  }
  .accMenu > dd,
  .qaMenu > dd{
    margin-top: 10px;
    font-size: 13px;
  }
  .payNotice {
    font-size: 13px;
  }
}

.ip_inquiryMenu dt {
  margin-top: 12px;
}

@media only screen and (max-width: 768px) {
  .qaMenu dt,
  .inquiryMenu dt {
    margin-top: 0;
    padding: 0 0 0 5px;
    line-height: 60px;
    font-size: 20px;
 }
  .ip_inquiryMenu dt {
    margin-top: 10px;
    padding: 0 0 0 5px;
  }

  .qaSpace:after {
    font-size: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .qaMenu dt,
  .inquiryMenu dt {
    line-height: 50px;
    font-size: 18px;
    margin: 0;
 }
  .ip_inquiryMenu dt {
    line-height: 50px;
    font-size: 18px;
  }

  .qaSpace:after {
    font-size: 20px;
  }
}

/* Link部分 */
.infoAreaInner .linkSpace {
  width: 48%;
  padding-right: 1px;
  margin-bottom: 30px;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .infoAreaInner .linkSpace {
    width: 96%;
    margin: 0 2%;
  }
}
.snslink p {
  font-weight: bold;
  font-size: 18px;
  margin: 23px 0 17px;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .snslink p {
    font-size: 17px;
  }
}
.snslink i {
  margin: 0 3px 0 7px;
}
.sns_x i {
  margin: 0 20px 0 7px;
  font-size: 2em;
  transition: background-color 0.3s, color 0.3s;
}
.snslink a {
  padding: 0.8em 1em;
  border: solid 3px #77d046;
  border-radius: 10px;
  font-weight: bold;
  margin: 5px;
  display: flex;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.3s, color 0.3s;
  align-items: center;
  font-size: 18px;
  line-height: normal;
}
.snslink a:hover {
  background-color: #77d046;
  color: #FFF;
}
.snslink a:hover i {
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .snslink a {
    font-size: 17px;
  }
}
.shoplink p {
  font-weight: bold;
  margin: 2em 0 5px;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .shoplink p {
    font-size: 17px;
  }
}
.shoplink i {
  margin: 0 3px 0 7px;
}
.shoplink ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 5px;
}
.shoplink li {
  margin: 3px;
  width: calc(50% - 6px);
}
.shoplink img {
  width: 100%;
  height: auto;
  display: block;
  border:solid 1px #ccc;
}

/* フッタ */
footer {
  width: 100%;
  background-color: #f4f4f4;
}
footer ul {
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}
footer ul li {
  display: inline;
  padding: 0 10px;
  border-right: 1px solid #999999;
  font-size: 12.5px;
}
footer ul li:last-child {
  border-right: none;
}
@media only screen and (max-width: 480px) {
  footer ul {
    padding: 10px 0;
  }
  footer ul li {
    padding: 0 5px 0 0;
    font-size: 0.65em;
  }
}
/* コピーライト */
.publisher p {
  text-align: center;
  font-size: 12px;
  margin-top: 30px;
}
.publisher {
  width: 100%;
}
.copyright {
  margin: 0 auto;
  padding-bottom: 30px;
  text-align: center;
}
.copyright p {
  font-size: 12px;
}
@media only screen and (max-width: 480px) {
  .copyright p {
    font-size: 0.6em;
  }
}

/* ページトップへ */
#pageTop {
  position: fixed;
  right: 22px;
  bottom: 15px;
  z-index: 10;
}
#pageTop a {
  width: 100px;
  font-size: 50px;
  color: #77d046;
  vertical-align:  bottom;
  line-height: 0;
}
#pageTop a:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 480px) {
#pageTop {
  right: 14px;
}
}

/* 購入する */
#buyBtnCircle {
  position: fixed;
  width: 62px;
  right: 14px;
  bottom: 171px;
  z-index: 10;
}
#buyBtnCircle a {
  vertical-align:  bottom;
  line-height: 0;
}
#buyBtnCircle a:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 480px) {
#buyBtnCircle {
  right: 9px;
  bottom: 160px;
}
}

/* ボタンエフェクト */
.btn-zoom:after {
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transform: scale(0.5);
transform: scale(0.5);
}
.btn-zoom:hover:after {
background: #77d046;
-webkit-transform: scale(1);
transform: scale(1);
}
.btn-effect:after {
position: absolute;
z-index: -1;
display: block;
content: '';
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all .3s;
transition: all .3s;
}


/*-------------------------------------------------
横向き縦向き設定
----------------------------------------------- */

.landscape {
  width: 100vmax;
  height: 100vmin;
  background: rgba(0, 0, 0, 0.9);
  background-size: cover;
  position: fixed;
  z-index: 10000;
  overflow: hidden;
  display: none;
}

.landscape.is-active {
  display: block;
}
.qaSpace:after
.landscape__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.landscape__inner img {
  width: 40vw;
}

.landscape__inner p {
  font-size: 3vw;
  color: #fff;
  letter-spacing: 2px;
}

.singleSentence a{
  color: #ff7864;
}

.leftMarginSentence a {
  color: #ff7864;
}