/*!
    Normalize

    Copyright 2019 Elad Shechter

    Reference:
    https://medium.com/@elad/normalize-css-or-css-reset-9d75175c5d1e
------------------------------ */
/****** Elad Shechter's RESET *******/
/*** box sizing border-box for all elements ***/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  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;
}

/*
    Normalize Add-On
*/
body p, body span, body dl, h1, h2, h3, h4, h5, h6 {
  transform: rotate(0.03deg);
  -moz-transform: rotate(0.03deg);
  -ms-transform: rotate(0.03deg);
  -o-transform: rotate(0.03deg);
  -webkit-transform: rotate(0.03deg);
}

body p, body span, body dl, h1, h2, h3, h4, h5, h6 {
  word-break: break-all;
}

html,
body,
nav {
  margin: 0;
  padding: 0;
}

html,
body {
  position: relative;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 991px) {
  html {
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 1200px) {
  html {
    -webkit-overflow-scrolling: touch;
  }
}

img,
svg,
use {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a,
button {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a {
  color: #ff6822;
}

a:visited {
  color: #ff6822;
}

a:hover {
  color: rgba(255, 104, 34, 0.8);
}

a:active {
  color: rgba(255, 104, 34, 0.8);
}

a:focus {
  outline: 0;
}

button {
  outline: 0;
}

span,
span:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

::-moz-selection {
  color: #000;
  background-color: rgba(255, 104, 34, 0.1);
}

::selection {
  color: #000;
  background-color: rgba(255, 104, 34, 0.1);
}

.d-none {
  display: none;
}

@media screen and (max-width: 768px) {
  .d-sm-none {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .d-md-none {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .d-lg-none {
    display: none;
  }
}

@media screen and (min-width: 1550px) {
  .d-xl-none {
    display: none;
  }
}

.d-block {
  display: block;
}

@media screen and (max-width: 768px) {
  .d-sm-block {
    display: block;
  }
}

@media screen and (max-width: 991px) {
  .d-md-block {
    display: block;
  }
}

@media screen and (max-width: 1200px) {
  .d-lg-block {
    display: block;
  }
}

@media screen and (min-width: 1550px) {
  .d-xl-block {
    display: block;
  }
}

.text-l {
  text-align: left;
}

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

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

.mt-1 {
  margin-top: 1rem;
}
@media screen and (max-width: 991px) {
  .mt-1 {
    margin-top: 0.5rem;
  }
}

.mt-2 {
  margin-top: 2rem;
}
@media screen and (max-width: 991px) {
  .mt-2 {
    margin-top: 1rem;
  }
}

.mt-3 {
  margin-top: 3rem;
}
@media screen and (max-width: 991px) {
  .mt-3 {
    margin-top: 1.5rem;
  }
}

.mt-4 {
  margin-top: 4rem;
}
@media screen and (max-width: 991px) {
  .mt-4 {
    margin-top: 2rem;
  }
}

.mt-5 {
  margin-top: 5rem;
}
@media screen and (max-width: 991px) {
  .mt-5 {
    margin-top: 2.5rem;
  }
}

.mt-6 {
  margin-top: 6rem;
}
@media screen and (max-width: 991px) {
  .mt-6 {
    margin-top: 3rem;
  }
}

.mt-7 {
  margin-top: 7rem;
}
@media screen and (max-width: 991px) {
  .mt-7 {
    margin-top: 3.5rem;
  }
}

.mt-8 {
  margin-top: 8rem;
}
@media screen and (max-width: 991px) {
  .mt-8 {
    margin-top: 4rem;
  }
}

.mt-9 {
  margin-top: 9rem;
}
@media screen and (max-width: 991px) {
  .mt-9 {
    margin-top: 4.5rem;
  }
}

.mt-10 {
  margin-top: 10rem;
}
@media screen and (max-width: 991px) {
  .mt-10 {
    margin-top: 5rem;
  }
}

.mt-none,
.container .row .col .mt-none {
  margin-top: 0 !important;
}
@media screen and (max-width: 991px) {
  .mt-none,
  .container .row .col .mt-none {
    margin-top: 0 !important;
  }
}

.mb-1 {
  margin-bottom: 1rem;
}
@media screen and (max-width: 991px) {
  .mb-1 {
    margin-bottom: 0.5rem;
  }
}

.mb-2 {
  margin-bottom: 2rem;
}
@media screen and (max-width: 991px) {
  .mb-2 {
    margin-bottom: 1rem;
  }
}

.mb-3 {
  margin-bottom: 3rem;
}
@media screen and (max-width: 991px) {
  .mb-3 {
    margin-bottom: 1.5rem;
  }
}

.mb-4 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 991px) {
  .mb-4 {
    margin-bottom: 2rem;
  }
}

.mb-5 {
  margin-bottom: 5rem;
}
@media screen and (max-width: 991px) {
  .mb-5 {
    margin-bottom: 2.5rem;
  }
}

.mb-6 {
  margin-bottom: 6rem;
}
@media screen and (max-width: 991px) {
  .mb-6 {
    margin-bottom: 3rem;
  }
}

.mb-7 {
  margin-bottom: 7rem;
}
@media screen and (max-width: 991px) {
  .mb-7 {
    margin-bottom: 3.5rem;
  }
}

.mb-8 {
  margin-bottom: 8rem;
}
@media screen and (max-width: 991px) {
  .mb-8 {
    margin-bottom: 4rem;
  }
}

.mb-9 {
  margin-bottom: 9rem;
}
@media screen and (max-width: 991px) {
  .mb-9 {
    margin-bottom: 4.5rem;
  }
}

.mb-10 {
  margin-bottom: 10rem;
}
@media screen and (max-width: 991px) {
  .mb-10 {
    margin-bottom: 5rem;
  }
}

.mb-none,
.container .row .col .mb-none {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 991px) {
  .mb-none,
  .container .row .col .mb-none {
    margin-top: 0 !important;
  }
}

.pt-1 {
  padding-top: 1rem;
}
@media screen and (max-width: 991px) {
  .pt-1 {
    padding-top: 0.5rem;
  }
}

.pt-2 {
  padding-top: 2rem;
}
@media screen and (max-width: 991px) {
  .pt-2 {
    padding-top: 1rem;
  }
}

.pt-3 {
  padding-top: 3rem;
}
@media screen and (max-width: 991px) {
  .pt-3 {
    padding-top: 1.5rem;
  }
}

.pt-4 {
  padding-top: 4rem;
}
@media screen and (max-width: 991px) {
  .pt-4 {
    padding-top: 2rem;
  }
}

.pt-5 {
  padding-top: 5rem;
}
@media screen and (max-width: 991px) {
  .pt-5 {
    padding-top: 2.5rem;
  }
}

.pt-6 {
  padding-top: 6rem;
}
@media screen and (max-width: 991px) {
  .pt-6 {
    padding-top: 3rem;
  }
}

.pt-7 {
  padding-top: 7rem;
}
@media screen and (max-width: 991px) {
  .pt-7 {
    padding-top: 3.5rem;
  }
}

.pt-8 {
  padding-top: 8rem;
}
@media screen and (max-width: 991px) {
  .pt-8 {
    padding-top: 4rem;
  }
}

.pt-9 {
  padding-top: 9rem;
}
@media screen and (max-width: 991px) {
  .pt-9 {
    padding-top: 4.5rem;
  }
}

.pt-10 {
  padding-top: 10rem;
}
@media screen and (max-width: 991px) {
  .pt-10 {
    padding-top: 5rem;
  }
}

.pb-1 {
  padding-bottom: 1rem;
}
@media screen and (max-width: 991px) {
  .pb-1 {
    padding-bottom: 0.5rem;
  }
}

.pb-2 {
  padding-bottom: 2rem;
}
@media screen and (max-width: 991px) {
  .pb-2 {
    padding-bottom: 1rem;
  }
}

.pb-3 {
  padding-bottom: 3rem;
}
@media screen and (max-width: 991px) {
  .pb-3 {
    padding-bottom: 1.5rem;
  }
}

.pb-4 {
  padding-bottom: 4rem;
}
@media screen and (max-width: 991px) {
  .pb-4 {
    padding-bottom: 2rem;
  }
}

.pb-5 {
  padding-bottom: 5rem;
}
@media screen and (max-width: 991px) {
  .pb-5 {
    padding-bottom: 2.5rem;
  }
}

.pb-6 {
  padding-bottom: 6rem;
}
@media screen and (max-width: 991px) {
  .pb-6 {
    padding-bottom: 3rem;
  }
}

.pb-7 {
  padding-bottom: 7rem;
}
@media screen and (max-width: 991px) {
  .pb-7 {
    padding-bottom: 3.5rem;
  }
}

.pb-8 {
  padding-bottom: 8rem;
}
@media screen and (max-width: 991px) {
  .pb-8 {
    padding-bottom: 4rem;
  }
}

.pb-9 {
  padding-bottom: 9rem;
}
@media screen and (max-width: 991px) {
  .pb-9 {
    padding-bottom: 4.5rem;
  }
}

.pb-10 {
  padding-bottom: 10rem;
}
@media screen and (max-width: 991px) {
  .pb-10 {
    padding-bottom: 5rem;
  }
}

.w-10 {
  width: 10%;
}

.w-20 {
  width: 20%;
}

.w-30 {
  width: 30%;
}

.w-40 {
  width: 40%;
}

.w-50 {
  width: 50%;
}

.w-60 {
  width: 60%;
}

.w-70 {
  width: 70%;
}

.w-80 {
  width: 80%;
}

.w-90 {
  width: 90%;
}

.w-100 {
  width: 100%;
}

.hide-text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.img-radius img {
  border-radius: 5px;
}

.img-circle img {
  border-radius: 100%;
}

.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  overflow-y: hidden;
}

/*
    Layout
*/
* {
  min-height: 0;
  min-width: 0;
}

html,
body {
  width: 100%;
}

body {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  background: #ff6822;
  color: #000;
}

.items {
  width: 100%;
  height: 100%;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}
.items .item {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}
.items .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .items .item img {
    max-width: 900px;
    border-radius: 0 0 50% 50%/0 0 20px 20px;
  }
}
.items .item.current {
  opacity: 1;
}

header {
  width: 100%;
  position: relative;
}
header .items {
  height: 760px;
}
@media screen and (max-width: 768px) {
  header .items {
    padding-bottom: 200%;
  }
}

.page-top {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 1000;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .page-top {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

.campaign {
  position: absolute;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 60%;
}
@media screen and (max-width: 768px) {
  .campaign {
    width: 80%;
  }
}
.campaign .terms {
  text-align: center;
}
.campaign .terms a {
  text-decoration: underline;
  color: #fff;
  font-size: 16px;
}
.campaign .terms a:visited {
  text-decoration: underline;
  color: #fff;
}
.campaign .terms a:hover {
  opacity: 0.6;
}
.campaign .terms a:active {
  opacity: 0.6;
}

footer {
  position: relative;
  width: 100%;
  height: 300px;
  text-align: center;
  overflow: hidden;
  background: #fff8e0 url(../img/bg-footer-pc.png) no-repeat center top;
}
@media screen and (max-width: 768px) {
  footer {
    height: 250px;
    background: #fff8e0 url(../img/bg-footer-sp.png) no-repeat center top;
  }
}
footer .logo {
  margin-top: 140px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  footer .logo {
    margin-top: 70px;
  }
}
footer small {
  font-size: 14px;
}

.column {
  width: 100%;
  padding: 90px 0;
}
@media screen and (max-width: 768px) {
  .column {
    padding: 60px 0;
  }
}
.column .inner-column {
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  .column .inner-column {
    padding: 0 20px;
  }
}
.column h2 {
  position: relative;
  margin-bottom: 60px;
  padding: 20px;
  text-align: center;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  color: #ff6822;
}
@media screen and (max-width: 768px) {
  .column h2 {
    margin-bottom: 30px;
    font-size: 28px;
  }
}
.column h2::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  width: 65px;
  height: 84px;
}
.column h2.heading-orange::before {
  background: url(../img/egg-orange.png) no-repeat center top;
}
.column h2.heading-white::before {
  background: url(../img/egg-white.png) no-repeat center top;
}

.boxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .boxs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#tvcm {
  background: url(../img/label-tvcm-pc.png) left 30px no-repeat transparent;
}
@media screen and (max-width: 768px) {
  #tvcm {
    background: url(../img/label-tvcm-sp.png) left bottom no-repeat transparent;
  }
}
#tvcm h2 {
  color: #fff;
}
#tvcm .box a {
  display: block;
}
#tvcm .box img {
  margin-bottom: 10px;
  border: 3px solid #fff;
  border-radius: 20px;
}
#tvcm .box p {
  text-align: center;
  font-size: 24px;
  color: #fff;
}

