@charset "UTF-8";
/*リセット
--------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*フォント
---------------------------------------------*/
@font-face {
  font-family: "noto-sans";
  src: url("../fonts/NotoSansCJKjp-Regular.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Regular.woff") format("woff"), url("../fonts/NotoSansCJKjp-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "noto-sans";
  src: url("../fonts/NotoSansCJKjp-Bold.woff2") format("woff2"), url("../fonts/NotoSansCJKjp-Bold.woff") format("woff"), url("../fonts/NotoSansCJKjp-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "grandam";
  src: url("../fonts/grandam.woff2") format("woff2"), url("../fonts/grandam.woff") format("woff"), url("../fonts/grandam.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "apercu";
  src: url("../font/apercu/apercu_regular_pro.eot.woff2") format("woff2"), url("../font/apercu/apercu_regular_pro.eot.woff") format("woff"), url("../font/apercu/apercu_regular_pro.eot.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
/*メディアクエリー
---------------------------------------------*/
/*変数
---------------------------------------------*/
/* コンテンツ
---------------------------------------------*/
html {
  font-weight: 400;
  line-height: 1.5;
  width: 100%;
  height: 100%;
  color: #333;
}

body {
  position: relative;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
  line-height: 24px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

span.bold {
  font-weight: bold;
}

div#wrap {
  width: 100%;
  overflow-x: hidden;
}
div#wrap .content a {
  color: #333;
  /*

  border: 1px solid #333;
  display: block;
  margin: 20px auto 0;
  text-align: center;
  text-decoration: none;
  padding: 10px 0;
  transition: 1s;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 0.3em;
  position: relative;
  z-index: 1;
  @include mq(pc) {
    font-size: 20px;
  }
  @include mq(sp) {
    font-size: 16px;
  }

  &:hover {
    background: rgba(255,255,255,0.5);
    color: #fff;
  }*/
}
div#wrap .content a i {
  padding-right: 5px;
}
div#wrap .button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
  margin-top: 10px;
  margin-left: 5px;
  transition: 0.4s;
  padding: 2px 10px;
}
@media screen and (min-width: 769px) {
  div#wrap .button {
    background: rgba(211, 173, 21, 0);
    border: 1px solid #333;
    color: #333;
  }
}
@media screen and (max-width: 768px) {
  div#wrap .button {
    color: #fff;
    background-color: rgba(211, 173, 21, 0.8);
  }
}
div#wrap .button:hover {
  color: #fff;
  background-color: rgba(211, 173, 21, 0.8);
  border: 1px solid #d3ad15;
}
div#wrap div#mainArea {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  div#wrap div#mainArea {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /*position: relative;*/
    background: url("../images/main_pc.jpg") center bottom;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#mainArea {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: url("../images/main_sp.jpg") center bottom;
    background-size: cover;
  }
}
div#wrap div#mainArea div.title {
  padding: 10px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  div#wrap div#mainArea div.title {
    /*margin: 0 auto;*/
    margin-right: 5%;
    width: 40%;
    background: rgba(255, 255, 255, 0.8);
    text-shadow: 0px 0px 12px #FFF;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#mainArea div.title {
    width: 90%;
    margin: 5% auto;
    background: rgba(255, 255, 255, 0.8);
    text-shadow: 0px 0px 12px #FFF;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
  }
}
div#wrap div#mainArea div.title .main-heading {
  width: 100%;
  border: 1px solid #333;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  div#wrap div#mainArea div.title .main-heading {
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#mainArea div.title .main-heading {
    padding: 30px 10px;
  }
}
@media screen and (min-width: 769px) {
  div#wrap div#mainArea div.title .russet_logo {
    width: 15%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#mainArea div.title .russet_logo {
    width: 15%;
    margin: 20px auto 0;
  }
}
div#wrap div#mainArea div.title .main-heading-primary {
  display: block;
  font-weight: 400;
  animation: moveInLeft 1s ease-out;
  font-family: capitolina, serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  div#wrap div#mainArea div.title .main-heading-primary {
    font-size: 50px;
    line-height: 1.2em;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#mainArea div.title .main-heading-primary {
    font-size: 35px;
    line-height: 1.2em;
  }
}
div#wrap div#mainArea div.title .main-heading-secondary {
  display: block;
  font-weight: 400;
  animation: moveInRight 1s ease-out;
}
@media screen and (min-width: 769px) {
  div#wrap div#mainArea div.title .main-heading-secondary {
    font-size: 18px;
    padding: 20px 0;
    line-height: 1.2em;
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#mainArea div.title .main-heading-secondary {
    font-size: 18px;
    padding: 10px 0 0;
    line-height: 2em;
  }
}
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
div#wrap div#mainArea div.title h1 {
  box-sizing: border-box;
  /*span {
    display: inline-block;
    @include mq(pc) {
      font-size: 18px;
      padding: 0 0 20px;
    }

    @include mq(sp) {
      font-size: 14px;
      padding: 0;
    }
  }*/
}
@media screen and (min-width: 769px) {
  div#wrap div#mainArea div.title h1 {
    text-align: center;
    width: 100%;
    margin: 0;
    font-size: 30px;
    /*width: 50%;
       font-size: 40px;
       text-shadow:0px 0px 12px #FFF;
       text-align: left;
       position: absolute;
    max-width: 800px;
     bottom: 2%;
     left: 32%;
     -webkit-transform: translate(-60%, -2%);
       transform: translate(-60%, -2%);*/
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#mainArea div.title h1 {
    text-align: center;
    width: 100%;
    margin: 30px auto;
    font-size: 30px;
  }
}
div#wrap div#content {
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 769px) {
  div#wrap div#content {
    margin: 80px auto;
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#content {
    margin: 50px auto;
    width: 90%;
  }
}
@media screen and (min-width: 769px) {
  div#wrap div#content div.lead {
    width: 80%;
    margin: 0 auto 80px;
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#content div.lead {
    margin: 0 auto 50px;
  }
}
@media screen and (min-width: 769px) {
  div#wrap div#content div.lead h2.fsize_l {
    margin-bottom: 40px;
    line-height: 2;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#content div.lead h2.fsize_l {
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.8em;
    font-size: 16px;
  }
}
@media screen and (min-width: 769px) {
  div#wrap div#content div.lead p.txt_l {
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#content div.lead p.txt_l {
    text-align: left;
    line-height: 1.5;
    margin-bottom: 7px;
  }
}
@media screen and (min-width: 769px) {
  div#wrap div#content h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#content h3 {
    font-size: 18px;
    margin-top: 15px;
  }
}
div#wrap div#content h3 span {
  letter-spacing: -0.2em;
}
div#wrap div#content h4 {
  margin-bottom: 10px;
  color: #b89b49;
}
@media screen and (min-width: 769px) {
  div#wrap div#content h4 {
    font-size: 16px;
    /*margin-bottom: 10px;*/
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#content h4 {
    font-size: 16px;
  }
}
div#wrap div#content .bg {
  background-color: #fff5ef;
}
@media screen and (min-width: 769px) {
  div#wrap div#content .bg {
    border-radius: 50%;
    width: 500px;
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#content .bg {
    border-radius: 25px/25px;
  }
}
@media screen and (min-width: 769px) {
  div#wrap div#content div.box1 {
    width: 80%;
    margin: 40px auto;
    padding: 20px 0;
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#content div.box1 {
    margin: 0 auto 20px;
    padding: 20px 0;
  }
}
@media screen and (min-width: 769px) {
  div#wrap div#content div.box1 .mg_top {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#content div.box1 .mg_top {
    margin-top: 15px;
  }
}
div#wrap div#content div.box1 p.box01_txt {
  text-align: left;
}
@media screen and (max-width: 768px) {
  div#wrap div#content div.box1 p.box01_txt {
    margin-bottom: 20px;
  }
}
div#wrap div#content div.box1 p.box01_txt span {
  background: linear-gradient(transparent 80%, #fcd6c0 80%);
}
div#wrap div#content div.box1 ul.box_info {
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  div#wrap div#content div.box1 ul.box_info {
    margin-top: 15px;
  }
}
@media screen and (min-width: 769px) {
  div#wrap div#content div.box1 ul.box_info li.info_txt {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#content div.box1 ul.box_info li.info_txt {
    margin: 15px;
  }
}
div#wrap div#content div.box1 ul.box_info span.line {
  background: linear-gradient(transparent 80%, #fcd6c0 80%);
}
div#wrap div#content div.box1 ul.box_info li.limited {
  color: #d45657;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  div#wrap div#content div.box1 ul.box_info li.limited {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#content div.box1 ul.box_info li.limited {
    font-size: 16px;
  }
}
div#wrap div#content div.box1 ul.box_info a {
  color: #b89b49;
}
div#wrap div#content div.box1 .button {
  display: block;
}
@media screen and (max-width: 768px) {
  div#wrap div#content div.box1 .button {
    margin: 10px auto;
    padding: 5px;
    color: #fff;
  }
}
div#wrap div#content div.box1 .box01 {
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  div#wrap div#content div.box1 .box01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  div#wrap div#content div.box1 .box01 .box01_1 {
    width: calc(100% / 2 - 30px);
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#content div.box1 .box01 .box01_1 {
    width: 95%;
    margin: 0 auto 30px;
  }
}
div#wrap div#content div.box1 .box01 .box01_1 img {
  width: 70%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  div#wrap div#content div.box1 .box02 {
    width: 70%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  div#wrap div#content div.box1 .box02 .box02_1 {
    width: 100%;
    margin: 40px auto;
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#content div.box1 .box02 .box02_1 {
    width: 100%;
    margin: 20px auto 10px;
  }
}
div#wrap div#content div.box1 .box02 .box02_1 p.box02_txt {
  text-align: left;
}
@media screen and (min-width: 769px) {
  div#wrap div#content div.box1 .box02 .box02_1 p.box02_txt {
    width: 60%;
    margin: 0 auto;
  }
}
div#wrap div#content div.box1 .box03 {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 70%;
  margin: 20px auto 0;
}
@media screen and (min-width: 769px) {
  div#wrap div#content div.box1 .box03 {
    font-size: 13px;
    line-height: 1.4em;
  }
}
@media screen and (min-width: 769px) {
  div#wrap div#content div.box1 .box03 .box03_1 {
    width: calc(100% / 3 - 15px);
    box-sizing: border-box;
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#content div.box1 .box03 .box03_1 {
    width: calc(100% / 2 - 15px);
    margin: 0 auto 15px;
  }
}
div#wrap div#content div.box1 .box03 .box03_1 img {
  border: 1px solid #efefef;
}
@media screen and (min-width: 769px) {
  div#wrap div#content div.box1 .box03 .box03_1 img {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#content div.box1 .box03 .box03_1 img {
    margin-bottom: 5px;
  }
}
div#wrap div#content div.box1 .box03 .box03_1 a {
  text-decoration: none;
  display: inline-block;
}
div#wrap div#content div.box1 .box03 .box03_1 a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  transition: 0.3s ease-in-out;
}
div#wrap div#content div.box1 .box04 {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  div#wrap div#content div.box1 .box04 {
    font-size: 13px;
    line-height: 1.4em;
    width: 70%;
    margin: 0 auto 40px;
  }
}
@media screen and (min-width: 769px) {
  div#wrap div#content div.box1 .box04 .box04_1 {
    width: calc(100% / 3 - 15px);
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#content div.box1 .box04 .box04_1 {
    width: calc(100% / 2 - 15px);
    margin: 0 auto 15px;
  }
}
div#wrap div#content div.box1 .box04 .box04_1 img {
  border: 1px solid #efefef;
}
@media screen and (min-width: 769px) {
  div#wrap div#content div.box1 .box04 .box04_1 img {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#content div.box1 .box04 .box04_1 img {
    margin-bottom: 5px;
  }
}
div#wrap div#content div.box1 .box04 .box04_1 a {
  text-decoration: none;
  display: inline-block;
}
div#wrap div#content div.box1 .box04 .box04_1 a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  transition: 0.3s ease-in-out;
}
div#wrap div#content div.box1 .box04 .box04_1 .buy_btn {
  background-color: #333;
  color: #fff;
}
@media screen and (min-width: 769px) {
  div#wrap div#content div.box1 .box04 .box04_1 .buy_btn {
    padding: 7px 0;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  div#wrap div#content div.box1 .box04 .box04_1 .buy_btn {
    padding: 5px 0;
    margin-bottom: 20px;
  }
}
div#wrap div#content .box_list {
  margin-top: 100px;
}
div#wrap div#content .box_list .button {
  padding: 10px 20px;
  font-size: 14px;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none;
  }
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #fff;
}

