@charset "utf-8";

/* RESET
----------------------------------------------------------------------------------------------------*/
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,picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  line-height: 1.5em;
  text-align: left;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}
picture {
  display: block;
}

/* ----------------------------------------------

 * 設定をしなおす

---------------------------------------------- */
:root {
  --inner: 100rem;
}
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}
html {
  font-size: 62.5%;
}
/*@media screen and (max-width: 1200px) {
  html {
    font-size: 0.7320644217vw;
  }
}*/
@media screen and (max-width: 441px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  margin: 0 auto;
  padding: 0;
  line-height: 1.8em;
  -webkit-text-size-adjust: 100%;
  color: #383011;
  height: 100%;
  font-family: YakuHanJP,"Zen Kaku Gothic New","游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Sogoe UI", Verdana, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  position: relative;
  font-size: 1.5rem;
}

.en {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

sup,sub {
  font-size: 70%;
}
small {
  font-size: 80%;
}


table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}

a {
  outline:none;
  color: #383011;
}

a:hover {
  text-decoration: none;
}

a,a:hover,a:hover img,button,input {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  filter: alpha(opacity=60);
  -moz-opacity:0.60;
  opacity:0.60;
}

* {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}

@media(max-width:441px){
  .sp_none{display:none !important;}
}
@media print, screen and ( min-width : 442px ) {
  .sp{
    display:none !important;
  }
}


/* -----------------------------------------------
 * base.css
----------------------------------------------- */

main {display: block;}
img {
    max-width: 100%;
    height: auto;
    -webkit-backface-visibility: hidden;
}
.container {
  max-width: calc(var(--inner) + 4rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.container--large {
  max-width: 124rem;
}

@media only screen and ( max-width : 767px ) {
  .br_pc {
    display: none;
  }
}
@media only screen and ( max-width : 441px ) {
  .container {
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media print, screen and ( min-width : 768px ) {
  .posL {
    float: left;
  }
  .posR {
    float: right;
  }
  .br_sp {
    display: none;
  }
}



/* ---------------------------------------------------------------------------------------------

　   FLEX

--------------------------------------------------------------------------------------------- */
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}


@media (min-width: 576px) {
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 768px) {
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

/* ---------------------------------------------------------------------------------------------

　   TEXT

--------------------------------------------------------------------------------------------- */
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */
#header {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  position: sticky;
}
/*#navbar {
  width: 442px;
  margin: 0 auto;
}*/
#menu_btn {
  transition: .3s;
  cursor: pointer;
  position: absolute !important;
  z-index: 9999;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 20px !important;
  right: 15px !important;
  left: auto !important;
  width: 26px !important;
  height: 22px !important;
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  transition: opacity .5s;
}
.overlay.open {
  width: 100%;
  height: 100vh;
  height: 100svh;
  opacity: 1;
}
#main {
  height: 100%;
  transition: all .5s;
}
.menu-trigger {
  vertical-align: middle;
  text-align: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all .5s;
}
#menu_btn .midnightHeader.white .menu-trigger span {
  background: #000;
}
#menu_btn.active .menu-trigger span {
  background-color: #000;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(3) {
}
#menu_btn.active .menu-trigger span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
  top: 10px;
  width: 70%;
  left: auto;
  right: 0;
}
#menu_btn.active .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
#menu_btn.active .menu-trigger span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

#gNav {
  height: 100vh;
  height: 100svh;
  overflow: auto;
  background-color: rgba(255,255,255,.95);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 101;
  transition: all .2s;
  width: 28rem;
  /*transform: translate(28rem);*/
  padding: 2.5rem 0;
  opacity: 0;
  visibility: hidden;
  box-shadow: -7px 0 10px rgba(0,0,0,.25);
}
#gNav.open {
  /*transform: translateZ(0);*/
  opacity: 1;
  visibility: visible;
}
#gNav .nav li {
  border-bottom: .036rem solid #231815;
}
#gNav .nav li:first-child {
  border-top: .036rem solid #231815;
}

