@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 {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1.0;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: '';
  content: none;
}

q:before, q:after {
  content: '';
  content: none;
}

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

ul, ol, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  border: 0;
}

sub {
  font-size: 70%;
  vertical-align: sub !important;
}

sup {
  font-size: 70%;
  vertical-align: super !important;
}


/* Basic Structure ----------------------------*/
html {
  overflow-y: scroll;
  font-size: 62.5%;
}

body {
  margin: 0 auto;
  background-color: #250703;
  color: #000;
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
  font-size: calc(100vw * (26 / 750));
  font-weight: 400;
  line-height: 1.6;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none; 
  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
}

html.is-fixed,
body.is-fixed {
  overflow: hidden !important;
}

@media screen and (min-width: 768px) {
  body {
    font-size: calc((100vh * 0.5) * (26 / 750));
  }
}


/* Common ----------------------------*/
/* Image */
img {
  width: 100%;
  max-width: 100%;
  pointer-events: none;
}

/* Link */
a,
.c-modal a {
  display: inline-block;
  opacity: 1;
  transition: all 0.3s;
  text-decoration: none;
}

/* Lists, Comments */
.c-lists,
.c-comments { list-style: none; }

.c-lists > li,
.c-comments > li {
  padding-left: 1em;
  text-indent: -1em;
}

/* Wrapper */
.c-wrapper {
  position: relative;
  width: 100%;
}

/* Clearfix */
.c-clearfix:after {
	display: block;
	clear: both;
	height: 0;
  content: ' ';
}
.c-clearfix {
  display: inline-block;
}
.c-clearfix {
  display: block;
}

@media screen and (max-width: 767px) {
  /* Element */
  .c-is-pc:not(.c-is-sp) {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  /* Element */
  .c-is-sp:not(.c-is-pc) {
    display: none;
  }

  /* Link */
  a:hover,
  .c-modal a:hover {
    opacity: 0.7;
  }
}


/* Container ----------------------------*/
.c-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .c-container {
    max-width: calc((100vh * 0.5));
  }
}


/* loader ----------------------------*/
.c-loader::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100vw * (40 / 750));
  height: calc(100vw * (40 / 750));
  background-image: url(/chocobrownie/assets/common/img/2509/loader_wt.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  content: '';
  transition: 0.2s all linear 0.5s;
}

body.is-loaded .c-loader::before {
  opacity: 0;
  visibility: hidden;
}

@media screen and (min-width: 768px) {
  .c-loader::before {
    width: calc((100vh * 0.5) * (40 / 750));
    height: calc((100vh * 0.5) * (40 / 750));
  }
}


/* Header ----------------------------*/
.c-header {
  position: fixed;
  z-index: 8000;
  top: 0px;
  left: 0;
  width: 100%;
}

.c-header_inner {
  position: relative;
  z-index: 10201;
  max-width: 100%;
  margin: 0 auto;
}

.c-header_logo {
  position: absolute;
  top: calc(100vw * (25 / 750));
  left: calc(100vw * (40 / 750));
  z-index: 1;
  width: calc(100vw * (227 / 750) * 0.75);
  transition: 0.2s opacity linear;
}

.c-header.is-hide .c-header_logo {
  opacity: 0;
  visibility: hidden;
}

.c-header_logo > a {
  display: block;
  width: 100%;
}

body.is-scrolled .c-header_logo > a {
  width: calc(65% * 1.35);
}

.c-header_logo > a:hover {
  opacity: 1;
}

.c-header_burgerBtn {
  display: block;
  position: absolute;
  top: calc(100vw * (32 / 750));
  right: calc(100vw * (32 / 750));
  z-index: 2;
  width: calc(100vw * (90 / 750));
  height: calc(100vw * (90 / 750));
  cursor: pointer;
}

.c-header.is-hide .c-header_burgerBtn {
  pointer-events: none;
}

.c-header_burgerBtn.is-active {
  pointer-events: all !important;
}

.c-header_burgerBtn::before,
.c-header_burgerBtn::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  content: '';
}

.c-header_burgerBtn::before {
  background-image: url(/chocobrownie/assets/common/img/2509/burger_btn.svg);
  background-size: 100% auto;
  transition: 0.2s opacity linear;
  will-change: opacity;
}

.c-header.is-hide .c-header_burgerBtn::before {
  opacity: 0;
  visibility: hidden;
}

.c-header_burgerBtn::after {
  opacity: 0;
  visibility: hidden;
  background-image: url(/chocobrownie/assets/common/img/2509/burger_close.svg);
  background-size: calc(100vw * (43 / 750)) auto;
}

.c-header_burgerBtn.is-active::before {
  opacity: 0;
  visibility: hidden;
}

.c-header_burgerBtn.is-active::after {
  opacity: 1;
  visibility: visible;
}

.c-header_gnav {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background-color: #250703;
  transition: 0.3s;
}

.c-header_gnav.is-active {
  transform: translate(-50%, 0);
}

.c-header_gnavInner {
  position: relative;
  width: 100%; 
  height: 100%;
  margin: 0 auto;
  padding: calc(100vw * (65 / 750)) calc(100vw * (60 / 750)) 0 calc(100vw * (60 / 750));
  overflow-y: scroll;
  overflow-x: hidden;
  text-align: center;
}