div#footer {
  width: 100%;
  padding: 0 0 10px;
  background: #fff;
  height: 150px;
  position: relative;
}
div#footer a {
  display: block;
}
@media screen and (min-width: 769px) {
  div#footer a {
    width: 200px;
    height: auto;
    margin: 100px auto 80px;
  }
}
@media screen and (max-width: 768px) {
  div#footer a {
    width: 35%;
    height: auto;
    margin: 0 auto 50px;
  }
}
div#footer div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
div#footer p.sentence {
  text-align: center;
  color: #b89b49;
}
@media screen and (min-width: 769px) {
  div#footer p.sentence {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  div#footer p.sentence {
    font-size: 20px;
  }
}
@media screen and (min-width: 769px) {
  div#footer p.logo {
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  div#footer p.logo {
    width: 70px;
    margin: 0 auto 100px;
  }
}
div#footer p.logo a {
  display: block;
  width: 100%;
}
div#footer p.copy {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 769px) {
  div#footer p.copy {
    bottom: -130px;
  }
}
@media screen and (max-width: 768px) {
  div#footer p.copy {
    bottom: 20px;
  }
}

#page-top {
  background: #333;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 999;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}
#page-top a {
  color: #fff;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
  display: block;
  text-align: center;
  font-size: 20px;
}