#gNav .nav li a {
  position: relative;
  display: block;
  padding: 1.5rem 6rem 1.5rem 4rem;
}
#gNav .nav li a:after {
  content: "";
  width: .4rem;
  height: .6rem;
  background: url(../images/arrow.svg) no-repeat center / 100%;
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
}
#gNav .nav li a img {
  display: block;
}
#gNav .subnav {
  margin: 2.5rem 0 4rem;
  padding: 0 4rem;
}
#gNav .subnav li {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
#gNav .subnav li:last-child {
  margin-bottom: 0;
}
#gNav .nav_instagram {
  margin: 0 4rem;
}
#h_logo {
  padding: 0 4rem;
  margin-bottom: 2.5rem;
}
#h_logo img {
  width: 4rem;
}

.nav_instagram img {
  width: 18.4rem;
}




/* ---------------------------------------------------------------------------------------------

　   FOOTER

--------------------------------------------------------------------------------------------- */
#footer {
  padding: 3rem 0 12rem;
  border-top: .025rem solid #000;
  margin: 3.75rem 1.75rem 0;
}
.f_logo,
#footer .copy {
  text-align: center;
}
#footer .copy {
  font-size: 1rem;
}
.f_nav,
.f_logo {
  margin-bottom: 3rem;
}
.f_nav li {
  text-align: center;
  margin-bottom: 1rem;
}
.f_nav li:last-child {
  margin-bottom: 0;
}



/* ---------------------------------------------------------------------------------------------

　   固定ボタン

--------------------------------------------------------------------------------------------- */

#fixed_btn {
  position: fixed;
  z-index: 99;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: none;
}


@media only screen and ( max-width : 767px ) {
  
}
@media print, screen and ( min-width : 768px ) {
  #fixed_btn {
    bottom: 0;
  }
  .fixed_btn_inner {
    max-width: 442px;
    margin: 0 auto;
  }
}





/* ---------------------------------------------------------------------------------------------

　   CONTENTS

--------------------------------------------------------------------------------------------- */
#main {
  overflow: hidden;
}
#wrapper {
  /*overflow: hidden;*/
}
.title {
  text-align: center;
  margin-bottom: 2rem;
}
.box {
  margin-bottom: 1.5rem;
}
.box:last-child {
  margin-bottom: 0;
}
.box_title {
  position: relative;
  border: .3px solid #9C9E9C;
  margin-bottom: .5rem;
}
.box_title:before,
.box_title:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
}
.box_title:before {
  left: -2px;
  top: -2px;
}
.box_title:after {
  right: -2px;
  bottom: -2px;
}
.box_content {
  background: rgba(236,236,236,.5);
  padding: 1.5rem;
}
.box_content p {
  font-size: 1.4rem;
  line-height: 2em;
}
.box_content p .small_text {
  font-size: 1.1rem;
}
.box_content figure {
  margin-top: 1.5rem;
}
.sec_photo img {
  width: 100%;
}
.mb-0 {
  margin-bottom: 0 !important;
}
@media only screen and ( max-width : 767px ) {
  #pc_fixed_nav,
  #pc_fixed_qr {
    display: none;
  }
}