#concept {
  background-color: #fff;
  padding: 0;
}
#concept .inner-column {
  position: relative;
  margin: 0;
  max-width: none;
}
@media screen and (max-width: 768px) {
  #concept .inner-column {
    padding: 0;
  }
}
#concept ul {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 1000px;
}
#concept ul li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}
#concept ul li img {
  width: 100%;
  height: 1000px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
#concept .current {
  opacity: 1;
}
#concept .concept-copy {
  margin: 0 auto;
  position: absolute;
  top: 60px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 300;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  #concept .concept-copy {
    -ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
            writing-mode: horizontal-tb;
    width: 70%;
  }
}
#concept .concept-copy p {
  margin-left: 1em;
  font-size: 24px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #concept .concept-copy p {
    font-size: 18px;
    margin-left: 0;
  }
}
#concept .concept-copy p:first-child {
  text-indent: -0.5em;
}
#concept .concept-copy p:last-child {
  margin-left: 0;
}
#concept .concept-copy p span {
  color: #ff6822;
}

#secret {
  background: url(../img/label-secrets-pc.png) right 30px no-repeat #fff4d2;
}
@media screen and (max-width: 768px) {
  #secret {
    background: url(../img/label-secrets-sp.png) right 30px no-repeat #fff4d2;
  }
}
#secret h2 {
  margin-bottom: 0;
}
#secret .boxs {
  margin-bottom: 60px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#secret .boxs.boxs-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  #secret .boxs.boxs-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#secret .boxs .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 33.3333333333%;
  padding: 20px;
  border: 3px solid #ff6822;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #secret .boxs .box {
    width: 100%;
  }
}
#secret #nutrition .boxs {
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
}
#secret h3 {
  margin-bottom: 30px;
  text-align: center;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #ff6822;
}
#secret h4 {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  color: #ff6822;
}
#secret p {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 1.5;
}
#secret small {
  display: block;
  margin-bottom: 15px;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
}
#secret #nutrition-chart {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #secret #nutrition-chart {
    margin-bottom: 0;
  }
}
#secret #nutrition-chart li {
  width: auto;
  padding: 0;
  border: none;
  border-radius: 0;
}

#lineup {
  background: url(../img/label-lineup-pc.png) left 30px no-repeat #fff8e0;
}
@media screen and (max-width: 768px) {
  #lineup {
    background: url(../img/label-lineup-sp.png) left 30px no-repeat #fff8e0;
  }
}
#lineup .box {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #lineup .box img {
    height: 140px;
  }
}
#lineup p {
  font-size: 24px;
}/*# sourceMappingURL=style.css.map */