.c-header_gnavTtl > a:hover {
  opacity: 1;
}

.c-header_gnavTtl img {
  width: calc(100vw * (520 / 750));
}

.c-header_gnavMenu {
  position: relative;
  z-index: 2;
  margin-top: calc(100vw * (30 / 750));
}

.c-header_gnavMenu > li {
  margin-top: calc(100vw * (35 / 750));
}

.c-header_gnavMenu > li:nth-of-type(1) {
  margin-top: 0;
}

.c-header_gnavMenuTopInner > dt {
  display: block;
  border-radius: calc(100vw * (10 / 750));
  overflow: hidden;
}

.c-header_gnavMenuTopInner > dd {
  padding: calc(100vw * (35 / 750)) calc(100vw * (30 / 750)) calc(100vw * (30 / 750)) calc(100vw * (30 / 750));
}

.c-header_gnavTop li {
  margin-top: calc(100vw * (10 / 750));
  text-align: left;
}

.c-header_gnavTop > li:nth-of-type(1) {
  margin-top: 0;
}

.c-header_gnavTop li > * {
  color: #fceacf;
  font-size: calc(100vw * (32 / 750));
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.c-header_gnavTop li > * > span {
  display: inline-block;
  margin-left: calc(100vw * (15 / 750));
  font-size: calc(100vw * (22 / 750));
  font-weight: 700;
  letter-spacing: normal;
}

.c-header_gnavTop li li > * {
  font-weight: 500;
}

.c-header_gnavMenuHome {
  margin-top: calc(100vw * (55 / 750)) !important;
}

.c-header_gnavMenuHome > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vw * (60 / 750));
  border-radius: 1000px;
  border: calc(100vw * (2 / 750)) solid #fff;
  background-color: #1D2088;
  color: #fff;
  font-size: calc(100vw * (32 / 750));
  font-weight: 800;
  line-height: 1.2;
}

.c-header_gnavBottom {
  position: relative;
  z-index: 1;
  padding-top: calc(100vw * (305 / 750));
  margin-left: calc(100vw * (-60 / 750));
  margin-right: calc(100vw * (-60 / 750));
}

.c-header_gnavBottomImg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
}

.c-header_gnavBottomComments {
  position: absolute;
  right: calc(100vw * (20 / 750));
  bottom: calc(100vw * (20 / 750));
  color: #fff;
  font-size: calc(100vw * (16 / 750)); 
}

@media screen and (min-width: 768px) {
  .c-header_inner {
    max-width: calc((100vh * 0.5) * (750 / 750));
  }
  
  .c-header_logo {
    top: calc((100vh * 0.5) * (25 / 750));
    left: calc((100vh * 0.5) * (40 / 750));
    width: calc((100vh * 0.5) * (227 / 750) * 0.75);
  }

  .c-header_burgerBtn {
    top: calc((100vh * 0.5) * (32 / 750));
    right: calc((100vh * 0.5) * (32 / 750));
    width: calc((100vh * 0.5) * (90 / 750));
    height: calc((100vh * 0.5) * (90 / 750));
  }

  .c-header_burgerBtn::after {
    background-size: calc((100vh * 0.5) * (43 / 750)) auto;
  }

  .c-header_gnav {
    max-width: calc((100vh * 0.5) * (750 / 750));
  }

  .c-header_gnavInner {
    padding: calc((100vh * 0.5) * (65 / 750)) calc((100vh * 0.5) * (60 / 750)) 0 calc((100vh * 0.5) * (60 / 750));
  }

  .c-header_gnavTtl img {
    width: calc((100vh * 0.5) * (520 / 750));
  }

  .c-header_gnavMenu {
    margin-top: calc((100vh * 0.5) * (30 / 750));
  }

  .c-header_gnavMenu > li {
    margin-top: calc((100vh * 0.5) * (35 / 750));
  }

  .c-header_gnavMenuTopInner {
    border-radius: calc((100vh * 0.5) * (20 / 750));
  }

  .c-header_gnavMenuTopInner > dt {
    border-radius: calc((100vh * 0.5) * (10 / 750));
  }

  .c-header_gnavMenuTopInner > dt > a:hover {
    opacity: 1;
  } 

  .c-header_gnavMenuTopInner > dd {
    padding: calc((100vh * 0.5) * (35 / 750)) calc((100vh * 0.5) * (30 / 750)) calc((100vh * 0.5) * (30 / 750)) calc((100vh * 0.5) * (30 / 750));
  }

  .c-header_gnavTop li {
    margin-top: calc((100vh * 0.5) * (10 / 750));
  }

  .c-header_gnavTop li > * {
    font-size: calc((100vh * 0.5) * (32 / 750));
  }

  .c-header_gnavTop li > * > span {
    margin-left: calc((100vh * 0.5) * (15 / 750));
    font-size: calc((100vh * 0.5) * (22 / 750));
  }

  .c-header_gnavMenuHome {
    margin-top: calc((100vh * 0.5) * (55 / 750)) !important;
  }

  .c-header_gnavMenuHome > a {
    height: calc((100vh * 0.5) * (60 / 750));
    border-width: calc((100vh * 0.5) * (2 / 750));
    font-size: calc((100vh * 0.5) * (32 / 750));
  }

  .c-header_gnavMenuHome > a img {
    width: calc((100vh * 0.5) * (100 / 750));
  }

  .c-header_gnavBottom {
    padding-top: calc((100vh * 0.5) * (305 / 750));
    margin-left: calc((100vh * 0.5) * (-60 / 750));
    margin-right: calc((100vh * 0.5) * (-60 / 750));
  }

  .c-header_gnavBottomComments {
    right: calc((100vh * 0.5) * (20 / 750));
    bottom: calc((100vh * 0.5) * (20 / 750));
    font-size: calc((100vh * 0.5) * (16 / 750)); 
  }
}
@media screen and (min-width: 1280px) {
  .c-header_gnav,
  .c-header_burgerBtn {
    display: none;
  }
}