@media print, screen and ( min-width : 442px ) {
  #wrapper:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url(../images/bg.jpg) no-repeat center / cover fixed;
  }
  #wrapper {
    max-width: 442px;
    margin: 0 auto;
    background: #fff;
    position: relative;
    box-shadow: 0px 7px 20px rgba(0,0,0,.25);
  }
}
@media print, screen and ( min-width : 768px ) {
  #pc_fixed_nav {
    position: fixed;
    top: 2rem;
    left: 2rem;
    max-width: 16%;
  }
  .pc_logo {
    margin-bottom: 6.5rem;
  }
  .pc_nav {
    margin-bottom: 6.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .pc_nav li {
    margin-bottom: 3rem;
    position: relative;
  }
  .pc_nav li a {
    position: relative;
    padding-bottom: .6rem;
    display: block;
  }
  .pc_nav li:before {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    bottom: 0;
    transition: .3s;
  }
  .pc_nav li:hover:before,
  .pc_nav li.current:before {
    width: 100%;
  }
  .pc_nav li:after,
  .pc_nav li a:after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    bottom: -1.5px;
    left: -2px;
    transition: .3s;
    opacity: 0;
  }
  .pc_nav li:hover:after,
  .pc_nav li:hover a:after,
  .pc_nav li.current:after,
  .pc_nav li.current a:after {
    opacity: 1;
  }
  .pc_nav li:hover a:after,
  .pc_nav li.current a:after {
    left: 100%;
  }
  .pc_nav li:hover a {
    opacity: 1;
  }
  .pc_nav li:last-child {
    margin-bottom: 0;
  }
  .pc_nav li a img {
    height: 1.3rem;
    width: auto;
    display: block;
  }
  #pc_fixed_qr {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    max-width: 16%;
  }
  .pc_qr_title {
    margin-bottom: 1.5rem;
  }
  .pc_qr_title,
  .pc_qr {
    text-align: center;
  }
  .pc_instagram_link {
    display: inline-block;
    width: 17rem;
    max-width: 100%;
  }
  .pc_instagram_link img {
    width: 100%;
  }
}
@media print, screen and ( min-width : 992px ) {
  #pc_fixed_nav {
    top: 4rem;
    left: 4rem;
  }
  .pc_nav li a img {
    height: 1.8rem;
  }
  #pc_fixed_qr {
    right: 4rem;
    bottom: 4rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   MV

--------------------------------------------------------------------------------------------- */
#mv {
  height: 100vh;
  height: 100svh;
  background: url(../images/mv.jpg) no-repeat center top / cover;
  position: relative;
}
@media (max-height: 900px) and (max-width: 767px) {
  #mv {
    background-position: 50% 52%;
    min-height: 74rem;
  }
}
@media screen and (orientation: portrait) {
}
@media (max-height: 900px) and (max-width: 441px) {
  #mv {
    min-height: 64rem;
  }
}
@media (max-height: 900px) and (min-width: 768px) {
  #mv {
    background-position: 50% 72%;
    min-height: 74rem;
  }
}

.mv_logo {
  position: absolute;
  z-index: 2;
  width: 5rem;
  top: 3rem;
  left: 3rem;
}
#mv .mv_copy {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.mv_logo img,
#mv .mv_copy img {
  width: 100%;
}
.mv_image_character_name {
  font-size: 1rem;
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 9%;
  color: #fff;
}


/* ---------------------------------------------------------------------------------------------

　   CAMPAIGN

--------------------------------------------------------------------------------------------- */
#campaign {
  background: #B69DBB;
  border-radius: 2rem 2rem 0 0;
  margin-top: 3rem;
}
#campaign h2 {
  text-align: center;
  padding: 1.5rem 2.5rem 1rem;
}
.campaign_wrapper {
  background: #B69DBB;
  padding: 0 .7rem .7rem;
}
.campaign_inner {
  padding: 1rem 1rem 3.5rem;
  background: #fff;
}
.campaign_img01,
.campaign_img02 {
  padding: 0 .5rem;
}
.campaign_img01 {
  margin-bottom: 2.5rem;
}
#campaign .shipping {
  margin-top: 4rem;
}
.shipping_title {
  position: relative;
  border: .3px solid #9C9E9C;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
}
.shipping_title img {
  display: block;
  width: 13rem;
}
.shipping_title:before,
.shipping_title:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
  bottom: -2px;
  z-index: 2;
}
.shipping_title:before {
  left: -2px;
}
.shipping_title:after {
  right: -2px;
}
.shipping_title h3:before,
.shipping_title h3:after {
  content: "";
  background: url(../images/ico-plus.png) no-repeat center / 100%;
  position: absolute;
  width: 10px;
  height: 10px;
  top: -5px;
  z-index: 2;
}
.shipping_title h3:before {
  left: -5px;
}
.shipping_title h3:after {
  right: -5px;
}
.campaign_item {
  background: rgba(236,236,235,.5);
  padding: 2rem 1rem;
  margin-bottom: 1rem;
}

