/*--------------------------------------
  Utility Styles
---------------------------------------*/
.align-left {
  text-align: left;
}

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

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

.sp-none {
  display: inherit;
}

@media (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

.pc-none {
  display: none;
}

@media (max-width: 768px) {
  .pc-none {
    display: inherit;
  }
}

ul.inline {
  display: inline-block;
}

ul.inline li {
  display: inline-block;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
    opacity: 0;
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

img {
  vertical-align: top;
}

html {
  -webkit-text-size-adjust: 100%;
  font-size: 10px;
}

body {
  background: #de353c;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: #fff;
}

@media (max-width: 768px) {
  body {
    font-size: 3.73333vw;
  }
}

/*
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-family: 'Cocogoose', serif;
  line-height: 1;
}

h1 {
  font-size: 16rem;
  small {
    display: block;
    line-height: 0.5;
    font-size: 7.5rem;
  }
  @media (max-width: $breakpoint) {
    font-size: 10rem;
    small {
      font-size: 4.5rem;
    }
  }
}
h2 {
  font-size: 6.5rem;
  @media (max-width: $breakpoint) {
    font-size: 6rem;
  }
}


h4 {
  font-size: 2.5rem;
  @media (max-width: $breakpoint) {
    font-size: 2rem;
  }
}
*/
a {
  text-decoration: underline;
}

li {
  list-style: none;
}

.button {
  display: block;
  cursor: pointer;
}

.button.outline1 {
  width: 400px;
  height: 60px;
  line-height: 58px;
  border: 1px solid #de353c;
  color: #de353c;
  margin: 0 auto;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  position: relative;
}

@media (max-width: 768px) {
  .button.outline1 {
    width: 53.33333vw;
    height: 8vw;
    line-height: 8vw;
    border-radius: 4vw;
    font-size: 2.66667vw;
  }
}

.button.outline1 span:after {
  content: "";
  position: absolute;
  right: 23px;
  top: 50%;
  width: 15px;
  height: 1px;
  background: #de353c;
}

@media (max-width: 768px) {
  .button.outline1 span:after {
    right: 3.06667vw;
    width: 2vw;
  }
}

.button.outline1 span:before {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -7px;
  width: 1px;
  height: 15px;
  background: #de353c;
}

@media (max-width: 768px) {
  .button.outline1 span:before {
    right: 4vw;
    height: 2vw;
    margin-top: -0.93333vw;
  }
}

.button.color1, .button.color2 {
  width: 340px;
  height: 60px;
  font-weight: bold;
  border-radius: 8px;
  overflow: hidden;
  line-height: 60px;
  margin: 0 auto;
  background: #de353c;
  color: #FFF;
  text-decoration: none;
  font-size: 16px;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, .11);
          box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, .11);
  position: relative;
}

@media (max-width: 768px) {
  .button.color1, .button.color2 {
    width: 70.66667vw;
    height: 12vw;
    line-height: 12vw;
    font-size: 3.73333vw;
    -webkit-box-shadow: 0px 0.53333vw 1.33333vw 0px rgba(0, 0, 0, .11);
            box-shadow: 0px 0.53333vw 1.33333vw 0px rgba(0, 0, 0, .11);
  }
}

.button.color1 span:after, .button.color2 span:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -6px;
}

@media (max-width: 768px) {
  .button.color1 span:after, .button.color2 span:after {
    right: 5.33333vw;
    width: 1.6vw;
    height: 1.6vw;
    border-right: 0.53333vw solid #fff;
    border-bottom: 0.53333vw solid #fff;
    margin-top: -1.06667vw;
  }
}

.button.outline1 span:after, .button.outline1 span:before {
  -webkit-transition: color 0.2s ease, background 0.2s ease;
  transition: color 0.2s ease, background 0.2s ease;
}

.button.outline1:hover {
  -webkit-transition: color 0s ease, background 0s ease;
  transition: color 0s ease, background 0s ease;
  background: #de353c;
  color: #fff;
}

.button.outline1:hover span:after, .button.outline1:hover span:before {
  -webkit-transition: color 0s ease, background 0s ease;
  transition: color 0s ease, background 0s ease;
  background: #fff;
}

