@charset "UTF-8";
@keyframes is-open-pc {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(7px);
  }
  100% {
    opacity: 1;
  }
}
/* Base Style
===============================*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1535px) {
  html {
    font-size: 50%;
  }
}
@media screen and (max-width: 1110px) {
  html {
    font-size: 48%;
  }
}
@media screen and (max-width: 800px) {
  html {
    font-size: 62.5%;
  }
}

body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  background-color: #FFFFFF;
}

img {
  height: auto;
}

a:hover {
  cursor: pointer;
}

/* Visible Style
===============================*/
@media screen and (max-width: 800px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  #btn-pc-none, #btn-pc-none2 {
    display: none;
  }
}

@media screen and (max-width: 1110px) {
  .tb {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .sp {
    display: block;
  }
}

#menu-sp-none, #menu-sp-none2, #menu-sp-none3, #menu-sp-none4, #menu-sp-none5,
#situ-sp-none, #situ-sp-none2, #situ-sp-none3, #situ-sp-none4,
#btn-sp-none, #btn-sp-none2, #btn-sp-none3, #btn-sp-none4 {
  display: none;
}
@media screen and (max-width: 800px) {
  #menu-sp-none, #menu-sp-none2, #menu-sp-none3, #menu-sp-none4, #menu-sp-none5,
  #situ-sp-none, #situ-sp-none2, #situ-sp-none3, #situ-sp-none4,
  #btn-sp-none, #btn-sp-none2, #btn-sp-none3, #btn-sp-none4 {
    display: block;
  }
}

.sp-600 {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp-600 {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .pc-600 {
    display: none;
  }
}

.sp-360 {
  display: none;
}
@media screen and (max-width: 365px) {
  .sp-360 {
    display: block;
  }
}

#footer-link-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  #footer-link-sp {
    display: flex;
  }
}

@media screen and (max-width: 600px) {
  #footer-link-pc {
    display: none;
  }
}

.nav-sp {
  display: none;
}
@media screen and (max-width: 1110px) {
  .nav-sp {
    display: block;
  }
}

@media screen and (max-width: 1110px) {
  .nav-pc {
    display: none;
  }
}

/* Header Section 
===============================*/
.header-body {
  position: fixed;
  width: 100%;
  border-radius: 0 0 100px 100px;
  background-color: #ffffff;
  box-shadow: 0px 2px 1px rgba(96, 53, 44, 0.05);
  z-index: 1000;
  transition: 0.15s;
}
@media screen and (max-width: 800px) {
  .header-body {
    border-radius: 0 0 40px 40px;
  }
}
.header-body div.header-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 66%;
  margin: 0 auto;
  padding-top: 22px;
  padding-bottom: 22px;
  z-index: 2000;
}
@media screen and (max-width: 1535px) {
  .header-body div.header-wide {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .header-body div.header-wide {
    padding-top: 16px;
    padding-bottom: 16px;
    width: 82%;
  }
}
@media screen and (max-width: 1535px) {
  .header-body div.header-wide .header-logo {
    width: 134px;
  }
  .header-body div.header-wide .header-logo img {
    width: 100%;
  }
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .header-logo {
    width: 114px;
  }
}
@media screen and (max-width: 600px) {
  .header-body div.header-wide .header-logo {
    width: 90px;
  }
}
.header-body div.header-wide .nav-list-main {
  display: flex;
  justify-content: space-between;
  width: 62%;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-list-main {
    width: 49%;
  }
}
.header-body div.header-wide .nav-list-main li {
  font-size: 1.7rem;
  font-weight: 900;
  color: #3b201b;
}
@media screen and (max-width: 800px) {
  .header-body div.header-wide .nav-list-main li {
    font-size: 1rem;
  }
}
.header-body div.header-wide .nav-button div {
  width: 25px;
  height: 3px;
  border-radius: 3px;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div {
    width: 19px;
  }
}
.header-body div.header-wide .nav-button div:hover {
  cursor: pointer;
}
.header-body div.header-wide .nav-button div:first-child {
  background-color: #008132;
  margin-bottom: 7.5px;
  transition: 0.3s;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div:first-child {
    margin-bottom: 5px;
  }
}
.header-body div.header-wide .nav-button div:nth-child(2) {
  background-color: #c8000f;
  margin-bottom: 7.5px;
  transition: 0.2s;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div:nth-child(2) {
    margin-bottom: 5px;
  }
}
.header-body div.header-wide .nav-button div:nth-child(3) {
  background-color: #ffc400;
  transition: 0.2s;
}
.header-body div.header-wide .nav-active:first-child {
  transform: rotate(45deg) translate(10px, 10px);
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-active:first-child {
    transform: rotate(45deg) translate(7px, 7px);
  }
}
.header-body div.header-wide .nav-active:nth-child(2) {
  opacity: 0;
}
.header-body div.header-wide .nav-active:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-active:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
}

.header-body-open {
  border-radius: 0;
  transition: 0.15s;
  z-index: 1000;
}