.campaign_item_img {
  text-align: center;
}
.campaign_item_img img {
  width: 24rem;
}
.campaign_item_img figcaption {
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
  margin: 1.5rem 0;
}
.campaign_item_img figcaption span {
  font-size: 1.6rem;
}
.campaign_item_price__block {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.campaign_item_price_before {
  color: #B3B3B3;
  padding-right: 2.2rem;
  background: url(../images/price_before_arrow.png) no-repeat center right / 2rem;
  max-width: 32%;
  margin-right: 4%;
  font-size: 1.3rem;
  white-space: nowrap;
}
.campaign_item_price_before span {
  text-decoration: line-through;
}
.campaign_item_price_after {
  display: flex;
  align-items: center;
  max-width: 66%;
}
.campaign_item_price_after .campaign_item_price_off {
  width: 7rem;
  margin-right: .6rem;
}
.campaign_item_price_after .campaign_item_price_off img {
  display: block;
  width: 100%;
}
.campaign_item_price {
  font-size: 1.3rem;
  font-weight: 500;
  color: #CC6B73;
  text-align: center;
  margin-bottom: 1rem;
}
.campaign_item_price__block .campaign_item_price {
  margin-bottom: 0;
}
.campaign_item_price .en {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.campaign_item_price .small_text {
  font-size: 1.1rem;
}
.campaign_item01_01 {
  width: 38.8rem;
}
.campaign_item_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/btn_bg02.jpg) no-repeat center / cover;
  height: 6.5rem;
  border-radius: 6.5rem;
  font-size: 1.8rem;
  position: relative;
  margin-top: 1rem;
}
.campaign_item_btn:after {
  content: "";
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: .4rem;
  height: .6rem;
  background: url(../images/arrow_white.png) no-repeat center / 100%;
  position: absolute;
}
.campaign_item_btn .campaign_item_btn_inner {
  font-weight: 700;
  color: #fff;
}
.campaign_item_btn .small_text {
  font-size: 1.4rem;
}
.campaign_item_sup_text {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.1rem;
}
.campaign_item_point {
  background: #fff;
  border-radius: 1.2rem;
  border: .6px solid #CCA1A5;
  margin-top: 3.5rem;
  padding: 0 2.5rem 1.5rem;
  margin-bottom: 1rem;
}
.campaign_item_point .campaign_item_point_title {
  background: #CCA1A5;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  border-radius: 1.5rem;
  position: relative;
  padding: 0 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
  top: -1.5rem;
  height: 3rem;
}
.campaign_item_point_text {
  font-size: 1.4rem;
  line-height: 2em;
}
.campaign_item_point_text span {
  font-size: 1.1rem;
}
.campaign_item_point .small_text {
  display: block;
  font-size: .9rem;
}
.campaign_item03 .campaign_item_point figure {
  margin-top: 1.5rem;
}
.shipping .modalBtn {
  background: #B3B3B3;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  border-radius: 5rem;
  font-weight: 500;
  font-size: 1.3rem;
  position: relative;
  margin: 2.5rem auto 0;
  width: 28rem;
  letter-spacing: .1em;
}
.shipping .modalBtn:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/ico-plus_white.png) no-repeat center / 100%;
  width: 1rem;
  height: 1rem;
  right: 1.5rem;
}
.campaign_outline_img {
  text-align: center;
  margin-bottom: 2rem;
}
.campaign_outline_img img {
  width: 10rem;
}
.campaign_period {
  width: 22rem;
}
.campaign_outline .campaign_item_price__block {
  background: #fff;
  padding: 1rem;
  border-radius: .5rem;
  position: relative;
  margin-bottom: 0;
}
.campaign_outline .campaign_item_price_after .campaign_item_price_off {
  position: absolute;
  width: 6rem;
  top: -3rem;
  right: -2rem;
}
.campaign_outline_subtitle {
  color: #CCA1A5;
  font-weight: 700;
  font-size: 1.7rem;
  position: relative;
  padding-left: 1.2em;
  margin: 0 1.5rem;
  text-align: center;
}