/* Main -----------------------*/
.c-main {
  display: block;
  position: relative;
  z-index: 1;
}


/* Footer -----------------------*/
.c-footer {
  position: relative;
  z-index: 10;
  background-color: #fff;
}

.c-footer_inner {
  position: relative;
  padding: calc(100vw * (15 / 750)) calc(100vw * (20 / 750)) calc(100vw * (100 / 750)) calc(100vw * (20 / 750));
}

.c-footer_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: calc(100vw * (45 / 750));
}

.c-footer_nav li {
  font-size: calc(100vw * (24 / 750));
  color: #666;
}

.c-footer_nav li a {
  color: #666;
}

.c-footer_nav li::before {
  position: relative;
  top: calc(100vw * (5 / 750));
  margin-right: 0.1em;
  font-family: FontAwesome;
  font-size: 175%;
  content: '\f0da';
}

.c-footer_copyright {
  color: #666;
  font-size: calc(100vw * (22 / 750));
  text-align: center;
}

.c-footer_copyright small {
  display: block;
  margin-bottom: calc(100vw * (15 / 750));
}

.c-footer_logo {
  display: inline-block;
  width: calc(100vw * (200 / 750));
}

.c-footer_logo > a {
  display: block;
}

.c-footer_logo > a img {
  width: 100%;
}

.c-footer_pageTop {
  position: fixed;
  right: calc(100vw * (20 / 750));
  bottom: calc(100vw * (30 / 750));
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

body.is-scrolled .c-footer_pageTop {
  visibility: visible;
  opacity: 1;
}

.c-footer_pageTop a {
  display: block;
  width: calc(100vw * (90 / 750));
  height: calc(100vw * (90 / 750));
  background-color: transparent;
  background-image: url(/chocobrownie/assets/common/img/2509/footer_pagetop.png);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% auto;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .c-footer_inner {
    padding: calc((100vh * 0.5) * (15 / 750)) calc((100vh * 0.5) * (20 / 750)) calc((100vh * 0.5) * (100 / 750)) calc((100vh * 0.5) * (20 / 750));
  }

  .c-footer_nav {
    margin-bottom: calc((100vh * 0.5) * (45 / 750));
  }

  .c-footer_nav li {
    font-size: calc((100vh * 0.5) * (24 / 750));
  }

  .c-footer_nav li::before {
    top: calc((100vh * 0.5) * (5 / 750));
  }

  .c-footer_copyright {
    font-size: calc((100vh * 0.5) * (22 / 750));
  }

  .c-footer_copyright small {
    margin-bottom: calc((100vh * 0.5) * (15 / 750));
  }

  .c-footer_logo {
    width: calc((100vh * 0.5) * (200 / 750));
  }

  .c-footer_pageTop {
    right: calc((100vh * 0.5) * (20 / 750));
    bottom: calc((100vh * 0.5) * (30 / 750));
  }

  .c-footer_pageTop a {
    width: calc((100vh * 0.5) * (90 / 750));
    height: calc((100vh * 0.5) * (90 / 750));
  }
}
@media print {
  .c-footer_pageTop {
    display: none;
    visibility: hidden;
  }
}


/* Products Link List ----------------------------*/
.prodlink img {
  vertical-align: top;
}

.prodlink a img {
  opacity: 1;
  transition: 0.3s;
}

.prodlink {
  padding: 6.86vw 0;
  background-color: #fff;
  position: relative;
  z-index: 10;
}

.prodlink__in {
  margin: 0 auto;
  width: 82.6vw;
}

.prodlink__ttl {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.6389vw 0;
  background-color: #003e9b;
  border-radius: 1000px;
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
}

.prodlink__ttl img {
  width: 36.8vw;
}

.prodlink__ttl::after {
  position: absolute;
  top: 0;
  right: 6.98114vw;
  display: flex;
  align-items: center;
  height: 100%;
  font-family: FontAwesome;
  content: '\f107';
  font-size: 5.38447vw;
  color: #ffffff;
  transition: 0.3s;
}

.prodlink__ttl.is_show::after {
  transform: rotate(180deg);
}

.prodlink__list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s;
}

.prodlink__list.is_show {
  max-height: 10000px;
  margin-bottom: -3.466vw;
}

.prodlink__list ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-top: 3.06452%;
}