.nav-open {
  position: absolute;
  position: fixed;
  top: -100px;
  width: 100%;
  height: 73px;
  background-color: #ffc400;
  z-index: 200;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .nav-open {
    height: 66px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open {
    overflow-y: scroll;
  }
}
.nav-open .header-curve {
  width: 100vw;
}
@media screen and (max-width: 1110px) {
  .nav-open .header-curve {
    display: none;
  }
}
.nav-open .header-curve img {
  width: 100%;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp {
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
    padding: 0 10% 0 10%;
  }
}
.nav-open .nav-container-sp .common-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  padding: 47px 22px 0 22px;
  margin: 0 auto 0 auto;
}
@media screen and (max-width: 1535px) {
  .nav-open .nav-container-sp .common-menu {
    max-width: 1000px;
    padding-top: 36px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu {
    display: block;
    width: auto;
    padding: 0;
    margin: 0;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    margin-bottom: 24px;
    font-size: 24px;
    color: #3b201b;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    font-size: 21px;
  }
}
@media screen and (max-width: 365px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    font-size: 19px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
  margin-bottom: 20px;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 15px;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 14px;
  }
}
@media screen and (max-width: 365px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 14px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .header-menu-img {
    display: block;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list {
  display: flex;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #8b675f;
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list li {
  padding-right: 11px;
  padding-left: 11px;
  border-right: 1px solid #8b675f;
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
  padding-left: 0;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
    font-size: 11px;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
    font-size: 11px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect #menu-effect-last {
  margin-bottom: 28px;
}
.nav-open .nav-container-sp .common-menu .menu-effect #header_sns {
  display: flex;
}
.nav-open .nav-container-sp .common-menu .menu-effect #header_sns li {
  padding-left: 10px;
}
@media screen and (max-width: 1110px) {
  .nav-open #header_sns_sp {
    display: inline;
    animation: is-open-pc 0.47s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
    opacity: 0;
  }
  .nav-open #header_sns_sp li {
    margin-bottom: 22px;
  }
  .nav-open #header_sns_sp img {
    width: 32px;
  }
}
.nav-open .pc-effect-active {
  animation: is-open-pc 0.47s ease-in-out;
  animation-fill-mode: forwards;
  opacity: 0;
}
.nav-open .pc-effect-active:nth-child(2) {
  animation-delay: 0.2s;
}
.nav-open .pc-effect-active:nth-child(3) {
  animation-delay: 0.3s;
}
.nav-open .pc-effect-active:nth-child(4) {
  animation-delay: 0.4s;
}
.nav-open .pc-effect-active:nth-child(5) {
  animation-delay: 0.5s;
}
.nav-open .pc-effect-active:nth-child(6) {
  animation-delay: 0.6s;
}
.nav-open .pc-effect-active:nth-child(n+7) {
  animation-delay: 0.7s;
}
@media screen and (max-width: 1110px) {
  .nav-open .pc-effect-active:nth-child(6) {
    animation-delay: 0s;
  }
  .nav-open .pc-effect-active:nth-child(7) {
    animation-delay: 0.1s;
  }
  .nav-open .pc-effect-active:nth-child(8) {
    animation-delay: 0.2s;
  }
  .nav-open .pc-effect-active:nth-child(9) {
    animation-delay: 0.3s;
  }
  .nav-open .pc-effect-active:nth-child(10) {
    animation-delay: 0.4s;
  }
  .nav-open .pc-effect-active:nth-child(11) {
    animation-delay: 0.5s;
  }
  .nav-open .pc-effect-active:nth-child(12) {
    animation-delay: 0.6s;
  }
  .nav-open .pc-effect-active:nth-child(13) {
    animation-delay: 0.7s;
  }
  .nav-open .pc-effect-active:nth-child(n+14) {
    animation-delay: 0.8s;
  }
}

.nav-open-active {
  top: 100px;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .nav-open-active {
    top: 70px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open-active {
    top: 0px;
    width: 100vw;
    height: 100vh;
  }
}

/* Footer Section 
================================*/
.app-link {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: #c8000f;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .app-link {
    padding-top: 24px;
    padding-bottom: 20px;
  }
}
.app-link img {
  max-width: 956px;
}
@media screen and (max-width: 1535px) {
  .app-link img {
    max-width: 878px;
  }
}
@media screen and (max-width: 1110px) {
  .app-link img {
    max-width: 70%;
  }
}
@media screen and (max-width: 800px) {
  .app-link img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .app-link img {
    max-width: 88%;
  }
}

.footer-nav {
  padding-top: 70px;
  padding-bottom: 72px;
  background-color: #60352c;
  background-image: url(/lp/morning/images/footer_illust.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 800px) {
  .footer-nav {
    background-image: url(/lp/morning/images/footer_illust_sp.png);
    padding-top: 35px;
    padding-bottom: 110px;
    padding-left: 8.1%;
    padding-right: 8.1%;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav {
    padding-bottom: 90px;
  }
}
.footer-nav ul.footer-link {
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 25px auto;
  color: #fff;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1110px) {
  .footer-nav ul.footer-link {
    max-width: 700px;
  }
}
@media screen and (max-width: 800px) {
  .footer-nav ul.footer-link {
    font-size: 1.1rem;
  }
}
.footer-nav ul.footer-link li {
  width: 25%;
  margin-bottom: 21px;
}
.footer-nav ul.footer-link li:nth-child(4n+1) {
  width: 24%;
  padding-left: 1%;
}
.footer-nav ul.footer-link li:nth-child(4n+2) {
  width: 24%;
}
.footer-nav ul.footer-link li:nth-child(4n+3) {
  width: 27%;
}
.footer-nav ul.footer-link li:nth-child(4n+4) {
  width: 23.7%;
}
.footer-nav ul.footer-link li:nth-child(-n+4) {
  margin-bottom: 22px;
}
@media screen and (max-width: 800px) {
  .footer-nav ul.footer-link li {
    margin-bottom: 16px;
    line-height: 1.7;
  }
  .footer-nav ul.footer-link li:nth-child(4n+1) {
    width: 50%;
    padding-right: 10%;
    padding-left: 0;
  }
  .footer-nav ul.footer-link li:nth-child(4n+2) {
    width: 46%;
  }
  .footer-nav ul.footer-link li:nth-child(4n+3) {
    width: 50%;
    padding-right: 10%;
  }
  .footer-nav ul.footer-link li:nth-child(4n+4) {
    width: 46%;
  }
  .footer-nav ul.footer-link li:nth-child(-n+4) {
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav ul.footer-link li {
    margin-bottom: 15px;
  }
  .footer-nav ul.footer-link li:nth-child(-n+4) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav #footer-link-sp {
    display: flex;
  }
}
.footer-nav .footer-sns {
  display: flex;
  justify-content: space-between;
  width: 206px;
  margin: 0 auto 15px auto;
}
@media screen and (max-width: 600px) {
  .footer-nav .footer-sns {
    display: flex;
    justify-content: space-between;
    width: 167px;
    margin-bottom: 20px;
  }
}
.footer-nav .copy {
  font-size: 1.1rem;
  color: #a38680;
  letter-spacing: 0.075em;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .footer-nav .copy {
    font-size: 1rem;
  }
}

.des-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #63050A;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 800px) {
  .des-title {
    font-size: 1.8rem;
    letter-spacing: -0.075em;
    line-height: 1.6;
  }
}
.des-title .set {
  font-size: 1.8rem;
  letter-spacing: 0;
}
@media screen and (max-width: 800px) {
  .des-title .set {
    font-size: 1.5rem;
  }
}

.des-sub {
  font-size: 1.3rem;
  font-feature-settings: "palt";
  font-weight: 700;
  color: #63050A;
}
@media screen and (max-width: 800px) {
  .des-sub {
    font-size: 1.2rem;
  }
}

.des-price {
  font-family: "rubik";
  font-size: 3.1rem;
  color: #63050A;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .des-price {
    font-size: 2.4rem;
    font-weight: 500;
  }
}
.des-price .yen {
  font-family: "fredoka one";
  font-size: 1.4rem;
  letter-spacing: 0.17em;
}
@media screen and (max-width: 800px) {
  .des-price .yen {
    font-size: 1.1rem;
  }
}
.des-price .thin {
  font-weight: 400;
}