.button.color1 {
  -webkit-transition: color 0s ease, background 0s ease;
  transition: color 0s ease, background 0s ease;
  background: -webkit-gradient(linear, left top, right top, from(#222), to(#111));
  background: linear-gradient(90deg, #222, #111);
}

.button.color1:hover {
  opacity: 0.7;
}

.button.color2 {
  -webkit-transition: color 0s ease, background 0s ease;
  transition: color 0s ease, background 0s ease;
  background: -webkit-gradient(linear, left top, right top, from(#ff9326), to(#ff6600));
  background: linear-gradient(90deg, #ff9326, #ff6600);
}

.button.color2:hover {
  opacity: 0.7;
}

.video .video--container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.video .video--container iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.st-FooterRow {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.st-Content {
  /*
  @media (max-width: $breakpoint) {
    display: block;
  }
  */
}

.st-Content .st-ContentInner {
  text-align: center;
  margin: 0 auto;
  padding: 60px 0;
  max-width: 710px;
}

@media (max-width: 768px) {
  .st-Content .st-ContentInner {
    max-width: inherit;
    padding: 8vw 4vw;
  }
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  overflow: hidden;
}

#loader svg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}

#loader svg circle {
  stroke-dasharray: 110 377;
  stroke: #fff;
  fill: transparent;
  stroke-width: 4px;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

#loader #stripes {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transform: skewX(-42deg) scaleX(1.2);
          transform: skewX(-42deg) scaleX(1.2);
  pointer-events: none;
}

@media (max-width: 768px) {
  #loader #stripes {
    -webkit-transform: skewX(-42deg) scaleX(1.8);
            transform: skewX(-42deg) scaleX(1.8);
  }
}

#loader #stripes .stripe {
  position: absolute;
  width: 40%;
  height: 100%;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  background: #d71718;
}

#loader #stripes .stripe:nth-child(1) {
  left: -30%;
  -webkit-transform-origin: center 0;
          transform-origin: center 0;
}

#loader #stripes .stripe:nth-child(2) {
  left: 0%;
  -webkit-transform-origin: center 100%;
          transform-origin: center 100%;
}

#loader #stripes .stripe:nth-child(3) {
  left: 30%;
  -webkit-transform-origin: center 0;
          transform-origin: center 0;
}

#loader #stripes .stripe:nth-child(4) {
  left: 60%;
  -webkit-transform-origin: center 100%;
          transform-origin: center 100%;
}

#loader #stripes .stripe:nth-child(5) {
  left: 90%;
  -webkit-transform-origin: center 0;
          transform-origin: center 0;
}

#loader #stripes .stripe:nth-child(1), #loader #stripes .stripe:nth-child(5) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#loader #stripes .stripe:nth-child(2), #loader #stripes .stripe:nth-child(4) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#loader.hide {
  pointer-events: none;
}

#loader.hide svg {
  opacity: 0;
}

#loader.hide #stripes .stripe {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

#header {
  position: static;
  width: 100%;
  z-index: 100;
  background: #e70012;
}

#header #kv {
  text-align: center;
}

#header #kv img {
  max-width: 750px;
  width: 100%;
  height: auto;
}

#footer {
  background: #111111;
  color: #fff;
  height: 180px;
  padding: 30px;
}

#footer a {
  color: #fff;
}

@media (max-width: 768px) {
  #footer {
    height: 50px;
    padding: 5.33333vw 0 32vw;
  }
}

#footer .st-FooterRow {
  text-align: center;
}

#footer .st-FooterRow .copyright {
  line-height: 1;
  font-size: 12px;
}

@media (max-width: 768px) {
  #footer .st-FooterRow .copyright {
    font-size: 2.66667vw;
  }
}

#footer .st-FooterRow .copyright small {
  font-size: 100%;
}

#about {
  background: #b82c32 url(../img/bg_repeat.png);
  background-size: 28px auto;
}

@media (max-width: 768px) {
  #about {
    background-size: 7.46667vw auto;
  }
}

#about .title {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  #about .title {
    margin-bottom: 8vw;
  }
}

#about .title img {
  width: 624px;
  height: auto;
}

@media (max-width: 768px) {
  #about .title img {
    width: 83.2vw;
  }
}

#about .sub-title {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  #about .sub-title {
    margin-bottom: 8vw;
  }
}

#about .sub-title img {
  width: 590px;
  height: auto;
}

@media (max-width: 768px) {
  #about .sub-title img {
    width: 78.66667vw;
  }
}

#about .video + .video {
  margin-top: 60px;
}

@media (max-width: 768px) {
  #about .video + .video {
    margin-top: 8vw;
  }
}

#about .video .video--caption {
  margin-top: 15px;
}

@media (max-width: 768px) {
  #about .video .video--caption {
    margin-top: 2.66667vw;
  }
}

#about .video--caption p {
  text-align: center;
  font-size: 16px;
}

@media (max-width: 768px) {
  #about .video--caption p {
    font-weight: bold;
    font-size: 4.26667vw;
  }
}

#campaign .st-ContentInner {
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  #campaign .st-ContentInner {
    padding-bottom: 16vw;
  }
}

#campaign .sub-title {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  #campaign .sub-title {
    margin-bottom: 8vw;
  }
}

#campaign .sub-title img {
  width: 690px;
  height: auto;
}

@media (max-width: 768px) {
  #campaign .sub-title img {
    width: 92vw;
  }
}