.prodlink__list li {
  margin: 0 3.06452% 3.06452% 0;
  width: 31.29032%;
}

.prodlink__list li > a {
  display: block;
}

.prodlink__list li img {
  width: 100%;
  max-width: initial;
}

.prodlink__list li:nth-child(5n) {
  margin-right: 3.06452%;
}

.prodlink__list li:nth-child(3n) {
  margin-right: 0;
}

@media screen and (min-width: 768px) {
  .prodlink a:hover img {
    opacity: 0.7;
  }

  .prodlink {
    padding: calc((100vh * 0.5) * (6.86 / 100)) 0;
  }

  .prodlink__in {
    width: calc((100vh * 0.5) * (82.6 / 100));
  }

  .prodlink__ttl {
    padding: calc((100vh * 0.5) * (2.6389 / 100)) 0;
  }

  .prodlink__ttl img {
    width: calc((100vh * 0.5) * (36.8 / 100));
  }

  .prodlink__ttl:hover {
    opacity: 0.7;
  }

  .prodlink__ttl::after {
    right: calc((100vh * 0.5) * (6.98114 / 100));
    font-size: calc((100vh * 0.5) * (5.38447 / 100));
  }

  .prodlink__list.is_show {
    margin-bottom: calc((100vh * 0.5) * (-3.466 / 100));
  }
}


/* Lineup ----------------------------*/
.c-lineup_kv {
  position: relative;
  z-index: 1;
  height: calc(100vw * (650 / 750));
  background-color: #250703;
  overflow: hidden;
}

.c-lineup_kv::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(/chocobrownie/assets/common/img/2509/lineup_kv_bg.svg);
  background-repeat: repeat;
  background-size: 4px auto;
  content: '';
}

.c-lineup_kv video {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -2;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}

.c-lineup_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: calc(100vw * (230 / 750) * 1.45);
  height: calc(100vw * (130 / 750) * 1.45);
  margin-top: calc(100vw * (-25 / 750));
}

.c-lineup_ttl > span {
  display: none;
}

.c-lineup_ttl svg,
.c-lineup_ttl image {
  display: block;
  width: 100%;
  height: auto;
}

.c-lineup_ttl {
  fill: none;
  stroke: #fff;
  stroke-width: 20;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

.c-lineup_inner {
  position: relative;
  z-index: 1;
  background-color: #250703;
}

.c-lineup_list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.c-lineup_list > li {
  padding-top: calc(100vw * (40 / 750));
}
.c-lineup_list > li:nth-of-type(1) {
  padding-top: 0;
}

.c-lineup_comments {
  margin-top: calc(100vw * (20 / 750));
  padding-bottom: calc(100vw * (20 / 750));
  color: #fff;
  font-size: calc(100vw * (18 / 750));
  text-align: right;
}

@media screen and (min-width: 768px) {
  .c-lineup_kv {
    height: calc((100vh * 0.5) * (650 / 750));
  }

  .c-lineup_ttl {
    width: calc((100vh * 0.5) * (230 / 750) * 1.45);
    height: calc((100vh * 0.5) * (130 / 750) * 1.45);
    margin-top: calc((100vh * 0.5) * (-25 / 750));
  }

  .c-lineup_list > li {
    padding-top: calc((100vh * 0.5) * (40 / 750));
  }

  .c-lineup_comments {
    margin-top: calc((100vh * 0.5) * (20 / 750));
    padding-bottom: calc((100vh * 0.5) * (20 / 750));
    font-size: calc((100vh * 0.5) * (18 / 750));
  }
}


/* Bottom ----------------------------*/
.c-bottom {
  position: relative;
  padding-top: calc(100vw * (70 / 750));
  padding-bottom: calc(100vw * (75 / 750));
}

.c-bottom_kv::before,
.c-bottom_kv::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% auto;
  content: '';
}

.c-bottom_kv::before {
  z-index: -2;
  background-image: url(/chocobrownie/assets/common/img/2509/bg_texture01.jpg);
  background-repeat: repeat-y;
}

.c-bottom_kv::after {
  z-index: -1;
  background-image: url(/chocobrownie/assets/common/img/2509/bottom_kv.png);
  background-repeat: no-repeat;
}

.c-bottom_comments {
  position: absolute;
  bottom: calc(100vw * (15 / 750));
  right: calc(100vw * (10 / 750));
  font-size: calc(100vw * (16 / 750));;
}

@media screen and (min-width: 768px) {
  .c-bottom {
    padding-top: calc((100vh * 0.5) * (70 / 750));
    padding-bottom: calc((100vh * 0.5) * (75 / 750));
  }

  .c-bottom_comments {
    bottom: calc((100vh * 0.5) * (15 / 750));
    right: calc((100vh * 0.5) * (10 / 750));
    font-size: calc((100vh * 0.5) * (16 / 750));;
  }
}


/* Index ----------------------------*/
.c-index_ttl {
  text-align: center;
}

.c-index_ttl > span {
  display: block;
}

.c-index_ttl > span:nth-of-type(1) {
  margin-bottom: calc(100vw * (40 / 750));
}

.c-index_ttl > span:nth-of-type(1) img {
  width: calc(100vw * (356 / 750));
}