.des-caption {
  font-size: 1rem;
  font-weight: 500;
  color: #63050A;
}
@media screen and (max-width: 800px) {
  .des-caption {
    font-size: 0.9rem;
    margin-bottom: 0;
  }
}

.des-description {
  font-feature-settings: "palt";
  font-size: 1.8rem;
  font-weight: 500;
  border-radius: 10px;
  color: #B04523;
  background-color: #fdf6ea;
  padding: 24px 8.7% 24px 8.7%;
  line-height: 1.92;
}
@media screen and (max-width: 1535px) {
  .des-description {
    padding: 18px 8.7% 18px 8.7%;
  }
}
@media screen and (max-width: 1535px) {
  .des-description {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 800px) {
  .des-description {
    font-size: 1.2rem;
    padding: 24px 8.7% 24px 8.7%;
    line-height: 1.83;
  }
}

.tkg-box {
  color: #63050A;
  font-weight: bold;
}
.tkg-box .tkg-copy {
  font-size: 3.1rem;
  text-align: center;
}
.tkg-box .tkg-description {
  font-size: 2rem;
  line-height: 2;
  text-align: center;
}

.drink-caption {
  font-weight: 500;
  font-size: 1.8rem;
  color: #4C0910;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .drink-caption {
    font-size: 1.3rem;
    line-height: 1.92;
  }
}

.inner-drink {
  font-weight: 700;
  font-size: 1.4rem;
  color: white;
  background-color: #B04523;
  padding: 5px 6px 9px 8px;
  border-radius: 20px;
  width: 26%;
  text-align: center;
  margin: 0 auto 64px auto;
}
@media screen and (max-width: 800px) {
  .inner-drink {
    font-size: 1rem;
    transform: translate(0.9);
    margin: 0 auto 30px auto;
    width: 190px;
    padding: 5px 6px 7px 8px;
    border-radius: 20px;
    letter-spacing: -0.05em;
  }
}

.drink-cap-under {
  font-size: 1.1rem;
  text-align: center;
  font-weight: 500;
  color: #63050a;
  padding-top: 57px;
}
@media screen and (max-width: 800px) {
  .drink-cap-under {
    font-size: 1rem;
    padding-top: 24px;
  }
}

.drinklist dd {
  font-weight: 700;
  font-size: 1.9rem;
  color: #4C0910;
  line-height: 1.6;
  letter-spacing: -0.08em;
}
@media screen and (max-width: 800px) {
  .drinklist dd {
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    line-height: 1.6;
  }
}

.om-list {
  text-align: center;
  font-weight: 700;
  font-size: 1.9rem;
  color: #4C0910;
}

#om-sp dd {
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: #63050a;
}

h3 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: #3b201b;
}
@media screen and (max-width: 800px) {
  h3 {
    font-size: 2.2rem;
  }
}

.h3-sub {
  font-family: "fredoka one";
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: #3b201b;
}
@media screen and (max-width: 800px) {
  .h3-sub {
    font-size: 1rem;
  }
}

.movie-category h4 {
  font-family: "fredoka one";
  font-size: 1.6rem;
  color: #B04523;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 800px) {
  .movie-category h4 {
    font-size: 1.2rem;
  }
}

.movie-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #63050A;
}
@media screen and (max-width: 800px) {
  .movie-title {
    font-size: 2rem;
    line-height: 1.6;
  }
}

.intro {
  width: 100%;
  height: 100vh;
  position: relative;
  position: fixed;
  z-index: 9999;
  background-color: white;
  overflow: hidden;
}
.intro .anime-morning {
  position: absolute;
  width: 15%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1110px) {
  .intro .anime-morning {
    width: 28%;
  }
}
@media screen and (max-width: 800px) {
  .intro .anime-morning {
    width: 40%;
  }
}
.intro .anime-morning-active {
  animation: intro-small 3s ease-in-out forwards;
}
.intro .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  color: white;
  border: 3px #FF9A00 solid;
  border-radius: 50%;
  opacity: 0;
}
@media screen and (max-width: 1535px) {
  .intro .circle {
    width: 325px;
    height: 325px;
  }
}
@media screen and (max-width: 1110px) {
  .intro .circle {
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 800px) {
  .intro .circle {
    border: #FF9A00 solid 1px;
    width: 150px;
    height: 150px;
  }
}
.intro .circle-active {
  animation: intro-big 3s ease-in-out forwards;
}

.intro-active {
  animation: intro-hidden 3.2s ease-in-out forwards;
}

@keyframes intro-small {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  35% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  40% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.8);
  }
  54% {
    opacity: 1;
  }
  72% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
}
@keyframes intro-big {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
  }
  35% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
  }
  40% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5);
  }
  52% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.55);
  }
  77% {
    opacity: 0;
  }
  99% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(10);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
}
@keyframes intro-hidden {
  0% {
    opacity: 1;
  }
  56% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none !important;
    z-index: -1;
  }
}
@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ring-l {
  position: absolute;
  width: 8%;
  top: -12%;
  left: -1.55%;
  z-index: 20;
  animation: rotation1 30s linear infinite;
  opacity: 0.8;
}
@media screen and (max-width: 1535px) {
  .ring-l {
    width: 66px;
    top: -12%;
    left: 1%;
  }
}
@media screen and (max-width: 1110px) {
  .ring-l {
    width: 9%;
    top: -13%;
    left: -4.5%;
  }
}
@media screen and (max-width: 800px) {
  .ring-l {
    width: 12%;
    left: auto;
    top: -4.5%;
    right: 4.5%;
  }
}

.ring-r {
  position: absolute;
  width: 8%;
  top: -12.8%;
  right: -1.55%;
  z-index: 20;
  animation: rotation1 30s linear infinite;
  opacity: 0.8;
}
@media screen and (max-width: 1535px) {
  .ring-r {
    width: 66px;
    top: -12%;
    right: 1%;
  }
}
@media screen and (max-width: 1110px) {
  .ring-r {
    width: 9%;
    right: -4.5%;
  }
}
@media screen and (max-width: 800px) {
  .ring-r {
    width: 12%;
    top: -4%;
    right: 4.6%;
  }
}