.marker {
  background:linear-gradient(transparent 60%, rgba(255,241,0,.25) 60%);
}
.campaign_outline_subtitle .small_text {
  font-size: 1.3rem;
}
.campaign_outline_subtitle .large_text {
  font-size: 2.1rem;
}
.campaign_outline_text {
  line-height: 2em;
  font-size: 1.4rem;
  margin: 0 3.5rem;
  margin-bottom: 4rem;
}
.campaign_outline dt {
  background: #CCA1A5;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  padding: 1rem;
  font-weight: 500;
  letter-spacing: .1em;
}
.campaign_outline dd {
  padding: 1.5rem 0 3rem;
}
.campaign_dd_text {
  font-size: 1.4rem;
  line-height: 1.8em;
}
.campaign_dd_text a {
  text-decoration: underline;
}
.campaign_dd_text p {
  line-height: 1.8em;
}
.campaign_dd_text .small_text{
  font-size: 1.2rem;
}
.campaign_dd_text_mb {
  margin-bottom: 2.5rem;
}
.disc li {
  padding-left: .6em;
  position: relative;
  line-height: 1.8em;
  font-size: 1.2rem;
}
.disc li:before {
  content: "";
  position: absolute;
  left: 0;
  width: .2em;
  height: .2em;
  background: #000;
  border-radius: 50%;
  top: .8em;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/btn_bg02.jpg) no-repeat center / cover;
  font-size: 2rem;
  font-weight: 500;
  border-radius: ;
  box-shadow: 4px 4px 10px rgba(0,0,0,.25);
  height: 7rem;
  color: #fff;
  border-radius: 7rem;
  position: relative;
  letter-spacing: .15em;
}
.btn:after {
  content: "";
  position: absolute;
  right: 2rem;
  width: .4rem;
  height: .6rem;
  background: url(../images/arrow_white.png) no-repeat center / 100%;
  top: 50%;
  transform: translateY(-50%);
}
.btn .small_text {
  font-size: 1.6rem;
}
.btn .btn_inner,
.btn_close span {
  line-height: 1.4em;
}
.btn_close {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: ;
  box-shadow: 4px 4px 10px rgba(0,0,0,.25);
  height: 7rem;
  background: #B3B3B3;
  color: #fff;
  border-radius: 7rem;
  position: relative;
  margin-top: 3rem;
}
.btn_close:after {
  content: "";
  background: url(../images/ico-plus_white.png) no-repeat center / 100%;
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

@media only screen and ( max-width : 767px ) {
}
@media print, screen and ( min-width : 768px ) {
  .campaign_item_price_before {
    font-size: 1.4rem;
  }
  .campaign_item_price_after .campaign_item_price_off {
    width: 8rem;
    margin-right: 1.5rem;
  }
  .campaign_item_price {
    font-size: 1.5rem;
  }
  .campaign_item_price .en {
    font-size: 3.4rem;
  }
  .campaign_item_price .small_text {
    font-size: 1.2rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   INTRODUCTION

--------------------------------------------------------------------------------------------- */
#introduction {
  padding: 3rem 0;
}
.introduction_onayami {
  display: flex;
  justify-content: center;
}
#introduction li {
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 1.5em;
  line-height: 2em;
}
#introduction li:before {
  content: "";
  width: 2rem;
  height: 1.6rem;
  background: url(../images/check.svg) no-repeat center / 100%;
  position: absolute;
  left: 0;
  top: .8rem;
}
#introduction li span {
  background:linear-gradient(transparent 60%, rgba(255,241,0,.25) 60%);
}
#kodawari {
  padding: 3rem 0 6rem;
}
#howto {
  padding: 3rem 0 0;
}
#howto .container {
  padding-bottom: 6rem;
}