.c-index_ttl > span:nth-of-type(2) img {
  width: calc(100vw * (556 / 750));
}

.c-index_inner {
  margin-top: calc(100vw * (45 / 750));
  padding-left: calc(100vw * (75 / 750));
  padding-right: calc(100vw * (75 / 750));
}

.c-index_inner > dt {
  display: block;
  text-align: center;
}

.c-index_inner > dt > span {
  display: block;
}

.c-index_inner > dt > span:nth-of-type(1) {
  margin-bottom: calc(100vw * (55 / 750));
  color: #3c0f00;
  font-size: calc(100vw * (60 / 750));
  font-weight: 900;
  line-height: 1.2;
}

.c-index_inner > dd:nth-of-type(1) {
  padding-top: calc(100vw * (50 / 750));
}

.c-index_inner > dd:nth-of-type(2) {
  padding-top: calc(100vw * (40 / 750));
  margin-left: calc(100vw * (-10 / 750));
  margin-right: calc(100vw * (-10 / 750));
}

.c-index_menu {
  margin-top: calc(100vw * (-22 / 750));
}

.c-index_menu > li {
  margin-top: calc(100vw * (22 / 750));
}

.c-index_menu > li > * {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(100vw * (92 / 750));
  border-radius: 1000px;
  overflow: hidden;
  background-image: url(/chocobrownie/assets/common/img/2509/bg_pattern01.png);
  background-repeat: repeat;
  background-size: calc(100vw * (50 / 750)) auto;
  color: #fadcaf;
  font-size: calc(100vw * (32 / 750));
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.c-index_lineup {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(100vw * (-40 / 750));
  margin-left: calc(100vw * (-30 / 750));
  text-align: left;
}

.c-index_lineup > li {
  width: 50%;
  margin-top: calc(100vw * (40 / 750));
  padding-left: calc(100vw * (30 / 750));
}

.c-index_lineupInner {
  text-align: center;
}

.c-index_lineupInner > dt {
  display: block;
  margin: 0 calc(100vw * (-6 / 750)) calc(100vw * (5 / 750)) calc(100vw * (-6 / 750));
}
.c-index_lineupMini .c-index_lineupInner > dt,
.c-index_lineupMiniujimatcha .c-index_lineupInner > dt {
  margin-left: calc(100vw * (-12 / 750));
  margin-right: calc(100vw * (-12 / 750));
}

.c-index_lineupChocobrownie .c-index_lineupInner > dt img,
.c-index_lineupUjimatcha .c-index_lineupInner > dt img {
  width: 80%;
  max-width: 80%;
}

.c-index_lineupInner > dd {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vw * (40 / 750));
  border-radius: 1000px;
  color: #fff;
  font-size: calc(100vw * (20 / 750));
  font-weight: 600;
  line-height: 1.2;
}
.c-index_lineupChocobrownie .c-index_lineupInner > dd {
  background-color: #1D2088;
}
.c-index_lineupUjimatcha .c-index_lineupInner > dd {
  background-color: #005A1A;
}
.c-index_lineupMini .c-index_lineupInner > dd {
  background-color: #FFF8B0;
  color: #250703;
}
.c-index_lineupMiniujimatcha .c-index_lineupInner > dd {
  background-color: #B0CF00;
  color: #250703;
}

@media screen and (min-width: 768px) {
  .c-index_ttl > span:nth-of-type(1) {
    margin-bottom: calc((100vh * 0.5) * (40 / 750));
  }

  .c-index_ttl > span:nth-of-type(1) img {
    width: calc((100vh * 0.5) * (356 / 750));
  }

  .c-index_ttl > span:nth-of-type(2) img {
    width: calc((100vh * 0.5) * (556 / 750));
  }

  .c-index_inner {
    margin-top: calc((100vh * 0.5) * (45 / 750));
    padding-left: calc((100vh * 0.5) * (75 / 750));
    padding-right: calc((100vh * 0.5) * (75 / 750));
  }

  .c-index_inner > dt > span:nth-of-type(1) {
    margin-bottom: calc((100vh * 0.5) * (55 / 750));
    font-size: calc((100vh * 0.5) * (60 / 750));
  }

  .c-index_inner > dt > span:nth-of-type(2) a {
    opacity: 1;
  }

  .c-index_inner > dd:nth-of-type(1) {
    padding-top: calc((100vh * 0.5) * (50 / 750));
  }

  .c-index_inner > dd:nth-of-type(2) {
    padding-top: calc((100vh * 0.5) * (40 / 750));
    margin-left: calc((100vh * 0.5) * (-10 / 750));
    margin-right: calc((100vh * 0.5) * (-10 / 750));
  }

  .c-index_menu {
    margin-top: calc((100vh * 0.5) * (-22 / 750));
  }

  .c-index_menu > li {
    margin-top: calc((100vh * 0.5) * (22 / 750));
  }

  .c-index_menu > li > * {
    min-height: calc((100vh * 0.5) * (92 / 750));
    background-size: calc((100vh * 0.5) * (50 / 750)) auto;
    font-size: calc((100vh * 0.5) * (32 / 750));
  }

  .c-index_lineup {
    margin-top: calc((100vh * 0.5) * (-40 / 750));
    margin-left: calc((100vh * 0.5) * (-30 / 750));
  }

  .c-index_lineup > li {
    margin-top: calc((100vh * 0.5) * (40 / 750));
    padding-left: calc((100vh * 0.5) * (30 / 750));
  }

  .c-index_lineupInner > dt {
    margin: 0 calc((100vh * 0.5) * (-6 / 750)) calc((100vh * 0.5) * (5 / 750)) calc((100vh * 0.5) * (-6 / 750));
  }
  .c-index_lineupMini .c-index_lineupInner > dt,
  .c-index_lineupMiniujimatcha .c-index_lineupInner > dt {
    margin-left: calc((100vh * 0.5) * (-12 / 750));
    margin-right: calc((100vh * 0.5) * (-12 / 750));
  }

  .c-index_lineupInner > dd {
    height: calc((100vh * 0.5) * (40 / 750));
    font-size: calc((100vh * 0.5) * (20 / 750));
  }
}