#campaign h3 {
  margin-bottom: 50px;
  line-height: 1.4;
  font-style: italic;
  font-size: 29px;
}

@media (max-width: 768px) {
  #campaign h3 {
    margin-bottom: 6.66667vw;
  }
}

@media (max-width: 768px) {
  #campaign h3 {
    font-size: 4.53333vw;
  }
}

#campaign .campaign + .campaign {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #ee555b;
}

@media (max-width: 768px) {
  #campaign .campaign + .campaign {
    margin-top: 8vw;
    padding-top: 8vw;
  }
}

#campaign .campaign--footer a.button {
  vertical-align: top;
  display: inline-block;
  margin: 0;
}

#campaign .campaign--footer a.button + a.button {
  margin-left: 18px;
}

@media (max-width: 768px) {
  #campaign .campaign--footer a.button + a.button {
    margin-left: auto;
    margin-top: 2.66667vw;
  }
}

@media (max-width: 768px) {
  #campaign .campaign--footer a.button {
    display: inline-block;
    margin: 0 auto;
  }
}

#campaign .camapign--body {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  #campaign .camapign--body {
    margin-bottom: 6.66667vw;
  }
}

#campaign .camapign--body a {
  color: #ffff66;
  text-decoration: none;
}

#campaign .camapign--body p {
  text-align: center;
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  #campaign .camapign--body p {
    text-align: left;
  }
}

#campaign .campaign2 .camapign--body {
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  #campaign .campaign2 .camapign--body {
    margin-bottom: 4vw;
  }
}

#campaign .campaign2 .camapign--body p {
  font-size: 16px;
}

@media (max-width: 768px) {
  #campaign .campaign2 .camapign--body p {
    font-size: 3.73333vw;
  }
}

#campaign .goods {
  margin-top: 60px;
}

@media (max-width: 768px) {
  #campaign .goods {
    margin-top: 8vw;
  }
}

#campaign .goods h4 {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  #campaign .goods h4 {
    margin-bottom: 2.66667vw;
  }
}

#campaign .goods h4.heading1 img {
  width: 402px;
  height: auto;
}

@media (max-width: 768px) {
  #campaign .goods h4.heading1 img {
    width: 53.6vw;
  }
}

#campaign .goods h4.heading1 small {
  font-size: 14px;
  display: inline-block;
  margin-top: 20px;
  font-weight: normal;
}

@media (max-width: 768px) {
  #campaign .goods h4.heading1 small {
    margin-top: 2.13333vw;
    font-size: 3.2vw;
  }
}

#campaign .goods h4.heading2 {
  margin-top: 35px;
}

@media (max-width: 768px) {
  #campaign .goods h4.heading2 {
    margin-top: 5.33333vw;
  }
}

#campaign .goods h4.heading2 img {
  width: 346px;
  height: auto;
}

@media (max-width: 768px) {
  #campaign .goods h4.heading2 img {
    width: 46.13333vw;
  }
}

#campaign .goods .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 768px) {
  #campaign .goods .items {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

#campaign .goods .items .item {
  -ms-flex-preferred-size: calc(50% - 5px);
      flex-basis: calc(50% - 5px);
  margin: 0;
  margin-bottom: 25px;
  padding: 0 10px;
}

@media (max-width: 768px) {
  #campaign .goods .items .item {
    -ms-flex-preferred-size: calc(50% - 2vw);
        flex-basis: calc(50% - 2vw);
  }
  #campaign .goods .items .item:first-child:last-child {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  #campaign .goods .items .item {
    margin-bottom: 3.46667vw;
  }
}

@media (max-width: 768px) {
  #campaign .goods .items .item {
    padding: 0;
  }
}

#campaign .goods .items .item img {
  width: 100%;
  height: auto;
}

#campaign .goods .items .item figcaption {
  letter-spacing: 0;
  margin-top: 10px;
  text-align: left;
  font-size: 14px;
}

@media (max-width: 768px) {
  #campaign .goods .items .item figcaption {
    margin-top: 1.33333vw;
  }
}

@media (max-width: 768px) {
  #campaign .goods .items .item figcaption {
    font-size: 3.2vw;
  }
}

#campaign .campaign--header {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  #campaign .campaign--header {
    margin-bottom: 2.93333vw;
  }
}

#campaign .campaign--header .label {
  font-weight: bold;
  display: inline-block;
  border-radius: 45px;
  background: #fff;
  color: #be0005;
  width: 428px;
  height: 45px;
  line-height: 45px;
  font-style: italic;
  font-size: 27px;
}

@media (max-width: 768px) {
  #campaign .campaign--header .label {
    width: 76vw;
    height: 8vw;
    border-radius: 8vw;
    line-height: 8vw;
    font-size: 4.8vw;
  }
}