/* ANIMATION
--------------------------------------*/
.fuwatAnime {
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-name: fuwatAnime;
  visibility: visible !important;
}

.fuwatAnime2nd {
  animation-delay: 0.5s;
}

.fuwatAnime3rd {
  animation-delay: 0.6s;
}

.fuwatAnime4th {
  animation-delay: 0.9s;
}
@keyframes fuwatAnime {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* loading
--------------------------------------*/
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  top: 0px;
  left: 0px;
  background: #FFF;
  z-index: 1;
  z-index: 99999;
}
#loader-bg #loading {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  #loader-bg #loading {
    width: 40%;
    margin: auto;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  #loader-bg #loading {
    width: 100%;
    margin: auto;
    height: 100%;
  }
}
@media screen and (min-width: 769px) {
  #loader-bg #loading div {
    width: 20%;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  #loader-bg #loading div {
    width: 40%;
    margin: auto;
  }
}

.main {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

* {
  box-sizing: border box;
}

@media screen and (min-width: 769px) {
  .center {
    margin: 50px 25px;
  }
}
@media screen and (max-width: 768px) {
  .center {
    margin: 20px 5px;
  }
}

.btn,
button {
  box-sizing: border-box;
  color: #333;
  border: none;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
  transition: color 0.1s cubic-bezier(0.16, 0.08, 0.355, 1), background 0.1s cubic-bezier(0.16, 0.08, 0.355, 1);
  display: block;
  cursor: pointer;
  width: 100%;
  min-width: 200px;
  min-width: 20rem;
  outline: none;
  vertical-align: middle;
  text-align: left;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn:hover,
button:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  transition: 0.3s ease-in-out;
}
.btn span,
button span {
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  margin-left: 10px;
}