/* SNS ----------------------------*/
.c-sns {
  margin-top: calc(100vw * (70 / 750));
  text-align: center;
}

.c-sns_list {
  display: flex;
  justify-content: center;
  margin-left: calc(100vw * (-40 / 750));
}

.c-sns_list li {
  margin-left: calc(100vw * (40 / 750));
}

.c-sns_list li a {
  display: block;
  width: calc(100vw * (80 / 750));
  height: calc(100vw * (80 / 750));
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: auto 100%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.c-sns_list li.line a {
  background-image: url(/chocobrownie/assets/common/img/2509/sns_l.png);
}
.c-sns_list li.x a {
  background-image: url(/chocobrownie/assets/common/img/2509/sns_x.png);
}
.c-sns_list li.facebook a {
  background-image: url(/chocobrownie/assets/common/img/2509/sns_f.png);
}

.c-sns_listSmall {
  margin-left: calc(100vw * (-30 / 750));
}

.c-sns_listSmall > li {
  margin-left: calc(100vw * (30 / 750));
}

.c-sns_listSmall > li a {
  width: calc(100vw * (60 / 750));
  height: calc(100vw * (60 / 750));
}

.c-sns_home {
  margin-top: calc(100vw * (35 / 750));
  text-align: center;
}

.c-sns_home > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100vw * (530 / 750));
  height: calc(100vw * (60 / 750));
  border-radius: 1000px;
  background-color: #3C0000;
  color: #fff;
  font-size: calc(100vw * (32 / 750));
  font-weight: 800;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .c-sns {
    margin-top: calc((100vh * 0.5) * (70 / 750));
  }

  .c-sns_list {
    margin-left: calc((100vh * 0.5) * (-40 / 750));
  }

  .c-sns_list li {
    margin-left: calc((100vh * 0.5) * (40 / 750));
  }

  .c-sns_list li a {
    width: calc((100vh * 0.5) * (80 / 750));
    height: calc((100vh * 0.5) * (80 / 750));
  }

  .c-sns_listSmall {
    margin-left: calc((100vh * 0.5) * (-30 / 750));
  }

  .c-sns_listSmall > li {
    margin-left: calc((100vh * 0.5) * (30 / 750));
  }

  .c-sns_listSmall > li a {
    width: calc((100vh * 0.5) * (60 / 750));
    height: calc((100vh * 0.5) * (60 / 750));
  }

  .c-sns_home {
    margin-top: calc((100vh * 0.5) * (35 / 750));
  }

  .c-sns_home > a {
    width: calc((100vh * 0.5) * (530 / 750));
    height: calc((100vh * 0.5) * (60 / 750));
    font-size: calc((100vh * 0.5) * (32 / 750));
  }
}