/* ---------------------------------------------------------------------------------------------

　   MOVIE

--------------------------------------------------------------------------------------------- */
#try_movie {
}
.try_movie_title {
  text-align: center;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}
#brand_movie {
  padding-bottom: 3rem;
}
#brand_movie .title {
  margin-bottom: 0;
  padding: 3rem 0 2rem;
}
.movie_brand_copy {
  text-align: center;
  padding-top: 3rem;
}
.js-modal-video img {
  width: 100%;
}
@media only screen and ( max-width : 767px ) {
}
@media print, screen and ( min-width : 768px ) {
}



/* ---------------------------------------------------------------------------------------------

　   Instagram

--------------------------------------------------------------------------------------------- */
#instagram {
  padding: 3rem 0 0;
}
#instagram .container {
  padding-top: 3rem;
}
.slider_item {
  padding: 0 1rem;
}
.slider_content {
  background: rgba(236,236,236,.5);
  padding: 1rem 1rem 1.5rem;
  margin-top: 2rem;
}
.slider_content_inner {
  background: #fff;
  padding: 1.2rem;
  margin-bottom: 1em;
}
.slider_content_inner p {
  line-height: 2em;
  font-size: 1.4rem;
}
.slider_content_bottom {
  padding: 1rem;
  line-height: 2em;
  font-size: 1.4rem;
}
#instagram .sec_photo {
  max-width: 23rem;
  margin: 6rem auto 0;
}
@media only screen and ( max-width : 767px ) {
}
@media print, screen and ( min-width : 768px ) {
}

/* ---------------------------------------------------------------------------------------------

　   FAQ

--------------------------------------------------------------------------------------------- */
#faq {
  padding: 6rem 0 3rem;
}
.accordion_header {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  background: #fff;
  font-size: 1.6rem;
  border: .3px solid #9C9E9C;
  margin-bottom: .5rem;
  padding: 1.5rem 5rem 1.5rem 1.5rem;
}
.accordion_header:before,
.accordion_header:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000;
}
.accordion_header:before {
  left: -2px;
  top: -2px;
}
.accordion_header:after {
  right: -2px;
  bottom: -2px;
}

.acc_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  transition: .3s;
  right: 2rem;
}
.accordion_header.open .acc_arrow {
  transform: translateY(-50%) rotate(180deg);
  background: url(../images/ico-minus.png) no-repeat center / 100%;
}
.accordion_header.open .acc_arrow img {
  opacity: 0;
}
.acc_arrow img {
  display: block;
}
.accordion_content {
  position: relative;
  display: none;
}
.accordion_content {
  background: rgba(236,236,236,.5);
  font-size: 1.4rem;
  padding: 1.5rem;
  margin-bottom: .5rem;
}
.accordion_content p {
  line-height: 2em;
}
@media only screen and ( max-width : 767px ) {
}
@media print, screen and ( min-width : 768px ) {
}