@keyframes rotation2 {
  0% {
    opacity: 1;
    transform: translate(-140px, 140px) rotate(8deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rotation3 {
  0% {
    opacity: 1;
    transform: translate(140px, 140px) rotate(-8deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}
.de-img, .de-img-2 {
  opacity: 0;
  transform-origin: top left;
}

.de-img-r, .de-img-r-2 {
  opacity: 0;
  transform-origin: top right;
}

.de-img-active {
  animation: rotation2 0.3s ease-out forwards;
}
@media screen and (max-width: 800px) {
  .de-img-active {
    animation: rotation3 0.3s ease-out forwards;
  }
}

.de-img-r-active {
  animation: rotation3 0.3s ease-out forwards;
}

@keyframes pyon {
  0% {
    opacity: 1;
    scale: 0.6;
  }
  65% {
    scale: 1.05;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pyon-big {
  0% {
    opacity: 1;
    scale: 0.6;
  }
  70% {
    scale: 1.11;
  }
  100% {
    opacity: 1;
  }
}
.frag-box-anime-active {
  animation: pyon 0.4s ease-out forwards;
}

.delay {
  animation-delay: 0.2s;
}

.subset-img {
  opacity: 0;
}

.t-sub-img-active {
  animation: pyon 0.32s ease-out forwards;
}

#subset-img-delay {
  animation-delay: 0.18s;
}

#t-sub-img-right {
  animation-delay: 0.15s;
}

.drink-box-active {
  animation: pyon-big 0.35s ease-out forwards;
}

.om-list {
  opacity: 0;
}

.drink-box {
  opacity: 0;
}

.drink-anime {
  opacity: 0;
}

.drink-box-active:nth-child(2) {
  animation-delay: 0.1s;
}
.drink-box-active:nth-child(3) {
  animation-delay: 0.2s;
}
.drink-box-active:nth-child(4) {
  animation-delay: 0.3s;
}
.drink-box-active:nth-child(5) {
  animation-delay: 0.4s;
}
.drink-box-active:nth-child(6) {
  animation-delay: 0.5s;
}
.drink-box-active:nth-child(7) {
  animation-delay: 0.6s;
}

@keyframes fade-up-anime {
  0% {
    transform: translateY(65px);
    opacity: 1;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.situ-img-up {
  opacity: 0;
}

.situ-img-active {
  animation: fade-up-anime 0.5s ease-in-out forwards;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(6px);
    opacity: 0;
  }
  25% {
    transform: translateY(-6px);
    opacity: 1;
  }
  50% {
    transform: translateY(-12px);
    opacity: 1;
  }
  75% {
    transform: translateY(-6px);
    opacity: 1;
  }
  100% {
    transform: translateY(6px);
    opacity: 0;
  }
}
@keyframes fuwafuwa-sp {
  0% {
    transform: translateY(3px);
    opacity: 0;
  }
  25% {
    transform: translateY(1.5px);
    opacity: 1;
  }
  50% {
    transform: translateY(-6px);
    opacity: 1;
  }
  75% {
    transform: translateY(-1.5px);
    opacity: 1;
  }
  100% {
    transform: translateY(3px);
    opacity: 0;
  }
}
.words-r {
  position: absolute;
  bottom: -38%;
  right: -5%;
  animation: fuwafuwa 10s ease-in-out infinite;
  width: 22%;
  z-index: 900;
}
@media screen and (max-width: 800px) {
  .words-r {
    right: 4%;
    bottom: 40%;
    width: 40%;
    animation: fuwafuwa-sp 10s ease-in-out infinite;
  }
}

.words-l {
  position: absolute;
  bottom: -38%;
  left: 5%;
  animation: fuwafuwa 10s ease-in-out infinite;
  width: 22%;
  z-index: 900;
}
@media screen and (max-width: 800px) {
  .words-l {
    left: auto;
    right: 4%;
    bottom: 40%;
    width: 38%;
    animation: fuwafuwa-sp 10s ease-in-out infinite;
  }
}

.btn {
  width: 100%;
  background-image: url(/lp/morning/images/btn_bg.jpg);
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 1535px) {
  .btn {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 1110px) {
  .btn {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 800px) {
  .btn {
    padding-top: 42px;
    padding-bottom: 40px;
  }
}
.btn .btn-wrapper {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 825px;
}
@media screen and (max-width: 1535px) {
  .btn .btn-wrapper {
    width: 638px;
  }
}
@media screen and (max-width: 1110px) {
  .btn .btn-wrapper {
    width: 57%;
  }
}
@media screen and (max-width: 800px) {
  .btn .btn-wrapper {
    display: block;
    width: 85.7%;
  }
}
.btn a {
  display: block;
  width: 47.6%;
  filter: drop-shadow(1px 1px 1px rgba(73, 35, 29, 0.16));
  transition: 0.2s;
}
@media screen and (max-width: 800px) {
  .btn a {
    width: 100%;
  }
}
.btn a:hover {
  opacity: 0.9;
  filter: none;
}
.btn a:first-child {
  margin-bottom: 0px;
}
@media screen and (max-width: 1535px) {
  .btn a:first-child {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 800px) {
  .btn a:first-child {
    margin-bottom: 20px;
  }
}
.btn a img {
  width: 100%;
}
.btn a .btn-pc-l {
  margin-left: 0;
}
@media screen and (max-width: 800px) {
  .btn a .btn-pc-l {
    display: none;
  }
}
.btn a .btn-pc-r {
  margin-right: 0;
}
@media screen and (max-width: 800px) {
  .btn a .btn-pc-r {
    display: none;
  }
}

.movie {
  background-image: url(/lp/morning/images/movie_bg.jpg);
  padding-top: 60px;
  padding-bottom: 85px;
}
@media screen and (max-width: 1535px) {
  .movie {
    padding-top: 50px;
    padding-bottom: 63px;
  }
}
@media screen and (max-width: 800px) {
  .movie {
    padding-top: 43px;
    padding-bottom: 50px;
  }
}
.movie h3 {
  margin-bottom: 10px;
}
@media screen and (max-width: 1535px) {
  .movie h3 {
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 800px) {
  .movie h3 {
    margin-bottom: 6px;
  }
}
.movie .h3-sub {
  margin-bottom: 32px;
}
@media screen and (max-width: 1535px) {
  .movie .h3-sub {
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 800px) {
  .movie .h3-sub {
    margin-bottom: 24px;
  }
}
.movie .movie-card {
  width: 738px;
  margin: 0 auto;
  background-color: #ffffff;
  text-align: center;
  border-radius: 25px;
  box-shadow: 1px 1px 1px 0 rgba(73, 35, 29, 0.16);
}
@media screen and (max-width: 1535px) {
  .movie .movie-card {
    width: 590px;
  }
}
@media screen and (max-width: 1110px) {
  .movie .movie-card {
    width: 55%;
  }
}
@media screen and (max-width: 600px) {
  .movie .movie-card {
    width: 86.6%;
  }
}
.movie .movie-card iframe {
  width: 100%;
  border-radius: 25px 25px 0 0;
}
@media screen and (max-width: 1535px) {
  .movie .movie-card iframe {
    height: 330px;
  }
}
@media screen and (max-width: 1110px) {
  .movie .movie-card iframe {
    height: 30%;
  }
}
@media screen and (max-width: 800px) {
  .movie .movie-card iframe {
    height: 182px;
  }
}
.movie .movie-card .movie-category {
  padding: 24px 0 28px 0;
}
.movie .movie-card .movie-category h4 {
  margin-bottom: 7px;
}
@media screen and (max-width: 800px) {
  .movie .movie-card .movie-category {
    padding: 20px 13.5% 28px 13.5%;
  }
}

/* 2024 追記
================*/
.small-menu {
  font-size: 12px;
}

/* LP Original Style
===============================*/
.main {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.main .main-btn {
  position: absolute;
  position: fixed;
  bottom: -1.2%;
  right: -30%;
  z-index: 30;
  transition: 0.35s;
}
.main .main-btn .main-btn-menu {
  display: block;
  width: 150px;
}
.main .main-btn .main-btn-menu img {
  width: 100%;
}
.main .main-btn .main-btn-shop {
  display: block;
  margin-top: -22px;
  width: 150px;
}
.main .main-btn .main-btn-shop img {
  width: 100%;
}
.main .main-btn-active {
  right: -0.45%;
  transition: 0.3s;
}
.main .main-btn-active-2 {
  right: -30%;
  transition: 0.35s;
}
.main .main-btn-sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .main .main-btn-sp {
    width: 100%;
    display: flex;
    position: absolute;
    justify-content: space-between;
    padding-top: 5px;
    padding-bottom: 3px;
    position: fixed;
    bottom: 0;
    background-image: url(/lp/morning/images/menu_btn_bg.png);
    z-index: 30;
    bottom: -10%;
  }
  .main .main-btn-sp .main-btn-menu {
    width: 49.8%;
    padding-left: 1.23%;
  }
  .main .main-btn-sp .main-btn-menu img {
    width: 100%;
  }
  .main .main-btn-sp .main-btn-shop {
    width: 49.2%;
    padding-right: 1.23%;
  }
  .main .main-btn-sp .main-btn-shop img {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .main .main-btn-active {
    bottom: 0%;
    right: auto;
    transition: 0.3s;
  }
  .main .main-btn-active-2 {
    bottom: -10%;
    right: auto;
    transition: 0.3s;
  }
}
.main h1 {
  position: absolute;
  top: 21%;
  z-index: 20;
  width: 100%;
}
.main h1 img {
  width: 100%;
}
@media screen and (max-width: 800px) {
  .main h1 {
    width: 100%;
    top: 26.1%;
  }
}
.main .main-copy {
  position: absolute;
  width: 17.2%;
  top: 24.5%;
  left: 8.8%;
}
.main .main-ribbon {
  position: absolute;
  width: 16.8%;
  top: 13.9%;
  left: 47.4%;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
}
@media screen and (max-width: 800px) {
  .main .main-ribbon {
    width: 100%;
    top: 16.8%;
  }
}
.main .main-v {
  width: 100%;
}
.main .main-gaus {
  width: 100%;
}

@media screen and (max-width: 800px) {
  .copy {
    text-align: center;
    padding-top: 0px;
  }
  .copy img {
    width: 40.7%;
  }
}
@media screen and (max-width: 600px) {
  .copy {
    text-align: center;
    padding-top: 33px;
  }
  .copy img {
    width: 63.7%;
  }
}

.menu {
  padding-top: 50px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1535px) {
  .menu {
    padding-top: 35px;
  }
}
@media screen and (max-width: 800px) {
  .menu {
    padding-top: 60px;
  }
}
.menu .tkg-wrapper {
  position: absolute;
  background-image: url(/lp/morning/images/menu_bg_tkg.png);
  background-size: contain;
  width: 74.5%;
  padding: 46px 42px 45px 43%;
  bottom: 130px;
  left: 0;
  z-index: 21;
  box-shadow: 20px 20px 80px rgba(144, 100, 20, 0.16);
}
@media screen and (max-width: 1535px) {
  .menu .tkg-wrapper {
    padding: 34px 32px 34px 36%;
    bottom: 80px;
  }
}
.menu .tkg-wrapper .tkg-box {
  position: relative;
  width: 100%;
}
.menu .tkg-wrapper .tkg-box .tkg-copy {
  padding-bottom: 28px;
  border-bottom: 1px solid #B04523;
  margin-bottom: 28px;
}
@media screen and (max-width: 1535px) {
  .menu .tkg-wrapper .tkg-box .tkg-copy {
    padding-bottom: 21px;
    margin-bottom: 21px;
  }
}
.menu .tkg-wrapper .tkg-box img {
  position: absolute;
  bottom: -19%;
  right: 92%;
  width: 85%;
}
.menu .menu-wrapper {
  width: 1375px;
  padding-top: 104px;
  padding-bottom: 98px;
  margin: 0 auto;
  background-image: url(/lp/morning/images/menu_bg.png);
}
@media screen and (max-width: 1535px) {
  .menu .menu-wrapper {
    padding-top: 84px;
    padding-bottom: 80px;
    width: 1030px;
  }
}
@media screen and (max-width: 1110px) {
  .menu .menu-wrapper {
    width: 90%;
  }
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper {
    padding-top: 85px;
    padding-bottom: 92px;
    width: 95.7%;
  }
}
@media screen and (max-width: 600px) {
  .menu .menu-wrapper {
    padding-top: 55px;
    padding-bottom: 71px;
    width: 95.7%;
  }
}
.menu .menu-wrapper .menu-title {
  width: 100%;
}
.menu .menu-wrapper .toast-con {
  display: flex;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper .toast-con {
    display: block;
  }
}
.menu .menu-wrapper .toast-con #toast-l {
  position: relative;
  width: 35.42%;
  margin-right: 3.9%;
  margin-left: 15%;
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper .toast-con #toast-l {
    width: 64.9%;
    margin: 0 auto 30px auto;
  }
}
@media screen and (max-width: 600px) {
  .menu .menu-wrapper .toast-con #toast-l {
    width: 78.9%;
    margin: 0 auto 30px auto;
  }
}
.menu .menu-wrapper .toast-con #toast-l .toast-img-box {
  opacity: 0;
}
.menu .menu-wrapper .toast-con #toast-l .toast-img {
  width: 100%;
  box-shadow: 20px 20px 80px rgba(144, 100, 20, 0.2);
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper .toast-con #toast-l .toast-img {
    box-shadow: 20px 20px 40px rgba(144, 100, 20, 0.25);
  }
}
.menu .menu-wrapper .toast-con #toast-l .toast-frag {
  position: absolute;
  width: 100%;
  top: -21.5%;
  left: -7.5%;
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper .toast-con #toast-l .toast-frag {
    top: -20.5%;
  }
}
.menu .menu-wrapper .toast-con #toast-r {
  width: 27.1%;
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper .toast-con #toast-r {
    width: 64.9%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .menu .menu-wrapper .toast-con #toast-r {
    width: 78.9%;
  }
}
.menu .menu-wrapper .subset-con {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: -20px;
  margin-bottom: 28px;
}
@media screen and (max-width: 1535px) {
  .menu .menu-wrapper .subset-con {
    margin-top: -18px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1110px) {
  .menu .menu-wrapper .subset-con {
    margin-top: -2.5vw;
  }
}
@media screen and (max-width: 950px) {
  .menu .menu-wrapper .subset-con {
    margin-top: 1vw;
  }
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper .subset-con {
    display: block;
    margin-top: 60px;
  }
}
.menu .menu-wrapper .subset-con #subset-l {
  margin-right: 3.4%;
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper .subset-con #subset-l {
    margin: 0 auto 60px auto;
  }
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper .subset-con #subset-r {
    margin-bottom: 120px;
  }
}
.menu .menu-wrapper .subset-con .subset {
  width: 18.5%;
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper .subset-con .subset {
    width: 64.9%;
    margin: 0 auto 60px auto;
  }
}
@media screen and (max-width: 600px) {
  .menu .menu-wrapper .subset-con .subset {
    width: 78.9%;
  }
}
.menu .menu-wrapper .subset-con .subset img {
  width: 100%;
  margin-bottom: 34px;
  box-shadow: 20px 20px 80px rgba(144, 100, 20, 0.22);
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper .subset-con .subset img {
    box-shadow: 20px 20px 40px rgba(144, 100, 20, 0.25);
  }
}
.menu .menu-wrapper .subset-con #subset-r {
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper .subset-con #subset-r {
    overflow: visible;
  }
}
.menu .menu-wrapper .plate-con {
  display: flex;
  justify-content: space-between;
  width: 80.1%;
  margin: -70px auto 0 auto;
}
@media screen and (max-width: 1535px) {
  .menu .menu-wrapper .plate-con {
    margin-top: -50px;
  }
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper .plate-con {
    margin-top: 0;
    display: block;
    width: 64.9%;
  }
}
@media screen and (max-width: 600px) {
  .menu .menu-wrapper .plate-con {
    width: 78.9%;
  }
}
.menu .menu-wrapper .plate-con #plate-r {
  padding-top: 188px;
}
@media screen and (max-width: 1535px) {
  .menu .menu-wrapper .plate-con #plate-r {
    padding-top: 140px;
  }
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper .plate-con #plate-r {
    padding-top: 0;
    margin-bottom: 114px;
  }
}
.menu .menu-wrapper .plate-con .plate {
  width: 44.23%;
  margin-bottom: 82px;
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper .plate-con .plate {
    width: 100%;
    margin-bottom: 123px;
  }
}
.menu .menu-wrapper .plate-con .plate .plate-img-box {
  position: relative;
  opacity: 0;
  width: 100%;
}
.menu .menu-wrapper .plate-con .plate .plate-img-box .plate-frag {
  position: absolute;
  width: 100%;
  top: -20.5%;
  left: -7.7%;
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper .plate-con .plate .plate-img-box .plate-frag {
    top: -19.5%;
  }
}
.menu .menu-wrapper .plate-con .plate .plate-img-box .plate-img {
  width: 100%;
  margin-bottom: 34px;
  box-shadow: 20px 20px 80px rgba(144, 100, 20, 0.2);
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper .plate-con .plate .plate-img-box .plate-img {
    box-shadow: 20px 20px 40px rgba(144, 100, 20, 0.25);
  }
}
.menu .menu-wrapper .tkg-con {
  position: relative;
  width: 107%;
  background-image: url(/lp/morning/images/menu_bg_tkg.png);
  padding: 44px 4% 50px 58%;
  transform: translateX(-20%);
  text-align: center;
  box-shadow: 20px 20px 80px rgba(144, 100, 20, 0.2);
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper .tkg-con {
    width: 92.2%;
    padding: 0px 7.6% 38px 7.6%;
    text-align: center;
    transform: translateX(-2%);
  }
}
.menu .menu-wrapper .tkg-con .tkg-img-sp {
  width: 35.2%;
  position: absolute;
  top: -50%;
  left: 25%;
}
@media screen and (max-width: 1535px) {
  .menu .menu-wrapper .tkg-con .tkg-img-sp {
    top: -33%;
  }
}
@media screen and (max-width: 1110px) {
  .menu .menu-wrapper .tkg-con .tkg-img-sp {
    top: -3vw;
    left: 20%;
  }
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper .tkg-con .tkg-img-sp {
    position: static;
    width: 88%;
    margin-top: -56px;
    margin-bottom: 5px;
    margin-right: 2%;
  }
}
.menu .menu-wrapper .tkg-con .tkg-title-sp {
  font-feature-settings: "palt";
  font-size: 3.1rem;
  font-weight: 700;
  color: #63050A;
  margin-bottom: 27px;
  padding-bottom: 27px;
  border-bottom: 1px solid #63050A;
}
@media screen and (max-width: 1110px) {
  .menu .menu-wrapper .tkg-con .tkg-title-sp {
    font-size: 2.8rem;
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper .tkg-con .tkg-title-sp {
    font-size: 1.9rem;
    letter-spacing: 0.075em;
    margin-bottom: 17px;
    padding-bottom: 17px;
    text-align: left;
  }
}
.menu .menu-wrapper .tkg-con .tkg-title-sp .tkg-yen {
  font-family: "fredoka one";
  font-weight: 400;
  font-size: 1.3rem;
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper .tkg-con .tkg-title-sp .tkg-yen {
    font-size: 1rem;
    transform: scale(0.8);
  }
}
.menu .menu-wrapper .tkg-con .tkg-title-sp .tkg-price {
  font-family: "rubik";
  font-weight: 600;
  font-size: 2.8rem;
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper .tkg-con .tkg-title-sp .tkg-price {
    font-size: 1.8rem;
    letter-spacing: -0.025em;
    -webkit-text-decoration: #FFFFFF;
            text-decoration: #FFFFFF;
  }
}
.menu .menu-wrapper .tkg-con .tkg-caption-sp {
  color: #63050A;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (max-width: 1110px) {
  .menu .menu-wrapper .tkg-con .tkg-caption-sp {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 800px) {
  .menu .menu-wrapper .tkg-con .tkg-caption-sp {
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: left;
  }
}

.frag-box {
  position: relative;
}
.frag-box .frag-img {
  position: absolute;
  width: 89%;
  top: -27.3%;
  left: -7.7%;
}

.plate-container .frag-img {
  top: -25%;
}
@media screen and (max-width: 1535px) {
  .plate-container .frag-img {
    width: 66%;
    top: -25.5%;
    left: -5.8%;
  }
}

.des-title {
  margin-bottom: 13px;
}
@media screen and (max-width: 1535px) {
  .des-title {
    margin-bottom: 9px;
  }
}
@media screen and (max-width: 800px) {
  .des-title {
    margin-bottom: 5px;
  }
}

.des-sub {
  padding-bottom: 17px;
  border-bottom: 1px solid #B04523;
}
@media screen and (max-width: 1535px) {
  .des-sub {
    padding-bottom: 13px;
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .des-sub {
    padding-bottom: 15px;
  }
}

.des-price {
  margin-top: 14px;
  margin-bottom: 5px;
}
@media screen and (max-width: 1535px) {
  .des-price {
    margin-top: 10px;
    margin-bottom: 4px;
  }
}

.des-caption {
  margin-bottom: 25px;
}
@media screen and (max-width: 1535px) {
  .des-caption {
    margin-bottom: 16px;
  }
}

.des-con {
  display: flex;
  align-items: center;
  margin-top: 2px;
  margin-bottom: 14px;
}
@media screen and (max-width: 800px) {
  .des-con .des-caption {
    margin-bottom: 0;
    margin-top: 5px;
    padding-left: 8px;
  }
}

@media screen and (max-width: 800px) {
  #menu-sp-none, #menu-sp-none2, #menu-sp-none3, #menu-sp-none4, #menu-sp-none5 {
    display: flex;
  }
}

.drink {
  padding-top: 88px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1535px) {
  .drink {
    padding-top: 66px;
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 800px) {
  .drink {
    padding-top: 30px;
    margin-bottom: 40px;
  }
}
.drink .drink-title {
  width: 100%;
}
.drink .drink-caption {
  margin-bottom: 20px;
}
@media screen and (max-width: 1535px) {
  .drink .drink-caption {
    margin-bottom: 23px;
  }
}
@media screen and (max-width: 800px) {
  .drink .drink-caption {
    margin-bottom: 10px;
  }
}
.drink .drink-wrapper {
  width: 1374px;
  margin: 0 auto;
  padding-top: 108px;
  padding-bottom: 154px;
  background-image: url(/lp/morning/images/menu_bg.png);
}
@media screen and (max-width: 1535px) {
  .drink .drink-wrapper {
    width: 1030px;
    padding-top: 81px;
    padding-bottom: 118px;
  }
}
@media screen and (max-width: 1110px) {
  .drink .drink-wrapper {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1110px) {
  .drink .drink-wrapper {
    width: 90%;
  }
}
@media screen and (max-width: 800px) {
  .drink .drink-wrapper {
    padding-top: 80px;
    padding-bottom: 38px;
    width: 95.7%;
  }
}
@media screen and (max-width: 600px) {
  .drink .drink-wrapper {
    padding-top: 55px;
  }
}
.drink .drink-onemore {
  position: relative;
  width: 69.4%;
  height: 160px;
  margin: 0 auto;
  background-image: url(/lp/morning/images/drink_dot_bg.png);
  background-position: bottom right;
  border-radius: 24px;
  top: 4px;
  left: 4px;
  z-index: 21;
}
@media screen and (max-width: 1535px) {
  .drink .drink-onemore {
    height: 120px;
  }
}
@media screen and (max-width: 800px) {
  .drink .drink-onemore {
    width: 60%;
    height: auto;
  }
}
@media screen and (max-width: 600px) {
  .drink .drink-onemore {
    width: 75%;
    height: auto;
  }
}
.drink .drink-onemore .drink-bg {
  position: absolute;
  background-color: #FDF6EA;
  border: 1px solid #FF9A00;
  width: 100%;
  height: 100%;
  top: -4px;
  left: -3px;
  z-index: 10;
  border-radius: 25px;
}
.drink .drink-onemore .drink-om-list {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 97%;
  padding-left: 10%;
  padding-right: 10.5%;
  z-index: 21;
}
@media screen and (max-width: 800px) {
  .drink .drink-onemore .drink-om-list {
    display: block;
  }
}
.drink .drink-onemore .drink-om-list .om-title {
  width: 36%;
  padding-top: 6%;
}
.drink .drink-onemore .drink-om-list .om-title img {
  width: 90%;
  height: auto;
}
.drink .drink-onemore .drink-om-list .om-list {
  width: 32%;
}
.drink .drink-onemore .drink-om-list .om-list img {
  width: 95%;
}
.drink .drink-onemore .drink-om-list .om-list dd {
  padding-left: 2%;
}
.drink #om-sp {
  width: 78%;
  text-align: center;
}
.drink #om-sp .om-list-sp {
  position: relative;
  z-index: 21;
  padding-bottom: 26px;
}
.drink #om-sp .drink-ico-sp {
  width: 67%;
  text-align: center;
  margin: -48px auto 10px;
}
.drink #om-sp dt {
  width: 64%;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .drink #om-sp dt {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .drink #om-sp dt {
    width: 64%;
  }
}
.drink #om-sp dt img {
  width: 100%;
}
.drink #om-sp dd {
  margin-bottom: 26px;
}
.drink .drink-card {
  width: 1149px;
  margin: 0 auto;
  padding-top: 157px;
  padding-bottom: 48px;
  background-image: url(/lp/morning/images/drink_bg.png);
  box-shadow: 20px 20px 80px rgba(144, 100, 20, 0.2);
}
@media screen and (max-width: 1535px) {
  .drink .drink-card {
    width: 860px;
    padding-top: 118px;
    padding-bottom: 36px;
  }
}
@media screen and (max-width: 1110px) {
  .drink .drink-card {
    width: 90%;
  }
}
@media screen and (max-width: 800px) {
  .drink .drink-card {
    background-image: url(/lp/morning/images/drink_bg_sp.png);
    background-size: 100%;
    padding-top: 60px;
    padding-bottom: 0;
  }
}
.drink .drink-card .drinklist {
  display: flex;
  justify-content: space-between;
  padding-left: 6.5%;
  padding-right: 6.5%;
  margin-top: 35px;
}
@media screen and (max-width: 1535px) {
  .drink .drink-card .drinklist {
    margin-top: 26px;
  }
}
@media screen and (max-width: 800px) {
  .drink .drink-card .drinklist {
    flex-wrap: wrap;
    margin-top: 20px;
    padding-left: 12.5%;
    padding-right: 12.5%;
  }
}
@media screen and (max-width: 600px) {
  .drink .drink-card .drinklist {
    padding-left: 6.5%;
    padding-right: 6.5%;
    flex-wrap: wrap;
    margin-top: 20px;
  }
}
@media screen and (max-width: 800px) {
  .drink .drink-card .drinklist .drink-box {
    width: 45%;
  }
}
.drink .drink-card .drinklist #drink-box-100 {
  width: 51%;
  margin: 10px auto -14px auto;
}
.drink .drink-card .drinklist dt {
  margin-bottom: 2px;
}
@media screen and (max-width: 800px) {
  .drink .drink-card .drinklist dt {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .drink .drink-card .drinklist dt {
    width: 100%;
  }
}
.drink .drink-card .drinklist dt img {
  width: 141px;
}
@media screen and (max-width: 1535px) {
  .drink .drink-card .drinklist dt img {
    width: 106px;
  }
}
@media screen and (max-width: 1110px) {
  .drink .drink-card .drinklist dt img {
    width: 90%;
  }
}
@media screen and (max-width: 600px) {
  .drink .drink-card .drinklist dt img {
    width: 100%;
  }
}
.drink .drink-card .drinklist dd {
  text-align: center;
}
@media screen and (max-width: 800px) {
  .drink .drink-card .drinklist dd {
    margin-bottom: 32px;
  }
}

.situation {
  position: relative;
  overflow: hidden;
  padding-top: 133px;
  padding-bottom: 180px;
}
@media screen and (max-width: 1535px) {
  .situation {
    padding-top: 100px;
    padding-bottom: 136px;
  }
}
@media screen and (max-width: 800px) {
  .situation {
    padding-top: 157px;
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 800px) {
  .situation .sp-sun {
    position: absolute;
    top: 1.7%;
    left: -6%;
    width: 26%;
    animation: rotation1 30s linear infinite;
  }
}
@media screen and (max-width: 600px) {
  .situation .sp-sun {
    width: 29%;
  }
}
@media screen and (max-width: 400px) {
  .situation .sp-sun {
    width: 33%;
  }
}
@media screen and (max-width: 365px) {
  .situation .sp-sun {
    top: 2.5%;
  }
}
.situation .situ-con {
  position: relative;
  width: 716px;
  margin: 0 auto;
}
@media screen and (max-width: 1535px) {
  .situation .situ-con {
    width: 537px;
  }
}
@media screen and (max-width: 1110px) {
  .situation .situ-con {
    width: 60%;
  }
}
@media screen and (max-width: 800px) {
  .situation .situ-con {
    width: 100%;
    overflow: hidden;
  }
}
.situation .situ-con .situ-img {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.situation .situ-con .situ-img img {
  width: 100%;
}
.situation .situ-con .situ-img-sun {
  position: absolute;
  top: -13%;
  right: -35%;
  width: 32.5%;
  opacity: 0.9;
}
.situation .situ-con .situ-img-sun img {
  animation: rotation1 45s linear infinite;
  width: 100%;
}
.situation .situ-detail {
  position: relative;
  width: 1146px;
  margin: 0 auto;
}
@media screen and (max-width: 1535px) {
  .situation .situ-detail {
    width: 860px;
  }
}
@media screen and (max-width: 1110px) {
  .situation .situ-detail {
    width: 80%;
  }
}
@media screen and (max-width: 800px) {
  .situation .situ-detail {
    width: 90.6%;
    margin-left: auto;
    margin-right: 0;
  }
}
.situation .situ-detail .detail-pattern {
  display: flex;
  position: relative;
  margin-bottom: 200px;
}
@media screen and (max-width: 1535px) {
  .situation .situ-detail .detail-pattern {
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 1110px) {
  .situation .situ-detail .detail-pattern {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 800px) {
  .situation .situ-detail .detail-pattern {
    display: block;
    margin-bottom: 0;
  }
}
.situation .situ-detail .detail-pattern .de-toast-l {
  position: relative;
  width: 698px;
}
@media screen and (max-width: 1535px) {
  .situation .situ-detail .detail-pattern .de-toast-l {
    width: 523px;
  }
}
@media screen and (max-width: 1110px) {
  .situation .situ-detail .detail-pattern .de-toast-l {
    width: 70%;
  }
}
@media screen and (max-width: 800px) {
  .situation .situ-detail .detail-pattern .de-toast-l {
    width: 100%;
  }
}
.situation .situ-detail .detail-pattern .de-toast-l img {
  display: block;
  box-shadow: 20px 20px 80px 0 rgba(99, 66, 5, 0.2);
}
@media screen and (max-width: 1535px) {
  .situation .situ-detail .detail-pattern .de-toast-l img {
    width: 100%;
  }
}
.situation .situ-detail .detail-pattern .de-toast-l video {
  box-shadow: 20px 20px 80px 0 rgba(99, 66, 5, 0.2);
  width: 100%;
  height: auto;
}
.situation .situ-detail .detail-pattern .de-toast-l .detail-img-sp {
  box-shadow: none;
}
.situation .situ-detail .detail-pattern .de-toast-r {
  width: 420px;
}
.situation .situ-detail .detail-pattern .de-toast-r img {
  width: 100%;
}
.situation .situ-detail .detail-pattern .de-toast-r video {
  box-shadow: 20px 20px 80px 0 rgba(99, 66, 5, 0.2);
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1535px) {
  .situation .situ-detail .detail-pattern .de-toast-r {
    width: 296px;
  }
}
@media screen and (max-width: 1110px) {
  .situation .situ-detail .detail-pattern .de-toast-r {
    width: 43%;
  }
}
.situation .situ-detail #de-toast {
  position: relative;
  justify-content: flex-end;
}
.situation .situ-detail #de-berg {
  position: relative;
}
.situation .situ-detail #de-coffee {
  position: relative;
  justify-content: flex-end;
}
.situation .situ-detail #de-time {
  position: relative;
  margin-bottom: 0;
}/*# sourceMappingURL=style.css.map */