/* Key Visual ----------------------------*/
.c-kv {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.c-kv_fade {
  transition: 0.3s all linear;
}

.c-kv.is-show {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .c-kv {
    max-width: calc((100vh * 0.5));
  }
}


/* Split ----------------------------*/
@media screen and (min-width: 768px) {
  .c-split {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-image: url(/chocobrownie/assets/common/img/2509/split_bg.jpg);
    background-repeat: repeat;
    background-size: 1497px auto;
  }

  .c-split_left,
  .c-split_right {
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    width: calc(50% - ((100vh * 0.499) / 2));
    height: 100%;
    padding: calc(100vw * (75 / 2300)) calc(100vw * (65 / 2300));
    overflow: hidden;
  }

  .c-split_left {
    left: 0;
  }

  .c-split_right {
    right: 0;
  }

  .win .c-split_right {
    right: calc((100vh * 0.5) * (20 / 750));
  }

  .c-split_ttl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100vw * (448 / 2300));
  }

  .c-split_menu {
    width: 100%;
    max-width: calc(100vw * (650 / 2300));
    margin: calc(100vw * (70 / 2300)) auto 0 auto;
    padding-left: calc(100vw * (10 / 2300));
    padding-right: calc(100vw * (10 / 2300));
  }

  .c-split_menu:nth-of-type(1) {
    margin-top: 0;
  }

  .c-split_menu > dt {
    display: block;
    margin-bottom: calc(100vw * (35 / 2300));
  }

  .c-split_menu > dt > * {
    color: #fceacf;
    font-size: calc(100vw * (30 / 2300));
    font-weight: 500;
    line-height: 1.2;
  }

  .c-split_menuList > li {
    margin-top: calc(100vw * (25 / 2300));
    line-height: 0;
  }

  .c-split_menuList > li:nth-of-type(1) {
    margin-top: 0;
  }

  .c-split_menuList > li > * {
    color: #3c0f00;
    font-size: calc(100vw * (23 / 2300));
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.2;
  }

  .c-split_campaign {
    width: 100%;
    max-width: calc(100vw * (650 / 2300));
    margin: auto auto 0 auto;
    padding-top: calc(100vw * (80 / 2300));
  }

  .c-split_campaign a:hover {
    opacity: 1;
  }

  .c-split_particles,
  .c-split_particles::before,
  .c-split_particles > div {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
  }

  .c-split_particles::before {
    background-image: url(/chocobrownie/assets/common/img/2509/split_particles_bg.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: calc(100vw * (998 / 2300));
    content: '';
  }

  .c-split_comments {
    position: absolute;
    left: calc(100vw * (20 / 2300));
    bottom: calc(100vw * (20 / 2300));
    color: #3c0f00;
    font-size: calc(100vw * (12 / 2300));
    line-height: 1.2;
  }
}
@media screen and (min-width: 2300px) {
  .c-split_left,
  .c-split_right {
    padding: calc(2300px * (75 / 2300)) calc(2300px * (65 / 2300));
  }

  .c-split_ttl {
    width: calc(2300px * (448 / 2300));
  }

  .c-split_menu {
    max-width: calc(2300px * (650 / 2300));
    margin-top: calc(2300px * (70 / 2300));
    padding-left: calc(2300px * (10 / 2300));
    padding-right: calc(2300px * (10 / 2300));
  }

  .c-split_menu > dt {
    margin-bottom: calc(2300px * (35 / 2300));
  }

  .c-split_menu > dt > * {
    font-size: calc(2300px * (30 / 2300));
  }

  .c-split_menuList > li {
    margin-top: calc(2300px * (25 / 2300));
  }

  .c-split_menuList > li > * {
    font-size: calc(2300px * (23 / 2300));
  }

  .c-split_campaign {
    max-width: calc(2300px * (650 / 2300));
    padding-top: calc(2300px * (80 / 2300));
  }

  .c-split_particles {
    background-size: calc(2300px * (998 / 2300));
  }

  .c-split_comments {
    left: calc(2300px * (20 / 2300));
    bottom: calc(2300px * (20 / 2300));
    font-size: calc(2300px * (12 / 2300));
  }
}
@media screen and (max-width: 1279px) {
  .c-split_left,
  .c-split_menu,
  .c-split_campaign {
    display: none;
  }

  .c-split_right {
    width: 100vw;
  }

  .c-split_comments {
    left: calc(1280px * (20 / 2300));
    bottom: calc(1280px * (20 / 2300));
    font-size: calc(1280px * (12 / 2300));
  }
}


/* Accordion ----------------------------*/
.c-accordionBtn {
  cursor: pointer;
}

.c-accordionTarget {
  display: none;
}


/* Modal ----------------------------*/
.c-modal {
  display: none;
}


/* Fancybox ----------------------------*/
.fancybox-skin {
  padding: 0 !important;
}


/* Animation ----------------------------*/
.c-animate {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
}

.c-animateMoveX01 {
  opacity: 0;
  visibility: hidden;
  transform: translate(30px, 0) rotate(0.0001deg);
}
.c-animateMoveX01.is-animated {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0) rotate(0.0001deg);
  transition-duration: 0.8s;
}

.c-animateMoveX02 {
  opacity: 0;
  visibility: hidden;
  transform: translate(-30px, 0) rotate(0.0001deg);
}
.c-animateMoveX02.is-animated {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0) rotate(0.0001deg);
  transition-duration: 0.8s;
}

.c-animateMoveY01 {
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 30px) rotate(0.0001deg);
}
.c-animateMoveY01.is-animated {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0) rotate(0.0001deg);
  transition-duration: 0.8s;
}

.c-animateMoveY02 {
  opacity: 0;
  visibility: hidden;
  transform: translate(0, -30px) rotate(0.0001deg);
}
.c-animateMoveY02.is-animated {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0) rotate(0.0001deg);
  transition-duration: 0.8s;
}

.c-animateZoom01 {
  transform: scale(1, 1) rotate(0.0001deg);
}
.c-animateZoom01.is-animated {
  transform: scale(1.1, 1.1) rotate(0.0001deg);
  transition-duration: 0.8s;
}

.c-animateZoom02 {
  transform: scale(0, 0) rotate(0.0001deg);
}
.c-animateZoom02.is-animated {
  transform: scale(1, 1) rotate(0.0001deg);
  transition-duration: 0.4s;
}

.c-animateZoom03 {
  transform: scale(1.1, 1.1) rotate(0.0001deg);
}
.c-animateZoom03.is-animated {
  transform: scale(1, 1) rotate(0.0001deg);
  transition-duration: 0.4s;
}