/* ---------------------------------------------------------------------------------------------

　   LINEUP

--------------------------------------------------------------------------------------------- */
#lineup {
  padding: 3rem 0 4rem;
}
#lineup .title {
  margin-bottom: 3rem;
}
.lineup_wrapper {
  position: relative;
}
.lineup_inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.lineup_wrapper:before,
.lineup_wrapper:after,
.lineup_inner:before,
.lineup_inner:after {
  content: "";
  position: absolute;
  background: url(../images/ico-plus.png) no-repeat center / 100%;
  width: 12px;
  height: 12px;
}
.lineup_wrapper:before {
  top: -6px;
  left: -6px;
}
.lineup_wrapper:after {
  top: -6px;
  right: -6px;
}
.lineup_inner:before {
  bottom: -6px;
  left: -6px;
}
.lineup_inner:after {
  bottom: -6px;
  right: -6px;
}
.lineup_item {
  width: 50%;
  border-left: .3px solid #9C9E9C;
  border-bottom: .3px solid #9C9E9C;
  position: relative;
  padding: 1.5rem .8rem;
}
.lineup_item:nth-child(-n+2) {
  border-top: .3px solid #9C9E9C;
}
.lineup_item:nth-child(2n) {
  border-right: .3px solid #9C9E9C;
}
.lineup_item:before,
.lineup_item:nth-child(1):after,
.lineup_item:nth-child(2n):after {
  content: "";
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
}
.lineup_item:before {
  left: -2px;
  bottom: -2px;
}
.lineup_item:nth-child(2n):after {
  right: -2px;
  bottom: -2px;
}
.lineup_item:nth-child(1):after {
  top: -2px;
  right: -2px;
}
.lineup_item:nth-last-child(2):before,
.lineup_item:last-child:after {
  content: none;
}
.lineup_item_img {
  text-align: center;
}
.lineup_item_img img {
  width: 14rem;
}
.lineup_instagram {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lineup_instagram img {
  width: 11rem;
}
.lineup_item_name {
  text-align: center;
  font-size: 1.2rem;
  margin: 1rem 0 .5rem;
  letter-spacing: -.1rem;
}
.lineup_item_name span {
  display: block;
  text-align: center;
  font-size: .9rem;
  letter-spacing: 0;
}
.lineup_item_price {
  text-align: center;
  color: #888888;
  font-size: 1.2rem;
}
.lineup_item_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/btn_bg.jpg) no-repeat center / cover;
  color: #fff;
  height: 4rem;
  width: 100%;
  border-radius: 4rem;
  font-size: 1.3rem;
  margin-top: 1rem;
  position: relative;
  box-shadow: 0 0 2rem rgba(0,0,0,.16);
}
.lineup_item_btn:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: .3rem;
  height: .5rem;
  background: url(../images/arrow_white.png) no-repeat center / 100%;
  right: 2rem;
}
@media only screen and ( max-width : 767px ) {
}
@media print, screen and ( min-width : 768px ) {
}

/* ---------------------------------------------------------------------------------------------

　   CONCEPT

--------------------------------------------------------------------------------------------- */
#concept {
  padding-bottom: 6rem;
}
.concept_title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}
.concept_title .logo {
  width: 4rem;
}
#concept h2 {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .15em;
}
.concept_inner {
  padding: 3rem 3rem 0;
}
.concept_inner p {
  font-size: 1.4rem;
  line-height: 2em;
  letter-spacing: .15em;
}
.concept_inner p .small_text {
  display: block;
  font-size: 1.1rem;
  letter-spacing: .1em;
  margin-top: 1em;
}

@media only screen and ( max-width : 767px ) {
  .concept_inner p {
    font-size: 1.2rem;
    letter-spacing: .1em;
  }
  .concept_inner p .small_text {
    font-size: .9rem;
  }
}
@media print, screen and ( min-width : 768px ) {
}
/* ---------------------------------------------------------------------------------------------

　   IMAGE CHARACTER

--------------------------------------------------------------------------------------------- */
.concept_photo {
  display: flex;
  height: 42rem;
  margin-bottom: 6rem;
}
.concept_photo figure {
  width: 50%;
}
.concept_photo01 {
  display: flex;
  align-items: flex-end;
}
.concept_photo figure img {
  width: 90%;
}
.image_character_wrapper {
  display: flex;
  justify-content: space-between;
  padding: 2rem 3rem 0;
}
.image_character_img {
  width: 40%;
}
.image_character_info {
  width: 50%;
}
.image_character_info p {
  font-size: 1.2rem;
  line-height: 1.8em;
}
.image_character_name {
  margin-top: 3.5rem;
  width: 92%;
}
@media only screen and ( max-width : 767px ) {
}
@media print, screen and ( min-width : 768px ) {
}


/* ---------------------------------------------------------------------------------------------

　   XXX

--------------------------------------------------------------------------------------------- */

@media only screen and ( max-width : 767px ) {
}
@media print, screen and ( min-width : 768px ) {
}