.c-animateZoom04 {
  transform: scale(1.4, 1.4) rotate(0.0001deg);
}
.c-animateZoom04.is-animated {
  transform: scale(1, 1) rotate(0.0001deg);
  transition-duration: 0.4s;
}

.c-animateScaleX01 {
  transform: scale(0, 1) rotate(0.0001deg);
}
.c-animateScaleX01.is-animated {
  transform: scale(1, 1) rotate(0.0001deg);
  transition-duration: 0.8s;
}

.c-animateScaleX02 {
  transform-origin: left top;
  transform: scale(0, 1) rotate(0.0001deg);
}
.c-animateScaleX02.is-animated {
  transform: scale(1, 1) rotate(0.0001deg);
  transition-duration: 0.8s;
}

.c-animateScaleX03 {
  transform-origin: right top;
  transform: scale(0, 1) rotate(0.0001deg);
}
.c-animateScaleX03.is-animated {
  transform: scale(1, 1) rotate(0.0001deg);
  transition-duration: 0.8s;
}

.c-animateScaleY01 {
  transform: scale(1, 0) rotate(0.0001deg);
}
.c-animateScaleY01.is-animated {
  transform: scale(1, 1) rotate(0.0001deg);
  transition-duration: 0.8s;
}

.c-animateScaleY02 {
  transform-origin: left top;
  transform: scale(1, 0) rotate(0.0001deg);
}
.c-animateScaleY02.is-animated {
  transform: scale(1, 1) rotate(0.0001deg);
  transition-duration: 0.8s;
}

.c-animateScaleY03 {
  transition-duration: 0.8s;
  transform-origin: left bottom;
  transform: scale(1, 0) rotate(0.0001deg);
}
.c-animateScaleY03.is-animated {
  transform: scale(1, 1) rotate(0.0001deg);
}

.c-animateBlur01 {
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.c-animateBlur01.is-animated {
  opacity: 1;
  visibility: visible;
  -webkit-filter: blur(0);
  filter: blur(0);
  transition-duration: 0.8s;
}

.c-animateBlur02 {
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  transition-timing-function: ease-in-out;
}
.c-animateBlur02.is-animated {
  opacity: 1;
  visibility: visible;
  -webkit-filter: blur(0);
  filter: blur(0);
  transition-duration: 0.3s;
}

.c-animateTxt01 {
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
  -webkit-filter: blur(30px);
  filter: blur(30px);
  transform: translate(0, -30px);
}
.c-animateTxt01.is-animated {
  opacity: 1;
  visibility: visible;
  -webkit-filter: blur(0);
  filter: blur(0);
  transform: translate(0, 0);
  transition-duration: 0.8s;
}

.c-animatePopY01 {
  opacity: 0;
}
.c-animatePopY01.is-animated {
  animation: popY01 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0.3s;
  animation-fill-mode: forwards;
}
@keyframes popY01 {
  0%{
    top: 0;
    opacity: 0;
  }
  35% {
    top: -25%;
    opacity: 1;
  }
  50% {
    top: 5%;
    opacity: 1;
  }
  70% {
    top: -3%;
    opacity: 1;
  }
  80% {
    top: 2%;
    opacity: 1;
  }
  90% {
    top: -1%;
    opacity: 1;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .c-animateMoveX01 {
    transform: translate(40px, 0) rotate(0.0001deg);
  }

  .c-animateMoveX02 {
    transform: translate(-40px, 0) rotate(0.0001deg);
  }

  .c-animateMoveY01 {
    transform: translate(0, 40px) rotate(0.0001deg);
  }

  .c-animateMoveY02 {
    transform: translate(0, -40px) rotate(0.0001deg);
  }
  
  .c-animateTxt01 {
    transform: translate(0, -40px) rotate(0.0001deg);
  }
}


/* Other ----------------------------*/
/* -- Font Family -- */
.c-ff-notosans {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif !important;
}
.c-ff-mplusrounded1c {
  font-family: 'M PLUS Rounded 1c', -apple-system, BlinkMacSystemFont, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif !important;
}
.c-ff-shipporiMinB1 {
  font-family: 'Shippori Mincho B1', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif !important;
}
.c-ff-kaiseiHarunoumi {
  font-family: 'Kaisei HarunoUmi', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif !important;
}

/* -- Text Align -- */
.c-taLeft {
  text-align: left !important;
}
.c-taRight {
  text-align: right !important;
}
.c-taCenter {
  text-align: center !important;
}

/* -- Letter Spacing -- */
.c-lsN001 {
  letter-spacing: -0.01em !important;
}
.c-lsN002 {
  letter-spacing: -0.02em !important;
}
.c-lsN003 {
  letter-spacing: -0.03em !important;
}
.c-lsN004 {
  letter-spacing: -0.04em !important;
}
.c-lsN005 {
  letter-spacing: -0.05em !important;
}
.c-lsN006 {
  letter-spacing: -0.06em !important;
}
.c-lsN007 {
  letter-spacing: -0.07em !important;
}
.c-lsN008 {
  letter-spacing: -0.08em !important;
}
.c-lsN009 {
  letter-spacing: -0.09em !important;
}
.c-lsN010 {
  letter-spacing: -0.10em !important;
}

/* -- Pointer Event -- */
.c-peNone {
  pointer-events: none !important;
}